diff --git a/.gitignore b/.gitignore index a547bf3..48c3ca4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,3 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -pnpm-debug.log* -lerna-debug.log* - -node_modules -dist -dist-ssr -*.local - -# Editor directories and files -.vscode/* -!.vscode/extensions.json -.idea -.DS_Store -*.suo -*.ntvs* -*.njsproj -*.sln -*.sw? +/dist/ +/target/ +/Cargo.lock diff --git a/.taurignore b/.taurignore new file mode 100644 index 0000000..1ebdc6d --- /dev/null +++ b/.taurignore @@ -0,0 +1,3 @@ +/src +/public +/Cargo.toml \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..e6d9d21 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "emmet.includeLanguages": { + "rust": "html" + } +} diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..2fe3bb3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "vrclipboard-ime-gui-ui" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[dependencies] +leptos = { version = "0.7", features = ["csr"] } +wasm-bindgen = "0.2" +wasm-bindgen-futures = "0.4" +js-sys = "0.3" +serde = { version = "1", features = ["derive"] } +serde-wasm-bindgen = "0.6" +console_error_panic_hook = "0.1.7" +leptos_router = "0.7" +lucide-leptos = "=1.0.0" +uuid = { version = "1.0", features = ["v4", "js"] } + +[workspace] +members = ["src-tauri"] diff --git a/README.md b/README.md index 02cad83..77812aa 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ -# VRClipboard-IME +# Tauri + Leptos -このソフトウェアはVRChat上のChatBoxで日本語入力を行うためのツールです。 +This template should help get you started developing with Tauri and Leptos. -ダウンロードは[こちら](https://vrime.mii.dev)から行えます。 +## Recommended IDE Setup + +[VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer). diff --git a/Trunk.toml b/Trunk.toml new file mode 100644 index 0000000..c9a88b7 --- /dev/null +++ b/Trunk.toml @@ -0,0 +1,9 @@ +[build] +target = "./index.html" + +[watch] +ignore = ["./src-tauri"] + +[serve] +port = 1420 +open = false diff --git a/index.html b/index.html index ff93803..652b798 100644 --- a/index.html +++ b/index.html @@ -1,14 +1,14 @@ - - - - - - Tauri + React + Typescript - + - -
- - - + + + Tauri + Leptos App + + + + + + + + \ No newline at end of file diff --git a/node_modules/.package-lock.json b/node_modules/.package-lock.json new file mode 100644 index 0000000..a1f7147 --- /dev/null +++ b/node_modules/.package-lock.json @@ -0,0 +1,33 @@ +{ + "name": "vrclipboard-ime-gui", + "lockfileVersion": 3, + "requires": true, + "packages": { + "node_modules/@tauri-apps/api": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.5.0.tgz", + "integrity": "sha512-Ldux4ip+HGAcPUmuLT8EIkk6yafl5vK0P0c0byzAKzxJh7vxelVtdPONjfgTm96PbN24yjZNESY8CKo8qniluA==", + "license": "Apache-2.0 OR MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/tauri" + } + }, + "node_modules/@tauri-apps/plugin-opener": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.2.7.tgz", + "integrity": "sha512-uduEyvOdjpPOEeDRrhwlCspG/f9EQalHumWBtLBnp3fRp++fKGLqDOyUhSIn7PzX45b/rKep//ZQSAQoIxobLA==", + "license": "MIT OR Apache-2.0", + "dependencies": { + "@tauri-apps/api": "^2.0.0" + } + }, + "node_modules/tailwindcss": { + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.8.tgz", + "integrity": "sha512-kjeW8gjdxasbmFKpVGrGd5T4i40mV5J2Rasw48QARfYeQ8YS9x02ON9SFWax3Qf616rt4Cp3nVNIj6Hd1mP3og==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/node_modules/@tauri-apps/api/CHANGELOG.md b/node_modules/@tauri-apps/api/CHANGELOG.md new file mode 100644 index 0000000..4b6caa3 --- /dev/null +++ b/node_modules/@tauri-apps/api/CHANGELOG.md @@ -0,0 +1,960 @@ +# Changelog + +## \[2.5.0] + +### New Features + +- [`66e6325f4`](https://www.github.com/tauri-apps/tauri/commit/66e6325f43efa49ec2165c45afec911a1a14ecfb) ([#13136](https://www.github.com/tauri-apps/tauri/pull/13136)) Allow passing the callback as the parameter of constructor of `Channel` so you can use it like this `new Channel((message) => console.log(message))` +- [`ea36294cb`](https://www.github.com/tauri-apps/tauri/commit/ea36294cbca98f7725c91d1464fd92e77c89698a) ([#13208](https://www.github.com/tauri-apps/tauri/pull/13208)) Added `disableInputAccessoryView: bool` config for iOS. +- [`c1cd0a2dd`](https://www.github.com/tauri-apps/tauri/commit/c1cd0a2ddb5bc3e99451cbe399b5fc9f0035f571) ([#13090](https://www.github.com/tauri-apps/tauri/pull/13090)) macOS/iOS: add option to disable or enable link previews when building a webview (the webkit api has it enabled by default) + + - `WindowOptions::allowLinkPreview` + - `WebviewOptions::allowLinkPreview` +- [`b072e2b29`](https://www.github.com/tauri-apps/tauri/commit/b072e2b2967640ae4fa1af466ae878c156551edd) ([#9687](https://www.github.com/tauri-apps/tauri/pull/9687)) Add `preventOverflow` config option to prevent the window from overflowing the monitor size on creation +- [`dd4f13ce4`](https://www.github.com/tauri-apps/tauri/commit/dd4f13ce4b3cd89cde2fa3f18a063c272f215621) ([#13185](https://www.github.com/tauri-apps/tauri/pull/13185)) Added `app.setDockVisibility` for macOS. + +### Enhancements + +- [`b8f86669a`](https://www.github.com/tauri-apps/tauri/commit/b8f86669ab05f7dbdd15839a20999e63dc43bda6) ([#13145](https://www.github.com/tauri-apps/tauri/pull/13145)) `core.isTauri` now leverages `globalThis` instead of `window` in order to be used in unit tests. + +### Bug Fixes + +- [`66e6325f4`](https://www.github.com/tauri-apps/tauri/commit/66e6325f43efa49ec2165c45afec911a1a14ecfb) ([#13136](https://www.github.com/tauri-apps/tauri/pull/13136)) Fix `Channel`'s callback attached to `window` never cleaned up + +## \[2.4.1] + +### Enhancements + +- [`dd1372833`](https://www.github.com/tauri-apps/tauri/commit/dd137283341ce0e6aabfd158d07d77c6feeb920e) ([#13066](https://www.github.com/tauri-apps/tauri/pull/13066) by [@ahaoboy](https://www.github.com/tauri-apps/tauri/../../ahaoboy)) Add a generic to `emit` and `emitTo` functions for the `payload` instead of the previously used type (`unknown`). + +## \[2.4.0] + +### New Features + +- [`d8059bad3`](https://www.github.com/tauri-apps/tauri/commit/d8059bad3cc922dc369c39ca1cfa49aaec31322e) ([#12900](https://www.github.com/tauri-apps/tauri/pull/12900) by [@Simon-Laux](https://www.github.com/tauri-apps/tauri/../../Simon-Laux)) add `AppHandle.fetch_data_store_identifiers` and `AppHandle.remove_data_store` (macOS and iOS only) +- [`20c190691`](https://www.github.com/tauri-apps/tauri/commit/20c19069125c89b2d45a2127278c9ffc2df35fc2) ([#12821](https://www.github.com/tauri-apps/tauri/pull/12821) by [@Simon-Laux](https://www.github.com/tauri-apps/tauri/../../Simon-Laux)) Added `WindowOptions::javascriptDisabled` and `WebviewOptions::javascriptDisabled`. +- [`060de5bbd`](https://www.github.com/tauri-apps/tauri/commit/060de5bbdddca384e3965a8938d89840f27c581d) ([#12837](https://www.github.com/tauri-apps/tauri/pull/12837) by [@niladrix719](https://www.github.com/tauri-apps/tauri/../../niladrix719)) Added `getIdentifier()` function to get the application identifier configured in tauri.conf.json +- [`be2e6b85f`](https://www.github.com/tauri-apps/tauri/commit/be2e6b85fed226732b4a98f68cc5d72b4f8f5a13) ([#12944](https://www.github.com/tauri-apps/tauri/pull/12944) by [@Simon-Laux](https://www.github.com/tauri-apps/tauri/../../Simon-Laux)) Added `Window#isAlwaysOnTop` and `WebviewWindow#isAlwaysOnTop` methods. +- [`bcdd51025`](https://www.github.com/tauri-apps/tauri/commit/bcdd510254ebe37827e22a5ffeb944321361e97c) ([#13012](https://www.github.com/tauri-apps/tauri/pull/13012) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) The `path` basename and extname APIs now accept Android content URIs, such as the paths returned by the dialog plugin. + +### Bug Fixes + +- [`3a74dc8f3`](https://www.github.com/tauri-apps/tauri/commit/3a74dc8f3421112b1d0a32b6a432606b1f33cc25) ([#12935](https://www.github.com/tauri-apps/tauri/pull/12935) by [@tk103331](https://www.github.com/tauri-apps/tauri/../../tk103331)) Fix `Webview.close` always fail with command not found + +## \[2.3.0] + +### Enhancements + +- [`a2d36b8c3`](https://www.github.com/tauri-apps/tauri/commit/a2d36b8c34a8dcfc6736797ca5cd4665faf75e7e) ([#12181](https://www.github.com/tauri-apps/tauri/pull/12181) by [@bastiankistner](https://www.github.com/tauri-apps/tauri/../../bastiankistner)) Add an option to change the default background throttling policy (currently for WebKit only). + +## \[2.2.0] + +### New Features + +- [`020ea0556`](https://www.github.com/tauri-apps/tauri/commit/020ea05561348dcd6d2a7df358f8a5190f661ba2) ([#11661](https://www.github.com/tauri-apps/tauri/pull/11661) by [@ahqsoftwares](https://www.github.com/tauri-apps/tauri/../../ahqsoftwares)) Add badging APIs: + + - `Window/WebviewWindow::set_badge_count` for Linux, macOS and IOS. + - `Window/WebviewWindow::set_overlay_icon` for Windows Only. + - `Window/WebviewWindow::set_badge_label`for macOS Only. +- [`fc30b20be`](https://www.github.com/tauri-apps/tauri/commit/fc30b20bea125f647db00ca824663f8e1da4d61f) ([#11726](https://www.github.com/tauri-apps/tauri/pull/11726) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `TrayIcon.setShowMenuOnLeftClick` method and deprecate `TrayIcon.setMenuOnLeftClick` to match the Rust API. +- [`fc30b20be`](https://www.github.com/tauri-apps/tauri/commit/fc30b20bea125f647db00ca824663f8e1da4d61f) ([#11726](https://www.github.com/tauri-apps/tauri/pull/11726) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `TrayIconOptions.showMenuOnLeftClick` field and deprecate `TrayIconOptions.menuOnLeftClick` to match the Rust API. + +### Enhancements + +- [`fc30b20be`](https://www.github.com/tauri-apps/tauri/commit/fc30b20bea125f647db00ca824663f8e1da4d61f) ([#11726](https://www.github.com/tauri-apps/tauri/pull/11726) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add support for `TrayIconOptions.menuOnLeftClick` option and `TrayIcon.setMenuOnLeftClick` on Windows. + +### Bug Fixes + +- [`a16796a55`](https://www.github.com/tauri-apps/tauri/commit/a16796a55592cf5be80043edfbb630dd2e32efab) ([#12069](https://www.github.com/tauri-apps/tauri/pull/12069) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix `Channel` never calls `onmessage` in some cases +- [`12a48d1e2`](https://www.github.com/tauri-apps/tauri/commit/12a48d1e26a83c3915eaa0687b196fbc8f2d457a) ([#11741](https://www.github.com/tauri-apps/tauri/pull/11741) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix error when calling `PredefinedMenuItem.new` to create an `About` menu item that uses an `Image` instance for the about icon. +- [`12a48d1e2`](https://www.github.com/tauri-apps/tauri/commit/12a48d1e26a83c3915eaa0687b196fbc8f2d457a) ([#11741](https://www.github.com/tauri-apps/tauri/pull/11741) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix error when calling `IconMenuItem.new` using an `Image` instance for the icon. +- [`b63262cd4`](https://www.github.com/tauri-apps/tauri/commit/b63262cd4d6a3667ca1664607a0a5444ad79fe0e) ([#11724](https://www.github.com/tauri-apps/tauri/pull/11724) by [@FabianLars](https://www.github.com/tauri-apps/tauri/../../FabianLars)) Removed the generic in the type of the callback function argument in `mockIPC` which prevented its proper use in tests using TypeScript. +- [`a6e84f7d2`](https://www.github.com/tauri-apps/tauri/commit/a6e84f7d2c1d5fdc65901fce683502be3f47833f) ([#11835](https://www.github.com/tauri-apps/tauri/pull/11835) by [@ilittlebig](https://www.github.com/tauri-apps/tauri/../../ilittlebig)) Fix error where using `isAbsolute` would return `Command not found`. + +## \[2.1.1] + +### Bug Fixes + +- [`7f81f0523`](https://www.github.com/tauri-apps/tauri/commit/7f81f052365675721312aafba297a7b67fb872d2) Fix regression in `toLogical` and `toPhysical` for position types in `dpi` module returning incorrect `y` value. +- [`e8a50f6d7`](https://www.github.com/tauri-apps/tauri/commit/e8a50f6d760fad4529e7abb400302a1b487f11dd) ([#11645](https://www.github.com/tauri-apps/tauri/pull/11645)) Fix integer values of `BasDirectory.Home` and `BaseDirectory.Font` regression which broke path APIs in JS. + +## \[2.1.0] + +### New Features + +- [`5c4b83084`](https://www.github.com/tauri-apps/tauri/commit/5c4b830843ab085f8ff9db9e08d832223b027e4e) ([#11191](https://www.github.com/tauri-apps/tauri/pull/11191) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Improved support for `dpi` module types to allow these types to be used without manual conversions with `invoke`: + + - Added `SERIALIZE_TO_IPC_FN` const in `core` module which can be used to implement custom IPC serialization for types passed to `invoke`. + - Added `Size` and `Position` classes in `dpi` module. + - Implementd `SERIALIZE_TO_IPC_FN` method on `PhysicalSize`, `PhysicalPosition`, `LogicalSize` and `LogicalPosition` to convert it into a valid IPC-compatible value that can be deserialized correctly on the Rust side into its equivalent struct. +- [`4d545ab3c`](https://www.github.com/tauri-apps/tauri/commit/4d545ab3ca228c8a21b966b709f84a0da2864479) ([#11486](https://www.github.com/tauri-apps/tauri/pull/11486) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Added `Webview::setBackgroundColor`, `WebviewWindow::setBackgroundColor` APIs to set the window background color dynamically + and a `backgroundColor` window option to set the background color on window creation. +- [`cbc095ec5`](https://www.github.com/tauri-apps/tauri/commit/cbc095ec5fe7de29b5c9265576d4e071ec159c1c) ([#11451](https://www.github.com/tauri-apps/tauri/pull/11451) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `app > windows > devtools` config option and when creating the webview from JS, to enable or disable devtools for a specific webview. +- [`2a75c64b5`](https://www.github.com/tauri-apps/tauri/commit/2a75c64b5431284e7340e8743d4ea56a62c75466) ([#11469](https://www.github.com/tauri-apps/tauri/pull/11469) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Added `windowClassname` option, when constructing a `Webview` or `WebviewWindow`, to specify the name of the window class on Windows. + +### Bug Fixes + +- [`54cbf59b5`](https://www.github.com/tauri-apps/tauri/commit/54cbf59b5a572570a47237a3b5e6505f2a9e5d5d) ([#11441](https://www.github.com/tauri-apps/tauri/pull/11441) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Fix submenu created as a menu item instead of a submenu when created by using an object in the `items` field in the options object passed to `Menu.new` or `Submenu.new`. + +## \[2.0.3] + +### Bug Fixes + +- [`fbb45c674`](https://www.github.com/tauri-apps/tauri/commit/fbb45c674ca92fbbe04f1a8360e5f2e477dd4297) ([#11423](https://www.github.com/tauri-apps/tauri/pull/11423) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fixes `addPluginListener` not working. + +### What's Changed + +- [`2e88633ba`](https://www.github.com/tauri-apps/tauri/commit/2e88633ba4da8fc289c6d8a29c36f3327f9b576e) ([#11369](https://www.github.com/tauri-apps/tauri/pull/11369) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Remove references to no longer used `__TAURI_INTERNALS__.metadata.windows` and `__TAURI_INTERNALS__.metadata.webviews`. + +## \[2.0.2] + +### What's Changed + +- [`e968b3d25`](https://www.github.com/tauri-apps/tauri/commit/e968b3d2527b8edf7653e6cf7284dc4a8889b5fe) ([#11219](https://www.github.com/tauri-apps/tauri/pull/11219) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Actually publish package with the latest tag. + +## \[2.0.1] + +### What's Changed + +- [`be683e2ac`](https://www.github.com/tauri-apps/tauri/commit/be683e2ac36df9c51a5c050d9d500247bd019090) ([#11199](https://www.github.com/tauri-apps/tauri/pull/11199) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Publish package with the latest NPM tag. + +## \[2.0.0] + +### What's Changed + +- [`637285790`](https://www.github.com/tauri-apps/tauri/commit/6372857905ae9c0aedb7f482ddf6cf9f9836c9f2) Promote to v2 stable! + +## \[2.0.0-rc.6] + +### New Features + +- [`9014a3f17`](https://www.github.com/tauri-apps/tauri/commit/9014a3f1765ca406ea5c3e5224267a79c52cd53d) ([#11066](https://www.github.com/tauri-apps/tauri/pull/11066) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `WebviewWindow.clearAllBrowsingData` and `Webview.clearAllBrowsingData` to clear the webview browsing data. +- [`95df53a2e`](https://www.github.com/tauri-apps/tauri/commit/95df53a2ed96873cd35a4b14a5e312d07e4e3004) ([#11143](https://www.github.com/tauri-apps/tauri/pull/11143) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Add the ability to set theme dynamically using `Window.setTheme` or `setTheme` function from the `app` module +- [`d9d2502b4`](https://www.github.com/tauri-apps/tauri/commit/d9d2502b41e39efde679e30c8955006e2ba9ea64) ([#11140](https://www.github.com/tauri-apps/tauri/pull/11140) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `Webview.hide` and `Webview.show` methods. +- [`de7414aab`](https://www.github.com/tauri-apps/tauri/commit/de7414aab935e45540594ea930eb60bae4dbc979) ([#11154](https://www.github.com/tauri-apps/tauri/pull/11154) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `Window::setEnabled` and `Window::isEnabled` methods + +### Bug Fixes + +- [`948772a65`](https://www.github.com/tauri-apps/tauri/commit/948772a657eb3caf20843628abac9109e3b67d41) ([#11114](https://www.github.com/tauri-apps/tauri/pull/11114) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Change the `button_state` tray event field to camelCase `buttonState`. + +### Breaking Changes + +- [`0b4495996`](https://www.github.com/tauri-apps/tauri/commit/0b4495996d3131a5ee80fbb2c71a28203e491ee7) ([#11121](https://www.github.com/tauri-apps/tauri/pull/11121) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Simplified emitted tray event JS value and updated `TrayIconEvent` type definition to match it. + +## \[2.0.0-rc.5] + +### New Features + +- [`ddf69157b`](https://www.github.com/tauri-apps/tauri/commit/ddf69157b54249f3321ca72db6703812019f1ab9) ([#11031](https://www.github.com/tauri-apps/tauri/pull/11031) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add `toPhysical` method on `LogicalPositon` and `LogicalSize` classes. + +## \[2.0.0-rc.4] + +### Enhancements + +- [`f81929e25`](https://www.github.com/tauri-apps/tauri/commit/f81929e25104aa1091e464bd012c80649dedf9e5) ([#10799](https://www.github.com/tauri-apps/tauri/pull/10799) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Added `PermissionState`, `checkPermissions` and `requestPermissions` base APIs to the core module, designed for plugin authors to extend. + +### Bug Fixes + +- [`fbe76a955`](https://www.github.com/tauri-apps/tauri/commit/fbe76a955a63af9fb33f66d5f747caf858cf179b) ([#10797](https://www.github.com/tauri-apps/tauri/pull/10797) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Uint8Arrays and ArrayBuffers are now properly serialized as an array of numbers. + +## \[2.0.0-rc.3] + +### What's Changed + +- [`f4d5241b3`](https://www.github.com/tauri-apps/tauri/commit/f4d5241b377d0f7a1b58100ee19f7843384634ac) ([#10731](https://www.github.com/tauri-apps/tauri/pull/10731) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Update documentation icon path. + +## \[2.0.0-rc.2] + +### Bug Fixes + +- [`c689521a7`](https://www.github.com/tauri-apps/tauri/commit/c689521a7674b6562b5dfd4f5cacd12138d99d85) ([#10681](https://www.github.com/tauri-apps/tauri/pull/10681) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Fix tslib path in dist. + +## \[2.0.0-rc.1] + +### Breaking Changes + +- [`b6dca99ff`](https://www.github.com/tauri-apps/tauri/commit/b6dca99fff73816a39380b288c299b47b493cfdb) ([#10630](https://www.github.com/tauri-apps/tauri/pull/10630) by [@lucasfernog](https://www.github.com/tauri-apps/tauri/../../lucasfernog)) Changed `WebviewWindow.getAll`, `WebviewWindow.getByLabel`, `getAllWebviewWindows`, + `Window.getAll`, `Window.getByLabel`, `getAllWindows`, + `Webview.getAll`, `Webview.getByLabel`, `getAllWebviews` + to be async so their return value are synchronized with the state from the Rust side, + meaning new and destroyed windows are reflected. + +## \[2.0.0-rc.0] + +### Changes + +- Promoted to RC! + +## \[2.0.0-beta.16] + +### New Features + +- [`da25f7353`](https://www.github.com/tauri-apps/tauri/commit/da25f7353070477ba969851e974379d7666d6806) ([#10242](https://www.github.com/tauri-apps/tauri/pull/10242) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Add APIs to enable setting window size constraints separately: + + - Added `WindowSizeConstraints` interface in `window` and `webviewWindow` modules. + - Added `Window.setSizeConstraints` and `WebviewWindow.setSizeConstraints` + +### Bug Fixes + +- [`3c17fb64f`](https://www.github.com/tauri-apps/tauri/commit/3c17fb64fd822597d5cc16ee7e7b3f9e1023637b) ([#10277](https://www.github.com/tauri-apps/tauri/pull/10277) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix `Webview.reparent` pointing to `set_webview_focus` instead of `reparent` Rust API +- [`da25f7353`](https://www.github.com/tauri-apps/tauri/commit/da25f7353070477ba969851e974379d7666d6806) ([#10242](https://www.github.com/tauri-apps/tauri/pull/10242) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Apply `minWidth`, `minHieght`, `maxWidth` and `maxHeight` constraints separately, which fixes a long standing bug where these constraints were never applied unless width and height were constrained together. + +## \[2.0.0-beta.15] + +### New Features + +- [`7bc6a2a1d`](https://www.github.com/tauri-apps/tauri/commit/7bc6a2a1d6d2c5406d91cac94d33bce76443c28f) ([#9788](https://www.github.com/tauri-apps/tauri/pull/9788) by [@pewsheen](https://www.github.com/tauri-apps/tauri/../../pewsheen)) Add a new method to set title bar style dynamically on macOS. + +### Enhancements + +- [`080b6e127`](https://www.github.com/tauri-apps/tauri/commit/080b6e12720b89d839c686d7067cc94d276ed7e4) ([#10246](https://www.github.com/tauri-apps/tauri/pull/10246) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Use `EventName` on `Window`, `Webview` and `WebviewWindow`'s `once` so you can get auto complete for tauri's built-in events + +### Bug Fixes + +- [`080b6e127`](https://www.github.com/tauri-apps/tauri/commit/080b6e12720b89d839c686d7067cc94d276ed7e4) ([#10246](https://www.github.com/tauri-apps/tauri/pull/10246) by [@Legend-Master](https://www.github.com/tauri-apps/tauri/../../Legend-Master)) Fix `once` doesn't detached after one callback if event handler throws + +### Breaking Changes + +- [`261c9f942`](https://www.github.com/tauri-apps/tauri/commit/261c9f942de9a598b5c6cc504de6bddd1306113b) ([#10170](https://www.github.com/tauri-apps/tauri/pull/10170) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Renamed drag and drop events in `TauriEvent` enum to better convey when they are triggered: + + - `TauriEvent.DRAG` -> `TauriEvent.DRAG_ENTER` + - `TauriEvent.DROP_OVER` -> `TauriEvent.DRAG_OVER` + - `TauriEvent.DROP` -> `TauriEvent.DRAG_DROP` + - `TauriEvent.DROP_CANCELLED` -> `TauriEvent::DRAG_LEAVE` + + Also the `type` field values in `Window/Webview/WebviewWindow.onDropEvent` and `DragDropEvent` have changed: + + - `dragged` -> `enter` + - `dragOver` -> `over` + - `dropped` -> `drop` + - `cancelled` -> `leave` +- [`2b1ceb40d`](https://www.github.com/tauri-apps/tauri/commit/2b1ceb40d345aef42dd79438fa69ca7989ee0194) ([#10229](https://www.github.com/tauri-apps/tauri/pull/10229) by [@amrbashir](https://www.github.com/tauri-apps/tauri/../../amrbashir)) Renamed the JS `getCurrent` and `getAll` functions to a clearer name to avoid ambiguity: + + - `getCurrent` in `window` module has been renamed to `getCurrentWindow` + - `getCurrent` in `webview` module has been renamed to `getCurrentWebview` + - `getCurrent` in `webviewWindow` module has been renamed to `getCurrentWebviewWindow` + - `getAll` in `window` module has been renamed to `getAllWindows` + - `getAll` in `webview` module has been renamed to `getAllWebviews` + - `getAll` in `webviewWindow` module has been renamed to `getAllWebviewWindows` + +## \[2.0.0-beta.14] + +### New Features + +- [`148f04887`](https://www.github.com/tauri-apps/tauri/commit/148f048871caee21498b236c058b8890f2b66cc7) ([#9979](https://www.github.com/tauri-apps/tauri/pull/9979)) Add `defaultWindowIcon` to the JS `app` module to retrieve the default window icon in JS. + +### Bug Fixes + +- [`c98f385cb`](https://www.github.com/tauri-apps/tauri/commit/c98f385cb5da4d72968df24b1fc0b58212d59653) ([#10044](https://www.github.com/tauri-apps/tauri/pull/10044)) Export `mocks` module in `@tauri-apps/api` npm package. + +## \[2.0.0-beta.13] + +### Breaking Changes + +- [`c4410daa8`](https://www.github.com/tauri-apps/tauri/commit/c4410daa85616340e911c8243fdaa69e6906fd49)([#9777](https://www.github.com/tauri-apps/tauri/pull/9777)) This release contains breaking changes to the tray event structure because of newly added events: + + - Changed `TrayIconEvent` to be an enum instead of a struct. + - Added `MouseButtonState` and `MouseButton` enums. + - Removed `ClickType` enum and replaced it with `MouseButton` enum. + - Added `MouseButtonState` enum. + +## \[2.0.0-beta.12] + +### New Features + +- [`ec0e092ec`](https://www.github.com/tauri-apps/tauri/commit/ec0e092ecd23b547c756c7476f23a0d95be6db80)([#9770](https://www.github.com/tauri-apps/tauri/pull/9770)) Add `monitorFromPoint` function in `window` module to get the monitor from a given point. + +## \[2.0.0-beta.11] + +### Bug Fixes + +- [`aa080696e`](https://www.github.com/tauri-apps/tauri/commit/aa080696e0952abff416dd9088d519eaf2587a3a)([#9618](https://www.github.com/tauri-apps/tauri/pull/9618)) Fix `isTauri` incorrect return type. + +## \[2.0.0-beta.10] + +### New Features + +- [`477bb8cd4`](https://www.github.com/tauri-apps/tauri/commit/477bb8cd4ea88ade3f6c1f268ad1701a68150161)([#9297](https://www.github.com/tauri-apps/tauri/pull/9297)) Add `cursorPosition` function in `window` module to get the current cursor position. + +## \[2.0.0-beta.9] + +### New Features + +- [`70c51371e`](https://www.github.com/tauri-apps/tauri/commit/70c51371e01184223312de3dba8030394a5a9406)([#9539](https://www.github.com/tauri-apps/tauri/pull/9539)) Add `isTauri` function in `core` module to check whether running inside tauri or not. + +### Bug Fixes + +- [`be7eab209`](https://www.github.com/tauri-apps/tauri/commit/be7eab209c60c45e140f7bcb4bab1037d62d4c03)([#9486](https://www.github.com/tauri-apps/tauri/pull/9486)) Set the `exports > types` package.json field. +- [`cf615e8e4`](https://www.github.com/tauri-apps/tauri/commit/cf615e8e4d5008ee1ac3f77e530ba26fb91e8977)([#9463](https://www.github.com/tauri-apps/tauri/pull/9463)) Fixes a bug when processing channel messages out of order. +- [`35b25f7e5`](https://www.github.com/tauri-apps/tauri/commit/35b25f7e5c0fe03af4ed3582e22a626863f035f0)([#9530](https://www.github.com/tauri-apps/tauri/pull/9530)) Do not use JS optional chaining to prevent script errors on older webviews such as macOS 10.14. + +## \[2.0.0-beta.8] + +### New Features + +- [`58a7a552d`](https://www.github.com/tauri-apps/tauri/commit/58a7a552d739b77b71d61af11c53f7f2dc7a6e7e)([#9378](https://www.github.com/tauri-apps/tauri/pull/9378)) Added the `set_zoom` function to the webview API. +- [`58a7a552d`](https://www.github.com/tauri-apps/tauri/commit/58a7a552d739b77b71d61af11c53f7f2dc7a6e7e)([#9378](https://www.github.com/tauri-apps/tauri/pull/9378)) Add `zoom_hotkeys_enabled` to enable browser native zoom controls on creating webviews. + +### Bug Fixes + +- [`48a7a78f8`](https://www.github.com/tauri-apps/tauri/commit/48a7a78f8094d08e5e403e88050391642d29151b)([#9376](https://www.github.com/tauri-apps/tauri/pull/9376)) Fix `Window/Webview/WebviewWindow.setSize`, `Window/Webview/WebviewWindow.setPostion`, `Window/WebviewWindow.setMinSize`, `Window/WebviewWindow.setMaxSize`, `Window/WebviewWindow.setCursorPosition` and `Menu/Submenu.popup` methods failing with invalid args. + +## \[2.0.0-beta.7] + +### Bug Fixes + +- [`c33f6e6cf`](https://www.github.com/tauri-apps/tauri/commit/c33f6e6cf35a0d34b5598875a2e5b642a01c8b38)([#9211](https://www.github.com/tauri-apps/tauri/pull/9211)) Re-added the `TauriEvent.WINDOW_CREATED` (`tauri://window-created`) event. + +### Breaking Changes + +- [`06833f4fa`](https://www.github.com/tauri-apps/tauri/commit/06833f4fa8e63ecc55fe3fc874a9e397e77a5709)([#9100](https://www.github.com/tauri-apps/tauri/pull/9100)) Rename `FileDrop` to `DragDrop` on structs, enums and enum variants. Also renamed `file_drop` to `drag_drop` on fields and function names. + +## \[2.0.0-beta.6] + +### New Features + +- [`acdd76833`](https://www.github.com/tauri-apps/tauri/commit/acdd76833db6d81f4012418133d0042220de100b)([#9155](https://www.github.com/tauri-apps/tauri/pull/9155)) Add `TrayIcon.getById` and `TrayIcon.removeById` static methods. + +### Enhancements + +- [`ea0242db4`](https://www.github.com/tauri-apps/tauri/commit/ea0242db4aa6c127d2bb4a2e275000ba47c9e68c)([#9179](https://www.github.com/tauri-apps/tauri/pull/9179)) The `Image` constructor is now public (for internal use only). + +### Bug Fixes + +- [`379cc2b35`](https://www.github.com/tauri-apps/tauri/commit/379cc2b3547395474d4b66b4222679cf4538428d)([#9165](https://www.github.com/tauri-apps/tauri/pull/9165)) Fix `basename(path, 'ext')` JS API when removing all occurances of `ext` where it should only remove the last one. + +### Breaking Changes + +- [`ea0242db4`](https://www.github.com/tauri-apps/tauri/commit/ea0242db4aa6c127d2bb4a2e275000ba47c9e68c)([#9179](https://www.github.com/tauri-apps/tauri/pull/9179)) `Image::rgba()` now returns `Promise`. +- [`ea0242db4`](https://www.github.com/tauri-apps/tauri/commit/ea0242db4aa6c127d2bb4a2e275000ba47c9e68c)([#9179](https://www.github.com/tauri-apps/tauri/pull/9179)) Removed `width` and `height` methods on the JS `Image` class, use `size` instead. + +## \[2.0.0-beta.5] + +### Breaking Changes + +- [`db0a24a97`](https://www.github.com/tauri-apps/tauri/commit/db0a24a973191752aeecfbd556faa254b0f17e79)([#9132](https://www.github.com/tauri-apps/tauri/pull/9132)) Remove the `Image.fromPngBytes` and `Image.fromIcoBytes` APIs. Use `Image.fromBytes` instead. + +## \[2.0.0-beta.4] + +### New Features + +- [`d1e77acd8`](https://www.github.com/tauri-apps/tauri/commit/d1e77acd8dfdf554b90b542513a58a2de1ef2360)([#9011](https://www.github.com/tauri-apps/tauri/pull/9011)) Add a new `Image` type in Rust and JS. + +### Enhancements + +- [`e62ca4ee9`](https://www.github.com/tauri-apps/tauri/commit/e62ca4ee95f4308a6ad128d0f100c85634e28223)([#9070](https://www.github.com/tauri-apps/tauri/pull/9070)) Added a mechanism to preserve channel message order. + +## \[2.0.0-beta.3] + +### New Features + +- [`fdcaf935`](https://www.github.com/tauri-apps/tauri/commit/fdcaf935fa75ecfa2806939c4faad4fe9e880386)([#8939](https://www.github.com/tauri-apps/tauri/pull/8939)) Added the `reparent` function to the webview API. + +## \[2.0.0-beta.2] + +### Breaking Changes + +- [`361ec37f`](https://www.github.com/tauri-apps/tauri/commit/361ec37fd4a5caa5b6630b9563ef079f53c6c336)([#8932](https://www.github.com/tauri-apps/tauri/pull/8932)) Removed the `unityUri` option from the progress bar state, no longer required. + +## \[2.0.0-beta.1] + +### New Features + +- [`16e550ec`](https://www.github.com/tauri-apps/tauri/commit/16e550ec1503765158cdc3bb2a20e70ec710e981)([#8844](https://www.github.com/tauri-apps/tauri/pull/8844)) Add a new `webviewWindow` module that exports `WebviewWindow` class and related methods such as `getCurrent` and `getAll`. +- [`16e550ec`](https://www.github.com/tauri-apps/tauri/commit/16e550ec1503765158cdc3bb2a20e70ec710e981)([#8844](https://www.github.com/tauri-apps/tauri/pull/8844)) Add `Window.onFileDropEvent` method. + +### Breaking Changes + +- [`16e550ec`](https://www.github.com/tauri-apps/tauri/commit/16e550ec1503765158cdc3bb2a20e70ec710e981)([#8844](https://www.github.com/tauri-apps/tauri/pull/8844)) Renamed the following enum variants of `TauriEvent` enum: + + - `TauriEvent.WEBVIEW_FILE_DROP` -> `TauriEvent.FILE_DROP` + - `TauriEvent.WEBVIEW_FILE_DROP_HOVER` -> `TauriEvent.FILE_DROP_HOVER` + - `TauriEvent.WEBVIEW_FILE_DROP_CANCELLED` -> `TauriEvent.FILE_DROP_CANCELLED` +- [`16e550ec`](https://www.github.com/tauri-apps/tauri/commit/16e550ec1503765158cdc3bb2a20e70ec710e981)([#8844](https://www.github.com/tauri-apps/tauri/pull/8844)) Move `WebviewWindow` class from `webview` module to a new `webviewWindow` module. + +## \[2.0.0-beta.0] + +### New Features + +- [`74a2a603`](https://www.github.com/tauri-apps/tauri/commit/74a2a6036a5e57462f161d728cbd8a6f121028ca)([#8661](https://www.github.com/tauri-apps/tauri/pull/8661)) Implement access control list for IPC usage. +- [`a093682d`](https://www.github.com/tauri-apps/tauri/commit/a093682d2df7169b024bb4f736c7f1fd2ea8b327)([#8621](https://www.github.com/tauri-apps/tauri/pull/8621)) Added `emitTo` api to `event` module which is equivalent to the rust `emit_to` method. Also added `emitTo` method on `Window`, `Webivew` and `WebviewWindow` classes. +- [`a2fc3a63`](https://www.github.com/tauri-apps/tauri/commit/a2fc3a63579ca739646d696870cbecbb3a169d33)([#8657](https://www.github.com/tauri-apps/tauri/pull/8657)) Add `visibleOnAllWorkspaces` option when creating the window in JS and `Window.setVisibleOnAllWorkspaces` method. +- [`7f033f6d`](https://www.github.com/tauri-apps/tauri/commit/7f033f6dcd54c69a4193765a5c1584755ba92c61)([#8537](https://www.github.com/tauri-apps/tauri/pull/8537)) Add `Window.startResizeDragging`. +- [`9eaeb5a8`](https://www.github.com/tauri-apps/tauri/commit/9eaeb5a8cd95ae24b5e66205bdc2763cb7f965ce)([#8622](https://www.github.com/tauri-apps/tauri/pull/8622)) Add `parent` option when creating a window. +- [`af610232`](https://www.github.com/tauri-apps/tauri/commit/af6102327376884364b2075b468bdf08ee0d02aa)([#8710](https://www.github.com/tauri-apps/tauri/pull/8710)) Added `Window::destroy` to force close a window. +- [`c77b4032`](https://www.github.com/tauri-apps/tauri/commit/c77b40324ea9bf580871fc11aed69ba0c9b6b8cf)([#8280](https://www.github.com/tauri-apps/tauri/pull/8280)) Added support to multiwebview via the new `window` and `webview` modules. + +### Breaking Changes + +- [`c77b4032`](https://www.github.com/tauri-apps/tauri/commit/c77b40324ea9bf580871fc11aed69ba0c9b6b8cf)([#8280](https://www.github.com/tauri-apps/tauri/pull/8280)) Removed event callback's `windowLabel`. +- [`c77b4032`](https://www.github.com/tauri-apps/tauri/commit/c77b40324ea9bf580871fc11aed69ba0c9b6b8cf)([#8280](https://www.github.com/tauri-apps/tauri/pull/8280)) The event target is now an object so you can target either a window or a webview. +- [`c77b4032`](https://www.github.com/tauri-apps/tauri/commit/c77b40324ea9bf580871fc11aed69ba0c9b6b8cf)([#8280](https://www.github.com/tauri-apps/tauri/pull/8280)) Moved webview-specific APIs from the `Window` class to the `Webview` class. +- [`c77b4032`](https://www.github.com/tauri-apps/tauri/commit/c77b40324ea9bf580871fc11aed69ba0c9b6b8cf)([#8280](https://www.github.com/tauri-apps/tauri/pull/8280)) Renamed `TauriEvent.WINDOW_FILE_DROP` to `TauriEvent.WEBVIEW_FILE_DROP`, `TauriEvent.WINDOW_FILE_DROP_HOVER` to `TauriEvent.WEBVIEW_FILE_DROP_HOVER` and `TauriEvent.WINDOW_FILE_DROP_CANCELLED` to `TauriEvent.WEBVIEW_FILE_DROP_CANCELLED`. +- [`c77b4032`](https://www.github.com/tauri-apps/tauri/commit/c77b40324ea9bf580871fc11aed69ba0c9b6b8cf)([#8280](https://www.github.com/tauri-apps/tauri/pull/8280)) Added back the `WebviewWindow` API that exposes functionality of a window that hosts a single webview. The dedicated `Window` and `Webview` types are exposed for multiwebview features. +- [`af610232`](https://www.github.com/tauri-apps/tauri/commit/af6102327376884364b2075b468bdf08ee0d02aa)([#8710](https://www.github.com/tauri-apps/tauri/pull/8710)) `Window::close` now triggers a close requested event instead of forcing the window to be closed. + +## \[2.0.0-alpha.14] + +- [`97e33412`](https://www.github.com/tauri-apps/tauri/commit/97e334129956159bbd60e1c531b6acd3bc6139a6)([#8534](https://www.github.com/tauri-apps/tauri/pull/8534)) `mockIPC` and `mockWindows` no longer crash if `window.__TAURI_INTERNALS__` is undefined. + +## \[2.0.0-alpha.13] + +### New Features + +- [`428ea652`](https://www.github.com/tauri-apps/tauri/commit/428ea6524c70545be33aac96d7c22b21f25caa4c)([#8370](https://www.github.com/tauri-apps/tauri/pull/8370)) Exposed `Resource` class which should be extended for Rust-backed resources created through `tauri::Manager::resources_table`. + +### Bug Fixes + +- [`ef21b681`](https://www.github.com/tauri-apps/tauri/commit/ef21b681e237a80592c9118b9c023c1d57231bac)([#8391](https://www.github.com/tauri-apps/tauri/pull/8391)) Fix a regression where typescript could not find types when using `"moduleResolution": "node"` +- [`46451aee`](https://www.github.com/tauri-apps/tauri/commit/46451aee1318f63a6cd861a12b63929b38c64eb6)([#8268](https://www.github.com/tauri-apps/tauri/pull/8268)) Add top-level `main`, `module` and `types` fields in `package.json` to be compliant with typescripts's `"moduleResolution": "node"` + +### Breaking Changes + +- [`c2ad4d28`](https://www.github.com/tauri-apps/tauri/commit/c2ad4d28c481b2d7ed643458db56210cd44a2e0c)([#8273](https://www.github.com/tauri-apps/tauri/pull/8273)) Changed former `tauri` module from `primitives` to `core`. + +## \[2.0.0-alpha.12] + +### New Features + +- [`f93148ea`](https://www.github.com/tauri-apps/tauri/commit/f93148eac05a1428e038bd9351a8149b2464ff4c)([#7709](https://www.github.com/tauri-apps/tauri/pull/7709)) Add `tray` and `menu` modules to create and manage tray icons and menus from Javascript. + +### Enhancements + +- [`b7add750`](https://www.github.com/tauri-apps/tauri/commit/b7add750ef9f32d959de613ab35063ff240281c2)([#8204](https://www.github.com/tauri-apps/tauri/pull/8204)) Added `position` field to the `FileDropEvent` payload. + +## \[2.0.0-alpha.11] + +### Bug Fixes + +- [`822bf15d`](https://www.github.com/tauri-apps/tauri/commit/822bf15d6b258556b689ca55ac2ac224897e913a)([#8130](https://www.github.com/tauri-apps/tauri/pull/8130)) Fix tslib missing in the distributed api package. + +## \[2.0.0-alpha.10] + +### Enhancements + +- [`c6c59cf2`](https://www.github.com/tauri-apps/tauri/commit/c6c59cf2373258b626b00a26f4de4331765dd487) Pull changes from Tauri 1.5 release. + +### Bug Fixes + +- [`287066b2`](https://www.github.com/tauri-apps/tauri/commit/287066b279f503dd09bfd43d5da37d1f471451fb)([#8071](https://www.github.com/tauri-apps/tauri/pull/8071)) No longer crashing in tests without mocks when `clearMocks` is defined in `afterEach` hook. + +## \[2.0.0-alpha.9] + +### New Features + +- [`c1ec0f15`](https://www.github.com/tauri-apps/tauri/commit/c1ec0f155118527361dd5645d920becbc8afd569)([#7933](https://www.github.com/tauri-apps/tauri/pull/7933)) Added `setAlwaysOnBottom` function on `Window` and the `alwaysOnBottom` option when creating a window. +- [`fb10b879`](https://www.github.com/tauri-apps/tauri/commit/fb10b87970a43320ef4d14564f45e7579b774eaf)([#8039](https://www.github.com/tauri-apps/tauri/pull/8039)) Add the `app` module back. +- [`ed32257d`](https://www.github.com/tauri-apps/tauri/commit/ed32257d044f90b5eb15053efd1667125def2d2b)([#7794](https://www.github.com/tauri-apps/tauri/pull/7794)) On Windows, add `Effect.Tabbed`,`Effect.TabbedDark` and `Effect.TabbedLight` effects. +- [`c9a9246c`](https://www.github.com/tauri-apps/tauri/commit/c9a9246c37bdf190661355c8ee406dac6c427344)([#8007](https://www.github.com/tauri-apps/tauri/pull/8007)) Add the `window` module back. +- [`c085adda`](https://www.github.com/tauri-apps/tauri/commit/c085addab58ba851398373c6fd13f9cb026d71e8)([#8009](https://www.github.com/tauri-apps/tauri/pull/8009)) Added the `setProgressBar` API on the `Window` class. + +### What's Changed + +- [`5c0eeb40`](https://www.github.com/tauri-apps/tauri/commit/5c0eeb40c1003583290ff3aebfa02e2b5f5b9c41)([#7638](https://www.github.com/tauri-apps/tauri/pull/7638)) Updated minimum Node.js version to 18. + +### Breaking Changes + +- [`a63e71f9`](https://www.github.com/tauri-apps/tauri/commit/a63e71f9799e9bbc82521d2f17b5238fbf690e89)([#7942](https://www.github.com/tauri-apps/tauri/pull/7942)) Changed `tauri` module to `primitives` and removed the undocumented `invoke` export from the root module. + +## \[2.0.0-alpha.8] + +### Breaking Changes + +- [`d5074af5`](https://www.github.com/tauri-apps/tauri/commit/d5074af562b2b5cb6c5711442097c4058af32db6)([#7801](https://www.github.com/tauri-apps/tauri/pull/7801)) The custom protocol on Android now uses the `http` scheme instead of `https`. + +## \[2.0.0-alpha.7] + +### Breaking Changes + +- [`4cb51a2d`](https://www.github.com/tauri-apps/tauri/commit/4cb51a2d56cfcae0749062c79ede5236bd8c02c2)([#7779](https://www.github.com/tauri-apps/tauri/pull/7779)) The custom protocol on Windows now uses the `http` scheme instead of `https`. + +## \[2.0.0-alpha.6] + +### New Features + +- [`4af5c5a8`](https://www.github.com/tauri-apps/tauri/commit/4af5c5a8293263c16f8a65e8d232f2de52f41701)([#7170](https://www.github.com/tauri-apps/tauri/pull/7170)) Change the IPC call to align with the new format for the custom protocol based API. + +## \[2.0.0-alpha.5] + +### New Features + +- [`e0f0dce2`](https://www.github.com/tauri-apps/tauri/commit/e0f0dce220730e2822fc202463aedf0166145de7)([#6442](https://www.github.com/tauri-apps/tauri/pull/6442)) Added the `windowEffects` option when creating a window and `setWindowEffects` method to change it at runtime. + +### Enhancements + +- [`9e3a18e0`](https://www.github.com/tauri-apps/tauri/commit/9e3a18e04672edad15d0ec654bd8632544871967)([#7132](https://www.github.com/tauri-apps/tauri/pull/7132)) Expose the window target option on event APIs. +- [`6d3f3138`](https://www.github.com/tauri-apps/tauri/commit/6d3f3138b9e2f41cda712c7d9caba0f0e65dfd3c)([#7160](https://www.github.com/tauri-apps/tauri/pull/7160)) Changed `sep` and `delimiter` from `path` module into functions to fix import in frameworks like `next.js` +- [`4652c446`](https://www.github.com/tauri-apps/tauri/commit/4652c446b361a801252bcf45e9da39813bf85482)([#7144](https://www.github.com/tauri-apps/tauri/pull/7144)) Add `tempDir` function to `path` module + +## \[2.0.0-alpha.4] + +- [`0ab5f40d`](https://www.github.com/tauri-apps/tauri/commit/0ab5f40d3a4207f20e4440587b41c4e78f91d233)([#6813](https://www.github.com/tauri-apps/tauri/pull/6813)) Add channel API for sending data across the IPC. +- [`3245d14b`](https://www.github.com/tauri-apps/tauri/commit/3245d14b9eb256a5c5675c7030bac7082855df47)([#6895](https://www.github.com/tauri-apps/tauri/pull/6895)) Moved the `app` feature to its own plugin in the plugins-workspace repository. +- [`09376af5`](https://www.github.com/tauri-apps/tauri/commit/09376af59424cc27803fa2820d2ac0d4cdc90a6d)([#6704](https://www.github.com/tauri-apps/tauri/pull/6704)) Moved the `cli` feature to its own plugin in the plugins-workspace repository. +- [`2d5378bf`](https://www.github.com/tauri-apps/tauri/commit/2d5378bfc1ba817ee2f331b41738a90e5997e5e8)([#6717](https://www.github.com/tauri-apps/tauri/pull/6717)) Moved the dialog APIs to its own plugin in the plugins-workspace repository. +- [`39f1b04f`](https://www.github.com/tauri-apps/tauri/commit/39f1b04f7be4966488484829cd54c8ce72a04200)([#6943](https://www.github.com/tauri-apps/tauri/pull/6943)) Moved the `event` JS APIs to a plugin. +- [`fc4d687e`](https://www.github.com/tauri-apps/tauri/commit/fc4d687ef0ef2ea069ed73c40916da733b5dcb8f)([#6716](https://www.github.com/tauri-apps/tauri/pull/6716)) Moved the file system APIs to its own plugin in the plugins-workspace repository. +- [`f78a3783`](https://www.github.com/tauri-apps/tauri/commit/f78a378344bbec48533641661d865920a8f46f8f)([#6742](https://www.github.com/tauri-apps/tauri/pull/6742)) Moved the `http` feature to its own plugin in the plugins-workspace repository. +- [`29ce9ce2`](https://www.github.com/tauri-apps/tauri/commit/29ce9ce2ce7dfb260d556d5cffd075e8fe06660c)([#6902](https://www.github.com/tauri-apps/tauri/pull/6902)) Moved the `os` feature to its own plugin in the plugins-workspace repository. +- [`60cf9ed2`](https://www.github.com/tauri-apps/tauri/commit/60cf9ed2fcd7be4df41e86cf18735efe9b6cb254)([#6905](https://www.github.com/tauri-apps/tauri/pull/6905)) Moved the `process` feature to its own plugin in the plugins-workspace repository. +- [`96639ca2`](https://www.github.com/tauri-apps/tauri/commit/96639ca239c9e4f75142fc07868ac46822111cff)([#6749](https://www.github.com/tauri-apps/tauri/pull/6749)) Moved the `shell` functionality to its own plugin in the plugins-workspace repository. +- [`b072daa3`](https://www.github.com/tauri-apps/tauri/commit/b072daa3bd3e38b808466666619ddb885052c5b2)([#6919](https://www.github.com/tauri-apps/tauri/pull/6919)) Moved the `updater` feature to its own plugin in the plugins-workspace repository. +- [`cebd7526`](https://www.github.com/tauri-apps/tauri/commit/cebd75261ac71b98976314a450cb292eeeec1515)([#6728](https://www.github.com/tauri-apps/tauri/pull/6728)) Moved the `clipboard` feature to its own plugin in the plugins-workspace repository. +- [`3f17ee82`](https://www.github.com/tauri-apps/tauri/commit/3f17ee82f6ff21108806edb7b00500b8512b8dc7)([#6737](https://www.github.com/tauri-apps/tauri/pull/6737)) Moved the `global-shortcut` feature to its own plugin in the plugins-workspace repository. +- [`9a79dc08`](https://www.github.com/tauri-apps/tauri/commit/9a79dc085870e0c1a5df13481ff271b8c6cc3b78)([#6947](https://www.github.com/tauri-apps/tauri/pull/6947)) Moved the `window` JS APIs to its own plugin in the plugins-workspace repository. + +## \[2.0.0-alpha.3] + +- Overload the dialog `open` function to have better TS result types. + - [1eacd51d](https://www.github.com/tauri-apps/tauri/commit/1eacd51d185ba69a3c3cb2cc93c792e2d5929843) overloaded the open function for convenient type inference ([#5619](https://www.github.com/tauri-apps/tauri/pull/5619)) on 2023-04-07 + +## \[2.0.0-alpha.2] + +- Added `raw` encoding option to read stdout and stderr raw bytes. + - [f992e7f5](https://www.github.com/tauri-apps/tauri/commit/f992e7f58bf975c654a3daf36780b31a32bac064) chore(changes): readd change file on 2023-04-03 +- Removed shell's `Command` constructor and added the `Command.create` static function instead. + - [509d4678](https://www.github.com/tauri-apps/tauri/commit/509d4678b12816c1dd08a9a5efa71ba556d91c27) Support sending raw byte data to the "data" event for child command's stdout and stderr ([#5789](https://www.github.com/tauri-apps/tauri/pull/5789)) on 2023-03-31 + +## \[2.0.0-alpha.1] + +- Added the `shadow` option when creating a window and `setShadow` function. + - [a81750d7](https://www.github.com/tauri-apps/tauri/commit/a81750d779bc72f0fdb7de90b7fbddfd8049b328) feat(core): add shadow APIs ([#6206](https://www.github.com/tauri-apps/tauri/pull/6206)) on 2023-02-08 + +## \[2.0.0-alpha.0] + +- First mobile alpha release! + - [fa3a1098](https://www.github.com/tauri-apps/tauri/commit/fa3a10988a03aed1b66fb17d893b1a9adb90f7cd) feat(ci): prepare 2.0.0-alpha.0 ([#5786](https://www.github.com/tauri-apps/tauri/pull/5786)) on 2022-12-08 + +## \[1.5.3] + +### Bug Fixes + +- [`1c582a94`](https://www.github.com/tauri-apps/tauri/commit/1c582a942e345a066b65620e4db9f688ec142bb9)([#8392](https://www.github.com/tauri-apps/tauri/pull/8392)) Fix a regression where typescript could not find types when using `"moduleResolution": "node"` + +## \[1.5.2] + +### Bug Fixes + +- [`50462702`](https://www.github.com/tauri-apps/tauri/commit/504627027303ef5a0e855aab2abea64c6964223b)([#8267](https://www.github.com/tauri-apps/tauri/pull/8267)) Add top-level `main`, `module` and `types` fields in `package.json` to be compliant with typescripts's `"moduleResolution": "node"` +- [`14544e4b`](https://www.github.com/tauri-apps/tauri/commit/14544e4b87269c06c89fed3647d80f492e0a1d34)([#8219](https://www.github.com/tauri-apps/tauri/pull/8219)) Avoid crashing in `clearMocks` + +## \[1.5.1] + +### New Features + +- [`2b0212af`](https://www.github.com/tauri-apps/tauri/commit/2b0212af49c386e52bb2357381813d6d435ec4af)([#7961](https://www.github.com/tauri-apps/tauri/pull/7961)) Add `mockConvertFileSrc` in `mocks` module, to mock `convertFileSrc` function. + +## \[1.5.0] + +### New Features + +- [`6c408b73`](https://www.github.com/tauri-apps/tauri/commit/6c408b736c7aa2a0a91f0a40d45a2b7a7dedfe78)([#7269](https://www.github.com/tauri-apps/tauri/pull/7269)) Add option to specify notification sound. + +### Enhancements + +- [`58d6b899`](https://www.github.com/tauri-apps/tauri/commit/58d6b899e21d37bb42810890d289deb57f2273bd)([#7636](https://www.github.com/tauri-apps/tauri/pull/7636)) Add `append` option to `FsOptions` in the `fs` JS module, used in `writeTextFile` and `writeBinaryFile`, to be able to append to existing files instead of overwriting it. + +### Bug Fixes + +- [`2eab1505`](https://www.github.com/tauri-apps/tauri/commit/2eab1505632ff71431d4c31c49b5afc78fa5b9dd)([#7394](https://www.github.com/tauri-apps/tauri/pull/7394)) Fix `Body.form` static not reading and sending entries of type `Blob` (including subclasses such as `File`) + +## \[1.4.0] + +### New Features + +- [`359058ce`](https://www.github.com/tauri-apps/tauri/commit/359058cecca44a9c30b65140c44a8bb3a6dd3be8)([#5939](https://www.github.com/tauri-apps/tauri/pull/5939)) Add `locale` function in the `os` module to get the system locale. +- [`c4d6fb4b`](https://www.github.com/tauri-apps/tauri/commit/c4d6fb4b1ea8acf02707a9fe5dcab47c1c5bae7b)([#2353](https://www.github.com/tauri-apps/tauri/pull/2353)) Added the `maximizable`, `minimizable` and `closable` fields on `WindowOptions`. +- [`c4d6fb4b`](https://www.github.com/tauri-apps/tauri/commit/c4d6fb4b1ea8acf02707a9fe5dcab47c1c5bae7b)([#2353](https://www.github.com/tauri-apps/tauri/pull/2353)) Added the `setMaximizable`, `setMinimizable`, `setClosable`, `isMaximizable`, `isMinimizable` and `isClosable` methods. +- [`000104bc`](https://www.github.com/tauri-apps/tauri/commit/000104bc3bc0c9ff3d20558ab9cf2080f126e9e0)([#6472](https://www.github.com/tauri-apps/tauri/pull/6472)) Add `WebviewWindow.is_focused` and `WebviewWindow.getFocusedWindow` getters. + +## \[1.3.0] + +- Return correct type for `event.payload` in `onResized` and `onMoved` window event handlers. + - [0b46637e](https://www.github.com/tauri-apps/tauri/commit/0b46637ebaba54403afa32a1cb466f09df2db999) fix(api): construct correct object for onResized and onMoved, closes [#6507](https://www.github.com/tauri-apps/tauri/pull/6507) ([#6509](https://www.github.com/tauri-apps/tauri/pull/6509)) on 2023-04-03 +- Added the `WindowOptions::contentProtected` option and `WebviewWindow#setContentProtected` to change it at runtime. + - [4ab5545b](https://www.github.com/tauri-apps/tauri/commit/4ab5545b7a831c549f3c65e74de487ede3ab7ce5) feat: add content protection api, closes [#5132](https://www.github.com/tauri-apps/tauri/pull/5132) ([#5513](https://www.github.com/tauri-apps/tauri/pull/5513)) on 2022-12-13 +- Allow setting the text of the dialog buttons. + - [00e1efaa](https://www.github.com/tauri-apps/tauri/commit/00e1efaa9b33876d41dd360624b69971e70d3856) feat: customize button texts of message dialog ([#4383](https://www.github.com/tauri-apps/tauri/pull/4383)) on 2022-12-28 +- Add `is_minimized()` window method. + - [62144ef3](https://www.github.com/tauri-apps/tauri/commit/62144ef3be63b237869e511826edfb938e2c7174) feat: add is_minimized (fix [#3878](https://www.github.com/tauri-apps/tauri/pull/3878)) ([#5618](https://www.github.com/tauri-apps/tauri/pull/5618)) on 2022-12-13 +- Add `title` getter on window. + - [233e43b0](https://www.github.com/tauri-apps/tauri/commit/233e43b0c34fada1ca025378533a0b76931a6540) feat: add `title` getter on window, closes [#5023](https://www.github.com/tauri-apps/tauri/pull/5023) ([#5515](https://www.github.com/tauri-apps/tauri/pull/5515)) on 2022-12-13 + +## \[1.2.0] + +- Added the `acceptFirstMouse` window option. + - [95f467ad](https://www.github.com/tauri-apps/tauri/commit/95f467add51448319983c54e2f382c7c09fb72d6) feat(core): add window `accept_first_mouse` option, closes [#5347](https://www.github.com/tauri-apps/tauri/pull/5347) ([#5374](https://www.github.com/tauri-apps/tauri/pull/5374)) on 2022-10-17 +- Fix incorrect return type on `fs/exists` + - [ca3cd8b3](https://www.github.com/tauri-apps/tauri/commit/ca3cd8b3d11beb9b6102da40b7d27f6dbe6cd2d0) fix(api): fs/exists return type previously set to void when it should be boolean ([#5252](https://www.github.com/tauri-apps/tauri/pull/5252)) on 2022-09-29 +- Initialize `Monitor` instances with the correct classes for `position` and `size` fields instead of plain object. + - [6f41a271](https://www.github.com/tauri-apps/tauri/commit/6f41a2712445ac41a5ed84bbcd40af3b76c8b1d8) fix(api.js): fix `Monitor` initialization, closes [#4672](https://www.github.com/tauri-apps/tauri/pull/4672) ([#5314](https://www.github.com/tauri-apps/tauri/pull/5314)) on 2022-09-30 +- **Breaking change:** Node.js v12 is no longer supported. + - [1129f4f5](https://www.github.com/tauri-apps/tauri/commit/1129f4f575dd02f746abe8e66472c88c8f9fe63d) refactor: simplify api.js bundling ([#4277](https://www.github.com/tauri-apps/tauri/pull/4277)) on 2022-10-04 +- Add new app-specific `BaseDirectory` enum variants `AppConfig`, `AppData`, `AppLocalData`, `AppCache` and `AppLog` along with equivalent functions in `path` module and deprecated ambiguous variants `Log` and `App` along with their equivalent functions in `path` module. + - [5d89905e](https://www.github.com/tauri-apps/tauri/commit/5d89905e39ce0e6eaaec50a693679335449edb32) feat(api): add app-specific directory APIs, closes [#5263](https://www.github.com/tauri-apps/tauri/pull/5263) ([#5272](https://www.github.com/tauri-apps/tauri/pull/5272)) on 2022-09-28 +- Fix `dialog.save` return type + - [8357ce5b](https://www.github.com/tauri-apps/tauri/commit/8357ce5b2efdd6f92c7944822542e48ba0e303ce) Fix dialog.save return type ([#5373](https://www.github.com/tauri-apps/tauri/pull/5373)) on 2022-10-08 +- Added support to `FormData` on the `Body.form` function. + - [aa119f28](https://www.github.com/tauri-apps/tauri/commit/aa119f28364f8ffbc64c6bcdfc77483613076a20) feat(api): add FormData support on Body.form, closes [#5545](https://www.github.com/tauri-apps/tauri/pull/5545) ([#5546](https://www.github.com/tauri-apps/tauri/pull/5546)) on 2022-11-04 +- Added `show` and `hide` methods on the `app` module. + - [39bf895b](https://www.github.com/tauri-apps/tauri/commit/39bf895b73ec6b53f5758815396ba85dda6b9c67) feat(macOS): Add application `show` and `hide` methods ([#3689](https://www.github.com/tauri-apps/tauri/pull/3689)) on 2022-10-03 +- Added `tabbingIdentifier` window option for macOS. + - [4137ab44](https://www.github.com/tauri-apps/tauri/commit/4137ab44a81d739556cbc7583485887e78952bf1) feat(macos): add `tabbing_identifier` option, closes [#2804](https://www.github.com/tauri-apps/tauri/pull/2804), [#3912](https://www.github.com/tauri-apps/tauri/pull/3912) ([#5399](https://www.github.com/tauri-apps/tauri/pull/5399)) on 2022-10-19 +- Added `tabbing_identifier` to the window builder on macOS. + - [4137ab44](https://www.github.com/tauri-apps/tauri/commit/4137ab44a81d739556cbc7583485887e78952bf1) feat(macos): add `tabbing_identifier` option, closes [#2804](https://www.github.com/tauri-apps/tauri/pull/2804), [#3912](https://www.github.com/tauri-apps/tauri/pull/3912) ([#5399](https://www.github.com/tauri-apps/tauri/pull/5399)) on 2022-10-19 +- Added the `user_agent` option when creating a window. + - [a6c94119](https://www.github.com/tauri-apps/tauri/commit/a6c94119d8545d509723b147c273ca5edfe3729f) feat(core): expose user_agent to window config ([#5317](https://www.github.com/tauri-apps/tauri/pull/5317)) on 2022-10-02 + +## \[1.1.0] + +- Update `mockIPC()` handler signature to allow async handler functions. + - [4fa968dc](https://www.github.com/tauri-apps/tauri/commit/4fa968dc0e74b5206bfcd54e704d180c16b67b08) fix(api): add async `mockIPC()` handler signature ([#5056](https://www.github.com/tauri-apps/tauri/pull/5056)) on 2022-08-26 +- Improve shell's `Command`, `Command.stdout` and `Command.stderr` events with new `once`, `off`, `listenerCount`, `prependListener`, `prependOnceListener` and `removeAllListeners` functions. + - [aa9f1243](https://www.github.com/tauri-apps/tauri/commit/aa9f1243e6c1629972a82e469f20c8399741740e) Improved EventEmitter for tauri api shell ([#4697](https://www.github.com/tauri-apps/tauri/pull/4697)) on 2022-07-26 +- Added the `encoding` option to the `Command` options. + - [d8cf9f9f](https://www.github.com/tauri-apps/tauri/commit/d8cf9f9fcd617ac24fa418952fd4a32c08804f5c) Command support for specified character encoding, closes [#4644](https://www.github.com/tauri-apps/tauri/pull/4644) ([#4772](https://www.github.com/tauri-apps/tauri/pull/4772)) on 2022-07-28 +- Add `exists` function to the fs module. + - [3c62dbc9](https://www.github.com/tauri-apps/tauri/commit/3c62dbc902c904d35a7472ce72a969084c95fbbe) feat(api): Add `exists` function to the fs module. ([#5060](https://www.github.com/tauri-apps/tauri/pull/5060)) on 2022-09-15 + +## \[1.0.2] + +- Added helper functions to listen to updater and window events. + - [b02fc90f](https://www.github.com/tauri-apps/tauri/commit/b02fc90f450ff9e9d8a35ee55dc1beced4957869) feat(api): add abstractions to updater and window event listeners ([#4569](https://www.github.com/tauri-apps/tauri/pull/4569)) on 2022-07-05 +- Add support to `ArrayBuffer` in `Body.bytes` and `writeBinaryFile`. + - [92aca55a](https://www.github.com/tauri-apps/tauri/commit/92aca55a6f1f899d5c0c3a6aae9ac9cb0a7e9a86) feat(api): add support to ArrayBuffer ([#4579](https://www.github.com/tauri-apps/tauri/pull/4579)) on 2022-07-05 +- Use `toString()` on message/confirm/ask dialogs title and message values. + - [b8cd2a79](https://www.github.com/tauri-apps/tauri/commit/b8cd2a7993cd2aa5b71b30c545b3307245d254bf) feat(api): call `toString()` on dialog title and message, closes [#4583](https://www.github.com/tauri-apps/tauri/pull/4583) ([#4588](https://www.github.com/tauri-apps/tauri/pull/4588)) on 2022-07-04 +- Remove the `type-fest` dependency, changing the OS types to the specific enum instead of allowing any string. + - [d5e910eb](https://www.github.com/tauri-apps/tauri/commit/d5e910ebcc6c8d7f055ab0691286722b140ffcd4) chore(api): remove `type-fest` ([#4605](https://www.github.com/tauri-apps/tauri/pull/4605)) on 2022-07-06 + +## \[1.0.1] + +- Fixes the `writeBinaryFile` sending an empty file contents when only the first argument is passed. + - [ea43cf52](https://www.github.com/tauri-apps/tauri/commit/ea43cf52db8541d20a6397ef3ecd40f0f2bd6113) fix(api): `writeBinaryFile` sends an empty contents with only one arg ([#4368](https://www.github.com/tauri-apps/tauri/pull/4368)) on 2022-06-16 + +## \[1.0.0] + +- Allow choosing multiple folders in `dialog.open`. + - [4e51dce6](https://www.github.com/tauri-apps/tauri/commit/4e51dce6ca21c7664de779bc78a04be1051371f7) fix: dialog open supports multiple dirs, fixes [#4091](https://www.github.com/tauri-apps/tauri/pull/4091) ([#4354](https://www.github.com/tauri-apps/tauri/pull/4354)) on 2022-06-15 +- Upgrade to `stable`! + - [f4bb30cc](https://www.github.com/tauri-apps/tauri/commit/f4bb30cc73d6ba9b9ef19ef004dc5e8e6bb901d3) feat(covector): prepare for v1 ([#4351](https://www.github.com/tauri-apps/tauri/pull/4351)) on 2022-06-15 + +## \[1.0.0-rc.7] + +- Fix `FilePart` usage in `http.Body.form` by renaming the `value` property to `file`. + - [55f89d5f](https://www.github.com/tauri-apps/tauri/commit/55f89d5f9d429252ad3fd557b1d6233b256495e0) fix(api): Rename FormPart `value` to `file` to match docs and endpoint ([#4307](https://www.github.com/tauri-apps/tauri/pull/4307)) on 2022-06-09 +- Fixes a memory leak in the command system. + - [f72cace3](https://www.github.com/tauri-apps/tauri/commit/f72cace36821dc675a6d25268ae85a21bdbd6296) fix: never remove ipc callback & mem never be released ([#4274](https://www.github.com/tauri-apps/tauri/pull/4274)) on 2022-06-05 +- The notification's `isPermissionGranted` function now returns `boolean` instead of `boolean | null`. The response is never `null` because we won't check the permission for now, always returning `true` instead. + - [f482b094](https://www.github.com/tauri-apps/tauri/commit/f482b0942276e9402ab3725957535039bacb4fef) fix: remove notification permission prompt ([#4302](https://www.github.com/tauri-apps/tauri/pull/4302)) on 2022-06-09 +- Added the `resolveResource` API to the path module. + - [7bba8db8](https://www.github.com/tauri-apps/tauri/commit/7bba8db83ead92e9bd9c4be7863742e71ac47513) feat(api): add `resolveResource` API to the path module ([#4234](https://www.github.com/tauri-apps/tauri/pull/4234)) on 2022-05-29 +- Renamed `writeFile` to `writeTextFile` but kept the original function for backwards compatibility. + - [3f998ca2](https://www.github.com/tauri-apps/tauri/commit/3f998ca29445a349489078a74dd068e157a4d68e) feat(api): add `writeTextFile` and `(path, contents, options)` overload ([#4228](https://www.github.com/tauri-apps/tauri/pull/4228)) on 2022-05-29 +- Added `(path, contents[, options])` overload to the `writeTextFile` and `writeBinaryFile` APIs. + - [3f998ca2](https://www.github.com/tauri-apps/tauri/commit/3f998ca29445a349489078a74dd068e157a4d68e) feat(api): add `writeTextFile` and `(path, contents, options)` overload ([#4228](https://www.github.com/tauri-apps/tauri/pull/4228)) on 2022-05-29 + +## \[1.0.0-rc.6] + +- Expose option to set the dialog type. + - [f46175d5](https://www.github.com/tauri-apps/tauri/commit/f46175d5d46fa3eae66ad2415a0eb1efb7d31da2) feat(core): expose option to set dialog type, closes [#4183](https://www.github.com/tauri-apps/tauri/pull/4183) ([#4187](https://www.github.com/tauri-apps/tauri/pull/4187)) on 2022-05-21 +- Expose `title` option in the message dialog API. + - [ae99f991](https://www.github.com/tauri-apps/tauri/commit/ae99f991674d77c322a2240d10ed4b78ed2f4d4b) feat(core): expose message dialog's title option, ref [#4183](https://www.github.com/tauri-apps/tauri/pull/4183) ([#4186](https://www.github.com/tauri-apps/tauri/pull/4186)) on 2022-05-21 + +## \[1.0.0-rc.5] + +- Fixes the type of `http > connectTimeout`. + - [f3c5ca89](https://www.github.com/tauri-apps/tauri/commit/f3c5ca89e79d429183c4e15a9e7cebada2b493a0) fix(core): http api `connect_timeout` deserialization, closes [#4004](https://www.github.com/tauri-apps/tauri/pull/4004) ([#4006](https://www.github.com/tauri-apps/tauri/pull/4006)) on 2022-04-29 + +## \[1.0.0-rc.4] + +- Encode the file path in the `convertFileSrc` function. + - [42e8d9cf](https://www.github.com/tauri-apps/tauri/commit/42e8d9cf925089e9ad591198ee04b0cc0a0eed48) fix(api): encode file path in `convertFileSrc` function, closes [#3841](https://www.github.com/tauri-apps/tauri/pull/3841) ([#3846](https://www.github.com/tauri-apps/tauri/pull/3846)) on 2022-04-02 +- Added `theme` getter to `WebviewWindow`. + - [4cebcf6d](https://www.github.com/tauri-apps/tauri/commit/4cebcf6da7cad1953e0f01b426afac3b5ef1f81e) feat: expose theme APIs, closes [#3903](https://www.github.com/tauri-apps/tauri/pull/3903) ([#3937](https://www.github.com/tauri-apps/tauri/pull/3937)) on 2022-04-21 +- Added `theme` field to `WindowOptions`. + - [4cebcf6d](https://www.github.com/tauri-apps/tauri/commit/4cebcf6da7cad1953e0f01b426afac3b5ef1f81e) feat: expose theme APIs, closes [#3903](https://www.github.com/tauri-apps/tauri/pull/3903) ([#3937](https://www.github.com/tauri-apps/tauri/pull/3937)) on 2022-04-21 +- Added the `setCursorGrab`, `setCursorVisible`, `setCursorIcon` and `setCursorPosition` methods to the `WebviewWindow` class. + - [c54ddfe9](https://www.github.com/tauri-apps/tauri/commit/c54ddfe9338e7eb90b4d5b02dfde687d432d5bc1) feat: expose window cursor APIs, closes [#3888](https://www.github.com/tauri-apps/tauri/pull/3888) [#3890](https://www.github.com/tauri-apps/tauri/pull/3890) ([#3935](https://www.github.com/tauri-apps/tauri/pull/3935)) on 2022-04-21 +- **Breaking change:** The process Command API stdio lines now includes the trailing `\r`. + - [b5622882](https://www.github.com/tauri-apps/tauri/commit/b5622882cf3748e1e5a90915f415c0cd922aaaf8) fix(cli): exit on non-compilation Cargo errors, closes [#3930](https://www.github.com/tauri-apps/tauri/pull/3930) ([#3942](https://www.github.com/tauri-apps/tauri/pull/3942)) on 2022-04-22 +- Added the `tauri://theme-changed` event. + - [4cebcf6d](https://www.github.com/tauri-apps/tauri/commit/4cebcf6da7cad1953e0f01b426afac3b5ef1f81e) feat: expose theme APIs, closes [#3903](https://www.github.com/tauri-apps/tauri/pull/3903) ([#3937](https://www.github.com/tauri-apps/tauri/pull/3937)) on 2022-04-21 + +## \[1.0.0-rc.3] + +- Properly define the `appWindow` type. + - [1deeb03e](https://www.github.com/tauri-apps/tauri/commit/1deeb03ef6c7cbea8cf585864424a3d66f184a02) fix(api.js): appWindow shown as type `any`, fixes [#3747](https://www.github.com/tauri-apps/tauri/pull/3747) ([#3772](https://www.github.com/tauri-apps/tauri/pull/3772)) on 2022-03-24 +- Added `Temp` to the `BaseDirectory` enum. + - [266156a0](https://www.github.com/tauri-apps/tauri/commit/266156a0b08150b21140dd552c8bc252fe413cdd) feat(core): add `BaseDirectory::Temp` and `$TEMP` variable ([#3763](https://www.github.com/tauri-apps/tauri/pull/3763)) on 2022-03-24 + +## \[1.0.0-rc.2] + +- Do not crash if `__TAURI_METADATA__` is not set, log an error instead. + - [9cb1059a](https://www.github.com/tauri-apps/tauri/commit/9cb1059aa3f81521ccc6da655243acfe0327cd98) fix(api): do not throw an exception if **TAURI_METADATA** is not set, fixes [#3554](https://www.github.com/tauri-apps/tauri/pull/3554) ([#3572](https://www.github.com/tauri-apps/tauri/pull/3572)) on 2022-03-03 +- Reimplement endpoint to read file as string for performance. + - [834ccc51](https://www.github.com/tauri-apps/tauri/commit/834ccc51539401d36a7dfa1c0982623c9c446a4c) feat(core): reimplement `readTextFile` for performance ([#3631](https://www.github.com/tauri-apps/tauri/pull/3631)) on 2022-03-07 +- Fixes a regression on the `unlisten` command. + - [76c791bd](https://www.github.com/tauri-apps/tauri/commit/76c791bd2b836d2055410e37e71716172a3f81ef) fix(core): regression on the unlisten function ([#3623](https://www.github.com/tauri-apps/tauri/pull/3623)) on 2022-03-06 + +## \[1.0.0-rc.1] + +- Provide functions to mock IPC calls during testing and static site generation. + - [7e04c072](https://www.github.com/tauri-apps/tauri/commit/7e04c072c4ee2278c648f44575c6c4710ac047f3) feat: add mock functions for testing and SSG ([#3437](https://www.github.com/tauri-apps/tauri/pull/3437)) on 2022-02-14 + - [6f5ed2e6](https://www.github.com/tauri-apps/tauri/commit/6f5ed2e69cb7ffa0d5c8eb5a744fbf94ed6010d4) fix: change file on 2022-02-14 + +## \[1.0.0-rc.0] + +- Add `fileDropEnabled` property to `WindowOptions` so you can now disable it when creating windows from js. + + - [1bfc32a3](https://www.github.com/tauri-apps/tauri/commit/1bfc32a3b2f31b962ce8a5c611b60cb008360923) fix(api.js): add `fileDropEnabled` to `WindowOptions`, closes [#2968](https://www.github.com/tauri-apps/tauri/pull/2968) ([#2989](https://www.github.com/tauri-apps/tauri/pull/2989)) on 2021-12-09 + +- Add `logDir` function to the `path` module to access the suggested log directory. + Add `BaseDirectory.Log` to the `fs` module. + + - [acbb3ae7](https://www.github.com/tauri-apps/tauri/commit/acbb3ae7bb0165846b9456aea103269f027fc548) feat: add Log directory ([#2736](https://www.github.com/tauri-apps/tauri/pull/2736)) on 2021-10-16 + - [62c7a8ad](https://www.github.com/tauri-apps/tauri/commit/62c7a8ad30fd3031b8679960590e5ef3eef8e4da) chore(covector): prepare for `rc` release ([#3376](https://www.github.com/tauri-apps/tauri/pull/3376)) on 2022-02-10 + +- Expose `ask`, `message` and `confirm` APIs on the dialog module. + + - [e98c1af4](https://www.github.com/tauri-apps/tauri/commit/e98c1af44279a5ff6c8a6f0a506ecc219c9f77af) feat(core): expose message dialog APIs, fix window.confirm, implement HasRawWindowHandle for Window, closes [#2535](https://www.github.com/tauri-apps/tauri/pull/2535) ([#2700](https://www.github.com/tauri-apps/tauri/pull/2700)) on 2021-10-02 + +- Event `emit` now automatically serialize non-string types. + + - [06000996](https://www.github.com/tauri-apps/tauri/commit/060009969627890fa9018e2f1105bad13299394c) feat(api): support unknown types for event emit payload, closes [#2929](https://www.github.com/tauri-apps/tauri/pull/2929) ([#2964](https://www.github.com/tauri-apps/tauri/pull/2964)) on 2022-01-07 + +- Fix `http.fetch` throwing error if the response is successful but the body is empty. + + - [50c63900](https://www.github.com/tauri-apps/tauri/commit/50c63900c7313064037e2ceb798a6432fcd1bcda) fix(api.js): fix `http.fetch` throwing error if response body is empty, closes [#2831](https://www.github.com/tauri-apps/tauri/pull/2831) ([#3008](https://www.github.com/tauri-apps/tauri/pull/3008)) on 2021-12-09 + +- Add `title` option to file open/save dialogs. + + - [e1d6a6e6](https://www.github.com/tauri-apps/tauri/commit/e1d6a6e6445637723e2331ca799a662e720e15a8) Create api-file-dialog-title.md ([#3235](https://www.github.com/tauri-apps/tauri/pull/3235)) on 2022-01-16 + - [62c7a8ad](https://www.github.com/tauri-apps/tauri/commit/62c7a8ad30fd3031b8679960590e5ef3eef8e4da) chore(covector): prepare for `rc` release ([#3376](https://www.github.com/tauri-apps/tauri/pull/3376)) on 2022-02-10 + +- Fix `os.platform` returning `macos` and `windows` instead of `darwin` and `win32`. + + - [3924c3d8](https://www.github.com/tauri-apps/tauri/commit/3924c3d85365df30b376a1ec6c2d933460d66af0) fix(api.js): fix `os.platform` return on macos and windows, closes [#2698](https://www.github.com/tauri-apps/tauri/pull/2698) ([#2699](https://www.github.com/tauri-apps/tauri/pull/2699)) on 2021-10-02 + +- The `formatCallback` helper function now returns a number instead of a string. + + - [a48b8b18](https://www.github.com/tauri-apps/tauri/commit/a48b8b18d428bcc404d489daa690bbefe1f57311) feat(core): validate callbacks and event names \[TRI-038] \[TRI-020] ([#21](https://www.github.com/tauri-apps/tauri/pull/21)) on 2022-01-09 + +- Added `rawHeaders` to `http > Response`. + + - [b7a2345b](https://www.github.com/tauri-apps/tauri/commit/b7a2345b06ca0306988b4ba3d3deadd449e65af9) feat(core): add raw headers to HTTP API, closes [#2695](https://www.github.com/tauri-apps/tauri/pull/2695) ([#3053](https://www.github.com/tauri-apps/tauri/pull/3053)) on 2022-01-07 + +- Removed the `currentDir` API from the `path` module. + + - [a08509c6](https://www.github.com/tauri-apps/tauri/commit/a08509c641f43695e25944a2dd47697b18cd83e2) fix(api): remove `currentDir` API from the `path` module on 2022-02-04 + +- Remove `.ts` files on the published package. + + - [0f321ac0](https://www.github.com/tauri-apps/tauri/commit/0f321ac08d56412edd5bc9d166201fbc95d887d8) fix(api): do not ship TS files, closes [#2598](https://www.github.com/tauri-apps/tauri/pull/2598) ([#2645](https://www.github.com/tauri-apps/tauri/pull/2645)) on 2021-09-23 + +- **Breaking change:** Replaces all usages of `number[]` with `Uint8Array` to be closer aligned with the wider JS ecosystem. + + - [9b19a805](https://www.github.com/tauri-apps/tauri/commit/9b19a805aa8efa64b22f2dfef193a144b8e0cee3) fix(api.js) Replace `number[]`with `Uint8Array`. fixes [#3306](https://www.github.com/tauri-apps/tauri/pull/3306) ([#3305](https://www.github.com/tauri-apps/tauri/pull/3305)) on 2022-02-05 + +- `WindowManager` methods `innerPosition` `outerPosition` now correctly return instance of `PhysicalPosition`. + `WindowManager` methods `innerSize` `outerSize` now correctly return instance of `PhysicalSize`. + + - [cc8b1468](https://www.github.com/tauri-apps/tauri/commit/cc8b1468c821df53ceb771061c919409a9c80978) Fix(api): Window size and position returning wrong class (fix: [#2599](https://www.github.com/tauri-apps/tauri/pull/2599)) ([#2621](https://www.github.com/tauri-apps/tauri/pull/2621)) on 2021-09-22 + +- Change the `event` field of the `Event` interface to type `EventName` instead of `string`. + + - [b5d9bcb4](https://www.github.com/tauri-apps/tauri/commit/b5d9bcb402380abc86ae1fa1a77c629af2275f9d) Consistent event name usage ([#3228](https://www.github.com/tauri-apps/tauri/pull/3228)) on 2022-01-15 + - [62c7a8ad](https://www.github.com/tauri-apps/tauri/commit/62c7a8ad30fd3031b8679960590e5ef3eef8e4da) chore(covector): prepare for `rc` release ([#3376](https://www.github.com/tauri-apps/tauri/pull/3376)) on 2022-02-10 + +- Now `resolve()`, `join()` and `normalize()` from the `path` module, won't throw errors if the path doesn't exist, which matches NodeJS behavior. + + - [fe381a0b](https://www.github.com/tauri-apps/tauri/commit/fe381a0bde86ebf4014007f6e21af4c1a9e58cef) fix: `join` no longer cares if path doesn't exist, closes [#2499](https://www.github.com/tauri-apps/tauri/pull/2499) ([#2548](https://www.github.com/tauri-apps/tauri/pull/2548)) on 2021-09-21 + +- Fixes the dialog `defaultPath` usage on Linux. + + - [2212bd5d](https://www.github.com/tauri-apps/tauri/commit/2212bd5d75146f5a2df27cc2157a057642f626da) fix: dialog default path on Linux, closes [#3091](https://www.github.com/tauri-apps/tauri/pull/3091) ([#3123](https://www.github.com/tauri-apps/tauri/pull/3123)) on 2021-12-27 + +- Fixes `window.label` property returning null instead of the actual label. + + - [f5109e0c](https://www.github.com/tauri-apps/tauri/commit/f5109e0c962e3d25404995194968bade1be33b16) fix(api): window label null instead of actual value, closes [#3295](https://www.github.com/tauri-apps/tauri/pull/3295) ([#3332](https://www.github.com/tauri-apps/tauri/pull/3332)) on 2022-02-04 + +- Remove the `BaseDirectory::Current` enum variant for security reasons. + + - [696dca58](https://www.github.com/tauri-apps/tauri/commit/696dca58a9f8ee127a1cf857eb848e09f5845d18) refactor(core): remove `BaseDirectory::Current` variant on 2022-01-26 + +- Change `WindowLabel` type to `string`. + + - [f68603ae](https://www.github.com/tauri-apps/tauri/commit/f68603aee4e16500dff9e385b217f5dd8b1b39e8) chore(docs): simplify event system documentation on 2021-09-27 + +- When building Universal macOS Binaries through the virtual target `universal-apple-darwin`: + +- Expect a universal binary to be created by the user + +- Ensure that binary is bundled and accessed correctly at runtime + +- [3035e458](https://www.github.com/tauri-apps/tauri/commit/3035e4581c161ec7f0bd6d9b42e9015cf1dd1d77) Remove target triple from sidecar bin paths, closes [#3355](https://www.github.com/tauri-apps/tauri/pull/3355) ([#3356](https://www.github.com/tauri-apps/tauri/pull/3356)) on 2022-02-07 + +## \[1.0.0-beta.8] + +- Revert target back to ES5. + - [657c7dac](https://www.github.com/tauri-apps/tauri/commit/657c7dac734661956b87d021ff531ba530dd92a3) fix(api): revert ES2021 target on 2021-08-23 + +## \[1.0.0-beta.7] + +- Fix missing asset protocol path.Now the protocol is `https://asset.localhost/path/to/file` on Windows. Linux and macOS + is still `asset://path/to/file`. + - [994b5325](https://www.github.com/tauri-apps/tauri/commit/994b5325dd385f564b37fe1530c5d798dc925fff) fix: missing asset protocol path ([#2484](https://www.github.com/tauri-apps/tauri/pull/2484)) on 2021-08-23 + +## \[1.0.0-beta.6] + +- `bundle` now exports `clipboard` module so you can `import { clipboard } from "@tauri-apps/api"`. + - [4f88c3fb](https://www.github.com/tauri-apps/tauri/commit/4f88c3fb94286f3daafb906e3513c9210ecfa76b) fix(api.js): `bundle` now exports `clipboard` mod, closes [#2243](https://www.github.com/tauri-apps/tauri/pull/2243) ([#2244](https://www.github.com/tauri-apps/tauri/pull/2244)) on 2021-07-19 +- Fix double window creation + - [9fbcc024](https://www.github.com/tauri-apps/tauri/commit/9fbcc024542d87f71afd364acdcf2302cf82912c) fix(api.js): fix double window creation, closes [#2284](https://www.github.com/tauri-apps/tauri/pull/2284) ([#2285](https://www.github.com/tauri-apps/tauri/pull/2285)) on 2021-07-23 +- Add `os` module which exports `EOL`, `platform()`, `version()`, `type()`, `arch()`, `tempdir()` + - [05e679a6](https://www.github.com/tauri-apps/tauri/commit/05e679a6d2aca5642c780052bcf1384c49a462de) feat(api.js): add `os` module ([#2299](https://www.github.com/tauri-apps/tauri/pull/2299)) on 2021-07-28 +- - Add new nodejs-inspired functions which are `join`, `resolve`, `normalize`, `dirname`, `basename` and `extname`. +- Add `sep` and `delimiter` constants. +- Removed `resolvePath` API, use `resolve` instead. +- [05b9d81e](https://www.github.com/tauri-apps/tauri/commit/05b9d81ee6bcc920defca76cff00178b301fffe8) feat(api.js): add nodejs-inspired functions in `path` module ([#2310](https://www.github.com/tauri-apps/tauri/pull/2310)) on 2021-08-02 +- Change target to ES2021. + - [97bc52ee](https://www.github.com/tauri-apps/tauri/commit/97bc52ee03dec0b67cc1cced23305a4c53e9eb62) Tooling: \[API] Changed target in tsconfig to es6 ([#2362](https://www.github.com/tauri-apps/tauri/pull/2362)) on 2021-08-09 +- Add `toggleMaximize()` function to the `WebviewWindow` class. + - [1a510066](https://www.github.com/tauri-apps/tauri/commit/1a510066732d5f61c88c0ceed1c5f5cc559faf7d) fix(core): `data-tauri-drag-region` didn't respect resizable, closes [#2314](https://www.github.com/tauri-apps/tauri/pull/2314) ([#2316](https://www.github.com/tauri-apps/tauri/pull/2316)) on 2021-08-02 +- Fix `@ts-expect` error usage + - [dd52e738](https://www.github.com/tauri-apps/tauri/commit/dd52e738f1fd323bd8d185d6e650f412eb031200) fix(api.js): fix `@ts-expect-error` usage, closes [#2249](https://www.github.com/tauri-apps/tauri/pull/2249) ([#2250](https://www.github.com/tauri-apps/tauri/pull/2250)) on 2021-07-20 +- Fixes file drop events being swapped (`file-drop-hover` on drop and `file-drop` on hover). + - [c2b0fe1c](https://www.github.com/tauri-apps/tauri/commit/c2b0fe1ce58e54dbcfdb63162ad17d7e6d8774d9) fix(core): fix wrong file drop events ([#2300](https://www.github.com/tauri-apps/tauri/pull/2300)) on 2021-07-31 +- Fixes the global bundle UMD code. + - [268450b1](https://www.github.com/tauri-apps/tauri/commit/268450b1329a4b55f2043890c565a8563f890c3a) fix(api): global bundle broken code, closes [#2289](https://www.github.com/tauri-apps/tauri/pull/2289) ([#2297](https://www.github.com/tauri-apps/tauri/pull/2297)) on 2021-07-26 +- - Fixes monitor api not working. +- Fixes window.print() not working on macOS. +- [0f63f5e7](https://www.github.com/tauri-apps/tauri/commit/0f63f5e757873f1787a1ae07ca531340d0d45ec3) fix(api): Fix monitor functions, closes [#2294](https://www.github.com/tauri-apps/tauri/pull/2294) ([#2301](https://www.github.com/tauri-apps/tauri/pull/2301)) on 2021-07-29 +- Improve `EventName` type using `type-fest`'s `LiteralUnion`. + - [8e480297](https://www.github.com/tauri-apps/tauri/commit/8e48029790857b38988da4d291aa7458f51bb265) feat(api): improve `EventName` type definition ([#2379](https://www.github.com/tauri-apps/tauri/pull/2379)) on 2021-08-10 +- Update protocol url path with wry 0.12.1 on Windows. + - [88382fe1](https://www.github.com/tauri-apps/tauri/commit/88382fe147ebcb3f59308cc529e5562a04970876) chore(api): update protocol url path with wry 0.12.1 on Windows ([#2409](https://www.github.com/tauri-apps/tauri/pull/2409)) on 2021-08-13 + +## \[1.0.0-beta.5] + +- Adds `convertFileSrc` helper to the `tauri` module, simplifying the process of using file paths as webview source (`img`, `video`, etc). + - [51a5cfe4](https://www.github.com/tauri-apps/tauri/commit/51a5cfe4b5e9890fb6f639c9c929657fd747a595) feat(api): add `convertFileSrc` helper ([#2138](https://www.github.com/tauri-apps/tauri/pull/2138)) on 2021-07-02 +- You can now use `emit`, `listen` and `once` using the `appWindow` exported by the window module. + - [5d7626f8](https://www.github.com/tauri-apps/tauri/commit/5d7626f89781a6ebccceb9ab3b2e8335aa7a0392) feat(api): WindowManager extends WebviewWindowHandle, add events docs ([#2146](https://www.github.com/tauri-apps/tauri/pull/2146)) on 2021-07-03 +- Allow manipulating a spawned window directly using `WebviewWindow`, which now extends `WindowManager`. + - [d69b1cf6](https://www.github.com/tauri-apps/tauri/commit/d69b1cf6d7c13297073073d753e30fe1a22a09cb) feat(api): allow managing windows created on JS ([#2154](https://www.github.com/tauri-apps/tauri/pull/2154)) on 2021-07-05 + +## \[1.0.0-beta.4] + +- Add asset custom protocol to access local file system. + - [ee60e424](https://www.github.com/tauri-apps/tauri/commit/ee60e424221559d3d725716b0003c5566ef2b5cd) feat: asset custom protocol to access local file system ([#2104](https://www.github.com/tauri-apps/tauri/pull/2104)) on 2021-06-28 + +## \[1.0.0-beta.3] + +- Export `Response` and `ResponseType` as value instead of type. + - [394b6e05](https://www.github.com/tauri-apps/tauri/commit/394b6e0572e7a0a92e103e462a7f603f7d569319) fix(api): http `ResponseType` export type error ([#2065](https://www.github.com/tauri-apps/tauri/pull/2065)) on 2021-06-24 + +## \[1.0.0-beta.2] + +- Export `BaseDirectory` in `path` module + - [277f5ca5](https://www.github.com/tauri-apps/tauri/commit/277f5ca5a8ae227bbdccee1ad52bdd88b4a5b11b) feat(api): export `BaseDirectory` in `path` module ([#1885](https://www.github.com/tauri-apps/tauri/pull/1885)) on 2021-05-30 +- Use `export type` to export TS types, enums and interfaces. + - [9a662d26](https://www.github.com/tauri-apps/tauri/commit/9a662d2601b01d712c6bd205f8db1b674f56dfa7) fix: Monitor if --isolatedModules is enabled ([#1825](https://www.github.com/tauri-apps/tauri/pull/1825)) on 2021-05-13 + - [612cd8ec](https://www.github.com/tauri-apps/tauri/commit/612cd8ecb8e02954f3696b9e138cbc7d2c228fad) feat(api): finalize `export type` usage ([#1847](https://www.github.com/tauri-apps/tauri/pull/1847)) on 2021-05-17 +- Adds `focus?: boolean` to the WindowOptions interface. + - [5f351622](https://www.github.com/tauri-apps/tauri/commit/5f351622c7812ad1bb56ddb37364ccaa4124c24b) feat(core): add focus API to the WindowBuilder and WindowOptions, [#1737](https://www.github.com/tauri-apps/tauri/pull/1737) on 2021-05-30 +- Adds `isDecorated` getter on the window API. + - [f58a2114](https://www.github.com/tauri-apps/tauri/commit/f58a2114fbfd5307c349f05c88f2e08fd8baa8aa) feat(core): add `is_decorated` Window getter on 2021-05-30 +- Adds `isResizable` getter on the window API. + - [1e8af280](https://www.github.com/tauri-apps/tauri/commit/1e8af280c27f381828d6209722b10e889082fa00) feat(core): add `is_resizable` Window getter on 2021-05-30 +- Adds `isVisible` getter on the window API. + - [36506c96](https://www.github.com/tauri-apps/tauri/commit/36506c967de82bc7ff453d11e6104ecf66d7a588) feat(core): add `is_visible` API on 2021-05-30 +- Adds `requestUserAttention` API to the `window` module. + - [7dcca6e9](https://www.github.com/tauri-apps/tauri/commit/7dcca6e9281182b11ad3d4a79871f09b30b9b419) feat(core): add `request_user_attention` API, closes [#2023](https://www.github.com/tauri-apps/tauri/pull/2023) ([#2026](https://www.github.com/tauri-apps/tauri/pull/2026)) on 2021-06-20 +- Adds `setFocus` to the window API. + - [bb6992f8](https://www.github.com/tauri-apps/tauri/commit/bb6992f888196ca7c87bb2fe74ad2bd8bf393e05) feat(core): add `set_focus` window API, fixes [#1737](https://www.github.com/tauri-apps/tauri/pull/1737) on 2021-05-30 +- Adds `setSkipTaskbar` to the window API. + - [e06aa277](https://www.github.com/tauri-apps/tauri/commit/e06aa277384450cfef617c0e57b0d5d403bb1e7f) feat(core): add `set_skip_taskbar` API on 2021-05-30 +- Adds `skipTaskbar?: boolean` to the WindowOptions interface. + - [5525b03a](https://www.github.com/tauri-apps/tauri/commit/5525b03a78a2232c650043fbd9894ce1553cad41) feat(core): add `skip_taskbar` API to the WindowBuilder/WindowOptions on 2021-05-30 +- Adds `center?: boolean` to `WindowOptions` and `center()` API to the `appWindow`. + - [5cba6eb4](https://www.github.com/tauri-apps/tauri/commit/5cba6eb4d28d53f06855d60d4d0eae6b95233ccf) feat(core): add window `center` API, closes [#1822](https://www.github.com/tauri-apps/tauri/pull/1822) ([#1954](https://www.github.com/tauri-apps/tauri/pull/1954)) on 2021-06-05 +- Adds `clipboard` APIs (write and read text). + - [285bf64b](https://www.github.com/tauri-apps/tauri/commit/285bf64bf9569efb2df904c69c6df405ff0d62e2) feat(core): add clipboard writeText and readText APIs ([#2035](https://www.github.com/tauri-apps/tauri/pull/2035)) on 2021-06-21 + - [dee71ad5](https://www.github.com/tauri-apps/tauri/commit/dee71ad58349f699995cc9077b79032bacc6afcb) fix(workflows): update docs workflow syntax ([#2054](https://www.github.com/tauri-apps/tauri/pull/2054)) on 2021-06-23 +- The `http` APIs now resolve the returned promise when the API call finishes with an error status code. + - [47f75584](https://www.github.com/tauri-apps/tauri/commit/47f7558417cc654bdb1d018127e8900bc4eac622) fix(core): resolve HTTP API on non-ok status code, fix binary response, closes [#2046](https://www.github.com/tauri-apps/tauri/pull/2046) ([#2053](https://www.github.com/tauri-apps/tauri/pull/2053)) on 2021-06-23 +- Improve RPC security by requiring a numeric code to invoke commands. The codes are generated by the Rust side and injected into the app's code using a closure, so external scripts can't access the backend. This change doesn't protect `withGlobalTauri` (`window.__TAURI__`) usage. + - [160fb052](https://www.github.com/tauri-apps/tauri/commit/160fb0529fd31d755574ae30fbdf01fa221a2acb) feat(core): improve RPC security, closes [#814](https://www.github.com/tauri-apps/tauri/pull/814) ([#2047](https://www.github.com/tauri-apps/tauri/pull/2047)) on 2021-06-22 +- Mark the `WebviewWindow` constructor as public. + - [4aeb936e](https://www.github.com/tauri-apps/tauri/commit/4aeb936e9b60b895d383597dc698ee5d638436f9) fix(api): `WebviewWindow` constructor is public ([#1888](https://www.github.com/tauri-apps/tauri/pull/1888)) on 2021-05-21 +- Validate arguments on the window `setLocation`, `setSize`, `setMinSize` and `setMaxSize` API. + - [7616e6cc](https://www.github.com/tauri-apps/tauri/commit/7616e6cc7bcd49f688b0d00fdc33c94b7b93713d) feat(api): validate window API `size` and `location` arguments ([#1846](https://www.github.com/tauri-apps/tauri/pull/1846)) on 2021-05-17 + +## \[1.0.0-beta.1] + +- Adds `package.json` to the `exports` object. + - [ab1ea96](https://www.github.com/tauri-apps/tauri/commit/ab1ea964786e1781c922582b059c555b6072f1a0) chore(api): add `package.json` to the `exports` field ([#1807](https://www.github.com/tauri-apps/tauri/pull/1807)) on 2021-05-12 + +## \[1.0.0-beta.0] + +- CommonJS chunks are now properly exported with `.cjs` extension + - [ddcd923](https://www.github.com/tauri-apps/tauri/commit/ddcd9233bd6f499aa7f22484d6c151b01778bc1b) fix(api): export commonjs chunks with `.cjs` extension, fix [#1625](https://www.github.com/tauri-apps/tauri/pull/1625) ([#1627](https://www.github.com/tauri-apps/tauri/pull/1627)) on 2021-04-26 +- Adds `transparent?: boolean` to the `WindowOptions` interface. + - [08c1c5c](https://www.github.com/tauri-apps/tauri/commit/08c1c5ca5c0ebe17ea98689a5fe3b7e47a98e955) fix(api): missing `transparent` flag on `WindowOptions` ([#1764](https://www.github.com/tauri-apps/tauri/pull/1764)) on 2021-05-10 +- Adds `options` argument to the shell command API (`env` and `cwd` configuration). + - [721e98f](https://www.github.com/tauri-apps/tauri/commit/721e98f175567b360c86f30565ab1b9d08e7cf85) feat(core): add env, cwd to the command API, closes [#1634](https://www.github.com/tauri-apps/tauri/pull/1634) ([#1635](https://www.github.com/tauri-apps/tauri/pull/1635)) on 2021-04-28 +- Adds `startDragging` API on the window module. + - [c31f097](https://www.github.com/tauri-apps/tauri/commit/c31f0978c535f794fffb75a121e69a323e70b06e) refactor: update to wry 0.9 ([#1630](https://www.github.com/tauri-apps/tauri/pull/1630)) on 2021-04-28 +- Move `exit` and `relaunch` APIs from `app` to `process` module. + - [b0bb796](https://www.github.com/tauri-apps/tauri/commit/b0bb796a42e2560233aea47ce6ced54ac238eb53) refactor: rename `command` mod to `process`, move restart_application ([#1667](https://www.github.com/tauri-apps/tauri/pull/1667)) on 2021-04-30 +- The window management API was refactored: removed `setX`, `setY`, `setWidth`, `setHeight` APIs, renamed `resize` to `setSize` and the size and position APIs now allow defining both logical and physical values. + - [6bfac86](https://www.github.com/tauri-apps/tauri/commit/6bfac866a703f1499a64237fb29b2625703f4e22) refactor(core): add window getters, physical & logical sizes/positions ([#1723](https://www.github.com/tauri-apps/tauri/pull/1723)) on 2021-05-05 +- Adds window getters. + - [6bfac86](https://www.github.com/tauri-apps/tauri/commit/6bfac866a703f1499a64237fb29b2625703f4e22) refactor(core): add window getters, physical & logical sizes/positions ([#1723](https://www.github.com/tauri-apps/tauri/pull/1723)) on 2021-05-05 + +## \[1.0.0-beta-rc.3] + +- Fixes distribution of the `@tauri-apps/api` package for older bundlers. + - [7f998d0](https://www.github.com/tauri-apps/tauri/commit/7f998d08e3ab8823c99190fa283bdfa2c4f2749b) fix(api): distribution ([#1582](https://www.github.com/tauri-apps/tauri/pull/1582)) on 2021-04-22 +- Update minimum Node.js version to v12.13.0 + - [1f089fb](https://www.github.com/tauri-apps/tauri/commit/1f089fb4f964c673dcab5784bdf1da2833487a7c) chore: update minimum nodejs version to 12.13.0 ([#1562](https://www.github.com/tauri-apps/tauri/pull/1562)) on 2021-04-21 + +## \[1.0.0-beta-rc.2] + +- TS was wrongly re-exporting the module. + - [fcb3b48](https://www.github.com/tauri-apps/tauri/commit/fcb3b4857efa17d2a3717f32457e88b24520cc9b) fix: [#1512](https://www.github.com/tauri-apps/tauri/pull/1512) ([#1517](https://www.github.com/tauri-apps/tauri/pull/1517)) on 2021-04-19 + - [ae14a3f](https://www.github.com/tauri-apps/tauri/commit/ae14a3ff51a742b6ab6f76bbfc21f385310f1dc6) fix: [#1517](https://www.github.com/tauri-apps/tauri/pull/1517) had the wrong package reference in the changefile ([#1538](https://www.github.com/tauri-apps/tauri/pull/1538)) on 2021-04-19 + +## \[1.0.0-beta-rc.1] + +- Missing the `files` property in the package.json which mean that the `dist` directory was not published and used. + - [b2569a7](https://www.github.com/tauri-apps/tauri/commit/b2569a729a3caa88bdba62abc31f0665e1323aaa) fix(js-api): dist ([#1498](https://www.github.com/tauri-apps/tauri/pull/1498)) on 2021-04-15 + +## \[1.0.0-beta-rc.0] + +- Add current working directory to the path api module. + - [52c2baf](https://www.github.com/tauri-apps/tauri/commit/52c2baf940773cf7c51647fb6f20d0f7df126115) feat: add current working directory to path api module ([#1375](https://www.github.com/tauri-apps/tauri/pull/1375)) on 2021-03-23 + - [a6def70](https://www.github.com/tauri-apps/tauri/commit/a6def7066eec19c889b0f14cc1e475bf209a332e) Refactor(tauri): move tauri-api and tauri-updater to tauri ([#1455](https://www.github.com/tauri-apps/tauri/pull/1455)) on 2021-04-11 +- The shell process spawning API was rewritten and now includes stream access. + - [3713066](https://www.github.com/tauri-apps/tauri/commit/3713066e451bd30d0cc6f57bb437f08276f4c4ad) refactor(core): rewrite shell execute API, closes [#1229](https://www.github.com/tauri-apps/tauri/pull/1229) ([#1408](https://www.github.com/tauri-apps/tauri/pull/1408)) on 2021-03-31 +- The file dialog API now uses [rfd](https://github.com/PolyMeilex/rfd). The filter option is now an array of `{ name: string, extensions: string[] }`. + - [2326bcd](https://www.github.com/tauri-apps/tauri/commit/2326bcd399411f7f0eabdb7ade910be473adadae) refactor(core): use `nfd` for file dialogs, closes [#1251](https://www.github.com/tauri-apps/tauri/pull/1251) ([#1257](https://www.github.com/tauri-apps/tauri/pull/1257)) on 2021-02-18 + - [a6def70](https://www.github.com/tauri-apps/tauri/commit/a6def7066eec19c889b0f14cc1e475bf209a332e) Refactor(tauri): move tauri-api and tauri-updater to tauri ([#1455](https://www.github.com/tauri-apps/tauri/pull/1455)) on 2021-04-11 +- The HTTP API was improved with client caching and better payload and response types. + - [a7bc472](https://www.github.com/tauri-apps/tauri/commit/a7bc472e994730071f960d09a12ac85296a080ae) refactor(core): improve HTTP API, closes [#1098](https://www.github.com/tauri-apps/tauri/pull/1098) ([#1237](https://www.github.com/tauri-apps/tauri/pull/1237)) on 2021-02-15 + - [a6def70](https://www.github.com/tauri-apps/tauri/commit/a6def7066eec19c889b0f14cc1e475bf209a332e) Refactor(tauri): move tauri-api and tauri-updater to tauri ([#1455](https://www.github.com/tauri-apps/tauri/pull/1455)) on 2021-04-11 +- Update all code files to have our license header. + - [bf82136](https://www.github.com/tauri-apps/tauri/commit/bf8213646689175f8a158b956911f3a43e360690) feat(license): SPDX Headers ([#1449](https://www.github.com/tauri-apps/tauri/pull/1449)) on 2021-04-11 + - [a6def70](https://www.github.com/tauri-apps/tauri/commit/a6def7066eec19c889b0f14cc1e475bf209a332e) Refactor(tauri): move tauri-api and tauri-updater to tauri ([#1455](https://www.github.com/tauri-apps/tauri/pull/1455)) on 2021-04-11 + - [aea6145](https://www.github.com/tauri-apps/tauri/commit/aea614587bddab930d552512b54e18624fbf573e) refactor(repo): add /tooling folder ([#1457](https://www.github.com/tauri-apps/tauri/pull/1457)) on 2021-04-12 +- Use secure RNG on callback function names. + - [c8992bb](https://www.github.com/tauri-apps/tauri/commit/c8992bb0bfb8eaeae8ebed444719f9c9372d39d4) refactor(api): use secure RNG, closes [#1356](https://www.github.com/tauri-apps/tauri/pull/1356) ([#1398](https://www.github.com/tauri-apps/tauri/pull/1398)) on 2021-03-30 +- The invoke function can now be called with the cmd as the first parameter and the args as the second. + - [427d170](https://www.github.com/tauri-apps/tauri/commit/427d170930ab711fd0ca82f7a73b524d6fdc222f) feat(api/invoke): separate cmd arg ([#1321](https://www.github.com/tauri-apps/tauri/pull/1321)) on 2021-03-04 +- Adds a global shortcut API. + - [855effa](https://www.github.com/tauri-apps/tauri/commit/855effadd9ebfb6bc1a3555ac7fc733f6f766b7a) feat(core): globalShortcut API ([#1232](https://www.github.com/tauri-apps/tauri/pull/1232)) on 2021-02-14 + - [a6def70](https://www.github.com/tauri-apps/tauri/commit/a6def7066eec19c889b0f14cc1e475bf209a332e) Refactor(tauri): move tauri-api and tauri-updater to tauri ([#1455](https://www.github.com/tauri-apps/tauri/pull/1455)) on 2021-04-11 +- Added window management and window creation APIs. + - [a3d6dff](https://www.github.com/tauri-apps/tauri/commit/a3d6dff2163c7a45842253edd81dbc62248dc65d) feat(core): window API ([#1225](https://www.github.com/tauri-apps/tauri/pull/1225)) on 2021-02-13 + - [641374b](https://www.github.com/tauri-apps/tauri/commit/641374b15343518cd835bd5ada811941c65dcf2e) feat(core): window creation at runtime ([#1249](https://www.github.com/tauri-apps/tauri/pull/1249)) on 2021-02-17 diff --git a/node_modules/@tauri-apps/api/LICENSE_APACHE-2.0 b/node_modules/@tauri-apps/api/LICENSE_APACHE-2.0 new file mode 100644 index 0000000..f433b1a --- /dev/null +++ b/node_modules/@tauri-apps/api/LICENSE_APACHE-2.0 @@ -0,0 +1,177 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/node_modules/@tauri-apps/api/LICENSE_MIT b/node_modules/@tauri-apps/api/LICENSE_MIT new file mode 100644 index 0000000..b08530d --- /dev/null +++ b/node_modules/@tauri-apps/api/LICENSE_MIT @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2017 - Present Tauri Apps Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/node_modules/@tauri-apps/api/README.md b/node_modules/@tauri-apps/api/README.md new file mode 100644 index 0000000..d74ab83 --- /dev/null +++ b/node_modules/@tauri-apps/api/README.md @@ -0,0 +1,52 @@ +# @tauri-apps/api + + + +[![status](https://img.shields.io/badge/status-stable-blue.svg)](https://github.com/tauri-apps/tauri/tree/dev) +[![License](https://img.shields.io/badge/License-MIT%20or%20Apache%202-green.svg)](https://opencollective.com/tauri) +[![lint js](https://img.shields.io/github/actions/workflow/status/tauri-apps/tauri/lint-js.yml?label=lint%20js&logo=github)](https://github.com/tauri-apps/tauri/actions/workflows/lint-js.yml) +[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Ftauri-apps%2Ftauri.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Ftauri-apps%2Ftauri?ref=badge_shield) +[![Chat Server](https://img.shields.io/badge/chat-discord-7289da.svg)](https://discord.gg/SpmNs4S) +[![website](https://img.shields.io/badge/website-tauri.app-purple.svg)](https://tauri.app) +[![https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg](https://good-labs.github.io/greater-good-affirmation/assets/images/badge.svg)](https://good-labs.github.io/greater-good-affirmation) +[![support](https://img.shields.io/badge/sponsor-Open%20Collective-blue.svg)](https://opencollective.com/tauri) + +| Component | Version | +| --------------- | ----------------------------------------------------- | +| @tauri-apps/api | ![](https://img.shields.io/npm/v/@tauri-apps/api.svg) | + +## About Tauri + +Tauri is a polyglot and generic system that is very composable and allows engineers to make a wide variety of applications. It is used for building applications for Desktop Computers using a combination of Rust tools and HTML rendered in a Webview. Apps built with Tauri can ship with any number of pieces of an optional JS API / Rust API so that webviews can control the system via message passing. In fact, developers can extend the default API with their own functionality and bridge the Webview and Rust-based backend easily. + +Tauri apps can have custom menus and have tray-type interfaces. They can be updated, and are managed by the user's operating system as expected. They are very small, because they use the system's webview. They do not ship a runtime, since the final binary is compiled from rust. This makes the reversing of Tauri apps not a trivial task. + +## This module + +This is a typescript library that creates `cjs` and `esm` JavaScript endpoints for you to import into your Frontend framework so that the Webview can call and listen to backend activity. We also ship the pure typescript, because for some frameworks this is more optimal. It uses the message passing of webviews to their hosts. + +To learn more about the details of how all of these pieces fit together, please consult this [ARCHITECTURE.md](https://github.com/tauri-apps/tauri/blob/dev/ARCHITECTURE.md) document. + +## Installation + +The preferred method is to install this module locally as a dependency: + +``` +$ pnpm add @tauri-apps/api +$ yarn add @tauri-apps/api +$ npm add @tauri-apps/api +``` + +## Semver + +**tauri** is following [Semantic Versioning 2.0](https://semver.org/). + +## Licenses + +Code: (c) 2019 - 2021 - The Tauri Programme within The Commons Conservancy. + +MIT or MIT/Apache 2.0 where applicable. + +Logo: CC-BY-NC-ND + +- Original Tauri Logo Designs by [Daniel Thompson-Yvetot](https://github.com/nothingismagick) and [Guillaume Chau](https://github.com/akryum) diff --git a/node_modules/@tauri-apps/api/app.cjs b/node_modules/@tauri-apps/api/app.cjs new file mode 100644 index 0000000..2abbf0d --- /dev/null +++ b/node_modules/@tauri-apps/api/app.cjs @@ -0,0 +1,185 @@ +'use strict'; + +var core = require('./core.cjs'); +var image = require('./image.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Application metadata and related APIs. + * + * @module + */ +/** + * Gets the application version. + * @example + * ```typescript + * import { getVersion } from '@tauri-apps/api/app'; + * const appVersion = await getVersion(); + * ``` + * + * @since 1.0.0 + */ +async function getVersion() { + return core.invoke('plugin:app|version'); +} +/** + * Gets the application name. + * @example + * ```typescript + * import { getName } from '@tauri-apps/api/app'; + * const appName = await getName(); + * ``` + * + * @since 1.0.0 + */ +async function getName() { + return core.invoke('plugin:app|name'); +} +/** + * Gets the Tauri version. + * + * @example + * ```typescript + * import { getTauriVersion } from '@tauri-apps/api/app'; + * const tauriVersion = await getTauriVersion(); + * ``` + * + * @since 1.0.0 + */ +async function getTauriVersion() { + return core.invoke('plugin:app|tauri_version'); +} +/** + * Gets the application identifier. + * @example + * ```typescript + * import { getIdentifier } from '@tauri-apps/api/app'; + * const identifier = await getIdentifier(); + * ``` + * + * @returns The application identifier as configured in `tauri.conf.json`. + * + * @since 2.4.0 + */ +async function getIdentifier() { + return core.invoke('plugin:app|identifier'); +} +/** + * Shows the application on macOS. This function does not automatically focus any specific app window. + * + * @example + * ```typescript + * import { show } from '@tauri-apps/api/app'; + * await show(); + * ``` + * + * @since 1.2.0 + */ +async function show() { + return core.invoke('plugin:app|app_show'); +} +/** + * Hides the application on macOS. + * + * @example + * ```typescript + * import { hide } from '@tauri-apps/api/app'; + * await hide(); + * ``` + * + * @since 1.2.0 + */ +async function hide() { + return core.invoke('plugin:app|app_hide'); +} +/** + * Fetches the data store identifiers on macOS and iOS. + * + * See https://developer.apple.com/documentation/webkit/wkwebsitedatastore for more information. + * + * @example + * ```typescript + * import { fetchDataStoreIdentifiers } from '@tauri-apps/api/app'; + * const ids = await fetchDataStoreIdentifiers(); + * ``` + * + * @since 2.4.0 + */ +async function fetchDataStoreIdentifiers() { + return core.invoke('plugin:app|fetch_data_store_identifiers'); +} +/** + * Removes the data store with the given identifier. + * + * Note that any webview using this data store should be closed before running this API. + * + * See https://developer.apple.com/documentation/webkit/wkwebsitedatastore for more information. + * + * @example + * ```typescript + * import { fetchDataStoreIdentifiers, removeDataStore } from '@tauri-apps/api/app'; + * for (const id of (await fetchDataStoreIdentifiers())) { + * await removeDataStore(id); + * } + * ``` + * + * @since 2.4.0 + */ +async function removeDataStore(uuid) { + return core.invoke('plugin:app|remove_data_store', { uuid }); +} +/** + * Get the default window icon. + * + * @example + * ```typescript + * import { defaultWindowIcon } from '@tauri-apps/api/app'; + * await defaultWindowIcon(); + * ``` + * + * @since 2.0.0 + */ +async function defaultWindowIcon() { + return core.invoke('plugin:app|default_window_icon').then((rid) => rid ? new image.Image(rid) : null); +} +/** + * Set app's theme, pass in `null` or `undefined` to follow system theme + * + * @example + * ```typescript + * import { setTheme } from '@tauri-apps/api/app'; + * await setTheme('dark'); + * ``` + * + * #### Platform-specific + * + * - **iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ +async function setTheme(theme) { + return core.invoke('plugin:app|set_app_theme', { theme }); +} +/** + * Sets the dock visibility for the application on macOS. + * + * @param visible whether the dock should be visible or not + * @since 2.5.0 + */ +async function setDockVisibility(visible) { + return core.invoke('plugin:app|set_dock_visibility', { visible }); +} + +exports.defaultWindowIcon = defaultWindowIcon; +exports.fetchDataStoreIdentifiers = fetchDataStoreIdentifiers; +exports.getIdentifier = getIdentifier; +exports.getName = getName; +exports.getTauriVersion = getTauriVersion; +exports.getVersion = getVersion; +exports.hide = hide; +exports.removeDataStore = removeDataStore; +exports.setDockVisibility = setDockVisibility; +exports.setTheme = setTheme; +exports.show = show; diff --git a/node_modules/@tauri-apps/api/app.d.ts b/node_modules/@tauri-apps/api/app.d.ts new file mode 100644 index 0000000..2ea188f --- /dev/null +++ b/node_modules/@tauri-apps/api/app.d.ts @@ -0,0 +1,164 @@ +import { Image } from './image'; +import { Theme } from './window'; +export type DataStoreIdentifier = [ + number, + number, + number, + number, + number, + number, + number, + number, + number, + number, + number, + number, + number, + number, + number, + number +]; +/** + * Application metadata and related APIs. + * + * @module + */ +/** + * Gets the application version. + * @example + * ```typescript + * import { getVersion } from '@tauri-apps/api/app'; + * const appVersion = await getVersion(); + * ``` + * + * @since 1.0.0 + */ +declare function getVersion(): Promise; +/** + * Gets the application name. + * @example + * ```typescript + * import { getName } from '@tauri-apps/api/app'; + * const appName = await getName(); + * ``` + * + * @since 1.0.0 + */ +declare function getName(): Promise; +/** + * Gets the Tauri version. + * + * @example + * ```typescript + * import { getTauriVersion } from '@tauri-apps/api/app'; + * const tauriVersion = await getTauriVersion(); + * ``` + * + * @since 1.0.0 + */ +declare function getTauriVersion(): Promise; +/** + * Gets the application identifier. + * @example + * ```typescript + * import { getIdentifier } from '@tauri-apps/api/app'; + * const identifier = await getIdentifier(); + * ``` + * + * @returns The application identifier as configured in `tauri.conf.json`. + * + * @since 2.4.0 + */ +declare function getIdentifier(): Promise; +/** + * Shows the application on macOS. This function does not automatically focus any specific app window. + * + * @example + * ```typescript + * import { show } from '@tauri-apps/api/app'; + * await show(); + * ``` + * + * @since 1.2.0 + */ +declare function show(): Promise; +/** + * Hides the application on macOS. + * + * @example + * ```typescript + * import { hide } from '@tauri-apps/api/app'; + * await hide(); + * ``` + * + * @since 1.2.0 + */ +declare function hide(): Promise; +/** + * Fetches the data store identifiers on macOS and iOS. + * + * See https://developer.apple.com/documentation/webkit/wkwebsitedatastore for more information. + * + * @example + * ```typescript + * import { fetchDataStoreIdentifiers } from '@tauri-apps/api/app'; + * const ids = await fetchDataStoreIdentifiers(); + * ``` + * + * @since 2.4.0 + */ +declare function fetchDataStoreIdentifiers(): Promise; +/** + * Removes the data store with the given identifier. + * + * Note that any webview using this data store should be closed before running this API. + * + * See https://developer.apple.com/documentation/webkit/wkwebsitedatastore for more information. + * + * @example + * ```typescript + * import { fetchDataStoreIdentifiers, removeDataStore } from '@tauri-apps/api/app'; + * for (const id of (await fetchDataStoreIdentifiers())) { + * await removeDataStore(id); + * } + * ``` + * + * @since 2.4.0 + */ +declare function removeDataStore(uuid: DataStoreIdentifier): Promise; +/** + * Get the default window icon. + * + * @example + * ```typescript + * import { defaultWindowIcon } from '@tauri-apps/api/app'; + * await defaultWindowIcon(); + * ``` + * + * @since 2.0.0 + */ +declare function defaultWindowIcon(): Promise; +/** + * Set app's theme, pass in `null` or `undefined` to follow system theme + * + * @example + * ```typescript + * import { setTheme } from '@tauri-apps/api/app'; + * await setTheme('dark'); + * ``` + * + * #### Platform-specific + * + * - **iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ +declare function setTheme(theme?: Theme | null): Promise; +/** + * Sets the dock visibility for the application on macOS. + * + * @param visible whether the dock should be visible or not + * @since 2.5.0 + */ +declare function setDockVisibility(visible: boolean): Promise; +export { getName, getVersion, getTauriVersion, getIdentifier, show, hide, defaultWindowIcon, setTheme, fetchDataStoreIdentifiers, removeDataStore, setDockVisibility }; diff --git a/node_modules/@tauri-apps/api/app.js b/node_modules/@tauri-apps/api/app.js new file mode 100644 index 0000000..9bb273f --- /dev/null +++ b/node_modules/@tauri-apps/api/app.js @@ -0,0 +1,173 @@ +import { invoke } from './core.js'; +import { Image } from './image.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Application metadata and related APIs. + * + * @module + */ +/** + * Gets the application version. + * @example + * ```typescript + * import { getVersion } from '@tauri-apps/api/app'; + * const appVersion = await getVersion(); + * ``` + * + * @since 1.0.0 + */ +async function getVersion() { + return invoke('plugin:app|version'); +} +/** + * Gets the application name. + * @example + * ```typescript + * import { getName } from '@tauri-apps/api/app'; + * const appName = await getName(); + * ``` + * + * @since 1.0.0 + */ +async function getName() { + return invoke('plugin:app|name'); +} +/** + * Gets the Tauri version. + * + * @example + * ```typescript + * import { getTauriVersion } from '@tauri-apps/api/app'; + * const tauriVersion = await getTauriVersion(); + * ``` + * + * @since 1.0.0 + */ +async function getTauriVersion() { + return invoke('plugin:app|tauri_version'); +} +/** + * Gets the application identifier. + * @example + * ```typescript + * import { getIdentifier } from '@tauri-apps/api/app'; + * const identifier = await getIdentifier(); + * ``` + * + * @returns The application identifier as configured in `tauri.conf.json`. + * + * @since 2.4.0 + */ +async function getIdentifier() { + return invoke('plugin:app|identifier'); +} +/** + * Shows the application on macOS. This function does not automatically focus any specific app window. + * + * @example + * ```typescript + * import { show } from '@tauri-apps/api/app'; + * await show(); + * ``` + * + * @since 1.2.0 + */ +async function show() { + return invoke('plugin:app|app_show'); +} +/** + * Hides the application on macOS. + * + * @example + * ```typescript + * import { hide } from '@tauri-apps/api/app'; + * await hide(); + * ``` + * + * @since 1.2.0 + */ +async function hide() { + return invoke('plugin:app|app_hide'); +} +/** + * Fetches the data store identifiers on macOS and iOS. + * + * See https://developer.apple.com/documentation/webkit/wkwebsitedatastore for more information. + * + * @example + * ```typescript + * import { fetchDataStoreIdentifiers } from '@tauri-apps/api/app'; + * const ids = await fetchDataStoreIdentifiers(); + * ``` + * + * @since 2.4.0 + */ +async function fetchDataStoreIdentifiers() { + return invoke('plugin:app|fetch_data_store_identifiers'); +} +/** + * Removes the data store with the given identifier. + * + * Note that any webview using this data store should be closed before running this API. + * + * See https://developer.apple.com/documentation/webkit/wkwebsitedatastore for more information. + * + * @example + * ```typescript + * import { fetchDataStoreIdentifiers, removeDataStore } from '@tauri-apps/api/app'; + * for (const id of (await fetchDataStoreIdentifiers())) { + * await removeDataStore(id); + * } + * ``` + * + * @since 2.4.0 + */ +async function removeDataStore(uuid) { + return invoke('plugin:app|remove_data_store', { uuid }); +} +/** + * Get the default window icon. + * + * @example + * ```typescript + * import { defaultWindowIcon } from '@tauri-apps/api/app'; + * await defaultWindowIcon(); + * ``` + * + * @since 2.0.0 + */ +async function defaultWindowIcon() { + return invoke('plugin:app|default_window_icon').then((rid) => rid ? new Image(rid) : null); +} +/** + * Set app's theme, pass in `null` or `undefined` to follow system theme + * + * @example + * ```typescript + * import { setTheme } from '@tauri-apps/api/app'; + * await setTheme('dark'); + * ``` + * + * #### Platform-specific + * + * - **iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ +async function setTheme(theme) { + return invoke('plugin:app|set_app_theme', { theme }); +} +/** + * Sets the dock visibility for the application on macOS. + * + * @param visible whether the dock should be visible or not + * @since 2.5.0 + */ +async function setDockVisibility(visible) { + return invoke('plugin:app|set_dock_visibility', { visible }); +} + +export { defaultWindowIcon, fetchDataStoreIdentifiers, getIdentifier, getName, getTauriVersion, getVersion, hide, removeDataStore, setDockVisibility, setTheme, show }; diff --git a/node_modules/@tauri-apps/api/core.cjs b/node_modules/@tauri-apps/api/core.cjs new file mode 100644 index 0000000..63cff5d --- /dev/null +++ b/node_modules/@tauri-apps/api/core.cjs @@ -0,0 +1,281 @@ +'use strict'; + +var tslib_es6 = require('./external/tslib/tslib.es6.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +var _Channel_onmessage, _Channel_nextMessageIndex, _Channel_pendingMessages, _Channel_messageEndIndex, _Resource_rid; +/** + * Invoke your custom commands. + * + * This package is also accessible with `window.__TAURI__.core` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * @module + */ +/** + * A key to be used to implement a special function + * on your types that define how your type should be serialized + * when passing across the IPC. + * @example + * Given a type in Rust that looks like this + * ```rs + * #[derive(serde::Serialize, serde::Deserialize) + * enum UserId { + * String(String), + * Number(u32), + * } + * ``` + * `UserId::String("id")` would be serialized into `{ String: "id" }` + * and so we need to pass the same structure back to Rust + * ```ts + * import { SERIALIZE_TO_IPC_FN } from "@tauri-apps/api/core" + * + * class UserIdString { + * id + * constructor(id) { + * this.id = id + * } + * + * [SERIALIZE_TO_IPC_FN]() { + * return { String: this.id } + * } + * } + * + * class UserIdNumber { + * id + * constructor(id) { + * this.id = id + * } + * + * [SERIALIZE_TO_IPC_FN]() { + * return { Number: this.id } + * } + * } + * + * type UserId = UserIdString | UserIdNumber + * ``` + * + */ +// if this value changes, make sure to update it in: +// 1. ipc.js +// 2. process-ipc-message-fn.js +const SERIALIZE_TO_IPC_FN = '__TAURI_TO_IPC_KEY__'; +/** + * Transforms a callback function to a string identifier that can be passed to the backend. + * The backend uses the identifier to `eval()` the callback. + * + * @return A unique identifier associated with the callback function. + * + * @since 1.0.0 + */ +function transformCallback(callback, once = false) { + return window.__TAURI_INTERNALS__.transformCallback(callback, once); +} +class Channel { + constructor(onmessage) { + _Channel_onmessage.set(this, void 0); + // the index is used as a mechanism to preserve message order + _Channel_nextMessageIndex.set(this, 0); + _Channel_pendingMessages.set(this, []); + _Channel_messageEndIndex.set(this, void 0); + tslib_es6.__classPrivateFieldSet(this, _Channel_onmessage, onmessage || (() => { }), "f"); + this.id = transformCallback((rawMessage) => { + const index = rawMessage.index; + if ('end' in rawMessage) { + if (index == tslib_es6.__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f")) { + this.cleanupCallback(); + } + else { + tslib_es6.__classPrivateFieldSet(this, _Channel_messageEndIndex, index, "f"); + } + return; + } + const message = rawMessage.message; + // Process the message if we're at the right order + if (index == tslib_es6.__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f")) { + tslib_es6.__classPrivateFieldGet(this, _Channel_onmessage, "f").call(this, message); + tslib_es6.__classPrivateFieldSet(this, _Channel_nextMessageIndex, tslib_es6.__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f") + 1, "f"); + // process pending messages + while (tslib_es6.__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f") in tslib_es6.__classPrivateFieldGet(this, _Channel_pendingMessages, "f")) { + const message = tslib_es6.__classPrivateFieldGet(this, _Channel_pendingMessages, "f")[tslib_es6.__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f")]; + tslib_es6.__classPrivateFieldGet(this, _Channel_onmessage, "f").call(this, message); + // eslint-disable-next-line @typescript-eslint/no-array-delete + delete tslib_es6.__classPrivateFieldGet(this, _Channel_pendingMessages, "f")[tslib_es6.__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f")]; + tslib_es6.__classPrivateFieldSet(this, _Channel_nextMessageIndex, tslib_es6.__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f") + 1, "f"); + } + if (tslib_es6.__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f") === tslib_es6.__classPrivateFieldGet(this, _Channel_messageEndIndex, "f")) { + this.cleanupCallback(); + } + } + // Queue the message if we're not + else { + // eslint-disable-next-line security/detect-object-injection + tslib_es6.__classPrivateFieldGet(this, _Channel_pendingMessages, "f")[index] = message; + } + }); + } + cleanupCallback() { + Reflect.deleteProperty(window, `_${this.id}`); + } + set onmessage(handler) { + tslib_es6.__classPrivateFieldSet(this, _Channel_onmessage, handler, "f"); + } + get onmessage() { + return tslib_es6.__classPrivateFieldGet(this, _Channel_onmessage, "f"); + } + [(_Channel_onmessage = new WeakMap(), _Channel_nextMessageIndex = new WeakMap(), _Channel_pendingMessages = new WeakMap(), _Channel_messageEndIndex = new WeakMap(), SERIALIZE_TO_IPC_FN)]() { + return `__CHANNEL__:${this.id}`; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[SERIALIZE_TO_IPC_FN](); + } +} +class PluginListener { + constructor(plugin, event, channelId) { + this.plugin = plugin; + this.event = event; + this.channelId = channelId; + } + async unregister() { + return invoke(`plugin:${this.plugin}|remove_listener`, { + event: this.event, + channelId: this.channelId + }); + } +} +/** + * Adds a listener to a plugin event. + * + * @returns The listener object to stop listening to the events. + * + * @since 2.0.0 + */ +async function addPluginListener(plugin, event, cb) { + const handler = new Channel(cb); + return invoke(`plugin:${plugin}|registerListener`, { event, handler }).then(() => new PluginListener(plugin, event, handler.id)); +} +/** + * Get permission state for a plugin. + * + * This should be used by plugin authors to wrap their actual implementation. + */ +async function checkPermissions(plugin) { + return invoke(`plugin:${plugin}|check_permissions`); +} +/** + * Request permissions. + * + * This should be used by plugin authors to wrap their actual implementation. + */ +async function requestPermissions(plugin) { + return invoke(`plugin:${plugin}|request_permissions`); +} +/** + * Sends a message to the backend. + * @example + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * await invoke('login', { user: 'tauri', password: 'poiwe3h4r5ip3yrhtew9ty' }); + * ``` + * + * @param cmd The command name. + * @param args The optional arguments to pass to the command. + * @param options The request options. + * @return A promise resolving or rejecting to the backend response. + * + * @since 1.0.0 + */ +async function invoke(cmd, args = {}, options) { + return window.__TAURI_INTERNALS__.invoke(cmd, args, options); +} +/** + * Convert a device file path to an URL that can be loaded by the webview. + * Note that `asset:` and `http://asset.localhost` must be added to [`app.security.csp`](https://v2.tauri.app/reference/config/#csp-1) in `tauri.conf.json`. + * Example CSP value: `"csp": "default-src 'self' ipc: http://ipc.localhost; img-src 'self' asset: http://asset.localhost"` to use the asset protocol on image sources. + * + * Additionally, `"enable" : "true"` must be added to [`app.security.assetProtocol`](https://v2.tauri.app/reference/config/#assetprotocolconfig) + * in `tauri.conf.json` and its access scope must be defined on the `scope` array on the same `assetProtocol` object. + * + * @param filePath The file path. + * @param protocol The protocol to use. Defaults to `asset`. You only need to set this when using a custom protocol. + * @example + * ```typescript + * import { appDataDir, join } from '@tauri-apps/api/path'; + * import { convertFileSrc } from '@tauri-apps/api/core'; + * const appDataDirPath = await appDataDir(); + * const filePath = await join(appDataDirPath, 'assets/video.mp4'); + * const assetUrl = convertFileSrc(filePath); + * + * const video = document.getElementById('my-video'); + * const source = document.createElement('source'); + * source.type = 'video/mp4'; + * source.src = assetUrl; + * video.appendChild(source); + * video.load(); + * ``` + * + * @return the URL that can be used as source on the webview. + * + * @since 1.0.0 + */ +function convertFileSrc(filePath, protocol = 'asset') { + return window.__TAURI_INTERNALS__.convertFileSrc(filePath, protocol); +} +/** + * A rust-backed resource stored through `tauri::Manager::resources_table` API. + * + * The resource lives in the main process and does not exist + * in the Javascript world, and thus will not be cleaned up automatiacally + * except on application exit. If you want to clean it up early, call {@linkcode Resource.close} + * + * @example + * ```typescript + * import { Resource, invoke } from '@tauri-apps/api/core'; + * export class DatabaseHandle extends Resource { + * static async open(path: string): Promise { + * const rid: number = await invoke('open_db', { path }); + * return new DatabaseHandle(rid); + * } + * + * async execute(sql: string): Promise { + * await invoke('execute_sql', { rid: this.rid, sql }); + * } + * } + * ``` + */ +class Resource { + get rid() { + return tslib_es6.__classPrivateFieldGet(this, _Resource_rid, "f"); + } + constructor(rid) { + _Resource_rid.set(this, void 0); + tslib_es6.__classPrivateFieldSet(this, _Resource_rid, rid, "f"); + } + /** + * Destroys and cleans up this resource from memory. + * **You should not call any method on this object anymore and should drop any reference to it.** + */ + async close() { + return invoke('plugin:resources|close', { + rid: this.rid + }); + } +} +_Resource_rid = new WeakMap(); +function isTauri() { + // eslint-disable-next-line @typescript-eslint/no-explicit-any,@typescript-eslint/no-unsafe-member-access + return !!(globalThis || window).isTauri; +} + +exports.Channel = Channel; +exports.PluginListener = PluginListener; +exports.Resource = Resource; +exports.SERIALIZE_TO_IPC_FN = SERIALIZE_TO_IPC_FN; +exports.addPluginListener = addPluginListener; +exports.checkPermissions = checkPermissions; +exports.convertFileSrc = convertFileSrc; +exports.invoke = invoke; +exports.isTauri = isTauri; +exports.requestPermissions = requestPermissions; +exports.transformCallback = transformCallback; diff --git a/node_modules/@tauri-apps/api/core.d.ts b/node_modules/@tauri-apps/api/core.d.ts new file mode 100644 index 0000000..88be88d --- /dev/null +++ b/node_modules/@tauri-apps/api/core.d.ts @@ -0,0 +1,193 @@ +/** + * Invoke your custom commands. + * + * This package is also accessible with `window.__TAURI__.core` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * @module + */ +/** + * A key to be used to implement a special function + * on your types that define how your type should be serialized + * when passing across the IPC. + * @example + * Given a type in Rust that looks like this + * ```rs + * #[derive(serde::Serialize, serde::Deserialize) + * enum UserId { + * String(String), + * Number(u32), + * } + * ``` + * `UserId::String("id")` would be serialized into `{ String: "id" }` + * and so we need to pass the same structure back to Rust + * ```ts + * import { SERIALIZE_TO_IPC_FN } from "@tauri-apps/api/core" + * + * class UserIdString { + * id + * constructor(id) { + * this.id = id + * } + * + * [SERIALIZE_TO_IPC_FN]() { + * return { String: this.id } + * } + * } + * + * class UserIdNumber { + * id + * constructor(id) { + * this.id = id + * } + * + * [SERIALIZE_TO_IPC_FN]() { + * return { Number: this.id } + * } + * } + * + * type UserId = UserIdString | UserIdNumber + * ``` + * + */ +export declare const SERIALIZE_TO_IPC_FN = "__TAURI_TO_IPC_KEY__"; +/** + * Transforms a callback function to a string identifier that can be passed to the backend. + * The backend uses the identifier to `eval()` the callback. + * + * @return A unique identifier associated with the callback function. + * + * @since 1.0.0 + */ +declare function transformCallback(callback?: (response: T) => void, once?: boolean): number; +declare class Channel { + #private; + /** The callback id returned from {@linkcode transformCallback} */ + id: number; + constructor(onmessage?: (response: T) => void); + private cleanupCallback; + set onmessage(handler: (response: T) => void); + get onmessage(): (response: T) => void; + [SERIALIZE_TO_IPC_FN](): string; + toJSON(): string; +} +declare class PluginListener { + plugin: string; + event: string; + channelId: number; + constructor(plugin: string, event: string, channelId: number); + unregister(): Promise; +} +/** + * Adds a listener to a plugin event. + * + * @returns The listener object to stop listening to the events. + * + * @since 2.0.0 + */ +declare function addPluginListener(plugin: string, event: string, cb: (payload: T) => void): Promise; +type PermissionState = 'granted' | 'denied' | 'prompt' | 'prompt-with-rationale'; +/** + * Get permission state for a plugin. + * + * This should be used by plugin authors to wrap their actual implementation. + */ +declare function checkPermissions(plugin: string): Promise; +/** + * Request permissions. + * + * This should be used by plugin authors to wrap their actual implementation. + */ +declare function requestPermissions(plugin: string): Promise; +/** + * Command arguments. + * + * @since 1.0.0 + */ +type InvokeArgs = Record | number[] | ArrayBuffer | Uint8Array; +/** + * @since 2.0.0 + */ +interface InvokeOptions { + headers: HeadersInit; +} +/** + * Sends a message to the backend. + * @example + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * await invoke('login', { user: 'tauri', password: 'poiwe3h4r5ip3yrhtew9ty' }); + * ``` + * + * @param cmd The command name. + * @param args The optional arguments to pass to the command. + * @param options The request options. + * @return A promise resolving or rejecting to the backend response. + * + * @since 1.0.0 + */ +declare function invoke(cmd: string, args?: InvokeArgs, options?: InvokeOptions): Promise; +/** + * Convert a device file path to an URL that can be loaded by the webview. + * Note that `asset:` and `http://asset.localhost` must be added to [`app.security.csp`](https://v2.tauri.app/reference/config/#csp-1) in `tauri.conf.json`. + * Example CSP value: `"csp": "default-src 'self' ipc: http://ipc.localhost; img-src 'self' asset: http://asset.localhost"` to use the asset protocol on image sources. + * + * Additionally, `"enable" : "true"` must be added to [`app.security.assetProtocol`](https://v2.tauri.app/reference/config/#assetprotocolconfig) + * in `tauri.conf.json` and its access scope must be defined on the `scope` array on the same `assetProtocol` object. + * + * @param filePath The file path. + * @param protocol The protocol to use. Defaults to `asset`. You only need to set this when using a custom protocol. + * @example + * ```typescript + * import { appDataDir, join } from '@tauri-apps/api/path'; + * import { convertFileSrc } from '@tauri-apps/api/core'; + * const appDataDirPath = await appDataDir(); + * const filePath = await join(appDataDirPath, 'assets/video.mp4'); + * const assetUrl = convertFileSrc(filePath); + * + * const video = document.getElementById('my-video'); + * const source = document.createElement('source'); + * source.type = 'video/mp4'; + * source.src = assetUrl; + * video.appendChild(source); + * video.load(); + * ``` + * + * @return the URL that can be used as source on the webview. + * + * @since 1.0.0 + */ +declare function convertFileSrc(filePath: string, protocol?: string): string; +/** + * A rust-backed resource stored through `tauri::Manager::resources_table` API. + * + * The resource lives in the main process and does not exist + * in the Javascript world, and thus will not be cleaned up automatiacally + * except on application exit. If you want to clean it up early, call {@linkcode Resource.close} + * + * @example + * ```typescript + * import { Resource, invoke } from '@tauri-apps/api/core'; + * export class DatabaseHandle extends Resource { + * static async open(path: string): Promise { + * const rid: number = await invoke('open_db', { path }); + * return new DatabaseHandle(rid); + * } + * + * async execute(sql: string): Promise { + * await invoke('execute_sql', { rid: this.rid, sql }); + * } + * } + * ``` + */ +export declare class Resource { + #private; + get rid(): number; + constructor(rid: number); + /** + * Destroys and cleans up this resource from memory. + * **You should not call any method on this object anymore and should drop any reference to it.** + */ + close(): Promise; +} +declare function isTauri(): boolean; +export type { InvokeArgs, InvokeOptions }; +export { transformCallback, Channel, PluginListener, addPluginListener, PermissionState, checkPermissions, requestPermissions, invoke, convertFileSrc, isTauri }; diff --git a/node_modules/@tauri-apps/api/core.js b/node_modules/@tauri-apps/api/core.js new file mode 100644 index 0000000..a9bb011 --- /dev/null +++ b/node_modules/@tauri-apps/api/core.js @@ -0,0 +1,269 @@ +import { __classPrivateFieldGet, __classPrivateFieldSet } from './external/tslib/tslib.es6.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +var _Channel_onmessage, _Channel_nextMessageIndex, _Channel_pendingMessages, _Channel_messageEndIndex, _Resource_rid; +/** + * Invoke your custom commands. + * + * This package is also accessible with `window.__TAURI__.core` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * @module + */ +/** + * A key to be used to implement a special function + * on your types that define how your type should be serialized + * when passing across the IPC. + * @example + * Given a type in Rust that looks like this + * ```rs + * #[derive(serde::Serialize, serde::Deserialize) + * enum UserId { + * String(String), + * Number(u32), + * } + * ``` + * `UserId::String("id")` would be serialized into `{ String: "id" }` + * and so we need to pass the same structure back to Rust + * ```ts + * import { SERIALIZE_TO_IPC_FN } from "@tauri-apps/api/core" + * + * class UserIdString { + * id + * constructor(id) { + * this.id = id + * } + * + * [SERIALIZE_TO_IPC_FN]() { + * return { String: this.id } + * } + * } + * + * class UserIdNumber { + * id + * constructor(id) { + * this.id = id + * } + * + * [SERIALIZE_TO_IPC_FN]() { + * return { Number: this.id } + * } + * } + * + * type UserId = UserIdString | UserIdNumber + * ``` + * + */ +// if this value changes, make sure to update it in: +// 1. ipc.js +// 2. process-ipc-message-fn.js +const SERIALIZE_TO_IPC_FN = '__TAURI_TO_IPC_KEY__'; +/** + * Transforms a callback function to a string identifier that can be passed to the backend. + * The backend uses the identifier to `eval()` the callback. + * + * @return A unique identifier associated with the callback function. + * + * @since 1.0.0 + */ +function transformCallback(callback, once = false) { + return window.__TAURI_INTERNALS__.transformCallback(callback, once); +} +class Channel { + constructor(onmessage) { + _Channel_onmessage.set(this, void 0); + // the index is used as a mechanism to preserve message order + _Channel_nextMessageIndex.set(this, 0); + _Channel_pendingMessages.set(this, []); + _Channel_messageEndIndex.set(this, void 0); + __classPrivateFieldSet(this, _Channel_onmessage, onmessage || (() => { }), "f"); + this.id = transformCallback((rawMessage) => { + const index = rawMessage.index; + if ('end' in rawMessage) { + if (index == __classPrivateFieldGet(this, _Channel_nextMessageIndex, "f")) { + this.cleanupCallback(); + } + else { + __classPrivateFieldSet(this, _Channel_messageEndIndex, index, "f"); + } + return; + } + const message = rawMessage.message; + // Process the message if we're at the right order + if (index == __classPrivateFieldGet(this, _Channel_nextMessageIndex, "f")) { + __classPrivateFieldGet(this, _Channel_onmessage, "f").call(this, message); + __classPrivateFieldSet(this, _Channel_nextMessageIndex, __classPrivateFieldGet(this, _Channel_nextMessageIndex, "f") + 1, "f"); + // process pending messages + while (__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f") in __classPrivateFieldGet(this, _Channel_pendingMessages, "f")) { + const message = __classPrivateFieldGet(this, _Channel_pendingMessages, "f")[__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f")]; + __classPrivateFieldGet(this, _Channel_onmessage, "f").call(this, message); + // eslint-disable-next-line @typescript-eslint/no-array-delete + delete __classPrivateFieldGet(this, _Channel_pendingMessages, "f")[__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f")]; + __classPrivateFieldSet(this, _Channel_nextMessageIndex, __classPrivateFieldGet(this, _Channel_nextMessageIndex, "f") + 1, "f"); + } + if (__classPrivateFieldGet(this, _Channel_nextMessageIndex, "f") === __classPrivateFieldGet(this, _Channel_messageEndIndex, "f")) { + this.cleanupCallback(); + } + } + // Queue the message if we're not + else { + // eslint-disable-next-line security/detect-object-injection + __classPrivateFieldGet(this, _Channel_pendingMessages, "f")[index] = message; + } + }); + } + cleanupCallback() { + Reflect.deleteProperty(window, `_${this.id}`); + } + set onmessage(handler) { + __classPrivateFieldSet(this, _Channel_onmessage, handler, "f"); + } + get onmessage() { + return __classPrivateFieldGet(this, _Channel_onmessage, "f"); + } + [(_Channel_onmessage = new WeakMap(), _Channel_nextMessageIndex = new WeakMap(), _Channel_pendingMessages = new WeakMap(), _Channel_messageEndIndex = new WeakMap(), SERIALIZE_TO_IPC_FN)]() { + return `__CHANNEL__:${this.id}`; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[SERIALIZE_TO_IPC_FN](); + } +} +class PluginListener { + constructor(plugin, event, channelId) { + this.plugin = plugin; + this.event = event; + this.channelId = channelId; + } + async unregister() { + return invoke(`plugin:${this.plugin}|remove_listener`, { + event: this.event, + channelId: this.channelId + }); + } +} +/** + * Adds a listener to a plugin event. + * + * @returns The listener object to stop listening to the events. + * + * @since 2.0.0 + */ +async function addPluginListener(plugin, event, cb) { + const handler = new Channel(cb); + return invoke(`plugin:${plugin}|registerListener`, { event, handler }).then(() => new PluginListener(plugin, event, handler.id)); +} +/** + * Get permission state for a plugin. + * + * This should be used by plugin authors to wrap their actual implementation. + */ +async function checkPermissions(plugin) { + return invoke(`plugin:${plugin}|check_permissions`); +} +/** + * Request permissions. + * + * This should be used by plugin authors to wrap their actual implementation. + */ +async function requestPermissions(plugin) { + return invoke(`plugin:${plugin}|request_permissions`); +} +/** + * Sends a message to the backend. + * @example + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * await invoke('login', { user: 'tauri', password: 'poiwe3h4r5ip3yrhtew9ty' }); + * ``` + * + * @param cmd The command name. + * @param args The optional arguments to pass to the command. + * @param options The request options. + * @return A promise resolving or rejecting to the backend response. + * + * @since 1.0.0 + */ +async function invoke(cmd, args = {}, options) { + return window.__TAURI_INTERNALS__.invoke(cmd, args, options); +} +/** + * Convert a device file path to an URL that can be loaded by the webview. + * Note that `asset:` and `http://asset.localhost` must be added to [`app.security.csp`](https://v2.tauri.app/reference/config/#csp-1) in `tauri.conf.json`. + * Example CSP value: `"csp": "default-src 'self' ipc: http://ipc.localhost; img-src 'self' asset: http://asset.localhost"` to use the asset protocol on image sources. + * + * Additionally, `"enable" : "true"` must be added to [`app.security.assetProtocol`](https://v2.tauri.app/reference/config/#assetprotocolconfig) + * in `tauri.conf.json` and its access scope must be defined on the `scope` array on the same `assetProtocol` object. + * + * @param filePath The file path. + * @param protocol The protocol to use. Defaults to `asset`. You only need to set this when using a custom protocol. + * @example + * ```typescript + * import { appDataDir, join } from '@tauri-apps/api/path'; + * import { convertFileSrc } from '@tauri-apps/api/core'; + * const appDataDirPath = await appDataDir(); + * const filePath = await join(appDataDirPath, 'assets/video.mp4'); + * const assetUrl = convertFileSrc(filePath); + * + * const video = document.getElementById('my-video'); + * const source = document.createElement('source'); + * source.type = 'video/mp4'; + * source.src = assetUrl; + * video.appendChild(source); + * video.load(); + * ``` + * + * @return the URL that can be used as source on the webview. + * + * @since 1.0.0 + */ +function convertFileSrc(filePath, protocol = 'asset') { + return window.__TAURI_INTERNALS__.convertFileSrc(filePath, protocol); +} +/** + * A rust-backed resource stored through `tauri::Manager::resources_table` API. + * + * The resource lives in the main process and does not exist + * in the Javascript world, and thus will not be cleaned up automatiacally + * except on application exit. If you want to clean it up early, call {@linkcode Resource.close} + * + * @example + * ```typescript + * import { Resource, invoke } from '@tauri-apps/api/core'; + * export class DatabaseHandle extends Resource { + * static async open(path: string): Promise { + * const rid: number = await invoke('open_db', { path }); + * return new DatabaseHandle(rid); + * } + * + * async execute(sql: string): Promise { + * await invoke('execute_sql', { rid: this.rid, sql }); + * } + * } + * ``` + */ +class Resource { + get rid() { + return __classPrivateFieldGet(this, _Resource_rid, "f"); + } + constructor(rid) { + _Resource_rid.set(this, void 0); + __classPrivateFieldSet(this, _Resource_rid, rid, "f"); + } + /** + * Destroys and cleans up this resource from memory. + * **You should not call any method on this object anymore and should drop any reference to it.** + */ + async close() { + return invoke('plugin:resources|close', { + rid: this.rid + }); + } +} +_Resource_rid = new WeakMap(); +function isTauri() { + // eslint-disable-next-line @typescript-eslint/no-explicit-any,@typescript-eslint/no-unsafe-member-access + return !!(globalThis || window).isTauri; +} + +export { Channel, PluginListener, Resource, SERIALIZE_TO_IPC_FN, addPluginListener, checkPermissions, convertFileSrc, invoke, isTauri, requestPermissions, transformCallback }; diff --git a/node_modules/@tauri-apps/api/dpi.cjs b/node_modules/@tauri-apps/api/dpi.cjs new file mode 100644 index 0000000..0fe7686 --- /dev/null +++ b/node_modules/@tauri-apps/api/dpi.cjs @@ -0,0 +1,334 @@ +'use strict'; + +var core = require('./core.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * A size represented in logical pixels. + * + * @since 2.0.0 + */ +class LogicalSize { + constructor(...args) { + this.type = 'Logical'; + if (args.length === 1) { + if ('Logical' in args[0]) { + this.width = args[0].Logical.width; + this.height = args[0].Logical.height; + } + else { + this.width = args[0].width; + this.height = args[0].height; + } + } + else { + this.width = args[0]; + this.height = args[1]; + } + } + /** + * Converts the logical size to a physical one. + * @example + * ```typescript + * import { LogicalSize } from '@tauri-apps/api/dpi'; + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const size = new LogicalSize(400, 500); + * const physical = size.toPhysical(factor); + * ``` + * + * @since 2.0.0 + */ + toPhysical(scaleFactor) { + return new PhysicalSize(this.width * scaleFactor, this.height * scaleFactor); + } + [core.SERIALIZE_TO_IPC_FN]() { + return { + width: this.width, + height: this.height + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[core.SERIALIZE_TO_IPC_FN](); + } +} +/** + * A size represented in physical pixels. + * + * @since 2.0.0 + */ +class PhysicalSize { + constructor(...args) { + this.type = 'Physical'; + if (args.length === 1) { + if ('Physical' in args[0]) { + this.width = args[0].Physical.width; + this.height = args[0].Physical.height; + } + else { + this.width = args[0].width; + this.height = args[0].height; + } + } + else { + this.width = args[0]; + this.height = args[1]; + } + } + /** + * Converts the physical size to a logical one. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const size = await appWindow.innerSize(); // PhysicalSize + * const logical = size.toLogical(factor); + * ``` + */ + toLogical(scaleFactor) { + return new LogicalSize(this.width / scaleFactor, this.height / scaleFactor); + } + [core.SERIALIZE_TO_IPC_FN]() { + return { + width: this.width, + height: this.height + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[core.SERIALIZE_TO_IPC_FN](); + } +} +/** + * A size represented either in physical or in logical pixels. + * + * This type is basically a union type of {@linkcode LogicalSize} and {@linkcode PhysicalSize} + * but comes in handy when using `tauri::Size` in Rust as an argument to a command, as this class + * automatically serializes into a valid format so it can be deserialized correctly into `tauri::Size` + * + * So instead of + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalSize, PhysicalSize } from '@tauri-apps/api/dpi'; + * + * const size: LogicalSize | PhysicalSize = someFunction(); // where someFunction returns either LogicalSize or PhysicalSize + * const validSize = size instanceof LogicalSize + * ? { Logical: { width: size.width, height: size.height } } + * : { Physical: { width: size.width, height: size.height } } + * await invoke("do_something_with_size", { size: validSize }); + * ``` + * + * You can just use {@linkcode Size} + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalSize, PhysicalSize, Size } from '@tauri-apps/api/dpi'; + * + * const size: LogicalSize | PhysicalSize = someFunction(); // where someFunction returns either LogicalSize or PhysicalSize + * const validSize = new Size(size); + * await invoke("do_something_with_size", { size: validSize }); + * ``` + * + * @since 2.1.0 + */ +class Size { + constructor(size) { + this.size = size; + } + toLogical(scaleFactor) { + return this.size instanceof LogicalSize + ? this.size + : this.size.toLogical(scaleFactor); + } + toPhysical(scaleFactor) { + return this.size instanceof PhysicalSize + ? this.size + : this.size.toPhysical(scaleFactor); + } + [core.SERIALIZE_TO_IPC_FN]() { + return { + [`${this.size.type}`]: { + width: this.size.width, + height: this.size.height + } + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[core.SERIALIZE_TO_IPC_FN](); + } +} +/** + * A position represented in logical pixels. + * + * @since 2.0.0 + */ +class LogicalPosition { + constructor(...args) { + this.type = 'Logical'; + if (args.length === 1) { + if ('Logical' in args[0]) { + this.x = args[0].Logical.x; + this.y = args[0].Logical.y; + } + else { + this.x = args[0].x; + this.y = args[0].y; + } + } + else { + this.x = args[0]; + this.y = args[1]; + } + } + /** + * Converts the logical position to a physical one. + * @example + * ```typescript + * import { LogicalPosition } from '@tauri-apps/api/dpi'; + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const position = new LogicalPosition(400, 500); + * const physical = position.toPhysical(factor); + * ``` + * + * @since 2.0.0 + */ + toPhysical(scaleFactor) { + return new PhysicalPosition(this.x * scaleFactor, this.y * scaleFactor); + } + [core.SERIALIZE_TO_IPC_FN]() { + return { + x: this.x, + y: this.y + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[core.SERIALIZE_TO_IPC_FN](); + } +} +/** + * A position represented in physical pixels. + * + * @since 2.0.0 + */ +class PhysicalPosition { + constructor(...args) { + this.type = 'Physical'; + if (args.length === 1) { + if ('Physical' in args[0]) { + this.x = args[0].Physical.x; + this.y = args[0].Physical.y; + } + else { + this.x = args[0].x; + this.y = args[0].y; + } + } + else { + this.x = args[0]; + this.y = args[1]; + } + } + /** + * Converts the physical position to a logical one. + * @example + * ```typescript + * import { PhysicalPosition } from '@tauri-apps/api/dpi'; + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const position = new PhysicalPosition(400, 500); + * const physical = position.toLogical(factor); + * ``` + * + * @since 2.0.0 + */ + toLogical(scaleFactor) { + return new LogicalPosition(this.x / scaleFactor, this.y / scaleFactor); + } + [core.SERIALIZE_TO_IPC_FN]() { + return { + x: this.x, + y: this.y + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[core.SERIALIZE_TO_IPC_FN](); + } +} +/** + * A position represented either in physical or in logical pixels. + * + * This type is basically a union type of {@linkcode LogicalSize} and {@linkcode PhysicalSize} + * but comes in handy when using `tauri::Position` in Rust as an argument to a command, as this class + * automatically serializes into a valid format so it can be deserialized correctly into `tauri::Position` + * + * So instead of + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalPosition, PhysicalPosition } from '@tauri-apps/api/dpi'; + * + * const position: LogicalPosition | PhysicalPosition = someFunction(); // where someFunction returns either LogicalPosition or PhysicalPosition + * const validPosition = position instanceof LogicalPosition + * ? { Logical: { x: position.x, y: position.y } } + * : { Physical: { x: position.x, y: position.y } } + * await invoke("do_something_with_position", { position: validPosition }); + * ``` + * + * You can just use {@linkcode Position} + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalPosition, PhysicalPosition, Position } from '@tauri-apps/api/dpi'; + * + * const position: LogicalPosition | PhysicalPosition = someFunction(); // where someFunction returns either LogicalPosition or PhysicalPosition + * const validPosition = new Position(position); + * await invoke("do_something_with_position", { position: validPosition }); + * ``` + * + * @since 2.1.0 + */ +class Position { + constructor(position) { + this.position = position; + } + toLogical(scaleFactor) { + return this.position instanceof LogicalPosition + ? this.position + : this.position.toLogical(scaleFactor); + } + toPhysical(scaleFactor) { + return this.position instanceof PhysicalPosition + ? this.position + : this.position.toPhysical(scaleFactor); + } + [core.SERIALIZE_TO_IPC_FN]() { + return { + [`${this.position.type}`]: { + x: this.position.x, + y: this.position.y + } + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[core.SERIALIZE_TO_IPC_FN](); + } +} + +exports.LogicalPosition = LogicalPosition; +exports.LogicalSize = LogicalSize; +exports.PhysicalPosition = PhysicalPosition; +exports.PhysicalSize = PhysicalSize; +exports.Position = Position; +exports.Size = Size; diff --git a/node_modules/@tauri-apps/api/dpi.d.ts b/node_modules/@tauri-apps/api/dpi.d.ts new file mode 100644 index 0000000..d5fb3d3 --- /dev/null +++ b/node_modules/@tauri-apps/api/dpi.d.ts @@ -0,0 +1,276 @@ +import { SERIALIZE_TO_IPC_FN } from './core'; +/** + * A size represented in logical pixels. + * + * @since 2.0.0 + */ +declare class LogicalSize { + readonly type = "Logical"; + width: number; + height: number; + constructor(width: number, height: number); + constructor(object: { + Logical: { + width: number; + height: number; + }; + }); + constructor(object: { + width: number; + height: number; + }); + /** + * Converts the logical size to a physical one. + * @example + * ```typescript + * import { LogicalSize } from '@tauri-apps/api/dpi'; + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const size = new LogicalSize(400, 500); + * const physical = size.toPhysical(factor); + * ``` + * + * @since 2.0.0 + */ + toPhysical(scaleFactor: number): PhysicalSize; + [SERIALIZE_TO_IPC_FN](): { + width: number; + height: number; + }; + toJSON(): { + width: number; + height: number; + }; +} +/** + * A size represented in physical pixels. + * + * @since 2.0.0 + */ +declare class PhysicalSize { + readonly type = "Physical"; + width: number; + height: number; + constructor(width: number, height: number); + constructor(object: { + Physical: { + width: number; + height: number; + }; + }); + constructor(object: { + width: number; + height: number; + }); + /** + * Converts the physical size to a logical one. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const size = await appWindow.innerSize(); // PhysicalSize + * const logical = size.toLogical(factor); + * ``` + */ + toLogical(scaleFactor: number): LogicalSize; + [SERIALIZE_TO_IPC_FN](): { + width: number; + height: number; + }; + toJSON(): { + width: number; + height: number; + }; +} +/** + * A size represented either in physical or in logical pixels. + * + * This type is basically a union type of {@linkcode LogicalSize} and {@linkcode PhysicalSize} + * but comes in handy when using `tauri::Size` in Rust as an argument to a command, as this class + * automatically serializes into a valid format so it can be deserialized correctly into `tauri::Size` + * + * So instead of + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalSize, PhysicalSize } from '@tauri-apps/api/dpi'; + * + * const size: LogicalSize | PhysicalSize = someFunction(); // where someFunction returns either LogicalSize or PhysicalSize + * const validSize = size instanceof LogicalSize + * ? { Logical: { width: size.width, height: size.height } } + * : { Physical: { width: size.width, height: size.height } } + * await invoke("do_something_with_size", { size: validSize }); + * ``` + * + * You can just use {@linkcode Size} + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalSize, PhysicalSize, Size } from '@tauri-apps/api/dpi'; + * + * const size: LogicalSize | PhysicalSize = someFunction(); // where someFunction returns either LogicalSize or PhysicalSize + * const validSize = new Size(size); + * await invoke("do_something_with_size", { size: validSize }); + * ``` + * + * @since 2.1.0 + */ +declare class Size { + size: LogicalSize | PhysicalSize; + constructor(size: LogicalSize | PhysicalSize); + toLogical(scaleFactor: number): LogicalSize; + toPhysical(scaleFactor: number): PhysicalSize; + [SERIALIZE_TO_IPC_FN](): { + [x: string]: { + width: number; + height: number; + }; + }; + toJSON(): { + [x: string]: { + width: number; + height: number; + }; + }; +} +/** + * A position represented in logical pixels. + * + * @since 2.0.0 + */ +declare class LogicalPosition { + readonly type = "Logical"; + x: number; + y: number; + constructor(x: number, y: number); + constructor(object: { + Logical: { + x: number; + y: number; + }; + }); + constructor(object: { + x: number; + y: number; + }); + /** + * Converts the logical position to a physical one. + * @example + * ```typescript + * import { LogicalPosition } from '@tauri-apps/api/dpi'; + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const position = new LogicalPosition(400, 500); + * const physical = position.toPhysical(factor); + * ``` + * + * @since 2.0.0 + */ + toPhysical(scaleFactor: number): PhysicalPosition; + [SERIALIZE_TO_IPC_FN](): { + x: number; + y: number; + }; + toJSON(): { + x: number; + y: number; + }; +} +/** + * A position represented in physical pixels. + * + * @since 2.0.0 + */ +declare class PhysicalPosition { + readonly type = "Physical"; + x: number; + y: number; + constructor(x: number, y: number); + constructor(object: { + Physical: { + x: number; + y: number; + }; + }); + constructor(object: { + x: number; + y: number; + }); + /** + * Converts the physical position to a logical one. + * @example + * ```typescript + * import { PhysicalPosition } from '@tauri-apps/api/dpi'; + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const position = new PhysicalPosition(400, 500); + * const physical = position.toLogical(factor); + * ``` + * + * @since 2.0.0 + */ + toLogical(scaleFactor: number): LogicalPosition; + [SERIALIZE_TO_IPC_FN](): { + x: number; + y: number; + }; + toJSON(): { + x: number; + y: number; + }; +} +/** + * A position represented either in physical or in logical pixels. + * + * This type is basically a union type of {@linkcode LogicalSize} and {@linkcode PhysicalSize} + * but comes in handy when using `tauri::Position` in Rust as an argument to a command, as this class + * automatically serializes into a valid format so it can be deserialized correctly into `tauri::Position` + * + * So instead of + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalPosition, PhysicalPosition } from '@tauri-apps/api/dpi'; + * + * const position: LogicalPosition | PhysicalPosition = someFunction(); // where someFunction returns either LogicalPosition or PhysicalPosition + * const validPosition = position instanceof LogicalPosition + * ? { Logical: { x: position.x, y: position.y } } + * : { Physical: { x: position.x, y: position.y } } + * await invoke("do_something_with_position", { position: validPosition }); + * ``` + * + * You can just use {@linkcode Position} + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalPosition, PhysicalPosition, Position } from '@tauri-apps/api/dpi'; + * + * const position: LogicalPosition | PhysicalPosition = someFunction(); // where someFunction returns either LogicalPosition or PhysicalPosition + * const validPosition = new Position(position); + * await invoke("do_something_with_position", { position: validPosition }); + * ``` + * + * @since 2.1.0 + */ +declare class Position { + position: LogicalPosition | PhysicalPosition; + constructor(position: LogicalPosition | PhysicalPosition); + toLogical(scaleFactor: number): LogicalPosition; + toPhysical(scaleFactor: number): PhysicalPosition; + [SERIALIZE_TO_IPC_FN](): { + [x: string]: { + x: number; + y: number; + }; + }; + toJSON(): { + [x: string]: { + x: number; + y: number; + }; + }; +} +export { LogicalPosition, LogicalSize, Size, PhysicalPosition, PhysicalSize, Position }; diff --git a/node_modules/@tauri-apps/api/dpi.js b/node_modules/@tauri-apps/api/dpi.js new file mode 100644 index 0000000..b90a319 --- /dev/null +++ b/node_modules/@tauri-apps/api/dpi.js @@ -0,0 +1,327 @@ +import { SERIALIZE_TO_IPC_FN } from './core.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * A size represented in logical pixels. + * + * @since 2.0.0 + */ +class LogicalSize { + constructor(...args) { + this.type = 'Logical'; + if (args.length === 1) { + if ('Logical' in args[0]) { + this.width = args[0].Logical.width; + this.height = args[0].Logical.height; + } + else { + this.width = args[0].width; + this.height = args[0].height; + } + } + else { + this.width = args[0]; + this.height = args[1]; + } + } + /** + * Converts the logical size to a physical one. + * @example + * ```typescript + * import { LogicalSize } from '@tauri-apps/api/dpi'; + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const size = new LogicalSize(400, 500); + * const physical = size.toPhysical(factor); + * ``` + * + * @since 2.0.0 + */ + toPhysical(scaleFactor) { + return new PhysicalSize(this.width * scaleFactor, this.height * scaleFactor); + } + [SERIALIZE_TO_IPC_FN]() { + return { + width: this.width, + height: this.height + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[SERIALIZE_TO_IPC_FN](); + } +} +/** + * A size represented in physical pixels. + * + * @since 2.0.0 + */ +class PhysicalSize { + constructor(...args) { + this.type = 'Physical'; + if (args.length === 1) { + if ('Physical' in args[0]) { + this.width = args[0].Physical.width; + this.height = args[0].Physical.height; + } + else { + this.width = args[0].width; + this.height = args[0].height; + } + } + else { + this.width = args[0]; + this.height = args[1]; + } + } + /** + * Converts the physical size to a logical one. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const size = await appWindow.innerSize(); // PhysicalSize + * const logical = size.toLogical(factor); + * ``` + */ + toLogical(scaleFactor) { + return new LogicalSize(this.width / scaleFactor, this.height / scaleFactor); + } + [SERIALIZE_TO_IPC_FN]() { + return { + width: this.width, + height: this.height + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[SERIALIZE_TO_IPC_FN](); + } +} +/** + * A size represented either in physical or in logical pixels. + * + * This type is basically a union type of {@linkcode LogicalSize} and {@linkcode PhysicalSize} + * but comes in handy when using `tauri::Size` in Rust as an argument to a command, as this class + * automatically serializes into a valid format so it can be deserialized correctly into `tauri::Size` + * + * So instead of + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalSize, PhysicalSize } from '@tauri-apps/api/dpi'; + * + * const size: LogicalSize | PhysicalSize = someFunction(); // where someFunction returns either LogicalSize or PhysicalSize + * const validSize = size instanceof LogicalSize + * ? { Logical: { width: size.width, height: size.height } } + * : { Physical: { width: size.width, height: size.height } } + * await invoke("do_something_with_size", { size: validSize }); + * ``` + * + * You can just use {@linkcode Size} + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalSize, PhysicalSize, Size } from '@tauri-apps/api/dpi'; + * + * const size: LogicalSize | PhysicalSize = someFunction(); // where someFunction returns either LogicalSize or PhysicalSize + * const validSize = new Size(size); + * await invoke("do_something_with_size", { size: validSize }); + * ``` + * + * @since 2.1.0 + */ +class Size { + constructor(size) { + this.size = size; + } + toLogical(scaleFactor) { + return this.size instanceof LogicalSize + ? this.size + : this.size.toLogical(scaleFactor); + } + toPhysical(scaleFactor) { + return this.size instanceof PhysicalSize + ? this.size + : this.size.toPhysical(scaleFactor); + } + [SERIALIZE_TO_IPC_FN]() { + return { + [`${this.size.type}`]: { + width: this.size.width, + height: this.size.height + } + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[SERIALIZE_TO_IPC_FN](); + } +} +/** + * A position represented in logical pixels. + * + * @since 2.0.0 + */ +class LogicalPosition { + constructor(...args) { + this.type = 'Logical'; + if (args.length === 1) { + if ('Logical' in args[0]) { + this.x = args[0].Logical.x; + this.y = args[0].Logical.y; + } + else { + this.x = args[0].x; + this.y = args[0].y; + } + } + else { + this.x = args[0]; + this.y = args[1]; + } + } + /** + * Converts the logical position to a physical one. + * @example + * ```typescript + * import { LogicalPosition } from '@tauri-apps/api/dpi'; + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const position = new LogicalPosition(400, 500); + * const physical = position.toPhysical(factor); + * ``` + * + * @since 2.0.0 + */ + toPhysical(scaleFactor) { + return new PhysicalPosition(this.x * scaleFactor, this.y * scaleFactor); + } + [SERIALIZE_TO_IPC_FN]() { + return { + x: this.x, + y: this.y + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[SERIALIZE_TO_IPC_FN](); + } +} +/** + * A position represented in physical pixels. + * + * @since 2.0.0 + */ +class PhysicalPosition { + constructor(...args) { + this.type = 'Physical'; + if (args.length === 1) { + if ('Physical' in args[0]) { + this.x = args[0].Physical.x; + this.y = args[0].Physical.y; + } + else { + this.x = args[0].x; + this.y = args[0].y; + } + } + else { + this.x = args[0]; + this.y = args[1]; + } + } + /** + * Converts the physical position to a logical one. + * @example + * ```typescript + * import { PhysicalPosition } from '@tauri-apps/api/dpi'; + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * + * const appWindow = getCurrentWindow(); + * const factor = await appWindow.scaleFactor(); + * const position = new PhysicalPosition(400, 500); + * const physical = position.toLogical(factor); + * ``` + * + * @since 2.0.0 + */ + toLogical(scaleFactor) { + return new LogicalPosition(this.x / scaleFactor, this.y / scaleFactor); + } + [SERIALIZE_TO_IPC_FN]() { + return { + x: this.x, + y: this.y + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[SERIALIZE_TO_IPC_FN](); + } +} +/** + * A position represented either in physical or in logical pixels. + * + * This type is basically a union type of {@linkcode LogicalSize} and {@linkcode PhysicalSize} + * but comes in handy when using `tauri::Position` in Rust as an argument to a command, as this class + * automatically serializes into a valid format so it can be deserialized correctly into `tauri::Position` + * + * So instead of + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalPosition, PhysicalPosition } from '@tauri-apps/api/dpi'; + * + * const position: LogicalPosition | PhysicalPosition = someFunction(); // where someFunction returns either LogicalPosition or PhysicalPosition + * const validPosition = position instanceof LogicalPosition + * ? { Logical: { x: position.x, y: position.y } } + * : { Physical: { x: position.x, y: position.y } } + * await invoke("do_something_with_position", { position: validPosition }); + * ``` + * + * You can just use {@linkcode Position} + * ```typescript + * import { invoke } from '@tauri-apps/api/core'; + * import { LogicalPosition, PhysicalPosition, Position } from '@tauri-apps/api/dpi'; + * + * const position: LogicalPosition | PhysicalPosition = someFunction(); // where someFunction returns either LogicalPosition or PhysicalPosition + * const validPosition = new Position(position); + * await invoke("do_something_with_position", { position: validPosition }); + * ``` + * + * @since 2.1.0 + */ +class Position { + constructor(position) { + this.position = position; + } + toLogical(scaleFactor) { + return this.position instanceof LogicalPosition + ? this.position + : this.position.toLogical(scaleFactor); + } + toPhysical(scaleFactor) { + return this.position instanceof PhysicalPosition + ? this.position + : this.position.toPhysical(scaleFactor); + } + [SERIALIZE_TO_IPC_FN]() { + return { + [`${this.position.type}`]: { + x: this.position.x, + y: this.position.y + } + }; + } + toJSON() { + // eslint-disable-next-line security/detect-object-injection + return this[SERIALIZE_TO_IPC_FN](); + } +} + +export { LogicalPosition, LogicalSize, PhysicalPosition, PhysicalSize, Position, Size }; diff --git a/node_modules/@tauri-apps/api/event.cjs b/node_modules/@tauri-apps/api/event.cjs new file mode 100644 index 0000000..58f25e0 --- /dev/null +++ b/node_modules/@tauri-apps/api/event.cjs @@ -0,0 +1,163 @@ +'use strict'; + +var core = require('./core.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * The event system allows you to emit events to the backend and listen to events from it. + * + * This package is also accessible with `window.__TAURI__.event` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * @module + */ +/** + * @since 1.1.0 + */ +exports.TauriEvent = void 0; +(function (TauriEvent) { + TauriEvent["WINDOW_RESIZED"] = "tauri://resize"; + TauriEvent["WINDOW_MOVED"] = "tauri://move"; + TauriEvent["WINDOW_CLOSE_REQUESTED"] = "tauri://close-requested"; + TauriEvent["WINDOW_DESTROYED"] = "tauri://destroyed"; + TauriEvent["WINDOW_FOCUS"] = "tauri://focus"; + TauriEvent["WINDOW_BLUR"] = "tauri://blur"; + TauriEvent["WINDOW_SCALE_FACTOR_CHANGED"] = "tauri://scale-change"; + TauriEvent["WINDOW_THEME_CHANGED"] = "tauri://theme-changed"; + TauriEvent["WINDOW_CREATED"] = "tauri://window-created"; + TauriEvent["WEBVIEW_CREATED"] = "tauri://webview-created"; + TauriEvent["DRAG_ENTER"] = "tauri://drag-enter"; + TauriEvent["DRAG_OVER"] = "tauri://drag-over"; + TauriEvent["DRAG_DROP"] = "tauri://drag-drop"; + TauriEvent["DRAG_LEAVE"] = "tauri://drag-leave"; +})(exports.TauriEvent || (exports.TauriEvent = {})); +/** + * Unregister the event listener associated with the given name and id. + * + * @ignore + * @param event The event name + * @param eventId Event identifier + * @returns + */ +async function _unlisten(event, eventId) { + await core.invoke('plugin:event|unlisten', { + event, + eventId + }); +} +/** + * Listen to an emitted event to any {@link EventTarget|target}. + * + * @example + * ```typescript + * import { listen } from '@tauri-apps/api/event'; + * const unlisten = await listen('error', (event) => { + * console.log(`Got error, payload: ${event.payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler callback. + * @param options Event listening options. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + * + * @since 1.0.0 + */ +async function listen(event, handler, options) { + var _a; + const target = typeof (options === null || options === void 0 ? void 0 : options.target) === 'string' + ? { kind: 'AnyLabel', label: options.target } + : ((_a = options === null || options === void 0 ? void 0 : options.target) !== null && _a !== void 0 ? _a : { kind: 'Any' }); + return core.invoke('plugin:event|listen', { + event, + target, + handler: core.transformCallback(handler) + }).then((eventId) => { + return async () => _unlisten(event, eventId); + }); +} +/** + * Listens once to an emitted event to any {@link EventTarget|target}. + * + * @example + * ```typescript + * import { once } from '@tauri-apps/api/event'; + * interface LoadedPayload { + * loggedIn: boolean, + * token: string + * } + * const unlisten = await once('loaded', (event) => { + * console.log(`App is loaded, loggedIn: ${event.payload.loggedIn}, token: ${event.payload.token}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler callback. + * @param options Event listening options. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + * + * @since 1.0.0 + */ +async function once(event, handler, options) { + return listen(event, (eventData) => { + // eslint-disable-next-line @typescript-eslint/no-floating-promises + _unlisten(event, eventData.id); + handler(eventData); + }, options); +} +/** + * Emits an event to all {@link EventTarget|targets}. + * + * @example + * ```typescript + * import { emit } from '@tauri-apps/api/event'; + * await emit('frontend-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + * + * @since 1.0.0 + */ +async function emit(event, payload) { + await core.invoke('plugin:event|emit', { + event, + payload + }); +} +/** + * Emits an event to all {@link EventTarget|targets} matching the given target. + * + * @example + * ```typescript + * import { emitTo } from '@tauri-apps/api/event'; + * await emitTo('main', 'frontend-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param target Label of the target Window/Webview/WebviewWindow or raw {@link EventTarget} object. + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + * + * @since 2.0.0 + */ +async function emitTo(target, event, payload) { + const eventTarget = typeof target === 'string' ? { kind: 'AnyLabel', label: target } : target; + await core.invoke('plugin:event|emit_to', { + target: eventTarget, + event, + payload + }); +} + +exports.emit = emit; +exports.emitTo = emitTo; +exports.listen = listen; +exports.once = once; diff --git a/node_modules/@tauri-apps/api/event.d.ts b/node_modules/@tauri-apps/api/event.d.ts new file mode 100644 index 0000000..a48e7b0 --- /dev/null +++ b/node_modules/@tauri-apps/api/event.d.ts @@ -0,0 +1,138 @@ +type EventTarget = { + kind: 'Any'; +} | { + kind: 'AnyLabel'; + label: string; +} | { + kind: 'App'; +} | { + kind: 'Window'; + label: string; +} | { + kind: 'Webview'; + label: string; +} | { + kind: 'WebviewWindow'; + label: string; +}; +interface Event { + /** Event name */ + event: EventName; + /** Event identifier used to unlisten */ + id: number; + /** Event payload */ + payload: T; +} +type EventCallback = (event: Event) => void; +type UnlistenFn = () => void; +type EventName = `${TauriEvent}` | (string & Record); +interface Options { + /** + * The event target to listen to, defaults to `{ kind: 'Any' }`, see {@link EventTarget}. + * + * If a string is provided, {@link EventTarget.AnyLabel} is used. + */ + target?: string | EventTarget; +} +/** + * @since 1.1.0 + */ +declare enum TauriEvent { + WINDOW_RESIZED = "tauri://resize", + WINDOW_MOVED = "tauri://move", + WINDOW_CLOSE_REQUESTED = "tauri://close-requested", + WINDOW_DESTROYED = "tauri://destroyed", + WINDOW_FOCUS = "tauri://focus", + WINDOW_BLUR = "tauri://blur", + WINDOW_SCALE_FACTOR_CHANGED = "tauri://scale-change", + WINDOW_THEME_CHANGED = "tauri://theme-changed", + WINDOW_CREATED = "tauri://window-created", + WEBVIEW_CREATED = "tauri://webview-created", + DRAG_ENTER = "tauri://drag-enter", + DRAG_OVER = "tauri://drag-over", + DRAG_DROP = "tauri://drag-drop", + DRAG_LEAVE = "tauri://drag-leave" +} +/** + * Listen to an emitted event to any {@link EventTarget|target}. + * + * @example + * ```typescript + * import { listen } from '@tauri-apps/api/event'; + * const unlisten = await listen('error', (event) => { + * console.log(`Got error, payload: ${event.payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler callback. + * @param options Event listening options. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + * + * @since 1.0.0 + */ +declare function listen(event: EventName, handler: EventCallback, options?: Options): Promise; +/** + * Listens once to an emitted event to any {@link EventTarget|target}. + * + * @example + * ```typescript + * import { once } from '@tauri-apps/api/event'; + * interface LoadedPayload { + * loggedIn: boolean, + * token: string + * } + * const unlisten = await once('loaded', (event) => { + * console.log(`App is loaded, loggedIn: ${event.payload.loggedIn}, token: ${event.payload.token}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler callback. + * @param options Event listening options. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + * + * @since 1.0.0 + */ +declare function once(event: EventName, handler: EventCallback, options?: Options): Promise; +/** + * Emits an event to all {@link EventTarget|targets}. + * + * @example + * ```typescript + * import { emit } from '@tauri-apps/api/event'; + * await emit('frontend-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + * + * @since 1.0.0 + */ +declare function emit(event: string, payload?: T): Promise; +/** + * Emits an event to all {@link EventTarget|targets} matching the given target. + * + * @example + * ```typescript + * import { emitTo } from '@tauri-apps/api/event'; + * await emitTo('main', 'frontend-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param target Label of the target Window/Webview/WebviewWindow or raw {@link EventTarget} object. + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + * + * @since 2.0.0 + */ +declare function emitTo(target: EventTarget | string, event: string, payload?: T): Promise; +export type { Event, EventTarget, EventCallback, UnlistenFn, EventName, Options }; +export { listen, once, emit, emitTo, TauriEvent }; diff --git a/node_modules/@tauri-apps/api/event.js b/node_modules/@tauri-apps/api/event.js new file mode 100644 index 0000000..a79a427 --- /dev/null +++ b/node_modules/@tauri-apps/api/event.js @@ -0,0 +1,158 @@ +import { invoke, transformCallback } from './core.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * The event system allows you to emit events to the backend and listen to events from it. + * + * This package is also accessible with `window.__TAURI__.event` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * @module + */ +/** + * @since 1.1.0 + */ +var TauriEvent; +(function (TauriEvent) { + TauriEvent["WINDOW_RESIZED"] = "tauri://resize"; + TauriEvent["WINDOW_MOVED"] = "tauri://move"; + TauriEvent["WINDOW_CLOSE_REQUESTED"] = "tauri://close-requested"; + TauriEvent["WINDOW_DESTROYED"] = "tauri://destroyed"; + TauriEvent["WINDOW_FOCUS"] = "tauri://focus"; + TauriEvent["WINDOW_BLUR"] = "tauri://blur"; + TauriEvent["WINDOW_SCALE_FACTOR_CHANGED"] = "tauri://scale-change"; + TauriEvent["WINDOW_THEME_CHANGED"] = "tauri://theme-changed"; + TauriEvent["WINDOW_CREATED"] = "tauri://window-created"; + TauriEvent["WEBVIEW_CREATED"] = "tauri://webview-created"; + TauriEvent["DRAG_ENTER"] = "tauri://drag-enter"; + TauriEvent["DRAG_OVER"] = "tauri://drag-over"; + TauriEvent["DRAG_DROP"] = "tauri://drag-drop"; + TauriEvent["DRAG_LEAVE"] = "tauri://drag-leave"; +})(TauriEvent || (TauriEvent = {})); +/** + * Unregister the event listener associated with the given name and id. + * + * @ignore + * @param event The event name + * @param eventId Event identifier + * @returns + */ +async function _unlisten(event, eventId) { + await invoke('plugin:event|unlisten', { + event, + eventId + }); +} +/** + * Listen to an emitted event to any {@link EventTarget|target}. + * + * @example + * ```typescript + * import { listen } from '@tauri-apps/api/event'; + * const unlisten = await listen('error', (event) => { + * console.log(`Got error, payload: ${event.payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler callback. + * @param options Event listening options. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + * + * @since 1.0.0 + */ +async function listen(event, handler, options) { + var _a; + const target = typeof (options === null || options === void 0 ? void 0 : options.target) === 'string' + ? { kind: 'AnyLabel', label: options.target } + : ((_a = options === null || options === void 0 ? void 0 : options.target) !== null && _a !== void 0 ? _a : { kind: 'Any' }); + return invoke('plugin:event|listen', { + event, + target, + handler: transformCallback(handler) + }).then((eventId) => { + return async () => _unlisten(event, eventId); + }); +} +/** + * Listens once to an emitted event to any {@link EventTarget|target}. + * + * @example + * ```typescript + * import { once } from '@tauri-apps/api/event'; + * interface LoadedPayload { + * loggedIn: boolean, + * token: string + * } + * const unlisten = await once('loaded', (event) => { + * console.log(`App is loaded, loggedIn: ${event.payload.loggedIn}, token: ${event.payload.token}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler callback. + * @param options Event listening options. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + * + * @since 1.0.0 + */ +async function once(event, handler, options) { + return listen(event, (eventData) => { + // eslint-disable-next-line @typescript-eslint/no-floating-promises + _unlisten(event, eventData.id); + handler(eventData); + }, options); +} +/** + * Emits an event to all {@link EventTarget|targets}. + * + * @example + * ```typescript + * import { emit } from '@tauri-apps/api/event'; + * await emit('frontend-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + * + * @since 1.0.0 + */ +async function emit(event, payload) { + await invoke('plugin:event|emit', { + event, + payload + }); +} +/** + * Emits an event to all {@link EventTarget|targets} matching the given target. + * + * @example + * ```typescript + * import { emitTo } from '@tauri-apps/api/event'; + * await emitTo('main', 'frontend-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param target Label of the target Window/Webview/WebviewWindow or raw {@link EventTarget} object. + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + * + * @since 2.0.0 + */ +async function emitTo(target, event, payload) { + const eventTarget = typeof target === 'string' ? { kind: 'AnyLabel', label: target } : target; + await invoke('plugin:event|emit_to', { + target: eventTarget, + event, + payload + }); +} + +export { TauriEvent, emit, emitTo, listen, once }; diff --git a/node_modules/@tauri-apps/api/external/tslib/tslib.es6.cjs b/node_modules/@tauri-apps/api/external/tslib/tslib.es6.cjs new file mode 100644 index 0000000..a15899d --- /dev/null +++ b/node_modules/@tauri-apps/api/external/tslib/tslib.es6.cjs @@ -0,0 +1,39 @@ +'use strict'; + +/****************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */ +/* global Reflect, Promise, SuppressedError, Symbol, Iterator */ + + +function __classPrivateFieldGet(receiver, state, kind, f) { + if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); + if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); + return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); +} + +function __classPrivateFieldSet(receiver, state, value, kind, f) { + if (kind === "m") throw new TypeError("Private method is not writable"); + if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); + if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); + return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; +} + +typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) { + var e = new Error(message); + return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e; +}; + +exports.__classPrivateFieldGet = __classPrivateFieldGet; +exports.__classPrivateFieldSet = __classPrivateFieldSet; diff --git a/node_modules/@tauri-apps/api/external/tslib/tslib.es6.js b/node_modules/@tauri-apps/api/external/tslib/tslib.es6.js new file mode 100644 index 0000000..e42559f --- /dev/null +++ b/node_modules/@tauri-apps/api/external/tslib/tslib.es6.js @@ -0,0 +1,36 @@ +/****************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */ +/* global Reflect, Promise, SuppressedError, Symbol, Iterator */ + + +function __classPrivateFieldGet(receiver, state, kind, f) { + if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter"); + if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it"); + return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver); +} + +function __classPrivateFieldSet(receiver, state, value, kind, f) { + if (kind === "m") throw new TypeError("Private method is not writable"); + if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter"); + if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it"); + return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value; +} + +typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) { + var e = new Error(message); + return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e; +}; + +export { __classPrivateFieldGet, __classPrivateFieldSet }; diff --git a/node_modules/@tauri-apps/api/image.cjs b/node_modules/@tauri-apps/api/image.cjs new file mode 100644 index 0000000..160bfc1 --- /dev/null +++ b/node_modules/@tauri-apps/api/image.cjs @@ -0,0 +1,88 @@ +'use strict'; + +var core = require('./core.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** An RGBA Image in row-major order from top to bottom. */ +class Image extends core.Resource { + /** + * Creates an Image from a resource ID. For internal use only. + * + * @ignore + */ + constructor(rid) { + super(rid); + } + /** Creates a new Image using RGBA data, in row-major order from top to bottom, and with specified width and height. */ + static async new(rgba, width, height) { + return core.invoke('plugin:image|new', { + rgba: transformImage(rgba), + width, + height + }).then((rid) => new Image(rid)); + } + /** + * Creates a new image using the provided bytes by inferring the file format. + * If the format is known, prefer [@link Image.fromPngBytes] or [@link Image.fromIcoBytes]. + * + * Only `ico` and `png` are supported (based on activated feature flag). + * + * Note that you need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + static async fromBytes(bytes) { + return core.invoke('plugin:image|from_bytes', { + bytes: transformImage(bytes) + }).then((rid) => new Image(rid)); + } + /** + * Creates a new image using the provided path. + * + * Only `ico` and `png` are supported (based on activated feature flag). + * + * Note that you need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + static async fromPath(path) { + return core.invoke('plugin:image|from_path', { path }).then((rid) => new Image(rid)); + } + /** Returns the RGBA data for this image, in row-major order from top to bottom. */ + async rgba() { + return core.invoke('plugin:image|rgba', { + rid: this.rid + }).then((buffer) => new Uint8Array(buffer)); + } + /** Returns the size of this image. */ + async size() { + return core.invoke('plugin:image|size', { rid: this.rid }); + } +} +/** + * Transforms image from various types into a type acceptable by Rust. + * + * See [tauri::image::JsImage](https://docs.rs/tauri/2/tauri/image/enum.JsImage.html) for more information. + * Note the API signature is not stable and might change. + */ +function transformImage(image) { + const ret = image == null + ? null + : typeof image === 'string' + ? image + : image instanceof Image + ? image.rid + : image; + return ret; +} + +exports.Image = Image; +exports.transformImage = transformImage; diff --git a/node_modules/@tauri-apps/api/image.d.ts b/node_modules/@tauri-apps/api/image.d.ts new file mode 100644 index 0000000..2db5ae2 --- /dev/null +++ b/node_modules/@tauri-apps/api/image.d.ts @@ -0,0 +1,54 @@ +import { Resource } from './core'; +export interface ImageSize { + width: number; + height: number; +} +/** An RGBA Image in row-major order from top to bottom. */ +export declare class Image extends Resource { + /** + * Creates an Image from a resource ID. For internal use only. + * + * @ignore + */ + constructor(rid: number); + /** Creates a new Image using RGBA data, in row-major order from top to bottom, and with specified width and height. */ + static new(rgba: number[] | Uint8Array | ArrayBuffer, width: number, height: number): Promise; + /** + * Creates a new image using the provided bytes by inferring the file format. + * If the format is known, prefer [@link Image.fromPngBytes] or [@link Image.fromIcoBytes]. + * + * Only `ico` and `png` are supported (based on activated feature flag). + * + * Note that you need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + static fromBytes(bytes: number[] | Uint8Array | ArrayBuffer): Promise; + /** + * Creates a new image using the provided path. + * + * Only `ico` and `png` are supported (based on activated feature flag). + * + * Note that you need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + static fromPath(path: string): Promise; + /** Returns the RGBA data for this image, in row-major order from top to bottom. */ + rgba(): Promise; + /** Returns the size of this image. */ + size(): Promise; +} +/** + * Transforms image from various types into a type acceptable by Rust. + * + * See [tauri::image::JsImage](https://docs.rs/tauri/2/tauri/image/enum.JsImage.html) for more information. + * Note the API signature is not stable and might change. + */ +export declare function transformImage(image: string | Image | Uint8Array | ArrayBuffer | number[] | null): T; diff --git a/node_modules/@tauri-apps/api/image.js b/node_modules/@tauri-apps/api/image.js new file mode 100644 index 0000000..66e7e84 --- /dev/null +++ b/node_modules/@tauri-apps/api/image.js @@ -0,0 +1,85 @@ +import { Resource, invoke } from './core.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** An RGBA Image in row-major order from top to bottom. */ +class Image extends Resource { + /** + * Creates an Image from a resource ID. For internal use only. + * + * @ignore + */ + constructor(rid) { + super(rid); + } + /** Creates a new Image using RGBA data, in row-major order from top to bottom, and with specified width and height. */ + static async new(rgba, width, height) { + return invoke('plugin:image|new', { + rgba: transformImage(rgba), + width, + height + }).then((rid) => new Image(rid)); + } + /** + * Creates a new image using the provided bytes by inferring the file format. + * If the format is known, prefer [@link Image.fromPngBytes] or [@link Image.fromIcoBytes]. + * + * Only `ico` and `png` are supported (based on activated feature flag). + * + * Note that you need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + static async fromBytes(bytes) { + return invoke('plugin:image|from_bytes', { + bytes: transformImage(bytes) + }).then((rid) => new Image(rid)); + } + /** + * Creates a new image using the provided path. + * + * Only `ico` and `png` are supported (based on activated feature flag). + * + * Note that you need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + static async fromPath(path) { + return invoke('plugin:image|from_path', { path }).then((rid) => new Image(rid)); + } + /** Returns the RGBA data for this image, in row-major order from top to bottom. */ + async rgba() { + return invoke('plugin:image|rgba', { + rid: this.rid + }).then((buffer) => new Uint8Array(buffer)); + } + /** Returns the size of this image. */ + async size() { + return invoke('plugin:image|size', { rid: this.rid }); + } +} +/** + * Transforms image from various types into a type acceptable by Rust. + * + * See [tauri::image::JsImage](https://docs.rs/tauri/2/tauri/image/enum.JsImage.html) for more information. + * Note the API signature is not stable and might change. + */ +function transformImage(image) { + const ret = image == null + ? null + : typeof image === 'string' + ? image + : image instanceof Image + ? image.rid + : image; + return ret; +} + +export { Image, transformImage }; diff --git a/node_modules/@tauri-apps/api/index.cjs b/node_modules/@tauri-apps/api/index.cjs new file mode 100644 index 0000000..05c2266 --- /dev/null +++ b/node_modules/@tauri-apps/api/index.cjs @@ -0,0 +1,29 @@ +'use strict'; + +var app = require('./app.cjs'); +var core = require('./core.cjs'); +var dpi = require('./dpi.cjs'); +var event = require('./event.cjs'); +var image = require('./image.cjs'); +var menu = require('./menu.cjs'); +var mocks = require('./mocks.cjs'); +var path = require('./path.cjs'); +var tray = require('./tray.cjs'); +var webview = require('./webview.cjs'); +var webviewWindow = require('./webviewWindow.cjs'); +var window = require('./window.cjs'); + + + +exports.app = app; +exports.core = core; +exports.dpi = dpi; +exports.event = event; +exports.image = image; +exports.menu = menu; +exports.mocks = mocks; +exports.path = path; +exports.tray = tray; +exports.webview = webview; +exports.webviewWindow = webviewWindow; +exports.window = window; diff --git a/node_modules/@tauri-apps/api/index.d.ts b/node_modules/@tauri-apps/api/index.d.ts new file mode 100644 index 0000000..6111f0e --- /dev/null +++ b/node_modules/@tauri-apps/api/index.d.ts @@ -0,0 +1,33 @@ +/** + * The Tauri API allows you to interface with the backend layer. + * + * This module exposes all other modules as an object where the key is the module name, and the value is the module exports. + * @example + * ```typescript + * import { event, window, path } from '@tauri-apps/api' + * ``` + * + * ### Vanilla JS API + * + * The above import syntax is for JavaScript/TypeScript with a bundler. If you're using vanilla JavaScript, you can use the global `window.__TAURI__` object instead. It requires `app.withGlobalTauri` configuration option enabled. + * + * @example + * ```js + * const { event, window: tauriWindow, path } = window.__TAURI__; + * ``` + * + * @module + */ +import * as app from './app'; +import * as core from './core'; +import * as dpi from './dpi'; +import * as event from './event'; +import * as image from './image'; +import * as menu from './menu'; +import * as mocks from './mocks'; +import * as path from './path'; +import * as tray from './tray'; +import * as webview from './webview'; +import * as webviewWindow from './webviewWindow'; +import * as window from './window'; +export { app, core, dpi, event, image, menu, mocks, path, tray, webview, webviewWindow, window }; diff --git a/node_modules/@tauri-apps/api/index.js b/node_modules/@tauri-apps/api/index.js new file mode 100644 index 0000000..8518a55 --- /dev/null +++ b/node_modules/@tauri-apps/api/index.js @@ -0,0 +1,24 @@ +import * as app from './app.js'; +export { app }; +import * as core from './core.js'; +export { core }; +import * as dpi from './dpi.js'; +export { dpi }; +import * as event from './event.js'; +export { event }; +import * as image from './image.js'; +export { image }; +import * as menu from './menu.js'; +export { menu }; +import * as mocks from './mocks.js'; +export { mocks }; +import * as path from './path.js'; +export { path }; +import * as tray from './tray.js'; +export { tray }; +import * as webview from './webview.js'; +export { webview }; +import * as webviewWindow from './webviewWindow.js'; +export { webviewWindow }; +import * as window from './window.js'; +export { window }; diff --git a/node_modules/@tauri-apps/api/menu.cjs b/node_modules/@tauri-apps/api/menu.cjs new file mode 100644 index 0000000..13ae499 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu.cjs @@ -0,0 +1,30 @@ +'use strict'; + +var submenu = require('./menu/submenu.cjs'); +var menuItem = require('./menu/menuItem.cjs'); +var menu = require('./menu/menu.cjs'); +var checkMenuItem = require('./menu/checkMenuItem.cjs'); +var iconMenuItem = require('./menu/iconMenuItem.cjs'); +var predefinedMenuItem = require('./menu/predefinedMenuItem.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Menu types and utilities. + * + * This package is also accessible with `window.__TAURI__.menu` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * @module + */ + +exports.Submenu = submenu.Submenu; +exports.itemFromKind = submenu.itemFromKind; +exports.MenuItem = menuItem.MenuItem; +exports.Menu = menu.Menu; +exports.CheckMenuItem = checkMenuItem.CheckMenuItem; +exports.IconMenuItem = iconMenuItem.IconMenuItem; +Object.defineProperty(exports, "NativeIcon", { + enumerable: true, + get: function () { return iconMenuItem.NativeIcon; } +}); +exports.PredefinedMenuItem = predefinedMenuItem.PredefinedMenuItem; diff --git a/node_modules/@tauri-apps/api/menu.d.ts b/node_modules/@tauri-apps/api/menu.d.ts new file mode 100644 index 0000000..0aacba4 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu.d.ts @@ -0,0 +1,12 @@ +export * from './menu/submenu'; +export * from './menu/menuItem'; +export * from './menu/menu'; +export * from './menu/checkMenuItem'; +export * from './menu/iconMenuItem'; +export * from './menu/predefinedMenuItem'; +/** + * Menu types and utilities. + * + * This package is also accessible with `window.__TAURI__.menu` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * @module + */ diff --git a/node_modules/@tauri-apps/api/menu.js b/node_modules/@tauri-apps/api/menu.js new file mode 100644 index 0000000..8d1248c --- /dev/null +++ b/node_modules/@tauri-apps/api/menu.js @@ -0,0 +1,16 @@ +export { Submenu, itemFromKind } from './menu/submenu.js'; +export { MenuItem } from './menu/menuItem.js'; +export { Menu } from './menu/menu.js'; +export { CheckMenuItem } from './menu/checkMenuItem.js'; +export { IconMenuItem, NativeIcon } from './menu/iconMenuItem.js'; +export { PredefinedMenuItem } from './menu/predefinedMenuItem.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Menu types and utilities. + * + * This package is also accessible with `window.__TAURI__.menu` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * @module + */ diff --git a/node_modules/@tauri-apps/api/menu/base.cjs b/node_modules/@tauri-apps/api/menu/base.cjs new file mode 100644 index 0000000..17608e3 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/base.cjs @@ -0,0 +1,100 @@ +'use strict'; + +var tslib_es6 = require('../external/tslib/tslib.es6.cjs'); +var core = require('../core.cjs'); +var image = require('../image.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +var _MenuItemBase_id, _MenuItemBase_kind; +function injectChannel(i) { + var _a; + if ('items' in i) { + i.items = (_a = i.items) === null || _a === void 0 ? void 0 : _a.map((item) => 'rid' in item ? item : injectChannel(item)); + } + else if ('action' in i && i.action) { + const handler = new core.Channel(); + handler.onmessage = i.action; + delete i.action; + return { ...i, handler }; + } + return i; +} +async function newMenu(kind, opts) { + const handler = new core.Channel(); + if (opts && typeof opts === 'object') { + if ('action' in opts && opts.action) { + handler.onmessage = opts.action; + delete opts.action; + } + // about predefined menu item icon + if ('item' in opts + && opts.item + && typeof opts.item === 'object' + && 'About' in opts.item + && opts.item.About + && typeof opts.item.About === 'object' + && 'icon' in opts.item.About + && opts.item.About.icon) { + opts.item.About.icon = image.transformImage(opts.item.About.icon); + } + // icon menu item icon + if ('icon' in opts && opts.icon) { + opts.icon = image.transformImage(opts.icon); + } + // submenu items + if ('items' in opts && opts.items) { + function prepareItem(i) { + var _a; + if ('rid' in i) { + return [i.rid, i.kind]; + } + if ('item' in i && typeof i.item === 'object' && ((_a = i.item.About) === null || _a === void 0 ? void 0 : _a.icon)) { + i.item.About.icon = image.transformImage(i.item.About.icon); + } + if ('icon' in i && i.icon) { + i.icon = image.transformImage(i.icon); + } + if ('items' in i && i.items) { + // @ts-expect-error the `prepareItem` return doesn't exactly match + // this is fine, because the difference is in `[number, string]` variant + i.items = i.items.map(prepareItem); + } + return injectChannel(i); + } + // @ts-expect-error the `prepareItem` return doesn't exactly match + // this is fine, because the difference is in `[number, string]` variant + opts.items = opts.items.map(prepareItem); + } + } + return core.invoke('plugin:menu|new', { + kind, + options: opts, + handler + }); +} +class MenuItemBase extends core.Resource { + /** The id of this item. */ + get id() { + return tslib_es6.__classPrivateFieldGet(this, _MenuItemBase_id, "f"); + } + /** @ignore */ + get kind() { + return tslib_es6.__classPrivateFieldGet(this, _MenuItemBase_kind, "f"); + } + /** @ignore */ + constructor(rid, id, kind) { + super(rid); + /** @ignore */ + _MenuItemBase_id.set(this, void 0); + /** @ignore */ + _MenuItemBase_kind.set(this, void 0); + tslib_es6.__classPrivateFieldSet(this, _MenuItemBase_id, id, "f"); + tslib_es6.__classPrivateFieldSet(this, _MenuItemBase_kind, kind, "f"); + } +} +_MenuItemBase_id = new WeakMap(), _MenuItemBase_kind = new WeakMap(); + +exports.MenuItemBase = MenuItemBase; +exports.newMenu = newMenu; diff --git a/node_modules/@tauri-apps/api/menu/base.d.ts b/node_modules/@tauri-apps/api/menu/base.d.ts new file mode 100644 index 0000000..ce3a985 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/base.d.ts @@ -0,0 +1,18 @@ +import { Resource } from '../core'; +import { CheckMenuItemOptions } from './checkMenuItem'; +import { IconMenuItemOptions } from './iconMenuItem'; +import { MenuOptions } from './menu'; +import { MenuItemOptions } from './menuItem'; +import { PredefinedMenuItemOptions } from './predefinedMenuItem'; +import { SubmenuOptions } from './submenu'; +export type ItemKind = 'MenuItem' | 'Predefined' | 'Check' | 'Icon' | 'Submenu' | 'Menu'; +export declare function newMenu(kind: ItemKind, opts?: MenuOptions | MenuItemOptions | SubmenuOptions | PredefinedMenuItemOptions | CheckMenuItemOptions | IconMenuItemOptions): Promise<[number, string]>; +export declare class MenuItemBase extends Resource { + #private; + /** The id of this item. */ + get id(): string; + /** @ignore */ + get kind(): string; + /** @ignore */ + protected constructor(rid: number, id: string, kind: ItemKind); +} diff --git a/node_modules/@tauri-apps/api/menu/base.js b/node_modules/@tauri-apps/api/menu/base.js new file mode 100644 index 0000000..d59637a --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/base.js @@ -0,0 +1,97 @@ +import { __classPrivateFieldGet, __classPrivateFieldSet } from '../external/tslib/tslib.es6.js'; +import { Resource, Channel, invoke } from '../core.js'; +import { transformImage } from '../image.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +var _MenuItemBase_id, _MenuItemBase_kind; +function injectChannel(i) { + var _a; + if ('items' in i) { + i.items = (_a = i.items) === null || _a === void 0 ? void 0 : _a.map((item) => 'rid' in item ? item : injectChannel(item)); + } + else if ('action' in i && i.action) { + const handler = new Channel(); + handler.onmessage = i.action; + delete i.action; + return { ...i, handler }; + } + return i; +} +async function newMenu(kind, opts) { + const handler = new Channel(); + if (opts && typeof opts === 'object') { + if ('action' in opts && opts.action) { + handler.onmessage = opts.action; + delete opts.action; + } + // about predefined menu item icon + if ('item' in opts + && opts.item + && typeof opts.item === 'object' + && 'About' in opts.item + && opts.item.About + && typeof opts.item.About === 'object' + && 'icon' in opts.item.About + && opts.item.About.icon) { + opts.item.About.icon = transformImage(opts.item.About.icon); + } + // icon menu item icon + if ('icon' in opts && opts.icon) { + opts.icon = transformImage(opts.icon); + } + // submenu items + if ('items' in opts && opts.items) { + function prepareItem(i) { + var _a; + if ('rid' in i) { + return [i.rid, i.kind]; + } + if ('item' in i && typeof i.item === 'object' && ((_a = i.item.About) === null || _a === void 0 ? void 0 : _a.icon)) { + i.item.About.icon = transformImage(i.item.About.icon); + } + if ('icon' in i && i.icon) { + i.icon = transformImage(i.icon); + } + if ('items' in i && i.items) { + // @ts-expect-error the `prepareItem` return doesn't exactly match + // this is fine, because the difference is in `[number, string]` variant + i.items = i.items.map(prepareItem); + } + return injectChannel(i); + } + // @ts-expect-error the `prepareItem` return doesn't exactly match + // this is fine, because the difference is in `[number, string]` variant + opts.items = opts.items.map(prepareItem); + } + } + return invoke('plugin:menu|new', { + kind, + options: opts, + handler + }); +} +class MenuItemBase extends Resource { + /** The id of this item. */ + get id() { + return __classPrivateFieldGet(this, _MenuItemBase_id, "f"); + } + /** @ignore */ + get kind() { + return __classPrivateFieldGet(this, _MenuItemBase_kind, "f"); + } + /** @ignore */ + constructor(rid, id, kind) { + super(rid); + /** @ignore */ + _MenuItemBase_id.set(this, void 0); + /** @ignore */ + _MenuItemBase_kind.set(this, void 0); + __classPrivateFieldSet(this, _MenuItemBase_id, id, "f"); + __classPrivateFieldSet(this, _MenuItemBase_kind, kind, "f"); + } +} +_MenuItemBase_id = new WeakMap(), _MenuItemBase_kind = new WeakMap(); + +export { MenuItemBase, newMenu }; diff --git a/node_modules/@tauri-apps/api/menu/checkMenuItem.cjs b/node_modules/@tauri-apps/api/menu/checkMenuItem.cjs new file mode 100644 index 0000000..469b53f --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/checkMenuItem.cjs @@ -0,0 +1,68 @@ +'use strict'; + +var base = require('./base.cjs'); +var core = require('../core.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * A check menu item inside a {@linkcode Menu} or {@linkcode Submenu} + * and usually contains a text and a check mark or a similar toggle + * that corresponds to a checked and unchecked states. + */ +class CheckMenuItem extends base.MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Check'); + } + /** Create a new check menu item. */ + static async new(opts) { + return base.newMenu('Check', opts).then(([rid, id]) => new CheckMenuItem(rid, id)); + } + /** Returns the text of this check menu item. */ + async text() { + return core.invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this check menu item. */ + async setText(text) { + return core.invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } + /** Returns whether this check menu item is enabled or not. */ + async isEnabled() { + return core.invoke('plugin:menu|is_enabled', { rid: this.rid, kind: this.kind }); + } + /** Sets whether this check menu item is enabled or not. */ + async setEnabled(enabled) { + return core.invoke('plugin:menu|set_enabled', { + rid: this.rid, + kind: this.kind, + enabled + }); + } + /** Sets the accelerator for this check menu item. */ + async setAccelerator(accelerator) { + return core.invoke('plugin:menu|set_accelerator', { + rid: this.rid, + kind: this.kind, + accelerator + }); + } + /** Returns whether this check menu item is checked or not. */ + async isChecked() { + return core.invoke('plugin:menu|is_checked', { rid: this.rid }); + } + /** Sets whether this check menu item is checked or not. */ + async setChecked(checked) { + return core.invoke('plugin:menu|set_checked', { + rid: this.rid, + checked + }); + } +} + +exports.CheckMenuItem = CheckMenuItem; diff --git a/node_modules/@tauri-apps/api/menu/checkMenuItem.d.ts b/node_modules/@tauri-apps/api/menu/checkMenuItem.d.ts new file mode 100644 index 0000000..ec4aa4b --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/checkMenuItem.d.ts @@ -0,0 +1,32 @@ +import { MenuItemBase } from './base'; +import { type MenuItemOptions } from '../menu'; +/** Options for creating a new check menu item. */ +export interface CheckMenuItemOptions extends MenuItemOptions { + /** Whether the new check menu item is enabled or not. */ + checked?: boolean; +} +/** + * A check menu item inside a {@linkcode Menu} or {@linkcode Submenu} + * and usually contains a text and a check mark or a similar toggle + * that corresponds to a checked and unchecked states. + */ +export declare class CheckMenuItem extends MenuItemBase { + /** @ignore */ + protected constructor(rid: number, id: string); + /** Create a new check menu item. */ + static new(opts: CheckMenuItemOptions): Promise; + /** Returns the text of this check menu item. */ + text(): Promise; + /** Sets the text for this check menu item. */ + setText(text: string): Promise; + /** Returns whether this check menu item is enabled or not. */ + isEnabled(): Promise; + /** Sets whether this check menu item is enabled or not. */ + setEnabled(enabled: boolean): Promise; + /** Sets the accelerator for this check menu item. */ + setAccelerator(accelerator: string | null): Promise; + /** Returns whether this check menu item is checked or not. */ + isChecked(): Promise; + /** Sets whether this check menu item is checked or not. */ + setChecked(checked: boolean): Promise; +} diff --git a/node_modules/@tauri-apps/api/menu/checkMenuItem.js b/node_modules/@tauri-apps/api/menu/checkMenuItem.js new file mode 100644 index 0000000..84c4774 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/checkMenuItem.js @@ -0,0 +1,66 @@ +import { MenuItemBase, newMenu } from './base.js'; +import { invoke } from '../core.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * A check menu item inside a {@linkcode Menu} or {@linkcode Submenu} + * and usually contains a text and a check mark or a similar toggle + * that corresponds to a checked and unchecked states. + */ +class CheckMenuItem extends MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Check'); + } + /** Create a new check menu item. */ + static async new(opts) { + return newMenu('Check', opts).then(([rid, id]) => new CheckMenuItem(rid, id)); + } + /** Returns the text of this check menu item. */ + async text() { + return invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this check menu item. */ + async setText(text) { + return invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } + /** Returns whether this check menu item is enabled or not. */ + async isEnabled() { + return invoke('plugin:menu|is_enabled', { rid: this.rid, kind: this.kind }); + } + /** Sets whether this check menu item is enabled or not. */ + async setEnabled(enabled) { + return invoke('plugin:menu|set_enabled', { + rid: this.rid, + kind: this.kind, + enabled + }); + } + /** Sets the accelerator for this check menu item. */ + async setAccelerator(accelerator) { + return invoke('plugin:menu|set_accelerator', { + rid: this.rid, + kind: this.kind, + accelerator + }); + } + /** Returns whether this check menu item is checked or not. */ + async isChecked() { + return invoke('plugin:menu|is_checked', { rid: this.rid }); + } + /** Sets whether this check menu item is checked or not. */ + async setChecked(checked) { + return invoke('plugin:menu|set_checked', { + rid: this.rid, + checked + }); + } +} + +export { CheckMenuItem }; diff --git a/node_modules/@tauri-apps/api/menu/iconMenuItem.cjs b/node_modules/@tauri-apps/api/menu/iconMenuItem.cjs new file mode 100644 index 0000000..de98793 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/iconMenuItem.cjs @@ -0,0 +1,186 @@ +'use strict'; + +var base = require('./base.cjs'); +var core = require('../core.cjs'); +var image = require('../image.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * A native Icon to be used for the menu item + * + * #### Platform-specific: + * + * - **Windows / Linux**: Unsupported. + */ +exports.NativeIcon = void 0; +(function (NativeIcon) { + /** An add item template image. */ + NativeIcon["Add"] = "Add"; + /** Advanced preferences toolbar icon for the preferences window. */ + NativeIcon["Advanced"] = "Advanced"; + /** A Bluetooth template image. */ + NativeIcon["Bluetooth"] = "Bluetooth"; + /** Bookmarks image suitable for a template. */ + NativeIcon["Bookmarks"] = "Bookmarks"; + /** A caution image. */ + NativeIcon["Caution"] = "Caution"; + /** A color panel toolbar icon. */ + NativeIcon["ColorPanel"] = "ColorPanel"; + /** A column view mode template image. */ + NativeIcon["ColumnView"] = "ColumnView"; + /** A computer icon. */ + NativeIcon["Computer"] = "Computer"; + /** An enter full-screen mode template image. */ + NativeIcon["EnterFullScreen"] = "EnterFullScreen"; + /** Permissions for all users. */ + NativeIcon["Everyone"] = "Everyone"; + /** An exit full-screen mode template image. */ + NativeIcon["ExitFullScreen"] = "ExitFullScreen"; + /** A cover flow view mode template image. */ + NativeIcon["FlowView"] = "FlowView"; + /** A folder image. */ + NativeIcon["Folder"] = "Folder"; + /** A burnable folder icon. */ + NativeIcon["FolderBurnable"] = "FolderBurnable"; + /** A smart folder icon. */ + NativeIcon["FolderSmart"] = "FolderSmart"; + /** A link template image. */ + NativeIcon["FollowLinkFreestanding"] = "FollowLinkFreestanding"; + /** A font panel toolbar icon. */ + NativeIcon["FontPanel"] = "FontPanel"; + /** A `go back` template image. */ + NativeIcon["GoLeft"] = "GoLeft"; + /** A `go forward` template image. */ + NativeIcon["GoRight"] = "GoRight"; + /** Home image suitable for a template. */ + NativeIcon["Home"] = "Home"; + /** An iChat Theater template image. */ + NativeIcon["IChatTheater"] = "IChatTheater"; + /** An icon view mode template image. */ + NativeIcon["IconView"] = "IconView"; + /** An information toolbar icon. */ + NativeIcon["Info"] = "Info"; + /** A template image used to denote invalid data. */ + NativeIcon["InvalidDataFreestanding"] = "InvalidDataFreestanding"; + /** A generic left-facing triangle template image. */ + NativeIcon["LeftFacingTriangle"] = "LeftFacingTriangle"; + /** A list view mode template image. */ + NativeIcon["ListView"] = "ListView"; + /** A locked padlock template image. */ + NativeIcon["LockLocked"] = "LockLocked"; + /** An unlocked padlock template image. */ + NativeIcon["LockUnlocked"] = "LockUnlocked"; + /** A horizontal dash, for use in menus. */ + NativeIcon["MenuMixedState"] = "MenuMixedState"; + /** A check mark template image, for use in menus. */ + NativeIcon["MenuOnState"] = "MenuOnState"; + /** A MobileMe icon. */ + NativeIcon["MobileMe"] = "MobileMe"; + /** A drag image for multiple items. */ + NativeIcon["MultipleDocuments"] = "MultipleDocuments"; + /** A network icon. */ + NativeIcon["Network"] = "Network"; + /** A path button template image. */ + NativeIcon["Path"] = "Path"; + /** General preferences toolbar icon for the preferences window. */ + NativeIcon["PreferencesGeneral"] = "PreferencesGeneral"; + /** A Quick Look template image. */ + NativeIcon["QuickLook"] = "QuickLook"; + /** A refresh template image. */ + NativeIcon["RefreshFreestanding"] = "RefreshFreestanding"; + /** A refresh template image. */ + NativeIcon["Refresh"] = "Refresh"; + /** A remove item template image. */ + NativeIcon["Remove"] = "Remove"; + /** A reveal contents template image. */ + NativeIcon["RevealFreestanding"] = "RevealFreestanding"; + /** A generic right-facing triangle template image. */ + NativeIcon["RightFacingTriangle"] = "RightFacingTriangle"; + /** A share view template image. */ + NativeIcon["Share"] = "Share"; + /** A slideshow template image. */ + NativeIcon["Slideshow"] = "Slideshow"; + /** A badge for a `smart` item. */ + NativeIcon["SmartBadge"] = "SmartBadge"; + /** Small green indicator, similar to iChat's available image. */ + NativeIcon["StatusAvailable"] = "StatusAvailable"; + /** Small clear indicator. */ + NativeIcon["StatusNone"] = "StatusNone"; + /** Small yellow indicator, similar to iChat's idle image. */ + NativeIcon["StatusPartiallyAvailable"] = "StatusPartiallyAvailable"; + /** Small red indicator, similar to iChat's unavailable image. */ + NativeIcon["StatusUnavailable"] = "StatusUnavailable"; + /** A stop progress template image. */ + NativeIcon["StopProgressFreestanding"] = "StopProgressFreestanding"; + /** A stop progress button template image. */ + NativeIcon["StopProgress"] = "StopProgress"; + /** An image of the empty trash can. */ + NativeIcon["TrashEmpty"] = "TrashEmpty"; + /** An image of the full trash can. */ + NativeIcon["TrashFull"] = "TrashFull"; + /** Permissions for a single user. */ + NativeIcon["User"] = "User"; + /** User account toolbar icon for the preferences window. */ + NativeIcon["UserAccounts"] = "UserAccounts"; + /** Permissions for a group of users. */ + NativeIcon["UserGroup"] = "UserGroup"; + /** Permissions for guests. */ + NativeIcon["UserGuest"] = "UserGuest"; +})(exports.NativeIcon || (exports.NativeIcon = {})); +/** + * An icon menu item inside a {@linkcode Menu} or {@linkcode Submenu} + * and usually contains an icon and a text. + */ +class IconMenuItem extends base.MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Icon'); + } + /** Create a new icon menu item. */ + static async new(opts) { + return base.newMenu('Icon', opts).then(([rid, id]) => new IconMenuItem(rid, id)); + } + /** Returns the text of this icon menu item. */ + async text() { + return core.invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this icon menu item. */ + async setText(text) { + return core.invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } + /** Returns whether this icon menu item is enabled or not. */ + async isEnabled() { + return core.invoke('plugin:menu|is_enabled', { rid: this.rid, kind: this.kind }); + } + /** Sets whether this icon menu item is enabled or not. */ + async setEnabled(enabled) { + return core.invoke('plugin:menu|set_enabled', { + rid: this.rid, + kind: this.kind, + enabled + }); + } + /** Sets the accelerator for this icon menu item. */ + async setAccelerator(accelerator) { + return core.invoke('plugin:menu|set_accelerator', { + rid: this.rid, + kind: this.kind, + accelerator + }); + } + /** Sets an icon for this icon menu item */ + async setIcon(icon) { + return core.invoke('plugin:menu|set_icon', { + rid: this.rid, + icon: image.transformImage(icon) + }); + } +} + +exports.IconMenuItem = IconMenuItem; diff --git a/node_modules/@tauri-apps/api/menu/iconMenuItem.d.ts b/node_modules/@tauri-apps/api/menu/iconMenuItem.d.ts new file mode 100644 index 0000000..d64fafa --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/iconMenuItem.d.ts @@ -0,0 +1,160 @@ +import { MenuItemBase } from './base'; +import { type MenuItemOptions } from '../menu'; +import { Image } from '../image'; +/** + * A native Icon to be used for the menu item + * + * #### Platform-specific: + * + * - **Windows / Linux**: Unsupported. + */ +export declare enum NativeIcon { + /** An add item template image. */ + Add = "Add", + /** Advanced preferences toolbar icon for the preferences window. */ + Advanced = "Advanced", + /** A Bluetooth template image. */ + Bluetooth = "Bluetooth", + /** Bookmarks image suitable for a template. */ + Bookmarks = "Bookmarks", + /** A caution image. */ + Caution = "Caution", + /** A color panel toolbar icon. */ + ColorPanel = "ColorPanel", + /** A column view mode template image. */ + ColumnView = "ColumnView", + /** A computer icon. */ + Computer = "Computer", + /** An enter full-screen mode template image. */ + EnterFullScreen = "EnterFullScreen", + /** Permissions for all users. */ + Everyone = "Everyone", + /** An exit full-screen mode template image. */ + ExitFullScreen = "ExitFullScreen", + /** A cover flow view mode template image. */ + FlowView = "FlowView", + /** A folder image. */ + Folder = "Folder", + /** A burnable folder icon. */ + FolderBurnable = "FolderBurnable", + /** A smart folder icon. */ + FolderSmart = "FolderSmart", + /** A link template image. */ + FollowLinkFreestanding = "FollowLinkFreestanding", + /** A font panel toolbar icon. */ + FontPanel = "FontPanel", + /** A `go back` template image. */ + GoLeft = "GoLeft", + /** A `go forward` template image. */ + GoRight = "GoRight", + /** Home image suitable for a template. */ + Home = "Home", + /** An iChat Theater template image. */ + IChatTheater = "IChatTheater", + /** An icon view mode template image. */ + IconView = "IconView", + /** An information toolbar icon. */ + Info = "Info", + /** A template image used to denote invalid data. */ + InvalidDataFreestanding = "InvalidDataFreestanding", + /** A generic left-facing triangle template image. */ + LeftFacingTriangle = "LeftFacingTriangle", + /** A list view mode template image. */ + ListView = "ListView", + /** A locked padlock template image. */ + LockLocked = "LockLocked", + /** An unlocked padlock template image. */ + LockUnlocked = "LockUnlocked", + /** A horizontal dash, for use in menus. */ + MenuMixedState = "MenuMixedState", + /** A check mark template image, for use in menus. */ + MenuOnState = "MenuOnState", + /** A MobileMe icon. */ + MobileMe = "MobileMe", + /** A drag image for multiple items. */ + MultipleDocuments = "MultipleDocuments", + /** A network icon. */ + Network = "Network", + /** A path button template image. */ + Path = "Path", + /** General preferences toolbar icon for the preferences window. */ + PreferencesGeneral = "PreferencesGeneral", + /** A Quick Look template image. */ + QuickLook = "QuickLook", + /** A refresh template image. */ + RefreshFreestanding = "RefreshFreestanding", + /** A refresh template image. */ + Refresh = "Refresh", + /** A remove item template image. */ + Remove = "Remove", + /** A reveal contents template image. */ + RevealFreestanding = "RevealFreestanding", + /** A generic right-facing triangle template image. */ + RightFacingTriangle = "RightFacingTriangle", + /** A share view template image. */ + Share = "Share", + /** A slideshow template image. */ + Slideshow = "Slideshow", + /** A badge for a `smart` item. */ + SmartBadge = "SmartBadge", + /** Small green indicator, similar to iChat's available image. */ + StatusAvailable = "StatusAvailable", + /** Small clear indicator. */ + StatusNone = "StatusNone", + /** Small yellow indicator, similar to iChat's idle image. */ + StatusPartiallyAvailable = "StatusPartiallyAvailable", + /** Small red indicator, similar to iChat's unavailable image. */ + StatusUnavailable = "StatusUnavailable", + /** A stop progress template image. */ + StopProgressFreestanding = "StopProgressFreestanding", + /** A stop progress button template image. */ + StopProgress = "StopProgress", + /** An image of the empty trash can. */ + TrashEmpty = "TrashEmpty", + /** An image of the full trash can. */ + TrashFull = "TrashFull", + /** Permissions for a single user. */ + User = "User", + /** User account toolbar icon for the preferences window. */ + UserAccounts = "UserAccounts", + /** Permissions for a group of users. */ + UserGroup = "UserGroup", + /** Permissions for guests. */ + UserGuest = "UserGuest" +} +/** Options for creating a new icon menu item. */ +export interface IconMenuItemOptions extends MenuItemOptions { + /** + * Icon to be used for the new icon menu item. + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + icon?: NativeIcon | string | Image | Uint8Array | ArrayBuffer | number[]; +} +/** + * An icon menu item inside a {@linkcode Menu} or {@linkcode Submenu} + * and usually contains an icon and a text. + */ +export declare class IconMenuItem extends MenuItemBase { + /** @ignore */ + protected constructor(rid: number, id: string); + /** Create a new icon menu item. */ + static new(opts: IconMenuItemOptions): Promise; + /** Returns the text of this icon menu item. */ + text(): Promise; + /** Sets the text for this icon menu item. */ + setText(text: string): Promise; + /** Returns whether this icon menu item is enabled or not. */ + isEnabled(): Promise; + /** Sets whether this icon menu item is enabled or not. */ + setEnabled(enabled: boolean): Promise; + /** Sets the accelerator for this icon menu item. */ + setAccelerator(accelerator: string | null): Promise; + /** Sets an icon for this icon menu item */ + setIcon(icon: NativeIcon | string | Image | Uint8Array | ArrayBuffer | number[] | null): Promise; +} diff --git a/node_modules/@tauri-apps/api/menu/iconMenuItem.js b/node_modules/@tauri-apps/api/menu/iconMenuItem.js new file mode 100644 index 0000000..643340b --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/iconMenuItem.js @@ -0,0 +1,184 @@ +import { MenuItemBase, newMenu } from './base.js'; +import { invoke } from '../core.js'; +import { transformImage } from '../image.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * A native Icon to be used for the menu item + * + * #### Platform-specific: + * + * - **Windows / Linux**: Unsupported. + */ +var NativeIcon; +(function (NativeIcon) { + /** An add item template image. */ + NativeIcon["Add"] = "Add"; + /** Advanced preferences toolbar icon for the preferences window. */ + NativeIcon["Advanced"] = "Advanced"; + /** A Bluetooth template image. */ + NativeIcon["Bluetooth"] = "Bluetooth"; + /** Bookmarks image suitable for a template. */ + NativeIcon["Bookmarks"] = "Bookmarks"; + /** A caution image. */ + NativeIcon["Caution"] = "Caution"; + /** A color panel toolbar icon. */ + NativeIcon["ColorPanel"] = "ColorPanel"; + /** A column view mode template image. */ + NativeIcon["ColumnView"] = "ColumnView"; + /** A computer icon. */ + NativeIcon["Computer"] = "Computer"; + /** An enter full-screen mode template image. */ + NativeIcon["EnterFullScreen"] = "EnterFullScreen"; + /** Permissions for all users. */ + NativeIcon["Everyone"] = "Everyone"; + /** An exit full-screen mode template image. */ + NativeIcon["ExitFullScreen"] = "ExitFullScreen"; + /** A cover flow view mode template image. */ + NativeIcon["FlowView"] = "FlowView"; + /** A folder image. */ + NativeIcon["Folder"] = "Folder"; + /** A burnable folder icon. */ + NativeIcon["FolderBurnable"] = "FolderBurnable"; + /** A smart folder icon. */ + NativeIcon["FolderSmart"] = "FolderSmart"; + /** A link template image. */ + NativeIcon["FollowLinkFreestanding"] = "FollowLinkFreestanding"; + /** A font panel toolbar icon. */ + NativeIcon["FontPanel"] = "FontPanel"; + /** A `go back` template image. */ + NativeIcon["GoLeft"] = "GoLeft"; + /** A `go forward` template image. */ + NativeIcon["GoRight"] = "GoRight"; + /** Home image suitable for a template. */ + NativeIcon["Home"] = "Home"; + /** An iChat Theater template image. */ + NativeIcon["IChatTheater"] = "IChatTheater"; + /** An icon view mode template image. */ + NativeIcon["IconView"] = "IconView"; + /** An information toolbar icon. */ + NativeIcon["Info"] = "Info"; + /** A template image used to denote invalid data. */ + NativeIcon["InvalidDataFreestanding"] = "InvalidDataFreestanding"; + /** A generic left-facing triangle template image. */ + NativeIcon["LeftFacingTriangle"] = "LeftFacingTriangle"; + /** A list view mode template image. */ + NativeIcon["ListView"] = "ListView"; + /** A locked padlock template image. */ + NativeIcon["LockLocked"] = "LockLocked"; + /** An unlocked padlock template image. */ + NativeIcon["LockUnlocked"] = "LockUnlocked"; + /** A horizontal dash, for use in menus. */ + NativeIcon["MenuMixedState"] = "MenuMixedState"; + /** A check mark template image, for use in menus. */ + NativeIcon["MenuOnState"] = "MenuOnState"; + /** A MobileMe icon. */ + NativeIcon["MobileMe"] = "MobileMe"; + /** A drag image for multiple items. */ + NativeIcon["MultipleDocuments"] = "MultipleDocuments"; + /** A network icon. */ + NativeIcon["Network"] = "Network"; + /** A path button template image. */ + NativeIcon["Path"] = "Path"; + /** General preferences toolbar icon for the preferences window. */ + NativeIcon["PreferencesGeneral"] = "PreferencesGeneral"; + /** A Quick Look template image. */ + NativeIcon["QuickLook"] = "QuickLook"; + /** A refresh template image. */ + NativeIcon["RefreshFreestanding"] = "RefreshFreestanding"; + /** A refresh template image. */ + NativeIcon["Refresh"] = "Refresh"; + /** A remove item template image. */ + NativeIcon["Remove"] = "Remove"; + /** A reveal contents template image. */ + NativeIcon["RevealFreestanding"] = "RevealFreestanding"; + /** A generic right-facing triangle template image. */ + NativeIcon["RightFacingTriangle"] = "RightFacingTriangle"; + /** A share view template image. */ + NativeIcon["Share"] = "Share"; + /** A slideshow template image. */ + NativeIcon["Slideshow"] = "Slideshow"; + /** A badge for a `smart` item. */ + NativeIcon["SmartBadge"] = "SmartBadge"; + /** Small green indicator, similar to iChat's available image. */ + NativeIcon["StatusAvailable"] = "StatusAvailable"; + /** Small clear indicator. */ + NativeIcon["StatusNone"] = "StatusNone"; + /** Small yellow indicator, similar to iChat's idle image. */ + NativeIcon["StatusPartiallyAvailable"] = "StatusPartiallyAvailable"; + /** Small red indicator, similar to iChat's unavailable image. */ + NativeIcon["StatusUnavailable"] = "StatusUnavailable"; + /** A stop progress template image. */ + NativeIcon["StopProgressFreestanding"] = "StopProgressFreestanding"; + /** A stop progress button template image. */ + NativeIcon["StopProgress"] = "StopProgress"; + /** An image of the empty trash can. */ + NativeIcon["TrashEmpty"] = "TrashEmpty"; + /** An image of the full trash can. */ + NativeIcon["TrashFull"] = "TrashFull"; + /** Permissions for a single user. */ + NativeIcon["User"] = "User"; + /** User account toolbar icon for the preferences window. */ + NativeIcon["UserAccounts"] = "UserAccounts"; + /** Permissions for a group of users. */ + NativeIcon["UserGroup"] = "UserGroup"; + /** Permissions for guests. */ + NativeIcon["UserGuest"] = "UserGuest"; +})(NativeIcon || (NativeIcon = {})); +/** + * An icon menu item inside a {@linkcode Menu} or {@linkcode Submenu} + * and usually contains an icon and a text. + */ +class IconMenuItem extends MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Icon'); + } + /** Create a new icon menu item. */ + static async new(opts) { + return newMenu('Icon', opts).then(([rid, id]) => new IconMenuItem(rid, id)); + } + /** Returns the text of this icon menu item. */ + async text() { + return invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this icon menu item. */ + async setText(text) { + return invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } + /** Returns whether this icon menu item is enabled or not. */ + async isEnabled() { + return invoke('plugin:menu|is_enabled', { rid: this.rid, kind: this.kind }); + } + /** Sets whether this icon menu item is enabled or not. */ + async setEnabled(enabled) { + return invoke('plugin:menu|set_enabled', { + rid: this.rid, + kind: this.kind, + enabled + }); + } + /** Sets the accelerator for this icon menu item. */ + async setAccelerator(accelerator) { + return invoke('plugin:menu|set_accelerator', { + rid: this.rid, + kind: this.kind, + accelerator + }); + } + /** Sets an icon for this icon menu item */ + async setIcon(icon) { + return invoke('plugin:menu|set_icon', { + rid: this.rid, + icon: transformImage(icon) + }); + } +} + +export { IconMenuItem, NativeIcon }; diff --git a/node_modules/@tauri-apps/api/menu/menu.cjs b/node_modules/@tauri-apps/api/menu/menu.cjs new file mode 100644 index 0000000..f0ad7be --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/menu.cjs @@ -0,0 +1,147 @@ +'use strict'; + +var submenu = require('./submenu.cjs'); +var dpi = require('../dpi.cjs'); +var core = require('../core.cjs'); +var base = require('./base.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** A type that is either a menu bar on the window + * on Windows and Linux or as a global menu in the menubar on macOS. + * + * #### Platform-specific: + * + * - **macOS**: if using {@linkcode Menu} for the global menubar, it can only contain {@linkcode Submenu}s. + */ +class Menu extends base.MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Menu'); + } + /** Create a new menu. */ + static async new(opts) { + return base.newMenu('Menu', opts).then(([rid, id]) => new Menu(rid, id)); + } + /** Create a default menu. */ + static async default() { + return core.invoke('plugin:menu|create_default').then(([rid, id]) => new Menu(rid, id)); + } + /** + * Add a menu item to the end of this menu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async append(items) { + return core.invoke('plugin:menu|append', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i) + }); + } + /** + * Add a menu item to the beginning of this menu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async prepend(items) { + return core.invoke('plugin:menu|prepend', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i) + }); + } + /** + * Add a menu item to the specified position in this menu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async insert(items, position) { + return core.invoke('plugin:menu|insert', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i), + position + }); + } + /** Remove a menu item from this menu. */ + async remove(item) { + return core.invoke('plugin:menu|remove', { + rid: this.rid, + kind: this.kind, + item: [item.rid, item.kind] + }); + } + /** Remove a menu item from this menu at the specified position. */ + async removeAt(position) { + return core.invoke('plugin:menu|remove_at', { + rid: this.rid, + kind: this.kind, + position + }).then(submenu.itemFromKind); + } + /** Returns a list of menu items that has been added to this menu. */ + async items() { + return core.invoke('plugin:menu|items', { + rid: this.rid, + kind: this.kind + }).then((i) => i.map(submenu.itemFromKind)); + } + /** Retrieves the menu item matching the given identifier. */ + async get(id) { + return core.invoke('plugin:menu|get', { + rid: this.rid, + kind: this.kind, + id + }).then((r) => (r ? submenu.itemFromKind(r) : null)); + } + /** + * Popup this menu as a context menu on the specified window. + * + * If the position, is provided, it is relative to the window's top-left corner. + */ + async popup(at, window) { + var _a; + return core.invoke('plugin:menu|popup', { + rid: this.rid, + kind: this.kind, + window: (_a = window === null || window === void 0 ? void 0 : window.label) !== null && _a !== void 0 ? _a : null, + at: at instanceof dpi.Position ? at : at ? new dpi.Position(at) : null + }); + } + /** + * Sets the app-wide menu and returns the previous one. + * + * If a window was not created with an explicit menu or had one set explicitly, + * this menu will be assigned to it. + */ + async setAsAppMenu() { + return core.invoke('plugin:menu|set_as_app_menu', { + rid: this.rid + }).then((r) => (r ? new Menu(r[0], r[1]) : null)); + } + /** + * Sets the window menu and returns the previous one. + * + * #### Platform-specific: + * + * - **macOS:** Unsupported. The menu on macOS is app-wide and not specific to one + * window, if you need to set it, use {@linkcode Menu.setAsAppMenu} instead. + */ + async setAsWindowMenu(window) { + var _a; + return core.invoke('plugin:menu|set_as_window_menu', { + rid: this.rid, + window: (_a = window === null || window === void 0 ? void 0 : window.label) !== null && _a !== void 0 ? _a : null + }).then((r) => (r ? new Menu(r[0], r[1]) : null)); + } +} + +exports.Menu = Menu; diff --git a/node_modules/@tauri-apps/api/menu/menu.d.ts b/node_modules/@tauri-apps/api/menu/menu.d.ts new file mode 100644 index 0000000..96d7248 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/menu.d.ts @@ -0,0 +1,85 @@ +import { MenuItemOptions, SubmenuOptions, IconMenuItemOptions, PredefinedMenuItemOptions, CheckMenuItemOptions } from '../menu'; +import { MenuItem } from './menuItem'; +import { CheckMenuItem } from './checkMenuItem'; +import { IconMenuItem } from './iconMenuItem'; +import { PredefinedMenuItem } from './predefinedMenuItem'; +import { Submenu } from './submenu'; +import { type LogicalPosition, PhysicalPosition, Position } from '../dpi'; +import { type Window } from '../window'; +import { MenuItemBase } from './base'; +/** Options for creating a new menu. */ +export interface MenuOptions { + /** Specify an id to use for the new menu. */ + id?: string; + /** List of items to add to the new menu. */ + items?: Array; +} +/** A type that is either a menu bar on the window + * on Windows and Linux or as a global menu in the menubar on macOS. + * + * #### Platform-specific: + * + * - **macOS**: if using {@linkcode Menu} for the global menubar, it can only contain {@linkcode Submenu}s. + */ +export declare class Menu extends MenuItemBase { + /** @ignore */ + protected constructor(rid: number, id: string); + /** Create a new menu. */ + static new(opts?: MenuOptions): Promise; + /** Create a default menu. */ + static default(): Promise; + /** + * Add a menu item to the end of this menu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + append(items: T | T[]): Promise; + /** + * Add a menu item to the beginning of this menu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + prepend(items: T | T[]): Promise; + /** + * Add a menu item to the specified position in this menu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + insert(items: T | T[], position: number): Promise; + /** Remove a menu item from this menu. */ + remove(item: Submenu | MenuItem | PredefinedMenuItem | CheckMenuItem | IconMenuItem): Promise; + /** Remove a menu item from this menu at the specified position. */ + removeAt(position: number): Promise; + /** Returns a list of menu items that has been added to this menu. */ + items(): Promise>; + /** Retrieves the menu item matching the given identifier. */ + get(id: string): Promise; + /** + * Popup this menu as a context menu on the specified window. + * + * If the position, is provided, it is relative to the window's top-left corner. + */ + popup(at?: PhysicalPosition | LogicalPosition | Position, window?: Window): Promise; + /** + * Sets the app-wide menu and returns the previous one. + * + * If a window was not created with an explicit menu or had one set explicitly, + * this menu will be assigned to it. + */ + setAsAppMenu(): Promise; + /** + * Sets the window menu and returns the previous one. + * + * #### Platform-specific: + * + * - **macOS:** Unsupported. The menu on macOS is app-wide and not specific to one + * window, if you need to set it, use {@linkcode Menu.setAsAppMenu} instead. + */ + setAsWindowMenu(window?: Window): Promise; +} diff --git a/node_modules/@tauri-apps/api/menu/menu.js b/node_modules/@tauri-apps/api/menu/menu.js new file mode 100644 index 0000000..2e8db80 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/menu.js @@ -0,0 +1,145 @@ +import { itemFromKind } from './submenu.js'; +import { Position } from '../dpi.js'; +import { invoke } from '../core.js'; +import { MenuItemBase, newMenu } from './base.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** A type that is either a menu bar on the window + * on Windows and Linux or as a global menu in the menubar on macOS. + * + * #### Platform-specific: + * + * - **macOS**: if using {@linkcode Menu} for the global menubar, it can only contain {@linkcode Submenu}s. + */ +class Menu extends MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Menu'); + } + /** Create a new menu. */ + static async new(opts) { + return newMenu('Menu', opts).then(([rid, id]) => new Menu(rid, id)); + } + /** Create a default menu. */ + static async default() { + return invoke('plugin:menu|create_default').then(([rid, id]) => new Menu(rid, id)); + } + /** + * Add a menu item to the end of this menu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async append(items) { + return invoke('plugin:menu|append', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i) + }); + } + /** + * Add a menu item to the beginning of this menu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async prepend(items) { + return invoke('plugin:menu|prepend', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i) + }); + } + /** + * Add a menu item to the specified position in this menu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async insert(items, position) { + return invoke('plugin:menu|insert', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i), + position + }); + } + /** Remove a menu item from this menu. */ + async remove(item) { + return invoke('plugin:menu|remove', { + rid: this.rid, + kind: this.kind, + item: [item.rid, item.kind] + }); + } + /** Remove a menu item from this menu at the specified position. */ + async removeAt(position) { + return invoke('plugin:menu|remove_at', { + rid: this.rid, + kind: this.kind, + position + }).then(itemFromKind); + } + /** Returns a list of menu items that has been added to this menu. */ + async items() { + return invoke('plugin:menu|items', { + rid: this.rid, + kind: this.kind + }).then((i) => i.map(itemFromKind)); + } + /** Retrieves the menu item matching the given identifier. */ + async get(id) { + return invoke('plugin:menu|get', { + rid: this.rid, + kind: this.kind, + id + }).then((r) => (r ? itemFromKind(r) : null)); + } + /** + * Popup this menu as a context menu on the specified window. + * + * If the position, is provided, it is relative to the window's top-left corner. + */ + async popup(at, window) { + var _a; + return invoke('plugin:menu|popup', { + rid: this.rid, + kind: this.kind, + window: (_a = window === null || window === void 0 ? void 0 : window.label) !== null && _a !== void 0 ? _a : null, + at: at instanceof Position ? at : at ? new Position(at) : null + }); + } + /** + * Sets the app-wide menu and returns the previous one. + * + * If a window was not created with an explicit menu or had one set explicitly, + * this menu will be assigned to it. + */ + async setAsAppMenu() { + return invoke('plugin:menu|set_as_app_menu', { + rid: this.rid + }).then((r) => (r ? new Menu(r[0], r[1]) : null)); + } + /** + * Sets the window menu and returns the previous one. + * + * #### Platform-specific: + * + * - **macOS:** Unsupported. The menu on macOS is app-wide and not specific to one + * window, if you need to set it, use {@linkcode Menu.setAsAppMenu} instead. + */ + async setAsWindowMenu(window) { + var _a; + return invoke('plugin:menu|set_as_window_menu', { + rid: this.rid, + window: (_a = window === null || window === void 0 ? void 0 : window.label) !== null && _a !== void 0 ? _a : null + }).then((r) => (r ? new Menu(r[0], r[1]) : null)); + } +} + +export { Menu }; diff --git a/node_modules/@tauri-apps/api/menu/menuItem.cjs b/node_modules/@tauri-apps/api/menu/menuItem.cjs new file mode 100644 index 0000000..c16526f --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/menuItem.cjs @@ -0,0 +1,53 @@ +'use strict'; + +var base = require('./base.cjs'); +var core = require('../core.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** A menu item inside a {@linkcode Menu} or {@linkcode Submenu} and contains only text. */ +class MenuItem extends base.MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'MenuItem'); + } + /** Create a new menu item. */ + static async new(opts) { + return base.newMenu('MenuItem', opts).then(([rid, id]) => new MenuItem(rid, id)); + } + /** Returns the text of this menu item. */ + async text() { + return core.invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this menu item. */ + async setText(text) { + return core.invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } + /** Returns whether this menu item is enabled or not. */ + async isEnabled() { + return core.invoke('plugin:menu|is_enabled', { rid: this.rid, kind: this.kind }); + } + /** Sets whether this menu item is enabled or not. */ + async setEnabled(enabled) { + return core.invoke('plugin:menu|set_enabled', { + rid: this.rid, + kind: this.kind, + enabled + }); + } + /** Sets the accelerator for this menu item. */ + async setAccelerator(accelerator) { + return core.invoke('plugin:menu|set_accelerator', { + rid: this.rid, + kind: this.kind, + accelerator + }); + } +} + +exports.MenuItem = MenuItem; diff --git a/node_modules/@tauri-apps/api/menu/menuItem.d.ts b/node_modules/@tauri-apps/api/menu/menuItem.d.ts new file mode 100644 index 0000000..b57093a --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/menuItem.d.ts @@ -0,0 +1,31 @@ +import { MenuItemBase } from './base'; +/** Options for creating a new menu item. */ +export interface MenuItemOptions { + /** Specify an id to use for the new menu item. */ + id?: string; + /** The text of the new menu item. */ + text: string; + /** Whether the new menu item is enabled or not. */ + enabled?: boolean; + /** Specify an accelerator for the new menu item. */ + accelerator?: string; + /** Specify a handler to be called when this menu item is activated. */ + action?: (id: string) => void; +} +/** A menu item inside a {@linkcode Menu} or {@linkcode Submenu} and contains only text. */ +export declare class MenuItem extends MenuItemBase { + /** @ignore */ + protected constructor(rid: number, id: string); + /** Create a new menu item. */ + static new(opts: MenuItemOptions): Promise; + /** Returns the text of this menu item. */ + text(): Promise; + /** Sets the text for this menu item. */ + setText(text: string): Promise; + /** Returns whether this menu item is enabled or not. */ + isEnabled(): Promise; + /** Sets whether this menu item is enabled or not. */ + setEnabled(enabled: boolean): Promise; + /** Sets the accelerator for this menu item. */ + setAccelerator(accelerator: string | null): Promise; +} diff --git a/node_modules/@tauri-apps/api/menu/menuItem.js b/node_modules/@tauri-apps/api/menu/menuItem.js new file mode 100644 index 0000000..098101c --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/menuItem.js @@ -0,0 +1,51 @@ +import { MenuItemBase, newMenu } from './base.js'; +import { invoke } from '../core.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** A menu item inside a {@linkcode Menu} or {@linkcode Submenu} and contains only text. */ +class MenuItem extends MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'MenuItem'); + } + /** Create a new menu item. */ + static async new(opts) { + return newMenu('MenuItem', opts).then(([rid, id]) => new MenuItem(rid, id)); + } + /** Returns the text of this menu item. */ + async text() { + return invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this menu item. */ + async setText(text) { + return invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } + /** Returns whether this menu item is enabled or not. */ + async isEnabled() { + return invoke('plugin:menu|is_enabled', { rid: this.rid, kind: this.kind }); + } + /** Sets whether this menu item is enabled or not. */ + async setEnabled(enabled) { + return invoke('plugin:menu|set_enabled', { + rid: this.rid, + kind: this.kind, + enabled + }); + } + /** Sets the accelerator for this menu item. */ + async setAccelerator(accelerator) { + return invoke('plugin:menu|set_accelerator', { + rid: this.rid, + kind: this.kind, + accelerator + }); + } +} + +export { MenuItem }; diff --git a/node_modules/@tauri-apps/api/menu/predefinedMenuItem.cjs b/node_modules/@tauri-apps/api/menu/predefinedMenuItem.cjs new file mode 100644 index 0000000..a693073 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/predefinedMenuItem.cjs @@ -0,0 +1,33 @@ +'use strict'; + +var base = require('./base.cjs'); +var core = require('../core.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** A predefined (native) menu item which has a predefined behavior by the OS or by tauri. */ +class PredefinedMenuItem extends base.MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Predefined'); + } + /** Create a new predefined menu item. */ + static async new(opts) { + return base.newMenu('Predefined', opts).then(([rid, id]) => new PredefinedMenuItem(rid, id)); + } + /** Returns the text of this predefined menu item. */ + async text() { + return core.invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this predefined menu item. */ + async setText(text) { + return core.invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } +} + +exports.PredefinedMenuItem = PredefinedMenuItem; diff --git a/node_modules/@tauri-apps/api/menu/predefinedMenuItem.d.ts b/node_modules/@tauri-apps/api/menu/predefinedMenuItem.d.ts new file mode 100644 index 0000000..b41a7cd --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/predefinedMenuItem.d.ts @@ -0,0 +1,95 @@ +import { MenuItemBase } from './base'; +import { Image } from '../image'; +/** A metadata for the about predefined menu item. */ +export interface AboutMetadata { + /** Sets the application name. */ + name?: string; + /** The application version. */ + version?: string; + /** + * The short version, e.g. "1.0". + * + * #### Platform-specific + * + * - **Windows / Linux:** Appended to the end of `version` in parentheses. + */ + shortVersion?: string; + /** + * The authors of the application. + * + * #### Platform-specific + * + * - **macOS:** Unsupported. + */ + authors?: string[]; + /** + * Application comments. + * + * #### Platform-specific + * + * - **macOS:** Unsupported. + */ + comments?: string; + /** The copyright of the application. */ + copyright?: string; + /** + * The license of the application. + * + * #### Platform-specific + * + * - **macOS:** Unsupported. + */ + license?: string; + /** + * The application website. + * + * #### Platform-specific + * + * - **macOS:** Unsupported. + */ + website?: string; + /** + * The website label. + * + * #### Platform-specific + * + * - **macOS:** Unsupported. + */ + websiteLabel?: string; + /** + * The credits. + * + * #### Platform-specific + * + * - **Windows / Linux:** Unsupported. + */ + credits?: string; + /** + * The application icon. + * + * #### Platform-specific + * + * - **Windows:** Unsupported. + */ + icon?: string | Uint8Array | ArrayBuffer | number[] | Image; +} +/** Options for creating a new predefined menu item. */ +export interface PredefinedMenuItemOptions { + /** The text of the new predefined menu item. */ + text?: string; + /** The predefined item type */ + item: 'Separator' | 'Copy' | 'Cut' | 'Paste' | 'SelectAll' | 'Undo' | 'Redo' | 'Minimize' | 'Maximize' | 'Fullscreen' | 'Hide' | 'HideOthers' | 'ShowAll' | 'CloseWindow' | 'Quit' | 'Services' | { + About: AboutMetadata | null; + }; +} +/** A predefined (native) menu item which has a predefined behavior by the OS or by tauri. */ +export declare class PredefinedMenuItem extends MenuItemBase { + /** @ignore */ + protected constructor(rid: number, id: string); + /** Create a new predefined menu item. */ + static new(opts?: PredefinedMenuItemOptions): Promise; + /** Returns the text of this predefined menu item. */ + text(): Promise; + /** Sets the text for this predefined menu item. */ + setText(text: string): Promise; +} diff --git a/node_modules/@tauri-apps/api/menu/predefinedMenuItem.js b/node_modules/@tauri-apps/api/menu/predefinedMenuItem.js new file mode 100644 index 0000000..2e86254 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/predefinedMenuItem.js @@ -0,0 +1,31 @@ +import { MenuItemBase, newMenu } from './base.js'; +import { invoke } from '../core.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** A predefined (native) menu item which has a predefined behavior by the OS or by tauri. */ +class PredefinedMenuItem extends MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Predefined'); + } + /** Create a new predefined menu item. */ + static async new(opts) { + return newMenu('Predefined', opts).then(([rid, id]) => new PredefinedMenuItem(rid, id)); + } + /** Returns the text of this predefined menu item. */ + async text() { + return invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this predefined menu item. */ + async setText(text) { + return invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } +} + +export { PredefinedMenuItem }; diff --git a/node_modules/@tauri-apps/api/menu/submenu.cjs b/node_modules/@tauri-apps/api/menu/submenu.cjs new file mode 100644 index 0000000..a1f0f5d --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/submenu.cjs @@ -0,0 +1,194 @@ +'use strict'; + +var menuItem = require('./menuItem.cjs'); +var checkMenuItem = require('./checkMenuItem.cjs'); +var iconMenuItem = require('./iconMenuItem.cjs'); +var predefinedMenuItem = require('./predefinedMenuItem.cjs'); +var core = require('../core.cjs'); +var base = require('./base.cjs'); +var dpi = require('../dpi.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** @ignore */ +function itemFromKind([rid, id, kind]) { + /* eslint-disable @typescript-eslint/no-unsafe-return */ + switch (kind) { + case 'Submenu': + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new Submenu(rid, id); + case 'Predefined': + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new predefinedMenuItem.PredefinedMenuItem(rid, id); + case 'Check': + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new checkMenuItem.CheckMenuItem(rid, id); + case 'Icon': + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new iconMenuItem.IconMenuItem(rid, id); + case 'MenuItem': + default: + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new menuItem.MenuItem(rid, id); + } + /* eslint-enable @typescript-eslint/no-unsafe-return */ +} +/** A type that is a submenu inside a {@linkcode Menu} or {@linkcode Submenu}. */ +class Submenu extends base.MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Submenu'); + } + /** Create a new submenu. */ + static async new(opts) { + return base.newMenu('Submenu', opts).then(([rid, id]) => new Submenu(rid, id)); + } + /** Returns the text of this submenu. */ + async text() { + return core.invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this submenu. */ + async setText(text) { + return core.invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } + /** Returns whether this submenu is enabled or not. */ + async isEnabled() { + return core.invoke('plugin:menu|is_enabled', { rid: this.rid, kind: this.kind }); + } + /** Sets whether this submenu is enabled or not. */ + async setEnabled(enabled) { + return core.invoke('plugin:menu|set_enabled', { + rid: this.rid, + kind: this.kind, + enabled + }); + } + /** + * Add a menu item to the end of this submenu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async append(items) { + return core.invoke('plugin:menu|append', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i) + }); + } + /** + * Add a menu item to the beginning of this submenu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async prepend(items) { + return core.invoke('plugin:menu|prepend', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i) + }); + } + /** + * Add a menu item to the specified position in this submenu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async insert(items, position) { + return core.invoke('plugin:menu|insert', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i), + position + }); + } + /** Remove a menu item from this submenu. */ + async remove(item) { + return core.invoke('plugin:menu|remove', { + rid: this.rid, + kind: this.kind, + item: [item.rid, item.kind] + }); + } + /** Remove a menu item from this submenu at the specified position. */ + async removeAt(position) { + return core.invoke('plugin:menu|remove_at', { + rid: this.rid, + kind: this.kind, + position + }).then(itemFromKind); + } + /** Returns a list of menu items that has been added to this submenu. */ + async items() { + return core.invoke('plugin:menu|items', { + rid: this.rid, + kind: this.kind + }).then((i) => i.map(itemFromKind)); + } + /** Retrieves the menu item matching the given identifier. */ + async get(id) { + return core.invoke('plugin:menu|get', { + rid: this.rid, + kind: this.kind, + id + }).then((r) => (r ? itemFromKind(r) : null)); + } + /** + * Popup this submenu as a context menu on the specified window. + * + * If the position, is provided, it is relative to the window's top-left corner. + */ + async popup(at, window) { + var _a; + return core.invoke('plugin:menu|popup', { + rid: this.rid, + kind: this.kind, + window: (_a = window === null || window === void 0 ? void 0 : window.label) !== null && _a !== void 0 ? _a : null, + at: at instanceof dpi.Position ? at : at ? new dpi.Position(at) : null + }); + } + /** + * Set this submenu as the Window menu for the application on macOS. + * + * This will cause macOS to automatically add window-switching items and + * certain other items to the menu. + * + * #### Platform-specific: + * + * - **Windows / Linux**: Unsupported. + */ + async setAsWindowsMenuForNSApp() { + return core.invoke('plugin:menu|set_as_windows_menu_for_nsapp', { + rid: this.rid + }); + } + /** + * Set this submenu as the Help menu for the application on macOS. + * + * This will cause macOS to automatically add a search box to the menu. + * + * If no menu is set as the Help menu, macOS will automatically use any menu + * which has a title matching the localized word "Help". + * + * #### Platform-specific: + * + * - **Windows / Linux**: Unsupported. + */ + async setAsHelpMenuForNSApp() { + return core.invoke('plugin:menu|set_as_help_menu_for_nsapp', { + rid: this.rid + }); + } +} + +exports.Submenu = Submenu; +exports.itemFromKind = itemFromKind; diff --git a/node_modules/@tauri-apps/api/menu/submenu.d.ts b/node_modules/@tauri-apps/api/menu/submenu.d.ts new file mode 100644 index 0000000..b42fce1 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/submenu.d.ts @@ -0,0 +1,88 @@ +import { IconMenuItemOptions, PredefinedMenuItemOptions, CheckMenuItemOptions } from '../menu'; +import { MenuItem, type MenuItemOptions } from './menuItem'; +import { CheckMenuItem } from './checkMenuItem'; +import { IconMenuItem } from './iconMenuItem'; +import { PredefinedMenuItem } from './predefinedMenuItem'; +import { type LogicalPosition, PhysicalPosition, type Window } from '../window'; +import { type ItemKind, MenuItemBase } from './base'; +import { type MenuOptions } from './menu'; +/** @ignore */ +export declare function itemFromKind([rid, id, kind]: [number, string, ItemKind]): Submenu | MenuItem | PredefinedMenuItem | CheckMenuItem | IconMenuItem; +export type SubmenuOptions = Omit & MenuOptions; +/** A type that is a submenu inside a {@linkcode Menu} or {@linkcode Submenu}. */ +export declare class Submenu extends MenuItemBase { + /** @ignore */ + protected constructor(rid: number, id: string); + /** Create a new submenu. */ + static new(opts: SubmenuOptions): Promise; + /** Returns the text of this submenu. */ + text(): Promise; + /** Sets the text for this submenu. */ + setText(text: string): Promise; + /** Returns whether this submenu is enabled or not. */ + isEnabled(): Promise; + /** Sets whether this submenu is enabled or not. */ + setEnabled(enabled: boolean): Promise; + /** + * Add a menu item to the end of this submenu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + append(items: T | T[]): Promise; + /** + * Add a menu item to the beginning of this submenu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + prepend(items: T | T[]): Promise; + /** + * Add a menu item to the specified position in this submenu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + insert(items: T | T[], position: number): Promise; + /** Remove a menu item from this submenu. */ + remove(item: Submenu | MenuItem | PredefinedMenuItem | CheckMenuItem | IconMenuItem): Promise; + /** Remove a menu item from this submenu at the specified position. */ + removeAt(position: number): Promise; + /** Returns a list of menu items that has been added to this submenu. */ + items(): Promise>; + /** Retrieves the menu item matching the given identifier. */ + get(id: string): Promise; + /** + * Popup this submenu as a context menu on the specified window. + * + * If the position, is provided, it is relative to the window's top-left corner. + */ + popup(at?: PhysicalPosition | LogicalPosition, window?: Window): Promise; + /** + * Set this submenu as the Window menu for the application on macOS. + * + * This will cause macOS to automatically add window-switching items and + * certain other items to the menu. + * + * #### Platform-specific: + * + * - **Windows / Linux**: Unsupported. + */ + setAsWindowsMenuForNSApp(): Promise; + /** + * Set this submenu as the Help menu for the application on macOS. + * + * This will cause macOS to automatically add a search box to the menu. + * + * If no menu is set as the Help menu, macOS will automatically use any menu + * which has a title matching the localized word "Help". + * + * #### Platform-specific: + * + * - **Windows / Linux**: Unsupported. + */ + setAsHelpMenuForNSApp(): Promise; +} diff --git a/node_modules/@tauri-apps/api/menu/submenu.js b/node_modules/@tauri-apps/api/menu/submenu.js new file mode 100644 index 0000000..248c6d4 --- /dev/null +++ b/node_modules/@tauri-apps/api/menu/submenu.js @@ -0,0 +1,191 @@ +import { MenuItem } from './menuItem.js'; +import { CheckMenuItem } from './checkMenuItem.js'; +import { IconMenuItem } from './iconMenuItem.js'; +import { PredefinedMenuItem } from './predefinedMenuItem.js'; +import { invoke } from '../core.js'; +import { MenuItemBase, newMenu } from './base.js'; +import { Position } from '../dpi.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** @ignore */ +function itemFromKind([rid, id, kind]) { + /* eslint-disable @typescript-eslint/no-unsafe-return */ + switch (kind) { + case 'Submenu': + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new Submenu(rid, id); + case 'Predefined': + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new PredefinedMenuItem(rid, id); + case 'Check': + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new CheckMenuItem(rid, id); + case 'Icon': + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new IconMenuItem(rid, id); + case 'MenuItem': + default: + // @ts-expect-error constructor is protected for external usage only, safe for us to use + return new MenuItem(rid, id); + } + /* eslint-enable @typescript-eslint/no-unsafe-return */ +} +/** A type that is a submenu inside a {@linkcode Menu} or {@linkcode Submenu}. */ +class Submenu extends MenuItemBase { + /** @ignore */ + constructor(rid, id) { + super(rid, id, 'Submenu'); + } + /** Create a new submenu. */ + static async new(opts) { + return newMenu('Submenu', opts).then(([rid, id]) => new Submenu(rid, id)); + } + /** Returns the text of this submenu. */ + async text() { + return invoke('plugin:menu|text', { rid: this.rid, kind: this.kind }); + } + /** Sets the text for this submenu. */ + async setText(text) { + return invoke('plugin:menu|set_text', { + rid: this.rid, + kind: this.kind, + text + }); + } + /** Returns whether this submenu is enabled or not. */ + async isEnabled() { + return invoke('plugin:menu|is_enabled', { rid: this.rid, kind: this.kind }); + } + /** Sets whether this submenu is enabled or not. */ + async setEnabled(enabled) { + return invoke('plugin:menu|set_enabled', { + rid: this.rid, + kind: this.kind, + enabled + }); + } + /** + * Add a menu item to the end of this submenu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async append(items) { + return invoke('plugin:menu|append', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i) + }); + } + /** + * Add a menu item to the beginning of this submenu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async prepend(items) { + return invoke('plugin:menu|prepend', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i) + }); + } + /** + * Add a menu item to the specified position in this submenu. + * + * #### Platform-specific: + * + * - **macOS:** Only {@linkcode Submenu}s can be added to a {@linkcode Menu}. + */ + async insert(items, position) { + return invoke('plugin:menu|insert', { + rid: this.rid, + kind: this.kind, + items: (Array.isArray(items) ? items : [items]).map((i) => 'rid' in i ? [i.rid, i.kind] : i), + position + }); + } + /** Remove a menu item from this submenu. */ + async remove(item) { + return invoke('plugin:menu|remove', { + rid: this.rid, + kind: this.kind, + item: [item.rid, item.kind] + }); + } + /** Remove a menu item from this submenu at the specified position. */ + async removeAt(position) { + return invoke('plugin:menu|remove_at', { + rid: this.rid, + kind: this.kind, + position + }).then(itemFromKind); + } + /** Returns a list of menu items that has been added to this submenu. */ + async items() { + return invoke('plugin:menu|items', { + rid: this.rid, + kind: this.kind + }).then((i) => i.map(itemFromKind)); + } + /** Retrieves the menu item matching the given identifier. */ + async get(id) { + return invoke('plugin:menu|get', { + rid: this.rid, + kind: this.kind, + id + }).then((r) => (r ? itemFromKind(r) : null)); + } + /** + * Popup this submenu as a context menu on the specified window. + * + * If the position, is provided, it is relative to the window's top-left corner. + */ + async popup(at, window) { + var _a; + return invoke('plugin:menu|popup', { + rid: this.rid, + kind: this.kind, + window: (_a = window === null || window === void 0 ? void 0 : window.label) !== null && _a !== void 0 ? _a : null, + at: at instanceof Position ? at : at ? new Position(at) : null + }); + } + /** + * Set this submenu as the Window menu for the application on macOS. + * + * This will cause macOS to automatically add window-switching items and + * certain other items to the menu. + * + * #### Platform-specific: + * + * - **Windows / Linux**: Unsupported. + */ + async setAsWindowsMenuForNSApp() { + return invoke('plugin:menu|set_as_windows_menu_for_nsapp', { + rid: this.rid + }); + } + /** + * Set this submenu as the Help menu for the application on macOS. + * + * This will cause macOS to automatically add a search box to the menu. + * + * If no menu is set as the Help menu, macOS will automatically use any menu + * which has a title matching the localized word "Help". + * + * #### Platform-specific: + * + * - **Windows / Linux**: Unsupported. + */ + async setAsHelpMenuForNSApp() { + return invoke('plugin:menu|set_as_help_menu_for_nsapp', { + rid: this.rid + }); + } +} + +export { Submenu, itemFromKind }; diff --git a/node_modules/@tauri-apps/api/mocks.cjs b/node_modules/@tauri-apps/api/mocks.cjs new file mode 100644 index 0000000..40d87bb --- /dev/null +++ b/node_modules/@tauri-apps/api/mocks.cjs @@ -0,0 +1,208 @@ +'use strict'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +function mockInternals() { + var _a; + window.__TAURI_INTERNALS__ = (_a = window.__TAURI_INTERNALS__) !== null && _a !== void 0 ? _a : {}; +} +/** + * Intercepts all IPC requests with the given mock handler. + * + * This function can be used when testing tauri frontend applications or when running the frontend in a Node.js context during static site generation. + * + * # Examples + * + * Testing setup using Vitest: + * ```js + * import { mockIPC, clearMocks } from "@tauri-apps/api/mocks" + * import { invoke } from "@tauri-apps/api/core" + * + * afterEach(() => { + * clearMocks() + * }) + * + * test("mocked command", () => { + * mockIPC((cmd, payload) => { + * switch (cmd) { + * case "add": + * return (payload.a as number) + (payload.b as number); + * default: + * break; + * } + * }); + * + * expect(invoke('add', { a: 12, b: 15 })).resolves.toBe(27); + * }) + * ``` + * + * The callback function can also return a Promise: + * ```js + * import { mockIPC, clearMocks } from "@tauri-apps/api/mocks" + * import { invoke } from "@tauri-apps/api/core" + * + * afterEach(() => { + * clearMocks() + * }) + * + * test("mocked command", () => { + * mockIPC((cmd, payload) => { + * if(cmd === "get_data") { + * return fetch("https://example.com/data.json") + * .then((response) => response.json()) + * } + * }); + * + * expect(invoke('get_data')).resolves.toBe({ foo: 'bar' }); + * }) + * ``` + * + * @since 1.0.0 + */ +function mockIPC(cb) { + mockInternals(); + window.__TAURI_INTERNALS__.transformCallback = function transformCallback( + // eslint-disable-next-line @typescript-eslint/no-explicit-any + callback, once = false) { + const identifier = window.crypto.getRandomValues(new Uint32Array(1))[0]; + const prop = `_${identifier}`; + Object.defineProperty(window, prop, { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + value: (result) => { + if (once) { + Reflect.deleteProperty(window, prop); + } + return callback && callback(result); + }, + writable: false, + configurable: true + }); + return identifier; + }; + // eslint-disable-next-line @typescript-eslint/require-await + window.__TAURI_INTERNALS__.invoke = async function (cmd, args, + // eslint-disable-next-line @typescript-eslint/no-unused-vars + options) { + return cb(cmd, args); + }; +} +/** + * Mocks one or many window labels. + * In non-tauri context it is required to call this function *before* using the `@tauri-apps/api/window` module. + * + * This function only mocks the *presence* of windows, + * window properties (e.g. width and height) can be mocked like regular IPC calls using the `mockIPC` function. + * + * # Examples + * + * ```js + * import { mockWindows } from "@tauri-apps/api/mocks"; + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * + * mockWindows("main", "second", "third"); + * + * const win = getCurrentWindow(); + * + * win.label // "main" + * ``` + * + * ```js + * import { mockWindows } from "@tauri-apps/api/mocks"; + * + * mockWindows("main", "second", "third"); + * + * mockIPC((cmd, args) => { + * if (cmd === "plugin:event|emit") { + * console.log('emit event', args?.event, args?.payload); + * } + * }); + * + * const { emit } = await import("@tauri-apps/api/event"); + * await emit('loaded'); // this will cause the mocked IPC handler to log to the console. + * ``` + * + * @param current Label of window this JavaScript context is running in. + * + * @since 1.0.0 + */ +function mockWindows(current, ..._additionalWindows) { + mockInternals(); + window.__TAURI_INTERNALS__.metadata = { + currentWindow: { label: current }, + currentWebview: { windowLabel: current, label: current } + }; +} +/** + * Mock `convertFileSrc` function + * + * + * @example + * ```js + * import { mockConvertFileSrc } from "@tauri-apps/api/mocks"; + * import { convertFileSrc } from "@tauri-apps/api/core"; + * + * mockConvertFileSrc("windows") + * + * const url = convertFileSrc("C:\\Users\\user\\file.txt") + * ``` + * + * @param osName The operating system to mock, can be one of linux, macos, or windows + * + * @since 1.6.0 + */ +function mockConvertFileSrc(osName) { + mockInternals(); + window.__TAURI_INTERNALS__.convertFileSrc = function (filePath, protocol = 'asset') { + const path = encodeURIComponent(filePath); + return osName === 'windows' + ? `http://${protocol}.localhost/${path}` + : `${protocol}://localhost/${path}`; + }; +} +/** + * Clears mocked functions/data injected by the other functions in this module. + * When using a test runner that doesn't provide a fresh window object for each test, calling this function will reset tauri specific properties. + * + * # Example + * + * ```js + * import { mockWindows, clearMocks } from "@tauri-apps/api/mocks" + * + * afterEach(() => { + * clearMocks() + * }) + * + * test("mocked windows", () => { + * mockWindows("main", "second", "third"); + * + * expect(window.__TAURI_INTERNALS__).toHaveProperty("metadata") + * }) + * + * test("no mocked windows", () => { + * expect(window.__TAURI_INTERNALS__).not.toHaveProperty("metadata") + * }) + * ``` + * + * @since 1.0.0 + */ +function clearMocks() { + var _a, _b, _c; + if (typeof window.__TAURI_INTERNALS__ !== 'object') { + return; + } + if ((_a = window.__TAURI_INTERNALS__) === null || _a === void 0 ? void 0 : _a.convertFileSrc) + // @ts-expect-error "The operand of a 'delete' operator must be optional' does not matter in this case + delete window.__TAURI_INTERNALS__.convertFileSrc; + if ((_b = window.__TAURI_INTERNALS__) === null || _b === void 0 ? void 0 : _b.invoke) + // @ts-expect-error "The operand of a 'delete' operator must be optional' does not matter in this case + delete window.__TAURI_INTERNALS__.invoke; + if ((_c = window.__TAURI_INTERNALS__) === null || _c === void 0 ? void 0 : _c.metadata) + // @ts-expect-error "The operand of a 'delete' operator must be optional' does not matter in this case + delete window.__TAURI_INTERNALS__.metadata; +} + +exports.clearMocks = clearMocks; +exports.mockConvertFileSrc = mockConvertFileSrc; +exports.mockIPC = mockIPC; +exports.mockWindows = mockWindows; diff --git a/node_modules/@tauri-apps/api/mocks.d.ts b/node_modules/@tauri-apps/api/mocks.d.ts new file mode 100644 index 0000000..9084768 --- /dev/null +++ b/node_modules/@tauri-apps/api/mocks.d.ts @@ -0,0 +1,141 @@ +import type { InvokeArgs } from './core'; +/** + * Intercepts all IPC requests with the given mock handler. + * + * This function can be used when testing tauri frontend applications or when running the frontend in a Node.js context during static site generation. + * + * # Examples + * + * Testing setup using Vitest: + * ```js + * import { mockIPC, clearMocks } from "@tauri-apps/api/mocks" + * import { invoke } from "@tauri-apps/api/core" + * + * afterEach(() => { + * clearMocks() + * }) + * + * test("mocked command", () => { + * mockIPC((cmd, payload) => { + * switch (cmd) { + * case "add": + * return (payload.a as number) + (payload.b as number); + * default: + * break; + * } + * }); + * + * expect(invoke('add', { a: 12, b: 15 })).resolves.toBe(27); + * }) + * ``` + * + * The callback function can also return a Promise: + * ```js + * import { mockIPC, clearMocks } from "@tauri-apps/api/mocks" + * import { invoke } from "@tauri-apps/api/core" + * + * afterEach(() => { + * clearMocks() + * }) + * + * test("mocked command", () => { + * mockIPC((cmd, payload) => { + * if(cmd === "get_data") { + * return fetch("https://example.com/data.json") + * .then((response) => response.json()) + * } + * }); + * + * expect(invoke('get_data')).resolves.toBe({ foo: 'bar' }); + * }) + * ``` + * + * @since 1.0.0 + */ +export declare function mockIPC(cb: (cmd: string, payload?: InvokeArgs) => unknown): void; +/** + * Mocks one or many window labels. + * In non-tauri context it is required to call this function *before* using the `@tauri-apps/api/window` module. + * + * This function only mocks the *presence* of windows, + * window properties (e.g. width and height) can be mocked like regular IPC calls using the `mockIPC` function. + * + * # Examples + * + * ```js + * import { mockWindows } from "@tauri-apps/api/mocks"; + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * + * mockWindows("main", "second", "third"); + * + * const win = getCurrentWindow(); + * + * win.label // "main" + * ``` + * + * ```js + * import { mockWindows } from "@tauri-apps/api/mocks"; + * + * mockWindows("main", "second", "third"); + * + * mockIPC((cmd, args) => { + * if (cmd === "plugin:event|emit") { + * console.log('emit event', args?.event, args?.payload); + * } + * }); + * + * const { emit } = await import("@tauri-apps/api/event"); + * await emit('loaded'); // this will cause the mocked IPC handler to log to the console. + * ``` + * + * @param current Label of window this JavaScript context is running in. + * + * @since 1.0.0 + */ +export declare function mockWindows(current: string, ..._additionalWindows: string[]): void; +/** + * Mock `convertFileSrc` function + * + * + * @example + * ```js + * import { mockConvertFileSrc } from "@tauri-apps/api/mocks"; + * import { convertFileSrc } from "@tauri-apps/api/core"; + * + * mockConvertFileSrc("windows") + * + * const url = convertFileSrc("C:\\Users\\user\\file.txt") + * ``` + * + * @param osName The operating system to mock, can be one of linux, macos, or windows + * + * @since 1.6.0 + */ +export declare function mockConvertFileSrc(osName: string): void; +/** + * Clears mocked functions/data injected by the other functions in this module. + * When using a test runner that doesn't provide a fresh window object for each test, calling this function will reset tauri specific properties. + * + * # Example + * + * ```js + * import { mockWindows, clearMocks } from "@tauri-apps/api/mocks" + * + * afterEach(() => { + * clearMocks() + * }) + * + * test("mocked windows", () => { + * mockWindows("main", "second", "third"); + * + * expect(window.__TAURI_INTERNALS__).toHaveProperty("metadata") + * }) + * + * test("no mocked windows", () => { + * expect(window.__TAURI_INTERNALS__).not.toHaveProperty("metadata") + * }) + * ``` + * + * @since 1.0.0 + */ +export declare function clearMocks(): void; diff --git a/node_modules/@tauri-apps/api/mocks.js b/node_modules/@tauri-apps/api/mocks.js new file mode 100644 index 0000000..3a0ba6e --- /dev/null +++ b/node_modules/@tauri-apps/api/mocks.js @@ -0,0 +1,203 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +function mockInternals() { + var _a; + window.__TAURI_INTERNALS__ = (_a = window.__TAURI_INTERNALS__) !== null && _a !== void 0 ? _a : {}; +} +/** + * Intercepts all IPC requests with the given mock handler. + * + * This function can be used when testing tauri frontend applications or when running the frontend in a Node.js context during static site generation. + * + * # Examples + * + * Testing setup using Vitest: + * ```js + * import { mockIPC, clearMocks } from "@tauri-apps/api/mocks" + * import { invoke } from "@tauri-apps/api/core" + * + * afterEach(() => { + * clearMocks() + * }) + * + * test("mocked command", () => { + * mockIPC((cmd, payload) => { + * switch (cmd) { + * case "add": + * return (payload.a as number) + (payload.b as number); + * default: + * break; + * } + * }); + * + * expect(invoke('add', { a: 12, b: 15 })).resolves.toBe(27); + * }) + * ``` + * + * The callback function can also return a Promise: + * ```js + * import { mockIPC, clearMocks } from "@tauri-apps/api/mocks" + * import { invoke } from "@tauri-apps/api/core" + * + * afterEach(() => { + * clearMocks() + * }) + * + * test("mocked command", () => { + * mockIPC((cmd, payload) => { + * if(cmd === "get_data") { + * return fetch("https://example.com/data.json") + * .then((response) => response.json()) + * } + * }); + * + * expect(invoke('get_data')).resolves.toBe({ foo: 'bar' }); + * }) + * ``` + * + * @since 1.0.0 + */ +function mockIPC(cb) { + mockInternals(); + window.__TAURI_INTERNALS__.transformCallback = function transformCallback( + // eslint-disable-next-line @typescript-eslint/no-explicit-any + callback, once = false) { + const identifier = window.crypto.getRandomValues(new Uint32Array(1))[0]; + const prop = `_${identifier}`; + Object.defineProperty(window, prop, { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + value: (result) => { + if (once) { + Reflect.deleteProperty(window, prop); + } + return callback && callback(result); + }, + writable: false, + configurable: true + }); + return identifier; + }; + // eslint-disable-next-line @typescript-eslint/require-await + window.__TAURI_INTERNALS__.invoke = async function (cmd, args, + // eslint-disable-next-line @typescript-eslint/no-unused-vars + options) { + return cb(cmd, args); + }; +} +/** + * Mocks one or many window labels. + * In non-tauri context it is required to call this function *before* using the `@tauri-apps/api/window` module. + * + * This function only mocks the *presence* of windows, + * window properties (e.g. width and height) can be mocked like regular IPC calls using the `mockIPC` function. + * + * # Examples + * + * ```js + * import { mockWindows } from "@tauri-apps/api/mocks"; + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * + * mockWindows("main", "second", "third"); + * + * const win = getCurrentWindow(); + * + * win.label // "main" + * ``` + * + * ```js + * import { mockWindows } from "@tauri-apps/api/mocks"; + * + * mockWindows("main", "second", "third"); + * + * mockIPC((cmd, args) => { + * if (cmd === "plugin:event|emit") { + * console.log('emit event', args?.event, args?.payload); + * } + * }); + * + * const { emit } = await import("@tauri-apps/api/event"); + * await emit('loaded'); // this will cause the mocked IPC handler to log to the console. + * ``` + * + * @param current Label of window this JavaScript context is running in. + * + * @since 1.0.0 + */ +function mockWindows(current, ..._additionalWindows) { + mockInternals(); + window.__TAURI_INTERNALS__.metadata = { + currentWindow: { label: current }, + currentWebview: { windowLabel: current, label: current } + }; +} +/** + * Mock `convertFileSrc` function + * + * + * @example + * ```js + * import { mockConvertFileSrc } from "@tauri-apps/api/mocks"; + * import { convertFileSrc } from "@tauri-apps/api/core"; + * + * mockConvertFileSrc("windows") + * + * const url = convertFileSrc("C:\\Users\\user\\file.txt") + * ``` + * + * @param osName The operating system to mock, can be one of linux, macos, or windows + * + * @since 1.6.0 + */ +function mockConvertFileSrc(osName) { + mockInternals(); + window.__TAURI_INTERNALS__.convertFileSrc = function (filePath, protocol = 'asset') { + const path = encodeURIComponent(filePath); + return osName === 'windows' + ? `http://${protocol}.localhost/${path}` + : `${protocol}://localhost/${path}`; + }; +} +/** + * Clears mocked functions/data injected by the other functions in this module. + * When using a test runner that doesn't provide a fresh window object for each test, calling this function will reset tauri specific properties. + * + * # Example + * + * ```js + * import { mockWindows, clearMocks } from "@tauri-apps/api/mocks" + * + * afterEach(() => { + * clearMocks() + * }) + * + * test("mocked windows", () => { + * mockWindows("main", "second", "third"); + * + * expect(window.__TAURI_INTERNALS__).toHaveProperty("metadata") + * }) + * + * test("no mocked windows", () => { + * expect(window.__TAURI_INTERNALS__).not.toHaveProperty("metadata") + * }) + * ``` + * + * @since 1.0.0 + */ +function clearMocks() { + var _a, _b, _c; + if (typeof window.__TAURI_INTERNALS__ !== 'object') { + return; + } + if ((_a = window.__TAURI_INTERNALS__) === null || _a === void 0 ? void 0 : _a.convertFileSrc) + // @ts-expect-error "The operand of a 'delete' operator must be optional' does not matter in this case + delete window.__TAURI_INTERNALS__.convertFileSrc; + if ((_b = window.__TAURI_INTERNALS__) === null || _b === void 0 ? void 0 : _b.invoke) + // @ts-expect-error "The operand of a 'delete' operator must be optional' does not matter in this case + delete window.__TAURI_INTERNALS__.invoke; + if ((_c = window.__TAURI_INTERNALS__) === null || _c === void 0 ? void 0 : _c.metadata) + // @ts-expect-error "The operand of a 'delete' operator must be optional' does not matter in this case + delete window.__TAURI_INTERNALS__.metadata; +} + +export { clearMocks, mockConvertFileSrc, mockIPC, mockWindows }; diff --git a/node_modules/@tauri-apps/api/package.json b/node_modules/@tauri-apps/api/package.json new file mode 100644 index 0000000..a7f7076 --- /dev/null +++ b/node_modules/@tauri-apps/api/package.json @@ -0,0 +1,63 @@ +{ + "name": "@tauri-apps/api", + "version": "2.5.0", + "description": "Tauri API definitions", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/tauri" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/tauri-apps/tauri.git" + }, + "contributors": [ + "Tauri Programme within The Commons Conservancy" + ], + "license": "Apache-2.0 OR MIT", + "bugs": { + "url": "https://github.com/tauri-apps/tauri/issues" + }, + "homepage": "https://github.com/tauri-apps/tauri#readme", + "type": "module", + "main": "./index.cjs", + "module": "./index.js", + "types": "./index.d.ts", + "exports": { + ".": { + "import": "./index.js", + "require": "./index.cjs", + "types": "./index.d.ts" + }, + "./*": { + "import": "./*.js", + "require": "./*.cjs", + "types": "./*.d.ts" + }, + "./package.json": "./package.json" + }, + "devDependencies": { + "@eslint/js": "^9.21.0", + "@rollup/plugin-terser": "0.4.4", + "@rollup/plugin-typescript": "12.1.2", + "@types/eslint": "^9.6.1", + "@types/node": "^22.13.5", + "eslint": "^9.21.0", + "eslint-config-prettier": "10.1.2", + "eslint-plugin-security": "3.0.1", + "fast-glob": "3.3.3", + "globals": "^16.0.0", + "rollup": "4.40.0", + "tslib": "^2.8.1", + "typescript": "^5.8.3", + "typescript-eslint": "^8.25.0" + }, + "scripts": { + "build": "rollup -c --configPlugin typescript", + "build:debug": "rollup -c --configPlugin typescript", + "npm-pack": "pnpm build && cd ./dist && npm pack", + "npm-publish": "pnpm build && cd ./dist && pnpm publish --access public --loglevel silly --no-git-checks", + "ts:check": "tsc --noEmit", + "eslint:check": "eslint src/**/*.ts", + "eslint:fix": "eslint src/**/*.ts --fix" + } +} \ No newline at end of file diff --git a/node_modules/@tauri-apps/api/path.cjs b/node_modules/@tauri-apps/api/path.cjs new file mode 100644 index 0000000..c5ee037 --- /dev/null +++ b/node_modules/@tauri-apps/api/path.cjs @@ -0,0 +1,737 @@ +'use strict'; + +var core = require('./core.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * The path module provides utilities for working with file and directory paths. + * + * This package is also accessible with `window.__TAURI__.path` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * + * It is recommended to allowlist only the APIs you use for optimal bundle size and security. + * @module + */ +/** + * @since 2.0.0 + */ +exports.BaseDirectory = void 0; +(function (BaseDirectory) { + /** + * @see {@link audioDir} for more information. + */ + BaseDirectory[BaseDirectory["Audio"] = 1] = "Audio"; + /** + * @see {@link cacheDir} for more information. + */ + BaseDirectory[BaseDirectory["Cache"] = 2] = "Cache"; + /** + * @see {@link configDir} for more information. + */ + BaseDirectory[BaseDirectory["Config"] = 3] = "Config"; + /** + * @see {@link dataDir} for more information. + */ + BaseDirectory[BaseDirectory["Data"] = 4] = "Data"; + /** + * @see {@link localDataDir} for more information. + */ + BaseDirectory[BaseDirectory["LocalData"] = 5] = "LocalData"; + /** + * @see {@link documentDir} for more information. + */ + BaseDirectory[BaseDirectory["Document"] = 6] = "Document"; + /** + * @see {@link downloadDir} for more information. + */ + BaseDirectory[BaseDirectory["Download"] = 7] = "Download"; + /** + * @see {@link pictureDir} for more information. + */ + BaseDirectory[BaseDirectory["Picture"] = 8] = "Picture"; + /** + * @see {@link publicDir} for more information. + */ + BaseDirectory[BaseDirectory["Public"] = 9] = "Public"; + /** + * @see {@link videoDir} for more information. + */ + BaseDirectory[BaseDirectory["Video"] = 10] = "Video"; + /** + * @see {@link resourceDir} for more information. + */ + BaseDirectory[BaseDirectory["Resource"] = 11] = "Resource"; + /** + * @see {@link tempDir} for more information. + */ + BaseDirectory[BaseDirectory["Temp"] = 12] = "Temp"; + /** + * @see {@link appConfigDir} for more information. + */ + BaseDirectory[BaseDirectory["AppConfig"] = 13] = "AppConfig"; + /** + * @see {@link appDataDir} for more information. + */ + BaseDirectory[BaseDirectory["AppData"] = 14] = "AppData"; + /** + * @see {@link appLocalDataDir} for more information. + */ + BaseDirectory[BaseDirectory["AppLocalData"] = 15] = "AppLocalData"; + /** + * @see {@link appCacheDir} for more information. + */ + BaseDirectory[BaseDirectory["AppCache"] = 16] = "AppCache"; + /** + * @see {@link appLogDir} for more information. + */ + BaseDirectory[BaseDirectory["AppLog"] = 17] = "AppLog"; + /** + * @see {@link desktopDir} for more information. + */ + BaseDirectory[BaseDirectory["Desktop"] = 18] = "Desktop"; + /** + * @see {@link executableDir} for more information. + */ + BaseDirectory[BaseDirectory["Executable"] = 19] = "Executable"; + /** + * @see {@link fontDir} for more information. + */ + BaseDirectory[BaseDirectory["Font"] = 20] = "Font"; + /** + * @see {@link homeDir} for more information. + */ + BaseDirectory[BaseDirectory["Home"] = 21] = "Home"; + /** + * @see {@link runtimeDir} for more information. + */ + BaseDirectory[BaseDirectory["Runtime"] = 22] = "Runtime"; + /** + * @see {@link templateDir} for more information. + */ + BaseDirectory[BaseDirectory["Template"] = 23] = "Template"; +})(exports.BaseDirectory || (exports.BaseDirectory = {})); +/** + * Returns the path to the suggested directory for your app's config files. + * Resolves to `${configDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appConfigDir } from '@tauri-apps/api/path'; + * const appConfigDirPath = await appConfigDir(); + * ``` + * + * @since 1.2.0 + */ +async function appConfigDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.AppConfig + }); +} +/** + * Returns the path to the suggested directory for your app's data files. + * Resolves to `${dataDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * ``` + * + * @since 1.2.0 + */ +async function appDataDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.AppData + }); +} +/** + * Returns the path to the suggested directory for your app's local data files. + * Resolves to `${localDataDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appLocalDataDir } from '@tauri-apps/api/path'; + * const appLocalDataDirPath = await appLocalDataDir(); + * ``` + * + * @since 1.2.0 + */ +async function appLocalDataDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.AppLocalData + }); +} +/** + * Returns the path to the suggested directory for your app's cache files. + * Resolves to `${cacheDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appCacheDir } from '@tauri-apps/api/path'; + * const appCacheDirPath = await appCacheDir(); + * ``` + * + * @since 1.2.0 + */ +async function appCacheDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.AppCache + }); +} +/** + * Returns the path to the user's audio directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_MUSIC_DIR`. + * - **macOS:** Resolves to `$HOME/Music`. + * - **Windows:** Resolves to `{FOLDERID_Music}`. + * @example + * ```typescript + * import { audioDir } from '@tauri-apps/api/path'; + * const audioDirPath = await audioDir(); + * ``` + * + * @since 1.0.0 + */ +async function audioDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Audio + }); +} +/** + * Returns the path to the user's cache directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_CACHE_HOME` or `$HOME/.cache`. + * - **macOS:** Resolves to `$HOME/Library/Caches`. + * - **Windows:** Resolves to `{FOLDERID_LocalAppData}`. + * @example + * ```typescript + * import { cacheDir } from '@tauri-apps/api/path'; + * const cacheDirPath = await cacheDir(); + * ``` + * + * @since 1.0.0 + */ +async function cacheDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Cache + }); +} +/** + * Returns the path to the user's config directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_CONFIG_HOME` or `$HOME/.config`. + * - **macOS:** Resolves to `$HOME/Library/Application Support`. + * - **Windows:** Resolves to `{FOLDERID_RoamingAppData}`. + * @example + * ```typescript + * import { configDir } from '@tauri-apps/api/path'; + * const configDirPath = await configDir(); + * ``` + * + * @since 1.0.0 + */ +async function configDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Config + }); +} +/** + * Returns the path to the user's data directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_DATA_HOME` or `$HOME/.local/share`. + * - **macOS:** Resolves to `$HOME/Library/Application Support`. + * - **Windows:** Resolves to `{FOLDERID_RoamingAppData}`. + * @example + * ```typescript + * import { dataDir } from '@tauri-apps/api/path'; + * const dataDirPath = await dataDir(); + * ``` + * + * @since 1.0.0 + */ +async function dataDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Data + }); +} +/** + * Returns the path to the user's desktop directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_DESKTOP_DIR`. + * - **macOS:** Resolves to `$HOME/Desktop`. + * - **Windows:** Resolves to `{FOLDERID_Desktop}`. + * @example + * ```typescript + * import { desktopDir } from '@tauri-apps/api/path'; + * const desktopPath = await desktopDir(); + * ``` + * + * @since 1.0.0 + */ +async function desktopDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Desktop + }); +} +/** + * Returns the path to the user's document directory. + * @example + * ```typescript + * import { documentDir } from '@tauri-apps/api/path'; + * const documentDirPath = await documentDir(); + * ``` + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_DOCUMENTS_DIR`. + * - **macOS:** Resolves to `$HOME/Documents`. + * - **Windows:** Resolves to `{FOLDERID_Documents}`. + * + * @since 1.0.0 + */ +async function documentDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Document + }); +} +/** + * Returns the path to the user's download directory. + * + * #### Platform-specific + * + * - **Linux**: Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_DOWNLOAD_DIR`. + * - **macOS**: Resolves to `$HOME/Downloads`. + * - **Windows**: Resolves to `{FOLDERID_Downloads}`. + * @example + * ```typescript + * import { downloadDir } from '@tauri-apps/api/path'; + * const downloadDirPath = await downloadDir(); + * ``` + * + * @since 1.0.0 + */ +async function downloadDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Download + }); +} +/** + * Returns the path to the user's executable directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_BIN_HOME/../bin` or `$XDG_DATA_HOME/../bin` or `$HOME/.local/bin`. + * - **macOS:** Not supported. + * - **Windows:** Not supported. + * @example + * ```typescript + * import { executableDir } from '@tauri-apps/api/path'; + * const executableDirPath = await executableDir(); + * ``` + * + * @since 1.0.0 + */ +async function executableDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Executable + }); +} +/** + * Returns the path to the user's font directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_DATA_HOME/fonts` or `$HOME/.local/share/fonts`. + * - **macOS:** Resolves to `$HOME/Library/Fonts`. + * - **Windows:** Not supported. + * @example + * ```typescript + * import { fontDir } from '@tauri-apps/api/path'; + * const fontDirPath = await fontDir(); + * ``` + * + * @since 1.0.0 + */ +async function fontDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Font + }); +} +/** + * Returns the path to the user's home directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$HOME`. + * - **macOS:** Resolves to `$HOME`. + * - **Windows:** Resolves to `{FOLDERID_Profile}`. + * @example + * ```typescript + * import { homeDir } from '@tauri-apps/api/path'; + * const homeDirPath = await homeDir(); + * ``` + * + * @since 1.0.0 + */ +async function homeDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Home + }); +} +/** + * Returns the path to the user's local data directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_DATA_HOME` or `$HOME/.local/share`. + * - **macOS:** Resolves to `$HOME/Library/Application Support`. + * - **Windows:** Resolves to `{FOLDERID_LocalAppData}`. + * @example + * ```typescript + * import { localDataDir } from '@tauri-apps/api/path'; + * const localDataDirPath = await localDataDir(); + * ``` + * + * @since 1.0.0 + */ +async function localDataDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.LocalData + }); +} +/** + * Returns the path to the user's picture directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_PICTURES_DIR`. + * - **macOS:** Resolves to `$HOME/Pictures`. + * - **Windows:** Resolves to `{FOLDERID_Pictures}`. + * @example + * ```typescript + * import { pictureDir } from '@tauri-apps/api/path'; + * const pictureDirPath = await pictureDir(); + * ``` + * + * @since 1.0.0 + */ +async function pictureDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Picture + }); +} +/** + * Returns the path to the user's public directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_PUBLICSHARE_DIR`. + * - **macOS:** Resolves to `$HOME/Public`. + * - **Windows:** Resolves to `{FOLDERID_Public}`. + * @example + * ```typescript + * import { publicDir } from '@tauri-apps/api/path'; + * const publicDirPath = await publicDir(); + * ``` + * + * @since 1.0.0 + */ +async function publicDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Public + }); +} +/** + * Returns the path to the application's resource directory. + * To resolve a resource path, see the [[resolveResource | `resolveResource API`]]. + * @example + * ```typescript + * import { resourceDir } from '@tauri-apps/api/path'; + * const resourceDirPath = await resourceDir(); + * ``` + * + * @since 1.0.0 + */ +async function resourceDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Resource + }); +} +/** + * Resolve the path to a resource file. + * @example + * ```typescript + * import { resolveResource } from '@tauri-apps/api/path'; + * const resourcePath = await resolveResource('script.sh'); + * ``` + * + * @param resourcePath The path to the resource. + * Must follow the same syntax as defined in `tauri.conf.json > bundle > resources`, i.e. keeping subfolders and parent dir components (`../`). + * @returns The full path to the resource. + * + * @since 1.0.0 + */ +async function resolveResource(resourcePath) { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Resource, + path: resourcePath + }); +} +/** + * Returns the path to the user's runtime directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_RUNTIME_DIR`. + * - **macOS:** Not supported. + * - **Windows:** Not supported. + * @example + * ```typescript + * import { runtimeDir } from '@tauri-apps/api/path'; + * const runtimeDirPath = await runtimeDir(); + * ``` + * + * @since 1.0.0 + */ +async function runtimeDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Runtime + }); +} +/** + * Returns the path to the user's template directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_TEMPLATES_DIR`. + * - **macOS:** Not supported. + * - **Windows:** Resolves to `{FOLDERID_Templates}`. + * @example + * ```typescript + * import { templateDir } from '@tauri-apps/api/path'; + * const templateDirPath = await templateDir(); + * ``` + * + * @since 1.0.0 + */ +async function templateDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Template + }); +} +/** + * Returns the path to the user's video directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_VIDEOS_DIR`. + * - **macOS:** Resolves to `$HOME/Movies`. + * - **Windows:** Resolves to `{FOLDERID_Videos}`. + * @example + * ```typescript + * import { videoDir } from '@tauri-apps/api/path'; + * const videoDirPath = await videoDir(); + * ``` + * + * @since 1.0.0 + */ +async function videoDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Video + }); +} +/** + * Returns the path to the suggested directory for your app's log files. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `${configDir}/${bundleIdentifier}/logs`. + * - **macOS:** Resolves to `${homeDir}/Library/Logs/{bundleIdentifier}` + * - **Windows:** Resolves to `${configDir}/${bundleIdentifier}/logs`. + * @example + * ```typescript + * import { appLogDir } from '@tauri-apps/api/path'; + * const appLogDirPath = await appLogDir(); + * ``` + * + * @since 1.2.0 + */ +async function appLogDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.AppLog + }); +} +/** + * Returns a temporary directory. + * @example + * ```typescript + * import { tempDir } from '@tauri-apps/api/path'; + * const temp = await tempDir(); + * ``` + * + * @since 2.0.0 + */ +async function tempDir() { + return core.invoke('plugin:path|resolve_directory', { + directory: exports.BaseDirectory.Temp + }); +} +/** + * Returns the platform-specific path segment separator: + * - `\` on Windows + * - `/` on POSIX + * + * @since 2.0.0 + */ +function sep() { + return window.__TAURI_INTERNALS__.plugins.path.sep; +} +/** + * Returns the platform-specific path segment delimiter: + * - `;` on Windows + * - `:` on POSIX + * + * @since 2.0.0 + */ +function delimiter() { + return window.__TAURI_INTERNALS__.plugins.path.delimiter; +} +/** + * Resolves a sequence of `paths` or `path` segments into an absolute path. + * @example + * ```typescript + * import { resolve, appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * const path = await resolve(appDataDirPath, '..', 'users', 'tauri', 'avatar.png'); + * ``` + * + * @since 1.0.0 + */ +async function resolve(...paths) { + return core.invoke('plugin:path|resolve', { paths }); +} +/** + * Normalizes the given `path`, resolving `'..'` and `'.'` segments and resolve symbolic links. + * @example + * ```typescript + * import { normalize, appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * const path = await normalize(`${appDataDirPath}/../users/tauri/avatar.png`); + * ``` + * + * @since 1.0.0 + */ +async function normalize(path) { + return core.invoke('plugin:path|normalize', { path }); +} +/** + * Joins all given `path` segments together using the platform-specific separator as a delimiter, then normalizes the resulting path. + * @example + * ```typescript + * import { join, appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * const path = await join(appDataDirPath, 'users', 'tauri', 'avatar.png'); + * ``` + * + * @since 1.0.0 + */ +async function join(...paths) { + return core.invoke('plugin:path|join', { paths }); +} +/** + * Returns the directory name of a `path`. Trailing directory separators are ignored. + * @example + * ```typescript + * import { dirname } from '@tauri-apps/api/path'; + * const dir = await dirname('/path/to/somedir/'); + * assert(dir === 'somedir'); + * ``` + * + * @since 1.0.0 + */ +async function dirname(path) { + return core.invoke('plugin:path|dirname', { path }); +} +/** + * Returns the extension of the `path`. + * @example + * ```typescript + * import { extname } from '@tauri-apps/api/path'; + * const ext = await extname('/path/to/file.html'); + * assert(ext === 'html'); + * ``` + * + * @since 1.0.0 + */ +async function extname(path) { + return core.invoke('plugin:path|extname', { path }); +} +/** + * Returns the last portion of a `path`. Trailing directory separators are ignored. + * @example + * ```typescript + * import { basename } from '@tauri-apps/api/path'; + * const base = await basename('path/to/app.conf'); + * assert(base === 'app.conf'); + * ``` + * @param ext An optional file extension to be removed from the returned path. + * + * @since 1.0.0 + */ +async function basename(path, ext) { + return core.invoke('plugin:path|basename', { path, ext }); +} +/** + * Returns whether the path is absolute or not. + * @example + * ```typescript + * import { isAbsolute } from '@tauri-apps/api/path'; + * assert(await isAbsolute('/home/tauri')); + * ``` + * + * @since 1.0.0 + */ +async function isAbsolute(path) { + return core.invoke('plugin:path|is_absolute', { path }); +} + +exports.appCacheDir = appCacheDir; +exports.appConfigDir = appConfigDir; +exports.appDataDir = appDataDir; +exports.appLocalDataDir = appLocalDataDir; +exports.appLogDir = appLogDir; +exports.audioDir = audioDir; +exports.basename = basename; +exports.cacheDir = cacheDir; +exports.configDir = configDir; +exports.dataDir = dataDir; +exports.delimiter = delimiter; +exports.desktopDir = desktopDir; +exports.dirname = dirname; +exports.documentDir = documentDir; +exports.downloadDir = downloadDir; +exports.executableDir = executableDir; +exports.extname = extname; +exports.fontDir = fontDir; +exports.homeDir = homeDir; +exports.isAbsolute = isAbsolute; +exports.join = join; +exports.localDataDir = localDataDir; +exports.normalize = normalize; +exports.pictureDir = pictureDir; +exports.publicDir = publicDir; +exports.resolve = resolve; +exports.resolveResource = resolveResource; +exports.resourceDir = resourceDir; +exports.runtimeDir = runtimeDir; +exports.sep = sep; +exports.tempDir = tempDir; +exports.templateDir = templateDir; +exports.videoDir = videoDir; diff --git a/node_modules/@tauri-apps/api/path.d.ts b/node_modules/@tauri-apps/api/path.d.ts new file mode 100644 index 0000000..509a126 --- /dev/null +++ b/node_modules/@tauri-apps/api/path.d.ts @@ -0,0 +1,573 @@ +/** + * @since 2.0.0 + */ +declare enum BaseDirectory { + /** + * @see {@link audioDir} for more information. + */ + Audio = 1, + /** + * @see {@link cacheDir} for more information. + */ + Cache = 2, + /** + * @see {@link configDir} for more information. + */ + Config = 3, + /** + * @see {@link dataDir} for more information. + */ + Data = 4, + /** + * @see {@link localDataDir} for more information. + */ + LocalData = 5, + /** + * @see {@link documentDir} for more information. + */ + Document = 6, + /** + * @see {@link downloadDir} for more information. + */ + Download = 7, + /** + * @see {@link pictureDir} for more information. + */ + Picture = 8, + /** + * @see {@link publicDir} for more information. + */ + Public = 9, + /** + * @see {@link videoDir} for more information. + */ + Video = 10, + /** + * @see {@link resourceDir} for more information. + */ + Resource = 11, + /** + * @see {@link tempDir} for more information. + */ + Temp = 12, + /** + * @see {@link appConfigDir} for more information. + */ + AppConfig = 13, + /** + * @see {@link appDataDir} for more information. + */ + AppData = 14, + /** + * @see {@link appLocalDataDir} for more information. + */ + AppLocalData = 15, + /** + * @see {@link appCacheDir} for more information. + */ + AppCache = 16, + /** + * @see {@link appLogDir} for more information. + */ + AppLog = 17, + /** + * @see {@link desktopDir} for more information. + */ + Desktop = 18, + /** + * @see {@link executableDir} for more information. + */ + Executable = 19, + /** + * @see {@link fontDir} for more information. + */ + Font = 20, + /** + * @see {@link homeDir} for more information. + */ + Home = 21, + /** + * @see {@link runtimeDir} for more information. + */ + Runtime = 22, + /** + * @see {@link templateDir} for more information. + */ + Template = 23 +} +/** + * Returns the path to the suggested directory for your app's config files. + * Resolves to `${configDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appConfigDir } from '@tauri-apps/api/path'; + * const appConfigDirPath = await appConfigDir(); + * ``` + * + * @since 1.2.0 + */ +declare function appConfigDir(): Promise; +/** + * Returns the path to the suggested directory for your app's data files. + * Resolves to `${dataDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * ``` + * + * @since 1.2.0 + */ +declare function appDataDir(): Promise; +/** + * Returns the path to the suggested directory for your app's local data files. + * Resolves to `${localDataDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appLocalDataDir } from '@tauri-apps/api/path'; + * const appLocalDataDirPath = await appLocalDataDir(); + * ``` + * + * @since 1.2.0 + */ +declare function appLocalDataDir(): Promise; +/** + * Returns the path to the suggested directory for your app's cache files. + * Resolves to `${cacheDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appCacheDir } from '@tauri-apps/api/path'; + * const appCacheDirPath = await appCacheDir(); + * ``` + * + * @since 1.2.0 + */ +declare function appCacheDir(): Promise; +/** + * Returns the path to the user's audio directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_MUSIC_DIR`. + * - **macOS:** Resolves to `$HOME/Music`. + * - **Windows:** Resolves to `{FOLDERID_Music}`. + * @example + * ```typescript + * import { audioDir } from '@tauri-apps/api/path'; + * const audioDirPath = await audioDir(); + * ``` + * + * @since 1.0.0 + */ +declare function audioDir(): Promise; +/** + * Returns the path to the user's cache directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_CACHE_HOME` or `$HOME/.cache`. + * - **macOS:** Resolves to `$HOME/Library/Caches`. + * - **Windows:** Resolves to `{FOLDERID_LocalAppData}`. + * @example + * ```typescript + * import { cacheDir } from '@tauri-apps/api/path'; + * const cacheDirPath = await cacheDir(); + * ``` + * + * @since 1.0.0 + */ +declare function cacheDir(): Promise; +/** + * Returns the path to the user's config directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_CONFIG_HOME` or `$HOME/.config`. + * - **macOS:** Resolves to `$HOME/Library/Application Support`. + * - **Windows:** Resolves to `{FOLDERID_RoamingAppData}`. + * @example + * ```typescript + * import { configDir } from '@tauri-apps/api/path'; + * const configDirPath = await configDir(); + * ``` + * + * @since 1.0.0 + */ +declare function configDir(): Promise; +/** + * Returns the path to the user's data directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_DATA_HOME` or `$HOME/.local/share`. + * - **macOS:** Resolves to `$HOME/Library/Application Support`. + * - **Windows:** Resolves to `{FOLDERID_RoamingAppData}`. + * @example + * ```typescript + * import { dataDir } from '@tauri-apps/api/path'; + * const dataDirPath = await dataDir(); + * ``` + * + * @since 1.0.0 + */ +declare function dataDir(): Promise; +/** + * Returns the path to the user's desktop directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_DESKTOP_DIR`. + * - **macOS:** Resolves to `$HOME/Desktop`. + * - **Windows:** Resolves to `{FOLDERID_Desktop}`. + * @example + * ```typescript + * import { desktopDir } from '@tauri-apps/api/path'; + * const desktopPath = await desktopDir(); + * ``` + * + * @since 1.0.0 + */ +declare function desktopDir(): Promise; +/** + * Returns the path to the user's document directory. + * @example + * ```typescript + * import { documentDir } from '@tauri-apps/api/path'; + * const documentDirPath = await documentDir(); + * ``` + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_DOCUMENTS_DIR`. + * - **macOS:** Resolves to `$HOME/Documents`. + * - **Windows:** Resolves to `{FOLDERID_Documents}`. + * + * @since 1.0.0 + */ +declare function documentDir(): Promise; +/** + * Returns the path to the user's download directory. + * + * #### Platform-specific + * + * - **Linux**: Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_DOWNLOAD_DIR`. + * - **macOS**: Resolves to `$HOME/Downloads`. + * - **Windows**: Resolves to `{FOLDERID_Downloads}`. + * @example + * ```typescript + * import { downloadDir } from '@tauri-apps/api/path'; + * const downloadDirPath = await downloadDir(); + * ``` + * + * @since 1.0.0 + */ +declare function downloadDir(): Promise; +/** + * Returns the path to the user's executable directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_BIN_HOME/../bin` or `$XDG_DATA_HOME/../bin` or `$HOME/.local/bin`. + * - **macOS:** Not supported. + * - **Windows:** Not supported. + * @example + * ```typescript + * import { executableDir } from '@tauri-apps/api/path'; + * const executableDirPath = await executableDir(); + * ``` + * + * @since 1.0.0 + */ +declare function executableDir(): Promise; +/** + * Returns the path to the user's font directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_DATA_HOME/fonts` or `$HOME/.local/share/fonts`. + * - **macOS:** Resolves to `$HOME/Library/Fonts`. + * - **Windows:** Not supported. + * @example + * ```typescript + * import { fontDir } from '@tauri-apps/api/path'; + * const fontDirPath = await fontDir(); + * ``` + * + * @since 1.0.0 + */ +declare function fontDir(): Promise; +/** + * Returns the path to the user's home directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$HOME`. + * - **macOS:** Resolves to `$HOME`. + * - **Windows:** Resolves to `{FOLDERID_Profile}`. + * @example + * ```typescript + * import { homeDir } from '@tauri-apps/api/path'; + * const homeDirPath = await homeDir(); + * ``` + * + * @since 1.0.0 + */ +declare function homeDir(): Promise; +/** + * Returns the path to the user's local data directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_DATA_HOME` or `$HOME/.local/share`. + * - **macOS:** Resolves to `$HOME/Library/Application Support`. + * - **Windows:** Resolves to `{FOLDERID_LocalAppData}`. + * @example + * ```typescript + * import { localDataDir } from '@tauri-apps/api/path'; + * const localDataDirPath = await localDataDir(); + * ``` + * + * @since 1.0.0 + */ +declare function localDataDir(): Promise; +/** + * Returns the path to the user's picture directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_PICTURES_DIR`. + * - **macOS:** Resolves to `$HOME/Pictures`. + * - **Windows:** Resolves to `{FOLDERID_Pictures}`. + * @example + * ```typescript + * import { pictureDir } from '@tauri-apps/api/path'; + * const pictureDirPath = await pictureDir(); + * ``` + * + * @since 1.0.0 + */ +declare function pictureDir(): Promise; +/** + * Returns the path to the user's public directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_PUBLICSHARE_DIR`. + * - **macOS:** Resolves to `$HOME/Public`. + * - **Windows:** Resolves to `{FOLDERID_Public}`. + * @example + * ```typescript + * import { publicDir } from '@tauri-apps/api/path'; + * const publicDirPath = await publicDir(); + * ``` + * + * @since 1.0.0 + */ +declare function publicDir(): Promise; +/** + * Returns the path to the application's resource directory. + * To resolve a resource path, see the [[resolveResource | `resolveResource API`]]. + * @example + * ```typescript + * import { resourceDir } from '@tauri-apps/api/path'; + * const resourceDirPath = await resourceDir(); + * ``` + * + * @since 1.0.0 + */ +declare function resourceDir(): Promise; +/** + * Resolve the path to a resource file. + * @example + * ```typescript + * import { resolveResource } from '@tauri-apps/api/path'; + * const resourcePath = await resolveResource('script.sh'); + * ``` + * + * @param resourcePath The path to the resource. + * Must follow the same syntax as defined in `tauri.conf.json > bundle > resources`, i.e. keeping subfolders and parent dir components (`../`). + * @returns The full path to the resource. + * + * @since 1.0.0 + */ +declare function resolveResource(resourcePath: string): Promise; +/** + * Returns the path to the user's runtime directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_RUNTIME_DIR`. + * - **macOS:** Not supported. + * - **Windows:** Not supported. + * @example + * ```typescript + * import { runtimeDir } from '@tauri-apps/api/path'; + * const runtimeDirPath = await runtimeDir(); + * ``` + * + * @since 1.0.0 + */ +declare function runtimeDir(): Promise; +/** + * Returns the path to the user's template directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_TEMPLATES_DIR`. + * - **macOS:** Not supported. + * - **Windows:** Resolves to `{FOLDERID_Templates}`. + * @example + * ```typescript + * import { templateDir } from '@tauri-apps/api/path'; + * const templateDirPath = await templateDir(); + * ``` + * + * @since 1.0.0 + */ +declare function templateDir(): Promise; +/** + * Returns the path to the user's video directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_VIDEOS_DIR`. + * - **macOS:** Resolves to `$HOME/Movies`. + * - **Windows:** Resolves to `{FOLDERID_Videos}`. + * @example + * ```typescript + * import { videoDir } from '@tauri-apps/api/path'; + * const videoDirPath = await videoDir(); + * ``` + * + * @since 1.0.0 + */ +declare function videoDir(): Promise; +/** + * Returns the path to the suggested directory for your app's log files. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `${configDir}/${bundleIdentifier}/logs`. + * - **macOS:** Resolves to `${homeDir}/Library/Logs/{bundleIdentifier}` + * - **Windows:** Resolves to `${configDir}/${bundleIdentifier}/logs`. + * @example + * ```typescript + * import { appLogDir } from '@tauri-apps/api/path'; + * const appLogDirPath = await appLogDir(); + * ``` + * + * @since 1.2.0 + */ +declare function appLogDir(): Promise; +/** + * Returns a temporary directory. + * @example + * ```typescript + * import { tempDir } from '@tauri-apps/api/path'; + * const temp = await tempDir(); + * ``` + * + * @since 2.0.0 + */ +declare function tempDir(): Promise; +/** + * Returns the platform-specific path segment separator: + * - `\` on Windows + * - `/` on POSIX + * + * @since 2.0.0 + */ +declare function sep(): string; +/** + * Returns the platform-specific path segment delimiter: + * - `;` on Windows + * - `:` on POSIX + * + * @since 2.0.0 + */ +declare function delimiter(): string; +/** + * Resolves a sequence of `paths` or `path` segments into an absolute path. + * @example + * ```typescript + * import { resolve, appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * const path = await resolve(appDataDirPath, '..', 'users', 'tauri', 'avatar.png'); + * ``` + * + * @since 1.0.0 + */ +declare function resolve(...paths: string[]): Promise; +/** + * Normalizes the given `path`, resolving `'..'` and `'.'` segments and resolve symbolic links. + * @example + * ```typescript + * import { normalize, appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * const path = await normalize(`${appDataDirPath}/../users/tauri/avatar.png`); + * ``` + * + * @since 1.0.0 + */ +declare function normalize(path: string): Promise; +/** + * Joins all given `path` segments together using the platform-specific separator as a delimiter, then normalizes the resulting path. + * @example + * ```typescript + * import { join, appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * const path = await join(appDataDirPath, 'users', 'tauri', 'avatar.png'); + * ``` + * + * @since 1.0.0 + */ +declare function join(...paths: string[]): Promise; +/** + * Returns the directory name of a `path`. Trailing directory separators are ignored. + * @example + * ```typescript + * import { dirname } from '@tauri-apps/api/path'; + * const dir = await dirname('/path/to/somedir/'); + * assert(dir === 'somedir'); + * ``` + * + * @since 1.0.0 + */ +declare function dirname(path: string): Promise; +/** + * Returns the extension of the `path`. + * @example + * ```typescript + * import { extname } from '@tauri-apps/api/path'; + * const ext = await extname('/path/to/file.html'); + * assert(ext === 'html'); + * ``` + * + * @since 1.0.0 + */ +declare function extname(path: string): Promise; +/** + * Returns the last portion of a `path`. Trailing directory separators are ignored. + * @example + * ```typescript + * import { basename } from '@tauri-apps/api/path'; + * const base = await basename('path/to/app.conf'); + * assert(base === 'app.conf'); + * ``` + * @param ext An optional file extension to be removed from the returned path. + * + * @since 1.0.0 + */ +declare function basename(path: string, ext?: string): Promise; +/** + * Returns whether the path is absolute or not. + * @example + * ```typescript + * import { isAbsolute } from '@tauri-apps/api/path'; + * assert(await isAbsolute('/home/tauri')); + * ``` + * + * @since 1.0.0 + */ +declare function isAbsolute(path: string): Promise; +export { BaseDirectory, appConfigDir, appDataDir, appLocalDataDir, appCacheDir, appLogDir, audioDir, cacheDir, configDir, dataDir, desktopDir, documentDir, downloadDir, executableDir, fontDir, homeDir, localDataDir, pictureDir, publicDir, resourceDir, resolveResource, runtimeDir, templateDir, videoDir, sep, delimiter, resolve, normalize, join, dirname, extname, basename, isAbsolute, tempDir }; diff --git a/node_modules/@tauri-apps/api/path.js b/node_modules/@tauri-apps/api/path.js new file mode 100644 index 0000000..3e7050e --- /dev/null +++ b/node_modules/@tauri-apps/api/path.js @@ -0,0 +1,703 @@ +import { invoke } from './core.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * The path module provides utilities for working with file and directory paths. + * + * This package is also accessible with `window.__TAURI__.path` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * + * It is recommended to allowlist only the APIs you use for optimal bundle size and security. + * @module + */ +/** + * @since 2.0.0 + */ +var BaseDirectory; +(function (BaseDirectory) { + /** + * @see {@link audioDir} for more information. + */ + BaseDirectory[BaseDirectory["Audio"] = 1] = "Audio"; + /** + * @see {@link cacheDir} for more information. + */ + BaseDirectory[BaseDirectory["Cache"] = 2] = "Cache"; + /** + * @see {@link configDir} for more information. + */ + BaseDirectory[BaseDirectory["Config"] = 3] = "Config"; + /** + * @see {@link dataDir} for more information. + */ + BaseDirectory[BaseDirectory["Data"] = 4] = "Data"; + /** + * @see {@link localDataDir} for more information. + */ + BaseDirectory[BaseDirectory["LocalData"] = 5] = "LocalData"; + /** + * @see {@link documentDir} for more information. + */ + BaseDirectory[BaseDirectory["Document"] = 6] = "Document"; + /** + * @see {@link downloadDir} for more information. + */ + BaseDirectory[BaseDirectory["Download"] = 7] = "Download"; + /** + * @see {@link pictureDir} for more information. + */ + BaseDirectory[BaseDirectory["Picture"] = 8] = "Picture"; + /** + * @see {@link publicDir} for more information. + */ + BaseDirectory[BaseDirectory["Public"] = 9] = "Public"; + /** + * @see {@link videoDir} for more information. + */ + BaseDirectory[BaseDirectory["Video"] = 10] = "Video"; + /** + * @see {@link resourceDir} for more information. + */ + BaseDirectory[BaseDirectory["Resource"] = 11] = "Resource"; + /** + * @see {@link tempDir} for more information. + */ + BaseDirectory[BaseDirectory["Temp"] = 12] = "Temp"; + /** + * @see {@link appConfigDir} for more information. + */ + BaseDirectory[BaseDirectory["AppConfig"] = 13] = "AppConfig"; + /** + * @see {@link appDataDir} for more information. + */ + BaseDirectory[BaseDirectory["AppData"] = 14] = "AppData"; + /** + * @see {@link appLocalDataDir} for more information. + */ + BaseDirectory[BaseDirectory["AppLocalData"] = 15] = "AppLocalData"; + /** + * @see {@link appCacheDir} for more information. + */ + BaseDirectory[BaseDirectory["AppCache"] = 16] = "AppCache"; + /** + * @see {@link appLogDir} for more information. + */ + BaseDirectory[BaseDirectory["AppLog"] = 17] = "AppLog"; + /** + * @see {@link desktopDir} for more information. + */ + BaseDirectory[BaseDirectory["Desktop"] = 18] = "Desktop"; + /** + * @see {@link executableDir} for more information. + */ + BaseDirectory[BaseDirectory["Executable"] = 19] = "Executable"; + /** + * @see {@link fontDir} for more information. + */ + BaseDirectory[BaseDirectory["Font"] = 20] = "Font"; + /** + * @see {@link homeDir} for more information. + */ + BaseDirectory[BaseDirectory["Home"] = 21] = "Home"; + /** + * @see {@link runtimeDir} for more information. + */ + BaseDirectory[BaseDirectory["Runtime"] = 22] = "Runtime"; + /** + * @see {@link templateDir} for more information. + */ + BaseDirectory[BaseDirectory["Template"] = 23] = "Template"; +})(BaseDirectory || (BaseDirectory = {})); +/** + * Returns the path to the suggested directory for your app's config files. + * Resolves to `${configDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appConfigDir } from '@tauri-apps/api/path'; + * const appConfigDirPath = await appConfigDir(); + * ``` + * + * @since 1.2.0 + */ +async function appConfigDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.AppConfig + }); +} +/** + * Returns the path to the suggested directory for your app's data files. + * Resolves to `${dataDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * ``` + * + * @since 1.2.0 + */ +async function appDataDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.AppData + }); +} +/** + * Returns the path to the suggested directory for your app's local data files. + * Resolves to `${localDataDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appLocalDataDir } from '@tauri-apps/api/path'; + * const appLocalDataDirPath = await appLocalDataDir(); + * ``` + * + * @since 1.2.0 + */ +async function appLocalDataDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.AppLocalData + }); +} +/** + * Returns the path to the suggested directory for your app's cache files. + * Resolves to `${cacheDir}/${bundleIdentifier}`, where `bundleIdentifier` is the [`identifier`](https://v2.tauri.app/reference/config/#identifier) value configured in `tauri.conf.json`. + * @example + * ```typescript + * import { appCacheDir } from '@tauri-apps/api/path'; + * const appCacheDirPath = await appCacheDir(); + * ``` + * + * @since 1.2.0 + */ +async function appCacheDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.AppCache + }); +} +/** + * Returns the path to the user's audio directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_MUSIC_DIR`. + * - **macOS:** Resolves to `$HOME/Music`. + * - **Windows:** Resolves to `{FOLDERID_Music}`. + * @example + * ```typescript + * import { audioDir } from '@tauri-apps/api/path'; + * const audioDirPath = await audioDir(); + * ``` + * + * @since 1.0.0 + */ +async function audioDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Audio + }); +} +/** + * Returns the path to the user's cache directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_CACHE_HOME` or `$HOME/.cache`. + * - **macOS:** Resolves to `$HOME/Library/Caches`. + * - **Windows:** Resolves to `{FOLDERID_LocalAppData}`. + * @example + * ```typescript + * import { cacheDir } from '@tauri-apps/api/path'; + * const cacheDirPath = await cacheDir(); + * ``` + * + * @since 1.0.0 + */ +async function cacheDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Cache + }); +} +/** + * Returns the path to the user's config directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_CONFIG_HOME` or `$HOME/.config`. + * - **macOS:** Resolves to `$HOME/Library/Application Support`. + * - **Windows:** Resolves to `{FOLDERID_RoamingAppData}`. + * @example + * ```typescript + * import { configDir } from '@tauri-apps/api/path'; + * const configDirPath = await configDir(); + * ``` + * + * @since 1.0.0 + */ +async function configDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Config + }); +} +/** + * Returns the path to the user's data directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_DATA_HOME` or `$HOME/.local/share`. + * - **macOS:** Resolves to `$HOME/Library/Application Support`. + * - **Windows:** Resolves to `{FOLDERID_RoamingAppData}`. + * @example + * ```typescript + * import { dataDir } from '@tauri-apps/api/path'; + * const dataDirPath = await dataDir(); + * ``` + * + * @since 1.0.0 + */ +async function dataDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Data + }); +} +/** + * Returns the path to the user's desktop directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_DESKTOP_DIR`. + * - **macOS:** Resolves to `$HOME/Desktop`. + * - **Windows:** Resolves to `{FOLDERID_Desktop}`. + * @example + * ```typescript + * import { desktopDir } from '@tauri-apps/api/path'; + * const desktopPath = await desktopDir(); + * ``` + * + * @since 1.0.0 + */ +async function desktopDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Desktop + }); +} +/** + * Returns the path to the user's document directory. + * @example + * ```typescript + * import { documentDir } from '@tauri-apps/api/path'; + * const documentDirPath = await documentDir(); + * ``` + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_DOCUMENTS_DIR`. + * - **macOS:** Resolves to `$HOME/Documents`. + * - **Windows:** Resolves to `{FOLDERID_Documents}`. + * + * @since 1.0.0 + */ +async function documentDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Document + }); +} +/** + * Returns the path to the user's download directory. + * + * #### Platform-specific + * + * - **Linux**: Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_DOWNLOAD_DIR`. + * - **macOS**: Resolves to `$HOME/Downloads`. + * - **Windows**: Resolves to `{FOLDERID_Downloads}`. + * @example + * ```typescript + * import { downloadDir } from '@tauri-apps/api/path'; + * const downloadDirPath = await downloadDir(); + * ``` + * + * @since 1.0.0 + */ +async function downloadDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Download + }); +} +/** + * Returns the path to the user's executable directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_BIN_HOME/../bin` or `$XDG_DATA_HOME/../bin` or `$HOME/.local/bin`. + * - **macOS:** Not supported. + * - **Windows:** Not supported. + * @example + * ```typescript + * import { executableDir } from '@tauri-apps/api/path'; + * const executableDirPath = await executableDir(); + * ``` + * + * @since 1.0.0 + */ +async function executableDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Executable + }); +} +/** + * Returns the path to the user's font directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_DATA_HOME/fonts` or `$HOME/.local/share/fonts`. + * - **macOS:** Resolves to `$HOME/Library/Fonts`. + * - **Windows:** Not supported. + * @example + * ```typescript + * import { fontDir } from '@tauri-apps/api/path'; + * const fontDirPath = await fontDir(); + * ``` + * + * @since 1.0.0 + */ +async function fontDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Font + }); +} +/** + * Returns the path to the user's home directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$HOME`. + * - **macOS:** Resolves to `$HOME`. + * - **Windows:** Resolves to `{FOLDERID_Profile}`. + * @example + * ```typescript + * import { homeDir } from '@tauri-apps/api/path'; + * const homeDirPath = await homeDir(); + * ``` + * + * @since 1.0.0 + */ +async function homeDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Home + }); +} +/** + * Returns the path to the user's local data directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_DATA_HOME` or `$HOME/.local/share`. + * - **macOS:** Resolves to `$HOME/Library/Application Support`. + * - **Windows:** Resolves to `{FOLDERID_LocalAppData}`. + * @example + * ```typescript + * import { localDataDir } from '@tauri-apps/api/path'; + * const localDataDirPath = await localDataDir(); + * ``` + * + * @since 1.0.0 + */ +async function localDataDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.LocalData + }); +} +/** + * Returns the path to the user's picture directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_PICTURES_DIR`. + * - **macOS:** Resolves to `$HOME/Pictures`. + * - **Windows:** Resolves to `{FOLDERID_Pictures}`. + * @example + * ```typescript + * import { pictureDir } from '@tauri-apps/api/path'; + * const pictureDirPath = await pictureDir(); + * ``` + * + * @since 1.0.0 + */ +async function pictureDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Picture + }); +} +/** + * Returns the path to the user's public directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_PUBLICSHARE_DIR`. + * - **macOS:** Resolves to `$HOME/Public`. + * - **Windows:** Resolves to `{FOLDERID_Public}`. + * @example + * ```typescript + * import { publicDir } from '@tauri-apps/api/path'; + * const publicDirPath = await publicDir(); + * ``` + * + * @since 1.0.0 + */ +async function publicDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Public + }); +} +/** + * Returns the path to the application's resource directory. + * To resolve a resource path, see the [[resolveResource | `resolveResource API`]]. + * @example + * ```typescript + * import { resourceDir } from '@tauri-apps/api/path'; + * const resourceDirPath = await resourceDir(); + * ``` + * + * @since 1.0.0 + */ +async function resourceDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Resource + }); +} +/** + * Resolve the path to a resource file. + * @example + * ```typescript + * import { resolveResource } from '@tauri-apps/api/path'; + * const resourcePath = await resolveResource('script.sh'); + * ``` + * + * @param resourcePath The path to the resource. + * Must follow the same syntax as defined in `tauri.conf.json > bundle > resources`, i.e. keeping subfolders and parent dir components (`../`). + * @returns The full path to the resource. + * + * @since 1.0.0 + */ +async function resolveResource(resourcePath) { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Resource, + path: resourcePath + }); +} +/** + * Returns the path to the user's runtime directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `$XDG_RUNTIME_DIR`. + * - **macOS:** Not supported. + * - **Windows:** Not supported. + * @example + * ```typescript + * import { runtimeDir } from '@tauri-apps/api/path'; + * const runtimeDirPath = await runtimeDir(); + * ``` + * + * @since 1.0.0 + */ +async function runtimeDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Runtime + }); +} +/** + * Returns the path to the user's template directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_TEMPLATES_DIR`. + * - **macOS:** Not supported. + * - **Windows:** Resolves to `{FOLDERID_Templates}`. + * @example + * ```typescript + * import { templateDir } from '@tauri-apps/api/path'; + * const templateDirPath = await templateDir(); + * ``` + * + * @since 1.0.0 + */ +async function templateDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Template + }); +} +/** + * Returns the path to the user's video directory. + * + * #### Platform-specific + * + * - **Linux:** Resolves to [`xdg-user-dirs`](https://www.freedesktop.org/wiki/Software/xdg-user-dirs/)' `XDG_VIDEOS_DIR`. + * - **macOS:** Resolves to `$HOME/Movies`. + * - **Windows:** Resolves to `{FOLDERID_Videos}`. + * @example + * ```typescript + * import { videoDir } from '@tauri-apps/api/path'; + * const videoDirPath = await videoDir(); + * ``` + * + * @since 1.0.0 + */ +async function videoDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Video + }); +} +/** + * Returns the path to the suggested directory for your app's log files. + * + * #### Platform-specific + * + * - **Linux:** Resolves to `${configDir}/${bundleIdentifier}/logs`. + * - **macOS:** Resolves to `${homeDir}/Library/Logs/{bundleIdentifier}` + * - **Windows:** Resolves to `${configDir}/${bundleIdentifier}/logs`. + * @example + * ```typescript + * import { appLogDir } from '@tauri-apps/api/path'; + * const appLogDirPath = await appLogDir(); + * ``` + * + * @since 1.2.0 + */ +async function appLogDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.AppLog + }); +} +/** + * Returns a temporary directory. + * @example + * ```typescript + * import { tempDir } from '@tauri-apps/api/path'; + * const temp = await tempDir(); + * ``` + * + * @since 2.0.0 + */ +async function tempDir() { + return invoke('plugin:path|resolve_directory', { + directory: BaseDirectory.Temp + }); +} +/** + * Returns the platform-specific path segment separator: + * - `\` on Windows + * - `/` on POSIX + * + * @since 2.0.0 + */ +function sep() { + return window.__TAURI_INTERNALS__.plugins.path.sep; +} +/** + * Returns the platform-specific path segment delimiter: + * - `;` on Windows + * - `:` on POSIX + * + * @since 2.0.0 + */ +function delimiter() { + return window.__TAURI_INTERNALS__.plugins.path.delimiter; +} +/** + * Resolves a sequence of `paths` or `path` segments into an absolute path. + * @example + * ```typescript + * import { resolve, appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * const path = await resolve(appDataDirPath, '..', 'users', 'tauri', 'avatar.png'); + * ``` + * + * @since 1.0.0 + */ +async function resolve(...paths) { + return invoke('plugin:path|resolve', { paths }); +} +/** + * Normalizes the given `path`, resolving `'..'` and `'.'` segments and resolve symbolic links. + * @example + * ```typescript + * import { normalize, appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * const path = await normalize(`${appDataDirPath}/../users/tauri/avatar.png`); + * ``` + * + * @since 1.0.0 + */ +async function normalize(path) { + return invoke('plugin:path|normalize', { path }); +} +/** + * Joins all given `path` segments together using the platform-specific separator as a delimiter, then normalizes the resulting path. + * @example + * ```typescript + * import { join, appDataDir } from '@tauri-apps/api/path'; + * const appDataDirPath = await appDataDir(); + * const path = await join(appDataDirPath, 'users', 'tauri', 'avatar.png'); + * ``` + * + * @since 1.0.0 + */ +async function join(...paths) { + return invoke('plugin:path|join', { paths }); +} +/** + * Returns the directory name of a `path`. Trailing directory separators are ignored. + * @example + * ```typescript + * import { dirname } from '@tauri-apps/api/path'; + * const dir = await dirname('/path/to/somedir/'); + * assert(dir === 'somedir'); + * ``` + * + * @since 1.0.0 + */ +async function dirname(path) { + return invoke('plugin:path|dirname', { path }); +} +/** + * Returns the extension of the `path`. + * @example + * ```typescript + * import { extname } from '@tauri-apps/api/path'; + * const ext = await extname('/path/to/file.html'); + * assert(ext === 'html'); + * ``` + * + * @since 1.0.0 + */ +async function extname(path) { + return invoke('plugin:path|extname', { path }); +} +/** + * Returns the last portion of a `path`. Trailing directory separators are ignored. + * @example + * ```typescript + * import { basename } from '@tauri-apps/api/path'; + * const base = await basename('path/to/app.conf'); + * assert(base === 'app.conf'); + * ``` + * @param ext An optional file extension to be removed from the returned path. + * + * @since 1.0.0 + */ +async function basename(path, ext) { + return invoke('plugin:path|basename', { path, ext }); +} +/** + * Returns whether the path is absolute or not. + * @example + * ```typescript + * import { isAbsolute } from '@tauri-apps/api/path'; + * assert(await isAbsolute('/home/tauri')); + * ``` + * + * @since 1.0.0 + */ +async function isAbsolute(path) { + return invoke('plugin:path|is_absolute', { path }); +} + +export { BaseDirectory, appCacheDir, appConfigDir, appDataDir, appLocalDataDir, appLogDir, audioDir, basename, cacheDir, configDir, dataDir, delimiter, desktopDir, dirname, documentDir, downloadDir, executableDir, extname, fontDir, homeDir, isAbsolute, join, localDataDir, normalize, pictureDir, publicDir, resolve, resolveResource, resourceDir, runtimeDir, sep, tempDir, templateDir, videoDir }; diff --git a/node_modules/@tauri-apps/api/tray.cjs b/node_modules/@tauri-apps/api/tray.cjs new file mode 100644 index 0000000..e6d8817 --- /dev/null +++ b/node_modules/@tauri-apps/api/tray.cjs @@ -0,0 +1,188 @@ +'use strict'; + +var core = require('./core.cjs'); +var image = require('./image.cjs'); +var dpi = require('./dpi.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Tray icon class and associated methods. This type constructor is private, + * instead, you should use the static method {@linkcode TrayIcon.new}. + * + * #### Warning + * + * Unlike Rust, javascript does not have any way to run cleanup code + * when an object is being removed by garbage collection, but this tray icon + * will be cleaned up when the tauri app exists, however if you want to cleanup + * this object early, you need to call {@linkcode TrayIcon.close}. + * + * @example + * ```ts + * import { TrayIcon } from '@tauri-apps/api/tray'; + * const tray = await TrayIcon.new({ tooltip: 'awesome tray tooltip' }); + * tray.set_tooltip('new tooltip'); + * ``` + */ +class TrayIcon extends core.Resource { + constructor(rid, id) { + super(rid); + this.id = id; + } + /** Gets a tray icon using the provided id. */ + static async getById(id) { + return core.invoke('plugin:tray|get_by_id', { id }).then((rid) => rid ? new TrayIcon(rid, id) : null); + } + /** + * Removes a tray icon using the provided id from tauri's internal state. + * + * Note that this may cause the tray icon to disappear + * if it wasn't cloned somewhere else or referenced by JS. + */ + static async removeById(id) { + return core.invoke('plugin:tray|remove_by_id', { id }); + } + /** + * Creates a new {@linkcode TrayIcon} + * + * #### Platform-specific: + * + * - **Linux:** Sometimes the icon won't be visible unless a menu is set. + * Setting an empty {@linkcode Menu} is enough. + */ + static async new(options) { + if (options === null || options === void 0 ? void 0 : options.menu) { + // @ts-expect-error we only need the rid and kind + options.menu = [options.menu.rid, options.menu.kind]; + } + if (options === null || options === void 0 ? void 0 : options.icon) { + options.icon = image.transformImage(options.icon); + } + const handler = new core.Channel(); + if (options === null || options === void 0 ? void 0 : options.action) { + const action = options.action; + handler.onmessage = (e) => action(mapEvent(e)); + delete options.action; + } + return core.invoke('plugin:tray|new', { + options: options !== null && options !== void 0 ? options : {}, + handler + }).then(([rid, id]) => new TrayIcon(rid, id)); + } + /** + * Sets a new tray icon. If `null` is provided, it will remove the icon. + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + async setIcon(icon) { + let trayIcon = null; + if (icon) { + trayIcon = image.transformImage(icon); + } + return core.invoke('plugin:tray|set_icon', { rid: this.rid, icon: trayIcon }); + } + /** + * Sets a new tray menu. + * + * #### Platform-specific: + * + * - **Linux**: once a menu is set it cannot be removed so `null` has no effect + */ + async setMenu(menu) { + if (menu) { + // @ts-expect-error we only need the rid and kind + menu = [menu.rid, menu.kind]; + } + return core.invoke('plugin:tray|set_menu', { rid: this.rid, menu }); + } + /** + * Sets the tooltip for this tray icon. + * + * #### Platform-specific: + * + * - **Linux:** Unsupported + */ + async setTooltip(tooltip) { + return core.invoke('plugin:tray|set_tooltip', { rid: this.rid, tooltip }); + } + /** + * Sets the tooltip for this tray icon. + * + * #### Platform-specific: + * + * - **Linux:** The title will not be shown unless there is an icon + * as well. The title is useful for numerical and other frequently + * updated information. In general, it shouldn't be shown unless a + * user requests it as it can take up a significant amount of space + * on the user's panel. This may not be shown in all visualizations. + * - **Windows:** Unsupported + */ + async setTitle(title) { + return core.invoke('plugin:tray|set_title', { rid: this.rid, title }); + } + /** Show or hide this tray icon. */ + async setVisible(visible) { + return core.invoke('plugin:tray|set_visible', { rid: this.rid, visible }); + } + /** + * Sets the tray icon temp dir path. **Linux only**. + * + * On Linux, we need to write the icon to the disk and usually it will + * be `$XDG_RUNTIME_DIR/tray-icon` or `$TEMP/tray-icon`. + */ + async setTempDirPath(path) { + return core.invoke('plugin:tray|set_temp_dir_path', { rid: this.rid, path }); + } + /** Sets the current icon as a [template](https://developer.apple.com/documentation/appkit/nsimage/1520017-template?language=objc). **macOS only** */ + async setIconAsTemplate(asTemplate) { + return core.invoke('plugin:tray|set_icon_as_template', { + rid: this.rid, + asTemplate + }); + } + /** + * Disable or enable showing the tray menu on left click. + * + * #### Platform-specific: + * + * - **Linux**: Unsupported. + * + * @deprecated use {@linkcode TrayIcon.setShowMenuOnLeftClick} instead. + */ + async setMenuOnLeftClick(onLeft) { + return core.invoke('plugin:tray|set_show_menu_on_left_click', { + rid: this.rid, + onLeft + }); + } + /** + * Disable or enable showing the tray menu on left click. + * + * #### Platform-specific: + * + * - **Linux**: Unsupported. + * + * @since 2.2.0 + */ + async setShowMenuOnLeftClick(onLeft) { + return core.invoke('plugin:tray|set_show_menu_on_left_click', { + rid: this.rid, + onLeft + }); + } +} +function mapEvent(e) { + const out = e; + out.position = new dpi.PhysicalPosition(e.position); + out.rect.position = new dpi.PhysicalPosition(e.rect.position); + out.rect.size = new dpi.PhysicalSize(e.rect.size); + return out; +} + +exports.TrayIcon = TrayIcon; diff --git a/node_modules/@tauri-apps/api/tray.d.ts b/node_modules/@tauri-apps/api/tray.d.ts new file mode 100644 index 0000000..d3ee8ed --- /dev/null +++ b/node_modules/@tauri-apps/api/tray.d.ts @@ -0,0 +1,219 @@ +import type { Menu, Submenu } from './menu'; +import { Resource } from './core'; +import { Image } from './image'; +import { PhysicalPosition, PhysicalSize } from './dpi'; +export type MouseButtonState = 'Up' | 'Down'; +export type MouseButton = 'Left' | 'Right' | 'Middle'; +export type TrayIconEventType = 'Click' | 'DoubleClick' | 'Enter' | 'Move' | 'Leave'; +export type TrayIconEventBase = { + /** The tray icon event type */ + type: T; + /** Id of the tray icon which triggered this event. */ + id: string; + /** Physical position of the click the triggered this event. */ + position: PhysicalPosition; + /** Position and size of the tray icon. */ + rect: { + position: PhysicalPosition; + size: PhysicalSize; + }; +}; +export type TrayIconClickEvent = { + /** Mouse button that triggered this event. */ + button: MouseButton; + /** Mouse button state when this event was triggered. */ + buttonState: MouseButtonState; +}; +/** + * Describes a tray icon event. + * + * #### Platform-specific: + * + * - **Linux**: Unsupported. The event is not emitted even though the icon is shown, + * the icon will still show a context menu on right click. + */ +export type TrayIconEvent = (TrayIconEventBase<'Click'> & TrayIconClickEvent) | (TrayIconEventBase<'DoubleClick'> & Omit) | TrayIconEventBase<'Enter'> | TrayIconEventBase<'Move'> | TrayIconEventBase<'Leave'>; +/** + * Tray icon types and utilities. + * + * This package is also accessible with `window.__TAURI__.tray` when [`app.withGlobalTauri`](https://v2.tauri.app/reference/config/#withglobaltauri) in `tauri.conf.json` is set to `true`. + * @module + */ +/** {@link TrayIcon.new|`TrayIcon`} creation options */ +export interface TrayIconOptions { + /** The tray icon id. If undefined, a random one will be assigned */ + id?: string; + /** The tray icon menu */ + menu?: Menu | Submenu; + /** + * The tray icon which could be icon bytes or path to the icon file. + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + icon?: string | Uint8Array | ArrayBuffer | number[] | Image; + /** The tray icon tooltip */ + tooltip?: string; + /** + * The tray title + * + * #### Platform-specific + * + * - **Linux:** The title will not be shown unless there is an icon + * as well. The title is useful for numerical and other frequently + * updated information. In general, it shouldn't be shown unless a + * user requests it as it can take up a significant amount of space + * on the user's panel. This may not be shown in all visualizations. + * - **Windows:** Unsupported. + */ + title?: string; + /** + * The tray icon temp dir path. **Linux only**. + * + * On Linux, we need to write the icon to the disk and usually it will + * be `$XDG_RUNTIME_DIR/tray-icon` or `$TEMP/tray-icon`. + */ + tempDirPath?: string; + /** + * Use the icon as a [template](https://developer.apple.com/documentation/appkit/nsimage/1520017-template?language=objc). **macOS only**. + */ + iconAsTemplate?: boolean; + /** + * Whether to show the tray menu on left click or not, default is `true`. + * + * #### Platform-specific: + * + * - **Linux**: Unsupported. + * + * @deprecated use {@linkcode TrayIconOptions.showMenuOnLeftClick} instead. + */ + menuOnLeftClick?: boolean; + /** + * Whether to show the tray menu on left click or not, default is `true`. + * + * #### Platform-specific: + * + * - **Linux**: Unsupported. + * + * @since 2.2.0 + */ + showMenuOnLeftClick?: boolean; + /** A handler for an event on the tray icon. */ + action?: (event: TrayIconEvent) => void; +} +/** + * Tray icon class and associated methods. This type constructor is private, + * instead, you should use the static method {@linkcode TrayIcon.new}. + * + * #### Warning + * + * Unlike Rust, javascript does not have any way to run cleanup code + * when an object is being removed by garbage collection, but this tray icon + * will be cleaned up when the tauri app exists, however if you want to cleanup + * this object early, you need to call {@linkcode TrayIcon.close}. + * + * @example + * ```ts + * import { TrayIcon } from '@tauri-apps/api/tray'; + * const tray = await TrayIcon.new({ tooltip: 'awesome tray tooltip' }); + * tray.set_tooltip('new tooltip'); + * ``` + */ +export declare class TrayIcon extends Resource { + /** The id associated with this tray icon. */ + id: string; + private constructor(); + /** Gets a tray icon using the provided id. */ + static getById(id: string): Promise; + /** + * Removes a tray icon using the provided id from tauri's internal state. + * + * Note that this may cause the tray icon to disappear + * if it wasn't cloned somewhere else or referenced by JS. + */ + static removeById(id: string): Promise; + /** + * Creates a new {@linkcode TrayIcon} + * + * #### Platform-specific: + * + * - **Linux:** Sometimes the icon won't be visible unless a menu is set. + * Setting an empty {@linkcode Menu} is enough. + */ + static new(options?: TrayIconOptions): Promise; + /** + * Sets a new tray icon. If `null` is provided, it will remove the icon. + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + setIcon(icon: string | Image | Uint8Array | ArrayBuffer | number[] | null): Promise; + /** + * Sets a new tray menu. + * + * #### Platform-specific: + * + * - **Linux**: once a menu is set it cannot be removed so `null` has no effect + */ + setMenu(menu: Menu | Submenu | null): Promise; + /** + * Sets the tooltip for this tray icon. + * + * #### Platform-specific: + * + * - **Linux:** Unsupported + */ + setTooltip(tooltip: string | null): Promise; + /** + * Sets the tooltip for this tray icon. + * + * #### Platform-specific: + * + * - **Linux:** The title will not be shown unless there is an icon + * as well. The title is useful for numerical and other frequently + * updated information. In general, it shouldn't be shown unless a + * user requests it as it can take up a significant amount of space + * on the user's panel. This may not be shown in all visualizations. + * - **Windows:** Unsupported + */ + setTitle(title: string | null): Promise; + /** Show or hide this tray icon. */ + setVisible(visible: boolean): Promise; + /** + * Sets the tray icon temp dir path. **Linux only**. + * + * On Linux, we need to write the icon to the disk and usually it will + * be `$XDG_RUNTIME_DIR/tray-icon` or `$TEMP/tray-icon`. + */ + setTempDirPath(path: string | null): Promise; + /** Sets the current icon as a [template](https://developer.apple.com/documentation/appkit/nsimage/1520017-template?language=objc). **macOS only** */ + setIconAsTemplate(asTemplate: boolean): Promise; + /** + * Disable or enable showing the tray menu on left click. + * + * #### Platform-specific: + * + * - **Linux**: Unsupported. + * + * @deprecated use {@linkcode TrayIcon.setShowMenuOnLeftClick} instead. + */ + setMenuOnLeftClick(onLeft: boolean): Promise; + /** + * Disable or enable showing the tray menu on left click. + * + * #### Platform-specific: + * + * - **Linux**: Unsupported. + * + * @since 2.2.0 + */ + setShowMenuOnLeftClick(onLeft: boolean): Promise; +} diff --git a/node_modules/@tauri-apps/api/tray.js b/node_modules/@tauri-apps/api/tray.js new file mode 100644 index 0000000..dceda43 --- /dev/null +++ b/node_modules/@tauri-apps/api/tray.js @@ -0,0 +1,186 @@ +import { Resource, invoke, Channel } from './core.js'; +import { transformImage } from './image.js'; +import { PhysicalPosition, PhysicalSize } from './dpi.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Tray icon class and associated methods. This type constructor is private, + * instead, you should use the static method {@linkcode TrayIcon.new}. + * + * #### Warning + * + * Unlike Rust, javascript does not have any way to run cleanup code + * when an object is being removed by garbage collection, but this tray icon + * will be cleaned up when the tauri app exists, however if you want to cleanup + * this object early, you need to call {@linkcode TrayIcon.close}. + * + * @example + * ```ts + * import { TrayIcon } from '@tauri-apps/api/tray'; + * const tray = await TrayIcon.new({ tooltip: 'awesome tray tooltip' }); + * tray.set_tooltip('new tooltip'); + * ``` + */ +class TrayIcon extends Resource { + constructor(rid, id) { + super(rid); + this.id = id; + } + /** Gets a tray icon using the provided id. */ + static async getById(id) { + return invoke('plugin:tray|get_by_id', { id }).then((rid) => rid ? new TrayIcon(rid, id) : null); + } + /** + * Removes a tray icon using the provided id from tauri's internal state. + * + * Note that this may cause the tray icon to disappear + * if it wasn't cloned somewhere else or referenced by JS. + */ + static async removeById(id) { + return invoke('plugin:tray|remove_by_id', { id }); + } + /** + * Creates a new {@linkcode TrayIcon} + * + * #### Platform-specific: + * + * - **Linux:** Sometimes the icon won't be visible unless a menu is set. + * Setting an empty {@linkcode Menu} is enough. + */ + static async new(options) { + if (options === null || options === void 0 ? void 0 : options.menu) { + // @ts-expect-error we only need the rid and kind + options.menu = [options.menu.rid, options.menu.kind]; + } + if (options === null || options === void 0 ? void 0 : options.icon) { + options.icon = transformImage(options.icon); + } + const handler = new Channel(); + if (options === null || options === void 0 ? void 0 : options.action) { + const action = options.action; + handler.onmessage = (e) => action(mapEvent(e)); + delete options.action; + } + return invoke('plugin:tray|new', { + options: options !== null && options !== void 0 ? options : {}, + handler + }).then(([rid, id]) => new TrayIcon(rid, id)); + } + /** + * Sets a new tray icon. If `null` is provided, it will remove the icon. + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + */ + async setIcon(icon) { + let trayIcon = null; + if (icon) { + trayIcon = transformImage(icon); + } + return invoke('plugin:tray|set_icon', { rid: this.rid, icon: trayIcon }); + } + /** + * Sets a new tray menu. + * + * #### Platform-specific: + * + * - **Linux**: once a menu is set it cannot be removed so `null` has no effect + */ + async setMenu(menu) { + if (menu) { + // @ts-expect-error we only need the rid and kind + menu = [menu.rid, menu.kind]; + } + return invoke('plugin:tray|set_menu', { rid: this.rid, menu }); + } + /** + * Sets the tooltip for this tray icon. + * + * #### Platform-specific: + * + * - **Linux:** Unsupported + */ + async setTooltip(tooltip) { + return invoke('plugin:tray|set_tooltip', { rid: this.rid, tooltip }); + } + /** + * Sets the tooltip for this tray icon. + * + * #### Platform-specific: + * + * - **Linux:** The title will not be shown unless there is an icon + * as well. The title is useful for numerical and other frequently + * updated information. In general, it shouldn't be shown unless a + * user requests it as it can take up a significant amount of space + * on the user's panel. This may not be shown in all visualizations. + * - **Windows:** Unsupported + */ + async setTitle(title) { + return invoke('plugin:tray|set_title', { rid: this.rid, title }); + } + /** Show or hide this tray icon. */ + async setVisible(visible) { + return invoke('plugin:tray|set_visible', { rid: this.rid, visible }); + } + /** + * Sets the tray icon temp dir path. **Linux only**. + * + * On Linux, we need to write the icon to the disk and usually it will + * be `$XDG_RUNTIME_DIR/tray-icon` or `$TEMP/tray-icon`. + */ + async setTempDirPath(path) { + return invoke('plugin:tray|set_temp_dir_path', { rid: this.rid, path }); + } + /** Sets the current icon as a [template](https://developer.apple.com/documentation/appkit/nsimage/1520017-template?language=objc). **macOS only** */ + async setIconAsTemplate(asTemplate) { + return invoke('plugin:tray|set_icon_as_template', { + rid: this.rid, + asTemplate + }); + } + /** + * Disable or enable showing the tray menu on left click. + * + * #### Platform-specific: + * + * - **Linux**: Unsupported. + * + * @deprecated use {@linkcode TrayIcon.setShowMenuOnLeftClick} instead. + */ + async setMenuOnLeftClick(onLeft) { + return invoke('plugin:tray|set_show_menu_on_left_click', { + rid: this.rid, + onLeft + }); + } + /** + * Disable or enable showing the tray menu on left click. + * + * #### Platform-specific: + * + * - **Linux**: Unsupported. + * + * @since 2.2.0 + */ + async setShowMenuOnLeftClick(onLeft) { + return invoke('plugin:tray|set_show_menu_on_left_click', { + rid: this.rid, + onLeft + }); + } +} +function mapEvent(e) { + const out = e; + out.position = new PhysicalPosition(e.position); + out.rect.position = new PhysicalPosition(e.rect.position); + out.rect.size = new PhysicalSize(e.rect.size); + return out; +} + +export { TrayIcon }; diff --git a/node_modules/@tauri-apps/api/webview.cjs b/node_modules/@tauri-apps/api/webview.cjs new file mode 100644 index 0000000..440231a --- /dev/null +++ b/node_modules/@tauri-apps/api/webview.cjs @@ -0,0 +1,548 @@ +'use strict'; + +var dpi = require('./dpi.cjs'); +var event = require('./event.cjs'); +var core = require('./core.cjs'); +var window$1 = require('./window.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Provides APIs to create webviews, communicate with other webviews and manipulate the current webview. + * + * #### Webview events + * + * Events can be listened to using {@link Webview.listen}: + * ```typescript + * import { getCurrentWebview } from "@tauri-apps/api/webview"; + * getCurrentWebview().listen("my-webview-event", ({ event, payload }) => { }); + * ``` + * + * @module + */ +/** + * Get an instance of `Webview` for the current webview. + * + * @since 2.0.0 + */ +function getCurrentWebview() { + return new Webview(window$1.getCurrentWindow(), window.__TAURI_INTERNALS__.metadata.currentWebview.label, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }); +} +/** + * Gets a list of instances of `Webview` for all available webviews. + * + * @since 2.0.0 + */ +async function getAllWebviews() { + return core.invoke('plugin:webview|get_all_webviews').then((webviews) => webviews.map((w) => new Webview(new window$1.Window(w.windowLabel, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }), w.label, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }))); +} +/** @ignore */ +// events that are emitted right here instead of by the created webview +const localTauriEvents = ['tauri://created', 'tauri://error']; +/** + * Create new webview or get a handle to an existing one. + * + * Webviews are identified by a *label* a unique identifier that can be used to reference it later. + * It may only contain alphanumeric characters `a-zA-Z` plus the following special characters `-`, `/`, `:` and `_`. + * + * @example + * ```typescript + * import { Window } from "@tauri-apps/api/window" + * import { Webview } from "@tauri-apps/api/webview" + * + * const appWindow = new Window('uniqueLabel'); + * + * // loading embedded asset: + * const webview = new Webview(appWindow, 'theUniqueLabel', { + * url: 'path/to/page.html' + * }); + * // alternatively, load a remote URL: + * const webview = new Webview(appWindow, 'theUniqueLabel', { + * url: 'https://github.com/tauri-apps/tauri' + * }); + * + * webview.once('tauri://created', function () { + * // webview successfully created + * }); + * webview.once('tauri://error', function (e) { + * // an error happened creating the webview + * }); + * + * // emit an event to the backend + * await webview.emit("some-event", "data"); + * // listen to an event from the backend + * const unlisten = await webview.listen("event-name", e => {}); + * unlisten(); + * ``` + * + * @since 2.0.0 + */ +class Webview { + /** + * Creates a new Webview. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window' + * import { Webview } from '@tauri-apps/api/webview' + * const appWindow = new Window('my-label') + * const webview = new Webview(appWindow, 'my-label', { + * url: 'https://github.com/tauri-apps/tauri' + * }); + * webview.once('tauri://created', function () { + * // webview successfully created + * }); + * webview.once('tauri://error', function (e) { + * // an error happened creating the webview + * }); + * ``` + * + * @param window the window to add this webview to. + * @param label The unique webview label. Must be alphanumeric: `a-zA-Z-/:_`. + * @returns The {@link Webview} instance to communicate with the webview. + */ + constructor(window, label, options) { + this.window = window; + this.label = label; + // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment + this.listeners = Object.create(null); + // @ts-expect-error `skip` is not a public API so it is not defined in WebviewOptions + if (!(options === null || options === void 0 ? void 0 : options.skip)) { + core.invoke('plugin:webview|create_webview', { + windowLabel: window.label, + label, + options + }) + .then(async () => this.emit('tauri://created')) + .catch(async (e) => this.emit('tauri://error', e)); + } + } + /** + * Gets the Webview for the webview associated with the given label. + * @example + * ```typescript + * import { Webview } from '@tauri-apps/api/webview'; + * const mainWebview = Webview.getByLabel('main'); + * ``` + * + * @param label The webview label. + * @returns The Webview instance to communicate with the webview or null if the webview doesn't exist. + */ + static async getByLabel(label) { + var _a; + return (_a = (await getAllWebviews()).find((w) => w.label === label)) !== null && _a !== void 0 ? _a : null; + } + /** + * Get an instance of `Webview` for the current webview. + */ + static getCurrent() { + return getCurrentWebview(); + } + /** + * Gets a list of instances of `Webview` for all available webviews. + */ + static async getAll() { + return getAllWebviews(); + } + /** + * Listen to an emitted event on this webview. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const unlisten = await getCurrentWebview().listen('state-changed', (event) => { + * console.log(`Got error: ${payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async listen(event$1, handler) { + if (this._handleTauriEvent(event$1, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event$1]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return event.listen(event$1, handler, { + target: { kind: 'Webview', label: this.label } + }); + } + /** + * Listen to an emitted event on this webview only once. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const unlisten = await getCurrent().once('initialized', (event) => { + * console.log(`Webview initialized!`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async once(event$1, handler) { + if (this._handleTauriEvent(event$1, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event$1]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return event.once(event$1, handler, { + target: { kind: 'Webview', label: this.label } + }); + } + /** + * Emits an event to all {@link EventTarget|targets}. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().emit('webview-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + async emit(event$1, payload) { + if (localTauriEvents.includes(event$1)) { + // eslint-disable-next-line + for (const handler of this.listeners[event$1] || []) { + handler({ + event: event$1, + id: -1, + payload + }); + } + return; + } + return event.emit(event$1, payload); + } + /** + * Emits an event to all {@link EventTarget|targets} matching the given target. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().emitTo('main', 'webview-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param target Label of the target Window/Webview/WebviewWindow or raw {@link EventTarget} object. + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + async emitTo(target, event$1, payload) { + if (localTauriEvents.includes(event$1)) { + // eslint-disable-next-line + for (const handler of this.listeners[event$1] || []) { + handler({ + event: event$1, + id: -1, + payload + }); + } + return; + } + return event.emitTo(target, event$1, payload); + } + /** @ignore */ + _handleTauriEvent(event, handler) { + if (localTauriEvents.includes(event)) { + if (!(event in this.listeners)) { + // eslint-disable-next-line security/detect-object-injection + this.listeners[event] = [handler]; + } + else { + // eslint-disable-next-line security/detect-object-injection + this.listeners[event].push(handler); + } + return true; + } + return false; + } + // Getters + /** + * The position of the top-left hand corner of the webview's client area relative to the top-left hand corner of the desktop. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const position = await getCurrentWebview().position(); + * ``` + * + * @returns The webview's position. + */ + async position() { + return core.invoke('plugin:webview|webview_position', { + label: this.label + }).then((p) => new dpi.PhysicalPosition(p)); + } + /** + * The physical size of the webview's client area. + * The client area is the content of the webview, excluding the title bar and borders. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const size = await getCurrentWebview().size(); + * ``` + * + * @returns The webview's size. + */ + async size() { + return core.invoke('plugin:webview|webview_size', { + label: this.label + }).then((s) => new dpi.PhysicalSize(s)); + } + // Setters + /** + * Closes the webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().close(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async close() { + return core.invoke('plugin:webview|webview_close', { + label: this.label + }); + } + /** + * Resizes the webview. + * @example + * ```typescript + * import { getCurrent, LogicalSize } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setSize(new LogicalSize(600, 500)); + * ``` + * + * @param size The logical or physical size. + * @returns A promise indicating the success or failure of the operation. + */ + async setSize(size) { + return core.invoke('plugin:webview|set_webview_size', { + label: this.label, + value: size instanceof dpi.Size ? size : new dpi.Size(size) + }); + } + /** + * Sets the webview position. + * @example + * ```typescript + * import { getCurrent, LogicalPosition } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setPosition(new LogicalPosition(600, 500)); + * ``` + * + * @param position The new position, in logical or physical pixels. + * @returns A promise indicating the success or failure of the operation. + */ + async setPosition(position) { + return core.invoke('plugin:webview|set_webview_position', { + label: this.label, + value: position instanceof dpi.Position ? position : new dpi.Position(position) + }); + } + /** + * Bring the webview to front and focus. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setFocus(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setFocus() { + return core.invoke('plugin:webview|set_webview_focus', { + label: this.label + }); + } + /** + * Hide the webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().hide(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async hide() { + return core.invoke('plugin:webview|webview_hide', { + label: this.label + }); + } + /** + * Show the webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().show(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async show() { + return core.invoke('plugin:webview|webview_show', { + label: this.label + }); + } + /** + * Set webview zoom level. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setZoom(1.5); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setZoom(scaleFactor) { + return core.invoke('plugin:webview|set_webview_zoom', { + label: this.label, + value: scaleFactor + }); + } + /** + * Moves this webview to the given label. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().reparent('other-window'); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async reparent(window) { + return core.invoke('plugin:webview|reparent', { + label: this.label, + window: typeof window === 'string' ? window : window.label + }); + } + /** + * Clears all browsing data for this webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().clearAllBrowsingData(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async clearAllBrowsingData() { + return core.invoke('plugin:webview|clear_all_browsing_data'); + } + /** + * Specify the webview background color. + * + * #### Platfrom-specific: + * + * - **macOS / iOS**: Not implemented. + * - **Windows**: + * - On Windows 7, transparency is not supported and the alpha value will be ignored. + * - On Windows higher than 7: translucent colors are not supported so any alpha value other than `0` will be replaced by `255` + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.1.0 + */ + async setBackgroundColor(color) { + return core.invoke('plugin:webview|set_webview_background_color', { color }); + } + // Listeners + /** + * Listen to a file drop event. + * The listener is triggered when the user hovers the selected files on the webview, + * drops the files or cancels the operation. + * + * @example + * ```typescript + * import { getCurrentWebview } from "@tauri-apps/api/webview"; + * const unlisten = await getCurrentWebview().onDragDropEvent((event) => { + * if (event.payload.type === 'over') { + * console.log('User hovering', event.payload.position); + * } else if (event.payload.type === 'drop') { + * console.log('User dropped', event.payload.paths); + * } else { + * console.log('File drop cancelled'); + * } + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * When the debugger panel is open, the drop position of this event may be inaccurate due to a known limitation. + * To retrieve the correct drop position, please detach the debugger. + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onDragDropEvent(handler) { + const unlistenDragEnter = await this.listen(event.TauriEvent.DRAG_ENTER, (event) => { + handler({ + ...event, + payload: { + type: 'enter', + paths: event.payload.paths, + position: new dpi.PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDragOver = await this.listen(event.TauriEvent.DRAG_OVER, (event) => { + handler({ + ...event, + payload: { + type: 'over', + position: new dpi.PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDragDrop = await this.listen(event.TauriEvent.DRAG_DROP, (event) => { + handler({ + ...event, + payload: { + type: 'drop', + paths: event.payload.paths, + position: new dpi.PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDragLeave = await this.listen(event.TauriEvent.DRAG_LEAVE, (event) => { + handler({ ...event, payload: { type: 'leave' } }); + }); + return () => { + unlistenDragEnter(); + unlistenDragDrop(); + unlistenDragOver(); + unlistenDragLeave(); + }; + } +} + +exports.Webview = Webview; +exports.getAllWebviews = getAllWebviews; +exports.getCurrentWebview = getCurrentWebview; diff --git a/node_modules/@tauri-apps/api/webview.d.ts b/node_modules/@tauri-apps/api/webview.d.ts new file mode 100644 index 0000000..d5dae39 --- /dev/null +++ b/node_modules/@tauri-apps/api/webview.d.ts @@ -0,0 +1,531 @@ +/** + * Provides APIs to create webviews, communicate with other webviews and manipulate the current webview. + * + * #### Webview events + * + * Events can be listened to using {@link Webview.listen}: + * ```typescript + * import { getCurrentWebview } from "@tauri-apps/api/webview"; + * getCurrentWebview().listen("my-webview-event", ({ event, payload }) => { }); + * ``` + * + * @module + */ +import { PhysicalPosition, PhysicalSize } from './dpi'; +import type { LogicalPosition, LogicalSize } from './dpi'; +import { Position, Size } from './dpi'; +import type { EventName, EventCallback, UnlistenFn } from './event'; +import { type EventTarget } from './event'; +import { BackgroundThrottlingPolicy, Color, Window } from './window'; +import { WebviewWindow } from './webviewWindow'; +/** The drag and drop event types. */ +type DragDropEvent = { + type: 'enter'; + paths: string[]; + position: PhysicalPosition; +} | { + type: 'over'; + position: PhysicalPosition; +} | { + type: 'drop'; + paths: string[]; + position: PhysicalPosition; +} | { + type: 'leave'; +}; +/** + * Get an instance of `Webview` for the current webview. + * + * @since 2.0.0 + */ +declare function getCurrentWebview(): Webview; +/** + * Gets a list of instances of `Webview` for all available webviews. + * + * @since 2.0.0 + */ +declare function getAllWebviews(): Promise; +/** @ignore */ +export type WebviewLabel = string; +/** + * Create new webview or get a handle to an existing one. + * + * Webviews are identified by a *label* a unique identifier that can be used to reference it later. + * It may only contain alphanumeric characters `a-zA-Z` plus the following special characters `-`, `/`, `:` and `_`. + * + * @example + * ```typescript + * import { Window } from "@tauri-apps/api/window" + * import { Webview } from "@tauri-apps/api/webview" + * + * const appWindow = new Window('uniqueLabel'); + * + * // loading embedded asset: + * const webview = new Webview(appWindow, 'theUniqueLabel', { + * url: 'path/to/page.html' + * }); + * // alternatively, load a remote URL: + * const webview = new Webview(appWindow, 'theUniqueLabel', { + * url: 'https://github.com/tauri-apps/tauri' + * }); + * + * webview.once('tauri://created', function () { + * // webview successfully created + * }); + * webview.once('tauri://error', function (e) { + * // an error happened creating the webview + * }); + * + * // emit an event to the backend + * await webview.emit("some-event", "data"); + * // listen to an event from the backend + * const unlisten = await webview.listen("event-name", e => {}); + * unlisten(); + * ``` + * + * @since 2.0.0 + */ +declare class Webview { + /** The webview label. It is a unique identifier for the webview, can be used to reference it later. */ + label: WebviewLabel; + /** The window hosting this webview. */ + window: Window; + /** Local event listeners. */ + listeners: Record>>; + /** + * Creates a new Webview. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window' + * import { Webview } from '@tauri-apps/api/webview' + * const appWindow = new Window('my-label') + * const webview = new Webview(appWindow, 'my-label', { + * url: 'https://github.com/tauri-apps/tauri' + * }); + * webview.once('tauri://created', function () { + * // webview successfully created + * }); + * webview.once('tauri://error', function (e) { + * // an error happened creating the webview + * }); + * ``` + * + * @param window the window to add this webview to. + * @param label The unique webview label. Must be alphanumeric: `a-zA-Z-/:_`. + * @returns The {@link Webview} instance to communicate with the webview. + */ + constructor(window: Window, label: WebviewLabel, options: WebviewOptions); + /** + * Gets the Webview for the webview associated with the given label. + * @example + * ```typescript + * import { Webview } from '@tauri-apps/api/webview'; + * const mainWebview = Webview.getByLabel('main'); + * ``` + * + * @param label The webview label. + * @returns The Webview instance to communicate with the webview or null if the webview doesn't exist. + */ + static getByLabel(label: string): Promise; + /** + * Get an instance of `Webview` for the current webview. + */ + static getCurrent(): Webview; + /** + * Gets a list of instances of `Webview` for all available webviews. + */ + static getAll(): Promise; + /** + * Listen to an emitted event on this webview. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const unlisten = await getCurrentWebview().listen('state-changed', (event) => { + * console.log(`Got error: ${payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + listen(event: EventName, handler: EventCallback): Promise; + /** + * Listen to an emitted event on this webview only once. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const unlisten = await getCurrent().once('initialized', (event) => { + * console.log(`Webview initialized!`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + once(event: EventName, handler: EventCallback): Promise; + /** + * Emits an event to all {@link EventTarget|targets}. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().emit('webview-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + emit(event: string, payload?: T): Promise; + /** + * Emits an event to all {@link EventTarget|targets} matching the given target. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().emitTo('main', 'webview-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param target Label of the target Window/Webview/WebviewWindow or raw {@link EventTarget} object. + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + emitTo(target: string | EventTarget, event: string, payload?: T): Promise; + /** @ignore */ + _handleTauriEvent(event: string, handler: EventCallback): boolean; + /** + * The position of the top-left hand corner of the webview's client area relative to the top-left hand corner of the desktop. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const position = await getCurrentWebview().position(); + * ``` + * + * @returns The webview's position. + */ + position(): Promise; + /** + * The physical size of the webview's client area. + * The client area is the content of the webview, excluding the title bar and borders. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const size = await getCurrentWebview().size(); + * ``` + * + * @returns The webview's size. + */ + size(): Promise; + /** + * Closes the webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().close(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + close(): Promise; + /** + * Resizes the webview. + * @example + * ```typescript + * import { getCurrent, LogicalSize } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setSize(new LogicalSize(600, 500)); + * ``` + * + * @param size The logical or physical size. + * @returns A promise indicating the success or failure of the operation. + */ + setSize(size: LogicalSize | PhysicalSize | Size): Promise; + /** + * Sets the webview position. + * @example + * ```typescript + * import { getCurrent, LogicalPosition } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setPosition(new LogicalPosition(600, 500)); + * ``` + * + * @param position The new position, in logical or physical pixels. + * @returns A promise indicating the success or failure of the operation. + */ + setPosition(position: LogicalPosition | PhysicalPosition | Position): Promise; + /** + * Bring the webview to front and focus. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setFocus(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + setFocus(): Promise; + /** + * Hide the webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().hide(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + hide(): Promise; + /** + * Show the webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().show(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + show(): Promise; + /** + * Set webview zoom level. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setZoom(1.5); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + setZoom(scaleFactor: number): Promise; + /** + * Moves this webview to the given label. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().reparent('other-window'); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + reparent(window: Window | WebviewWindow | string): Promise; + /** + * Clears all browsing data for this webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().clearAllBrowsingData(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + clearAllBrowsingData(): Promise; + /** + * Specify the webview background color. + * + * #### Platfrom-specific: + * + * - **macOS / iOS**: Not implemented. + * - **Windows**: + * - On Windows 7, transparency is not supported and the alpha value will be ignored. + * - On Windows higher than 7: translucent colors are not supported so any alpha value other than `0` will be replaced by `255` + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.1.0 + */ + setBackgroundColor(color: Color | null): Promise; + /** + * Listen to a file drop event. + * The listener is triggered when the user hovers the selected files on the webview, + * drops the files or cancels the operation. + * + * @example + * ```typescript + * import { getCurrentWebview } from "@tauri-apps/api/webview"; + * const unlisten = await getCurrentWebview().onDragDropEvent((event) => { + * if (event.payload.type === 'over') { + * console.log('User hovering', event.payload.position); + * } else if (event.payload.type === 'drop') { + * console.log('User dropped', event.payload.paths); + * } else { + * console.log('File drop cancelled'); + * } + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * When the debugger panel is open, the drop position of this event may be inaccurate due to a known limitation. + * To retrieve the correct drop position, please detach the debugger. + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + onDragDropEvent(handler: EventCallback): Promise; +} +/** + * Configuration for the webview to create. + * + * @since 2.0.0 + */ +interface WebviewOptions { + /** + * Remote URL or local file path to open. + * + * - URL such as `https://github.com/tauri-apps` is opened directly on a Tauri webview. + * - data: URL such as `data:text/html,...` is only supported with the `webview-data-url` Cargo feature for the `tauri` dependency. + * - local file path or route such as `/path/to/page.html` or `/users` is appended to the application URL (the devServer URL on development, or `tauri://localhost/` and `https://tauri.localhost/` on production). + */ + url?: string; + /** The initial vertical position. */ + x: number; + /** The initial horizontal position. */ + y: number; + /** The initial width. */ + width: number; + /** The initial height. */ + height: number; + /** + * Whether the webview is transparent or not. + * Note that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri.conf.json > app > macOSPrivateApi`. + * WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`. + */ + transparent?: boolean; + /** + * Whether the webview should have focus or not + * + * @since 2.1.0 + */ + focus?: boolean; + /** + * Whether the drag and drop is enabled or not on the webview. By default it is enabled. + * + * Disabling it is required to use HTML5 drag and drop on the frontend on Windows. + */ + dragDropEnabled?: boolean; + /** + * Whether clicking an inactive webview also clicks through to the webview on macOS. + */ + acceptFirstMouse?: boolean; + /** + * The user agent for the webview. + */ + userAgent?: string; + /** + * Whether or not the webview should be launched in incognito mode. + * + * #### Platform-specific + * + * - **Android:** Unsupported. + */ + incognito?: boolean; + /** + * The proxy URL for the WebView for all network requests. + * + * Must be either a `http://` or a `socks5://` URL. + * + * #### Platform-specific + * + * - **macOS**: Requires the `macos-proxy` feature flag and only compiles for macOS 14+. + * */ + proxyUrl?: string; + /** + * Whether page zooming by hotkeys is enabled + * + * #### Platform-specific: + * + * - **Windows**: Controls WebView2's [`IsZoomControlEnabled`](https://learn.microsoft.com/en-us/microsoft-edge/webview2/reference/winrt/microsoft_web_webview2_core/corewebview2settings?view=webview2-winrt-1.0.2420.47#iszoomcontrolenabled) setting. + * - **MacOS / Linux**: Injects a polyfill that zooms in and out with `ctrl/command` + `-/=`, + * 20% in each step, ranging from 20% to 1000%. Requires `webview:allow-set-webview-zoom` permission + * + * - **Android / iOS**: Unsupported. + */ + zoomHotkeysEnabled?: boolean; + /** + * Sets whether the custom protocols should use `https://.localhost` instead of the default `http://.localhost` on Windows and Android. Defaults to `false`. + * + * #### Note + * + * Using a `https` scheme will NOT allow mixed content when trying to fetch `http` endpoints and therefore will not match the behavior of the `://localhost` protocols used on macOS and Linux. + * + * #### Warning + * + * Changing this value between releases will change the IndexedDB, cookies and localstorage location and your app will not be able to access them. + * + * @since 2.1.0 + */ + useHttpsScheme?: boolean; + /** + * Whether web inspector, which is usually called browser devtools, is enabled or not. Enabled by default. + * + * This API works in **debug** builds, but requires `devtools` feature flag to enable it in **release** builds. + * + * #### Platform-specific + * + * - macOS: This will call private functions on **macOS**. + * - Android: Open `chrome://inspect/#devices` in Chrome to get the devtools window. Wry's `WebView` devtools API isn't supported on Android. + * - iOS: Open Safari > Develop > [Your Device Name] > [Your WebView] to get the devtools window. + * + * @since 2.1.0 + */ + devtools?: boolean; + /** + * Set the window and webview background color. + * + * #### Platform-specific: + * + * - **macOS / iOS**: Not implemented. + * - **Windows**: + * - On Windows 7, alpha channel is ignored. + * - On Windows 8 and newer, if alpha channel is not `0`, it will be ignored. + * + * @since 2.1.0 + */ + backgroundColor?: Color; + /** Change the default background throttling behaviour. + * + * By default, browsers use a suspend policy that will throttle timers and even unload + * the whole tab (view) to free resources after roughly 5 minutes when a view became + * minimized or hidden. This will pause all tasks until the documents visibility state + * changes back from hidden to visible by bringing the view back to the foreground. + * + * ## Platform-specific + * + * - **Linux / Windows / Android**: Unsupported. Workarounds like a pending WebLock transaction might suffice. + * - **iOS**: Supported since version 17.0+. + * - **macOS**: Supported since version 14.0+. + * + * see https://github.com/tauri-apps/tauri/issues/5250#issuecomment-2569380578 + * + * @since 2.3.0 + */ + backgroundThrottling?: BackgroundThrottlingPolicy; + /** + * Whether we should disable JavaScript code execution on the webview or not. + */ + javascriptDisabled?: boolean; + /** + * on macOS and iOS there is a link preview on long pressing links, this is enabled by default. + * see https://docs.rs/objc2-web-kit/latest/objc2_web_kit/struct.WKWebView.html#method.allowsLinkPreview + */ + allowLinkPreview?: boolean; + /** + * Allows disabling the input accessory view on iOS. + * + * The accessory view is the view that appears above the keyboard when a text input element is focused. + * It usually displays a view with "Done", "Next" buttons. + */ + disableInputAccessoryView?: boolean; +} +export { Webview, getCurrentWebview, getAllWebviews }; +export type { DragDropEvent, WebviewOptions, Color }; diff --git a/node_modules/@tauri-apps/api/webview.js b/node_modules/@tauri-apps/api/webview.js new file mode 100644 index 0000000..00d7952 --- /dev/null +++ b/node_modules/@tauri-apps/api/webview.js @@ -0,0 +1,544 @@ +import { PhysicalPosition, PhysicalSize, Size, Position } from './dpi.js'; +import { listen, once, emit, emitTo, TauriEvent } from './event.js'; +import { invoke } from './core.js'; +import { getCurrentWindow, Window } from './window.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Provides APIs to create webviews, communicate with other webviews and manipulate the current webview. + * + * #### Webview events + * + * Events can be listened to using {@link Webview.listen}: + * ```typescript + * import { getCurrentWebview } from "@tauri-apps/api/webview"; + * getCurrentWebview().listen("my-webview-event", ({ event, payload }) => { }); + * ``` + * + * @module + */ +/** + * Get an instance of `Webview` for the current webview. + * + * @since 2.0.0 + */ +function getCurrentWebview() { + return new Webview(getCurrentWindow(), window.__TAURI_INTERNALS__.metadata.currentWebview.label, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }); +} +/** + * Gets a list of instances of `Webview` for all available webviews. + * + * @since 2.0.0 + */ +async function getAllWebviews() { + return invoke('plugin:webview|get_all_webviews').then((webviews) => webviews.map((w) => new Webview(new Window(w.windowLabel, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }), w.label, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }))); +} +/** @ignore */ +// events that are emitted right here instead of by the created webview +const localTauriEvents = ['tauri://created', 'tauri://error']; +/** + * Create new webview or get a handle to an existing one. + * + * Webviews are identified by a *label* a unique identifier that can be used to reference it later. + * It may only contain alphanumeric characters `a-zA-Z` plus the following special characters `-`, `/`, `:` and `_`. + * + * @example + * ```typescript + * import { Window } from "@tauri-apps/api/window" + * import { Webview } from "@tauri-apps/api/webview" + * + * const appWindow = new Window('uniqueLabel'); + * + * // loading embedded asset: + * const webview = new Webview(appWindow, 'theUniqueLabel', { + * url: 'path/to/page.html' + * }); + * // alternatively, load a remote URL: + * const webview = new Webview(appWindow, 'theUniqueLabel', { + * url: 'https://github.com/tauri-apps/tauri' + * }); + * + * webview.once('tauri://created', function () { + * // webview successfully created + * }); + * webview.once('tauri://error', function (e) { + * // an error happened creating the webview + * }); + * + * // emit an event to the backend + * await webview.emit("some-event", "data"); + * // listen to an event from the backend + * const unlisten = await webview.listen("event-name", e => {}); + * unlisten(); + * ``` + * + * @since 2.0.0 + */ +class Webview { + /** + * Creates a new Webview. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window' + * import { Webview } from '@tauri-apps/api/webview' + * const appWindow = new Window('my-label') + * const webview = new Webview(appWindow, 'my-label', { + * url: 'https://github.com/tauri-apps/tauri' + * }); + * webview.once('tauri://created', function () { + * // webview successfully created + * }); + * webview.once('tauri://error', function (e) { + * // an error happened creating the webview + * }); + * ``` + * + * @param window the window to add this webview to. + * @param label The unique webview label. Must be alphanumeric: `a-zA-Z-/:_`. + * @returns The {@link Webview} instance to communicate with the webview. + */ + constructor(window, label, options) { + this.window = window; + this.label = label; + // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment + this.listeners = Object.create(null); + // @ts-expect-error `skip` is not a public API so it is not defined in WebviewOptions + if (!(options === null || options === void 0 ? void 0 : options.skip)) { + invoke('plugin:webview|create_webview', { + windowLabel: window.label, + label, + options + }) + .then(async () => this.emit('tauri://created')) + .catch(async (e) => this.emit('tauri://error', e)); + } + } + /** + * Gets the Webview for the webview associated with the given label. + * @example + * ```typescript + * import { Webview } from '@tauri-apps/api/webview'; + * const mainWebview = Webview.getByLabel('main'); + * ``` + * + * @param label The webview label. + * @returns The Webview instance to communicate with the webview or null if the webview doesn't exist. + */ + static async getByLabel(label) { + var _a; + return (_a = (await getAllWebviews()).find((w) => w.label === label)) !== null && _a !== void 0 ? _a : null; + } + /** + * Get an instance of `Webview` for the current webview. + */ + static getCurrent() { + return getCurrentWebview(); + } + /** + * Gets a list of instances of `Webview` for all available webviews. + */ + static async getAll() { + return getAllWebviews(); + } + /** + * Listen to an emitted event on this webview. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const unlisten = await getCurrentWebview().listen('state-changed', (event) => { + * console.log(`Got error: ${payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async listen(event, handler) { + if (this._handleTauriEvent(event, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return listen(event, handler, { + target: { kind: 'Webview', label: this.label } + }); + } + /** + * Listen to an emitted event on this webview only once. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const unlisten = await getCurrent().once('initialized', (event) => { + * console.log(`Webview initialized!`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async once(event, handler) { + if (this._handleTauriEvent(event, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return once(event, handler, { + target: { kind: 'Webview', label: this.label } + }); + } + /** + * Emits an event to all {@link EventTarget|targets}. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().emit('webview-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + async emit(event, payload) { + if (localTauriEvents.includes(event)) { + // eslint-disable-next-line + for (const handler of this.listeners[event] || []) { + handler({ + event, + id: -1, + payload + }); + } + return; + } + return emit(event, payload); + } + /** + * Emits an event to all {@link EventTarget|targets} matching the given target. + * + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().emitTo('main', 'webview-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param target Label of the target Window/Webview/WebviewWindow or raw {@link EventTarget} object. + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + async emitTo(target, event, payload) { + if (localTauriEvents.includes(event)) { + // eslint-disable-next-line + for (const handler of this.listeners[event] || []) { + handler({ + event, + id: -1, + payload + }); + } + return; + } + return emitTo(target, event, payload); + } + /** @ignore */ + _handleTauriEvent(event, handler) { + if (localTauriEvents.includes(event)) { + if (!(event in this.listeners)) { + // eslint-disable-next-line security/detect-object-injection + this.listeners[event] = [handler]; + } + else { + // eslint-disable-next-line security/detect-object-injection + this.listeners[event].push(handler); + } + return true; + } + return false; + } + // Getters + /** + * The position of the top-left hand corner of the webview's client area relative to the top-left hand corner of the desktop. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const position = await getCurrentWebview().position(); + * ``` + * + * @returns The webview's position. + */ + async position() { + return invoke('plugin:webview|webview_position', { + label: this.label + }).then((p) => new PhysicalPosition(p)); + } + /** + * The physical size of the webview's client area. + * The client area is the content of the webview, excluding the title bar and borders. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * const size = await getCurrentWebview().size(); + * ``` + * + * @returns The webview's size. + */ + async size() { + return invoke('plugin:webview|webview_size', { + label: this.label + }).then((s) => new PhysicalSize(s)); + } + // Setters + /** + * Closes the webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().close(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async close() { + return invoke('plugin:webview|webview_close', { + label: this.label + }); + } + /** + * Resizes the webview. + * @example + * ```typescript + * import { getCurrent, LogicalSize } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setSize(new LogicalSize(600, 500)); + * ``` + * + * @param size The logical or physical size. + * @returns A promise indicating the success or failure of the operation. + */ + async setSize(size) { + return invoke('plugin:webview|set_webview_size', { + label: this.label, + value: size instanceof Size ? size : new Size(size) + }); + } + /** + * Sets the webview position. + * @example + * ```typescript + * import { getCurrent, LogicalPosition } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setPosition(new LogicalPosition(600, 500)); + * ``` + * + * @param position The new position, in logical or physical pixels. + * @returns A promise indicating the success or failure of the operation. + */ + async setPosition(position) { + return invoke('plugin:webview|set_webview_position', { + label: this.label, + value: position instanceof Position ? position : new Position(position) + }); + } + /** + * Bring the webview to front and focus. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setFocus(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setFocus() { + return invoke('plugin:webview|set_webview_focus', { + label: this.label + }); + } + /** + * Hide the webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().hide(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async hide() { + return invoke('plugin:webview|webview_hide', { + label: this.label + }); + } + /** + * Show the webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().show(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async show() { + return invoke('plugin:webview|webview_show', { + label: this.label + }); + } + /** + * Set webview zoom level. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().setZoom(1.5); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setZoom(scaleFactor) { + return invoke('plugin:webview|set_webview_zoom', { + label: this.label, + value: scaleFactor + }); + } + /** + * Moves this webview to the given label. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().reparent('other-window'); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async reparent(window) { + return invoke('plugin:webview|reparent', { + label: this.label, + window: typeof window === 'string' ? window : window.label + }); + } + /** + * Clears all browsing data for this webview. + * @example + * ```typescript + * import { getCurrentWebview } from '@tauri-apps/api/webview'; + * await getCurrentWebview().clearAllBrowsingData(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async clearAllBrowsingData() { + return invoke('plugin:webview|clear_all_browsing_data'); + } + /** + * Specify the webview background color. + * + * #### Platfrom-specific: + * + * - **macOS / iOS**: Not implemented. + * - **Windows**: + * - On Windows 7, transparency is not supported and the alpha value will be ignored. + * - On Windows higher than 7: translucent colors are not supported so any alpha value other than `0` will be replaced by `255` + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.1.0 + */ + async setBackgroundColor(color) { + return invoke('plugin:webview|set_webview_background_color', { color }); + } + // Listeners + /** + * Listen to a file drop event. + * The listener is triggered when the user hovers the selected files on the webview, + * drops the files or cancels the operation. + * + * @example + * ```typescript + * import { getCurrentWebview } from "@tauri-apps/api/webview"; + * const unlisten = await getCurrentWebview().onDragDropEvent((event) => { + * if (event.payload.type === 'over') { + * console.log('User hovering', event.payload.position); + * } else if (event.payload.type === 'drop') { + * console.log('User dropped', event.payload.paths); + * } else { + * console.log('File drop cancelled'); + * } + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * When the debugger panel is open, the drop position of this event may be inaccurate due to a known limitation. + * To retrieve the correct drop position, please detach the debugger. + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onDragDropEvent(handler) { + const unlistenDragEnter = await this.listen(TauriEvent.DRAG_ENTER, (event) => { + handler({ + ...event, + payload: { + type: 'enter', + paths: event.payload.paths, + position: new PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDragOver = await this.listen(TauriEvent.DRAG_OVER, (event) => { + handler({ + ...event, + payload: { + type: 'over', + position: new PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDragDrop = await this.listen(TauriEvent.DRAG_DROP, (event) => { + handler({ + ...event, + payload: { + type: 'drop', + paths: event.payload.paths, + position: new PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDragLeave = await this.listen(TauriEvent.DRAG_LEAVE, (event) => { + handler({ ...event, payload: { type: 'leave' } }); + }); + return () => { + unlistenDragEnter(); + unlistenDragDrop(); + unlistenDragOver(); + unlistenDragLeave(); + }; + } +} + +export { Webview, getAllWebviews, getCurrentWebview }; diff --git a/node_modules/@tauri-apps/api/webviewWindow.cjs b/node_modules/@tauri-apps/api/webviewWindow.cjs new file mode 100644 index 0000000..e85a31b --- /dev/null +++ b/node_modules/@tauri-apps/api/webviewWindow.cjs @@ -0,0 +1,211 @@ +'use strict'; + +var webview = require('./webview.cjs'); +var window = require('./window.cjs'); +var event = require('./event.cjs'); +var core = require('./core.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Get an instance of `Webview` for the current webview window. + * + * @since 2.0.0 + */ +function getCurrentWebviewWindow() { + const webview$1 = webview.getCurrentWebview(); + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + return new WebviewWindow(webview$1.label, { skip: true }); +} +/** + * Gets a list of instances of `Webview` for all available webview windows. + * + * @since 2.0.0 + */ +async function getAllWebviewWindows() { + return core.invoke('plugin:window|get_all_windows').then((windows) => windows.map((w) => new WebviewWindow(w, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }))); +} +// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging +class WebviewWindow { + /** + * Creates a new {@link Window} hosting a {@link Webview}. + * @example + * ```typescript + * import { WebviewWindow } from '@tauri-apps/api/webviewWindow' + * const webview = new WebviewWindow('my-label', { + * url: 'https://github.com/tauri-apps/tauri' + * }); + * webview.once('tauri://created', function () { + * // webview successfully created + * }); + * webview.once('tauri://error', function (e) { + * // an error happened creating the webview + * }); + * ``` + * + * @param label The unique webview label. Must be alphanumeric: `a-zA-Z-/:_`. + * @returns The {@link WebviewWindow} instance to communicate with the window and webview. + */ + constructor(label, options = {}) { + var _a; + this.label = label; + // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment + this.listeners = Object.create(null); + // @ts-expect-error `skip` is not a public API so it is not defined in WebviewOptions + if (!(options === null || options === void 0 ? void 0 : options.skip)) { + core.invoke('plugin:webview|create_webview_window', { + options: { + ...options, + parent: typeof options.parent === 'string' + ? options.parent + : (_a = options.parent) === null || _a === void 0 ? void 0 : _a.label, + label + } + }) + .then(async () => this.emit('tauri://created')) + .catch(async (e) => this.emit('tauri://error', e)); + } + } + /** + * Gets the Webview for the webview associated with the given label. + * @example + * ```typescript + * import { Webview } from '@tauri-apps/api/webviewWindow'; + * const mainWebview = Webview.getByLabel('main'); + * ``` + * + * @param label The webview label. + * @returns The Webview instance to communicate with the webview or null if the webview doesn't exist. + */ + static async getByLabel(label) { + var _a; + const webview = (_a = (await getAllWebviewWindows()).find((w) => w.label === label)) !== null && _a !== void 0 ? _a : null; + if (webview) { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + return new WebviewWindow(webview.label, { skip: true }); + } + return null; + } + /** + * Get an instance of `Webview` for the current webview. + */ + static getCurrent() { + return getCurrentWebviewWindow(); + } + /** + * Gets a list of instances of `Webview` for all available webviews. + */ + static async getAll() { + return getAllWebviewWindows(); + } + /** + * Listen to an emitted event on this webivew window. + * + * @example + * ```typescript + * import { WebviewWindow } from '@tauri-apps/api/webviewWindow'; + * const unlisten = await WebviewWindow.getCurrent().listen('state-changed', (event) => { + * console.log(`Got error: ${payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async listen(event$1, handler) { + if (this._handleTauriEvent(event$1, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event$1]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return event.listen(event$1, handler, { + target: { kind: 'WebviewWindow', label: this.label } + }); + } + /** + * Listen to an emitted event on this webview window only once. + * + * @example + * ```typescript + * import { WebviewWindow } from '@tauri-apps/api/webviewWindow'; + * const unlisten = await WebviewWindow.getCurrent().once('initialized', (event) => { + * console.log(`Webview initialized!`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async once(event$1, handler) { + if (this._handleTauriEvent(event$1, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event$1]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return event.once(event$1, handler, { + target: { kind: 'WebviewWindow', label: this.label } + }); + } + /** + * Set the window and webview background color. + * + * #### Platform-specific: + * + * - **Android / iOS:** Unsupported for the window layer. + * - **macOS / iOS**: Not implemented for the webview layer. + * - **Windows**: + * - alpha channel is ignored for the window layer. + * - On Windows 7, alpha channel is ignored for the webview layer. + * - On Windows 8 and newer, if alpha channel is not `0`, it will be ignored. + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.1.0 + */ + async setBackgroundColor(color) { + return core.invoke('plugin:window|set_background_color', { color }).then(() => { + return core.invoke('plugin:webview|set_webview_background_color', { color }); + }); + } +} +// Order matters, we use window APIs by default +applyMixins(WebviewWindow, [window.Window, webview.Webview]); +/** Extends a base class by other specified classes, without overriding existing properties */ +function applyMixins(baseClass, extendedClasses) { + (Array.isArray(extendedClasses) + ? extendedClasses + : [extendedClasses]).forEach((extendedClass) => { + Object.getOwnPropertyNames(extendedClass.prototype).forEach((name) => { + var _a; + if (typeof baseClass.prototype === 'object' + && baseClass.prototype + && name in baseClass.prototype) + return; + Object.defineProperty(baseClass.prototype, name, + // eslint-disable-next-line + (_a = Object.getOwnPropertyDescriptor(extendedClass.prototype, name)) !== null && _a !== void 0 ? _a : Object.create(null)); + }); + }); +} + +exports.WebviewWindow = WebviewWindow; +exports.getAllWebviewWindows = getAllWebviewWindows; +exports.getCurrentWebviewWindow = getCurrentWebviewWindow; diff --git a/node_modules/@tauri-apps/api/webviewWindow.d.ts b/node_modules/@tauri-apps/api/webviewWindow.d.ts new file mode 100644 index 0000000..9a0d36a --- /dev/null +++ b/node_modules/@tauri-apps/api/webviewWindow.d.ts @@ -0,0 +1,123 @@ +import { Webview, WebviewLabel, WebviewOptions } from './webview'; +import type { WindowOptions } from './window'; +import { Window } from './window'; +import type { EventName, EventCallback, UnlistenFn } from './event'; +import type { Color, DragDropEvent } from './webview'; +/** + * Get an instance of `Webview` for the current webview window. + * + * @since 2.0.0 + */ +declare function getCurrentWebviewWindow(): WebviewWindow; +/** + * Gets a list of instances of `Webview` for all available webview windows. + * + * @since 2.0.0 + */ +declare function getAllWebviewWindows(): Promise; +interface WebviewWindow extends Webview, Window { +} +declare class WebviewWindow { + label: string; + /** Local event listeners. */ + listeners: Record>>; + /** + * Creates a new {@link Window} hosting a {@link Webview}. + * @example + * ```typescript + * import { WebviewWindow } from '@tauri-apps/api/webviewWindow' + * const webview = new WebviewWindow('my-label', { + * url: 'https://github.com/tauri-apps/tauri' + * }); + * webview.once('tauri://created', function () { + * // webview successfully created + * }); + * webview.once('tauri://error', function (e) { + * // an error happened creating the webview + * }); + * ``` + * + * @param label The unique webview label. Must be alphanumeric: `a-zA-Z-/:_`. + * @returns The {@link WebviewWindow} instance to communicate with the window and webview. + */ + constructor(label: WebviewLabel, options?: Omit & WindowOptions); + /** + * Gets the Webview for the webview associated with the given label. + * @example + * ```typescript + * import { Webview } from '@tauri-apps/api/webviewWindow'; + * const mainWebview = Webview.getByLabel('main'); + * ``` + * + * @param label The webview label. + * @returns The Webview instance to communicate with the webview or null if the webview doesn't exist. + */ + static getByLabel(label: string): Promise; + /** + * Get an instance of `Webview` for the current webview. + */ + static getCurrent(): WebviewWindow; + /** + * Gets a list of instances of `Webview` for all available webviews. + */ + static getAll(): Promise; + /** + * Listen to an emitted event on this webivew window. + * + * @example + * ```typescript + * import { WebviewWindow } from '@tauri-apps/api/webviewWindow'; + * const unlisten = await WebviewWindow.getCurrent().listen('state-changed', (event) => { + * console.log(`Got error: ${payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + listen(event: EventName, handler: EventCallback): Promise; + /** + * Listen to an emitted event on this webview window only once. + * + * @example + * ```typescript + * import { WebviewWindow } from '@tauri-apps/api/webviewWindow'; + * const unlisten = await WebviewWindow.getCurrent().once('initialized', (event) => { + * console.log(`Webview initialized!`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + once(event: EventName, handler: EventCallback): Promise; + /** + * Set the window and webview background color. + * + * #### Platform-specific: + * + * - **Android / iOS:** Unsupported for the window layer. + * - **macOS / iOS**: Not implemented for the webview layer. + * - **Windows**: + * - alpha channel is ignored for the window layer. + * - On Windows 7, alpha channel is ignored for the webview layer. + * - On Windows 8 and newer, if alpha channel is not `0`, it will be ignored. + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.1.0 + */ + setBackgroundColor(color: Color): Promise; +} +export { WebviewWindow, getCurrentWebviewWindow, getAllWebviewWindows }; +export type { DragDropEvent, Color }; diff --git a/node_modules/@tauri-apps/api/webviewWindow.js b/node_modules/@tauri-apps/api/webviewWindow.js new file mode 100644 index 0000000..4fb8c16 --- /dev/null +++ b/node_modules/@tauri-apps/api/webviewWindow.js @@ -0,0 +1,207 @@ +import { getCurrentWebview, Webview } from './webview.js'; +import { Window } from './window.js'; +import { listen, once } from './event.js'; +import { invoke } from './core.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Get an instance of `Webview` for the current webview window. + * + * @since 2.0.0 + */ +function getCurrentWebviewWindow() { + const webview = getCurrentWebview(); + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + return new WebviewWindow(webview.label, { skip: true }); +} +/** + * Gets a list of instances of `Webview` for all available webview windows. + * + * @since 2.0.0 + */ +async function getAllWebviewWindows() { + return invoke('plugin:window|get_all_windows').then((windows) => windows.map((w) => new WebviewWindow(w, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }))); +} +// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging +class WebviewWindow { + /** + * Creates a new {@link Window} hosting a {@link Webview}. + * @example + * ```typescript + * import { WebviewWindow } from '@tauri-apps/api/webviewWindow' + * const webview = new WebviewWindow('my-label', { + * url: 'https://github.com/tauri-apps/tauri' + * }); + * webview.once('tauri://created', function () { + * // webview successfully created + * }); + * webview.once('tauri://error', function (e) { + * // an error happened creating the webview + * }); + * ``` + * + * @param label The unique webview label. Must be alphanumeric: `a-zA-Z-/:_`. + * @returns The {@link WebviewWindow} instance to communicate with the window and webview. + */ + constructor(label, options = {}) { + var _a; + this.label = label; + // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment + this.listeners = Object.create(null); + // @ts-expect-error `skip` is not a public API so it is not defined in WebviewOptions + if (!(options === null || options === void 0 ? void 0 : options.skip)) { + invoke('plugin:webview|create_webview_window', { + options: { + ...options, + parent: typeof options.parent === 'string' + ? options.parent + : (_a = options.parent) === null || _a === void 0 ? void 0 : _a.label, + label + } + }) + .then(async () => this.emit('tauri://created')) + .catch(async (e) => this.emit('tauri://error', e)); + } + } + /** + * Gets the Webview for the webview associated with the given label. + * @example + * ```typescript + * import { Webview } from '@tauri-apps/api/webviewWindow'; + * const mainWebview = Webview.getByLabel('main'); + * ``` + * + * @param label The webview label. + * @returns The Webview instance to communicate with the webview or null if the webview doesn't exist. + */ + static async getByLabel(label) { + var _a; + const webview = (_a = (await getAllWebviewWindows()).find((w) => w.label === label)) !== null && _a !== void 0 ? _a : null; + if (webview) { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + return new WebviewWindow(webview.label, { skip: true }); + } + return null; + } + /** + * Get an instance of `Webview` for the current webview. + */ + static getCurrent() { + return getCurrentWebviewWindow(); + } + /** + * Gets a list of instances of `Webview` for all available webviews. + */ + static async getAll() { + return getAllWebviewWindows(); + } + /** + * Listen to an emitted event on this webivew window. + * + * @example + * ```typescript + * import { WebviewWindow } from '@tauri-apps/api/webviewWindow'; + * const unlisten = await WebviewWindow.getCurrent().listen('state-changed', (event) => { + * console.log(`Got error: ${payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async listen(event, handler) { + if (this._handleTauriEvent(event, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return listen(event, handler, { + target: { kind: 'WebviewWindow', label: this.label } + }); + } + /** + * Listen to an emitted event on this webview window only once. + * + * @example + * ```typescript + * import { WebviewWindow } from '@tauri-apps/api/webviewWindow'; + * const unlisten = await WebviewWindow.getCurrent().once('initialized', (event) => { + * console.log(`Webview initialized!`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async once(event, handler) { + if (this._handleTauriEvent(event, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return once(event, handler, { + target: { kind: 'WebviewWindow', label: this.label } + }); + } + /** + * Set the window and webview background color. + * + * #### Platform-specific: + * + * - **Android / iOS:** Unsupported for the window layer. + * - **macOS / iOS**: Not implemented for the webview layer. + * - **Windows**: + * - alpha channel is ignored for the window layer. + * - On Windows 7, alpha channel is ignored for the webview layer. + * - On Windows 8 and newer, if alpha channel is not `0`, it will be ignored. + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.1.0 + */ + async setBackgroundColor(color) { + return invoke('plugin:window|set_background_color', { color }).then(() => { + return invoke('plugin:webview|set_webview_background_color', { color }); + }); + } +} +// Order matters, we use window APIs by default +applyMixins(WebviewWindow, [Window, Webview]); +/** Extends a base class by other specified classes, without overriding existing properties */ +function applyMixins(baseClass, extendedClasses) { + (Array.isArray(extendedClasses) + ? extendedClasses + : [extendedClasses]).forEach((extendedClass) => { + Object.getOwnPropertyNames(extendedClass.prototype).forEach((name) => { + var _a; + if (typeof baseClass.prototype === 'object' + && baseClass.prototype + && name in baseClass.prototype) + return; + Object.defineProperty(baseClass.prototype, name, + // eslint-disable-next-line + (_a = Object.getOwnPropertyDescriptor(extendedClass.prototype, name)) !== null && _a !== void 0 ? _a : Object.create(null)); + }); + }); +} + +export { WebviewWindow, getAllWebviewWindows, getCurrentWebviewWindow }; diff --git a/node_modules/@tauri-apps/api/window.cjs b/node_modules/@tauri-apps/api/window.cjs new file mode 100644 index 0000000..7dc93b6 --- /dev/null +++ b/node_modules/@tauri-apps/api/window.cjs @@ -0,0 +1,1986 @@ +'use strict'; + +var dpi = require('./dpi.cjs'); +var event = require('./event.cjs'); +var core = require('./core.cjs'); +var image = require('./image.cjs'); + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Provides APIs to create windows, communicate with other windows and manipulate the current window. + * + * #### Window events + * + * Events can be listened to using {@link Window.listen}: + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * getCurrentWindow().listen("my-window-event", ({ event, payload }) => { }); + * ``` + * + * @module + */ +/** + * Attention type to request on a window. + * + * @since 1.0.0 + */ +exports.UserAttentionType = void 0; +(function (UserAttentionType) { + /** + * #### Platform-specific + * - **macOS:** Bounces the dock icon until the application is in focus. + * - **Windows:** Flashes both the window and the taskbar button until the application is in focus. + */ + UserAttentionType[UserAttentionType["Critical"] = 1] = "Critical"; + /** + * #### Platform-specific + * - **macOS:** Bounces the dock icon once. + * - **Windows:** Flashes the taskbar button until the application is in focus. + */ + UserAttentionType[UserAttentionType["Informational"] = 2] = "Informational"; +})(exports.UserAttentionType || (exports.UserAttentionType = {})); +class CloseRequestedEvent { + constructor(event) { + this._preventDefault = false; + this.event = event.event; + this.id = event.id; + } + preventDefault() { + this._preventDefault = true; + } + isPreventDefault() { + return this._preventDefault; + } +} +exports.ProgressBarStatus = void 0; +(function (ProgressBarStatus) { + /** + * Hide progress bar. + */ + ProgressBarStatus["None"] = "none"; + /** + * Normal state. + */ + ProgressBarStatus["Normal"] = "normal"; + /** + * Indeterminate state. **Treated as Normal on Linux and macOS** + */ + ProgressBarStatus["Indeterminate"] = "indeterminate"; + /** + * Paused state. **Treated as Normal on Linux** + */ + ProgressBarStatus["Paused"] = "paused"; + /** + * Error state. **Treated as Normal on linux** + */ + ProgressBarStatus["Error"] = "error"; +})(exports.ProgressBarStatus || (exports.ProgressBarStatus = {})); +/** + * Get an instance of `Window` for the current window. + * + * @since 1.0.0 + */ +function getCurrentWindow() { + return new Window(window.__TAURI_INTERNALS__.metadata.currentWindow.label, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }); +} +/** + * Gets a list of instances of `Window` for all available windows. + * + * @since 1.0.0 + */ +async function getAllWindows() { + return core.invoke('plugin:window|get_all_windows').then((windows) => windows.map((w) => new Window(w, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }))); +} +/** @ignore */ +// events that are emitted right here instead of by the created window +const localTauriEvents = ['tauri://created', 'tauri://error']; +/** + * Create new window or get a handle to an existing one. + * + * Windows are identified by a *label* a unique identifier that can be used to reference it later. + * It may only contain alphanumeric characters `a-zA-Z` plus the following special characters `-`, `/`, `:` and `_`. + * + * @example + * ```typescript + * import { Window } from "@tauri-apps/api/window" + * + * const appWindow = new Window('theUniqueLabel'); + * + * appWindow.once('tauri://created', function () { + * // window successfully created + * }); + * appWindow.once('tauri://error', function (e) { + * // an error happened creating the window + * }); + * + * // emit an event to the backend + * await appWindow.emit("some-event", "data"); + * // listen to an event from the backend + * const unlisten = await appWindow.listen("event-name", e => {}); + * unlisten(); + * ``` + * + * @since 2.0.0 + */ +class Window { + /** + * Creates a new Window. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window'; + * const appWindow = new Window('my-label'); + * appWindow.once('tauri://created', function () { + * // window successfully created + * }); + * appWindow.once('tauri://error', function (e) { + * // an error happened creating the window + * }); + * ``` + * + * @param label The unique window label. Must be alphanumeric: `a-zA-Z-/:_`. + * @returns The {@link Window} instance to communicate with the window. + */ + constructor(label, options = {}) { + var _a; + this.label = label; + // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment + this.listeners = Object.create(null); + // @ts-expect-error `skip` is not a public API so it is not defined in WindowOptions + if (!(options === null || options === void 0 ? void 0 : options.skip)) { + core.invoke('plugin:window|create', { + options: { + ...options, + parent: typeof options.parent === 'string' + ? options.parent + : (_a = options.parent) === null || _a === void 0 ? void 0 : _a.label, + label + } + }) + .then(async () => this.emit('tauri://created')) + .catch(async (e) => this.emit('tauri://error', e)); + } + } + /** + * Gets the Window associated with the given label. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window'; + * const mainWindow = Window.getByLabel('main'); + * ``` + * + * @param label The window label. + * @returns The Window instance to communicate with the window or null if the window doesn't exist. + */ + static async getByLabel(label) { + var _a; + return (_a = (await getAllWindows()).find((w) => w.label === label)) !== null && _a !== void 0 ? _a : null; + } + /** + * Get an instance of `Window` for the current window. + */ + static getCurrent() { + return getCurrentWindow(); + } + /** + * Gets a list of instances of `Window` for all available windows. + */ + static async getAll() { + return getAllWindows(); + } + /** + * Gets the focused window. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window'; + * const focusedWindow = Window.getFocusedWindow(); + * ``` + * + * @returns The Window instance or `undefined` if there is not any focused window. + */ + static async getFocusedWindow() { + for (const w of await getAllWindows()) { + if (await w.isFocused()) { + return w; + } + } + return null; + } + /** + * Listen to an emitted event on this window. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const unlisten = await getCurrentWindow().listen('state-changed', (event) => { + * console.log(`Got error: ${payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async listen(event$1, handler) { + if (this._handleTauriEvent(event$1, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event$1]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return event.listen(event$1, handler, { + target: { kind: 'Window', label: this.label } + }); + } + /** + * Listen to an emitted event on this window only once. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const unlisten = await getCurrentWindow().once('initialized', (event) => { + * console.log(`Window initialized!`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async once(event$1, handler) { + if (this._handleTauriEvent(event$1, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event$1]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return event.once(event$1, handler, { + target: { kind: 'Window', label: this.label } + }); + } + /** + * Emits an event to all {@link EventTarget|targets}. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().emit('window-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + async emit(event$1, payload) { + if (localTauriEvents.includes(event$1)) { + // eslint-disable-next-line + for (const handler of this.listeners[event$1] || []) { + handler({ + event: event$1, + id: -1, + payload + }); + } + return; + } + return event.emit(event$1, payload); + } + /** + * Emits an event to all {@link EventTarget|targets} matching the given target. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().emit('main', 'window-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * @param target Label of the target Window/Webview/WebviewWindow or raw {@link EventTarget} object. + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + async emitTo(target, event$1, payload) { + if (localTauriEvents.includes(event$1)) { + // eslint-disable-next-line security/detect-object-injection + for (const handler of this.listeners[event$1] || []) { + handler({ + event: event$1, + id: -1, + payload + }); + } + return; + } + return event.emitTo(target, event$1, payload); + } + /** @ignore */ + _handleTauriEvent(event, handler) { + if (localTauriEvents.includes(event)) { + if (!(event in this.listeners)) { + // eslint-disable-next-line + this.listeners[event] = [handler]; + } + else { + // eslint-disable-next-line + this.listeners[event].push(handler); + } + return true; + } + return false; + } + // Getters + /** + * The scale factor that can be used to map physical pixels to logical pixels. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const factor = await getCurrentWindow().scaleFactor(); + * ``` + * + * @returns The window's monitor scale factor. + */ + async scaleFactor() { + return core.invoke('plugin:window|scale_factor', { + label: this.label + }); + } + /** + * The position of the top-left hand corner of the window's client area relative to the top-left hand corner of the desktop. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const position = await getCurrentWindow().innerPosition(); + * ``` + * + * @returns The window's inner position. + */ + async innerPosition() { + return core.invoke('plugin:window|inner_position', { + label: this.label + }).then((p) => new dpi.PhysicalPosition(p)); + } + /** + * The position of the top-left hand corner of the window relative to the top-left hand corner of the desktop. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const position = await getCurrentWindow().outerPosition(); + * ``` + * + * @returns The window's outer position. + */ + async outerPosition() { + return core.invoke('plugin:window|outer_position', { + label: this.label + }).then((p) => new dpi.PhysicalPosition(p)); + } + /** + * The physical size of the window's client area. + * The client area is the content of the window, excluding the title bar and borders. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const size = await getCurrentWindow().innerSize(); + * ``` + * + * @returns The window's inner size. + */ + async innerSize() { + return core.invoke('plugin:window|inner_size', { + label: this.label + }).then((s) => new dpi.PhysicalSize(s)); + } + /** + * The physical size of the entire window. + * These dimensions include the title bar and borders. If you don't want that (and you usually don't), use inner_size instead. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const size = await getCurrentWindow().outerSize(); + * ``` + * + * @returns The window's outer size. + */ + async outerSize() { + return core.invoke('plugin:window|outer_size', { + label: this.label + }).then((s) => new dpi.PhysicalSize(s)); + } + /** + * Gets the window's current fullscreen state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const fullscreen = await getCurrentWindow().isFullscreen(); + * ``` + * + * @returns Whether the window is in fullscreen mode or not. + */ + async isFullscreen() { + return core.invoke('plugin:window|is_fullscreen', { + label: this.label + }); + } + /** + * Gets the window's current minimized state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const minimized = await getCurrentWindow().isMinimized(); + * ``` + */ + async isMinimized() { + return core.invoke('plugin:window|is_minimized', { + label: this.label + }); + } + /** + * Gets the window's current maximized state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const maximized = await getCurrentWindow().isMaximized(); + * ``` + * + * @returns Whether the window is maximized or not. + */ + async isMaximized() { + return core.invoke('plugin:window|is_maximized', { + label: this.label + }); + } + /** + * Gets the window's current focus state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const focused = await getCurrentWindow().isFocused(); + * ``` + * + * @returns Whether the window is focused or not. + */ + async isFocused() { + return core.invoke('plugin:window|is_focused', { + label: this.label + }); + } + /** + * Gets the window's current decorated state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const decorated = await getCurrentWindow().isDecorated(); + * ``` + * + * @returns Whether the window is decorated or not. + */ + async isDecorated() { + return core.invoke('plugin:window|is_decorated', { + label: this.label + }); + } + /** + * Gets the window's current resizable state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const resizable = await getCurrentWindow().isResizable(); + * ``` + * + * @returns Whether the window is resizable or not. + */ + async isResizable() { + return core.invoke('plugin:window|is_resizable', { + label: this.label + }); + } + /** + * Gets the window's native maximize button state. + * + * #### Platform-specific + * + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const maximizable = await getCurrentWindow().isMaximizable(); + * ``` + * + * @returns Whether the window's native maximize button is enabled or not. + */ + async isMaximizable() { + return core.invoke('plugin:window|is_maximizable', { + label: this.label + }); + } + /** + * Gets the window's native minimize button state. + * + * #### Platform-specific + * + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const minimizable = await getCurrentWindow().isMinimizable(); + * ``` + * + * @returns Whether the window's native minimize button is enabled or not. + */ + async isMinimizable() { + return core.invoke('plugin:window|is_minimizable', { + label: this.label + }); + } + /** + * Gets the window's native close button state. + * + * #### Platform-specific + * + * - **iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const closable = await getCurrentWindow().isClosable(); + * ``` + * + * @returns Whether the window's native close button is enabled or not. + */ + async isClosable() { + return core.invoke('plugin:window|is_closable', { + label: this.label + }); + } + /** + * Gets the window's current visible state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const visible = await getCurrentWindow().isVisible(); + * ``` + * + * @returns Whether the window is visible or not. + */ + async isVisible() { + return core.invoke('plugin:window|is_visible', { + label: this.label + }); + } + /** + * Gets the window's current title. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const title = await getCurrentWindow().title(); + * ``` + */ + async title() { + return core.invoke('plugin:window|title', { + label: this.label + }); + } + /** + * Gets the window's current theme. + * + * #### Platform-specific + * + * - **macOS:** Theme was introduced on macOS 10.14. Returns `light` on macOS 10.13 and below. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const theme = await getCurrentWindow().theme(); + * ``` + * + * @returns The window theme. + */ + async theme() { + return core.invoke('plugin:window|theme', { + label: this.label + }); + } + /** + * Whether the window is configured to be always on top of other windows or not. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const alwaysOnTop = await getCurrentWindow().isAlwaysOnTop(); + * ``` + * + * @returns Whether the window is visible or not. + */ + async isAlwaysOnTop() { + return core.invoke('plugin:window|is_always_on_top', { + label: this.label + }); + } + // Setters + /** + * Centers the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().center(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async center() { + return core.invoke('plugin:window|center', { + label: this.label + }); + } + /** + * Requests user attention to the window, this has no effect if the application + * is already focused. How requesting for user attention manifests is platform dependent, + * see `UserAttentionType` for details. + * + * Providing `null` will unset the request for user attention. Unsetting the request for + * user attention might not be done automatically by the WM when the window receives input. + * + * #### Platform-specific + * + * - **macOS:** `null` has no effect. + * - **Linux:** Urgency levels have the same effect. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().requestUserAttention(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async requestUserAttention(requestType) { + let requestType_ = null; + if (requestType) { + if (requestType === exports.UserAttentionType.Critical) { + requestType_ = { type: 'Critical' }; + } + else { + requestType_ = { type: 'Informational' }; + } + } + return core.invoke('plugin:window|request_user_attention', { + label: this.label, + value: requestType_ + }); + } + /** + * Updates the window resizable flag. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setResizable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setResizable(resizable) { + return core.invoke('plugin:window|set_resizable', { + label: this.label, + value: resizable + }); + } + /** + * Enable or disable the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setEnabled(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.0.0 + */ + async setEnabled(enabled) { + return core.invoke('plugin:window|set_enabled', { + label: this.label, + value: enabled + }); + } + /** + * Whether the window is enabled or disabled. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setEnabled(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.0.0 + */ + async isEnabled() { + return core.invoke('plugin:window|is_enabled', { + label: this.label + }); + } + /** + * Sets whether the window's native maximize button is enabled or not. + * If resizable is set to false, this setting is ignored. + * + * #### Platform-specific + * + * - **macOS:** Disables the "zoom" button in the window titlebar, which is also used to enter fullscreen mode. + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMaximizable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setMaximizable(maximizable) { + return core.invoke('plugin:window|set_maximizable', { + label: this.label, + value: maximizable + }); + } + /** + * Sets whether the window's native minimize button is enabled or not. + * + * #### Platform-specific + * + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMinimizable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setMinimizable(minimizable) { + return core.invoke('plugin:window|set_minimizable', { + label: this.label, + value: minimizable + }); + } + /** + * Sets whether the window's native close button is enabled or not. + * + * #### Platform-specific + * + * - **Linux:** GTK+ will do its best to convince the window manager not to show a close button. Depending on the system, this function may not have any effect when called on a window that is already visible + * - **iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setClosable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setClosable(closable) { + return core.invoke('plugin:window|set_closable', { + label: this.label, + value: closable + }); + } + /** + * Sets the window title. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setTitle('Tauri'); + * ``` + * + * @param title The new title + * @returns A promise indicating the success or failure of the operation. + */ + async setTitle(title) { + return core.invoke('plugin:window|set_title', { + label: this.label, + value: title + }); + } + /** + * Maximizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().maximize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async maximize() { + return core.invoke('plugin:window|maximize', { + label: this.label + }); + } + /** + * Unmaximizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().unmaximize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async unmaximize() { + return core.invoke('plugin:window|unmaximize', { + label: this.label + }); + } + /** + * Toggles the window maximized state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().toggleMaximize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async toggleMaximize() { + return core.invoke('plugin:window|toggle_maximize', { + label: this.label + }); + } + /** + * Minimizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().minimize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async minimize() { + return core.invoke('plugin:window|minimize', { + label: this.label + }); + } + /** + * Unminimizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().unminimize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async unminimize() { + return core.invoke('plugin:window|unminimize', { + label: this.label + }); + } + /** + * Sets the window visibility to true. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().show(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async show() { + return core.invoke('plugin:window|show', { + label: this.label + }); + } + /** + * Sets the window visibility to false. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().hide(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async hide() { + return core.invoke('plugin:window|hide', { + label: this.label + }); + } + /** + * Closes the window. + * + * Note this emits a closeRequested event so you can intercept it. To force window close, use {@link Window.destroy}. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().close(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async close() { + return core.invoke('plugin:window|close', { + label: this.label + }); + } + /** + * Destroys the window. Behaves like {@link Window.close} but forces the window close instead of emitting a closeRequested event. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().destroy(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async destroy() { + return core.invoke('plugin:window|destroy', { + label: this.label + }); + } + /** + * Whether the window should have borders and bars. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setDecorations(false); + * ``` + * + * @param decorations Whether the window should have borders and bars. + * @returns A promise indicating the success or failure of the operation. + */ + async setDecorations(decorations) { + return core.invoke('plugin:window|set_decorations', { + label: this.label, + value: decorations + }); + } + /** + * Whether or not the window should have shadow. + * + * #### Platform-specific + * + * - **Windows:** + * - `false` has no effect on decorated window, shadows are always ON. + * - `true` will make undecorated window have a 1px white border, + * and on Windows 11, it will have a rounded corners. + * - **Linux:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setShadow(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setShadow(enable) { + return core.invoke('plugin:window|set_shadow', { + label: this.label, + value: enable + }); + } + /** + * Set window effects. + */ + async setEffects(effects) { + return core.invoke('plugin:window|set_effects', { + label: this.label, + value: effects + }); + } + /** + * Clear any applied effects if possible. + */ + async clearEffects() { + return core.invoke('plugin:window|set_effects', { + label: this.label, + value: null + }); + } + /** + * Whether the window should always be on top of other windows. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setAlwaysOnTop(true); + * ``` + * + * @param alwaysOnTop Whether the window should always be on top of other windows or not. + * @returns A promise indicating the success or failure of the operation. + */ + async setAlwaysOnTop(alwaysOnTop) { + return core.invoke('plugin:window|set_always_on_top', { + label: this.label, + value: alwaysOnTop + }); + } + /** + * Whether the window should always be below other windows. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setAlwaysOnBottom(true); + * ``` + * + * @param alwaysOnBottom Whether the window should always be below other windows or not. + * @returns A promise indicating the success or failure of the operation. + */ + async setAlwaysOnBottom(alwaysOnBottom) { + return core.invoke('plugin:window|set_always_on_bottom', { + label: this.label, + value: alwaysOnBottom + }); + } + /** + * Prevents the window contents from being captured by other apps. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setContentProtected(true); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setContentProtected(protected_) { + return core.invoke('plugin:window|set_content_protected', { + label: this.label, + value: protected_ + }); + } + /** + * Resizes the window with a new inner size. + * @example + * ```typescript + * import { getCurrentWindow, LogicalSize } from '@tauri-apps/api/window'; + * await getCurrentWindow().setSize(new LogicalSize(600, 500)); + * ``` + * + * @param size The logical or physical inner size. + * @returns A promise indicating the success or failure of the operation. + */ + async setSize(size) { + return core.invoke('plugin:window|set_size', { + label: this.label, + value: size instanceof dpi.Size ? size : new dpi.Size(size) + }); + } + /** + * Sets the window minimum inner size. If the `size` argument is not provided, the constraint is unset. + * @example + * ```typescript + * import { getCurrentWindow, PhysicalSize } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMinSize(new PhysicalSize(600, 500)); + * ``` + * + * @param size The logical or physical inner size, or `null` to unset the constraint. + * @returns A promise indicating the success or failure of the operation. + */ + async setMinSize(size) { + return core.invoke('plugin:window|set_min_size', { + label: this.label, + value: size instanceof dpi.Size ? size : size ? new dpi.Size(size) : null + }); + } + /** + * Sets the window maximum inner size. If the `size` argument is undefined, the constraint is unset. + * @example + * ```typescript + * import { getCurrentWindow, LogicalSize } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMaxSize(new LogicalSize(600, 500)); + * ``` + * + * @param size The logical or physical inner size, or `null` to unset the constraint. + * @returns A promise indicating the success or failure of the operation. + */ + async setMaxSize(size) { + return core.invoke('plugin:window|set_max_size', { + label: this.label, + value: size instanceof dpi.Size ? size : size ? new dpi.Size(size) : null + }); + } + /** + * Sets the window inner size constraints. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setSizeConstraints({ minWidth: 300 }); + * ``` + * + * @param constraints The logical or physical inner size, or `null` to unset the constraint. + * @returns A promise indicating the success or failure of the operation. + */ + async setSizeConstraints(constraints) { + function logical(pixel) { + return pixel ? { Logical: pixel } : null; + } + return core.invoke('plugin:window|set_size_constraints', { + label: this.label, + value: { + minWidth: logical(constraints === null || constraints === void 0 ? void 0 : constraints.minWidth), + minHeight: logical(constraints === null || constraints === void 0 ? void 0 : constraints.minHeight), + maxWidth: logical(constraints === null || constraints === void 0 ? void 0 : constraints.maxWidth), + maxHeight: logical(constraints === null || constraints === void 0 ? void 0 : constraints.maxHeight) + } + }); + } + /** + * Sets the window outer position. + * @example + * ```typescript + * import { getCurrentWindow, LogicalPosition } from '@tauri-apps/api/window'; + * await getCurrentWindow().setPosition(new LogicalPosition(600, 500)); + * ``` + * + * @param position The new position, in logical or physical pixels. + * @returns A promise indicating the success or failure of the operation. + */ + async setPosition(position) { + return core.invoke('plugin:window|set_position', { + label: this.label, + value: position instanceof dpi.Position ? position : new dpi.Position(position) + }); + } + /** + * Sets the window fullscreen state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setFullscreen(true); + * ``` + * + * @param fullscreen Whether the window should go to fullscreen or not. + * @returns A promise indicating the success or failure of the operation. + */ + async setFullscreen(fullscreen) { + return core.invoke('plugin:window|set_fullscreen', { + label: this.label, + value: fullscreen + }); + } + /** + * Bring the window to front and focus. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setFocus(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setFocus() { + return core.invoke('plugin:window|set_focus', { + label: this.label + }); + } + /** + * Sets the window icon. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setIcon('/tauri/awesome.png'); + * ``` + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + * + * @param icon Icon bytes or path to the icon file. + * @returns A promise indicating the success or failure of the operation. + */ + async setIcon(icon) { + return core.invoke('plugin:window|set_icon', { + label: this.label, + value: image.transformImage(icon) + }); + } + /** + * Whether the window icon should be hidden from the taskbar or not. + * + * #### Platform-specific + * + * - **macOS:** Unsupported. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setSkipTaskbar(true); + * ``` + * + * @param skip true to hide window icon, false to show it. + * @returns A promise indicating the success or failure of the operation. + */ + async setSkipTaskbar(skip) { + return core.invoke('plugin:window|set_skip_taskbar', { + label: this.label, + value: skip + }); + } + /** + * Grabs the cursor, preventing it from leaving the window. + * + * There's no guarantee that the cursor will be hidden. You should + * hide it by yourself if you want so. + * + * #### Platform-specific + * + * - **Linux:** Unsupported. + * - **macOS:** This locks the cursor in a fixed location, which looks visually awkward. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorGrab(true); + * ``` + * + * @param grab `true` to grab the cursor icon, `false` to release it. + * @returns A promise indicating the success or failure of the operation. + */ + async setCursorGrab(grab) { + return core.invoke('plugin:window|set_cursor_grab', { + label: this.label, + value: grab + }); + } + /** + * Modifies the cursor's visibility. + * + * #### Platform-specific + * + * - **Windows:** The cursor is only hidden within the confines of the window. + * - **macOS:** The cursor is hidden as long as the window has input focus, even if the cursor is + * outside of the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorVisible(false); + * ``` + * + * @param visible If `false`, this will hide the cursor. If `true`, this will show the cursor. + * @returns A promise indicating the success or failure of the operation. + */ + async setCursorVisible(visible) { + return core.invoke('plugin:window|set_cursor_visible', { + label: this.label, + value: visible + }); + } + /** + * Modifies the cursor icon of the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorIcon('help'); + * ``` + * + * @param icon The new cursor icon. + * @returns A promise indicating the success or failure of the operation. + */ + async setCursorIcon(icon) { + return core.invoke('plugin:window|set_cursor_icon', { + label: this.label, + value: icon + }); + } + /** + * Sets the window background color. + * + * #### Platform-specific: + * + * - **Windows:** alpha channel is ignored. + * - **iOS / Android:** Unsupported. + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.1.0 + */ + async setBackgroundColor(color) { + return core.invoke('plugin:window|set_background_color', { color }); + } + /** + * Changes the position of the cursor in window coordinates. + * @example + * ```typescript + * import { getCurrentWindow, LogicalPosition } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorPosition(new LogicalPosition(600, 300)); + * ``` + * + * @param position The new cursor position. + * @returns A promise indicating the success or failure of the operation. + */ + async setCursorPosition(position) { + return core.invoke('plugin:window|set_cursor_position', { + label: this.label, + value: position instanceof dpi.Position ? position : new dpi.Position(position) + }); + } + /** + * Changes the cursor events behavior. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setIgnoreCursorEvents(true); + * ``` + * + * @param ignore `true` to ignore the cursor events; `false` to process them as usual. + * @returns A promise indicating the success or failure of the operation. + */ + async setIgnoreCursorEvents(ignore) { + return core.invoke('plugin:window|set_ignore_cursor_events', { + label: this.label, + value: ignore + }); + } + /** + * Starts dragging the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().startDragging(); + * ``` + * + * @return A promise indicating the success or failure of the operation. + */ + async startDragging() { + return core.invoke('plugin:window|start_dragging', { + label: this.label + }); + } + /** + * Starts resize-dragging the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().startResizeDragging(); + * ``` + * + * @return A promise indicating the success or failure of the operation. + */ + async startResizeDragging(direction) { + return core.invoke('plugin:window|start_resize_dragging', { + label: this.label, + value: direction + }); + } + /** + * Sets the badge count. It is app wide and not specific to this window. + * + * #### Platform-specific + * + * - **Windows**: Unsupported. Use @{linkcode Window.setOverlayIcon} instead. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setBadgeCount(5); + * ``` + * + * @param count The badge count. Use `undefined` to remove the badge. + * @return A promise indicating the success or failure of the operation. + */ + async setBadgeCount(count) { + return core.invoke('plugin:window|set_badge_count', { + label: this.label, + value: count + }); + } + /** + * Sets the badge cont **macOS only**. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setBadgeLabel("Hello"); + * ``` + * + * @param label The badge label. Use `undefined` to remove the badge. + * @return A promise indicating the success or failure of the operation. + */ + async setBadgeLabel(label) { + return core.invoke('plugin:window|set_badge_label', { + label: this.label, + value: label + }); + } + /** + * Sets the overlay icon. **Windows only** + * The overlay icon can be set for every window. + * + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setOverlayIcon("/tauri/awesome.png"); + * ``` + * + * @param icon Icon bytes or path to the icon file. Use `undefined` to remove the overlay icon. + * @return A promise indicating the success or failure of the operation. + */ + async setOverlayIcon(icon) { + return core.invoke('plugin:window|set_overlay_icon', { + label: this.label, + value: icon ? image.transformImage(icon) : undefined + }); + } + /** + * Sets the taskbar progress state. + * + * #### Platform-specific + * + * - **Linux / macOS**: Progress bar is app-wide and not specific to this window. + * - **Linux**: Only supported desktop environments with `libunity` (e.g. GNOME). + * + * @example + * ```typescript + * import { getCurrentWindow, ProgressBarStatus } from '@tauri-apps/api/window'; + * await getCurrentWindow().setProgressBar({ + * status: ProgressBarStatus.Normal, + * progress: 50, + * }); + * ``` + * + * @return A promise indicating the success or failure of the operation. + */ + async setProgressBar(state) { + return core.invoke('plugin:window|set_progress_bar', { + label: this.label, + value: state + }); + } + /** + * Sets whether the window should be visible on all workspaces or virtual desktops. + * + * #### Platform-specific + * + * - **Windows / iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ + async setVisibleOnAllWorkspaces(visible) { + return core.invoke('plugin:window|set_visible_on_all_workspaces', { + label: this.label, + value: visible + }); + } + /** + * Sets the title bar style. **macOS only**. + * + * @since 2.0.0 + */ + async setTitleBarStyle(style) { + return core.invoke('plugin:window|set_title_bar_style', { + label: this.label, + value: style + }); + } + /** + * Set window theme, pass in `null` or `undefined` to follow system theme + * + * #### Platform-specific + * + * - **Linux / macOS**: Theme is app-wide and not specific to this window. + * - **iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ + async setTheme(theme) { + return core.invoke('plugin:window|set_theme', { + label: this.label, + value: theme + }); + } + // Listeners + /** + * Listen to window resize. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onResized(({ payload: size }) => { + * console.log('Window resized', size); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onResized(handler) { + return this.listen(event.TauriEvent.WINDOW_RESIZED, (e) => { + e.payload = new dpi.PhysicalSize(e.payload); + handler(e); + }); + } + /** + * Listen to window move. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onMoved(({ payload: position }) => { + * console.log('Window moved', position); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onMoved(handler) { + return this.listen(event.TauriEvent.WINDOW_MOVED, (e) => { + e.payload = new dpi.PhysicalPosition(e.payload); + handler(e); + }); + } + /** + * Listen to window close requested. Emitted when the user requests to closes the window. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * import { confirm } from '@tauri-apps/api/dialog'; + * const unlisten = await getCurrentWindow().onCloseRequested(async (event) => { + * const confirmed = await confirm('Are you sure?'); + * if (!confirmed) { + * // user did not confirm closing the window; let's prevent it + * event.preventDefault(); + * } + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onCloseRequested(handler) { + // eslint-disable-next-line @typescript-eslint/no-misused-promises + return this.listen(event.TauriEvent.WINDOW_CLOSE_REQUESTED, async (event) => { + const evt = new CloseRequestedEvent(event); + await handler(evt); + if (!evt.isPreventDefault()) { + await this.destroy(); + } + }); + } + /** + * Listen to a file drop event. + * The listener is triggered when the user hovers the selected files on the webview, + * drops the files or cancels the operation. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/webview"; + * const unlisten = await getCurrentWindow().onDragDropEvent((event) => { + * if (event.payload.type === 'over') { + * console.log('User hovering', event.payload.position); + * } else if (event.payload.type === 'drop') { + * console.log('User dropped', event.payload.paths); + * } else { + * console.log('File drop cancelled'); + * } + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onDragDropEvent(handler) { + const unlistenDrag = await this.listen(event.TauriEvent.DRAG_ENTER, (event) => { + handler({ + ...event, + payload: { + type: 'enter', + paths: event.payload.paths, + position: new dpi.PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDragOver = await this.listen(event.TauriEvent.DRAG_OVER, (event) => { + handler({ + ...event, + payload: { + type: 'over', + position: new dpi.PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDrop = await this.listen(event.TauriEvent.DRAG_DROP, (event) => { + handler({ + ...event, + payload: { + type: 'drop', + paths: event.payload.paths, + position: new dpi.PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenCancel = await this.listen(event.TauriEvent.DRAG_LEAVE, (event) => { + handler({ ...event, payload: { type: 'leave' } }); + }); + return () => { + unlistenDrag(); + unlistenDrop(); + unlistenDragOver(); + unlistenCancel(); + }; + } + /** + * Listen to window focus change. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onFocusChanged(({ payload: focused }) => { + * console.log('Focus changed, window is focused? ' + focused); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onFocusChanged(handler) { + const unlistenFocus = await this.listen(event.TauriEvent.WINDOW_FOCUS, (event) => { + handler({ ...event, payload: true }); + }); + const unlistenBlur = await this.listen(event.TauriEvent.WINDOW_BLUR, (event) => { + handler({ ...event, payload: false }); + }); + return () => { + unlistenFocus(); + unlistenBlur(); + }; + } + /** + * Listen to window scale change. Emitted when the window's scale factor has changed. + * The following user actions can cause DPI changes: + * - Changing the display's resolution. + * - Changing the display's scale factor (e.g. in Control Panel on Windows). + * - Moving the window to a display with a different scale factor. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onScaleChanged(({ payload }) => { + * console.log('Scale changed', payload.scaleFactor, payload.size); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onScaleChanged(handler) { + return this.listen(event.TauriEvent.WINDOW_SCALE_FACTOR_CHANGED, handler); + } + /** + * Listen to the system theme change. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onThemeChanged(({ payload: theme }) => { + * console.log('New theme: ' + theme); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onThemeChanged(handler) { + return this.listen(event.TauriEvent.WINDOW_THEME_CHANGED, handler); + } +} +/** + * Background throttling policy + * + * @since 2.0.0 + */ +var BackgroundThrottlingPolicy; +(function (BackgroundThrottlingPolicy) { + BackgroundThrottlingPolicy["Disabled"] = "disabled"; + BackgroundThrottlingPolicy["Throttle"] = "throttle"; + BackgroundThrottlingPolicy["Suspend"] = "suspend"; +})(BackgroundThrottlingPolicy || (BackgroundThrottlingPolicy = {})); +/** + * Platform-specific window effects + * + * @since 2.0.0 + */ +exports.Effect = void 0; +(function (Effect) { + /** + * A default material appropriate for the view's effectiveAppearance. **macOS 10.14-** + * + * @deprecated since macOS 10.14. You should instead choose an appropriate semantic material. + */ + Effect["AppearanceBased"] = "appearanceBased"; + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Effect["Light"] = "light"; + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Effect["Dark"] = "dark"; + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Effect["MediumLight"] = "mediumLight"; + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Effect["UltraDark"] = "ultraDark"; + /** + * **macOS 10.10+** + */ + Effect["Titlebar"] = "titlebar"; + /** + * **macOS 10.10+** + */ + Effect["Selection"] = "selection"; + /** + * **macOS 10.11+** + */ + Effect["Menu"] = "menu"; + /** + * **macOS 10.11+** + */ + Effect["Popover"] = "popover"; + /** + * **macOS 10.11+** + */ + Effect["Sidebar"] = "sidebar"; + /** + * **macOS 10.14+** + */ + Effect["HeaderView"] = "headerView"; + /** + * **macOS 10.14+** + */ + Effect["Sheet"] = "sheet"; + /** + * **macOS 10.14+** + */ + Effect["WindowBackground"] = "windowBackground"; + /** + * **macOS 10.14+** + */ + Effect["HudWindow"] = "hudWindow"; + /** + * **macOS 10.14+** + */ + Effect["FullScreenUI"] = "fullScreenUI"; + /** + * **macOS 10.14+** + */ + Effect["Tooltip"] = "tooltip"; + /** + * **macOS 10.14+** + */ + Effect["ContentBackground"] = "contentBackground"; + /** + * **macOS 10.14+** + */ + Effect["UnderWindowBackground"] = "underWindowBackground"; + /** + * **macOS 10.14+** + */ + Effect["UnderPageBackground"] = "underPageBackground"; + /** + * **Windows 11 Only** + */ + Effect["Mica"] = "mica"; + /** + * **Windows 7/10/11(22H1) Only** + * + * #### Notes + * + * This effect has bad performance when resizing/dragging the window on Windows 11 build 22621. + */ + Effect["Blur"] = "blur"; + /** + * **Windows 10/11** + * + * #### Notes + * + * This effect has bad performance when resizing/dragging the window on Windows 10 v1903+ and Windows 11 build 22000. + */ + Effect["Acrylic"] = "acrylic"; + /** + * Tabbed effect that matches the system dark perefence **Windows 11 Only** + */ + Effect["Tabbed"] = "tabbed"; + /** + * Tabbed effect with dark mode but only if dark mode is enabled on the system **Windows 11 Only** + */ + Effect["TabbedDark"] = "tabbedDark"; + /** + * Tabbed effect with light mode **Windows 11 Only** + */ + Effect["TabbedLight"] = "tabbedLight"; +})(exports.Effect || (exports.Effect = {})); +/** + * Window effect state **macOS only** + * + * @see https://developer.apple.com/documentation/appkit/nsvisualeffectview/state + * + * @since 2.0.0 + */ +exports.EffectState = void 0; +(function (EffectState) { + /** + * Make window effect state follow the window's active state **macOS only** + */ + EffectState["FollowsWindowActiveState"] = "followsWindowActiveState"; + /** + * Make window effect state always active **macOS only** + */ + EffectState["Active"] = "active"; + /** + * Make window effect state always inactive **macOS only** + */ + EffectState["Inactive"] = "inactive"; +})(exports.EffectState || (exports.EffectState = {})); +function mapMonitor(m) { + return m === null + ? null + : { + name: m.name, + scaleFactor: m.scaleFactor, + position: new dpi.PhysicalPosition(m.position), + size: new dpi.PhysicalSize(m.size) + }; +} +/** + * Returns the monitor on which the window currently resides. + * Returns `null` if current monitor can't be detected. + * @example + * ```typescript + * import { currentMonitor } from '@tauri-apps/api/window'; + * const monitor = currentMonitor(); + * ``` + * + * @since 1.0.0 + */ +async function currentMonitor() { + return core.invoke('plugin:window|current_monitor').then(mapMonitor); +} +/** + * Returns the primary monitor of the system. + * Returns `null` if it can't identify any monitor as a primary one. + * @example + * ```typescript + * import { primaryMonitor } from '@tauri-apps/api/window'; + * const monitor = primaryMonitor(); + * ``` + * + * @since 1.0.0 + */ +async function primaryMonitor() { + return core.invoke('plugin:window|primary_monitor').then(mapMonitor); +} +/** + * Returns the monitor that contains the given point. Returns `null` if can't find any. + * @example + * ```typescript + * import { monitorFromPoint } from '@tauri-apps/api/window'; + * const monitor = monitorFromPoint(); + * ``` + * + * @since 1.0.0 + */ +async function monitorFromPoint(x, y) { + return core.invoke('plugin:window|monitor_from_point', { + x, + y + }).then(mapMonitor); +} +/** + * Returns the list of all the monitors available on the system. + * @example + * ```typescript + * import { availableMonitors } from '@tauri-apps/api/window'; + * const monitors = availableMonitors(); + * ``` + * + * @since 1.0.0 + */ +async function availableMonitors() { + return core.invoke('plugin:window|available_monitors').then((ms) => ms.map(mapMonitor)); +} +/** + * Get the cursor position relative to the top-left hand corner of the desktop. + * + * Note that the top-left hand corner of the desktop is not necessarily the same as the screen. + * If the user uses a desktop with multiple monitors, + * the top-left hand corner of the desktop is the top-left hand corner of the main monitor on Windows and macOS + * or the top-left of the leftmost monitor on X11. + * + * The coordinates can be negative if the top-left hand corner of the window is outside of the visible screen region. + */ +async function cursorPosition() { + return core.invoke('plugin:window|cursor_position').then((v) => new dpi.PhysicalPosition(v)); +} + +exports.LogicalPosition = dpi.LogicalPosition; +exports.LogicalSize = dpi.LogicalSize; +exports.PhysicalPosition = dpi.PhysicalPosition; +exports.PhysicalSize = dpi.PhysicalSize; +exports.CloseRequestedEvent = CloseRequestedEvent; +exports.Window = Window; +exports.availableMonitors = availableMonitors; +exports.currentMonitor = currentMonitor; +exports.cursorPosition = cursorPosition; +exports.getAllWindows = getAllWindows; +exports.getCurrentWindow = getCurrentWindow; +exports.monitorFromPoint = monitorFromPoint; +exports.primaryMonitor = primaryMonitor; diff --git a/node_modules/@tauri-apps/api/window.d.ts b/node_modules/@tauri-apps/api/window.d.ts new file mode 100644 index 0000000..386ff4d --- /dev/null +++ b/node_modules/@tauri-apps/api/window.d.ts @@ -0,0 +1,1723 @@ +/** + * Provides APIs to create windows, communicate with other windows and manipulate the current window. + * + * #### Window events + * + * Events can be listened to using {@link Window.listen}: + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * getCurrentWindow().listen("my-window-event", ({ event, payload }) => { }); + * ``` + * + * @module + */ +import { LogicalPosition, LogicalSize, PhysicalPosition, PhysicalSize, Position, Size } from './dpi'; +import type { Event, EventName, EventCallback, UnlistenFn } from './event'; +import { type EventTarget } from './event'; +import { WebviewWindow } from './webviewWindow'; +import type { DragDropEvent } from './webview'; +import { Image } from './image'; +/** + * Allows you to retrieve information about a given monitor. + * + * @since 1.0.0 + */ +export interface Monitor { + /** Human-readable name of the monitor */ + name: string | null; + /** The monitor's resolution. */ + size: PhysicalSize; + /** the Top-left corner position of the monitor relative to the larger full screen area. */ + position: PhysicalPosition; + /** The scale factor that can be used to map physical pixels to logical pixels. */ + scaleFactor: number; +} +type Theme = 'light' | 'dark'; +type TitleBarStyle = 'visible' | 'transparent' | 'overlay'; +type ResizeDirection = 'East' | 'North' | 'NorthEast' | 'NorthWest' | 'South' | 'SouthEast' | 'SouthWest' | 'West'; +/** + * The payload for the `scaleChange` event. + * + * @since 1.0.2 + */ +interface ScaleFactorChanged { + /** The new window scale factor. */ + scaleFactor: number; + /** The new window size */ + size: PhysicalSize; +} +/** + * Attention type to request on a window. + * + * @since 1.0.0 + */ +declare enum UserAttentionType { + /** + * #### Platform-specific + * - **macOS:** Bounces the dock icon until the application is in focus. + * - **Windows:** Flashes both the window and the taskbar button until the application is in focus. + */ + Critical = 1, + /** + * #### Platform-specific + * - **macOS:** Bounces the dock icon once. + * - **Windows:** Flashes the taskbar button until the application is in focus. + */ + Informational = 2 +} +declare class CloseRequestedEvent { + /** Event name */ + event: EventName; + /** Event identifier used to unlisten */ + id: number; + private _preventDefault; + constructor(event: Event); + preventDefault(): void; + isPreventDefault(): boolean; +} +export type CursorIcon = 'default' | 'crosshair' | 'hand' | 'arrow' | 'move' | 'text' | 'wait' | 'help' | 'progress' | 'notAllowed' | 'contextMenu' | 'cell' | 'verticalText' | 'alias' | 'copy' | 'noDrop' | 'grab' | 'grabbing' | 'allScroll' | 'zoomIn' | 'zoomOut' | 'eResize' | 'nResize' | 'neResize' | 'nwResize' | 'sResize' | 'seResize' | 'swResize' | 'wResize' | 'ewResize' | 'nsResize' | 'neswResize' | 'nwseResize' | 'colResize' | 'rowResize'; +export declare enum ProgressBarStatus { + /** + * Hide progress bar. + */ + None = "none", + /** + * Normal state. + */ + Normal = "normal", + /** + * Indeterminate state. **Treated as Normal on Linux and macOS** + */ + Indeterminate = "indeterminate", + /** + * Paused state. **Treated as Normal on Linux** + */ + Paused = "paused", + /** + * Error state. **Treated as Normal on linux** + */ + Error = "error" +} +export interface WindowSizeConstraints { + minWidth?: number; + minHeight?: number; + maxWidth?: number; + maxHeight?: number; +} +export interface ProgressBarState { + /** + * The progress bar status. + */ + status?: ProgressBarStatus; + /** + * The progress bar progress. This can be a value ranging from `0` to `100` + */ + progress?: number; +} +/** + * Get an instance of `Window` for the current window. + * + * @since 1.0.0 + */ +declare function getCurrentWindow(): Window; +/** + * Gets a list of instances of `Window` for all available windows. + * + * @since 1.0.0 + */ +declare function getAllWindows(): Promise; +/** @ignore */ +export type WindowLabel = string; +/** + * Create new window or get a handle to an existing one. + * + * Windows are identified by a *label* a unique identifier that can be used to reference it later. + * It may only contain alphanumeric characters `a-zA-Z` plus the following special characters `-`, `/`, `:` and `_`. + * + * @example + * ```typescript + * import { Window } from "@tauri-apps/api/window" + * + * const appWindow = new Window('theUniqueLabel'); + * + * appWindow.once('tauri://created', function () { + * // window successfully created + * }); + * appWindow.once('tauri://error', function (e) { + * // an error happened creating the window + * }); + * + * // emit an event to the backend + * await appWindow.emit("some-event", "data"); + * // listen to an event from the backend + * const unlisten = await appWindow.listen("event-name", e => {}); + * unlisten(); + * ``` + * + * @since 2.0.0 + */ +declare class Window { + /** The window label. It is a unique identifier for the window, can be used to reference it later. */ + label: WindowLabel; + /** Local event listeners. */ + listeners: Record>>; + /** + * Creates a new Window. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window'; + * const appWindow = new Window('my-label'); + * appWindow.once('tauri://created', function () { + * // window successfully created + * }); + * appWindow.once('tauri://error', function (e) { + * // an error happened creating the window + * }); + * ``` + * + * @param label The unique window label. Must be alphanumeric: `a-zA-Z-/:_`. + * @returns The {@link Window} instance to communicate with the window. + */ + constructor(label: WindowLabel, options?: WindowOptions); + /** + * Gets the Window associated with the given label. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window'; + * const mainWindow = Window.getByLabel('main'); + * ``` + * + * @param label The window label. + * @returns The Window instance to communicate with the window or null if the window doesn't exist. + */ + static getByLabel(label: string): Promise; + /** + * Get an instance of `Window` for the current window. + */ + static getCurrent(): Window; + /** + * Gets a list of instances of `Window` for all available windows. + */ + static getAll(): Promise; + /** + * Gets the focused window. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window'; + * const focusedWindow = Window.getFocusedWindow(); + * ``` + * + * @returns The Window instance or `undefined` if there is not any focused window. + */ + static getFocusedWindow(): Promise; + /** + * Listen to an emitted event on this window. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const unlisten = await getCurrentWindow().listen('state-changed', (event) => { + * console.log(`Got error: ${payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + listen(event: EventName, handler: EventCallback): Promise; + /** + * Listen to an emitted event on this window only once. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const unlisten = await getCurrentWindow().once('initialized', (event) => { + * console.log(`Window initialized!`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + once(event: EventName, handler: EventCallback): Promise; + /** + * Emits an event to all {@link EventTarget|targets}. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().emit('window-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + emit(event: string, payload?: T): Promise; + /** + * Emits an event to all {@link EventTarget|targets} matching the given target. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().emit('main', 'window-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * @param target Label of the target Window/Webview/WebviewWindow or raw {@link EventTarget} object. + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + emitTo(target: string | EventTarget, event: string, payload?: T): Promise; + /** @ignore */ + _handleTauriEvent(event: string, handler: EventCallback): boolean; + /** + * The scale factor that can be used to map physical pixels to logical pixels. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const factor = await getCurrentWindow().scaleFactor(); + * ``` + * + * @returns The window's monitor scale factor. + */ + scaleFactor(): Promise; + /** + * The position of the top-left hand corner of the window's client area relative to the top-left hand corner of the desktop. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const position = await getCurrentWindow().innerPosition(); + * ``` + * + * @returns The window's inner position. + */ + innerPosition(): Promise; + /** + * The position of the top-left hand corner of the window relative to the top-left hand corner of the desktop. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const position = await getCurrentWindow().outerPosition(); + * ``` + * + * @returns The window's outer position. + */ + outerPosition(): Promise; + /** + * The physical size of the window's client area. + * The client area is the content of the window, excluding the title bar and borders. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const size = await getCurrentWindow().innerSize(); + * ``` + * + * @returns The window's inner size. + */ + innerSize(): Promise; + /** + * The physical size of the entire window. + * These dimensions include the title bar and borders. If you don't want that (and you usually don't), use inner_size instead. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const size = await getCurrentWindow().outerSize(); + * ``` + * + * @returns The window's outer size. + */ + outerSize(): Promise; + /** + * Gets the window's current fullscreen state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const fullscreen = await getCurrentWindow().isFullscreen(); + * ``` + * + * @returns Whether the window is in fullscreen mode or not. + */ + isFullscreen(): Promise; + /** + * Gets the window's current minimized state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const minimized = await getCurrentWindow().isMinimized(); + * ``` + */ + isMinimized(): Promise; + /** + * Gets the window's current maximized state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const maximized = await getCurrentWindow().isMaximized(); + * ``` + * + * @returns Whether the window is maximized or not. + */ + isMaximized(): Promise; + /** + * Gets the window's current focus state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const focused = await getCurrentWindow().isFocused(); + * ``` + * + * @returns Whether the window is focused or not. + */ + isFocused(): Promise; + /** + * Gets the window's current decorated state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const decorated = await getCurrentWindow().isDecorated(); + * ``` + * + * @returns Whether the window is decorated or not. + */ + isDecorated(): Promise; + /** + * Gets the window's current resizable state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const resizable = await getCurrentWindow().isResizable(); + * ``` + * + * @returns Whether the window is resizable or not. + */ + isResizable(): Promise; + /** + * Gets the window's native maximize button state. + * + * #### Platform-specific + * + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const maximizable = await getCurrentWindow().isMaximizable(); + * ``` + * + * @returns Whether the window's native maximize button is enabled or not. + */ + isMaximizable(): Promise; + /** + * Gets the window's native minimize button state. + * + * #### Platform-specific + * + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const minimizable = await getCurrentWindow().isMinimizable(); + * ``` + * + * @returns Whether the window's native minimize button is enabled or not. + */ + isMinimizable(): Promise; + /** + * Gets the window's native close button state. + * + * #### Platform-specific + * + * - **iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const closable = await getCurrentWindow().isClosable(); + * ``` + * + * @returns Whether the window's native close button is enabled or not. + */ + isClosable(): Promise; + /** + * Gets the window's current visible state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const visible = await getCurrentWindow().isVisible(); + * ``` + * + * @returns Whether the window is visible or not. + */ + isVisible(): Promise; + /** + * Gets the window's current title. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const title = await getCurrentWindow().title(); + * ``` + */ + title(): Promise; + /** + * Gets the window's current theme. + * + * #### Platform-specific + * + * - **macOS:** Theme was introduced on macOS 10.14. Returns `light` on macOS 10.13 and below. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const theme = await getCurrentWindow().theme(); + * ``` + * + * @returns The window theme. + */ + theme(): Promise; + /** + * Whether the window is configured to be always on top of other windows or not. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const alwaysOnTop = await getCurrentWindow().isAlwaysOnTop(); + * ``` + * + * @returns Whether the window is visible or not. + */ + isAlwaysOnTop(): Promise; + /** + * Centers the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().center(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + center(): Promise; + /** + * Requests user attention to the window, this has no effect if the application + * is already focused. How requesting for user attention manifests is platform dependent, + * see `UserAttentionType` for details. + * + * Providing `null` will unset the request for user attention. Unsetting the request for + * user attention might not be done automatically by the WM when the window receives input. + * + * #### Platform-specific + * + * - **macOS:** `null` has no effect. + * - **Linux:** Urgency levels have the same effect. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().requestUserAttention(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + requestUserAttention(requestType: UserAttentionType | null): Promise; + /** + * Updates the window resizable flag. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setResizable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + setResizable(resizable: boolean): Promise; + /** + * Enable or disable the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setEnabled(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.0.0 + */ + setEnabled(enabled: boolean): Promise; + /** + * Whether the window is enabled or disabled. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setEnabled(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.0.0 + */ + isEnabled(): Promise; + /** + * Sets whether the window's native maximize button is enabled or not. + * If resizable is set to false, this setting is ignored. + * + * #### Platform-specific + * + * - **macOS:** Disables the "zoom" button in the window titlebar, which is also used to enter fullscreen mode. + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMaximizable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + setMaximizable(maximizable: boolean): Promise; + /** + * Sets whether the window's native minimize button is enabled or not. + * + * #### Platform-specific + * + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMinimizable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + setMinimizable(minimizable: boolean): Promise; + /** + * Sets whether the window's native close button is enabled or not. + * + * #### Platform-specific + * + * - **Linux:** GTK+ will do its best to convince the window manager not to show a close button. Depending on the system, this function may not have any effect when called on a window that is already visible + * - **iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setClosable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + setClosable(closable: boolean): Promise; + /** + * Sets the window title. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setTitle('Tauri'); + * ``` + * + * @param title The new title + * @returns A promise indicating the success or failure of the operation. + */ + setTitle(title: string): Promise; + /** + * Maximizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().maximize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + maximize(): Promise; + /** + * Unmaximizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().unmaximize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + unmaximize(): Promise; + /** + * Toggles the window maximized state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().toggleMaximize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + toggleMaximize(): Promise; + /** + * Minimizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().minimize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + minimize(): Promise; + /** + * Unminimizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().unminimize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + unminimize(): Promise; + /** + * Sets the window visibility to true. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().show(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + show(): Promise; + /** + * Sets the window visibility to false. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().hide(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + hide(): Promise; + /** + * Closes the window. + * + * Note this emits a closeRequested event so you can intercept it. To force window close, use {@link Window.destroy}. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().close(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + close(): Promise; + /** + * Destroys the window. Behaves like {@link Window.close} but forces the window close instead of emitting a closeRequested event. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().destroy(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + destroy(): Promise; + /** + * Whether the window should have borders and bars. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setDecorations(false); + * ``` + * + * @param decorations Whether the window should have borders and bars. + * @returns A promise indicating the success or failure of the operation. + */ + setDecorations(decorations: boolean): Promise; + /** + * Whether or not the window should have shadow. + * + * #### Platform-specific + * + * - **Windows:** + * - `false` has no effect on decorated window, shadows are always ON. + * - `true` will make undecorated window have a 1px white border, + * and on Windows 11, it will have a rounded corners. + * - **Linux:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setShadow(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + setShadow(enable: boolean): Promise; + /** + * Set window effects. + */ + setEffects(effects: Effects): Promise; + /** + * Clear any applied effects if possible. + */ + clearEffects(): Promise; + /** + * Whether the window should always be on top of other windows. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setAlwaysOnTop(true); + * ``` + * + * @param alwaysOnTop Whether the window should always be on top of other windows or not. + * @returns A promise indicating the success or failure of the operation. + */ + setAlwaysOnTop(alwaysOnTop: boolean): Promise; + /** + * Whether the window should always be below other windows. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setAlwaysOnBottom(true); + * ``` + * + * @param alwaysOnBottom Whether the window should always be below other windows or not. + * @returns A promise indicating the success or failure of the operation. + */ + setAlwaysOnBottom(alwaysOnBottom: boolean): Promise; + /** + * Prevents the window contents from being captured by other apps. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setContentProtected(true); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + setContentProtected(protected_: boolean): Promise; + /** + * Resizes the window with a new inner size. + * @example + * ```typescript + * import { getCurrentWindow, LogicalSize } from '@tauri-apps/api/window'; + * await getCurrentWindow().setSize(new LogicalSize(600, 500)); + * ``` + * + * @param size The logical or physical inner size. + * @returns A promise indicating the success or failure of the operation. + */ + setSize(size: LogicalSize | PhysicalSize | Size): Promise; + /** + * Sets the window minimum inner size. If the `size` argument is not provided, the constraint is unset. + * @example + * ```typescript + * import { getCurrentWindow, PhysicalSize } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMinSize(new PhysicalSize(600, 500)); + * ``` + * + * @param size The logical or physical inner size, or `null` to unset the constraint. + * @returns A promise indicating the success or failure of the operation. + */ + setMinSize(size: LogicalSize | PhysicalSize | Size | null | undefined): Promise; + /** + * Sets the window maximum inner size. If the `size` argument is undefined, the constraint is unset. + * @example + * ```typescript + * import { getCurrentWindow, LogicalSize } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMaxSize(new LogicalSize(600, 500)); + * ``` + * + * @param size The logical or physical inner size, or `null` to unset the constraint. + * @returns A promise indicating the success or failure of the operation. + */ + setMaxSize(size: LogicalSize | PhysicalSize | Size | null | undefined): Promise; + /** + * Sets the window inner size constraints. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setSizeConstraints({ minWidth: 300 }); + * ``` + * + * @param constraints The logical or physical inner size, or `null` to unset the constraint. + * @returns A promise indicating the success or failure of the operation. + */ + setSizeConstraints(constraints: WindowSizeConstraints | null | undefined): Promise; + /** + * Sets the window outer position. + * @example + * ```typescript + * import { getCurrentWindow, LogicalPosition } from '@tauri-apps/api/window'; + * await getCurrentWindow().setPosition(new LogicalPosition(600, 500)); + * ``` + * + * @param position The new position, in logical or physical pixels. + * @returns A promise indicating the success or failure of the operation. + */ + setPosition(position: LogicalPosition | PhysicalPosition | Position): Promise; + /** + * Sets the window fullscreen state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setFullscreen(true); + * ``` + * + * @param fullscreen Whether the window should go to fullscreen or not. + * @returns A promise indicating the success or failure of the operation. + */ + setFullscreen(fullscreen: boolean): Promise; + /** + * Bring the window to front and focus. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setFocus(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + setFocus(): Promise; + /** + * Sets the window icon. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setIcon('/tauri/awesome.png'); + * ``` + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + * + * @param icon Icon bytes or path to the icon file. + * @returns A promise indicating the success or failure of the operation. + */ + setIcon(icon: string | Image | Uint8Array | ArrayBuffer | number[]): Promise; + /** + * Whether the window icon should be hidden from the taskbar or not. + * + * #### Platform-specific + * + * - **macOS:** Unsupported. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setSkipTaskbar(true); + * ``` + * + * @param skip true to hide window icon, false to show it. + * @returns A promise indicating the success or failure of the operation. + */ + setSkipTaskbar(skip: boolean): Promise; + /** + * Grabs the cursor, preventing it from leaving the window. + * + * There's no guarantee that the cursor will be hidden. You should + * hide it by yourself if you want so. + * + * #### Platform-specific + * + * - **Linux:** Unsupported. + * - **macOS:** This locks the cursor in a fixed location, which looks visually awkward. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorGrab(true); + * ``` + * + * @param grab `true` to grab the cursor icon, `false` to release it. + * @returns A promise indicating the success or failure of the operation. + */ + setCursorGrab(grab: boolean): Promise; + /** + * Modifies the cursor's visibility. + * + * #### Platform-specific + * + * - **Windows:** The cursor is only hidden within the confines of the window. + * - **macOS:** The cursor is hidden as long as the window has input focus, even if the cursor is + * outside of the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorVisible(false); + * ``` + * + * @param visible If `false`, this will hide the cursor. If `true`, this will show the cursor. + * @returns A promise indicating the success or failure of the operation. + */ + setCursorVisible(visible: boolean): Promise; + /** + * Modifies the cursor icon of the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorIcon('help'); + * ``` + * + * @param icon The new cursor icon. + * @returns A promise indicating the success or failure of the operation. + */ + setCursorIcon(icon: CursorIcon): Promise; + /** + * Sets the window background color. + * + * #### Platform-specific: + * + * - **Windows:** alpha channel is ignored. + * - **iOS / Android:** Unsupported. + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.1.0 + */ + setBackgroundColor(color: Color): Promise; + /** + * Changes the position of the cursor in window coordinates. + * @example + * ```typescript + * import { getCurrentWindow, LogicalPosition } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorPosition(new LogicalPosition(600, 300)); + * ``` + * + * @param position The new cursor position. + * @returns A promise indicating the success or failure of the operation. + */ + setCursorPosition(position: LogicalPosition | PhysicalPosition | Position): Promise; + /** + * Changes the cursor events behavior. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setIgnoreCursorEvents(true); + * ``` + * + * @param ignore `true` to ignore the cursor events; `false` to process them as usual. + * @returns A promise indicating the success or failure of the operation. + */ + setIgnoreCursorEvents(ignore: boolean): Promise; + /** + * Starts dragging the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().startDragging(); + * ``` + * + * @return A promise indicating the success or failure of the operation. + */ + startDragging(): Promise; + /** + * Starts resize-dragging the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().startResizeDragging(); + * ``` + * + * @return A promise indicating the success or failure of the operation. + */ + startResizeDragging(direction: ResizeDirection): Promise; + /** + * Sets the badge count. It is app wide and not specific to this window. + * + * #### Platform-specific + * + * - **Windows**: Unsupported. Use @{linkcode Window.setOverlayIcon} instead. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setBadgeCount(5); + * ``` + * + * @param count The badge count. Use `undefined` to remove the badge. + * @return A promise indicating the success or failure of the operation. + */ + setBadgeCount(count?: number): Promise; + /** + * Sets the badge cont **macOS only**. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setBadgeLabel("Hello"); + * ``` + * + * @param label The badge label. Use `undefined` to remove the badge. + * @return A promise indicating the success or failure of the operation. + */ + setBadgeLabel(label?: string): Promise; + /** + * Sets the overlay icon. **Windows only** + * The overlay icon can be set for every window. + * + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setOverlayIcon("/tauri/awesome.png"); + * ``` + * + * @param icon Icon bytes or path to the icon file. Use `undefined` to remove the overlay icon. + * @return A promise indicating the success or failure of the operation. + */ + setOverlayIcon(icon?: string | Image | Uint8Array | ArrayBuffer | number[]): Promise; + /** + * Sets the taskbar progress state. + * + * #### Platform-specific + * + * - **Linux / macOS**: Progress bar is app-wide and not specific to this window. + * - **Linux**: Only supported desktop environments with `libunity` (e.g. GNOME). + * + * @example + * ```typescript + * import { getCurrentWindow, ProgressBarStatus } from '@tauri-apps/api/window'; + * await getCurrentWindow().setProgressBar({ + * status: ProgressBarStatus.Normal, + * progress: 50, + * }); + * ``` + * + * @return A promise indicating the success or failure of the operation. + */ + setProgressBar(state: ProgressBarState): Promise; + /** + * Sets whether the window should be visible on all workspaces or virtual desktops. + * + * #### Platform-specific + * + * - **Windows / iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ + setVisibleOnAllWorkspaces(visible: boolean): Promise; + /** + * Sets the title bar style. **macOS only**. + * + * @since 2.0.0 + */ + setTitleBarStyle(style: TitleBarStyle): Promise; + /** + * Set window theme, pass in `null` or `undefined` to follow system theme + * + * #### Platform-specific + * + * - **Linux / macOS**: Theme is app-wide and not specific to this window. + * - **iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ + setTheme(theme?: Theme | null): Promise; + /** + * Listen to window resize. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onResized(({ payload: size }) => { + * console.log('Window resized', size); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + onResized(handler: EventCallback): Promise; + /** + * Listen to window move. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onMoved(({ payload: position }) => { + * console.log('Window moved', position); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + onMoved(handler: EventCallback): Promise; + /** + * Listen to window close requested. Emitted when the user requests to closes the window. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * import { confirm } from '@tauri-apps/api/dialog'; + * const unlisten = await getCurrentWindow().onCloseRequested(async (event) => { + * const confirmed = await confirm('Are you sure?'); + * if (!confirmed) { + * // user did not confirm closing the window; let's prevent it + * event.preventDefault(); + * } + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + onCloseRequested(handler: (event: CloseRequestedEvent) => void | Promise): Promise; + /** + * Listen to a file drop event. + * The listener is triggered when the user hovers the selected files on the webview, + * drops the files or cancels the operation. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/webview"; + * const unlisten = await getCurrentWindow().onDragDropEvent((event) => { + * if (event.payload.type === 'over') { + * console.log('User hovering', event.payload.position); + * } else if (event.payload.type === 'drop') { + * console.log('User dropped', event.payload.paths); + * } else { + * console.log('File drop cancelled'); + * } + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + onDragDropEvent(handler: EventCallback): Promise; + /** + * Listen to window focus change. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onFocusChanged(({ payload: focused }) => { + * console.log('Focus changed, window is focused? ' + focused); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + onFocusChanged(handler: EventCallback): Promise; + /** + * Listen to window scale change. Emitted when the window's scale factor has changed. + * The following user actions can cause DPI changes: + * - Changing the display's resolution. + * - Changing the display's scale factor (e.g. in Control Panel on Windows). + * - Moving the window to a display with a different scale factor. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onScaleChanged(({ payload }) => { + * console.log('Scale changed', payload.scaleFactor, payload.size); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + onScaleChanged(handler: EventCallback): Promise; + /** + * Listen to the system theme change. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onThemeChanged(({ payload: theme }) => { + * console.log('New theme: ' + theme); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + onThemeChanged(handler: EventCallback): Promise; +} +/** + * An RGBA color. Each value has minimum of 0 and maximum of 255. + * + * It can be either a string `#ffffff`, an array of 3 or 4 elements or an object. + * + * @since 2.0.0 + */ +type Color = [number, number, number] | [number, number, number, number] | { + red: number; + green: number; + blue: number; + alpha: number; +} | string; +/** + * Background throttling policy + * + * @since 2.0.0 + */ +declare enum BackgroundThrottlingPolicy { + Disabled = "disabled", + Throttle = "throttle", + Suspend = "suspend" +} +/** + * Platform-specific window effects + * + * @since 2.0.0 + */ +declare enum Effect { + /** + * A default material appropriate for the view's effectiveAppearance. **macOS 10.14-** + * + * @deprecated since macOS 10.14. You should instead choose an appropriate semantic material. + */ + AppearanceBased = "appearanceBased", + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Light = "light", + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Dark = "dark", + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + MediumLight = "mediumLight", + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + UltraDark = "ultraDark", + /** + * **macOS 10.10+** + */ + Titlebar = "titlebar", + /** + * **macOS 10.10+** + */ + Selection = "selection", + /** + * **macOS 10.11+** + */ + Menu = "menu", + /** + * **macOS 10.11+** + */ + Popover = "popover", + /** + * **macOS 10.11+** + */ + Sidebar = "sidebar", + /** + * **macOS 10.14+** + */ + HeaderView = "headerView", + /** + * **macOS 10.14+** + */ + Sheet = "sheet", + /** + * **macOS 10.14+** + */ + WindowBackground = "windowBackground", + /** + * **macOS 10.14+** + */ + HudWindow = "hudWindow", + /** + * **macOS 10.14+** + */ + FullScreenUI = "fullScreenUI", + /** + * **macOS 10.14+** + */ + Tooltip = "tooltip", + /** + * **macOS 10.14+** + */ + ContentBackground = "contentBackground", + /** + * **macOS 10.14+** + */ + UnderWindowBackground = "underWindowBackground", + /** + * **macOS 10.14+** + */ + UnderPageBackground = "underPageBackground", + /** + * **Windows 11 Only** + */ + Mica = "mica", + /** + * **Windows 7/10/11(22H1) Only** + * + * #### Notes + * + * This effect has bad performance when resizing/dragging the window on Windows 11 build 22621. + */ + Blur = "blur", + /** + * **Windows 10/11** + * + * #### Notes + * + * This effect has bad performance when resizing/dragging the window on Windows 10 v1903+ and Windows 11 build 22000. + */ + Acrylic = "acrylic", + /** + * Tabbed effect that matches the system dark perefence **Windows 11 Only** + */ + Tabbed = "tabbed", + /** + * Tabbed effect with dark mode but only if dark mode is enabled on the system **Windows 11 Only** + */ + TabbedDark = "tabbedDark", + /** + * Tabbed effect with light mode **Windows 11 Only** + */ + TabbedLight = "tabbedLight" +} +/** + * Window effect state **macOS only** + * + * @see https://developer.apple.com/documentation/appkit/nsvisualeffectview/state + * + * @since 2.0.0 + */ +declare enum EffectState { + /** + * Make window effect state follow the window's active state **macOS only** + */ + FollowsWindowActiveState = "followsWindowActiveState", + /** + * Make window effect state always active **macOS only** + */ + Active = "active", + /** + * Make window effect state always inactive **macOS only** + */ + Inactive = "inactive" +} +/** The window effects configuration object + * + * @since 2.0.0 + */ +interface Effects { + /** + * List of Window effects to apply to the Window. + * Conflicting effects will apply the first one and ignore the rest. + */ + effects: Effect[]; + /** + * Window effect state **macOS Only** + */ + state?: EffectState; + /** + * Window effect corner radius **macOS Only** + */ + radius?: number; + /** + * Window effect color. Affects {@link Effect.Blur} and {@link Effect.Acrylic} only + * on Windows 10 v1903+. Doesn't have any effect on Windows 7 or Windows 11. + */ + color?: Color; +} +/** + * Minimum margin to work area + */ +interface PreventOverflowMargin { + width: number; + height: number; +} +/** + * Configuration for the window to create. + * + * @since 1.0.0 + */ +interface WindowOptions { + /** Show window in the center of the screen.. */ + center?: boolean; + /** The initial vertical position. Only applies if `y` is also set. */ + x?: number; + /** The initial horizontal position. Only applies if `x` is also set. */ + y?: number; + /** The initial width. */ + width?: number; + /** The initial height. */ + height?: number; + /** The minimum width. Only applies if `minHeight` is also set. */ + minWidth?: number; + /** The minimum height. Only applies if `minWidth` is also set. */ + minHeight?: number; + /** The maximum width. Only applies if `maxHeight` is also set. */ + maxWidth?: number; + /** The maximum height. Only applies if `maxWidth` is also set. */ + maxHeight?: number; + /** + * Prevent the window from overflowing the working area (e.g. monitor size - taskbar size) + * on creation, which means the window size will be limited to `monitor size - taskbar size` + * + * Can either be set to `true` or to a {@link PreventOverflowMargin} object to set an additional margin + * that should be considered to determine the working area + * (in this case the window size will be limited to `monitor size - taskbar size - margin`) + * + * **NOTE**: The overflow check is only performed on window creation, resizes can still overflow + * + * #### Platform-specific + * + * - **iOS / Android:** Unsupported. + */ + preventOverflow?: boolean | PreventOverflowMargin; + /** Whether the window is resizable or not. */ + resizable?: boolean; + /** Window title. */ + title?: string; + /** Whether the window is in fullscreen mode or not. */ + fullscreen?: boolean; + /** Whether the window will be initially focused or not. */ + focus?: boolean; + /** + * Whether the window is transparent or not. + * Note that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri.conf.json > app > macOSPrivateApi`. + * WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`. + */ + transparent?: boolean; + /** Whether the window should be maximized upon creation or not. */ + maximized?: boolean; + /** Whether the window should be immediately visible upon creation or not. */ + visible?: boolean; + /** Whether the window should have borders and bars or not. */ + decorations?: boolean; + /** Whether the window should always be on top of other windows or not. */ + alwaysOnTop?: boolean; + /** Whether the window should always be below other windows. */ + alwaysOnBottom?: boolean; + /** Prevents the window contents from being captured by other apps. */ + contentProtected?: boolean; + /** Whether or not the window icon should be added to the taskbar. */ + skipTaskbar?: boolean; + /** + * Whether or not the window has shadow. + * + * #### Platform-specific + * + * - **Windows:** + * - `false` has no effect on decorated window, shadows are always ON. + * - `true` will make undecorated window have a 1px white border, + * and on Windows 11, it will have a rounded corners. + * - **Linux:** Unsupported. + * + * @since 2.0.0 + */ + shadow?: boolean; + /** + * The initial window theme. Defaults to the system theme. + * + * Only implemented on Windows and macOS 10.14+. + */ + theme?: Theme; + /** + * The style of the macOS title bar. + */ + titleBarStyle?: TitleBarStyle; + /** + * If `true`, sets the window title to be hidden on macOS. + */ + hiddenTitle?: boolean; + /** + * Defines the window [tabbing identifier](https://developer.apple.com/documentation/appkit/nswindow/1644704-tabbingidentifier) on macOS. + * + * Windows with the same tabbing identifier will be grouped together. + * If the tabbing identifier is not set, automatic tabbing will be disabled. + */ + tabbingIdentifier?: string; + /** + * Whether the window's native maximize button is enabled or not. Defaults to `true`. + */ + maximizable?: boolean; + /** + * Whether the window's native minimize button is enabled or not. Defaults to `true`. + */ + minimizable?: boolean; + /** + * Whether the window's native close button is enabled or not. Defaults to `true`. + */ + closable?: boolean; + /** + * Sets a parent to the window to be created. Can be either a {@linkcode Window} or a label of the window. + * + * #### Platform-specific + * + * - **Windows**: This sets the passed parent as an owner window to the window to be created. + * From [MSDN owned windows docs](https://docs.microsoft.com/en-us/windows/win32/winmsg/window-features#owned-windows): + * - An owned window is always above its owner in the z-order. + * - The system automatically destroys an owned window when its owner is destroyed. + * - An owned window is hidden when its owner is minimized. + * - **Linux**: This makes the new window transient for parent, see + * - **macOS**: This adds the window as a child of parent, see + */ + parent?: Window | WebviewWindow | string; + /** Whether the window should be visible on all workspaces or virtual desktops. + * + * #### Platform-specific + * + * - **Windows / iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ + visibleOnAllWorkspaces?: boolean; + /** + * Window effects. + * + * Requires the window to be transparent. + * + * #### Platform-specific: + * + * - **Windows**: If using decorations or shadows, you may want to try this workaround + * - **Linux**: Unsupported + */ + windowEffects?: Effects; + /** + * Set the window background color. + * + * #### Platform-specific: + * + * - **Android / iOS:** Unsupported. + * - **Windows**: alpha channel is ignored. + * + * @since 2.1.0 + */ + backgroundColor?: Color; + /** Change the default background throttling behaviour. + * + * ## Platform-specific + * + * - **Linux / Windows / Android**: Unsupported. Workarounds like a pending WebLock transaction might suffice. + * - **iOS**: Supported since version 17.0+. + * - **macOS**: Supported since version 14.0+. + * + * see https://github.com/tauri-apps/tauri/issues/5250#issuecomment-2569380578 + * + * @since 2.3.0 + */ + backgroundThrottling?: BackgroundThrottlingPolicy; + /** + * Whether we should disable JavaScript code execution on the webview or not. + */ + javascriptDisabled?: boolean; + /** + * on macOS and iOS there is a link preview on long pressing links, this is enabled by default. + * see https://docs.rs/objc2-web-kit/latest/objc2_web_kit/struct.WKWebView.html#method.allowsLinkPreview + */ + allowLinkPreview?: boolean; + /** + * Allows disabling the input accessory view on iOS. + * + * The accessory view is the view that appears above the keyboard when a text input element is focused. + * It usually displays a view with "Done", "Next" buttons. + */ + disableInputAccessoryView?: boolean; +} +/** + * Returns the monitor on which the window currently resides. + * Returns `null` if current monitor can't be detected. + * @example + * ```typescript + * import { currentMonitor } from '@tauri-apps/api/window'; + * const monitor = currentMonitor(); + * ``` + * + * @since 1.0.0 + */ +declare function currentMonitor(): Promise; +/** + * Returns the primary monitor of the system. + * Returns `null` if it can't identify any monitor as a primary one. + * @example + * ```typescript + * import { primaryMonitor } from '@tauri-apps/api/window'; + * const monitor = primaryMonitor(); + * ``` + * + * @since 1.0.0 + */ +declare function primaryMonitor(): Promise; +/** + * Returns the monitor that contains the given point. Returns `null` if can't find any. + * @example + * ```typescript + * import { monitorFromPoint } from '@tauri-apps/api/window'; + * const monitor = monitorFromPoint(); + * ``` + * + * @since 1.0.0 + */ +declare function monitorFromPoint(x: number, y: number): Promise; +/** + * Returns the list of all the monitors available on the system. + * @example + * ```typescript + * import { availableMonitors } from '@tauri-apps/api/window'; + * const monitors = availableMonitors(); + * ``` + * + * @since 1.0.0 + */ +declare function availableMonitors(): Promise; +/** + * Get the cursor position relative to the top-left hand corner of the desktop. + * + * Note that the top-left hand corner of the desktop is not necessarily the same as the screen. + * If the user uses a desktop with multiple monitors, + * the top-left hand corner of the desktop is the top-left hand corner of the main monitor on Windows and macOS + * or the top-left of the leftmost monitor on X11. + * + * The coordinates can be negative if the top-left hand corner of the window is outside of the visible screen region. + */ +declare function cursorPosition(): Promise; +export { Window, CloseRequestedEvent, getCurrentWindow, getAllWindows, LogicalSize, PhysicalSize, LogicalPosition, PhysicalPosition, UserAttentionType, Effect, EffectState, currentMonitor, monitorFromPoint, primaryMonitor, availableMonitors, cursorPosition }; +export type { Effects, Theme, TitleBarStyle, ScaleFactorChanged, WindowOptions, Color, BackgroundThrottlingPolicy, DragDropEvent }; diff --git a/node_modules/@tauri-apps/api/window.js b/node_modules/@tauri-apps/api/window.js new file mode 100644 index 0000000..889fcea --- /dev/null +++ b/node_modules/@tauri-apps/api/window.js @@ -0,0 +1,1973 @@ +import { PhysicalPosition, PhysicalSize, Size, Position } from './dpi.js'; +export { LogicalPosition, LogicalSize } from './dpi.js'; +import { listen, once, emit, emitTo, TauriEvent } from './event.js'; +import { invoke } from './core.js'; +import { transformImage } from './image.js'; + +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Provides APIs to create windows, communicate with other windows and manipulate the current window. + * + * #### Window events + * + * Events can be listened to using {@link Window.listen}: + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * getCurrentWindow().listen("my-window-event", ({ event, payload }) => { }); + * ``` + * + * @module + */ +/** + * Attention type to request on a window. + * + * @since 1.0.0 + */ +var UserAttentionType; +(function (UserAttentionType) { + /** + * #### Platform-specific + * - **macOS:** Bounces the dock icon until the application is in focus. + * - **Windows:** Flashes both the window and the taskbar button until the application is in focus. + */ + UserAttentionType[UserAttentionType["Critical"] = 1] = "Critical"; + /** + * #### Platform-specific + * - **macOS:** Bounces the dock icon once. + * - **Windows:** Flashes the taskbar button until the application is in focus. + */ + UserAttentionType[UserAttentionType["Informational"] = 2] = "Informational"; +})(UserAttentionType || (UserAttentionType = {})); +class CloseRequestedEvent { + constructor(event) { + this._preventDefault = false; + this.event = event.event; + this.id = event.id; + } + preventDefault() { + this._preventDefault = true; + } + isPreventDefault() { + return this._preventDefault; + } +} +var ProgressBarStatus; +(function (ProgressBarStatus) { + /** + * Hide progress bar. + */ + ProgressBarStatus["None"] = "none"; + /** + * Normal state. + */ + ProgressBarStatus["Normal"] = "normal"; + /** + * Indeterminate state. **Treated as Normal on Linux and macOS** + */ + ProgressBarStatus["Indeterminate"] = "indeterminate"; + /** + * Paused state. **Treated as Normal on Linux** + */ + ProgressBarStatus["Paused"] = "paused"; + /** + * Error state. **Treated as Normal on linux** + */ + ProgressBarStatus["Error"] = "error"; +})(ProgressBarStatus || (ProgressBarStatus = {})); +/** + * Get an instance of `Window` for the current window. + * + * @since 1.0.0 + */ +function getCurrentWindow() { + return new Window(window.__TAURI_INTERNALS__.metadata.currentWindow.label, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }); +} +/** + * Gets a list of instances of `Window` for all available windows. + * + * @since 1.0.0 + */ +async function getAllWindows() { + return invoke('plugin:window|get_all_windows').then((windows) => windows.map((w) => new Window(w, { + // @ts-expect-error `skip` is not defined in the public API but it is handled by the constructor + skip: true + }))); +} +/** @ignore */ +// events that are emitted right here instead of by the created window +const localTauriEvents = ['tauri://created', 'tauri://error']; +/** + * Create new window or get a handle to an existing one. + * + * Windows are identified by a *label* a unique identifier that can be used to reference it later. + * It may only contain alphanumeric characters `a-zA-Z` plus the following special characters `-`, `/`, `:` and `_`. + * + * @example + * ```typescript + * import { Window } from "@tauri-apps/api/window" + * + * const appWindow = new Window('theUniqueLabel'); + * + * appWindow.once('tauri://created', function () { + * // window successfully created + * }); + * appWindow.once('tauri://error', function (e) { + * // an error happened creating the window + * }); + * + * // emit an event to the backend + * await appWindow.emit("some-event", "data"); + * // listen to an event from the backend + * const unlisten = await appWindow.listen("event-name", e => {}); + * unlisten(); + * ``` + * + * @since 2.0.0 + */ +class Window { + /** + * Creates a new Window. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window'; + * const appWindow = new Window('my-label'); + * appWindow.once('tauri://created', function () { + * // window successfully created + * }); + * appWindow.once('tauri://error', function (e) { + * // an error happened creating the window + * }); + * ``` + * + * @param label The unique window label. Must be alphanumeric: `a-zA-Z-/:_`. + * @returns The {@link Window} instance to communicate with the window. + */ + constructor(label, options = {}) { + var _a; + this.label = label; + // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment + this.listeners = Object.create(null); + // @ts-expect-error `skip` is not a public API so it is not defined in WindowOptions + if (!(options === null || options === void 0 ? void 0 : options.skip)) { + invoke('plugin:window|create', { + options: { + ...options, + parent: typeof options.parent === 'string' + ? options.parent + : (_a = options.parent) === null || _a === void 0 ? void 0 : _a.label, + label + } + }) + .then(async () => this.emit('tauri://created')) + .catch(async (e) => this.emit('tauri://error', e)); + } + } + /** + * Gets the Window associated with the given label. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window'; + * const mainWindow = Window.getByLabel('main'); + * ``` + * + * @param label The window label. + * @returns The Window instance to communicate with the window or null if the window doesn't exist. + */ + static async getByLabel(label) { + var _a; + return (_a = (await getAllWindows()).find((w) => w.label === label)) !== null && _a !== void 0 ? _a : null; + } + /** + * Get an instance of `Window` for the current window. + */ + static getCurrent() { + return getCurrentWindow(); + } + /** + * Gets a list of instances of `Window` for all available windows. + */ + static async getAll() { + return getAllWindows(); + } + /** + * Gets the focused window. + * @example + * ```typescript + * import { Window } from '@tauri-apps/api/window'; + * const focusedWindow = Window.getFocusedWindow(); + * ``` + * + * @returns The Window instance or `undefined` if there is not any focused window. + */ + static async getFocusedWindow() { + for (const w of await getAllWindows()) { + if (await w.isFocused()) { + return w; + } + } + return null; + } + /** + * Listen to an emitted event on this window. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const unlisten = await getCurrentWindow().listen('state-changed', (event) => { + * console.log(`Got error: ${payload}`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async listen(event, handler) { + if (this._handleTauriEvent(event, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return listen(event, handler, { + target: { kind: 'Window', label: this.label } + }); + } + /** + * Listen to an emitted event on this window only once. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const unlisten = await getCurrentWindow().once('initialized', (event) => { + * console.log(`Window initialized!`); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param handler Event handler. + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async once(event, handler) { + if (this._handleTauriEvent(event, handler)) { + return () => { + // eslint-disable-next-line security/detect-object-injection + const listeners = this.listeners[event]; + listeners.splice(listeners.indexOf(handler), 1); + }; + } + return once(event, handler, { + target: { kind: 'Window', label: this.label } + }); + } + /** + * Emits an event to all {@link EventTarget|targets}. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().emit('window-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + async emit(event, payload) { + if (localTauriEvents.includes(event)) { + // eslint-disable-next-line + for (const handler of this.listeners[event] || []) { + handler({ + event, + id: -1, + payload + }); + } + return; + } + return emit(event, payload); + } + /** + * Emits an event to all {@link EventTarget|targets} matching the given target. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().emit('main', 'window-loaded', { loggedIn: true, token: 'authToken' }); + * ``` + * @param target Label of the target Window/Webview/WebviewWindow or raw {@link EventTarget} object. + * @param event Event name. Must include only alphanumeric characters, `-`, `/`, `:` and `_`. + * @param payload Event payload. + */ + async emitTo(target, event, payload) { + if (localTauriEvents.includes(event)) { + // eslint-disable-next-line security/detect-object-injection + for (const handler of this.listeners[event] || []) { + handler({ + event, + id: -1, + payload + }); + } + return; + } + return emitTo(target, event, payload); + } + /** @ignore */ + _handleTauriEvent(event, handler) { + if (localTauriEvents.includes(event)) { + if (!(event in this.listeners)) { + // eslint-disable-next-line + this.listeners[event] = [handler]; + } + else { + // eslint-disable-next-line + this.listeners[event].push(handler); + } + return true; + } + return false; + } + // Getters + /** + * The scale factor that can be used to map physical pixels to logical pixels. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const factor = await getCurrentWindow().scaleFactor(); + * ``` + * + * @returns The window's monitor scale factor. + */ + async scaleFactor() { + return invoke('plugin:window|scale_factor', { + label: this.label + }); + } + /** + * The position of the top-left hand corner of the window's client area relative to the top-left hand corner of the desktop. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const position = await getCurrentWindow().innerPosition(); + * ``` + * + * @returns The window's inner position. + */ + async innerPosition() { + return invoke('plugin:window|inner_position', { + label: this.label + }).then((p) => new PhysicalPosition(p)); + } + /** + * The position of the top-left hand corner of the window relative to the top-left hand corner of the desktop. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const position = await getCurrentWindow().outerPosition(); + * ``` + * + * @returns The window's outer position. + */ + async outerPosition() { + return invoke('plugin:window|outer_position', { + label: this.label + }).then((p) => new PhysicalPosition(p)); + } + /** + * The physical size of the window's client area. + * The client area is the content of the window, excluding the title bar and borders. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const size = await getCurrentWindow().innerSize(); + * ``` + * + * @returns The window's inner size. + */ + async innerSize() { + return invoke('plugin:window|inner_size', { + label: this.label + }).then((s) => new PhysicalSize(s)); + } + /** + * The physical size of the entire window. + * These dimensions include the title bar and borders. If you don't want that (and you usually don't), use inner_size instead. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const size = await getCurrentWindow().outerSize(); + * ``` + * + * @returns The window's outer size. + */ + async outerSize() { + return invoke('plugin:window|outer_size', { + label: this.label + }).then((s) => new PhysicalSize(s)); + } + /** + * Gets the window's current fullscreen state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const fullscreen = await getCurrentWindow().isFullscreen(); + * ``` + * + * @returns Whether the window is in fullscreen mode or not. + */ + async isFullscreen() { + return invoke('plugin:window|is_fullscreen', { + label: this.label + }); + } + /** + * Gets the window's current minimized state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const minimized = await getCurrentWindow().isMinimized(); + * ``` + */ + async isMinimized() { + return invoke('plugin:window|is_minimized', { + label: this.label + }); + } + /** + * Gets the window's current maximized state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const maximized = await getCurrentWindow().isMaximized(); + * ``` + * + * @returns Whether the window is maximized or not. + */ + async isMaximized() { + return invoke('plugin:window|is_maximized', { + label: this.label + }); + } + /** + * Gets the window's current focus state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const focused = await getCurrentWindow().isFocused(); + * ``` + * + * @returns Whether the window is focused or not. + */ + async isFocused() { + return invoke('plugin:window|is_focused', { + label: this.label + }); + } + /** + * Gets the window's current decorated state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const decorated = await getCurrentWindow().isDecorated(); + * ``` + * + * @returns Whether the window is decorated or not. + */ + async isDecorated() { + return invoke('plugin:window|is_decorated', { + label: this.label + }); + } + /** + * Gets the window's current resizable state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const resizable = await getCurrentWindow().isResizable(); + * ``` + * + * @returns Whether the window is resizable or not. + */ + async isResizable() { + return invoke('plugin:window|is_resizable', { + label: this.label + }); + } + /** + * Gets the window's native maximize button state. + * + * #### Platform-specific + * + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const maximizable = await getCurrentWindow().isMaximizable(); + * ``` + * + * @returns Whether the window's native maximize button is enabled or not. + */ + async isMaximizable() { + return invoke('plugin:window|is_maximizable', { + label: this.label + }); + } + /** + * Gets the window's native minimize button state. + * + * #### Platform-specific + * + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const minimizable = await getCurrentWindow().isMinimizable(); + * ``` + * + * @returns Whether the window's native minimize button is enabled or not. + */ + async isMinimizable() { + return invoke('plugin:window|is_minimizable', { + label: this.label + }); + } + /** + * Gets the window's native close button state. + * + * #### Platform-specific + * + * - **iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const closable = await getCurrentWindow().isClosable(); + * ``` + * + * @returns Whether the window's native close button is enabled or not. + */ + async isClosable() { + return invoke('plugin:window|is_closable', { + label: this.label + }); + } + /** + * Gets the window's current visible state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const visible = await getCurrentWindow().isVisible(); + * ``` + * + * @returns Whether the window is visible or not. + */ + async isVisible() { + return invoke('plugin:window|is_visible', { + label: this.label + }); + } + /** + * Gets the window's current title. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const title = await getCurrentWindow().title(); + * ``` + */ + async title() { + return invoke('plugin:window|title', { + label: this.label + }); + } + /** + * Gets the window's current theme. + * + * #### Platform-specific + * + * - **macOS:** Theme was introduced on macOS 10.14. Returns `light` on macOS 10.13 and below. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const theme = await getCurrentWindow().theme(); + * ``` + * + * @returns The window theme. + */ + async theme() { + return invoke('plugin:window|theme', { + label: this.label + }); + } + /** + * Whether the window is configured to be always on top of other windows or not. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * const alwaysOnTop = await getCurrentWindow().isAlwaysOnTop(); + * ``` + * + * @returns Whether the window is visible or not. + */ + async isAlwaysOnTop() { + return invoke('plugin:window|is_always_on_top', { + label: this.label + }); + } + // Setters + /** + * Centers the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().center(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async center() { + return invoke('plugin:window|center', { + label: this.label + }); + } + /** + * Requests user attention to the window, this has no effect if the application + * is already focused. How requesting for user attention manifests is platform dependent, + * see `UserAttentionType` for details. + * + * Providing `null` will unset the request for user attention. Unsetting the request for + * user attention might not be done automatically by the WM when the window receives input. + * + * #### Platform-specific + * + * - **macOS:** `null` has no effect. + * - **Linux:** Urgency levels have the same effect. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().requestUserAttention(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async requestUserAttention(requestType) { + let requestType_ = null; + if (requestType) { + if (requestType === UserAttentionType.Critical) { + requestType_ = { type: 'Critical' }; + } + else { + requestType_ = { type: 'Informational' }; + } + } + return invoke('plugin:window|request_user_attention', { + label: this.label, + value: requestType_ + }); + } + /** + * Updates the window resizable flag. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setResizable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setResizable(resizable) { + return invoke('plugin:window|set_resizable', { + label: this.label, + value: resizable + }); + } + /** + * Enable or disable the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setEnabled(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.0.0 + */ + async setEnabled(enabled) { + return invoke('plugin:window|set_enabled', { + label: this.label, + value: enabled + }); + } + /** + * Whether the window is enabled or disabled. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setEnabled(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.0.0 + */ + async isEnabled() { + return invoke('plugin:window|is_enabled', { + label: this.label + }); + } + /** + * Sets whether the window's native maximize button is enabled or not. + * If resizable is set to false, this setting is ignored. + * + * #### Platform-specific + * + * - **macOS:** Disables the "zoom" button in the window titlebar, which is also used to enter fullscreen mode. + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMaximizable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setMaximizable(maximizable) { + return invoke('plugin:window|set_maximizable', { + label: this.label, + value: maximizable + }); + } + /** + * Sets whether the window's native minimize button is enabled or not. + * + * #### Platform-specific + * + * - **Linux / iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMinimizable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setMinimizable(minimizable) { + return invoke('plugin:window|set_minimizable', { + label: this.label, + value: minimizable + }); + } + /** + * Sets whether the window's native close button is enabled or not. + * + * #### Platform-specific + * + * - **Linux:** GTK+ will do its best to convince the window manager not to show a close button. Depending on the system, this function may not have any effect when called on a window that is already visible + * - **iOS / Android:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setClosable(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setClosable(closable) { + return invoke('plugin:window|set_closable', { + label: this.label, + value: closable + }); + } + /** + * Sets the window title. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setTitle('Tauri'); + * ``` + * + * @param title The new title + * @returns A promise indicating the success or failure of the operation. + */ + async setTitle(title) { + return invoke('plugin:window|set_title', { + label: this.label, + value: title + }); + } + /** + * Maximizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().maximize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async maximize() { + return invoke('plugin:window|maximize', { + label: this.label + }); + } + /** + * Unmaximizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().unmaximize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async unmaximize() { + return invoke('plugin:window|unmaximize', { + label: this.label + }); + } + /** + * Toggles the window maximized state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().toggleMaximize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async toggleMaximize() { + return invoke('plugin:window|toggle_maximize', { + label: this.label + }); + } + /** + * Minimizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().minimize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async minimize() { + return invoke('plugin:window|minimize', { + label: this.label + }); + } + /** + * Unminimizes the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().unminimize(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async unminimize() { + return invoke('plugin:window|unminimize', { + label: this.label + }); + } + /** + * Sets the window visibility to true. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().show(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async show() { + return invoke('plugin:window|show', { + label: this.label + }); + } + /** + * Sets the window visibility to false. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().hide(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async hide() { + return invoke('plugin:window|hide', { + label: this.label + }); + } + /** + * Closes the window. + * + * Note this emits a closeRequested event so you can intercept it. To force window close, use {@link Window.destroy}. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().close(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async close() { + return invoke('plugin:window|close', { + label: this.label + }); + } + /** + * Destroys the window. Behaves like {@link Window.close} but forces the window close instead of emitting a closeRequested event. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().destroy(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async destroy() { + return invoke('plugin:window|destroy', { + label: this.label + }); + } + /** + * Whether the window should have borders and bars. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setDecorations(false); + * ``` + * + * @param decorations Whether the window should have borders and bars. + * @returns A promise indicating the success or failure of the operation. + */ + async setDecorations(decorations) { + return invoke('plugin:window|set_decorations', { + label: this.label, + value: decorations + }); + } + /** + * Whether or not the window should have shadow. + * + * #### Platform-specific + * + * - **Windows:** + * - `false` has no effect on decorated window, shadows are always ON. + * - `true` will make undecorated window have a 1px white border, + * and on Windows 11, it will have a rounded corners. + * - **Linux:** Unsupported. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setShadow(false); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setShadow(enable) { + return invoke('plugin:window|set_shadow', { + label: this.label, + value: enable + }); + } + /** + * Set window effects. + */ + async setEffects(effects) { + return invoke('plugin:window|set_effects', { + label: this.label, + value: effects + }); + } + /** + * Clear any applied effects if possible. + */ + async clearEffects() { + return invoke('plugin:window|set_effects', { + label: this.label, + value: null + }); + } + /** + * Whether the window should always be on top of other windows. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setAlwaysOnTop(true); + * ``` + * + * @param alwaysOnTop Whether the window should always be on top of other windows or not. + * @returns A promise indicating the success or failure of the operation. + */ + async setAlwaysOnTop(alwaysOnTop) { + return invoke('plugin:window|set_always_on_top', { + label: this.label, + value: alwaysOnTop + }); + } + /** + * Whether the window should always be below other windows. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setAlwaysOnBottom(true); + * ``` + * + * @param alwaysOnBottom Whether the window should always be below other windows or not. + * @returns A promise indicating the success or failure of the operation. + */ + async setAlwaysOnBottom(alwaysOnBottom) { + return invoke('plugin:window|set_always_on_bottom', { + label: this.label, + value: alwaysOnBottom + }); + } + /** + * Prevents the window contents from being captured by other apps. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setContentProtected(true); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setContentProtected(protected_) { + return invoke('plugin:window|set_content_protected', { + label: this.label, + value: protected_ + }); + } + /** + * Resizes the window with a new inner size. + * @example + * ```typescript + * import { getCurrentWindow, LogicalSize } from '@tauri-apps/api/window'; + * await getCurrentWindow().setSize(new LogicalSize(600, 500)); + * ``` + * + * @param size The logical or physical inner size. + * @returns A promise indicating the success or failure of the operation. + */ + async setSize(size) { + return invoke('plugin:window|set_size', { + label: this.label, + value: size instanceof Size ? size : new Size(size) + }); + } + /** + * Sets the window minimum inner size. If the `size` argument is not provided, the constraint is unset. + * @example + * ```typescript + * import { getCurrentWindow, PhysicalSize } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMinSize(new PhysicalSize(600, 500)); + * ``` + * + * @param size The logical or physical inner size, or `null` to unset the constraint. + * @returns A promise indicating the success or failure of the operation. + */ + async setMinSize(size) { + return invoke('plugin:window|set_min_size', { + label: this.label, + value: size instanceof Size ? size : size ? new Size(size) : null + }); + } + /** + * Sets the window maximum inner size. If the `size` argument is undefined, the constraint is unset. + * @example + * ```typescript + * import { getCurrentWindow, LogicalSize } from '@tauri-apps/api/window'; + * await getCurrentWindow().setMaxSize(new LogicalSize(600, 500)); + * ``` + * + * @param size The logical or physical inner size, or `null` to unset the constraint. + * @returns A promise indicating the success or failure of the operation. + */ + async setMaxSize(size) { + return invoke('plugin:window|set_max_size', { + label: this.label, + value: size instanceof Size ? size : size ? new Size(size) : null + }); + } + /** + * Sets the window inner size constraints. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setSizeConstraints({ minWidth: 300 }); + * ``` + * + * @param constraints The logical or physical inner size, or `null` to unset the constraint. + * @returns A promise indicating the success or failure of the operation. + */ + async setSizeConstraints(constraints) { + function logical(pixel) { + return pixel ? { Logical: pixel } : null; + } + return invoke('plugin:window|set_size_constraints', { + label: this.label, + value: { + minWidth: logical(constraints === null || constraints === void 0 ? void 0 : constraints.minWidth), + minHeight: logical(constraints === null || constraints === void 0 ? void 0 : constraints.minHeight), + maxWidth: logical(constraints === null || constraints === void 0 ? void 0 : constraints.maxWidth), + maxHeight: logical(constraints === null || constraints === void 0 ? void 0 : constraints.maxHeight) + } + }); + } + /** + * Sets the window outer position. + * @example + * ```typescript + * import { getCurrentWindow, LogicalPosition } from '@tauri-apps/api/window'; + * await getCurrentWindow().setPosition(new LogicalPosition(600, 500)); + * ``` + * + * @param position The new position, in logical or physical pixels. + * @returns A promise indicating the success or failure of the operation. + */ + async setPosition(position) { + return invoke('plugin:window|set_position', { + label: this.label, + value: position instanceof Position ? position : new Position(position) + }); + } + /** + * Sets the window fullscreen state. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setFullscreen(true); + * ``` + * + * @param fullscreen Whether the window should go to fullscreen or not. + * @returns A promise indicating the success or failure of the operation. + */ + async setFullscreen(fullscreen) { + return invoke('plugin:window|set_fullscreen', { + label: this.label, + value: fullscreen + }); + } + /** + * Bring the window to front and focus. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setFocus(); + * ``` + * + * @returns A promise indicating the success or failure of the operation. + */ + async setFocus() { + return invoke('plugin:window|set_focus', { + label: this.label + }); + } + /** + * Sets the window icon. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setIcon('/tauri/awesome.png'); + * ``` + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + * + * @param icon Icon bytes or path to the icon file. + * @returns A promise indicating the success or failure of the operation. + */ + async setIcon(icon) { + return invoke('plugin:window|set_icon', { + label: this.label, + value: transformImage(icon) + }); + } + /** + * Whether the window icon should be hidden from the taskbar or not. + * + * #### Platform-specific + * + * - **macOS:** Unsupported. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setSkipTaskbar(true); + * ``` + * + * @param skip true to hide window icon, false to show it. + * @returns A promise indicating the success or failure of the operation. + */ + async setSkipTaskbar(skip) { + return invoke('plugin:window|set_skip_taskbar', { + label: this.label, + value: skip + }); + } + /** + * Grabs the cursor, preventing it from leaving the window. + * + * There's no guarantee that the cursor will be hidden. You should + * hide it by yourself if you want so. + * + * #### Platform-specific + * + * - **Linux:** Unsupported. + * - **macOS:** This locks the cursor in a fixed location, which looks visually awkward. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorGrab(true); + * ``` + * + * @param grab `true` to grab the cursor icon, `false` to release it. + * @returns A promise indicating the success or failure of the operation. + */ + async setCursorGrab(grab) { + return invoke('plugin:window|set_cursor_grab', { + label: this.label, + value: grab + }); + } + /** + * Modifies the cursor's visibility. + * + * #### Platform-specific + * + * - **Windows:** The cursor is only hidden within the confines of the window. + * - **macOS:** The cursor is hidden as long as the window has input focus, even if the cursor is + * outside of the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorVisible(false); + * ``` + * + * @param visible If `false`, this will hide the cursor. If `true`, this will show the cursor. + * @returns A promise indicating the success or failure of the operation. + */ + async setCursorVisible(visible) { + return invoke('plugin:window|set_cursor_visible', { + label: this.label, + value: visible + }); + } + /** + * Modifies the cursor icon of the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorIcon('help'); + * ``` + * + * @param icon The new cursor icon. + * @returns A promise indicating the success or failure of the operation. + */ + async setCursorIcon(icon) { + return invoke('plugin:window|set_cursor_icon', { + label: this.label, + value: icon + }); + } + /** + * Sets the window background color. + * + * #### Platform-specific: + * + * - **Windows:** alpha channel is ignored. + * - **iOS / Android:** Unsupported. + * + * @returns A promise indicating the success or failure of the operation. + * + * @since 2.1.0 + */ + async setBackgroundColor(color) { + return invoke('plugin:window|set_background_color', { color }); + } + /** + * Changes the position of the cursor in window coordinates. + * @example + * ```typescript + * import { getCurrentWindow, LogicalPosition } from '@tauri-apps/api/window'; + * await getCurrentWindow().setCursorPosition(new LogicalPosition(600, 300)); + * ``` + * + * @param position The new cursor position. + * @returns A promise indicating the success or failure of the operation. + */ + async setCursorPosition(position) { + return invoke('plugin:window|set_cursor_position', { + label: this.label, + value: position instanceof Position ? position : new Position(position) + }); + } + /** + * Changes the cursor events behavior. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setIgnoreCursorEvents(true); + * ``` + * + * @param ignore `true` to ignore the cursor events; `false` to process them as usual. + * @returns A promise indicating the success or failure of the operation. + */ + async setIgnoreCursorEvents(ignore) { + return invoke('plugin:window|set_ignore_cursor_events', { + label: this.label, + value: ignore + }); + } + /** + * Starts dragging the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().startDragging(); + * ``` + * + * @return A promise indicating the success or failure of the operation. + */ + async startDragging() { + return invoke('plugin:window|start_dragging', { + label: this.label + }); + } + /** + * Starts resize-dragging the window. + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().startResizeDragging(); + * ``` + * + * @return A promise indicating the success or failure of the operation. + */ + async startResizeDragging(direction) { + return invoke('plugin:window|start_resize_dragging', { + label: this.label, + value: direction + }); + } + /** + * Sets the badge count. It is app wide and not specific to this window. + * + * #### Platform-specific + * + * - **Windows**: Unsupported. Use @{linkcode Window.setOverlayIcon} instead. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setBadgeCount(5); + * ``` + * + * @param count The badge count. Use `undefined` to remove the badge. + * @return A promise indicating the success or failure of the operation. + */ + async setBadgeCount(count) { + return invoke('plugin:window|set_badge_count', { + label: this.label, + value: count + }); + } + /** + * Sets the badge cont **macOS only**. + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setBadgeLabel("Hello"); + * ``` + * + * @param label The badge label. Use `undefined` to remove the badge. + * @return A promise indicating the success or failure of the operation. + */ + async setBadgeLabel(label) { + return invoke('plugin:window|set_badge_label', { + label: this.label, + value: label + }); + } + /** + * Sets the overlay icon. **Windows only** + * The overlay icon can be set for every window. + * + * + * Note that you may need the `image-ico` or `image-png` Cargo features to use this API. + * To enable it, change your Cargo.toml file: + * + * ```toml + * [dependencies] + * tauri = { version = "...", features = ["...", "image-png"] } + * ``` + * + * @example + * ```typescript + * import { getCurrentWindow } from '@tauri-apps/api/window'; + * await getCurrentWindow().setOverlayIcon("/tauri/awesome.png"); + * ``` + * + * @param icon Icon bytes or path to the icon file. Use `undefined` to remove the overlay icon. + * @return A promise indicating the success or failure of the operation. + */ + async setOverlayIcon(icon) { + return invoke('plugin:window|set_overlay_icon', { + label: this.label, + value: icon ? transformImage(icon) : undefined + }); + } + /** + * Sets the taskbar progress state. + * + * #### Platform-specific + * + * - **Linux / macOS**: Progress bar is app-wide and not specific to this window. + * - **Linux**: Only supported desktop environments with `libunity` (e.g. GNOME). + * + * @example + * ```typescript + * import { getCurrentWindow, ProgressBarStatus } from '@tauri-apps/api/window'; + * await getCurrentWindow().setProgressBar({ + * status: ProgressBarStatus.Normal, + * progress: 50, + * }); + * ``` + * + * @return A promise indicating the success or failure of the operation. + */ + async setProgressBar(state) { + return invoke('plugin:window|set_progress_bar', { + label: this.label, + value: state + }); + } + /** + * Sets whether the window should be visible on all workspaces or virtual desktops. + * + * #### Platform-specific + * + * - **Windows / iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ + async setVisibleOnAllWorkspaces(visible) { + return invoke('plugin:window|set_visible_on_all_workspaces', { + label: this.label, + value: visible + }); + } + /** + * Sets the title bar style. **macOS only**. + * + * @since 2.0.0 + */ + async setTitleBarStyle(style) { + return invoke('plugin:window|set_title_bar_style', { + label: this.label, + value: style + }); + } + /** + * Set window theme, pass in `null` or `undefined` to follow system theme + * + * #### Platform-specific + * + * - **Linux / macOS**: Theme is app-wide and not specific to this window. + * - **iOS / Android:** Unsupported. + * + * @since 2.0.0 + */ + async setTheme(theme) { + return invoke('plugin:window|set_theme', { + label: this.label, + value: theme + }); + } + // Listeners + /** + * Listen to window resize. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onResized(({ payload: size }) => { + * console.log('Window resized', size); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onResized(handler) { + return this.listen(TauriEvent.WINDOW_RESIZED, (e) => { + e.payload = new PhysicalSize(e.payload); + handler(e); + }); + } + /** + * Listen to window move. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onMoved(({ payload: position }) => { + * console.log('Window moved', position); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onMoved(handler) { + return this.listen(TauriEvent.WINDOW_MOVED, (e) => { + e.payload = new PhysicalPosition(e.payload); + handler(e); + }); + } + /** + * Listen to window close requested. Emitted when the user requests to closes the window. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * import { confirm } from '@tauri-apps/api/dialog'; + * const unlisten = await getCurrentWindow().onCloseRequested(async (event) => { + * const confirmed = await confirm('Are you sure?'); + * if (!confirmed) { + * // user did not confirm closing the window; let's prevent it + * event.preventDefault(); + * } + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onCloseRequested(handler) { + // eslint-disable-next-line @typescript-eslint/no-misused-promises + return this.listen(TauriEvent.WINDOW_CLOSE_REQUESTED, async (event) => { + const evt = new CloseRequestedEvent(event); + await handler(evt); + if (!evt.isPreventDefault()) { + await this.destroy(); + } + }); + } + /** + * Listen to a file drop event. + * The listener is triggered when the user hovers the selected files on the webview, + * drops the files or cancels the operation. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/webview"; + * const unlisten = await getCurrentWindow().onDragDropEvent((event) => { + * if (event.payload.type === 'over') { + * console.log('User hovering', event.payload.position); + * } else if (event.payload.type === 'drop') { + * console.log('User dropped', event.payload.paths); + * } else { + * console.log('File drop cancelled'); + * } + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onDragDropEvent(handler) { + const unlistenDrag = await this.listen(TauriEvent.DRAG_ENTER, (event) => { + handler({ + ...event, + payload: { + type: 'enter', + paths: event.payload.paths, + position: new PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDragOver = await this.listen(TauriEvent.DRAG_OVER, (event) => { + handler({ + ...event, + payload: { + type: 'over', + position: new PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenDrop = await this.listen(TauriEvent.DRAG_DROP, (event) => { + handler({ + ...event, + payload: { + type: 'drop', + paths: event.payload.paths, + position: new PhysicalPosition(event.payload.position) + } + }); + }); + const unlistenCancel = await this.listen(TauriEvent.DRAG_LEAVE, (event) => { + handler({ ...event, payload: { type: 'leave' } }); + }); + return () => { + unlistenDrag(); + unlistenDrop(); + unlistenDragOver(); + unlistenCancel(); + }; + } + /** + * Listen to window focus change. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onFocusChanged(({ payload: focused }) => { + * console.log('Focus changed, window is focused? ' + focused); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onFocusChanged(handler) { + const unlistenFocus = await this.listen(TauriEvent.WINDOW_FOCUS, (event) => { + handler({ ...event, payload: true }); + }); + const unlistenBlur = await this.listen(TauriEvent.WINDOW_BLUR, (event) => { + handler({ ...event, payload: false }); + }); + return () => { + unlistenFocus(); + unlistenBlur(); + }; + } + /** + * Listen to window scale change. Emitted when the window's scale factor has changed. + * The following user actions can cause DPI changes: + * - Changing the display's resolution. + * - Changing the display's scale factor (e.g. in Control Panel on Windows). + * - Moving the window to a display with a different scale factor. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onScaleChanged(({ payload }) => { + * console.log('Scale changed', payload.scaleFactor, payload.size); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onScaleChanged(handler) { + return this.listen(TauriEvent.WINDOW_SCALE_FACTOR_CHANGED, handler); + } + /** + * Listen to the system theme change. + * + * @example + * ```typescript + * import { getCurrentWindow } from "@tauri-apps/api/window"; + * const unlisten = await getCurrentWindow().onThemeChanged(({ payload: theme }) => { + * console.log('New theme: ' + theme); + * }); + * + * // you need to call unlisten if your handler goes out of scope e.g. the component is unmounted + * unlisten(); + * ``` + * + * @returns A promise resolving to a function to unlisten to the event. + * Note that removing the listener is required if your listener goes out of scope e.g. the component is unmounted. + */ + async onThemeChanged(handler) { + return this.listen(TauriEvent.WINDOW_THEME_CHANGED, handler); + } +} +/** + * Background throttling policy + * + * @since 2.0.0 + */ +var BackgroundThrottlingPolicy; +(function (BackgroundThrottlingPolicy) { + BackgroundThrottlingPolicy["Disabled"] = "disabled"; + BackgroundThrottlingPolicy["Throttle"] = "throttle"; + BackgroundThrottlingPolicy["Suspend"] = "suspend"; +})(BackgroundThrottlingPolicy || (BackgroundThrottlingPolicy = {})); +/** + * Platform-specific window effects + * + * @since 2.0.0 + */ +var Effect; +(function (Effect) { + /** + * A default material appropriate for the view's effectiveAppearance. **macOS 10.14-** + * + * @deprecated since macOS 10.14. You should instead choose an appropriate semantic material. + */ + Effect["AppearanceBased"] = "appearanceBased"; + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Effect["Light"] = "light"; + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Effect["Dark"] = "dark"; + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Effect["MediumLight"] = "mediumLight"; + /** + * **macOS 10.14-** + * + * @deprecated since macOS 10.14. Use a semantic material instead. + */ + Effect["UltraDark"] = "ultraDark"; + /** + * **macOS 10.10+** + */ + Effect["Titlebar"] = "titlebar"; + /** + * **macOS 10.10+** + */ + Effect["Selection"] = "selection"; + /** + * **macOS 10.11+** + */ + Effect["Menu"] = "menu"; + /** + * **macOS 10.11+** + */ + Effect["Popover"] = "popover"; + /** + * **macOS 10.11+** + */ + Effect["Sidebar"] = "sidebar"; + /** + * **macOS 10.14+** + */ + Effect["HeaderView"] = "headerView"; + /** + * **macOS 10.14+** + */ + Effect["Sheet"] = "sheet"; + /** + * **macOS 10.14+** + */ + Effect["WindowBackground"] = "windowBackground"; + /** + * **macOS 10.14+** + */ + Effect["HudWindow"] = "hudWindow"; + /** + * **macOS 10.14+** + */ + Effect["FullScreenUI"] = "fullScreenUI"; + /** + * **macOS 10.14+** + */ + Effect["Tooltip"] = "tooltip"; + /** + * **macOS 10.14+** + */ + Effect["ContentBackground"] = "contentBackground"; + /** + * **macOS 10.14+** + */ + Effect["UnderWindowBackground"] = "underWindowBackground"; + /** + * **macOS 10.14+** + */ + Effect["UnderPageBackground"] = "underPageBackground"; + /** + * **Windows 11 Only** + */ + Effect["Mica"] = "mica"; + /** + * **Windows 7/10/11(22H1) Only** + * + * #### Notes + * + * This effect has bad performance when resizing/dragging the window on Windows 11 build 22621. + */ + Effect["Blur"] = "blur"; + /** + * **Windows 10/11** + * + * #### Notes + * + * This effect has bad performance when resizing/dragging the window on Windows 10 v1903+ and Windows 11 build 22000. + */ + Effect["Acrylic"] = "acrylic"; + /** + * Tabbed effect that matches the system dark perefence **Windows 11 Only** + */ + Effect["Tabbed"] = "tabbed"; + /** + * Tabbed effect with dark mode but only if dark mode is enabled on the system **Windows 11 Only** + */ + Effect["TabbedDark"] = "tabbedDark"; + /** + * Tabbed effect with light mode **Windows 11 Only** + */ + Effect["TabbedLight"] = "tabbedLight"; +})(Effect || (Effect = {})); +/** + * Window effect state **macOS only** + * + * @see https://developer.apple.com/documentation/appkit/nsvisualeffectview/state + * + * @since 2.0.0 + */ +var EffectState; +(function (EffectState) { + /** + * Make window effect state follow the window's active state **macOS only** + */ + EffectState["FollowsWindowActiveState"] = "followsWindowActiveState"; + /** + * Make window effect state always active **macOS only** + */ + EffectState["Active"] = "active"; + /** + * Make window effect state always inactive **macOS only** + */ + EffectState["Inactive"] = "inactive"; +})(EffectState || (EffectState = {})); +function mapMonitor(m) { + return m === null + ? null + : { + name: m.name, + scaleFactor: m.scaleFactor, + position: new PhysicalPosition(m.position), + size: new PhysicalSize(m.size) + }; +} +/** + * Returns the monitor on which the window currently resides. + * Returns `null` if current monitor can't be detected. + * @example + * ```typescript + * import { currentMonitor } from '@tauri-apps/api/window'; + * const monitor = currentMonitor(); + * ``` + * + * @since 1.0.0 + */ +async function currentMonitor() { + return invoke('plugin:window|current_monitor').then(mapMonitor); +} +/** + * Returns the primary monitor of the system. + * Returns `null` if it can't identify any monitor as a primary one. + * @example + * ```typescript + * import { primaryMonitor } from '@tauri-apps/api/window'; + * const monitor = primaryMonitor(); + * ``` + * + * @since 1.0.0 + */ +async function primaryMonitor() { + return invoke('plugin:window|primary_monitor').then(mapMonitor); +} +/** + * Returns the monitor that contains the given point. Returns `null` if can't find any. + * @example + * ```typescript + * import { monitorFromPoint } from '@tauri-apps/api/window'; + * const monitor = monitorFromPoint(); + * ``` + * + * @since 1.0.0 + */ +async function monitorFromPoint(x, y) { + return invoke('plugin:window|monitor_from_point', { + x, + y + }).then(mapMonitor); +} +/** + * Returns the list of all the monitors available on the system. + * @example + * ```typescript + * import { availableMonitors } from '@tauri-apps/api/window'; + * const monitors = availableMonitors(); + * ``` + * + * @since 1.0.0 + */ +async function availableMonitors() { + return invoke('plugin:window|available_monitors').then((ms) => ms.map(mapMonitor)); +} +/** + * Get the cursor position relative to the top-left hand corner of the desktop. + * + * Note that the top-left hand corner of the desktop is not necessarily the same as the screen. + * If the user uses a desktop with multiple monitors, + * the top-left hand corner of the desktop is the top-left hand corner of the main monitor on Windows and macOS + * or the top-left of the leftmost monitor on X11. + * + * The coordinates can be negative if the top-left hand corner of the window is outside of the visible screen region. + */ +async function cursorPosition() { + return invoke('plugin:window|cursor_position').then((v) => new PhysicalPosition(v)); +} + +export { CloseRequestedEvent, Effect, EffectState, PhysicalPosition, PhysicalSize, ProgressBarStatus, UserAttentionType, Window, availableMonitors, currentMonitor, cursorPosition, getAllWindows, getCurrentWindow, monitorFromPoint, primaryMonitor }; diff --git a/node_modules/@tauri-apps/plugin-opener/LICENSE.spdx b/node_modules/@tauri-apps/plugin-opener/LICENSE.spdx new file mode 100644 index 0000000..cdd0df5 --- /dev/null +++ b/node_modules/@tauri-apps/plugin-opener/LICENSE.spdx @@ -0,0 +1,20 @@ +SPDXVersion: SPDX-2.1 +DataLicense: CC0-1.0 +PackageName: tauri +DataFormat: SPDXRef-1 +PackageSupplier: Organization: The Tauri Programme in the Commons Conservancy +PackageHomePage: https://tauri.app +PackageLicenseDeclared: Apache-2.0 +PackageLicenseDeclared: MIT +PackageCopyrightText: 2019-2022, The Tauri Programme in the Commons Conservancy +PackageSummary: Tauri is a rust project that enables developers to make secure +and small desktop applications using a web frontend. + +PackageComment: The package includes the following libraries; see +Relationship information. + +Created: 2019-05-20T09:00:00Z +PackageDownloadLocation: git://github.com/tauri-apps/tauri +PackageDownloadLocation: git+https://github.com/tauri-apps/tauri.git +PackageDownloadLocation: git+ssh://github.com/tauri-apps/tauri.git +Creator: Person: Daniel Thompson-Yvetot \ No newline at end of file diff --git a/node_modules/@tauri-apps/plugin-opener/README.md b/node_modules/@tauri-apps/plugin-opener/README.md new file mode 100644 index 0000000..71509ea --- /dev/null +++ b/node_modules/@tauri-apps/plugin-opener/README.md @@ -0,0 +1,145 @@ +![opener](https://github.com/tauri-apps/plugins-workspace/raw/v2/plugins/opener/banner.png) + + + +| Platform | Supported | +| -------- | --------- | +| Linux | ✓ | +| Windows | ✓ | +| macOS | ✓ | +| Android | ? | +| iOS | ? | + +## Install + +_This plugin requires a Rust version of at least **1.77.2**_ + +There are three general methods of installation that we can recommend. + +1. Use crates.io and npm (easiest, and requires you to trust that our publishing pipeline worked) +2. Pull sources directly from Github using git tags / revision hashes (most secure) +3. Git submodule install this repo in your tauri project and then use file protocol to ingest the source (most secure, but inconvenient to use) + +Install the Core plugin by adding the following to your `Cargo.toml` file: + +`src-tauri/Cargo.toml` + +```toml +[dependencies] +tauri-plugin-opener = "2.0.0" +# alternatively with Git: +tauri-plugin-opener = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" } +``` + +You can install the JavaScript Guest bindings using your preferred JavaScript package manager: + +> Note: Since most JavaScript package managers are unable to install packages from git monorepos we provide read-only mirrors of each plugin. This makes installation option 2 more ergonomic to use. + + + +```sh +pnpm add @tauri-apps/plugin-opener +# or +npm add @tauri-apps/plugin-opener +# or +yarn add @tauri-apps/plugin-opener + +# alternatively with Git: +pnpm add https://github.com/tauri-apps/tauri-plugin-opener#v2 +# or +npm add https://github.com/tauri-apps/tauri-plugin-opener#v2 +# or +yarn add https://github.com/tauri-apps/tauri-plugin-opener#v2 +``` + +## Usage + +First you need to register the core plugin with Tauri: + +`src-tauri/src/lib.rs` + +```rust +fn main() { + tauri::Builder::default() + .plugin(tauri_plugin_opener::init()) + .run(tauri::generate_context!()) + .expect("error while running tauri application"); +} +``` + +Afterwards all the plugin's APIs are available through the JavaScript guest bindings: + +```javascript +import { openUrl, openPath, revealItemInDir } from '@tauri-apps/plugin-opener' + +// Opens the URL in the default browser +await openUrl('https://example.com') +// Or with a specific browser/app +await openUrl('https://example.com', 'firefox') + +// Opens the path with the system's default app +await openPath('/path/to/file') +// Or with a specific app +await openPath('/path/to/file', 'firefox') + +// Reveal a path with the system's default explorer +await revealItemInDir('/path/to/file') +``` + +### Usage from Rust + +You can also use those APIs from Rust: + +```rust +use tauri_plugin_opener::OpenerExt; + +fn main() { + tauri::Builder::default() + .plugin(tauri_plugin_opener::init()) + .setup(|app| { + let opener = app.opener(); + + // Opens the URL in the default browser + opener.open_url("https://example.com", None::<&str>)?; + // Or with a specific browser/app + opener.open_url("https://example.com", Some("firefox"))?; + + // Opens the path with the system's default app + opener.open_path("/path/to/file", None::<&str>)?; + // Or with a specific app + opener.open_path("/path/to/file", Some("firefox"))?; + + // Reveal a path with the system's default explorer + opener.reveal_item_in_dir("/path/to/file")?; + Ok(()) + }) + .run(tauri::generate_context!()) + .expect("error while running tauri application"); +} +``` + +## Contributing + +PRs accepted. Please make sure to read the Contributing Guide before making a pull request. + +## Partners + + + + + + + +
+ + CrabNebula + +
+ +For the complete list of sponsors please visit our [website](https://tauri.app#sponsors) and [Open Collective](https://opencollective.com/tauri). + +## License + +Code: (c) 2015 - Present - The Tauri Programme within The Commons Conservancy. + +MIT or MIT/Apache 2.0 where applicable. diff --git a/node_modules/@tauri-apps/plugin-opener/dist-js/index.cjs b/node_modules/@tauri-apps/plugin-opener/dist-js/index.cjs new file mode 100644 index 0000000..9b8dc1f --- /dev/null +++ b/node_modules/@tauri-apps/plugin-opener/dist-js/index.cjs @@ -0,0 +1,94 @@ +'use strict'; + +var core = require('@tauri-apps/api/core'); + +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Open files and URLs using their default application. + * + * ## Security + * + * This API has a scope configuration that forces you to restrict the files and urls to be opened. + * + * ### Restricting access to the {@link open | `open`} API + * + * On the configuration object, `open: true` means that the {@link open} API can be used with any URL, + * as the argument is validated with the `^((mailto:\w+)|(tel:\w+)|(https?://\w+)).+` regex. + * You can change that regex by changing the boolean value to a string, e.g. `open: ^https://github.com/`. + * + * @module + */ +/** + * Opens a url with the system's default app, or the one specified with {@linkcode openWith}. + * + * @example + * ```typescript + * import { openUrl } from '@tauri-apps/plugin-opener'; + * + * // opens the given URL on the default browser: + * await openUrl('https://github.com/tauri-apps/tauri'); + * // opens the given URL using `firefox`: + * await openUrl('https://github.com/tauri-apps/tauri', 'firefox'); + * ``` + * + * @param url The URL to open. + * @param openWith The app to open the URL with. If not specified, defaults to the system default application for the specified url type. + * + * @since 2.0.0 + */ +async function openUrl(url, openWith) { + await core.invoke('plugin:opener|open_url', { + url, + with: openWith + }); +} +/** + * Opens a path with the system's default app, or the one specified with {@linkcode openWith}. + * + * @example + * ```typescript + * import { openPath } from '@tauri-apps/plugin-opener'; + * + * // opens a file using the default program: + * await openPath('/path/to/file'); + * // opens a file using `vlc` command on Windows. + * await openPath('C:/path/to/file', 'vlc'); + * ``` + * + * @param path The path to open. + * @param openWith The app to open the path with. If not specified, defaults to the system default application for the specified path type. + * + * @since 2.0.0 + */ +async function openPath(path, openWith) { + await core.invoke('plugin:opener|open_path', { + path, + with: openWith + }); +} +/** + * Reveal a path with the system's default explorer. + * + * #### Platform-specific: + * + * - **Android / iOS:** Unsupported. + * + * @example + * ```typescript + * import { revealItemInDir } from '@tauri-apps/plugin-opener'; + * await revealItemInDir('/path/to/file'); + * ``` + * + * @param path The path to reveal. + * + * @since 2.0.0 + */ +async function revealItemInDir(path) { + return core.invoke('plugin:opener|reveal_item_in_dir', { path }); +} + +exports.openPath = openPath; +exports.openUrl = openUrl; +exports.revealItemInDir = revealItemInDir; diff --git a/node_modules/@tauri-apps/plugin-opener/dist-js/index.d.ts b/node_modules/@tauri-apps/plugin-opener/dist-js/index.d.ts new file mode 100644 index 0000000..816b601 --- /dev/null +++ b/node_modules/@tauri-apps/plugin-opener/dist-js/index.d.ts @@ -0,0 +1,56 @@ +/** + * Opens a url with the system's default app, or the one specified with {@linkcode openWith}. + * + * @example + * ```typescript + * import { openUrl } from '@tauri-apps/plugin-opener'; + * + * // opens the given URL on the default browser: + * await openUrl('https://github.com/tauri-apps/tauri'); + * // opens the given URL using `firefox`: + * await openUrl('https://github.com/tauri-apps/tauri', 'firefox'); + * ``` + * + * @param url The URL to open. + * @param openWith The app to open the URL with. If not specified, defaults to the system default application for the specified url type. + * + * @since 2.0.0 + */ +export declare function openUrl(url: string | URL, openWith?: string): Promise; +/** + * Opens a path with the system's default app, or the one specified with {@linkcode openWith}. + * + * @example + * ```typescript + * import { openPath } from '@tauri-apps/plugin-opener'; + * + * // opens a file using the default program: + * await openPath('/path/to/file'); + * // opens a file using `vlc` command on Windows. + * await openPath('C:/path/to/file', 'vlc'); + * ``` + * + * @param path The path to open. + * @param openWith The app to open the path with. If not specified, defaults to the system default application for the specified path type. + * + * @since 2.0.0 + */ +export declare function openPath(path: string, openWith?: string): Promise; +/** + * Reveal a path with the system's default explorer. + * + * #### Platform-specific: + * + * - **Android / iOS:** Unsupported. + * + * @example + * ```typescript + * import { revealItemInDir } from '@tauri-apps/plugin-opener'; + * await revealItemInDir('/path/to/file'); + * ``` + * + * @param path The path to reveal. + * + * @since 2.0.0 + */ +export declare function revealItemInDir(path: string): Promise; diff --git a/node_modules/@tauri-apps/plugin-opener/dist-js/index.js b/node_modules/@tauri-apps/plugin-opener/dist-js/index.js new file mode 100644 index 0000000..42bcf75 --- /dev/null +++ b/node_modules/@tauri-apps/plugin-opener/dist-js/index.js @@ -0,0 +1,90 @@ +import { invoke } from '@tauri-apps/api/core'; + +// Copyright 2019-2023 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT +/** + * Open files and URLs using their default application. + * + * ## Security + * + * This API has a scope configuration that forces you to restrict the files and urls to be opened. + * + * ### Restricting access to the {@link open | `open`} API + * + * On the configuration object, `open: true` means that the {@link open} API can be used with any URL, + * as the argument is validated with the `^((mailto:\w+)|(tel:\w+)|(https?://\w+)).+` regex. + * You can change that regex by changing the boolean value to a string, e.g. `open: ^https://github.com/`. + * + * @module + */ +/** + * Opens a url with the system's default app, or the one specified with {@linkcode openWith}. + * + * @example + * ```typescript + * import { openUrl } from '@tauri-apps/plugin-opener'; + * + * // opens the given URL on the default browser: + * await openUrl('https://github.com/tauri-apps/tauri'); + * // opens the given URL using `firefox`: + * await openUrl('https://github.com/tauri-apps/tauri', 'firefox'); + * ``` + * + * @param url The URL to open. + * @param openWith The app to open the URL with. If not specified, defaults to the system default application for the specified url type. + * + * @since 2.0.0 + */ +async function openUrl(url, openWith) { + await invoke('plugin:opener|open_url', { + url, + with: openWith + }); +} +/** + * Opens a path with the system's default app, or the one specified with {@linkcode openWith}. + * + * @example + * ```typescript + * import { openPath } from '@tauri-apps/plugin-opener'; + * + * // opens a file using the default program: + * await openPath('/path/to/file'); + * // opens a file using `vlc` command on Windows. + * await openPath('C:/path/to/file', 'vlc'); + * ``` + * + * @param path The path to open. + * @param openWith The app to open the path with. If not specified, defaults to the system default application for the specified path type. + * + * @since 2.0.0 + */ +async function openPath(path, openWith) { + await invoke('plugin:opener|open_path', { + path, + with: openWith + }); +} +/** + * Reveal a path with the system's default explorer. + * + * #### Platform-specific: + * + * - **Android / iOS:** Unsupported. + * + * @example + * ```typescript + * import { revealItemInDir } from '@tauri-apps/plugin-opener'; + * await revealItemInDir('/path/to/file'); + * ``` + * + * @param path The path to reveal. + * + * @since 2.0.0 + */ +async function revealItemInDir(path) { + return invoke('plugin:opener|reveal_item_in_dir', { path }); +} + +export { openPath, openUrl, revealItemInDir }; diff --git a/node_modules/@tauri-apps/plugin-opener/dist-js/init.d.ts b/node_modules/@tauri-apps/plugin-opener/dist-js/init.d.ts new file mode 100644 index 0000000..cb0ff5c --- /dev/null +++ b/node_modules/@tauri-apps/plugin-opener/dist-js/init.d.ts @@ -0,0 +1 @@ +export {}; diff --git a/node_modules/@tauri-apps/plugin-opener/package.json b/node_modules/@tauri-apps/plugin-opener/package.json new file mode 100644 index 0000000..c4ae6f9 --- /dev/null +++ b/node_modules/@tauri-apps/plugin-opener/package.json @@ -0,0 +1,30 @@ +{ + "name": "@tauri-apps/plugin-opener", + "version": "2.2.7", + "description": "Open files and URLs using their default application.", + "license": "MIT OR Apache-2.0", + "authors": [ + "Tauri Programme within The Commons Conservancy" + ], + "repository": "https://github.com/tauri-apps/plugins-workspace", + "type": "module", + "types": "./dist-js/index.d.ts", + "main": "./dist-js/index.cjs", + "module": "./dist-js/index.js", + "exports": { + "types": "./dist-js/index.d.ts", + "import": "./dist-js/index.js", + "require": "./dist-js/index.cjs" + }, + "scripts": { + "build": "rollup -c" + }, + "files": [ + "dist-js", + "README.md", + "LICENSE" + ], + "dependencies": { + "@tauri-apps/api": "^2.0.0" + } +} diff --git a/LICENSE b/node_modules/tailwindcss/LICENSE similarity index 96% rename from LICENSE rename to node_modules/tailwindcss/LICENSE index b0a1da8..d6a8229 100644 --- a/LICENSE +++ b/node_modules/tailwindcss/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2025 mii443 +Copyright (c) Tailwind Labs, Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/node_modules/tailwindcss/README.md b/node_modules/tailwindcss/README.md new file mode 100644 index 0000000..95ec9d8 --- /dev/null +++ b/node_modules/tailwindcss/README.md @@ -0,0 +1,40 @@ +

+ + + + + Tailwind CSS + + +

+ +

+ A utility-first CSS framework for rapidly building custom user interfaces. +

+ +

+ Build Status + Total Downloads + Latest Release + License +

+ +--- + +## Documentation + +For full documentation, visit [tailwindcss.com](https://tailwindcss.com). + +## Community + +For help, discussion about best practices, or any other conversation that would benefit from being searchable: + +[Discuss Tailwind CSS on GitHub](https://github.com/tailwindcss/tailwindcss/discussions) + +For chatting with others using the framework: + +[Join the Tailwind CSS Discord Server](https://discord.gg/7NF8GNe) + +## Contributing + +If you're interested in contributing to Tailwind CSS, please read our [contributing docs](https://github.com/tailwindcss/tailwindcss/blob/next/.github/CONTRIBUTING.md) **before submitting a pull request**. diff --git a/node_modules/tailwindcss/dist/chunk-FEUCFEMW.mjs b/node_modules/tailwindcss/dist/chunk-FEUCFEMW.mjs new file mode 100644 index 0000000..8ab0fae --- /dev/null +++ b/node_modules/tailwindcss/dist/chunk-FEUCFEMW.mjs @@ -0,0 +1,35 @@ +import{a as Tt,b as D,c as J,d as E,e as lt,f as de,g as Ue,h as Pt}from"./chunk-P5FH2LZE.mjs";import{a as Et}from"./chunk-HTB5LLOP.mjs";var Rt="4.1.8";var Ve=92,Ie=47,Fe=42,ei=34,ti=39,ri=58,Le=59,ie=10,ze=13,Ne=32,Me=9,Ot=123,at=125,ft=40,Kt=41,ii=91,ni=93,_t=45,st=64,oi=33;function me(r,t){let i=t?.from?{file:t.from,code:r}:null;r[0]==="\uFEFF"&&(r=" "+r.slice(1));let e=[],n=[],s=[],a=null,c=null,u="",f="",g=0,d;for(let m=0;m0&&r[b]===v[v.length-1]&&(v=v.slice(0,-1));let N=ut(u,k);if(!N)throw new Error("Invalid custom property, expected a value");i&&(N.src=[i,x,m],N.dst=[i,x,m]),a?a.nodes.push(N):e.push(N),u=""}else if(w===Le&&u.charCodeAt(0)===st)c=Se(u),i&&(c.src=[i,g,m],c.dst=[i,g,m]),a?a.nodes.push(c):e.push(c),u="",c=null;else if(w===Le&&f[f.length-1]!==")"){let v=ut(u);if(!v)throw u.length===0?new Error("Unexpected semicolon"):new Error(`Invalid declaration: \`${u.trim()}\``);i&&(v.src=[i,g,m],v.dst=[i,g,m]),a?a.nodes.push(v):e.push(v),u=""}else if(w===Ot&&f[f.length-1]!==")")f+="}",c=H(u.trim()),i&&(c.src=[i,g,m],c.dst=[i,g,m]),a&&a.nodes.push(c),s.push(a),a=c,u="",c=null;else if(w===at&&f[f.length-1]!==")"){if(f==="")throw new Error("Missing opening {");if(f=f.slice(0,-1),u.length>0)if(u.charCodeAt(0)===st)c=Se(u),i&&(c.src=[i,g,m],c.dst=[i,g,m]),a?a.nodes.push(c):e.push(c),u="",c=null;else{let x=u.indexOf(":");if(a){let k=ut(u,x);if(!k)throw new Error(`Invalid declaration: \`${u.trim()}\``);i&&(k.src=[i,g,m],k.dst=[i,g,m]),a.nodes.push(k)}}let v=s.pop()??null;v===null&&a&&e.push(a),a=v,u="",c=null}else if(w===ft)f+=")",u+="(";else if(w===Kt){if(f[f.length-1]!==")")throw new Error("Missing opening (");f=f.slice(0,-1),u+=")"}else{if(u.length===0&&(w===Ne||w===ie||w===Me))continue;u===""&&(g=m),u+=String.fromCharCode(w)}}}if(u.charCodeAt(0)===st){let m=Se(u);i&&(m.src=[i,g,r.length],m.dst=[i,g,r.length]),e.push(m)}if(f.length>0&&a){if(a.kind==="rule")throw new Error(`Missing closing } at ${a.selector}`);if(a.kind==="at-rule")throw new Error(`Missing closing } at ${a.name} ${a.params}`)}return n.length>0?n.concat(e):e}function Se(r,t=[]){let i=r,e="";for(let n=5;n=1&&n<=31||n===127||e===0&&n>=48&&n<=57||e===1&&n>=48&&n<=57&&a===45){s+="\\"+n.toString(16)+" ";continue}if(n>=128||n===45||n===95||n>=48&&n<=57||n>=65&&n<=90||n>=97&&n<=122){s+=t.charAt(e);continue}s+="\\"+t.charAt(e)}return s}function ge(r){return r.replace(/\\([\dA-Fa-f]{1,6}[\t\n\f\r ]?|[\S\s])/g,t=>t.length>2?String.fromCodePoint(Number.parseInt(t.slice(1).trim(),16)):t[1])}var Dt=new Map([["--font",["--font-weight","--font-size"]],["--inset",["--inset-shadow","--inset-ring"]],["--text",["--text-color","--text-decoration-color","--text-decoration-thickness","--text-indent","--text-shadow","--text-underline-offset"]]]);function jt(r,t){return(Dt.get(t)??[]).some(i=>r===i||r.startsWith(`${i}-`))}var Be=class{constructor(t=new Map,i=new Set([])){this.values=t;this.keyframes=i}prefix=null;get size(){return this.values.size}add(t,i,e=0,n){if(t.endsWith("-*")){if(i!=="initial")throw new Error(`Invalid theme value \`${i}\` for namespace \`${t}\``);t==="--*"?this.values.clear():this.clearNamespace(t.slice(0,-2),0)}if(e&4){let s=this.values.get(t);if(s&&!(s.options&4))return}i==="initial"?this.values.delete(t):this.values.set(t,{value:i,options:e,src:n})}keysInNamespaces(t){let i=[];for(let e of t){let n=`${e}-`;for(let s of this.values.keys())s.startsWith(n)&&s.indexOf("--",2)===-1&&(jt(s,e)||i.push(s.slice(n.length)))}return i}get(t){for(let i of t){let e=this.values.get(i);if(e)return e.value}return null}hasDefault(t){return(this.getOptions(t)&4)===4}getOptions(t){return t=ge(this.#r(t)),this.values.get(t)?.options??0}entries(){return this.prefix?Array.from(this.values,t=>(t[0]=this.prefixKey(t[0]),t)):this.values.entries()}prefixKey(t){return this.prefix?`--${this.prefix}-${t.slice(2)}`:t}#r(t){return this.prefix?`--${t.slice(3+this.prefix.length)}`:t}clearNamespace(t,i){let e=Dt.get(t)??[];e:for(let n of this.values.keys())if(n.startsWith(t)){if(i!==0&&(this.getOptions(n)&i)!==i)continue;for(let s of e)if(n.startsWith(s))continue e;this.values.delete(n)}}#e(t,i){for(let e of i){let n=t!==null?`${e}-${t}`:e;if(!this.values.has(n))if(t!==null&&t.includes(".")){if(n=`${e}-${t.replaceAll(".","_")}`,!this.values.has(n))continue}else continue;if(!jt(n,e))return n}return null}#t(t){let i=this.values.get(t);if(!i)return null;let e=null;return i.options&2&&(e=i.value),`var(${fe(this.prefixKey(t))}${e?`, ${e}`:""})`}markUsedVariable(t){let i=ge(this.#r(t)),e=this.values.get(i);if(!e)return!1;let n=e.options&16;return e.options|=16,!n}resolve(t,i,e=0){let n=this.#e(t,i);if(!n)return null;let s=this.values.get(n);return(e|s.options)&1?s.value:this.#t(n)}resolveValue(t,i){let e=this.#e(t,i);return e?this.values.get(e).value:null}resolveWith(t,i,e=[]){let n=this.#e(t,i);if(!n)return null;let s={};for(let c of e){let u=`${n}${c}`,f=this.values.get(u);f&&(f.options&1?s[c]=f.value:s[c]=this.#t(u))}let a=this.values.get(n);return a.options&1?[a.value,s]:[this.#t(n),s]}namespace(t){let i=new Map,e=`${t}-`;for(let[n,s]of this.values)n===t?i.set(null,s.value):n.startsWith(`${e}-`)?i.set(n.slice(t.length),s.value):n.startsWith(e)&&i.set(n.slice(e.length),s.value);return i}addKeyframes(t){this.keyframes.add(t)}getKeyframes(){return Array.from(this.keyframes)}};var B=class extends Map{constructor(i){super();this.factory=i}get(i){let e=super.get(i);return e===void 0&&(e=this.factory(i,this),this.set(i,e)),e}};function pt(r){return{kind:"word",value:r}}function li(r,t){return{kind:"function",value:r,nodes:t}}function ai(r){return{kind:"separator",value:r}}function ee(r,t,i=null){for(let e=0;e0){let d=pt(n);e?e.nodes.push(d):t.push(d),n=""}let u=a,f=a+1;for(;f0){let f=pt(n);u?.nodes.push(f),n=""}i.length>0?e=i[i.length-1]:e=null;break}default:n+=String.fromCharCode(c)}}return n.length>0&&t.push(pt(n)),t}function qe(r){let t=[];return ee(q(r),i=>{if(!(i.kind!=="function"||i.value!=="var"))return ee(i.nodes,e=>{e.kind!=="word"||e.value[0]!=="-"||e.value[1]!=="-"||t.push(e.value)}),1}),t}var di=64;function M(r,t=[]){return{kind:"rule",selector:r,nodes:t}}function z(r,t="",i=[]){return{kind:"at-rule",name:r,params:t,nodes:i}}function H(r,t=[]){return r.charCodeAt(0)===di?Se(r,t):M(r,t)}function l(r,t,i=!1){return{kind:"declaration",property:r,value:t,important:i}}function We(r){return{kind:"comment",value:r}}function le(r,t){return{kind:"context",context:r,nodes:t}}function L(r){return{kind:"at-root",nodes:r}}function F(r,t,i=[],e={}){for(let n=0;nnew Set),a=new B(()=>new Set),c=new Set,u=new Set,f=[],g=[],d=new B(()=>new Set);function m(v,x,k={},N=0){if(v.kind==="declaration"){if(v.property==="--tw-sort"||v.value===void 0||v.value===null)return;if(k.theme&&v.property[0]==="-"&&v.property[1]==="-"){if(v.value==="initial"){v.value=void 0;return}k.keyframes||s.get(x).add(v)}if(v.value.includes("var("))if(k.theme&&v.property[0]==="-"&&v.property[1]==="-")for(let b of qe(v.value))d.get(b).add(v.property);else t.trackUsedVariables(v.value);if(v.property==="animation")for(let b of Jt(v.value))u.add(b);i&2&&v.value.includes("color-mix(")&&a.get(x).add(v),x.push(v)}else if(v.kind==="rule")if(v.selector==="&")for(let b of v.nodes){let S=[];m(b,S,k,N+1),S.length>0&&x.push(...S)}else{let b={...v,nodes:[]};for(let S of v.nodes)m(S,b.nodes,k,N+1);b.nodes.length>0&&x.push(b)}else if(v.kind==="at-rule"&&v.name==="@property"&&N===0){if(n.has(v.params))return;if(i&1){let S=v.params,P=null,U=!1;for(let _ of v.nodes)_.kind==="declaration"&&(_.property==="initial-value"?P=_.value:_.property==="inherits"&&(U=_.value==="true"));let R=l(S,P??"initial");R.src=v.src,U?f.push(R):g.push(R)}n.add(v.params);let b={...v,nodes:[]};for(let S of v.nodes)m(S,b.nodes,k,N+1);x.push(b)}else if(v.kind==="at-rule"){v.name==="@keyframes"&&(k={...k,keyframes:!0});let b={...v,nodes:[]};for(let S of v.nodes)m(S,b.nodes,k,N+1);v.name==="@keyframes"&&k.theme&&c.add(b),(b.nodes.length>0||b.name==="@layer"||b.name==="@charset"||b.name==="@custom-media"||b.name==="@namespace"||b.name==="@import")&&x.push(b)}else if(v.kind==="at-root")for(let b of v.nodes){let S=[];m(b,S,k,0);for(let P of S)e.push(P)}else if(v.kind==="context"){if(v.context.reference)return;for(let b of v.nodes)m(b,x,{...k,...v.context},N)}else v.kind==="comment"&&x.push(v)}let w=[];for(let v of r)m(v,w,{},0);e:for(let[v,x]of s)for(let k of x){if(Ht(k.property,t.theme,d)){if(k.property.startsWith(t.theme.prefixKey("--animate-")))for(let S of Jt(k.value))u.add(S);continue}let b=v.indexOf(k);if(v.splice(b,1),v.length===0){let S=mi(w,P=>P.kind==="rule"&&P.nodes===v);if(!S||S.length===0)continue e;S.unshift({kind:"at-root",nodes:w});do{let P=S.pop();if(!P)break;let U=S[S.length-1];if(!U||U.kind!=="at-root"&&U.kind!=="at-rule")break;let R=U.nodes.indexOf(P);if(R===-1)break;U.nodes.splice(R,1)}while(!0);continue e}}for(let v of c)if(!u.has(v.params)){let x=e.indexOf(v);e.splice(x,1)}if(w=w.concat(e),i&2)for(let[v,x]of a)for(let k of x){let N=v.indexOf(k);if(N===-1||k.value==null)continue;let b=q(k.value),S=!1;if(ee(b,(R,{replaceWith:_})=>{if(R.kind!=="function"||R.value!=="color-mix")return;let K=!1,G=!1;if(ee(R.nodes,(I,{replaceWith:W})=>{if(I.kind=="word"&&I.value.toLowerCase()==="currentcolor"){G=!0,S=!0;return}let Z=I,re=null,o=new Set;do{if(Z.kind!=="function"||Z.value!=="var")return;let p=Z.nodes[0];if(!p||p.kind!=="word")return;let h=p.value;if(o.has(h)){K=!0;return}if(o.add(h),S=!0,re=t.theme.resolveValue(null,[p.value]),!re){K=!0;return}if(re.toLowerCase()==="currentcolor"){G=!0;return}re.startsWith("var(")?Z=q(re)[0]:Z=null}while(Z);W({kind:"word",value:re})}),K||G){let I=R.nodes.findIndex(Z=>Z.kind==="separator"&&Z.value.trim().includes(","));if(I===-1)return;let W=R.nodes.length>I?R.nodes[I+1]:null;if(!W)return;_(W)}else if(S){let I=R.nodes[2];I.kind==="word"&&(I.value==="oklab"||I.value==="oklch"||I.value==="lab"||I.value==="lch")&&(I.value="srgb")}}),!S)continue;let P={...k,value:Y(b)},U=H("@supports (color: color-mix(in lab, red, red))",[k]);U.src=k.src,v.splice(N,1,P,U)}if(i&1){let v=[];if(f.length>0){let x=H(":root, :host",f);x.src=f[0].src,v.push(x)}if(g.length>0){let x=H("*, ::before, ::after, ::backdrop",g);x.src=g[0].src,v.push(x)}if(v.length>0){let x=w.findIndex(b=>!(b.kind==="comment"||b.kind==="at-rule"&&(b.name==="@charset"||b.name==="@import"))),k=z("@layer","properties",[]);k.src=v[0].src,w.splice(x<0?w.length:x,0,k);let N=H("@layer properties",[z("@supports","((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b))))",v)]);N.src=v[0].src,N.nodes[0].src=v[0].src,w.push(N)}}return w}function ne(r,t){let i=0,e={file:null,code:""};function n(a,c=0){let u="",f=" ".repeat(c);if(a.kind==="declaration"){if(u+=`${f}${a.property}: ${a.value}${a.important?" !important":""}; +`,t){i+=f.length;let g=i;i+=a.property.length,i+=2,i+=a.value?.length??0,a.important&&(i+=11);let d=i;i+=2,a.dst=[e,g,d]}}else if(a.kind==="rule"){if(u+=`${f}${a.selector} { +`,t){i+=f.length;let g=i;i+=a.selector.length,i+=1;let d=i;a.dst=[e,g,d],i+=2}for(let g of a.nodes)u+=n(g,c+1);u+=`${f}} +`,t&&(i+=f.length,i+=2)}else if(a.kind==="at-rule"){if(a.nodes.length===0){let g=`${f}${a.name} ${a.params}; +`;if(t){i+=f.length;let d=i;i+=a.name.length,i+=1,i+=a.params.length;let m=i;i+=2,a.dst=[e,d,m]}return g}if(u+=`${f}${a.name}${a.params?` ${a.params} `:" "}{ +`,t){i+=f.length;let g=i;i+=a.name.length,a.params&&(i+=1,i+=a.params.length),i+=1;let d=i;a.dst=[e,g,d],i+=2}for(let g of a.nodes)u+=n(g,c+1);u+=`${f}} +`,t&&(i+=f.length,i+=2)}else if(a.kind==="comment"){if(u+=`${f}/*${a.value}*/ +`,t){i+=f.length;let g=i;i+=2+a.value.length+2;let d=i;a.dst=[e,g,d],i+=1}}else if(a.kind==="context"||a.kind==="at-root")return"";return u}let s="";for(let a of r)s+=n(a,0);return e.code=s,s}function mi(r,t){let i=[];return F(r,(e,{path:n})=>{if(t(e))return i=[...n],2}),i}function Ht(r,t,i,e=new Set){if(e.has(r)||(e.add(r),t.getOptions(r)&24))return!0;{let s=i.get(r)??[];for(let a of s)if(Ht(a,t,i,e))return!0}return!1}function Jt(r){return r.split(/[\s,]+/)}function ce(r){if(r.indexOf("(")===-1)return be(r);let t=q(r);return mt(t),r=Y(t),r=Tt(r),r}function be(r,t=!1){let i="";for(let e=0;e0&&n===gt[t-1]&&t--;break;case 59:if(t===0)return!1;break}}return!0}var hi=58,Yt=45,Zt=97,Qt=122;function*Xt(r,t){let i=D(r,":");if(t.theme.prefix){if(i.length===1||i[0]!==t.theme.prefix)return null;i.shift()}let e=i.pop(),n=[];for(let d=i.length-1;d>=0;--d){let m=t.parseVariant(i[d]);if(m===null)return;n.push(m)}let s=!1;e[e.length-1]==="!"?(s=!0,e=e.slice(0,-1)):e[0]==="!"&&(s=!0,e=e.slice(1)),t.utilities.has(e,"static")&&!e.includes("[")&&(yield{kind:"static",root:e,variants:n,important:s,raw:r});let[a,c=null,u]=D(e,"/");if(u)return;let f=c===null?null:ht(c);if(c!==null&&f===null)return;if(a[0]==="["){if(a[a.length-1]!=="]")return;let d=a.charCodeAt(1);if(d!==Yt&&!(d>=Zt&&d<=Qt))return;a=a.slice(1,-1);let m=a.indexOf(":");if(m===-1||m===0||m===a.length-1)return;let w=a.slice(0,m),v=ce(a.slice(m+1));if(!se(v))return;yield{kind:"arbitrary",property:w,value:v,modifier:f,variants:n,important:s,raw:r};return}let g;if(a[a.length-1]==="]"){let d=a.indexOf("-[");if(d===-1)return;let m=a.slice(0,d);if(!t.utilities.has(m,"functional"))return;let w=a.slice(d+1);g=[[m,w]]}else if(a[a.length-1]===")"){let d=a.indexOf("-(");if(d===-1)return;let m=a.slice(0,d);if(!t.utilities.has(m,"functional"))return;let w=a.slice(d+2,-1),v=D(w,":"),x=null;if(v.length===2&&(x=v[0],w=v[1]),w[0]!=="-"||w[1]!=="-"||!se(w))return;g=[[m,x===null?`[var(${w})]`:`[${x}:var(${w})]`]]}else g=tr(a,d=>t.utilities.has(d,"functional"));for(let[d,m]of g){let w={kind:"functional",root:d,modifier:f,value:null,variants:n,important:s,raw:r};if(m===null){yield w;continue}{let v=m.indexOf("[");if(v!==-1){if(m[m.length-1]!=="]")return;let k=ce(m.slice(v+1,-1));if(!se(k))continue;let N="";for(let b=0;b=Zt&&S<=Qt))break}if(k.length===0||k.trim().length===0)continue;w.value={kind:"arbitrary",dataType:N||null,value:k}}else{let k=c===null||w.modifier?.kind==="arbitrary"?null:`${m}/${c}`;w.value={kind:"named",value:m,fraction:k}}}yield w}}function ht(r){if(r[0]==="["&&r[r.length-1]==="]"){let t=ce(r.slice(1,-1));return!se(t)||t.length===0||t.trim().length===0?null:{kind:"arbitrary",value:t}}return r[0]==="("&&r[r.length-1]===")"?(r=r.slice(1,-1),r[0]!=="-"||r[1]!=="-"||!se(r)?null:(r=`var(${r})`,{kind:"arbitrary",value:ce(r)})):{kind:"named",value:r}}function er(r,t){if(r[0]==="["&&r[r.length-1]==="]"){if(r[1]==="@"&&r.includes("&"))return null;let i=ce(r.slice(1,-1));if(!se(i)||i.length===0||i.trim().length===0)return null;let e=i[0]===">"||i[0]==="+"||i[0]==="~";return!e&&i[0]!=="@"&&!i.includes("&")&&(i=`&:is(${i})`),{kind:"arbitrary",selector:i,relative:e}}{let[i,e=null,n]=D(r,"/");if(n)return null;let s=tr(i,a=>t.variants.has(a));for(let[a,c]of s)switch(t.variants.kind(a)){case"static":return c!==null||e!==null?null:{kind:"static",root:a};case"functional":{let u=e===null?null:ht(e);if(e!==null&&u===null)return null;if(c===null)return{kind:"functional",root:a,modifier:u,value:null};if(c[c.length-1]==="]"){if(c[0]!=="[")continue;let f=ce(c.slice(1,-1));return!se(f)||f.length===0||f.trim().length===0?null:{kind:"functional",root:a,modifier:u,value:{kind:"arbitrary",value:f}}}if(c[c.length-1]===")"){if(c[0]!=="(")continue;let f=ce(c.slice(1,-1));return!se(f)||f.length===0||f.trim().length===0||f[0]!=="-"||f[1]!=="-"?null:{kind:"functional",root:a,modifier:u,value:{kind:"arbitrary",value:`var(${f})`}}}return{kind:"functional",root:a,modifier:u,value:{kind:"named",value:c}}}case"compound":{if(c===null)return null;let u=t.parseVariant(c);if(u===null||!t.variants.compoundsWith(a,u))return null;let f=e===null?null:ht(e);return e!==null&&f===null?null:{kind:"compound",root:a,modifier:f,variant:u}}}}return null}function*tr(r,t){t(r)&&(yield[r,null]);let i=r.lastIndexOf("-");for(;i>0;){let e=r.slice(0,i);if(t(e)){let n=[e,r.slice(i+1)];if(n[1]==="")break;yield n}i=r.lastIndexOf("-",i-1)}r[0]==="@"&&t("@")&&(yield["@",r.slice(1)])}function rr(r,t){let i=[];for(let n of t.variants)i.unshift(He(n));r.theme.prefix&&i.unshift(r.theme.prefix);let e="";if(t.kind==="static"&&(e+=t.root),t.kind==="functional"&&(e+=t.root,t.value))if(t.value.kind==="arbitrary"){if(t.value!==null){let n=wt(t.value.value),s=n?t.value.value.slice(4,-1):t.value.value,[a,c]=n?["(",")"]:["[","]"];t.value.dataType?e+=`-${a}${t.value.dataType}:${ke(s)}${c}`:e+=`-${a}${ke(s)}${c}`}}else t.value.kind==="named"&&(e+=`-${t.value.value}`);return t.kind==="arbitrary"&&(e+=`[${t.property}:${ke(t.value)}]`),(t.kind==="arbitrary"||t.kind==="functional")&&(e+=ir(t.modifier)),t.important&&(e+="!"),i.push(e),i.join(":")}function ir(r){if(r===null)return"";let t=wt(r.value),i=t?r.value.slice(4,-1):r.value,[e,n]=t?["(",")"]:["[","]"];return r.kind==="arbitrary"?`/${e}${ke(i)}${n}`:r.kind==="named"?`/${r.value}`:""}function He(r){if(r.kind==="static")return r.root;if(r.kind==="arbitrary")return`[${ke(yi(r.selector))}]`;let t="";if(r.kind==="functional"){t+=r.root;let i=r.root!=="@";if(r.value)if(r.value.kind==="arbitrary"){let e=wt(r.value.value),n=e?r.value.value.slice(4,-1):r.value.value,[s,a]=e?["(",")"]:["[","]"];t+=`${i?"-":""}${s}${ke(n)}${a}`}else r.value.kind==="named"&&(t+=`${i?"-":""}${r.value.value}`)}return r.kind==="compound"&&(t+=r.root,t+="-",t+=He(r.variant)),(r.kind==="functional"||r.kind==="compound")&&(t+=ir(r.modifier)),t}var vi=new B(r=>{let t=q(r),i=new Set;return ee(t,(e,{parent:n})=>{let s=n===null?t:n.nodes??[];if(e.kind==="word"&&(e.value==="+"||e.value==="-"||e.value==="*"||e.value==="/")){let a=s.indexOf(e)??-1;if(a===-1)return;let c=s[a-1];if(c?.kind!=="separator"||c.value!==" ")return;let u=s[a+1];if(u?.kind!=="separator"||u.value!==" ")return;i.add(c),i.add(u)}else e.kind==="separator"&&e.value.trim()==="/"?e.value="/":e.kind==="separator"&&e.value.length>0&&e.value.trim()===""?(s[0]===e||s[s.length-1]===e)&&i.add(e):e.kind==="separator"&&e.value.trim()===","&&(e.value=",")}),i.size>0&&ee(t,(e,{replaceWith:n})=>{i.has(e)&&(i.delete(e),n([]))}),vt(t),Y(t)});function ke(r){return vi.get(r)}var wi=new B(r=>{let t=q(r);return t.length===3&&t[0].kind==="word"&&t[0].value==="&"&&t[1].kind==="separator"&&t[1].value===":"&&t[2].kind==="function"&&t[2].value==="is"?Y(t[2].nodes):r});function yi(r){return wi.get(r)}function vt(r){for(let t of r)switch(t.kind){case"function":{if(t.value==="url"||t.value.endsWith("_url")){t.value=Te(t.value);break}if(t.value==="var"||t.value.endsWith("_var")||t.value==="theme"||t.value.endsWith("_theme")){t.value=Te(t.value);for(let i=0;i{let t=q(r);return t.length===1&&t[0].kind==="function"&&t[0].value==="var"});function wt(r){return bi.get(r)}function ki(r){throw new Error(`Unexpected value: ${r}`)}function Te(r){return r.replaceAll("_",String.raw`\_`).replaceAll(" ","_")}function we(r,t,i){if(r===t)return 0;let e=r.indexOf("("),n=t.indexOf("("),s=e===-1?r.replace(/[\d.]+/g,""):r.slice(0,e),a=n===-1?t.replace(/[\d.]+/g,""):t.slice(0,n),c=(s===a?0:s{e=e.trim();let n=D(e," ").filter(f=>f.trim()!==""),s=null,a=null,c=null;for(let f of n)xi.has(f)||(nr.test(f)?(a===null?a=f:c===null&&(c=f),nr.lastIndex=0):s===null&&(s=f));if(a===null||c===null)return e;let u=t(s??"currentcolor");return s!==null?e.replace(s,u):`${e} ${u}`}).join(", ")}var Ai=/^-?[a-z][a-zA-Z0-9/%._-]*$/,Ci=/^-?[a-z][a-zA-Z0-9/%._-]*-\*$/,Ze=["0","0.5","1","1.5","2","2.5","3","3.5","4","5","6","7","8","9","10","11","12","14","16","20","24","28","32","36","40","44","48","52","56","60","64","72","80","96"],yt=class{utilities=new B(()=>[]);completions=new Map;static(t,i){this.utilities.get(t).push({kind:"static",compileFn:i})}functional(t,i,e){this.utilities.get(t).push({kind:"functional",compileFn:i,options:e})}has(t,i){return this.utilities.has(t)&&this.utilities.get(t).some(e=>e.kind===i)}get(t){return this.utilities.has(t)?this.utilities.get(t):[]}getCompletions(t){return this.completions.get(t)?.()??[]}suggest(t,i){this.completions.set(t,i)}keys(t){let i=[];for(let[e,n]of this.utilities.entries())for(let s of n)if(s.kind===t){i.push(e);break}return i}};function $(r,t,i){return z("@property",r,[l("syntax",i?`"${i}"`:'"*"'),l("inherits","false"),...t?[l("initial-value",t)]:[]])}function Q(r,t){if(t===null)return r;let i=Number(t);return Number.isNaN(i)||(t=`${i*100}%`),t==="100%"?r:`color-mix(in oklab, ${r} ${t}, transparent)`}function lr(r,t){let i=Number(t);return Number.isNaN(i)||(t=`${i*100}%`),`oklab(from ${r} l a b / ${t})`}function X(r,t,i){if(!t)return r;if(t.kind==="arbitrary")return Q(r,t.value);let e=i.resolve(t.value,["--opacity"]);return e?Q(r,e):Ue(t.value)?Q(r,`${t.value}%`):null}function te(r,t,i){let e=null;switch(r.value.value){case"inherit":{e="inherit";break}case"transparent":{e="transparent";break}case"current":{e="currentcolor";break}default:{e=t.resolve(r.value.value,i);break}}return e?X(e,r.modifier,t):null}var ar=/(\d+)_(\d+)/g;function sr(r){let t=new yt;function i(o,p){function*h(y){for(let C of r.keysInNamespaces(y))yield C.replace(ar,(O,V,T)=>`${V}.${T}`)}let A=["1/2","1/3","2/3","1/4","2/4","3/4","1/5","2/5","3/5","4/5","1/6","2/6","3/6","4/6","5/6","1/12","2/12","3/12","4/12","5/12","6/12","7/12","8/12","9/12","10/12","11/12"];t.suggest(o,()=>{let y=[];for(let C of p()){if(typeof C=="string"){y.push({values:[C],modifiers:[]});continue}let O=[...C.values??[],...h(C.valueThemeKeys??[])],V=[...C.modifiers??[],...h(C.modifierThemeKeys??[])];C.supportsFractions&&O.push(...A),C.hasDefaultValue&&O.unshift(null),y.push({supportsNegative:C.supportsNegative,values:O,modifiers:V})}return y})}function e(o,p){t.static(o,()=>p.map(h=>typeof h=="function"?h():l(h[0],h[1])))}function n(o,p){function h({negative:A}){return y=>{let C=null,O=null;if(y.value)if(y.value.kind==="arbitrary"){if(y.modifier)return;C=y.value.value,O=y.value.dataType}else{if(C=r.resolve(y.value.fraction??y.value.value,p.themeKeys??[]),C===null&&p.supportsFractions&&y.value.fraction){let[V,T]=D(y.value.fraction,"/");if(!E(V)||!E(T))return;C=`calc(${y.value.fraction} * 100%)`}if(C===null&&A&&p.handleNegativeBareValue){if(C=p.handleNegativeBareValue(y.value),!C?.includes("/")&&y.modifier)return;if(C!==null)return p.handle(C,null)}if(C===null&&p.handleBareValue&&(C=p.handleBareValue(y.value),!C?.includes("/")&&y.modifier))return}else{if(y.modifier)return;C=p.defaultValue!==void 0?p.defaultValue:r.resolve(null,p.themeKeys??[])}if(C!==null)return p.handle(A?`calc(${C} * -1)`:C,O)}}p.supportsNegative&&t.functional(`-${o}`,h({negative:!0})),t.functional(o,h({negative:!1})),i(o,()=>[{supportsNegative:p.supportsNegative,valueThemeKeys:p.themeKeys??[],hasDefaultValue:p.defaultValue!==void 0&&p.defaultValue!==null,supportsFractions:p.supportsFractions}])}function s(o,p){t.functional(o,h=>{if(!h.value)return;let A=null;if(h.value.kind==="arbitrary"?(A=h.value.value,A=X(A,h.modifier,r)):A=te(h,r,p.themeKeys),A!==null)return p.handle(A)}),i(o,()=>[{values:["current","inherit","transparent"],valueThemeKeys:p.themeKeys,modifiers:Array.from({length:21},(h,A)=>`${A*5}`)}])}function a(o,p,h,{supportsNegative:A=!1,supportsFractions:y=!1}={}){A&&t.static(`-${o}-px`,()=>h("-1px")),t.static(`${o}-px`,()=>h("1px")),n(o,{themeKeys:p,supportsFractions:y,supportsNegative:A,defaultValue:null,handleBareValue:({value:C})=>{let O=r.resolve(null,["--spacing"]);return!O||!de(C)?null:`calc(${O} * ${C})`},handleNegativeBareValue:({value:C})=>{let O=r.resolve(null,["--spacing"]);return!O||!de(C)?null:`calc(${O} * -${C})`},handle:h}),i(o,()=>[{values:r.get(["--spacing"])?Ze:[],supportsNegative:A,supportsFractions:y,valueThemeKeys:p}])}e("sr-only",[["position","absolute"],["width","1px"],["height","1px"],["padding","0"],["margin","-1px"],["overflow","hidden"],["clip","rect(0, 0, 0, 0)"],["white-space","nowrap"],["border-width","0"]]),e("not-sr-only",[["position","static"],["width","auto"],["height","auto"],["padding","0"],["margin","0"],["overflow","visible"],["clip","auto"],["white-space","normal"]]),e("pointer-events-none",[["pointer-events","none"]]),e("pointer-events-auto",[["pointer-events","auto"]]),e("visible",[["visibility","visible"]]),e("invisible",[["visibility","hidden"]]),e("collapse",[["visibility","collapse"]]),e("static",[["position","static"]]),e("fixed",[["position","fixed"]]),e("absolute",[["position","absolute"]]),e("relative",[["position","relative"]]),e("sticky",[["position","sticky"]]);for(let[o,p]of[["inset","inset"],["inset-x","inset-inline"],["inset-y","inset-block"],["start","inset-inline-start"],["end","inset-inline-end"],["top","top"],["right","right"],["bottom","bottom"],["left","left"]])e(`${o}-auto`,[[p,"auto"]]),e(`${o}-full`,[[p,"100%"]]),e(`-${o}-full`,[[p,"-100%"]]),a(o,["--inset","--spacing"],h=>[l(p,h)],{supportsNegative:!0,supportsFractions:!0});e("isolate",[["isolation","isolate"]]),e("isolation-auto",[["isolation","auto"]]),e("z-auto",[["z-index","auto"]]),n("z",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--z-index"],handle:o=>[l("z-index",o)]}),i("z",()=>[{supportsNegative:!0,values:["0","10","20","30","40","50"],valueThemeKeys:["--z-index"]}]),e("order-first",[["order","-9999"]]),e("order-last",[["order","9999"]]),n("order",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--order"],handle:o=>[l("order",o)]}),i("order",()=>[{supportsNegative:!0,values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:["--order"]}]),e("col-auto",[["grid-column","auto"]]),n("col",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-column"],handle:o=>[l("grid-column",o)]}),e("col-span-full",[["grid-column","1 / -1"]]),n("col-span",{handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("grid-column",`span ${o} / span ${o}`)]}),e("col-start-auto",[["grid-column-start","auto"]]),n("col-start",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-column-start"],handle:o=>[l("grid-column-start",o)]}),e("col-end-auto",[["grid-column-end","auto"]]),n("col-end",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-column-end"],handle:o=>[l("grid-column-end",o)]}),i("col-span",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:[]}]),i("col-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-column-start"]}]),i("col-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-column-end"]}]),e("row-auto",[["grid-row","auto"]]),n("row",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-row"],handle:o=>[l("grid-row",o)]}),e("row-span-full",[["grid-row","1 / -1"]]),n("row-span",{themeKeys:[],handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("grid-row",`span ${o} / span ${o}`)]}),e("row-start-auto",[["grid-row-start","auto"]]),n("row-start",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-row-start"],handle:o=>[l("grid-row-start",o)]}),e("row-end-auto",[["grid-row-end","auto"]]),n("row-end",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-row-end"],handle:o=>[l("grid-row-end",o)]}),i("row-span",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:[]}]),i("row-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-row-start"]}]),i("row-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-row-end"]}]),e("float-start",[["float","inline-start"]]),e("float-end",[["float","inline-end"]]),e("float-right",[["float","right"]]),e("float-left",[["float","left"]]),e("float-none",[["float","none"]]),e("clear-start",[["clear","inline-start"]]),e("clear-end",[["clear","inline-end"]]),e("clear-right",[["clear","right"]]),e("clear-left",[["clear","left"]]),e("clear-both",[["clear","both"]]),e("clear-none",[["clear","none"]]);for(let[o,p]of[["m","margin"],["mx","margin-inline"],["my","margin-block"],["ms","margin-inline-start"],["me","margin-inline-end"],["mt","margin-top"],["mr","margin-right"],["mb","margin-bottom"],["ml","margin-left"]])e(`${o}-auto`,[[p,"auto"]]),a(o,["--margin","--spacing"],h=>[l(p,h)],{supportsNegative:!0});e("box-border",[["box-sizing","border-box"]]),e("box-content",[["box-sizing","content-box"]]),e("line-clamp-none",[["overflow","visible"],["display","block"],["-webkit-box-orient","horizontal"],["-webkit-line-clamp","unset"]]),n("line-clamp",{themeKeys:["--line-clamp"],handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("overflow","hidden"),l("display","-webkit-box"),l("-webkit-box-orient","vertical"),l("-webkit-line-clamp",o)]}),i("line-clamp",()=>[{values:["1","2","3","4","5","6"],valueThemeKeys:["--line-clamp"]}]),e("block",[["display","block"]]),e("inline-block",[["display","inline-block"]]),e("inline",[["display","inline"]]),e("hidden",[["display","none"]]),e("inline-flex",[["display","inline-flex"]]),e("table",[["display","table"]]),e("inline-table",[["display","inline-table"]]),e("table-caption",[["display","table-caption"]]),e("table-cell",[["display","table-cell"]]),e("table-column",[["display","table-column"]]),e("table-column-group",[["display","table-column-group"]]),e("table-footer-group",[["display","table-footer-group"]]),e("table-header-group",[["display","table-header-group"]]),e("table-row-group",[["display","table-row-group"]]),e("table-row",[["display","table-row"]]),e("flow-root",[["display","flow-root"]]),e("flex",[["display","flex"]]),e("grid",[["display","grid"]]),e("inline-grid",[["display","inline-grid"]]),e("contents",[["display","contents"]]),e("list-item",[["display","list-item"]]),e("field-sizing-content",[["field-sizing","content"]]),e("field-sizing-fixed",[["field-sizing","fixed"]]),e("aspect-auto",[["aspect-ratio","auto"]]),e("aspect-square",[["aspect-ratio","1 / 1"]]),n("aspect",{themeKeys:["--aspect"],handleBareValue:({fraction:o})=>{if(o===null)return null;let[p,h]=D(o,"/");return!E(p)||!E(h)?null:o},handle:o=>[l("aspect-ratio",o)]});for(let[o,p]of[["full","100%"],["svw","100svw"],["lvw","100lvw"],["dvw","100dvw"],["svh","100svh"],["lvh","100lvh"],["dvh","100dvh"],["min","min-content"],["max","max-content"],["fit","fit-content"]])e(`size-${o}`,[["--tw-sort","size"],["width",p],["height",p]]),e(`w-${o}`,[["width",p]]),e(`h-${o}`,[["height",p]]),e(`min-w-${o}`,[["min-width",p]]),e(`min-h-${o}`,[["min-height",p]]),e(`max-w-${o}`,[["max-width",p]]),e(`max-h-${o}`,[["max-height",p]]);e("size-auto",[["--tw-sort","size"],["width","auto"],["height","auto"]]),e("w-auto",[["width","auto"]]),e("h-auto",[["height","auto"]]),e("min-w-auto",[["min-width","auto"]]),e("min-h-auto",[["min-height","auto"]]),e("h-lh",[["height","1lh"]]),e("min-h-lh",[["min-height","1lh"]]),e("max-h-lh",[["max-height","1lh"]]),e("w-screen",[["width","100vw"]]),e("min-w-screen",[["min-width","100vw"]]),e("max-w-screen",[["max-width","100vw"]]),e("h-screen",[["height","100vh"]]),e("min-h-screen",[["min-height","100vh"]]),e("max-h-screen",[["max-height","100vh"]]),e("max-w-none",[["max-width","none"]]),e("max-h-none",[["max-height","none"]]),a("size",["--size","--spacing"],o=>[l("--tw-sort","size"),l("width",o),l("height",o)],{supportsFractions:!0});for(let[o,p,h]of[["w",["--width","--spacing","--container"],"width"],["min-w",["--min-width","--spacing","--container"],"min-width"],["max-w",["--max-width","--spacing","--container"],"max-width"],["h",["--height","--spacing"],"height"],["min-h",["--min-height","--height","--spacing"],"min-height"],["max-h",["--max-height","--height","--spacing"],"max-height"]])a(o,p,A=>[l(h,A)],{supportsFractions:!0});t.static("container",()=>{let o=[...r.namespace("--breakpoint").values()];o.sort((h,A)=>we(h,A,"asc"));let p=[l("--tw-sort","--tw-container-component"),l("width","100%")];for(let h of o)p.push(z("@media",`(width >= ${h})`,[l("max-width",h)]));return p}),e("flex-auto",[["flex","auto"]]),e("flex-initial",[["flex","0 auto"]]),e("flex-none",[["flex","none"]]),t.functional("flex",o=>{if(o.value){if(o.value.kind==="arbitrary")return o.modifier?void 0:[l("flex",o.value.value)];if(o.value.fraction){let[p,h]=D(o.value.fraction,"/");return!E(p)||!E(h)?void 0:[l("flex",`calc(${o.value.fraction} * 100%)`)]}if(E(o.value.value))return o.modifier?void 0:[l("flex",o.value.value)]}}),i("flex",()=>[{supportsFractions:!0}]),n("shrink",{defaultValue:"1",handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("flex-shrink",o)]}),n("grow",{defaultValue:"1",handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("flex-grow",o)]}),i("shrink",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),i("grow",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),e("basis-auto",[["flex-basis","auto"]]),e("basis-full",[["flex-basis","100%"]]),a("basis",["--flex-basis","--spacing","--container"],o=>[l("flex-basis",o)],{supportsFractions:!0}),e("table-auto",[["table-layout","auto"]]),e("table-fixed",[["table-layout","fixed"]]),e("caption-top",[["caption-side","top"]]),e("caption-bottom",[["caption-side","bottom"]]),e("border-collapse",[["border-collapse","collapse"]]),e("border-separate",[["border-collapse","separate"]]);let c=()=>L([$("--tw-border-spacing-x","0",""),$("--tw-border-spacing-y","0","")]);a("border-spacing",["--border-spacing","--spacing"],o=>[c(),l("--tw-border-spacing-x",o),l("--tw-border-spacing-y",o),l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-x",["--border-spacing","--spacing"],o=>[c(),l("--tw-border-spacing-x",o),l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-y",["--border-spacing","--spacing"],o=>[c(),l("--tw-border-spacing-y",o),l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),e("origin-center",[["transform-origin","center"]]),e("origin-top",[["transform-origin","top"]]),e("origin-top-right",[["transform-origin","top right"]]),e("origin-right",[["transform-origin","right"]]),e("origin-bottom-right",[["transform-origin","bottom right"]]),e("origin-bottom",[["transform-origin","bottom"]]),e("origin-bottom-left",[["transform-origin","bottom left"]]),e("origin-left",[["transform-origin","left"]]),e("origin-top-left",[["transform-origin","top left"]]),n("origin",{themeKeys:["--transform-origin"],handle:o=>[l("transform-origin",o)]}),e("perspective-origin-center",[["perspective-origin","center"]]),e("perspective-origin-top",[["perspective-origin","top"]]),e("perspective-origin-top-right",[["perspective-origin","top right"]]),e("perspective-origin-right",[["perspective-origin","right"]]),e("perspective-origin-bottom-right",[["perspective-origin","bottom right"]]),e("perspective-origin-bottom",[["perspective-origin","bottom"]]),e("perspective-origin-bottom-left",[["perspective-origin","bottom left"]]),e("perspective-origin-left",[["perspective-origin","left"]]),e("perspective-origin-top-left",[["perspective-origin","top left"]]),n("perspective-origin",{themeKeys:["--perspective-origin"],handle:o=>[l("perspective-origin",o)]}),e("perspective-none",[["perspective","none"]]),n("perspective",{themeKeys:["--perspective"],handle:o=>[l("perspective",o)]});let u=()=>L([$("--tw-translate-x","0"),$("--tw-translate-y","0"),$("--tw-translate-z","0")]);e("translate-none",[["translate","none"]]),e("-translate-full",[u,["--tw-translate-x","-100%"],["--tw-translate-y","-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e("translate-full",[u,["--tw-translate-x","100%"],["--tw-translate-y","100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a("translate",["--translate","--spacing"],o=>[u(),l("--tw-translate-x",o),l("--tw-translate-y",o),l("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});for(let o of["x","y"])e(`-translate-${o}-full`,[u,[`--tw-translate-${o}`,"-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e(`translate-${o}-full`,[u,[`--tw-translate-${o}`,"100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a(`translate-${o}`,["--translate","--spacing"],p=>[u(),l(`--tw-translate-${o}`,p),l("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});a("translate-z",["--translate","--spacing"],o=>[u(),l("--tw-translate-z",o),l("translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)")],{supportsNegative:!0}),e("translate-3d",[u,["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]);let f=()=>L([$("--tw-scale-x","1"),$("--tw-scale-y","1"),$("--tw-scale-z","1")]);e("scale-none",[["scale","none"]]);function g({negative:o}){return p=>{if(!p.value||p.modifier)return;let h;return p.value.kind==="arbitrary"?(h=p.value.value,h=o?`calc(${h} * -1)`:h,[l("scale",h)]):(h=r.resolve(p.value.value,["--scale"]),!h&&E(p.value.value)&&(h=`${p.value.value}%`),h?(h=o?`calc(${h} * -1)`:h,[f(),l("--tw-scale-x",h),l("--tw-scale-y",h),l("--tw-scale-z",h),l("scale","var(--tw-scale-x) var(--tw-scale-y)")]):void 0)}}t.functional("-scale",g({negative:!0})),t.functional("scale",g({negative:!1})),i("scale",()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);for(let o of["x","y","z"])n(`scale-${o}`,{supportsNegative:!0,themeKeys:["--scale"],handleBareValue:({value:p})=>E(p)?`${p}%`:null,handle:p=>[f(),l(`--tw-scale-${o}`,p),l("scale",`var(--tw-scale-x) var(--tw-scale-y)${o==="z"?" var(--tw-scale-z)":""}`)]}),i(`scale-${o}`,()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);e("scale-3d",[f,["scale","var(--tw-scale-x) var(--tw-scale-y) var(--tw-scale-z)"]]),e("rotate-none",[["rotate","none"]]);function d({negative:o}){return p=>{if(!p.value||p.modifier)return;let h;if(p.value.kind==="arbitrary"){h=p.value.value;let A=p.value.dataType??J(h,["angle","vector"]);if(A==="vector")return[l("rotate",`${h} var(--tw-rotate)`)];if(A!=="angle")return[l("rotate",o?`calc(${h} * -1)`:h)]}else if(h=r.resolve(p.value.value,["--rotate"]),!h&&E(p.value.value)&&(h=`${p.value.value}deg`),!h)return;return[l("rotate",o?`calc(${h} * -1)`:h)]}}t.functional("-rotate",d({negative:!0})),t.functional("rotate",d({negative:!1})),i("rotate",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);{let o=["var(--tw-rotate-x,)","var(--tw-rotate-y,)","var(--tw-rotate-z,)","var(--tw-skew-x,)","var(--tw-skew-y,)"].join(" "),p=()=>L([$("--tw-rotate-x"),$("--tw-rotate-y"),$("--tw-rotate-z"),$("--tw-skew-x"),$("--tw-skew-y")]);for(let h of["x","y","z"])n(`rotate-${h}`,{supportsNegative:!0,themeKeys:["--rotate"],handleBareValue:({value:A})=>E(A)?`${A}deg`:null,handle:A=>[p(),l(`--tw-rotate-${h}`,`rotate${h.toUpperCase()}(${A})`),l("transform",o)]}),i(`rotate-${h}`,()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);n("skew",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:h})=>E(h)?`${h}deg`:null,handle:h=>[p(),l("--tw-skew-x",`skewX(${h})`),l("--tw-skew-y",`skewY(${h})`),l("transform",o)]}),n("skew-x",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:h})=>E(h)?`${h}deg`:null,handle:h=>[p(),l("--tw-skew-x",`skewX(${h})`),l("transform",o)]}),n("skew-y",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:h})=>E(h)?`${h}deg`:null,handle:h=>[p(),l("--tw-skew-y",`skewY(${h})`),l("transform",o)]}),i("skew",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),i("skew-x",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),i("skew-y",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),t.functional("transform",h=>{if(h.modifier)return;let A=null;if(h.value?h.value.kind==="arbitrary"&&(A=h.value.value):A=o,A!==null)return[p(),l("transform",A)]}),i("transform",()=>[{hasDefaultValue:!0}]),e("transform-cpu",[["transform",o]]),e("transform-gpu",[["transform",`translateZ(0) ${o}`]]),e("transform-none",[["transform","none"]])}e("transform-flat",[["transform-style","flat"]]),e("transform-3d",[["transform-style","preserve-3d"]]),e("transform-content",[["transform-box","content-box"]]),e("transform-border",[["transform-box","border-box"]]),e("transform-fill",[["transform-box","fill-box"]]),e("transform-stroke",[["transform-box","stroke-box"]]),e("transform-view",[["transform-box","view-box"]]),e("backface-visible",[["backface-visibility","visible"]]),e("backface-hidden",[["backface-visibility","hidden"]]);for(let o of["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out"])e(`cursor-${o}`,[["cursor",o]]);n("cursor",{themeKeys:["--cursor"],handle:o=>[l("cursor",o)]});for(let o of["auto","none","manipulation"])e(`touch-${o}`,[["touch-action",o]]);let m=()=>L([$("--tw-pan-x"),$("--tw-pan-y"),$("--tw-pinch-zoom")]);for(let o of["x","left","right"])e(`touch-pan-${o}`,[m,["--tw-pan-x",`pan-${o}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let o of["y","up","down"])e(`touch-pan-${o}`,[m,["--tw-pan-y",`pan-${o}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);e("touch-pinch-zoom",[m,["--tw-pinch-zoom","pinch-zoom"],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let o of["none","text","all","auto"])e(`select-${o}`,[["-webkit-user-select",o],["user-select",o]]);e("resize-none",[["resize","none"]]),e("resize-x",[["resize","horizontal"]]),e("resize-y",[["resize","vertical"]]),e("resize",[["resize","both"]]),e("snap-none",[["scroll-snap-type","none"]]);let w=()=>L([$("--tw-scroll-snap-strictness","proximity","*")]);for(let o of["x","y","both"])e(`snap-${o}`,[w,["scroll-snap-type",`${o} var(--tw-scroll-snap-strictness)`]]);e("snap-mandatory",[w,["--tw-scroll-snap-strictness","mandatory"]]),e("snap-proximity",[w,["--tw-scroll-snap-strictness","proximity"]]),e("snap-align-none",[["scroll-snap-align","none"]]),e("snap-start",[["scroll-snap-align","start"]]),e("snap-end",[["scroll-snap-align","end"]]),e("snap-center",[["scroll-snap-align","center"]]),e("snap-normal",[["scroll-snap-stop","normal"]]),e("snap-always",[["scroll-snap-stop","always"]]);for(let[o,p]of[["scroll-m","scroll-margin"],["scroll-mx","scroll-margin-inline"],["scroll-my","scroll-margin-block"],["scroll-ms","scroll-margin-inline-start"],["scroll-me","scroll-margin-inline-end"],["scroll-mt","scroll-margin-top"],["scroll-mr","scroll-margin-right"],["scroll-mb","scroll-margin-bottom"],["scroll-ml","scroll-margin-left"]])a(o,["--scroll-margin","--spacing"],h=>[l(p,h)],{supportsNegative:!0});for(let[o,p]of[["scroll-p","scroll-padding"],["scroll-px","scroll-padding-inline"],["scroll-py","scroll-padding-block"],["scroll-ps","scroll-padding-inline-start"],["scroll-pe","scroll-padding-inline-end"],["scroll-pt","scroll-padding-top"],["scroll-pr","scroll-padding-right"],["scroll-pb","scroll-padding-bottom"],["scroll-pl","scroll-padding-left"]])a(o,["--scroll-padding","--spacing"],h=>[l(p,h)]);e("list-inside",[["list-style-position","inside"]]),e("list-outside",[["list-style-position","outside"]]),e("list-none",[["list-style-type","none"]]),e("list-disc",[["list-style-type","disc"]]),e("list-decimal",[["list-style-type","decimal"]]),n("list",{themeKeys:["--list-style-type"],handle:o=>[l("list-style-type",o)]}),e("list-image-none",[["list-style-image","none"]]),n("list-image",{themeKeys:["--list-style-image"],handle:o=>[l("list-style-image",o)]}),e("appearance-none",[["appearance","none"]]),e("appearance-auto",[["appearance","auto"]]),e("scheme-normal",[["color-scheme","normal"]]),e("scheme-dark",[["color-scheme","dark"]]),e("scheme-light",[["color-scheme","light"]]),e("scheme-light-dark",[["color-scheme","light dark"]]),e("scheme-only-dark",[["color-scheme","only dark"]]),e("scheme-only-light",[["color-scheme","only light"]]),e("columns-auto",[["columns","auto"]]),n("columns",{themeKeys:["--columns","--container"],handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("columns",o)]}),i("columns",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:["--columns","--container"]}]);for(let o of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-before-${o}`,[["break-before",o]]);for(let o of["auto","avoid","avoid-page","avoid-column"])e(`break-inside-${o}`,[["break-inside",o]]);for(let o of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-after-${o}`,[["break-after",o]]);e("grid-flow-row",[["grid-auto-flow","row"]]),e("grid-flow-col",[["grid-auto-flow","column"]]),e("grid-flow-dense",[["grid-auto-flow","dense"]]),e("grid-flow-row-dense",[["grid-auto-flow","row dense"]]),e("grid-flow-col-dense",[["grid-auto-flow","column dense"]]),e("auto-cols-auto",[["grid-auto-columns","auto"]]),e("auto-cols-min",[["grid-auto-columns","min-content"]]),e("auto-cols-max",[["grid-auto-columns","max-content"]]),e("auto-cols-fr",[["grid-auto-columns","minmax(0, 1fr)"]]),n("auto-cols",{themeKeys:["--grid-auto-columns"],handle:o=>[l("grid-auto-columns",o)]}),e("auto-rows-auto",[["grid-auto-rows","auto"]]),e("auto-rows-min",[["grid-auto-rows","min-content"]]),e("auto-rows-max",[["grid-auto-rows","max-content"]]),e("auto-rows-fr",[["grid-auto-rows","minmax(0, 1fr)"]]),n("auto-rows",{themeKeys:["--grid-auto-rows"],handle:o=>[l("grid-auto-rows",o)]}),e("grid-cols-none",[["grid-template-columns","none"]]),e("grid-cols-subgrid",[["grid-template-columns","subgrid"]]),n("grid-cols",{themeKeys:["--grid-template-columns"],handleBareValue:({value:o})=>lt(o)?`repeat(${o}, minmax(0, 1fr))`:null,handle:o=>[l("grid-template-columns",o)]}),e("grid-rows-none",[["grid-template-rows","none"]]),e("grid-rows-subgrid",[["grid-template-rows","subgrid"]]),n("grid-rows",{themeKeys:["--grid-template-rows"],handleBareValue:({value:o})=>lt(o)?`repeat(${o}, minmax(0, 1fr))`:null,handle:o=>[l("grid-template-rows",o)]}),i("grid-cols",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-template-columns"]}]),i("grid-rows",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-template-rows"]}]),e("flex-row",[["flex-direction","row"]]),e("flex-row-reverse",[["flex-direction","row-reverse"]]),e("flex-col",[["flex-direction","column"]]),e("flex-col-reverse",[["flex-direction","column-reverse"]]),e("flex-wrap",[["flex-wrap","wrap"]]),e("flex-nowrap",[["flex-wrap","nowrap"]]),e("flex-wrap-reverse",[["flex-wrap","wrap-reverse"]]),e("place-content-center",[["place-content","center"]]),e("place-content-start",[["place-content","start"]]),e("place-content-end",[["place-content","end"]]),e("place-content-center-safe",[["place-content","safe center"]]),e("place-content-end-safe",[["place-content","safe end"]]),e("place-content-between",[["place-content","space-between"]]),e("place-content-around",[["place-content","space-around"]]),e("place-content-evenly",[["place-content","space-evenly"]]),e("place-content-baseline",[["place-content","baseline"]]),e("place-content-stretch",[["place-content","stretch"]]),e("place-items-center",[["place-items","center"]]),e("place-items-start",[["place-items","start"]]),e("place-items-end",[["place-items","end"]]),e("place-items-center-safe",[["place-items","safe center"]]),e("place-items-end-safe",[["place-items","safe end"]]),e("place-items-baseline",[["place-items","baseline"]]),e("place-items-stretch",[["place-items","stretch"]]),e("content-normal",[["align-content","normal"]]),e("content-center",[["align-content","center"]]),e("content-start",[["align-content","flex-start"]]),e("content-end",[["align-content","flex-end"]]),e("content-center-safe",[["align-content","safe center"]]),e("content-end-safe",[["align-content","safe flex-end"]]),e("content-between",[["align-content","space-between"]]),e("content-around",[["align-content","space-around"]]),e("content-evenly",[["align-content","space-evenly"]]),e("content-baseline",[["align-content","baseline"]]),e("content-stretch",[["align-content","stretch"]]),e("items-center",[["align-items","center"]]),e("items-start",[["align-items","flex-start"]]),e("items-end",[["align-items","flex-end"]]),e("items-center-safe",[["align-items","safe center"]]),e("items-end-safe",[["align-items","safe flex-end"]]),e("items-baseline",[["align-items","baseline"]]),e("items-baseline-last",[["align-items","last baseline"]]),e("items-stretch",[["align-items","stretch"]]),e("justify-normal",[["justify-content","normal"]]),e("justify-center",[["justify-content","center"]]),e("justify-start",[["justify-content","flex-start"]]),e("justify-end",[["justify-content","flex-end"]]),e("justify-center-safe",[["justify-content","safe center"]]),e("justify-end-safe",[["justify-content","safe flex-end"]]),e("justify-between",[["justify-content","space-between"]]),e("justify-around",[["justify-content","space-around"]]),e("justify-evenly",[["justify-content","space-evenly"]]),e("justify-baseline",[["justify-content","baseline"]]),e("justify-stretch",[["justify-content","stretch"]]),e("justify-items-normal",[["justify-items","normal"]]),e("justify-items-center",[["justify-items","center"]]),e("justify-items-start",[["justify-items","start"]]),e("justify-items-end",[["justify-items","end"]]),e("justify-items-center-safe",[["justify-items","safe center"]]),e("justify-items-end-safe",[["justify-items","safe end"]]),e("justify-items-stretch",[["justify-items","stretch"]]),a("gap",["--gap","--spacing"],o=>[l("gap",o)]),a("gap-x",["--gap","--spacing"],o=>[l("column-gap",o)]),a("gap-y",["--gap","--spacing"],o=>[l("row-gap",o)]),a("space-x",["--space","--spacing"],o=>[L([$("--tw-space-x-reverse","0")]),M(":where(& > :not(:last-child))",[l("--tw-sort","row-gap"),l("--tw-space-x-reverse","0"),l("margin-inline-start",`calc(${o} * var(--tw-space-x-reverse))`),l("margin-inline-end",`calc(${o} * calc(1 - var(--tw-space-x-reverse)))`)])],{supportsNegative:!0}),a("space-y",["--space","--spacing"],o=>[L([$("--tw-space-y-reverse","0")]),M(":where(& > :not(:last-child))",[l("--tw-sort","column-gap"),l("--tw-space-y-reverse","0"),l("margin-block-start",`calc(${o} * var(--tw-space-y-reverse))`),l("margin-block-end",`calc(${o} * calc(1 - var(--tw-space-y-reverse)))`)])],{supportsNegative:!0}),e("space-x-reverse",[()=>L([$("--tw-space-x-reverse","0")]),()=>M(":where(& > :not(:last-child))",[l("--tw-sort","row-gap"),l("--tw-space-x-reverse","1")])]),e("space-y-reverse",[()=>L([$("--tw-space-y-reverse","0")]),()=>M(":where(& > :not(:last-child))",[l("--tw-sort","column-gap"),l("--tw-space-y-reverse","1")])]),e("accent-auto",[["accent-color","auto"]]),s("accent",{themeKeys:["--accent-color","--color"],handle:o=>[l("accent-color",o)]}),s("caret",{themeKeys:["--caret-color","--color"],handle:o=>[l("caret-color",o)]}),s("divide",{themeKeys:["--divide-color","--color"],handle:o=>[M(":where(& > :not(:last-child))",[l("--tw-sort","divide-color"),l("border-color",o)])]}),e("place-self-auto",[["place-self","auto"]]),e("place-self-start",[["place-self","start"]]),e("place-self-end",[["place-self","end"]]),e("place-self-center",[["place-self","center"]]),e("place-self-end-safe",[["place-self","safe end"]]),e("place-self-center-safe",[["place-self","safe center"]]),e("place-self-stretch",[["place-self","stretch"]]),e("self-auto",[["align-self","auto"]]),e("self-start",[["align-self","flex-start"]]),e("self-end",[["align-self","flex-end"]]),e("self-center",[["align-self","center"]]),e("self-end-safe",[["align-self","safe flex-end"]]),e("self-center-safe",[["align-self","safe center"]]),e("self-stretch",[["align-self","stretch"]]),e("self-baseline",[["align-self","baseline"]]),e("self-baseline-last",[["align-self","last baseline"]]),e("justify-self-auto",[["justify-self","auto"]]),e("justify-self-start",[["justify-self","flex-start"]]),e("justify-self-end",[["justify-self","flex-end"]]),e("justify-self-center",[["justify-self","center"]]),e("justify-self-end-safe",[["justify-self","safe flex-end"]]),e("justify-self-center-safe",[["justify-self","safe center"]]),e("justify-self-stretch",[["justify-self","stretch"]]);for(let o of["auto","hidden","clip","visible","scroll"])e(`overflow-${o}`,[["overflow",o]]),e(`overflow-x-${o}`,[["overflow-x",o]]),e(`overflow-y-${o}`,[["overflow-y",o]]);for(let o of["auto","contain","none"])e(`overscroll-${o}`,[["overscroll-behavior",o]]),e(`overscroll-x-${o}`,[["overscroll-behavior-x",o]]),e(`overscroll-y-${o}`,[["overscroll-behavior-y",o]]);e("scroll-auto",[["scroll-behavior","auto"]]),e("scroll-smooth",[["scroll-behavior","smooth"]]),e("truncate",[["overflow","hidden"],["text-overflow","ellipsis"],["white-space","nowrap"]]),e("text-ellipsis",[["text-overflow","ellipsis"]]),e("text-clip",[["text-overflow","clip"]]),e("hyphens-none",[["-webkit-hyphens","none"],["hyphens","none"]]),e("hyphens-manual",[["-webkit-hyphens","manual"],["hyphens","manual"]]),e("hyphens-auto",[["-webkit-hyphens","auto"],["hyphens","auto"]]),e("whitespace-normal",[["white-space","normal"]]),e("whitespace-nowrap",[["white-space","nowrap"]]),e("whitespace-pre",[["white-space","pre"]]),e("whitespace-pre-line",[["white-space","pre-line"]]),e("whitespace-pre-wrap",[["white-space","pre-wrap"]]),e("whitespace-break-spaces",[["white-space","break-spaces"]]),e("text-wrap",[["text-wrap","wrap"]]),e("text-nowrap",[["text-wrap","nowrap"]]),e("text-balance",[["text-wrap","balance"]]),e("text-pretty",[["text-wrap","pretty"]]),e("break-normal",[["overflow-wrap","normal"],["word-break","normal"]]),e("break-words",[["overflow-wrap","break-word"]]),e("break-all",[["word-break","break-all"]]),e("break-keep",[["word-break","keep-all"]]),e("wrap-anywhere",[["overflow-wrap","anywhere"]]),e("wrap-break-word",[["overflow-wrap","break-word"]]),e("wrap-normal",[["overflow-wrap","normal"]]);for(let[o,p]of[["rounded",["border-radius"]],["rounded-s",["border-start-start-radius","border-end-start-radius"]],["rounded-e",["border-start-end-radius","border-end-end-radius"]],["rounded-t",["border-top-left-radius","border-top-right-radius"]],["rounded-r",["border-top-right-radius","border-bottom-right-radius"]],["rounded-b",["border-bottom-right-radius","border-bottom-left-radius"]],["rounded-l",["border-top-left-radius","border-bottom-left-radius"]],["rounded-ss",["border-start-start-radius"]],["rounded-se",["border-start-end-radius"]],["rounded-ee",["border-end-end-radius"]],["rounded-es",["border-end-start-radius"]],["rounded-tl",["border-top-left-radius"]],["rounded-tr",["border-top-right-radius"]],["rounded-br",["border-bottom-right-radius"]],["rounded-bl",["border-bottom-left-radius"]]])e(`${o}-none`,p.map(h=>[h,"0"])),e(`${o}-full`,p.map(h=>[h,"calc(infinity * 1px)"])),n(o,{themeKeys:["--radius"],handle:h=>p.map(A=>l(A,h))});e("border-solid",[["--tw-border-style","solid"],["border-style","solid"]]),e("border-dashed",[["--tw-border-style","dashed"],["border-style","dashed"]]),e("border-dotted",[["--tw-border-style","dotted"],["border-style","dotted"]]),e("border-double",[["--tw-border-style","double"],["border-style","double"]]),e("border-hidden",[["--tw-border-style","hidden"],["border-style","hidden"]]),e("border-none",[["--tw-border-style","none"],["border-style","none"]]);{let p=function(h,A){t.functional(h,y=>{if(!y.value){if(y.modifier)return;let C=r.get(["--default-border-width"])??"1px",O=A.width(C);return O?[o(),...O]:void 0}if(y.value.kind==="arbitrary"){let C=y.value.value;switch(y.value.dataType??J(C,["color","line-width","length"])){case"line-width":case"length":{if(y.modifier)return;let V=A.width(C);return V?[o(),...V]:void 0}default:return C=X(C,y.modifier,r),C===null?void 0:A.color(C)}}{let C=te(y,r,["--border-color","--color"]);if(C)return A.color(C)}{if(y.modifier)return;let C=r.resolve(y.value.value,["--border-width"]);if(C){let O=A.width(C);return O?[o(),...O]:void 0}if(E(y.value.value)){let O=A.width(`${y.value.value}px`);return O?[o(),...O]:void 0}}}),i(h,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--border-color","--color"],modifiers:Array.from({length:21},(y,C)=>`${C*5}`),hasDefaultValue:!0},{values:["0","2","4","8"],valueThemeKeys:["--border-width"]}])};var K=p;let o=()=>L([$("--tw-border-style","solid")]);p("border",{width:h=>[l("border-style","var(--tw-border-style)"),l("border-width",h)],color:h=>[l("border-color",h)]}),p("border-x",{width:h=>[l("border-inline-style","var(--tw-border-style)"),l("border-inline-width",h)],color:h=>[l("border-inline-color",h)]}),p("border-y",{width:h=>[l("border-block-style","var(--tw-border-style)"),l("border-block-width",h)],color:h=>[l("border-block-color",h)]}),p("border-s",{width:h=>[l("border-inline-start-style","var(--tw-border-style)"),l("border-inline-start-width",h)],color:h=>[l("border-inline-start-color",h)]}),p("border-e",{width:h=>[l("border-inline-end-style","var(--tw-border-style)"),l("border-inline-end-width",h)],color:h=>[l("border-inline-end-color",h)]}),p("border-t",{width:h=>[l("border-top-style","var(--tw-border-style)"),l("border-top-width",h)],color:h=>[l("border-top-color",h)]}),p("border-r",{width:h=>[l("border-right-style","var(--tw-border-style)"),l("border-right-width",h)],color:h=>[l("border-right-color",h)]}),p("border-b",{width:h=>[l("border-bottom-style","var(--tw-border-style)"),l("border-bottom-width",h)],color:h=>[l("border-bottom-color",h)]}),p("border-l",{width:h=>[l("border-left-style","var(--tw-border-style)"),l("border-left-width",h)],color:h=>[l("border-left-color",h)]}),n("divide-x",{defaultValue:r.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:h})=>E(h)?`${h}px`:null,handle:h=>[L([$("--tw-divide-x-reverse","0")]),M(":where(& > :not(:last-child))",[l("--tw-sort","divide-x-width"),o(),l("--tw-divide-x-reverse","0"),l("border-inline-style","var(--tw-border-style)"),l("border-inline-start-width",`calc(${h} * var(--tw-divide-x-reverse))`),l("border-inline-end-width",`calc(${h} * calc(1 - var(--tw-divide-x-reverse)))`)])]}),n("divide-y",{defaultValue:r.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:h})=>E(h)?`${h}px`:null,handle:h=>[L([$("--tw-divide-y-reverse","0")]),M(":where(& > :not(:last-child))",[l("--tw-sort","divide-y-width"),o(),l("--tw-divide-y-reverse","0"),l("border-bottom-style","var(--tw-border-style)"),l("border-top-style","var(--tw-border-style)"),l("border-top-width",`calc(${h} * var(--tw-divide-y-reverse))`),l("border-bottom-width",`calc(${h} * calc(1 - var(--tw-divide-y-reverse)))`)])]}),i("divide-x",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),i("divide-y",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),e("divide-x-reverse",[()=>L([$("--tw-divide-x-reverse","0")]),()=>M(":where(& > :not(:last-child))",[l("--tw-divide-x-reverse","1")])]),e("divide-y-reverse",[()=>L([$("--tw-divide-y-reverse","0")]),()=>M(":where(& > :not(:last-child))",[l("--tw-divide-y-reverse","1")])]);for(let h of["solid","dashed","dotted","double","none"])e(`divide-${h}`,[()=>M(":where(& > :not(:last-child))",[l("--tw-sort","divide-style"),l("--tw-border-style",h),l("border-style",h)])])}e("bg-auto",[["background-size","auto"]]),e("bg-cover",[["background-size","cover"]]),e("bg-contain",[["background-size","contain"]]),n("bg-size",{handle(o){if(o)return[l("background-size",o)]}}),e("bg-fixed",[["background-attachment","fixed"]]),e("bg-local",[["background-attachment","local"]]),e("bg-scroll",[["background-attachment","scroll"]]),e("bg-top",[["background-position","top"]]),e("bg-top-left",[["background-position","left top"]]),e("bg-top-right",[["background-position","right top"]]),e("bg-bottom",[["background-position","bottom"]]),e("bg-bottom-left",[["background-position","left bottom"]]),e("bg-bottom-right",[["background-position","right bottom"]]),e("bg-left",[["background-position","left"]]),e("bg-right",[["background-position","right"]]),e("bg-center",[["background-position","center"]]),n("bg-position",{handle(o){if(o)return[l("background-position",o)]}}),e("bg-repeat",[["background-repeat","repeat"]]),e("bg-no-repeat",[["background-repeat","no-repeat"]]),e("bg-repeat-x",[["background-repeat","repeat-x"]]),e("bg-repeat-y",[["background-repeat","repeat-y"]]),e("bg-repeat-round",[["background-repeat","round"]]),e("bg-repeat-space",[["background-repeat","space"]]),e("bg-none",[["background-image","none"]]);{let h=function(C){let O="in oklab";if(C?.kind==="named")switch(C.value){case"longer":case"shorter":case"increasing":case"decreasing":O=`in oklch ${C.value} hue`;break;default:O=`in ${C.value}`}else C?.kind==="arbitrary"&&(O=C.value);return O},A=function({negative:C}){return O=>{if(!O.value)return;if(O.value.kind==="arbitrary"){if(O.modifier)return;let j=O.value.value;switch(O.value.dataType??J(j,["angle"])){case"angle":return j=C?`calc(${j} * -1)`:`${j}`,[l("--tw-gradient-position",j),l("background-image",`linear-gradient(var(--tw-gradient-stops,${j}))`)];default:return C?void 0:[l("--tw-gradient-position",j),l("background-image",`linear-gradient(var(--tw-gradient-stops,${j}))`)]}}let V=O.value.value;if(!C&&p.has(V))V=p.get(V);else if(E(V))V=C?`calc(${V}deg * -1)`:`${V}deg`;else return;let T=h(O.modifier);return[l("--tw-gradient-position",`${V}`),H("@supports (background-image: linear-gradient(in lab, red, red))",[l("--tw-gradient-position",`${V} ${T}`)]),l("background-image","linear-gradient(var(--tw-gradient-stops))")]}},y=function({negative:C}){return O=>{if(O.value?.kind==="arbitrary"){if(O.modifier)return;let j=O.value.value;return[l("--tw-gradient-position",j),l("background-image",`conic-gradient(var(--tw-gradient-stops,${j}))`)]}let V=h(O.modifier);if(!O.value)return[l("--tw-gradient-position",V),l("background-image","conic-gradient(var(--tw-gradient-stops))")];let T=O.value.value;if(E(T))return T=C?`calc(${T}deg * -1)`:`${T}deg`,[l("--tw-gradient-position",`from ${T} ${V}`),l("background-image","conic-gradient(var(--tw-gradient-stops))")]}};var G=h,I=A,W=y;let o=["oklab","oklch","srgb","hsl","longer","shorter","increasing","decreasing"],p=new Map([["to-t","to top"],["to-tr","to top right"],["to-r","to right"],["to-br","to bottom right"],["to-b","to bottom"],["to-bl","to bottom left"],["to-l","to left"],["to-tl","to top left"]]);t.functional("-bg-linear",A({negative:!0})),t.functional("bg-linear",A({negative:!1})),i("bg-linear",()=>[{values:[...p.keys()],modifiers:o},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:o}]),t.functional("-bg-conic",y({negative:!0})),t.functional("bg-conic",y({negative:!1})),i("bg-conic",()=>[{hasDefaultValue:!0,modifiers:o},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:o}]),t.functional("bg-radial",C=>{if(!C.value){let O=h(C.modifier);return[l("--tw-gradient-position",O),l("background-image","radial-gradient(var(--tw-gradient-stops))")]}if(C.value.kind==="arbitrary"){if(C.modifier)return;let O=C.value.value;return[l("--tw-gradient-position",O),l("background-image",`radial-gradient(var(--tw-gradient-stops,${O}))`)]}}),i("bg-radial",()=>[{hasDefaultValue:!0,modifiers:o}])}t.functional("bg",o=>{if(o.value){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??J(p,["image","color","percentage","position","bg-size","length","url"])){case"percentage":case"position":return o.modifier?void 0:[l("background-position",p)];case"bg-size":case"length":case"size":return o.modifier?void 0:[l("background-size",p)];case"image":case"url":return o.modifier?void 0:[l("background-image",p)];default:return p=X(p,o.modifier,r),p===null?void 0:[l("background-color",p)]}}{let p=te(o,r,["--background-color","--color"]);if(p)return[l("background-color",p)]}{if(o.modifier)return;let p=r.resolve(o.value.value,["--background-image"]);if(p)return[l("background-image",p)]}}}),i("bg",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:[],valueThemeKeys:["--background-image"]}]);let v=()=>L([$("--tw-gradient-position"),$("--tw-gradient-from","#0000",""),$("--tw-gradient-via","#0000",""),$("--tw-gradient-to","#0000",""),$("--tw-gradient-stops"),$("--tw-gradient-via-stops"),$("--tw-gradient-from-position","0%",""),$("--tw-gradient-via-position","50%",""),$("--tw-gradient-to-position","100%","")]);function x(o,p){t.functional(o,h=>{if(h.value){if(h.value.kind==="arbitrary"){let A=h.value.value;switch(h.value.dataType??J(A,["color","length","percentage"])){case"length":case"percentage":return h.modifier?void 0:p.position(A);default:return A=X(A,h.modifier,r),A===null?void 0:p.color(A)}}{let A=te(h,r,["--background-color","--color"]);if(A)return p.color(A)}{if(h.modifier)return;let A=r.resolve(h.value.value,["--gradient-color-stop-positions"]);if(A)return p.position(A);if(h.value.value[h.value.value.length-1]==="%"&&E(h.value.value.slice(0,-1)))return p.position(h.value.value)}}}),i(o,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(h,A)=>`${A*5}`)},{values:Array.from({length:21},(h,A)=>`${A*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}])}x("from",{color:o=>[v(),l("--tw-sort","--tw-gradient-from"),l("--tw-gradient-from",o),l("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:o=>[v(),l("--tw-gradient-from-position",o)]}),e("via-none",[["--tw-gradient-via-stops","initial"]]),x("via",{color:o=>[v(),l("--tw-sort","--tw-gradient-via"),l("--tw-gradient-via",o),l("--tw-gradient-via-stops","var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position)"),l("--tw-gradient-stops","var(--tw-gradient-via-stops)")],position:o=>[v(),l("--tw-gradient-via-position",o)]}),x("to",{color:o=>[v(),l("--tw-sort","--tw-gradient-to"),l("--tw-gradient-to",o),l("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:o=>[v(),l("--tw-gradient-to-position",o)]}),e("mask-none",[["mask-image","none"]]),t.functional("mask",o=>{if(!o.value||o.modifier||o.value.kind!=="arbitrary")return;let p=o.value.value;switch(o.value.dataType??J(p,["image","percentage","position","bg-size","length","url"])){case"percentage":case"position":return o.modifier?void 0:[l("mask-position",p)];case"bg-size":case"length":case"size":return[l("mask-size",p)];case"image":case"url":default:return[l("mask-image",p)]}}),e("mask-add",[["mask-composite","add"]]),e("mask-subtract",[["mask-composite","subtract"]]),e("mask-intersect",[["mask-composite","intersect"]]),e("mask-exclude",[["mask-composite","exclude"]]),e("mask-alpha",[["mask-mode","alpha"]]),e("mask-luminance",[["mask-mode","luminance"]]),e("mask-match",[["mask-mode","match-source"]]),e("mask-type-alpha",[["mask-type","alpha"]]),e("mask-type-luminance",[["mask-type","luminance"]]),e("mask-auto",[["mask-size","auto"]]),e("mask-cover",[["mask-size","cover"]]),e("mask-contain",[["mask-size","contain"]]),n("mask-size",{handle(o){if(o)return[l("mask-size",o)]}}),e("mask-top",[["mask-position","top"]]),e("mask-top-left",[["mask-position","left top"]]),e("mask-top-right",[["mask-position","right top"]]),e("mask-bottom",[["mask-position","bottom"]]),e("mask-bottom-left",[["mask-position","left bottom"]]),e("mask-bottom-right",[["mask-position","right bottom"]]),e("mask-left",[["mask-position","left"]]),e("mask-right",[["mask-position","right"]]),e("mask-center",[["mask-position","center"]]),n("mask-position",{handle(o){if(o)return[l("mask-position",o)]}}),e("mask-repeat",[["mask-repeat","repeat"]]),e("mask-no-repeat",[["mask-repeat","no-repeat"]]),e("mask-repeat-x",[["mask-repeat","repeat-x"]]),e("mask-repeat-y",[["mask-repeat","repeat-y"]]),e("mask-repeat-round",[["mask-repeat","round"]]),e("mask-repeat-space",[["mask-repeat","space"]]),e("mask-clip-border",[["mask-clip","border-box"]]),e("mask-clip-padding",[["mask-clip","padding-box"]]),e("mask-clip-content",[["mask-clip","content-box"]]),e("mask-clip-fill",[["mask-clip","fill-box"]]),e("mask-clip-stroke",[["mask-clip","stroke-box"]]),e("mask-clip-view",[["mask-clip","view-box"]]),e("mask-no-clip",[["mask-clip","no-clip"]]),e("mask-origin-border",[["mask-origin","border-box"]]),e("mask-origin-padding",[["mask-origin","padding-box"]]),e("mask-origin-content",[["mask-origin","content-box"]]),e("mask-origin-fill",[["mask-origin","fill-box"]]),e("mask-origin-stroke",[["mask-origin","stroke-box"]]),e("mask-origin-view",[["mask-origin","view-box"]]);let k=()=>L([$("--tw-mask-linear","linear-gradient(#fff, #fff)"),$("--tw-mask-radial","linear-gradient(#fff, #fff)"),$("--tw-mask-conic","linear-gradient(#fff, #fff)")]);function N(o,p){t.functional(o,h=>{if(h.value){if(h.value.kind==="arbitrary"){let A=h.value.value;switch(h.value.dataType??J(A,["length","percentage","color"])){case"color":return A=X(A,h.modifier,r),A===null?void 0:p.color(A);case"percentage":return h.modifier||!E(A.slice(0,-1))?void 0:p.position(A);default:return h.modifier?void 0:p.position(A)}}{let A=te(h,r,["--background-color","--color"]);if(A)return p.color(A)}{if(h.modifier)return;let A=J(h.value.value,["number","percentage"]);if(!A)return;switch(A){case"number":{let y=r.resolve(null,["--spacing"]);return!y||!de(h.value.value)?void 0:p.position(`calc(${y} * ${h.value.value})`)}case"percentage":return E(h.value.value.slice(0,-1))?p.position(h.value.value):void 0;default:return}}}}),i(o,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(h,A)=>`${A*5}`)},{values:Array.from({length:21},(h,A)=>`${A*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}]),i(o,()=>[{values:Array.from({length:21},(h,A)=>`${A*5}%`)},{values:r.get(["--spacing"])?Ze:[]},{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(h,A)=>`${A*5}`)}])}let b=()=>L([$("--tw-mask-left","linear-gradient(#fff, #fff)"),$("--tw-mask-right","linear-gradient(#fff, #fff)"),$("--tw-mask-bottom","linear-gradient(#fff, #fff)"),$("--tw-mask-top","linear-gradient(#fff, #fff)")]);function S(o,p,h){N(o,{color(A){let y=[k(),b(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear","var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top)")];for(let C of["top","right","bottom","left"])h[C]&&(y.push(l(`--tw-mask-${C}`,`linear-gradient(to ${C}, var(--tw-mask-${C}-from-color) var(--tw-mask-${C}-from-position), var(--tw-mask-${C}-to-color) var(--tw-mask-${C}-to-position))`)),y.push(L([$(`--tw-mask-${C}-from-position`,"0%"),$(`--tw-mask-${C}-to-position`,"100%"),$(`--tw-mask-${C}-from-color`,"black"),$(`--tw-mask-${C}-to-color`,"transparent")])),y.push(l(`--tw-mask-${C}-${p}-color`,A)));return y},position(A){let y=[k(),b(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear","var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top)")];for(let C of["top","right","bottom","left"])h[C]&&(y.push(l(`--tw-mask-${C}`,`linear-gradient(to ${C}, var(--tw-mask-${C}-from-color) var(--tw-mask-${C}-from-position), var(--tw-mask-${C}-to-color) var(--tw-mask-${C}-to-position))`)),y.push(L([$(`--tw-mask-${C}-from-position`,"0%"),$(`--tw-mask-${C}-to-position`,"100%"),$(`--tw-mask-${C}-from-color`,"black"),$(`--tw-mask-${C}-to-color`,"transparent")])),y.push(l(`--tw-mask-${C}-${p}-position`,A)));return y}})}S("mask-x-from","from",{top:!1,right:!0,bottom:!1,left:!0}),S("mask-x-to","to",{top:!1,right:!0,bottom:!1,left:!0}),S("mask-y-from","from",{top:!0,right:!1,bottom:!0,left:!1}),S("mask-y-to","to",{top:!0,right:!1,bottom:!0,left:!1}),S("mask-t-from","from",{top:!0,right:!1,bottom:!1,left:!1}),S("mask-t-to","to",{top:!0,right:!1,bottom:!1,left:!1}),S("mask-r-from","from",{top:!1,right:!0,bottom:!1,left:!1}),S("mask-r-to","to",{top:!1,right:!0,bottom:!1,left:!1}),S("mask-b-from","from",{top:!1,right:!1,bottom:!0,left:!1}),S("mask-b-to","to",{top:!1,right:!1,bottom:!0,left:!1}),S("mask-l-from","from",{top:!1,right:!1,bottom:!1,left:!0}),S("mask-l-to","to",{top:!1,right:!1,bottom:!1,left:!0});let P=()=>L([$("--tw-mask-linear-position","0deg"),$("--tw-mask-linear-from-position","0%"),$("--tw-mask-linear-to-position","100%"),$("--tw-mask-linear-from-color","black"),$("--tw-mask-linear-to-color","transparent")]);n("mask-linear",{defaultValue:null,supportsNegative:!0,supportsFractions:!1,handleBareValue(o){return E(o.value)?`calc(1deg * ${o.value})`:null},handleNegativeBareValue(o){return E(o.value)?`calc(1deg * -${o.value})`:null},handle:o=>[k(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops, var(--tw-mask-linear-position)))"),l("--tw-mask-linear-position",o)]}),i("mask-linear",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"]}]),N("mask-linear-from",{color:o=>[k(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),l("--tw-mask-linear-from-color",o)],position:o=>[k(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),l("--tw-mask-linear-from-position",o)]}),N("mask-linear-to",{color:o=>[k(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),l("--tw-mask-linear-to-color",o)],position:o=>[k(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),l("--tw-mask-linear-to-position",o)]});let U=()=>L([$("--tw-mask-radial-from-position","0%"),$("--tw-mask-radial-to-position","100%"),$("--tw-mask-radial-from-color","black"),$("--tw-mask-radial-to-color","transparent"),$("--tw-mask-radial-shape","ellipse"),$("--tw-mask-radial-size","farthest-corner"),$("--tw-mask-radial-position","center")]);e("mask-circle",[["--tw-mask-radial-shape","circle"]]),e("mask-ellipse",[["--tw-mask-radial-shape","ellipse"]]),e("mask-radial-closest-side",[["--tw-mask-radial-size","closest-side"]]),e("mask-radial-farthest-side",[["--tw-mask-radial-size","farthest-side"]]),e("mask-radial-closest-corner",[["--tw-mask-radial-size","closest-corner"]]),e("mask-radial-farthest-corner",[["--tw-mask-radial-size","farthest-corner"]]),e("mask-radial-at-top",[["--tw-mask-radial-position","top"]]),e("mask-radial-at-top-left",[["--tw-mask-radial-position","top left"]]),e("mask-radial-at-top-right",[["--tw-mask-radial-position","top right"]]),e("mask-radial-at-bottom",[["--tw-mask-radial-position","bottom"]]),e("mask-radial-at-bottom-left",[["--tw-mask-radial-position","bottom left"]]),e("mask-radial-at-bottom-right",[["--tw-mask-radial-position","bottom right"]]),e("mask-radial-at-left",[["--tw-mask-radial-position","left"]]),e("mask-radial-at-right",[["--tw-mask-radial-position","right"]]),e("mask-radial-at-center",[["--tw-mask-radial-position","center"]]),n("mask-radial-at",{defaultValue:null,supportsNegative:!1,supportsFractions:!1,handle:o=>[l("--tw-mask-radial-position",o)]}),n("mask-radial",{defaultValue:null,supportsNegative:!1,supportsFractions:!1,handle:o=>[k(),U(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops, var(--tw-mask-radial-size)))"),l("--tw-mask-radial-size",o)]}),N("mask-radial-from",{color:o=>[k(),U(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),l("--tw-mask-radial-from-color",o)],position:o=>[k(),U(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),l("--tw-mask-radial-from-position",o)]}),N("mask-radial-to",{color:o=>[k(),U(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),l("--tw-mask-radial-to-color",o)],position:o=>[k(),U(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),l("--tw-mask-radial-to-position",o)]});let R=()=>L([$("--tw-mask-conic-position","0deg"),$("--tw-mask-conic-from-position","0%"),$("--tw-mask-conic-to-position","100%"),$("--tw-mask-conic-from-color","black"),$("--tw-mask-conic-to-color","transparent")]);n("mask-conic",{defaultValue:null,supportsNegative:!0,supportsFractions:!1,handleBareValue(o){return E(o.value)?`calc(1deg * ${o.value})`:null},handleNegativeBareValue(o){return E(o.value)?`calc(1deg * -${o.value})`:null},handle:o=>[k(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops, var(--tw-mask-conic-position)))"),l("--tw-mask-conic-position",o)]}),i("mask-conic",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"]}]),N("mask-conic-from",{color:o=>[k(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),l("--tw-mask-conic-from-color",o)],position:o=>[k(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),l("--tw-mask-conic-from-position",o)]}),N("mask-conic-to",{color:o=>[k(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),l("--tw-mask-conic-to-color",o)],position:o=>[k(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),l("--tw-mask-conic-to-position",o)]}),e("box-decoration-slice",[["-webkit-box-decoration-break","slice"],["box-decoration-break","slice"]]),e("box-decoration-clone",[["-webkit-box-decoration-break","clone"],["box-decoration-break","clone"]]),e("bg-clip-text",[["background-clip","text"]]),e("bg-clip-border",[["background-clip","border-box"]]),e("bg-clip-padding",[["background-clip","padding-box"]]),e("bg-clip-content",[["background-clip","content-box"]]),e("bg-origin-border",[["background-origin","border-box"]]),e("bg-origin-padding",[["background-origin","padding-box"]]),e("bg-origin-content",[["background-origin","content-box"]]);for(let o of["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"])e(`bg-blend-${o}`,[["background-blend-mode",o]]),e(`mix-blend-${o}`,[["mix-blend-mode",o]]);e("mix-blend-plus-darker",[["mix-blend-mode","plus-darker"]]),e("mix-blend-plus-lighter",[["mix-blend-mode","plus-lighter"]]),e("fill-none",[["fill","none"]]),t.functional("fill",o=>{if(!o.value)return;if(o.value.kind==="arbitrary"){let h=X(o.value.value,o.modifier,r);return h===null?void 0:[l("fill",h)]}let p=te(o,r,["--fill","--color"]);if(p)return[l("fill",p)]}),i("fill",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--fill","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)}]),e("stroke-none",[["stroke","none"]]),t.functional("stroke",o=>{if(o.value){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??J(p,["color","number","length","percentage"])){case"number":case"length":case"percentage":return o.modifier?void 0:[l("stroke-width",p)];default:return p=X(o.value.value,o.modifier,r),p===null?void 0:[l("stroke",p)]}}{let p=te(o,r,["--stroke","--color"]);if(p)return[l("stroke",p)]}{let p=r.resolve(o.value.value,["--stroke-width"]);if(p)return[l("stroke-width",p)];if(E(o.value.value))return[l("stroke-width",o.value.value)]}}}),i("stroke",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--stroke","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:["0","1","2","3"],valueThemeKeys:["--stroke-width"]}]),e("object-contain",[["object-fit","contain"]]),e("object-cover",[["object-fit","cover"]]),e("object-fill",[["object-fit","fill"]]),e("object-none",[["object-fit","none"]]),e("object-scale-down",[["object-fit","scale-down"]]),e("object-top",[["object-position","top"]]),e("object-top-left",[["object-position","left top"]]),e("object-top-right",[["object-position","right top"]]),e("object-bottom",[["object-position","bottom"]]),e("object-bottom-left",[["object-position","left bottom"]]),e("object-bottom-right",[["object-position","right bottom"]]),e("object-left",[["object-position","left"]]),e("object-right",[["object-position","right"]]),e("object-center",[["object-position","center"]]),n("object",{themeKeys:["--object-position"],handle:o=>[l("object-position",o)]});for(let[o,p]of[["p","padding"],["px","padding-inline"],["py","padding-block"],["ps","padding-inline-start"],["pe","padding-inline-end"],["pt","padding-top"],["pr","padding-right"],["pb","padding-bottom"],["pl","padding-left"]])a(o,["--padding","--spacing"],h=>[l(p,h)]);e("text-left",[["text-align","left"]]),e("text-center",[["text-align","center"]]),e("text-right",[["text-align","right"]]),e("text-justify",[["text-align","justify"]]),e("text-start",[["text-align","start"]]),e("text-end",[["text-align","end"]]),a("indent",["--text-indent","--spacing"],o=>[l("text-indent",o)],{supportsNegative:!0}),e("align-baseline",[["vertical-align","baseline"]]),e("align-top",[["vertical-align","top"]]),e("align-middle",[["vertical-align","middle"]]),e("align-bottom",[["vertical-align","bottom"]]),e("align-text-top",[["vertical-align","text-top"]]),e("align-text-bottom",[["vertical-align","text-bottom"]]),e("align-sub",[["vertical-align","sub"]]),e("align-super",[["vertical-align","super"]]),n("align",{themeKeys:[],handle:o=>[l("vertical-align",o)]}),t.functional("font",o=>{if(!(!o.value||o.modifier)){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??J(p,["number","generic-name","family-name"])){case"generic-name":case"family-name":return[l("font-family",p)];default:return[L([$("--tw-font-weight")]),l("--tw-font-weight",p),l("font-weight",p)]}}{let p=r.resolveWith(o.value.value,["--font"],["--font-feature-settings","--font-variation-settings"]);if(p){let[h,A={}]=p;return[l("font-family",h),l("font-feature-settings",A["--font-feature-settings"]),l("font-variation-settings",A["--font-variation-settings"])]}}{let p=r.resolve(o.value.value,["--font-weight"]);if(p)return[L([$("--tw-font-weight")]),l("--tw-font-weight",p),l("font-weight",p)]}}}),i("font",()=>[{values:[],valueThemeKeys:["--font"]},{values:[],valueThemeKeys:["--font-weight"]}]),e("uppercase",[["text-transform","uppercase"]]),e("lowercase",[["text-transform","lowercase"]]),e("capitalize",[["text-transform","capitalize"]]),e("normal-case",[["text-transform","none"]]),e("italic",[["font-style","italic"]]),e("not-italic",[["font-style","normal"]]),e("underline",[["text-decoration-line","underline"]]),e("overline",[["text-decoration-line","overline"]]),e("line-through",[["text-decoration-line","line-through"]]),e("no-underline",[["text-decoration-line","none"]]),e("font-stretch-normal",[["font-stretch","normal"]]),e("font-stretch-ultra-condensed",[["font-stretch","ultra-condensed"]]),e("font-stretch-extra-condensed",[["font-stretch","extra-condensed"]]),e("font-stretch-condensed",[["font-stretch","condensed"]]),e("font-stretch-semi-condensed",[["font-stretch","semi-condensed"]]),e("font-stretch-semi-expanded",[["font-stretch","semi-expanded"]]),e("font-stretch-expanded",[["font-stretch","expanded"]]),e("font-stretch-extra-expanded",[["font-stretch","extra-expanded"]]),e("font-stretch-ultra-expanded",[["font-stretch","ultra-expanded"]]),n("font-stretch",{handleBareValue:({value:o})=>{if(!o.endsWith("%"))return null;let p=Number(o.slice(0,-1));return!E(p)||Number.isNaN(p)||p<50||p>200?null:o},handle:o=>[l("font-stretch",o)]}),i("font-stretch",()=>[{values:["50%","75%","90%","95%","100%","105%","110%","125%","150%","200%"]}]),s("placeholder",{themeKeys:["--background-color","--color"],handle:o=>[M("&::placeholder",[l("--tw-sort","placeholder-color"),l("color",o)])]}),e("decoration-solid",[["text-decoration-style","solid"]]),e("decoration-double",[["text-decoration-style","double"]]),e("decoration-dotted",[["text-decoration-style","dotted"]]),e("decoration-dashed",[["text-decoration-style","dashed"]]),e("decoration-wavy",[["text-decoration-style","wavy"]]),e("decoration-auto",[["text-decoration-thickness","auto"]]),e("decoration-from-font",[["text-decoration-thickness","from-font"]]),t.functional("decoration",o=>{if(o.value){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??J(p,["color","length","percentage"])){case"length":case"percentage":return o.modifier?void 0:[l("text-decoration-thickness",p)];default:return p=X(p,o.modifier,r),p===null?void 0:[l("text-decoration-color",p)]}}{let p=r.resolve(o.value.value,["--text-decoration-thickness"]);if(p)return o.modifier?void 0:[l("text-decoration-thickness",p)];if(E(o.value.value))return o.modifier?void 0:[l("text-decoration-thickness",`${o.value.value}px`)]}{let p=te(o,r,["--text-decoration-color","--color"]);if(p)return[l("text-decoration-color",p)]}}}),i("decoration",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-decoration-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:["0","1","2"],valueThemeKeys:["--text-decoration-thickness"]}]),e("animate-none",[["animation","none"]]),n("animate",{themeKeys:["--animate"],handle:o=>[l("animation",o)]});{let o=["var(--tw-blur,)","var(--tw-brightness,)","var(--tw-contrast,)","var(--tw-grayscale,)","var(--tw-hue-rotate,)","var(--tw-invert,)","var(--tw-saturate,)","var(--tw-sepia,)","var(--tw-drop-shadow,)"].join(" "),p=["var(--tw-backdrop-blur,)","var(--tw-backdrop-brightness,)","var(--tw-backdrop-contrast,)","var(--tw-backdrop-grayscale,)","var(--tw-backdrop-hue-rotate,)","var(--tw-backdrop-invert,)","var(--tw-backdrop-opacity,)","var(--tw-backdrop-saturate,)","var(--tw-backdrop-sepia,)"].join(" "),h=()=>L([$("--tw-blur"),$("--tw-brightness"),$("--tw-contrast"),$("--tw-grayscale"),$("--tw-hue-rotate"),$("--tw-invert"),$("--tw-opacity"),$("--tw-saturate"),$("--tw-sepia"),$("--tw-drop-shadow"),$("--tw-drop-shadow-color"),$("--tw-drop-shadow-alpha","100%",""),$("--tw-drop-shadow-size")]),A=()=>L([$("--tw-backdrop-blur"),$("--tw-backdrop-brightness"),$("--tw-backdrop-contrast"),$("--tw-backdrop-grayscale"),$("--tw-backdrop-hue-rotate"),$("--tw-backdrop-invert"),$("--tw-backdrop-opacity"),$("--tw-backdrop-saturate"),$("--tw-backdrop-sepia")]);t.functional("filter",y=>{if(!y.modifier){if(y.value===null)return[h(),l("filter",o)];if(y.value.kind==="arbitrary")return[l("filter",y.value.value)];switch(y.value.value){case"none":return[l("filter","none")]}}}),t.functional("backdrop-filter",y=>{if(!y.modifier){if(y.value===null)return[A(),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)];if(y.value.kind==="arbitrary")return[l("-webkit-backdrop-filter",y.value.value),l("backdrop-filter",y.value.value)];switch(y.value.value){case"none":return[l("-webkit-backdrop-filter","none"),l("backdrop-filter","none")]}}}),n("blur",{themeKeys:["--blur"],handle:y=>[h(),l("--tw-blur",`blur(${y})`),l("filter",o)]}),e("blur-none",[h,["--tw-blur"," "],["filter",o]]),n("backdrop-blur",{themeKeys:["--backdrop-blur","--blur"],handle:y=>[A(),l("--tw-backdrop-blur",`blur(${y})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),e("backdrop-blur-none",[A,["--tw-backdrop-blur"," "],["-webkit-backdrop-filter",p],["backdrop-filter",p]]),n("brightness",{themeKeys:["--brightness"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,handle:y=>[h(),l("--tw-brightness",`brightness(${y})`),l("filter",o)]}),n("backdrop-brightness",{themeKeys:["--backdrop-brightness","--brightness"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,handle:y=>[A(),l("--tw-backdrop-brightness",`brightness(${y})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--brightness"]}]),i("backdrop-brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--backdrop-brightness","--brightness"]}]),n("contrast",{themeKeys:["--contrast"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,handle:y=>[h(),l("--tw-contrast",`contrast(${y})`),l("filter",o)]}),n("backdrop-contrast",{themeKeys:["--backdrop-contrast","--contrast"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,handle:y=>[A(),l("--tw-backdrop-contrast",`contrast(${y})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--contrast"]}]),i("backdrop-contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--backdrop-contrast","--contrast"]}]),n("grayscale",{themeKeys:["--grayscale"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,defaultValue:"100%",handle:y=>[h(),l("--tw-grayscale",`grayscale(${y})`),l("filter",o)]}),n("backdrop-grayscale",{themeKeys:["--backdrop-grayscale","--grayscale"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,defaultValue:"100%",handle:y=>[A(),l("--tw-backdrop-grayscale",`grayscale(${y})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--grayscale"],hasDefaultValue:!0}]),i("backdrop-grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-grayscale","--grayscale"],hasDefaultValue:!0}]),n("hue-rotate",{supportsNegative:!0,themeKeys:["--hue-rotate"],handleBareValue:({value:y})=>E(y)?`${y}deg`:null,handle:y=>[h(),l("--tw-hue-rotate",`hue-rotate(${y})`),l("filter",o)]}),n("backdrop-hue-rotate",{supportsNegative:!0,themeKeys:["--backdrop-hue-rotate","--hue-rotate"],handleBareValue:({value:y})=>E(y)?`${y}deg`:null,handle:y=>[A(),l("--tw-backdrop-hue-rotate",`hue-rotate(${y})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--hue-rotate"]}]),i("backdrop-hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--backdrop-hue-rotate","--hue-rotate"]}]),n("invert",{themeKeys:["--invert"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,defaultValue:"100%",handle:y=>[h(),l("--tw-invert",`invert(${y})`),l("filter",o)]}),n("backdrop-invert",{themeKeys:["--backdrop-invert","--invert"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,defaultValue:"100%",handle:y=>[A(),l("--tw-backdrop-invert",`invert(${y})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--invert"],hasDefaultValue:!0}]),i("backdrop-invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-invert","--invert"],hasDefaultValue:!0}]),n("saturate",{themeKeys:["--saturate"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,handle:y=>[h(),l("--tw-saturate",`saturate(${y})`),l("filter",o)]}),n("backdrop-saturate",{themeKeys:["--backdrop-saturate","--saturate"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,handle:y=>[A(),l("--tw-backdrop-saturate",`saturate(${y})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--saturate"]}]),i("backdrop-saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--backdrop-saturate","--saturate"]}]),n("sepia",{themeKeys:["--sepia"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,defaultValue:"100%",handle:y=>[h(),l("--tw-sepia",`sepia(${y})`),l("filter",o)]}),n("backdrop-sepia",{themeKeys:["--backdrop-sepia","--sepia"],handleBareValue:({value:y})=>E(y)?`${y}%`:null,defaultValue:"100%",handle:y=>[A(),l("--tw-backdrop-sepia",`sepia(${y})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--sepia"],hasDefaultValue:!0}]),i("backdrop-sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--backdrop-sepia","--sepia"],hasDefaultValue:!0}]),e("drop-shadow-none",[h,["--tw-drop-shadow"," "],["filter",o]]),t.functional("drop-shadow",y=>{let C;if(y.modifier&&(y.modifier.kind==="arbitrary"?C=y.modifier.value:E(y.modifier.value)&&(C=`${y.modifier.value}%`)),!y.value){let O=r.get(["--drop-shadow"]),V=r.resolve(null,["--drop-shadow"]);return O===null||V===null?void 0:[h(),l("--tw-drop-shadow-alpha",C),...Ye("--tw-drop-shadow-size",O,C,T=>`var(--tw-drop-shadow-color, ${T})`),l("--tw-drop-shadow",D(V,",").map(T=>`drop-shadow(${T})`).join(" ")),l("filter",o)]}if(y.value.kind==="arbitrary"){let O=y.value.value;switch(y.value.dataType??J(O,["color"])){case"color":return O=X(O,y.modifier,r),O===null?void 0:[h(),l("--tw-drop-shadow-color",Q(O,"var(--tw-drop-shadow-alpha)")),l("--tw-drop-shadow","var(--tw-drop-shadow-size)")];default:return y.modifier&&!C?void 0:[h(),l("--tw-drop-shadow-alpha",C),...Ye("--tw-drop-shadow-size",O,C,T=>`var(--tw-drop-shadow-color, ${T})`),l("--tw-drop-shadow","var(--tw-drop-shadow-size)"),l("filter",o)]}}{let O=r.get([`--drop-shadow-${y.value.value}`]),V=r.resolve(y.value.value,["--drop-shadow"]);if(O&&V)return y.modifier&&!C?void 0:C?[h(),l("--tw-drop-shadow-alpha",C),...Ye("--tw-drop-shadow-size",O,C,T=>`var(--tw-drop-shadow-color, ${T})`),l("--tw-drop-shadow","var(--tw-drop-shadow-size)"),l("filter",o)]:[h(),l("--tw-drop-shadow-alpha",C),...Ye("--tw-drop-shadow-size",O,C,T=>`var(--tw-drop-shadow-color, ${T})`),l("--tw-drop-shadow",D(V,",").map(T=>`drop-shadow(${T})`).join(" ")),l("filter",o)]}{let O=te(y,r,["--drop-shadow-color","--color"]);if(O)return O==="inherit"?[h(),l("--tw-drop-shadow-color","inherit"),l("--tw-drop-shadow","var(--tw-drop-shadow-size)")]:[h(),l("--tw-drop-shadow-color",Q(O,"var(--tw-drop-shadow-alpha)")),l("--tw-drop-shadow","var(--tw-drop-shadow-size)")]}}),i("drop-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--drop-shadow-color","--color"],modifiers:Array.from({length:21},(y,C)=>`${C*5}`)},{valueThemeKeys:["--drop-shadow"]}]),n("backdrop-opacity",{themeKeys:["--backdrop-opacity","--opacity"],handleBareValue:({value:y})=>Ue(y)?`${y}%`:null,handle:y=>[A(),l("--tw-backdrop-opacity",`opacity(${y})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("backdrop-opacity",()=>[{values:Array.from({length:21},(y,C)=>`${C*5}`),valueThemeKeys:["--backdrop-opacity","--opacity"]}])}{let o=`var(--tw-ease, ${r.resolve(null,["--default-transition-timing-function"])??"ease"})`,p=`var(--tw-duration, ${r.resolve(null,["--default-transition-duration"])??"0s"})`;e("transition-none",[["transition-property","none"]]),e("transition-all",[["transition-property","all"],["transition-timing-function",o],["transition-duration",p]]),e("transition-colors",[["transition-property","color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to"],["transition-timing-function",o],["transition-duration",p]]),e("transition-opacity",[["transition-property","opacity"],["transition-timing-function",o],["transition-duration",p]]),e("transition-shadow",[["transition-property","box-shadow"],["transition-timing-function",o],["transition-duration",p]]),e("transition-transform",[["transition-property","transform, translate, scale, rotate"],["transition-timing-function",o],["transition-duration",p]]),n("transition",{defaultValue:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events",themeKeys:["--transition-property"],handle:h=>[l("transition-property",h),l("transition-timing-function",o),l("transition-duration",p)]}),e("transition-discrete",[["transition-behavior","allow-discrete"]]),e("transition-normal",[["transition-behavior","normal"]]),n("delay",{handleBareValue:({value:h})=>E(h)?`${h}ms`:null,themeKeys:["--transition-delay"],handle:h=>[l("transition-delay",h)]});{let h=()=>L([$("--tw-duration")]);e("duration-initial",[h,["--tw-duration","initial"]]),t.functional("duration",A=>{if(A.modifier||!A.value)return;let y=null;if(A.value.kind==="arbitrary"?y=A.value.value:(y=r.resolve(A.value.fraction??A.value.value,["--transition-duration"]),y===null&&E(A.value.value)&&(y=`${A.value.value}ms`)),y!==null)return[h(),l("--tw-duration",y),l("transition-duration",y)]})}i("delay",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-delay"]}]),i("duration",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-duration"]}])}{let o=()=>L([$("--tw-ease")]);e("ease-initial",[o,["--tw-ease","initial"]]),e("ease-linear",[o,["--tw-ease","linear"],["transition-timing-function","linear"]]),n("ease",{themeKeys:["--ease"],handle:p=>[o(),l("--tw-ease",p),l("transition-timing-function",p)]})}e("will-change-auto",[["will-change","auto"]]),e("will-change-scroll",[["will-change","scroll-position"]]),e("will-change-contents",[["will-change","contents"]]),e("will-change-transform",[["will-change","transform"]]),n("will-change",{themeKeys:[],handle:o=>[l("will-change",o)]}),e("content-none",[["--tw-content","none"],["content","none"]]),n("content",{themeKeys:[],handle:o=>[L([$("--tw-content",'""')]),l("--tw-content",o),l("content","var(--tw-content)")]});{let o="var(--tw-contain-size,) var(--tw-contain-layout,) var(--tw-contain-paint,) var(--tw-contain-style,)",p=()=>L([$("--tw-contain-size"),$("--tw-contain-layout"),$("--tw-contain-paint"),$("--tw-contain-style")]);e("contain-none",[["contain","none"]]),e("contain-content",[["contain","content"]]),e("contain-strict",[["contain","strict"]]),e("contain-size",[p,["--tw-contain-size","size"],["contain",o]]),e("contain-inline-size",[p,["--tw-contain-size","inline-size"],["contain",o]]),e("contain-layout",[p,["--tw-contain-layout","layout"],["contain",o]]),e("contain-paint",[p,["--tw-contain-paint","paint"],["contain",o]]),e("contain-style",[p,["--tw-contain-style","style"],["contain",o]]),n("contain",{themeKeys:[],handle:h=>[l("contain",h)]})}e("forced-color-adjust-none",[["forced-color-adjust","none"]]),e("forced-color-adjust-auto",[["forced-color-adjust","auto"]]),e("leading-none",[()=>L([$("--tw-leading")]),["--tw-leading","1"],["line-height","1"]]),a("leading",["--leading","--spacing"],o=>[L([$("--tw-leading")]),l("--tw-leading",o),l("line-height",o)]),n("tracking",{supportsNegative:!0,themeKeys:["--tracking"],handle:o=>[L([$("--tw-tracking")]),l("--tw-tracking",o),l("letter-spacing",o)]}),e("antialiased",[["-webkit-font-smoothing","antialiased"],["-moz-osx-font-smoothing","grayscale"]]),e("subpixel-antialiased",[["-webkit-font-smoothing","auto"],["-moz-osx-font-smoothing","auto"]]);{let o="var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)",p=()=>L([$("--tw-ordinal"),$("--tw-slashed-zero"),$("--tw-numeric-figure"),$("--tw-numeric-spacing"),$("--tw-numeric-fraction")]);e("normal-nums",[["font-variant-numeric","normal"]]),e("ordinal",[p,["--tw-ordinal","ordinal"],["font-variant-numeric",o]]),e("slashed-zero",[p,["--tw-slashed-zero","slashed-zero"],["font-variant-numeric",o]]),e("lining-nums",[p,["--tw-numeric-figure","lining-nums"],["font-variant-numeric",o]]),e("oldstyle-nums",[p,["--tw-numeric-figure","oldstyle-nums"],["font-variant-numeric",o]]),e("proportional-nums",[p,["--tw-numeric-spacing","proportional-nums"],["font-variant-numeric",o]]),e("tabular-nums",[p,["--tw-numeric-spacing","tabular-nums"],["font-variant-numeric",o]]),e("diagonal-fractions",[p,["--tw-numeric-fraction","diagonal-fractions"],["font-variant-numeric",o]]),e("stacked-fractions",[p,["--tw-numeric-fraction","stacked-fractions"],["font-variant-numeric",o]])}{let o=()=>L([$("--tw-outline-style","solid")]);t.static("outline-hidden",()=>[l("--tw-outline-style","none"),l("outline-style","none"),z("@media","(forced-colors: active)",[l("outline","2px solid transparent"),l("outline-offset","2px")])]),e("outline-none",[["--tw-outline-style","none"],["outline-style","none"]]),e("outline-solid",[["--tw-outline-style","solid"],["outline-style","solid"]]),e("outline-dashed",[["--tw-outline-style","dashed"],["outline-style","dashed"]]),e("outline-dotted",[["--tw-outline-style","dotted"],["outline-style","dotted"]]),e("outline-double",[["--tw-outline-style","double"],["outline-style","double"]]),t.functional("outline",p=>{if(p.value===null){if(p.modifier)return;let h=r.get(["--default-outline-width"])??"1px";return[o(),l("outline-style","var(--tw-outline-style)"),l("outline-width",h)]}if(p.value.kind==="arbitrary"){let h=p.value.value;switch(p.value.dataType??J(h,["color","length","number","percentage"])){case"length":case"number":case"percentage":return p.modifier?void 0:[o(),l("outline-style","var(--tw-outline-style)"),l("outline-width",h)];default:return h=X(h,p.modifier,r),h===null?void 0:[l("outline-color",h)]}}{let h=te(p,r,["--outline-color","--color"]);if(h)return[l("outline-color",h)]}{if(p.modifier)return;let h=r.resolve(p.value.value,["--outline-width"]);if(h)return[o(),l("outline-style","var(--tw-outline-style)"),l("outline-width",h)];if(E(p.value.value))return[o(),l("outline-style","var(--tw-outline-style)"),l("outline-width",`${p.value.value}px`)]}}),i("outline",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--outline-color","--color"],modifiers:Array.from({length:21},(p,h)=>`${h*5}`),hasDefaultValue:!0},{values:["0","1","2","4","8"],valueThemeKeys:["--outline-width"]}]),n("outline-offset",{supportsNegative:!0,themeKeys:["--outline-offset"],handleBareValue:({value:p})=>E(p)?`${p}px`:null,handle:p=>[l("outline-offset",p)]}),i("outline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--outline-offset"]}])}n("opacity",{themeKeys:["--opacity"],handleBareValue:({value:o})=>Ue(o)?`${o}%`:null,handle:o=>[l("opacity",o)]}),i("opacity",()=>[{values:Array.from({length:21},(o,p)=>`${p*5}`),valueThemeKeys:["--opacity"]}]),e("underline-offset-auto",[["text-underline-offset","auto"]]),n("underline-offset",{supportsNegative:!0,themeKeys:["--text-underline-offset"],handleBareValue:({value:o})=>E(o)?`${o}px`:null,handle:o=>[l("text-underline-offset",o)]}),i("underline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--text-underline-offset"]}]),t.functional("text",o=>{if(o.value){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??J(p,["color","length","percentage","absolute-size","relative-size"])){case"size":case"length":case"percentage":case"absolute-size":case"relative-size":{if(o.modifier){let A=o.modifier.kind==="arbitrary"?o.modifier.value:r.resolve(o.modifier.value,["--leading"]);if(!A&&de(o.modifier.value)){let y=r.resolve(null,["--spacing"]);if(!y)return null;A=`calc(${y} * ${o.modifier.value})`}return!A&&o.modifier.value==="none"&&(A="1"),A?[l("font-size",p),l("line-height",A)]:null}return[l("font-size",p)]}default:return p=X(p,o.modifier,r),p===null?void 0:[l("color",p)]}}{let p=te(o,r,["--text-color","--color"]);if(p)return[l("color",p)]}{let p=r.resolveWith(o.value.value,["--text"],["--line-height","--letter-spacing","--font-weight"]);if(p){let[h,A={}]=Array.isArray(p)?p:[p];if(o.modifier){let y=o.modifier.kind==="arbitrary"?o.modifier.value:r.resolve(o.modifier.value,["--leading"]);if(!y&&de(o.modifier.value)){let O=r.resolve(null,["--spacing"]);if(!O)return null;y=`calc(${O} * ${o.modifier.value})`}if(!y&&o.modifier.value==="none"&&(y="1"),!y)return null;let C=[l("font-size",h)];return y&&C.push(l("line-height",y)),C}return typeof A=="string"?[l("font-size",h),l("line-height",A)]:[l("font-size",h),l("line-height",A["--line-height"]?`var(--tw-leading, ${A["--line-height"]})`:void 0),l("letter-spacing",A["--letter-spacing"]?`var(--tw-tracking, ${A["--letter-spacing"]})`:void 0),l("font-weight",A["--font-weight"]?`var(--tw-font-weight, ${A["--font-weight"]})`:void 0)]}}}}),i("text",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:[],valueThemeKeys:["--text"],modifiers:[],modifierThemeKeys:["--leading"]}]);let _=()=>L([$("--tw-text-shadow-color"),$("--tw-text-shadow-alpha","100%","")]);e("text-shadow-initial",[_,["--tw-text-shadow-color","initial"]]),t.functional("text-shadow",o=>{let p;if(o.modifier&&(o.modifier.kind==="arbitrary"?p=o.modifier.value:E(o.modifier.value)&&(p=`${o.modifier.value}%`)),!o.value){let h=r.get(["--text-shadow"]);return h===null?void 0:[_(),l("--tw-text-shadow-alpha",p),...ue("text-shadow",h,p,A=>`var(--tw-text-shadow-color, ${A})`)]}if(o.value.kind==="arbitrary"){let h=o.value.value;switch(o.value.dataType??J(h,["color"])){case"color":return h=X(h,o.modifier,r),h===null?void 0:[_(),l("--tw-text-shadow-color",Q(h,"var(--tw-text-shadow-alpha)"))];default:return[_(),l("--tw-text-shadow-alpha",p),...ue("text-shadow",h,p,y=>`var(--tw-text-shadow-color, ${y})`)]}}switch(o.value.value){case"none":return o.modifier?void 0:[_(),l("text-shadow","none")];case"inherit":return o.modifier?void 0:[_(),l("--tw-text-shadow-color","inherit")]}{let h=r.get([`--text-shadow-${o.value.value}`]);if(h)return[_(),l("--tw-text-shadow-alpha",p),...ue("text-shadow",h,p,A=>`var(--tw-text-shadow-color, ${A})`)]}{let h=te(o,r,["--text-shadow-color","--color"]);if(h)return[_(),l("--tw-text-shadow-color",Q(h,"var(--tw-text-shadow-alpha)"))]}}),i("text-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-shadow-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:["none"]},{valueThemeKeys:["--text-shadow"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`),hasDefaultValue:r.get(["--text-shadow"])!==null}]);{let y=function(V){return`var(--tw-ring-inset,) 0 0 0 calc(${V} + var(--tw-ring-offset-width)) var(--tw-ring-color, ${A})`},C=function(V){return`inset 0 0 0 ${V} var(--tw-inset-ring-color, currentcolor)`};var Z=y,re=C;let o=["var(--tw-inset-shadow)","var(--tw-inset-ring-shadow)","var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow)"].join(", "),p="0 0 #0000",h=()=>L([$("--tw-shadow",p),$("--tw-shadow-color"),$("--tw-shadow-alpha","100%",""),$("--tw-inset-shadow",p),$("--tw-inset-shadow-color"),$("--tw-inset-shadow-alpha","100%",""),$("--tw-ring-color"),$("--tw-ring-shadow",p),$("--tw-inset-ring-color"),$("--tw-inset-ring-shadow",p),$("--tw-ring-inset"),$("--tw-ring-offset-width","0px",""),$("--tw-ring-offset-color","#fff"),$("--tw-ring-offset-shadow",p)]);e("shadow-initial",[h,["--tw-shadow-color","initial"]]),t.functional("shadow",V=>{let T;if(V.modifier&&(V.modifier.kind==="arbitrary"?T=V.modifier.value:E(V.modifier.value)&&(T=`${V.modifier.value}%`)),!V.value){let j=r.get(["--shadow"]);return j===null?void 0:[h(),l("--tw-shadow-alpha",T),...ue("--tw-shadow",j,T,oe=>`var(--tw-shadow-color, ${oe})`),l("box-shadow",o)]}if(V.value.kind==="arbitrary"){let j=V.value.value;switch(V.value.dataType??J(j,["color"])){case"color":return j=X(j,V.modifier,r),j===null?void 0:[h(),l("--tw-shadow-color",Q(j,"var(--tw-shadow-alpha)"))];default:return[h(),l("--tw-shadow-alpha",T),...ue("--tw-shadow",j,T,ot=>`var(--tw-shadow-color, ${ot})`),l("box-shadow",o)]}}switch(V.value.value){case"none":return V.modifier?void 0:[h(),l("--tw-shadow",p),l("box-shadow",o)];case"inherit":return V.modifier?void 0:[h(),l("--tw-shadow-color","inherit")]}{let j=r.get([`--shadow-${V.value.value}`]);if(j)return[h(),l("--tw-shadow-alpha",T),...ue("--tw-shadow",j,T,oe=>`var(--tw-shadow-color, ${oe})`),l("box-shadow",o)]}{let j=te(V,r,["--box-shadow-color","--color"]);if(j)return[h(),l("--tw-shadow-color",Q(j,"var(--tw-shadow-alpha)"))]}}),i("shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(V,T)=>`${T*5}`)},{values:["none"]},{valueThemeKeys:["--shadow"],modifiers:Array.from({length:21},(V,T)=>`${T*5}`),hasDefaultValue:r.get(["--shadow"])!==null}]),e("inset-shadow-initial",[h,["--tw-inset-shadow-color","initial"]]),t.functional("inset-shadow",V=>{let T;if(V.modifier&&(V.modifier.kind==="arbitrary"?T=V.modifier.value:E(V.modifier.value)&&(T=`${V.modifier.value}%`)),!V.value){let j=r.get(["--inset-shadow"]);return j===null?void 0:[h(),l("--tw-inset-shadow-alpha",T),...ue("--tw-inset-shadow",j,T,oe=>`var(--tw-inset-shadow-color, ${oe})`),l("box-shadow",o)]}if(V.value.kind==="arbitrary"){let j=V.value.value;switch(V.value.dataType??J(j,["color"])){case"color":return j=X(j,V.modifier,r),j===null?void 0:[h(),l("--tw-inset-shadow-color",Q(j,"var(--tw-inset-shadow-alpha)"))];default:return[h(),l("--tw-inset-shadow-alpha",T),...ue("--tw-inset-shadow",j,T,ot=>`var(--tw-inset-shadow-color, ${ot})`,"inset "),l("box-shadow",o)]}}switch(V.value.value){case"none":return V.modifier?void 0:[h(),l("--tw-inset-shadow",p),l("box-shadow",o)];case"inherit":return V.modifier?void 0:[h(),l("--tw-inset-shadow-color","inherit")]}{let j=r.get([`--inset-shadow-${V.value.value}`]);if(j)return[h(),l("--tw-inset-shadow-alpha",T),...ue("--tw-inset-shadow",j,T,oe=>`var(--tw-inset-shadow-color, ${oe})`),l("box-shadow",o)]}{let j=te(V,r,["--box-shadow-color","--color"]);if(j)return[h(),l("--tw-inset-shadow-color",Q(j,"var(--tw-inset-shadow-alpha)"))]}}),i("inset-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(V,T)=>`${T*5}`)},{values:["none"]},{valueThemeKeys:["--inset-shadow"],modifiers:Array.from({length:21},(V,T)=>`${T*5}`),hasDefaultValue:r.get(["--inset-shadow"])!==null}]),e("ring-inset",[h,["--tw-ring-inset","inset"]]);let A=r.get(["--default-ring-color"])??"currentcolor";t.functional("ring",V=>{if(!V.value){if(V.modifier)return;let T=r.get(["--default-ring-width"])??"1px";return[h(),l("--tw-ring-shadow",y(T)),l("box-shadow",o)]}if(V.value.kind==="arbitrary"){let T=V.value.value;switch(V.value.dataType??J(T,["color","length"])){case"length":return V.modifier?void 0:[h(),l("--tw-ring-shadow",y(T)),l("box-shadow",o)];default:return T=X(T,V.modifier,r),T===null?void 0:[l("--tw-ring-color",T)]}}{let T=te(V,r,["--ring-color","--color"]);if(T)return[l("--tw-ring-color",T)]}{if(V.modifier)return;let T=r.resolve(V.value.value,["--ring-width"]);if(T===null&&E(V.value.value)&&(T=`${V.value.value}px`),T)return[h(),l("--tw-ring-shadow",y(T)),l("box-shadow",o)]}}),i("ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(V,T)=>`${T*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]),t.functional("inset-ring",V=>{if(!V.value)return V.modifier?void 0:[h(),l("--tw-inset-ring-shadow",C("1px")),l("box-shadow",o)];if(V.value.kind==="arbitrary"){let T=V.value.value;switch(V.value.dataType??J(T,["color","length"])){case"length":return V.modifier?void 0:[h(),l("--tw-inset-ring-shadow",C(T)),l("box-shadow",o)];default:return T=X(T,V.modifier,r),T===null?void 0:[l("--tw-inset-ring-color",T)]}}{let T=te(V,r,["--ring-color","--color"]);if(T)return[l("--tw-inset-ring-color",T)]}{if(V.modifier)return;let T=r.resolve(V.value.value,["--ring-width"]);if(T===null&&E(V.value.value)&&(T=`${V.value.value}px`),T)return[h(),l("--tw-inset-ring-shadow",C(T)),l("box-shadow",o)]}}),i("inset-ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(V,T)=>`${T*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]);let O="var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)";t.functional("ring-offset",V=>{if(V.value){if(V.value.kind==="arbitrary"){let T=V.value.value;switch(V.value.dataType??J(T,["color","length"])){case"length":return V.modifier?void 0:[l("--tw-ring-offset-width",T),l("--tw-ring-offset-shadow",O)];default:return T=X(T,V.modifier,r),T===null?void 0:[l("--tw-ring-offset-color",T)]}}{let T=r.resolve(V.value.value,["--ring-offset-width"]);if(T)return V.modifier?void 0:[l("--tw-ring-offset-width",T),l("--tw-ring-offset-shadow",O)];if(E(V.value.value))return V.modifier?void 0:[l("--tw-ring-offset-width",`${V.value.value}px`),l("--tw-ring-offset-shadow",O)]}{let T=te(V,r,["--ring-offset-color","--color"]);if(T)return[l("--tw-ring-offset-color",T)]}}})}return i("ring-offset",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-offset-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-offset-width"]}]),t.functional("@container",o=>{let p=null;if(o.value===null?p="inline-size":o.value.kind==="arbitrary"?p=o.value.value:o.value.kind==="named"&&o.value.value==="normal"&&(p="normal"),p!==null)return o.modifier?[l("container-type",p),l("container-name",o.modifier.value)]:[l("container-type",p)]}),i("@container",()=>[{values:["normal"],valueThemeKeys:[],hasDefaultValue:!0}]),t}var bt=["number","integer","ratio","percentage"];function ur(r){let t=r.params;return Ci.test(t)?i=>{let e={"--value":{usedSpacingInteger:!1,usedSpacingNumber:!1,themeKeys:new Set,literals:new Set},"--modifier":{usedSpacingInteger:!1,usedSpacingNumber:!1,themeKeys:new Set,literals:new Set}};F(r.nodes,n=>{if(n.kind!=="declaration"||!n.value||!n.value.includes("--value(")&&!n.value.includes("--modifier("))return;let s=q(n.value);ee(s,a=>{if(a.kind!=="function")return;if(a.value==="--spacing"&&!(e["--modifier"].usedSpacingNumber&&e["--value"].usedSpacingNumber))return ee(a.nodes,u=>{if(u.kind!=="function"||u.value!=="--value"&&u.value!=="--modifier")return;let f=u.value;for(let g of u.nodes)if(g.kind==="word"){if(g.value==="integer")e[f].usedSpacingInteger||=!0;else if(g.value==="number"&&(e[f].usedSpacingNumber||=!0,e["--modifier"].usedSpacingNumber&&e["--value"].usedSpacingNumber))return 2}}),0;if(a.value!=="--value"&&a.value!=="--modifier")return;let c=D(Y(a.nodes),",");for(let[u,f]of c.entries())f=f.replace(/\\\*/g,"*"),f=f.replace(/--(.*?)\s--(.*?)/g,"--$1-*--$2"),f=f.replace(/\s+/g,""),f=f.replace(/(-\*){2,}/g,"-*"),f[0]==="-"&&f[1]==="-"&&!f.includes("-*")&&(f+="-*"),c[u]=f;a.nodes=q(c.join(","));for(let u of a.nodes)if(u.kind==="word"&&(u.value[0]==='"'||u.value[0]==="'")&&u.value[0]===u.value[u.value.length-1]){let f=u.value.slice(1,-1);e[a.value].literals.add(f)}else if(u.kind==="word"&&u.value[0]==="-"&&u.value[1]==="-"){let f=u.value.replace(/-\*.*$/g,"");e[a.value].themeKeys.add(f)}else if(u.kind==="word"&&!(u.value[0]==="["&&u.value[u.value.length-1]==="]")&&!bt.includes(u.value)){console.warn(`Unsupported bare value data type: "${u.value}". +Only valid data types are: ${bt.map(x=>`"${x}"`).join(", ")}. +`);let f=u.value,g=structuredClone(a),d="\xB6";ee(g.nodes,(x,{replaceWith:k})=>{x.kind==="word"&&x.value===f&&k({kind:"word",value:d})});let m="^".repeat(Y([u]).length),w=Y([g]).indexOf(d),v=["```css",Y([a])," ".repeat(w)+m,"```"].join(` +`);console.warn(v)}}),n.value=Y(s)}),i.utilities.functional(t.slice(0,-2),n=>{let s=structuredClone(r),a=n.value,c=n.modifier;if(a===null)return;let u=!1,f=!1,g=!1,d=!1,m=new Map,w=!1;if(F([s],(v,{parent:x,replaceWith:k})=>{if(x?.kind!=="rule"&&x?.kind!=="at-rule"||v.kind!=="declaration"||!v.value)return;let N=q(v.value);(ee(N,(S,{replaceWith:P})=>{if(S.kind==="function"){if(S.value==="--value"){u=!0;let U=or(a,S,i);return U?(f=!0,U.ratio?w=!0:m.set(v,x),P(U.nodes),1):(u||=!1,k([]),2)}else if(S.value==="--modifier"){if(c===null)return k([]),2;g=!0;let U=or(c,S,i);return U?(d=!0,P(U.nodes),1):(g||=!1,k([]),2)}}})??0)===0&&(v.value=Y(N))}),u&&!f||g&&!d||w&&d||c&&!w&&!d)return null;if(w)for(let[v,x]of m){let k=x.nodes.indexOf(v);k!==-1&&x.nodes.splice(k,1)}return s.nodes}),i.utilities.suggest(t.slice(0,-2),()=>{let n=[],s=[];for(let[a,{literals:c,usedSpacingNumber:u,usedSpacingInteger:f,themeKeys:g}]of[[n,e["--value"]],[s,e["--modifier"]]]){for(let d of c)a.push(d);if(u)a.push(...Ze);else if(f)for(let d of Ze)E(d)&&a.push(d);for(let d of i.theme.keysInNamespaces(g))a.push(d.replace(ar,(m,w,v)=>`${w}.${v}`))}return[{values:n,modifiers:s}]})}:Ai.test(t)?i=>{i.utilities.static(t,()=>structuredClone(r.nodes))}:null}function or(r,t,i){for(let e of t.nodes){if(r.kind==="named"&&e.kind==="word"&&(e.value[0]==="'"||e.value[0]==='"')&&e.value[e.value.length-1]===e.value[0]&&e.value.slice(1,-1)===r.value)return{nodes:q(r.value)};if(r.kind==="named"&&e.kind==="word"&&e.value[0]==="-"&&e.value[1]==="-"){let n=e.value;if(n.endsWith("-*")){n=n.slice(0,-2);let s=i.theme.resolve(r.value,[n]);if(s)return{nodes:q(s)}}else{let s=n.split("-*");if(s.length<=1)continue;let a=[s.shift()],c=i.theme.resolveWith(r.value,a,s);if(c){let[,u={}]=c;{let f=u[s.pop()];if(f)return{nodes:q(f)}}}}}else if(r.kind==="named"&&e.kind==="word"){if(!bt.includes(e.value))continue;let n=e.value==="ratio"&&"fraction"in r?r.fraction:r.value;if(!n)continue;let s=J(n,[e.value]);if(s===null)continue;if(s==="ratio"){let[a,c]=D(n,"/");if(!E(a)||!E(c))continue}else{if(s==="number"&&!de(n))continue;if(s==="percentage"&&!E(n.slice(0,-1)))continue}return{nodes:q(n),ratio:s==="ratio"}}else if(r.kind==="arbitrary"&&e.kind==="word"&&e.value[0]==="["&&e.value[e.value.length-1]==="]"){let n=e.value.slice(1,-1);if(n==="*")return{nodes:q(r.value)};if("dataType"in r&&r.dataType&&r.dataType!==n)continue;if("dataType"in r&&r.dataType)return{nodes:q(r.value)};if(J(r.value,[n])!==null)return{nodes:q(r.value)}}}}function ue(r,t,i,e,n=""){let s=!1,a=Ee(t,u=>i==null?e(u):u.startsWith("current")?e(Q(u,i)):((u.startsWith("var(")||i.startsWith("var("))&&(s=!0),e(lr(u,i))));function c(u){return n?D(u,",").map(f=>n+f).join(","):u}return s?[l(r,c(Ee(t,e))),H("@supports (color: lab(from red l a b))",[l(r,c(a))])]:[l(r,c(a))]}function Ye(r,t,i,e,n=""){let s=!1,a=D(t,",").map(c=>Ee(c,u=>i==null?e(u):u.startsWith("current")?e(Q(u,i)):((u.startsWith("var(")||i.startsWith("var("))&&(s=!0),e(lr(u,i))))).map(c=>`drop-shadow(${c})`).join(" ");return s?[l(r,n+D(t,",").map(c=>`drop-shadow(${Ee(c,e)})`).join(" ")),H("@supports (color: lab(from red l a b))",[l(r,n+a)])]:[l(r,n+a)]}var kt={"--alpha":$i,"--spacing":Vi,"--theme":Ni,theme:Si};function $i(r,t,i,...e){let[n,s]=D(i,"/").map(a=>a.trim());if(!n||!s)throw new Error(`The --alpha(\u2026) function requires a color and an alpha value, e.g.: \`--alpha(${n||"var(--my-color)"} / ${s||"50%"})\``);if(e.length>0)throw new Error(`The --alpha(\u2026) function only accepts one argument, e.g.: \`--alpha(${n||"var(--my-color)"} / ${s||"50%"})\``);return Q(n,s)}function Vi(r,t,i,...e){if(!i)throw new Error("The --spacing(\u2026) function requires an argument, but received none.");if(e.length>0)throw new Error(`The --spacing(\u2026) function only accepts a single argument, but received ${e.length+1}.`);let n=r.theme.resolve(null,["--spacing"]);if(!n)throw new Error("The --spacing(\u2026) function requires that the `--spacing` theme variable exists, but it was not found.");return`calc(${n} * ${i})`}function Ni(r,t,i,...e){if(!i.startsWith("--"))throw new Error("The --theme(\u2026) function can only be used with CSS variables from your theme.");let n=!1;i.endsWith(" inline")&&(n=!0,i=i.slice(0,-7)),t.kind==="at-rule"&&(n=!0);let s=r.resolveThemeValue(i,n);if(!s){if(e.length>0)return e.join(", ");throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the variable name is correct or provide a fallback value to silence this error.`)}if(e.length===0)return s;let a=e.join(", ");if(a==="initial")return s;if(s==="initial")return a;if(s.startsWith("var(")||s.startsWith("theme(")||s.startsWith("--theme(")){let c=q(s);return Ei(c,a),Y(c)}return s}function Si(r,t,i,...e){i=Ti(i);let n=r.resolveThemeValue(i);if(!n&&e.length>0)return e.join(", ");if(!n)throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the path is correct or provide a fallback value to silence this error.`);return n}var fr=new RegExp(Object.keys(kt).map(r=>`${r}\\(`).join("|"));function xe(r,t){let i=0;return F(r,e=>{if(e.kind==="declaration"&&e.value&&fr.test(e.value)){i|=8,e.value=cr(e.value,e,t);return}e.kind==="at-rule"&&(e.name==="@media"||e.name==="@custom-media"||e.name==="@container"||e.name==="@supports")&&fr.test(e.params)&&(i|=8,e.params=cr(e.params,e,t))}),i}function cr(r,t,i){let e=q(r);return ee(e,(n,{replaceWith:s})=>{if(n.kind==="function"&&n.value in kt){let a=D(Y(n.nodes).trim(),",").map(u=>u.trim()),c=kt[n.value](i,t,...a);return s(q(c))}}),Y(e)}function Ti(r){if(r[0]!=="'"&&r[0]!=='"')return r;let t="",i=r[0];for(let e=1;e{if(i.kind==="function"&&!(i.value!=="var"&&i.value!=="theme"&&i.value!=="--theme"))if(i.nodes.length===1)i.nodes.push({kind:"word",value:`, ${t}`});else{let e=i.nodes[i.nodes.length-1];e.kind==="word"&&e.value==="initial"&&(e.value=t)}})}function Qe(r,t){let i=r.length,e=t.length,n=i=48&&a<=57&&c>=48&&c<=57){let u=s,f=s+1,g=s,d=s+1;for(a=r.charCodeAt(f);a>=48&&a<=57;)a=r.charCodeAt(++f);for(c=t.charCodeAt(d);c>=48&&c<=57;)c=t.charCodeAt(++d);let m=r.slice(u,f),w=t.slice(g,d),v=Number(m)-Number(w);if(v)return v;if(mw)return 1;continue}if(a!==c)return a-c}return r.length-t.length}var Pi=/^\d+\/\d+$/;function pr(r){let t=new B(n=>({name:n,utility:n,fraction:!1,modifiers:[]}));for(let n of r.utilities.keys("static")){let s=t.get(n);s.fraction=!1,s.modifiers=[]}for(let n of r.utilities.keys("functional")){let s=r.utilities.getCompletions(n);for(let a of s)for(let c of a.values){let u=c!==null&&Pi.test(c),f=c===null?n:`${n}-${c}`,g=t.get(f);if(g.utility=n,g.fraction||=u,g.modifiers.push(...a.modifiers),a.supportsNegative){let d=t.get(`-${f}`);d.utility=`-${n}`,d.fraction||=u,d.modifiers.push(...a.modifiers)}}}if(t.size===0)return[];let i=Array.from(t.values());return i.sort((n,s)=>Qe(n.name,s.name)),Ri(i)}function Ri(r){let t=[],i=null,e=new Map,n=new B(()=>[]);for(let a of r){let{utility:c,fraction:u}=a;i||(i={utility:c,items:[]},e.set(c,i)),c!==i.utility&&(t.push(i),i={utility:c,items:[]},e.set(c,i)),u?n.get(c).push(a):i.items.push(a)}i&&t[t.length-1]!==i&&t.push(i);for(let[a,c]of n){let u=e.get(a);u&&u.items.push(...c)}let s=[];for(let a of t)for(let c of a.items)s.push([c.name,{modifiers:c.modifiers}]);return s}function dr(r){let t=[];for(let[e,n]of r.variants.entries()){let c=function({value:u,modifier:f}={}){let g=e;u&&(g+=s?`-${u}`:u),f&&(g+=`/${f}`);let d=r.parseVariant(g);if(!d)return[];let m=M(".__placeholder__",[]);if(Ae(m,d,r.variants)===null)return[];let w=[];return Ge(m.nodes,(v,{path:x})=>{if(v.kind!=="rule"&&v.kind!=="at-rule"||v.nodes.length>0)return;x.sort((b,S)=>{let P=b.kind==="at-rule",U=S.kind==="at-rule";return P&&!U?-1:!P&&U?1:0});let k=x.flatMap(b=>b.kind==="rule"?b.selector==="&"?[]:[b.selector]:b.kind==="at-rule"?[`${b.name} ${b.params}`]:[]),N="";for(let b=k.length-1;b>=0;b--)N=N===""?k[b]:`${k[b]} { ${N} }`;w.push(N)}),w};var i=c;if(n.kind==="arbitrary")continue;let s=e!=="@",a=r.variants.getCompletions(e);switch(n.kind){case"static":{t.push({name:e,values:a,isArbitrary:!1,hasDash:s,selectors:c});break}case"functional":{t.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:c});break}case"compound":{t.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:c});break}}}return t}function mr(r,t){let{astNodes:i,nodeSorting:e}=pe(Array.from(t),r),n=new Map(t.map(a=>[a,null])),s=0n;for(let a of i){let c=e.get(a)?.candidate;c&&n.set(c,n.get(c)??s++)}return t.map(a=>[a,n.get(a)??null])}var Xe=/^@?[a-zA-Z0-9_-]*$/;var xt=class{compareFns=new Map;variants=new Map;completions=new Map;groupOrder=null;lastOrder=0;static(t,i,{compounds:e,order:n}={}){this.set(t,{kind:"static",applyFn:i,compoundsWith:0,compounds:e??2,order:n})}fromAst(t,i){let e=[];F(i,n=>{n.kind==="rule"?e.push(n.selector):n.kind==="at-rule"&&n.name!=="@slot"&&e.push(`${n.name} ${n.params}`)}),this.static(t,n=>{let s=structuredClone(i);At(s,n.nodes),n.nodes=s},{compounds:ye(e)})}functional(t,i,{compounds:e,order:n}={}){this.set(t,{kind:"functional",applyFn:i,compoundsWith:0,compounds:e??2,order:n})}compound(t,i,e,{compounds:n,order:s}={}){this.set(t,{kind:"compound",applyFn:e,compoundsWith:i,compounds:n??2,order:s})}group(t,i){this.groupOrder=this.nextOrder(),i&&this.compareFns.set(this.groupOrder,i),t(),this.groupOrder=null}has(t){return this.variants.has(t)}get(t){return this.variants.get(t)}kind(t){return this.variants.get(t)?.kind}compoundsWith(t,i){let e=this.variants.get(t),n=typeof i=="string"?this.variants.get(i):i.kind==="arbitrary"?{compounds:ye([i.selector])}:this.variants.get(i.root);return!(!e||!n||e.kind!=="compound"||n.compounds===0||e.compoundsWith===0||(e.compoundsWith&n.compounds)===0)}suggest(t,i){this.completions.set(t,i)}getCompletions(t){return this.completions.get(t)?.()??[]}compare(t,i){if(t===i)return 0;if(t===null)return-1;if(i===null)return 1;if(t.kind==="arbitrary"&&i.kind==="arbitrary")return t.selector{m.nodes=g.map(w=>H(w,m.nodes))},{compounds:d})}i("*",[":is(& > *)"],{compounds:0}),i("**",[":is(& *)"],{compounds:0});function e(f,g){return g.map(d=>{d=d.trim();let m=D(d," ");return m[0]==="not"?m.slice(1).join(" "):f==="@container"?m[0][0]==="("?`not ${d}`:m[1]==="not"?`${m[0]} ${m.slice(2).join(" ")}`:`${m[0]} not ${m.slice(1).join(" ")}`:`not ${d}`})}let n=["@media","@supports","@container"];function s(f){for(let g of n){if(g!==f.name)continue;let d=D(f.params,",");return d.length>1?null:(d=e(f.name,d),z(f.name,d.join(", ")))}return null}function a(f){return f.includes("::")?null:`&:not(${D(f,",").map(d=>(d=d.replaceAll("&","*"),d)).join(", ")})`}t.compound("not",3,(f,g)=>{if(g.variant.kind==="arbitrary"&&g.variant.relative||g.modifier)return null;let d=!1;if(F([f],(m,{path:w})=>{if(m.kind!=="rule"&&m.kind!=="at-rule")return 0;if(m.nodes.length>0)return 0;let v=[],x=[];for(let N of w)N.kind==="at-rule"?v.push(N):N.kind==="rule"&&x.push(N);if(v.length>1)return 2;if(x.length>1)return 2;let k=[];for(let N of x){let b=a(N.selector);if(!b)return d=!1,2;k.push(M(b,[]))}for(let N of v){let b=s(N);if(!b)return d=!1,2;k.push(b)}return Object.assign(f,M("&",k)),d=!0,1}),f.kind==="rule"&&f.selector==="&"&&f.nodes.length===1&&Object.assign(f,f.nodes[0]),!d)return null}),t.suggest("not",()=>Array.from(t.keys()).filter(f=>t.compoundsWith("not",f))),t.compound("group",2,(f,g)=>{if(g.variant.kind==="arbitrary"&&g.variant.relative)return null;let d=g.modifier?`:where(.${r.prefix?`${r.prefix}\\:`:""}group\\/${g.modifier.value})`:`:where(.${r.prefix?`${r.prefix}\\:`:""}group)`,m=!1;if(F([f],(w,{path:v})=>{if(w.kind!=="rule")return 0;for(let k of v.slice(0,-1))if(k.kind==="rule")return m=!1,2;let x=w.selector.replaceAll("&",d);D(x,",").length>1&&(x=`:is(${x})`),w.selector=`&:is(${x} *)`,m=!0}),!m)return null}),t.suggest("group",()=>Array.from(t.keys()).filter(f=>t.compoundsWith("group",f))),t.compound("peer",2,(f,g)=>{if(g.variant.kind==="arbitrary"&&g.variant.relative)return null;let d=g.modifier?`:where(.${r.prefix?`${r.prefix}\\:`:""}peer\\/${g.modifier.value})`:`:where(.${r.prefix?`${r.prefix}\\:`:""}peer)`,m=!1;if(F([f],(w,{path:v})=>{if(w.kind!=="rule")return 0;for(let k of v.slice(0,-1))if(k.kind==="rule")return m=!1,2;let x=w.selector.replaceAll("&",d);D(x,",").length>1&&(x=`:is(${x})`),w.selector=`&:is(${x} ~ *)`,m=!0}),!m)return null}),t.suggest("peer",()=>Array.from(t.keys()).filter(f=>t.compoundsWith("peer",f))),i("first-letter",["&::first-letter"]),i("first-line",["&::first-line"]),i("marker",["& *::marker","&::marker","& *::-webkit-details-marker","&::-webkit-details-marker"]),i("selection",["& *::selection","&::selection"]),i("file",["&::file-selector-button"]),i("placeholder",["&::placeholder"]),i("backdrop",["&::backdrop"]),i("details-content",["&::details-content"]);{let f=function(){return L([z("@property","--tw-content",[l("syntax",'"*"'),l("initial-value",'""'),l("inherits","false")])])};var c=f;t.static("before",g=>{g.nodes=[M("&::before",[f(),l("content","var(--tw-content)"),...g.nodes])]},{compounds:0}),t.static("after",g=>{g.nodes=[M("&::after",[f(),l("content","var(--tw-content)"),...g.nodes])]},{compounds:0})}i("first",["&:first-child"]),i("last",["&:last-child"]),i("only",["&:only-child"]),i("odd",["&:nth-child(odd)"]),i("even",["&:nth-child(even)"]),i("first-of-type",["&:first-of-type"]),i("last-of-type",["&:last-of-type"]),i("only-of-type",["&:only-of-type"]),i("visited",["&:visited"]),i("target",["&:target"]),i("open",["&:is([open], :popover-open, :open)"]),i("default",["&:default"]),i("checked",["&:checked"]),i("indeterminate",["&:indeterminate"]),i("placeholder-shown",["&:placeholder-shown"]),i("autofill",["&:autofill"]),i("optional",["&:optional"]),i("required",["&:required"]),i("valid",["&:valid"]),i("invalid",["&:invalid"]),i("user-valid",["&:user-valid"]),i("user-invalid",["&:user-invalid"]),i("in-range",["&:in-range"]),i("out-of-range",["&:out-of-range"]),i("read-only",["&:read-only"]),i("empty",["&:empty"]),i("focus-within",["&:focus-within"]),t.static("hover",f=>{f.nodes=[M("&:hover",[z("@media","(hover: hover)",f.nodes)])]}),i("focus",["&:focus"]),i("focus-visible",["&:focus-visible"]),i("active",["&:active"]),i("enabled",["&:enabled"]),i("disabled",["&:disabled"]),i("inert",["&:is([inert], [inert] *)"]),t.compound("in",2,(f,g)=>{if(g.modifier)return null;let d=!1;if(F([f],(m,{path:w})=>{if(m.kind!=="rule")return 0;for(let v of w.slice(0,-1))if(v.kind==="rule")return d=!1,2;m.selector=`:where(${m.selector.replaceAll("&","*")}) &`,d=!0}),!d)return null}),t.suggest("in",()=>Array.from(t.keys()).filter(f=>t.compoundsWith("in",f))),t.compound("has",2,(f,g)=>{if(g.modifier)return null;let d=!1;if(F([f],(m,{path:w})=>{if(m.kind!=="rule")return 0;for(let v of w.slice(0,-1))if(v.kind==="rule")return d=!1,2;m.selector=`&:has(${m.selector.replaceAll("&","*")})`,d=!0}),!d)return null}),t.suggest("has",()=>Array.from(t.keys()).filter(f=>t.compoundsWith("has",f))),t.functional("aria",(f,g)=>{if(!g.value||g.modifier)return null;g.value.kind==="arbitrary"?f.nodes=[M(`&[aria-${gr(g.value.value)}]`,f.nodes)]:f.nodes=[M(`&[aria-${g.value.value}="true"]`,f.nodes)]}),t.suggest("aria",()=>["busy","checked","disabled","expanded","hidden","pressed","readonly","required","selected"]),t.functional("data",(f,g)=>{if(!g.value||g.modifier)return null;f.nodes=[M(`&[data-${gr(g.value.value)}]`,f.nodes)]}),t.functional("nth",(f,g)=>{if(!g.value||g.modifier||g.value.kind==="named"&&!E(g.value.value))return null;f.nodes=[M(`&:nth-child(${g.value.value})`,f.nodes)]}),t.functional("nth-last",(f,g)=>{if(!g.value||g.modifier||g.value.kind==="named"&&!E(g.value.value))return null;f.nodes=[M(`&:nth-last-child(${g.value.value})`,f.nodes)]}),t.functional("nth-of-type",(f,g)=>{if(!g.value||g.modifier||g.value.kind==="named"&&!E(g.value.value))return null;f.nodes=[M(`&:nth-of-type(${g.value.value})`,f.nodes)]}),t.functional("nth-last-of-type",(f,g)=>{if(!g.value||g.modifier||g.value.kind==="named"&&!E(g.value.value))return null;f.nodes=[M(`&:nth-last-of-type(${g.value.value})`,f.nodes)]}),t.functional("supports",(f,g)=>{if(!g.value||g.modifier)return null;let d=g.value.value;if(d===null)return null;if(/^[\w-]*\s*\(/.test(d)){let m=d.replace(/\b(and|or|not)\b/g," $1 ");f.nodes=[z("@supports",m,f.nodes)];return}d.includes(":")||(d=`${d}: var(--tw)`),(d[0]!=="("||d[d.length-1]!==")")&&(d=`(${d})`),f.nodes=[z("@supports",d,f.nodes)]},{compounds:1}),i("motion-safe",["@media (prefers-reduced-motion: no-preference)"]),i("motion-reduce",["@media (prefers-reduced-motion: reduce)"]),i("contrast-more",["@media (prefers-contrast: more)"]),i("contrast-less",["@media (prefers-contrast: less)"]);{let f=function(g,d,m,w){if(g===d)return 0;let v=w.get(g);if(v===null)return m==="asc"?-1:1;let x=w.get(d);return x===null?m==="asc"?1:-1:we(v,x,m)};var u=f;{let g=r.namespace("--breakpoint"),d=new B(m=>{switch(m.kind){case"static":return r.resolveValue(m.root,["--breakpoint"])??null;case"functional":{if(!m.value||m.modifier)return null;let w=null;return m.value.kind==="arbitrary"?w=m.value.value:m.value.kind==="named"&&(w=r.resolveValue(m.value.value,["--breakpoint"])),!w||w.includes("var(")?null:w}case"arbitrary":case"compound":return null}});t.group(()=>{t.functional("max",(m,w)=>{if(w.modifier)return null;let v=d.get(w);if(v===null)return null;m.nodes=[z("@media",`(width < ${v})`,m.nodes)]},{compounds:1})},(m,w)=>f(m,w,"desc",d)),t.suggest("max",()=>Array.from(g.keys()).filter(m=>m!==null)),t.group(()=>{for(let[m,w]of r.namespace("--breakpoint"))m!==null&&t.static(m,v=>{v.nodes=[z("@media",`(width >= ${w})`,v.nodes)]},{compounds:1});t.functional("min",(m,w)=>{if(w.modifier)return null;let v=d.get(w);if(v===null)return null;m.nodes=[z("@media",`(width >= ${v})`,m.nodes)]},{compounds:1})},(m,w)=>f(m,w,"asc",d)),t.suggest("min",()=>Array.from(g.keys()).filter(m=>m!==null))}{let g=r.namespace("--container"),d=new B(m=>{switch(m.kind){case"functional":{if(m.value===null)return null;let w=null;return m.value.kind==="arbitrary"?w=m.value.value:m.value.kind==="named"&&(w=r.resolveValue(m.value.value,["--container"])),!w||w.includes("var(")?null:w}case"static":case"arbitrary":case"compound":return null}});t.group(()=>{t.functional("@max",(m,w)=>{let v=d.get(w);if(v===null)return null;m.nodes=[z("@container",w.modifier?`${w.modifier.value} (width < ${v})`:`(width < ${v})`,m.nodes)]},{compounds:1})},(m,w)=>f(m,w,"desc",d)),t.suggest("@max",()=>Array.from(g.keys()).filter(m=>m!==null)),t.group(()=>{t.functional("@",(m,w)=>{let v=d.get(w);if(v===null)return null;m.nodes=[z("@container",w.modifier?`${w.modifier.value} (width >= ${v})`:`(width >= ${v})`,m.nodes)]},{compounds:1}),t.functional("@min",(m,w)=>{let v=d.get(w);if(v===null)return null;m.nodes=[z("@container",w.modifier?`${w.modifier.value} (width >= ${v})`:`(width >= ${v})`,m.nodes)]},{compounds:1})},(m,w)=>f(m,w,"asc",d)),t.suggest("@min",()=>Array.from(g.keys()).filter(m=>m!==null)),t.suggest("@",()=>Array.from(g.keys()).filter(m=>m!==null))}}return i("portrait",["@media (orientation: portrait)"]),i("landscape",["@media (orientation: landscape)"]),i("ltr",['&:where(:dir(ltr), [dir="ltr"], [dir="ltr"] *)']),i("rtl",['&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *)']),i("dark",["@media (prefers-color-scheme: dark)"]),i("starting",["@starting-style"]),i("print",["@media print"]),i("forced-colors",["@media (forced-colors: active)"]),i("inverted-colors",["@media (inverted-colors: inverted)"]),i("pointer-none",["@media (pointer: none)"]),i("pointer-coarse",["@media (pointer: coarse)"]),i("pointer-fine",["@media (pointer: fine)"]),i("any-pointer-none",["@media (any-pointer: none)"]),i("any-pointer-coarse",["@media (any-pointer: coarse)"]),i("any-pointer-fine",["@media (any-pointer: fine)"]),i("noscript",["@media (scripting: none)"]),t}function gr(r){if(r.includes("=")){let[t,...i]=D(r,"="),e=i.join("=").trim();if(e[0]==="'"||e[0]==='"')return r;if(e.length>1){let n=e[e.length-1];if(e[e.length-2]===" "&&(n==="i"||n==="I"||n==="s"||n==="S"))return`${t}="${e.slice(0,-2)}" ${n}`}return`${t}="${e}"`}return r}function At(r,t){F(r,(i,{replaceWith:e})=>{if(i.kind==="at-rule"&&i.name==="@slot")e(t);else if(i.kind==="at-rule"&&(i.name==="@keyframes"||i.name==="@property"))return Object.assign(i,L([z(i.name,i.params,i.nodes)])),1})}function vr(r){let t=sr(r),i=hr(r),e=new B(u=>er(u,c)),n=new B(u=>Array.from(Xt(u,c))),s=new B(u=>{let f=wr(u,c);try{xe(f.map(({node:g})=>g),c)}catch{return[]}return f}),a=new B(u=>{for(let f of qe(u))r.markUsedVariable(f)}),c={theme:r,utilities:t,variants:i,invalidCandidates:new Set,important:!1,candidatesToCss(u){let f=[];for(let g of u){let d=!1,{astNodes:m}=pe([g],this,{onInvalidCandidate(){d=!0}});m=ve(m,c,0),m.length===0||d?f.push(null):f.push(ne(m))}return f},getClassOrder(u){return mr(this,u)},getClassList(){return pr(this)},getVariants(){return dr(this)},parseCandidate(u){return n.get(u)},parseVariant(u){return e.get(u)},compileAstNodes(u){return s.get(u)},printCandidate(u){return rr(c,u)},printVariant(u){return He(u)},getVariantOrder(){let u=Array.from(e.values());u.sort((m,w)=>this.variants.compare(m,w));let f=new Map,g,d=0;for(let m of u)m!==null&&(g!==void 0&&this.variants.compare(g,m)!==0&&d++,f.set(m,d),g=m);return f},resolveThemeValue(u,f=!0){let g=u.lastIndexOf("/"),d=null;g!==-1&&(d=u.slice(g+1).trim(),u=u.slice(0,g).trim());let m=r.resolve(null,[u],f?1:0)??void 0;return d&&m?Q(m,d):m},trackUsedVariables(u){a.get(u)}};return c}var Ct=["container-type","pointer-events","visibility","position","inset","inset-inline","inset-block","inset-inline-start","inset-inline-end","top","right","bottom","left","isolation","z-index","order","grid-column","grid-column-start","grid-column-end","grid-row","grid-row-start","grid-row-end","float","clear","--tw-container-component","margin","margin-inline","margin-block","margin-inline-start","margin-inline-end","margin-top","margin-right","margin-bottom","margin-left","box-sizing","display","field-sizing","aspect-ratio","height","max-height","min-height","width","max-width","min-width","flex","flex-shrink","flex-grow","flex-basis","table-layout","caption-side","border-collapse","border-spacing","transform-origin","translate","--tw-translate-x","--tw-translate-y","--tw-translate-z","scale","--tw-scale-x","--tw-scale-y","--tw-scale-z","rotate","--tw-rotate-x","--tw-rotate-y","--tw-rotate-z","--tw-skew-x","--tw-skew-y","transform","animation","cursor","touch-action","--tw-pan-x","--tw-pan-y","--tw-pinch-zoom","resize","scroll-snap-type","--tw-scroll-snap-strictness","scroll-snap-align","scroll-snap-stop","scroll-margin","scroll-margin-inline","scroll-margin-block","scroll-margin-inline-start","scroll-margin-inline-end","scroll-margin-top","scroll-margin-right","scroll-margin-bottom","scroll-margin-left","scroll-padding","scroll-padding-inline","scroll-padding-block","scroll-padding-inline-start","scroll-padding-inline-end","scroll-padding-top","scroll-padding-right","scroll-padding-bottom","scroll-padding-left","list-style-position","list-style-type","list-style-image","appearance","columns","break-before","break-inside","break-after","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-template-columns","grid-template-rows","flex-direction","flex-wrap","place-content","place-items","align-content","align-items","justify-content","justify-items","gap","column-gap","row-gap","--tw-space-x-reverse","--tw-space-y-reverse","divide-x-width","divide-y-width","--tw-divide-y-reverse","divide-style","divide-color","place-self","align-self","justify-self","overflow","overflow-x","overflow-y","overscroll-behavior","overscroll-behavior-x","overscroll-behavior-y","scroll-behavior","border-radius","border-start-radius","border-end-radius","border-top-radius","border-right-radius","border-bottom-radius","border-left-radius","border-start-start-radius","border-start-end-radius","border-end-end-radius","border-end-start-radius","border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius","border-width","border-inline-width","border-block-width","border-inline-start-width","border-inline-end-width","border-top-width","border-right-width","border-bottom-width","border-left-width","border-style","border-inline-style","border-block-style","border-inline-start-style","border-inline-end-style","border-top-style","border-right-style","border-bottom-style","border-left-style","border-color","border-inline-color","border-block-color","border-inline-start-color","border-inline-end-color","border-top-color","border-right-color","border-bottom-color","border-left-color","background-color","background-image","--tw-gradient-position","--tw-gradient-stops","--tw-gradient-via-stops","--tw-gradient-from","--tw-gradient-from-position","--tw-gradient-via","--tw-gradient-via-position","--tw-gradient-to","--tw-gradient-to-position","mask-image","--tw-mask-top","--tw-mask-top-from-color","--tw-mask-top-from-position","--tw-mask-top-to-color","--tw-mask-top-to-position","--tw-mask-right","--tw-mask-right-from-color","--tw-mask-right-from-position","--tw-mask-right-to-color","--tw-mask-right-to-position","--tw-mask-bottom","--tw-mask-bottom-from-color","--tw-mask-bottom-from-position","--tw-mask-bottom-to-color","--tw-mask-bottom-to-position","--tw-mask-left","--tw-mask-left-from-color","--tw-mask-left-from-position","--tw-mask-left-to-color","--tw-mask-left-to-position","--tw-mask-linear","--tw-mask-linear-position","--tw-mask-linear-from-color","--tw-mask-linear-from-position","--tw-mask-linear-to-color","--tw-mask-linear-to-position","--tw-mask-radial","--tw-mask-radial-shape","--tw-mask-radial-size","--tw-mask-radial-position","--tw-mask-radial-from-color","--tw-mask-radial-from-position","--tw-mask-radial-to-color","--tw-mask-radial-to-position","--tw-mask-conic","--tw-mask-conic-position","--tw-mask-conic-from-color","--tw-mask-conic-from-position","--tw-mask-conic-to-color","--tw-mask-conic-to-position","box-decoration-break","background-size","background-attachment","background-clip","background-position","background-repeat","background-origin","mask-composite","mask-mode","mask-type","mask-size","mask-clip","mask-position","mask-repeat","mask-origin","fill","stroke","stroke-width","object-fit","object-position","padding","padding-inline","padding-block","padding-inline-start","padding-inline-end","padding-top","padding-right","padding-bottom","padding-left","text-align","text-indent","vertical-align","font-family","font-size","line-height","font-weight","letter-spacing","text-wrap","overflow-wrap","word-break","text-overflow","hyphens","white-space","color","text-transform","font-style","font-stretch","font-variant-numeric","text-decoration-line","text-decoration-color","text-decoration-style","text-decoration-thickness","text-underline-offset","-webkit-font-smoothing","placeholder-color","caret-color","accent-color","color-scheme","opacity","background-blend-mode","mix-blend-mode","box-shadow","--tw-shadow","--tw-shadow-color","--tw-ring-shadow","--tw-ring-color","--tw-inset-shadow","--tw-inset-shadow-color","--tw-inset-ring-shadow","--tw-inset-ring-color","--tw-ring-offset-width","--tw-ring-offset-color","outline","outline-width","outline-offset","outline-color","--tw-blur","--tw-brightness","--tw-contrast","--tw-drop-shadow","--tw-grayscale","--tw-hue-rotate","--tw-invert","--tw-saturate","--tw-sepia","filter","--tw-backdrop-blur","--tw-backdrop-brightness","--tw-backdrop-contrast","--tw-backdrop-grayscale","--tw-backdrop-hue-rotate","--tw-backdrop-invert","--tw-backdrop-opacity","--tw-backdrop-saturate","--tw-backdrop-sepia","backdrop-filter","transition-property","transition-behavior","transition-delay","transition-duration","transition-timing-function","will-change","contain","content","forced-color-adjust"];function pe(r,t,{onInvalidCandidate:i}={}){let e=new Map,n=[],s=new Map;for(let c of r){if(t.invalidCandidates.has(c)){i?.(c);continue}let u=t.parseCandidate(c);if(u.length===0){i?.(c);continue}s.set(c,u)}let a=t.getVariantOrder();for(let[c,u]of s){let f=!1;for(let g of u){let d=t.compileAstNodes(g);if(d.length!==0){f=!0;for(let{node:m,propertySort:w}of d){let v=0n;for(let x of g.variants)v|=1n<{let f=e.get(c),g=e.get(u);if(f.variants-g.variants!==0n)return Number(f.variants-g.variants);let d=0;for(;d1)return null;for(let u of a.nodes)if(u.kind!=="rule"&&u.kind!=="at-rule"||n(u,t)===null)return null;F(a.nodes,u=>{if((u.kind==="rule"||u.kind==="at-rule")&&u.nodes.length<=0)return u.nodes=r.nodes,1}),r.nodes=a.nodes;return}if(n(r,t)===null)return null}function yr(r){let t=r.options?.types??[];return t.length>1&&t.includes("any")}function Oi(r,t){if(r.kind==="arbitrary"){let a=r.value;return r.modifier&&(a=X(a,r.modifier,t.theme)),a===null?[]:[[l(r.property,a)]]}let i=t.utilities.get(r.root)??[],e=[],n=i.filter(a=>!yr(a));for(let a of n){if(a.kind!==r.kind)continue;let c=a.compileFn(r);if(c!==void 0){if(c===null)return e;e.push(c)}}if(e.length>0)return e;let s=i.filter(a=>yr(a));for(let a of s){if(a.kind!==r.kind)continue;let c=a.compileFn(r);if(c!==void 0){if(c===null)return e;e.push(c)}}return e}function br(r){for(let t of r)t.kind!=="at-root"&&(t.kind==="declaration"?t.important=!0:(t.kind==="rule"||t.kind==="at-rule")&&br(t.nodes))}function Ki(r){let t=new Set,i=0,e=r.slice(),n=!1;for(;e.length>0;){let s=e.shift();if(s.kind==="declaration"){if(s.value===void 0||(i++,n))continue;if(s.property==="--tw-sort"){let c=Ct.indexOf(s.value??"");if(c!==-1){t.add(c),n=!0;continue}}let a=Ct.indexOf(s.property);a!==-1&&t.add(a)}else if(s.kind==="rule"||s.kind==="at-rule")for(let a of s.nodes)e.push(a)}return{order:Array.from(t).sort((s,a)=>s-a),count:i}}function Oe(r,t){let i=0,e=H("&",r),n=new Set,s=new B(()=>new Set),a=new B(()=>new Set);F([e],(d,{parent:m,path:w})=>{if(d.kind==="at-rule"){if(d.name==="@keyframes")return F(d.nodes,v=>{if(v.kind==="at-rule"&&v.name==="@apply")throw new Error("You cannot use `@apply` inside `@keyframes`.")}),1;if(d.name==="@utility"){let v=d.params.replace(/-\*$/,"");a.get(v).add(d),F(d.nodes,x=>{if(!(x.kind!=="at-rule"||x.name!=="@apply")){n.add(d);for(let k of kr(x,t))s.get(d).add(k)}});return}if(d.name==="@apply"){if(m===null)return;i|=1,n.add(m);for(let v of kr(d,t))for(let x of w)x!==d&&n.has(x)&&s.get(x).add(v)}}});let c=new Set,u=[],f=new Set;function g(d,m=[]){if(!c.has(d)){if(f.has(d)){let w=m[(m.indexOf(d)+1)%m.length];throw d.kind==="at-rule"&&d.name==="@utility"&&w.kind==="at-rule"&&w.name==="@utility"&&F(d.nodes,v=>{if(v.kind!=="at-rule"||v.name!=="@apply")return;let x=v.params.split(/\s+/g);for(let k of x)for(let N of t.parseCandidate(k))switch(N.kind){case"arbitrary":break;case"static":case"functional":if(w.params.replace(/-\*$/,"")===N.root)throw new Error(`You cannot \`@apply\` the \`${k}\` utility here because it creates a circular dependency.`);break;default:}}),new Error(`Circular dependency detected: + +${ne([d])} +Relies on: + +${ne([w])}`)}f.add(d);for(let w of s.get(d))for(let v of a.get(w))m.push(d),g(v,m),m.pop();c.add(d),f.delete(d),u.push(d)}}for(let d of n)g(d);for(let d of u)"nodes"in d&&F(d.nodes,(m,{replaceWith:w})=>{if(m.kind!=="at-rule"||m.name!=="@apply")return;let v=m.params.split(/(\s+)/g),x={},k=0;for(let[N,b]of v.entries())N%2===0&&(x[b]=k),k+=b.length;{let N=Object.keys(x),b=pe(N,t,{onInvalidCandidate:R=>{if(t.theme.prefix&&!R.startsWith(t.theme.prefix))throw new Error(`Cannot apply unprefixed utility class \`${R}\`. Did you mean \`${t.theme.prefix}:${R}\`?`);if(t.invalidCandidates.has(R))throw new Error(`Cannot apply utility class \`${R}\` because it has been explicitly disabled: https://tailwindcss.com/docs/detecting-classes-in-source-files#explicitly-excluding-classes`);let _=D(R,":");if(_.length>1){let K=_.pop();if(t.candidatesToCss([K])[0]){let G=t.candidatesToCss(_.map(W=>`${W}:[--tw-variant-check:1]`)),I=_.filter((W,Z)=>G[Z]===null);if(I.length>0){if(I.length===1)throw new Error(`Cannot apply utility class \`${R}\` because the ${I.map(W=>`\`${W}\``)} variant does not exist.`);{let W=new Intl.ListFormat("en",{style:"long",type:"conjunction"});throw new Error(`Cannot apply utility class \`${R}\` because the ${W.format(I.map(Z=>`\`${Z}\``))} variants do not exist.`)}}}}throw t.theme.size===0?new Error(`Cannot apply unknown utility class \`${R}\`. Are you using CSS modules or similar and missing \`@reference\`? https://tailwindcss.com/docs/functions-and-directives#reference-directive`):new Error(`Cannot apply unknown utility class \`${R}\``)}}),S=m.src,P=b.astNodes.map(R=>{let _=b.nodeSorting.get(R)?.candidate,K=_?x[_]:void 0;if(R=structuredClone(R),!S||!_||K===void 0)return F([R],I=>{I.src=S}),R;let G=[S[0],S[1],S[2]];return G[1]+=7+K,G[2]=G[1]+_.length,F([R],I=>{I.src=G}),R}),U=[];for(let R of P)if(R.kind==="rule")for(let _ of R.nodes)U.push(_);else U.push(R);w(U)}});return i}function*kr(r,t){for(let i of r.params.split(/\s+/g))for(let e of t.parseCandidate(i))switch(e.kind){case"arbitrary":break;case"static":case"functional":yield e.root;break;default:}}async function $t(r,t,i,e=0,n=!1){let s=0,a=[];return F(r,(c,{replaceWith:u})=>{if(c.kind==="at-rule"&&(c.name==="@import"||c.name==="@reference")){let f=_i(q(c.params));if(f===null)return;c.name==="@reference"&&(f.media="reference"),s|=2;let{uri:g,layer:d,media:m,supports:w}=f;if(g.startsWith("data:")||g.startsWith("http://")||g.startsWith("https://"))return;let v=le({},[]);return a.push((async()=>{if(e>100)throw new Error(`Exceeded maximum recursion depth while resolving \`${g}\` in \`${t}\`)`);let x=await i(g,t),k=me(x.content,{from:n?x.path:void 0});await $t(k,x.base,i,e+1,n),v.nodes=ji(c,[le({base:x.base},k)],d,m,w)})()),u(v),1}}),a.length>0&&await Promise.all(a),s}function _i(r){let t,i=null,e=null,n=null;for(let s=0;s/g,"1")),e[0]==="opacity"&&(typeof n=="number"||typeof n=="string")){let a=typeof n=="string"?parseFloat(n):n;a>=0&&a<=1&&(n=a*100+"%")}let s=et(e);s&&r.theme.add(`--${s}`,""+n,7)}if(Object.hasOwn(t,"fontFamily")){let e=5;{let n=Ce(t.fontFamily.sans);n&&r.theme.hasDefault("--font-sans")&&(r.theme.add("--default-font-family",n,e),r.theme.add("--default-font-feature-settings",Ce(t.fontFamily.sans,"fontFeatureSettings")??"normal",e),r.theme.add("--default-font-variation-settings",Ce(t.fontFamily.sans,"fontVariationSettings")??"normal",e))}{let n=Ce(t.fontFamily.mono);n&&r.theme.hasDefault("--font-mono")&&(r.theme.add("--default-mono-font-family",n,e),r.theme.add("--default-mono-font-feature-settings",Ce(t.fontFamily.mono,"fontFeatureSettings")??"normal",e),r.theme.add("--default-mono-font-variation-settings",Ce(t.fontFamily.mono,"fontVariationSettings")??"normal",e))}}return t}function Di(r){let t=[];return Ar(r,[],(i,e)=>{if(Ii(i))return t.push([e,i]),1;if(Fi(i)){t.push([e,i[0]]);for(let n of Reflect.ownKeys(i[1]))t.push([[...e,`-${n}`],i[1][n]]);return 1}if(Array.isArray(i)&&i.every(n=>typeof n=="string"))return e[0]==="fontSize"?(t.push([e,i[0]]),i.length>=2&&t.push([[...e,"-line-height"],i[1]])):t.push([e,i.join(", ")]),1}),t}var Ui=/^[a-zA-Z0-9-_%/\.]+$/;function et(r){if(r[0]==="container")return null;r=structuredClone(r),r[0]==="animation"&&(r[0]="animate"),r[0]==="aspectRatio"&&(r[0]="aspect"),r[0]==="borderRadius"&&(r[0]="radius"),r[0]==="boxShadow"&&(r[0]="shadow"),r[0]==="colors"&&(r[0]="color"),r[0]==="containers"&&(r[0]="container"),r[0]==="fontFamily"&&(r[0]="font"),r[0]==="fontSize"&&(r[0]="text"),r[0]==="letterSpacing"&&(r[0]="tracking"),r[0]==="lineHeight"&&(r[0]="leading"),r[0]==="maxWidth"&&(r[0]="container"),r[0]==="screens"&&(r[0]="breakpoint"),r[0]==="transitionTimingFunction"&&(r[0]="ease");for(let t of r)if(!Ui.test(t))return null;return r.map((t,i,e)=>t==="1"&&i!==e.length-1?"":t).map(t=>t.replaceAll(".","_").replace(/([a-z])([A-Z])/g,(i,e,n)=>`${e}-${n.toLowerCase()}`)).filter((t,i)=>t!=="DEFAULT"||i!==r.length-1).join("-")}function Ii(r){return typeof r=="number"||typeof r=="string"}function Fi(r){if(!Array.isArray(r)||r.length!==2||typeof r[0]!="string"&&typeof r[0]!="number"||r[1]===void 0||r[1]===null||typeof r[1]!="object")return!1;for(let t of Reflect.ownKeys(r[1]))if(typeof t!="string"||typeof r[1][t]!="string"&&typeof r[1][t]!="number")return!1;return!0}function Ar(r,t=[],i){for(let e of Reflect.ownKeys(r)){let n=r[e];if(n==null)continue;let s=[...t,e],a=i(n,s)??0;if(a!==1){if(a===2)return 2;if(!(!Array.isArray(n)&&typeof n!="object")&&Ar(n,s,i)===2)return 2}}}function tt(r){let t=[];for(let i of D(r,".")){if(!i.includes("[")){t.push(i);continue}let e=0;for(;;){let n=i.indexOf("[",e),s=i.indexOf("]",n);if(n===-1||s===-1)break;n>e&&t.push(i.slice(e,n)),t.push(i.slice(n+1,s)),e=s+1}e<=i.length-1&&t.push(i.slice(e))}return t}function $e(r){if(Object.prototype.toString.call(r)!=="[object Object]")return!1;let t=Object.getPrototypeOf(r);return t===null||Object.getPrototypeOf(t)===null}function Ke(r,t,i,e=[]){for(let n of t)if(n!=null)for(let s of Reflect.ownKeys(n)){e.push(s);let a=i(r[s],n[s],e);a!==void 0?r[s]=a:!$e(r[s])||!$e(n[s])?r[s]=n[s]:r[s]=Ke({},[r[s],n[s]],i,e),e.pop()}return r}function rt(r,t,i){return function(n,s){let a=n.lastIndexOf("/"),c=null;a!==-1&&(c=n.slice(a+1).trim(),n=n.slice(0,a).trim());let u=(()=>{let f=tt(n),[g,d]=Li(r.theme,f),m=i(Cr(t()??{},f)??null);if(typeof m=="string"&&(m=m.replace("","1")),typeof g!="object")return typeof d!="object"&&d&4?m??g:g;if(m!==null&&typeof m=="object"&&!Array.isArray(m)){let w=Ke({},[m],(v,x)=>x);if(g===null&&Object.hasOwn(m,"__CSS_VALUES__")){let v={};for(let x in m.__CSS_VALUES__)v[x]=m[x],delete w[x];g=v}for(let v in g)v!=="__CSS_VALUES__"&&(m?.__CSS_VALUES__?.[v]&4&&Cr(w,v.split("-"))!==void 0||(w[ge(v)]=g[v]));return w}if(Array.isArray(g)&&Array.isArray(d)&&Array.isArray(m)){let w=g[0],v=g[1];d[0]&4&&(w=m[0]??w);for(let x of Object.keys(v))d[1][x]&4&&(v[x]=m[1][x]??v[x]);return[w,v]}return g??m})();return c&&typeof u=="string"&&(u=Q(u,c)),u??s}}function Li(r,t){if(t.length===1&&t[0].startsWith("--"))return[r.get([t[0]]),r.getOptions(t[0])];let i=et(t),e=new Map,n=new B(()=>new Map),s=r.namespace(`--${i}`);if(s.size===0)return[null,0];let a=new Map;for(let[g,d]of s){if(!g||!g.includes("--")){e.set(g,d),a.set(g,r.getOptions(g?`--${i}-${g}`:`--${i}`));continue}let m=g.indexOf("--"),w=g.slice(0,m),v=g.slice(m+2);v=v.replace(/-([a-z])/g,(x,k)=>k.toUpperCase()),n.get(w===""?null:w).set(v,[d,r.getOptions(`--${i}${g}`)])}let c=r.getOptions(`--${i}`);for(let[g,d]of n){let m=e.get(g);if(typeof m!="string")continue;let w={},v={};for(let[x,[k,N]]of d)w[x]=k,v[x]=N;e.set(g,[m,w]),a.set(g,[c,v])}let u={},f={};for(let[g,d]of e)$r(u,[g??"DEFAULT"],d);for(let[g,d]of a)$r(f,[g??"DEFAULT"],d);return t[t.length-1]==="DEFAULT"?[u?.DEFAULT??null,f.DEFAULT??0]:"DEFAULT"in u&&Object.keys(u).length===1?[u.DEFAULT,f.DEFAULT??0]:(u.__CSS_VALUES__=f,[u,f])}function Cr(r,t){for(let i=0;i0){let m=_e(n);e?e.nodes.push(m):t.push(m),n=""}let u=a,f=a+1;for(;f0){let f=_e(n);u.nodes.push(f),n=""}i.length>0?e=i[i.length-1]:e=null;break}case Hi:case Gi:case Yi:{if(n.length>0){let u=_e(n);e?e.nodes.push(u):t.push(u)}n=String.fromCharCode(c);break}case Pr:{if(n.length>0){let g=_e(n);e?e.nodes.push(g):t.push(g)}n="";let u=a,f=0;for(let g=a+1;g0&&t.push(_e(n)),t}var Dr=/^[a-z@][a-zA-Z0-9/%._-]*$/;function Vt({designSystem:r,ast:t,resolvedConfig:i,featuresRef:e,referenceMode:n}){let s={addBase(a){if(n)return;let c=ae(a);e.current|=xe(c,r),t.push(z("@layer","base",c))},addVariant(a,c){if(!Xe.test(a))throw new Error(`\`addVariant('${a}')\` defines an invalid variant name. Variants should only contain alphanumeric, dashes or underscore characters.`);if(typeof c=="string"){if(c.includes(":merge("))return}else if(Array.isArray(c)){if(c.some(f=>f.includes(":merge(")))return}else if(typeof c=="object"){let f=function(g,d){return Object.entries(g).some(([m,w])=>m.includes(d)||typeof w=="object"&&f(w,d))};var u=f;if(f(c,":merge("))return}typeof c=="string"||Array.isArray(c)?r.variants.static(a,f=>{f.nodes=Ur(c,f.nodes)},{compounds:ye(typeof c=="string"?[c]:c)}):typeof c=="object"&&r.variants.fromAst(a,ae(c))},matchVariant(a,c,u){function f(d,m,w){let v=c(d,{modifier:m?.value??null});return Ur(v,w)}try{let d=c("a",{modifier:null});if(typeof d=="string"&&d.includes(":merge("))return;if(Array.isArray(d)&&d.some(m=>m.includes(":merge(")))return}catch{}let g=Object.keys(u?.values??{});r.variants.group(()=>{r.variants.functional(a,(d,m)=>{if(!m.value){if(u?.values&&"DEFAULT"in u.values){d.nodes=f(u.values.DEFAULT,m.modifier,d.nodes);return}return null}if(m.value.kind==="arbitrary")d.nodes=f(m.value.value,m.modifier,d.nodes);else if(m.value.kind==="named"&&u?.values){let w=u.values[m.value.value];if(typeof w!="string")return;d.nodes=f(w,m.modifier,d.nodes)}})},(d,m)=>{if(d.kind!=="functional"||m.kind!=="functional")return 0;let w=d.value?d.value.value:"DEFAULT",v=m.value?m.value.value:"DEFAULT",x=u?.values?.[w]??w,k=u?.values?.[v]??v;if(u&&typeof u.sort=="function")return u.sort({value:x,modifier:d.modifier?.value??null},{value:k,modifier:m.modifier?.value??null});let N=g.indexOf(w),b=g.indexOf(v);return N=N===-1?g.length:N,b=b===-1?g.length:b,N!==b?N-b:xObject.entries(f));c=c.flatMap(([f,g])=>D(f,",").map(d=>[d.trim(),g]));let u=new B(()=>[]);for(let[f,g]of c){if(f.startsWith("@keyframes ")){n||t.push(H(f,ae(g)));continue}let d=it(f),m=!1;if(je(d,w=>{if(w.kind==="selector"&&w.value[0]==="."&&Dr.test(w.value.slice(1))){let v=w.value;w.value="&";let x=De(d),k=v.slice(1),N=x==="&"?ae(g):[H(x,ae(g))];u.get(k).push(...N),m=!0,w.value=v;return}if(w.kind==="function"&&w.value===":not")return 1}),!m)throw new Error(`\`addUtilities({ '${f}' : \u2026 })\` defines an invalid utility selector. Utilities must be a single class name and start with a lowercase letter, eg. \`.scrollbar-none\`.`)}for(let[f,g]of u)r.theme.prefix&&F(g,d=>{if(d.kind==="rule"){let m=it(d.selector);je(m,w=>{w.kind==="selector"&&w.value[0]==="."&&(w.value=`.${r.theme.prefix}\\:${w.value.slice(1)}`)}),d.selector=De(m)}}),r.utilities.static(f,d=>{let m=structuredClone(g);return Ir(m,f,d.raw),e.current|=Oe(m,r),m})},matchUtilities(a,c){let u=c?.type?Array.isArray(c?.type)?c.type:[c.type]:["any"];for(let[g,d]of Object.entries(a)){let m=function({negative:w}){return v=>{if(v.value?.kind==="arbitrary"&&u.length>0&&!u.includes("any")&&(v.value.dataType&&!u.includes(v.value.dataType)||!v.value.dataType&&!J(v.value.value,u)))return;let x=u.includes("color"),k=null,N=!1;{let P=c?.values??{};x&&(P=Object.assign({inherit:"inherit",transparent:"transparent",current:"currentcolor"},P)),v.value?v.value.kind==="arbitrary"?k=v.value.value:v.value.fraction&&P[v.value.fraction]?(k=P[v.value.fraction],N=!0):P[v.value.value]?k=P[v.value.value]:P.__BARE_VALUE__&&(k=P.__BARE_VALUE__(v.value)??null,N=(v.value.fraction!==null&&k?.includes("/"))??!1):k=P.DEFAULT??null}if(k===null)return;let b;{let P=c?.modifiers??null;v.modifier?P==="any"||v.modifier.kind==="arbitrary"?b=v.modifier.value:P?.[v.modifier.value]?b=P[v.modifier.value]:x&&!Number.isNaN(Number(v.modifier.value))?b=`${v.modifier.value}%`:b=null:b=null}if(v.modifier&&b===null&&!N)return v.value?.kind==="arbitrary"?null:void 0;x&&b!==null&&(k=Q(k,b)),w&&(k=`calc(${k} * -1)`);let S=ae(d(k,{modifier:b}));return Ir(S,g,v.raw),e.current|=Oe(S,r),S}};var f=m;if(!Dr.test(g))throw new Error(`\`matchUtilities({ '${g}' : \u2026 })\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter, eg. \`scrollbar\`.`);c?.supportsNegativeValues&&r.utilities.functional(`-${g}`,m({negative:!0}),{types:u}),r.utilities.functional(g,m({negative:!1}),{types:u}),r.utilities.suggest(g,()=>{let w=c?.values??{},v=new Set(Object.keys(w));v.delete("__BARE_VALUE__"),v.has("DEFAULT")&&(v.delete("DEFAULT"),v.add(null));let x=c?.modifiers??{},k=x==="any"?[]:Object.keys(x);return[{supportsNegative:c?.supportsNegativeValues??!1,values:Array.from(v),modifiers:k}]})}},addComponents(a,c){this.addUtilities(a,c)},matchComponents(a,c){this.matchUtilities(a,c)},theme:rt(r,()=>i.theme??{},a=>a),prefix(a){return a},config(a,c){let u=i;if(!a)return u;let f=tt(a);for(let g=0;gObject.entries(e));for(let[e,n]of i)if(typeof n!="object"){if(!e.startsWith("--")){if(n==="@slot"){t.push(H(e,[z("@slot")]));continue}e=e.replace(/([A-Z])/g,"-$1").toLowerCase()}t.push(l(e,String(n)))}else if(Array.isArray(n))for(let s of n)typeof s=="string"?t.push(l(e,s)):t.push(H(e,ae(s)));else n!==null&&t.push(H(e,ae(n)));return t}function Ur(r,t){return(typeof r=="string"?[r]:r).flatMap(e=>{if(e.trim().endsWith("}")){let n=e.replace("}","{@slot}}"),s=me(n);return At(s,t),s}else return H(e,t)})}function Ir(r,t,i){F(r,e=>{if(e.kind==="rule"){let n=it(e.selector);je(n,s=>{s.kind==="selector"&&s.value===`.${t}`&&(s.value=`.${fe(i)}`)}),e.selector=De(n)}})}function Fr(r,t,i){for(let e of Xi(t))r.theme.addKeyframes(e)}function Xi(r){let t=[];if("keyframes"in r.theme)for(let[i,e]of Object.entries(r.theme.keyframes))t.push(z("@keyframes",i,ae(e)));return t}function Lr(r){return{theme:{...Pt,colors:({theme:t})=>t("color",{}),extend:{fontSize:({theme:t})=>({...t("text",{})}),boxShadow:({theme:t})=>({...t("shadow",{})}),animation:({theme:t})=>({...t("animate",{})}),aspectRatio:({theme:t})=>({...t("aspect",{})}),borderRadius:({theme:t})=>({...t("radius",{})}),screens:({theme:t})=>({...t("breakpoint",{})}),letterSpacing:({theme:t})=>({...t("tracking",{})}),lineHeight:({theme:t})=>({...t("leading",{})}),transitionDuration:{DEFAULT:r.get(["--default-transition-duration"])??null},transitionTimingFunction:{DEFAULT:r.get(["--default-transition-timing-function"])??null},maxWidth:({theme:t})=>({...t("container",{})})}}}}var en={blocklist:[],future:{},prefix:"",important:!1,darkMode:null,theme:{},plugins:[],content:{files:[]}};function St(r,t){let i={design:r,configs:[],plugins:[],content:{files:[]},theme:{},extend:{},result:structuredClone(en)};for(let n of t)Nt(i,n);for(let n of i.configs)"darkMode"in n&&n.darkMode!==void 0&&(i.result.darkMode=n.darkMode??null),"prefix"in n&&n.prefix!==void 0&&(i.result.prefix=n.prefix??""),"blocklist"in n&&n.blocklist!==void 0&&(i.result.blocklist=n.blocklist??[]),"important"in n&&n.important!==void 0&&(i.result.important=n.important??!1);let e=rn(i);return{resolvedConfig:{...i.result,content:i.content,theme:i.theme,plugins:i.plugins},replacedThemeKeys:e}}function tn(r,t){if(Array.isArray(r)&&$e(r[0]))return r.concat(t);if(Array.isArray(t)&&$e(t[0])&&$e(r))return[r,...t];if(Array.isArray(t))return t}function Nt(r,{config:t,base:i,path:e,reference:n}){let s=[];for(let u of t.plugins??[])"__isOptionsFunction"in u?s.push({...u(),reference:n}):"handler"in u?s.push({...u,reference:n}):s.push({handler:u,reference:n});if(Array.isArray(t.presets)&&t.presets.length===0)throw new Error("Error in the config file/plugin/preset. An empty preset (`preset: []`) is not currently supported.");for(let u of t.presets??[])Nt(r,{path:e,base:i,config:u,reference:n});for(let u of s)r.plugins.push(u),u.config&&Nt(r,{path:e,base:i,config:u.config,reference:!!u.reference});let a=t.content??[],c=Array.isArray(a)?a:a.files;for(let u of c)r.content.files.push(typeof u=="object"?u:{base:i,pattern:u});r.configs.push(t)}function rn(r){let t=new Set,i=rt(r.design,()=>r.theme,n),e=Object.assign(i,{theme:i,colors:Et});function n(s){return typeof s=="function"?s(e)??null:s??null}for(let s of r.configs){let a=s.theme??{},c=a.extend??{};for(let u in a)u!=="extend"&&t.add(u);Object.assign(r.theme,a);for(let u in c)r.extend[u]??=[],r.extend[u].push(c[u])}delete r.theme.extend;for(let s in r.extend){let a=[r.theme[s],...r.extend[s]];r.theme[s]=()=>{let c=a.map(n);return Ke({},c,tn)}}for(let s in r.theme)r.theme[s]=n(r.theme[s]);if(r.theme.screens&&typeof r.theme.screens=="object")for(let s of Object.keys(r.theme.screens)){let a=r.theme.screens[s];a&&typeof a=="object"&&("raw"in a||"max"in a||"min"in a&&(r.theme.screens[s]=a.min))}return t}function zr(r,t){let i=r.theme.container||{};if(typeof i!="object"||i===null)return;let e=nn(i,t);e.length!==0&&t.utilities.static("container",()=>structuredClone(e))}function nn({center:r,padding:t,screens:i},e){let n=[],s=null;if(r&&n.push(l("margin-inline","auto")),(typeof t=="string"||typeof t=="object"&&t!==null&&"DEFAULT"in t)&&n.push(l("padding-inline",typeof t=="string"?t:t.DEFAULT)),typeof i=="object"&&i!==null){s=new Map;let a=Array.from(e.theme.namespace("--breakpoint").entries());if(a.sort((c,u)=>we(c[1],u[1],"asc")),a.length>0){let[c]=a[0];n.push(z("@media",`(width >= --theme(--breakpoint-${c}))`,[l("max-width","none")]))}for(let[c,u]of Object.entries(i)){if(typeof u=="object")if("min"in u)u=u.min;else continue;s.set(c,z("@media",`(width >= ${u})`,[l("max-width",u)]))}}if(typeof t=="object"&&t!==null){let a=Object.entries(t).filter(([c])=>c!=="DEFAULT").map(([c,u])=>[c,e.theme.resolveValue(c,["--breakpoint"]),u]).filter(Boolean);a.sort((c,u)=>we(c[1],u[1],"asc"));for(let[c,,u]of a)if(s&&s.has(c))s.get(c).nodes.push(l("padding-inline",u));else{if(s)continue;n.push(z("@media",`(width >= theme(--breakpoint-${c}))`,[l("padding-inline",u)]))}}if(s)for(let[,a]of s)n.push(a);return n}function Mr({addVariant:r,config:t}){let i=t("darkMode",null),[e,n=".dark"]=Array.isArray(i)?i:[i];if(e==="variant"){let s;if(Array.isArray(n)||typeof n=="function"?s=n:typeof n=="string"&&(s=[n]),Array.isArray(s))for(let a of s)a===".dark"?(e=!1,console.warn('When using `variant` for `darkMode`, you must provide a selector.\nExample: `darkMode: ["variant", ".your-selector &"]`')):a.includes("&")||(e=!1,console.warn('When using `variant` for `darkMode`, your selector must contain `&`.\nExample `darkMode: ["variant", ".your-selector &"]`'));n=s}e===null||(e==="selector"?r("dark",`&:where(${n}, ${n} *)`):e==="media"?r("dark","@media (prefers-color-scheme: dark)"):e==="variant"?r("dark",n):e==="class"&&r("dark",`&:is(${n} *)`))}function Wr(r){for(let[t,i]of[["t","top"],["tr","top right"],["r","right"],["br","bottom right"],["b","bottom"],["bl","bottom left"],["l","left"],["tl","top left"]])r.utilities.static(`bg-gradient-to-${t}`,()=>[l("--tw-gradient-position",`to ${i} in oklab`),l("background-image","linear-gradient(var(--tw-gradient-stops))")]);r.utilities.static("bg-left-top",()=>[l("background-position","left top")]),r.utilities.static("bg-right-top",()=>[l("background-position","right top")]),r.utilities.static("bg-left-bottom",()=>[l("background-position","left bottom")]),r.utilities.static("bg-right-bottom",()=>[l("background-position","right bottom")]),r.utilities.static("object-left-top",()=>[l("object-position","left top")]),r.utilities.static("object-right-top",()=>[l("object-position","right top")]),r.utilities.static("object-left-bottom",()=>[l("object-position","left bottom")]),r.utilities.static("object-right-bottom",()=>[l("object-position","right bottom")]),r.utilities.functional("max-w-screen",t=>{if(!t.value||t.value.kind==="arbitrary")return;let i=r.theme.resolve(t.value.value,["--breakpoint"]);if(i)return[l("max-width",i)]}),r.utilities.static("overflow-ellipsis",()=>[l("text-overflow","ellipsis")]),r.utilities.static("decoration-slice",()=>[l("-webkit-box-decoration-break","slice"),l("box-decoration-break","slice")]),r.utilities.static("decoration-clone",()=>[l("-webkit-box-decoration-break","clone"),l("box-decoration-break","clone")]),r.utilities.functional("flex-shrink",t=>{if(!t.modifier){if(!t.value)return[l("flex-shrink","1")];if(t.value.kind==="arbitrary")return[l("flex-shrink",t.value.value)];if(E(t.value.value))return[l("flex-shrink",t.value.value)]}}),r.utilities.functional("flex-grow",t=>{if(!t.modifier){if(!t.value)return[l("flex-grow","1")];if(t.value.kind==="arbitrary")return[l("flex-grow",t.value.value)];if(E(t.value.value))return[l("flex-grow",t.value.value)]}}),r.utilities.static("order-none",()=>[l("order","0")])}function Br(r,t){let i=r.theme.screens||{},e=t.variants.get("min")?.order??0,n=[];for(let[a,c]of Object.entries(i)){let m=function(w){t.variants.static(a,v=>{v.nodes=[z("@media",d,v.nodes)]},{order:w})};var s=m;let u=t.variants.get(a),f=t.theme.resolveValue(a,["--breakpoint"]);if(u&&f&&!t.theme.hasDefault(`--breakpoint-${a}`))continue;let g=!0;typeof c=="string"&&(g=!1);let d=on(c);g?n.push(m):m(e)}if(n.length!==0){for(let[,a]of t.variants.variants)a.order>e&&(a.order+=n.length);t.variants.compareFns=new Map(Array.from(t.variants.compareFns).map(([a,c])=>(a>e&&(a+=n.length),[a,c])));for(let[a,c]of n.entries())c(e+a+1)}}function on(r){return(Array.isArray(r)?r:[r]).map(i=>typeof i=="string"?{min:i}:i&&typeof i=="object"?i:null).map(i=>{if(i===null)return null;if("raw"in i)return i.raw;let e="";return i.max!==void 0&&(e+=`${i.max} >= `),e+="width",i.min!==void 0&&(e+=` >= ${i.min}`),`(${e})`}).filter(Boolean).join(", ")}function qr(r,t){let i=r.theme.aria||{},e=r.theme.supports||{},n=r.theme.data||{};if(Object.keys(i).length>0){let s=t.variants.get("aria"),a=s?.applyFn,c=s?.compounds;t.variants.functional("aria",(u,f)=>{let g=f.value;return g&&g.kind==="named"&&g.value in i?a?.(u,{...f,value:{kind:"arbitrary",value:i[g.value]}}):a?.(u,f)},{compounds:c})}if(Object.keys(e).length>0){let s=t.variants.get("supports"),a=s?.applyFn,c=s?.compounds;t.variants.functional("supports",(u,f)=>{let g=f.value;return g&&g.kind==="named"&&g.value in e?a?.(u,{...f,value:{kind:"arbitrary",value:e[g.value]}}):a?.(u,f)},{compounds:c})}if(Object.keys(n).length>0){let s=t.variants.get("data"),a=s?.applyFn,c=s?.compounds;t.variants.functional("data",(u,f)=>{let g=f.value;return g&&g.kind==="named"&&g.value in n?a?.(u,{...f,value:{kind:"arbitrary",value:n[g.value]}}):a?.(u,f)},{compounds:c})}}var ln=/^[a-z]+$/;async function Jr({designSystem:r,base:t,ast:i,loadModule:e,sources:n}){let s=0,a=[],c=[];F(i,(d,{parent:m,replaceWith:w,context:v})=>{if(d.kind==="at-rule"){if(d.name==="@plugin"){if(m!==null)throw new Error("`@plugin` cannot be nested.");let x=d.params.slice(1,-1);if(x.length===0)throw new Error("`@plugin` must have a path.");let k={};for(let N of d.nodes??[]){if(N.kind!=="declaration")throw new Error(`Unexpected \`@plugin\` option: + +${ne([N])} + +\`@plugin\` options must be a flat list of declarations.`);if(N.value===void 0)continue;let b=N.value,S=D(b,",").map(P=>{if(P=P.trim(),P==="null")return null;if(P==="true")return!0;if(P==="false")return!1;if(Number.isNaN(Number(P))){if(P[0]==='"'&&P[P.length-1]==='"'||P[0]==="'"&&P[P.length-1]==="'")return P.slice(1,-1);if(P[0]==="{"&&P[P.length-1]==="}")throw new Error(`Unexpected \`@plugin\` option: Value of declaration \`${ne([N]).trim()}\` is not supported. + +Using an object as a plugin option is currently only supported in JavaScript configuration files.`)}else return Number(P);return P});k[N.property]=S.length===1?S[0]:S}a.push([{id:x,base:v.base,reference:!!v.reference},Object.keys(k).length>0?k:null]),w([]),s|=4;return}if(d.name==="@config"){if(d.nodes.length>0)throw new Error("`@config` cannot have a body.");if(m!==null)throw new Error("`@config` cannot be nested.");c.push({id:d.params.slice(1,-1),base:v.base,reference:!!v.reference}),w([]),s|=4;return}}}),Wr(r);let u=r.resolveThemeValue;if(r.resolveThemeValue=function(m,w){return m.startsWith("--")?u(m,w):(s|=Gr({designSystem:r,base:t,ast:i,sources:n,configs:[],pluginDetails:[]}),r.resolveThemeValue(m,w))},!a.length&&!c.length)return 0;let[f,g]=await Promise.all([Promise.all(c.map(async({id:d,base:m,reference:w})=>{let v=await e(d,m,"config");return{path:d,base:v.base,config:v.module,reference:w}})),Promise.all(a.map(async([{id:d,base:m,reference:w},v])=>{let x=await e(d,m,"plugin");return{path:d,base:x.base,plugin:x.module,options:v,reference:w}}))]);return s|=Gr({designSystem:r,base:t,ast:i,sources:n,configs:f,pluginDetails:g}),s}function Gr({designSystem:r,base:t,ast:i,sources:e,configs:n,pluginDetails:s}){let a=0,u=[...s.map(k=>{if(!k.options)return{config:{plugins:[k.plugin]},base:k.base,reference:k.reference};if("__isOptionsFunction"in k.plugin)return{config:{plugins:[k.plugin(k.options)]},base:k.base,reference:k.reference};throw new Error(`The plugin "${k.path}" does not accept options`)}),...n],{resolvedConfig:f}=St(r,[{config:Lr(r.theme),base:t,reference:!0},...u,{config:{plugins:[Mr]},base:t,reference:!0}]),{resolvedConfig:g,replacedThemeKeys:d}=St(r,u),m=r.resolveThemeValue;r.resolveThemeValue=function(N,b){if(N[0]==="-"&&N[1]==="-")return m(N,b);let S=v.theme(N,void 0);if(Array.isArray(S)&&S.length===2)return S[0];if(Array.isArray(S))return S.join(", ");if(typeof S=="string")return S};let w={designSystem:r,ast:i,resolvedConfig:f,featuresRef:{set current(k){a|=k}}},v=Vt({...w,referenceMode:!1}),x;for(let{handler:k,reference:N}of f.plugins)N?(x||=Vt({...w,referenceMode:!0}),k(x)):k(v);if(xr(r,g,d),Fr(r,g,d),qr(g,r),Br(g,r),zr(g,r),!r.theme.prefix&&f.prefix){if(f.prefix.endsWith("-")&&(f.prefix=f.prefix.slice(0,-1),console.warn(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only and is written as a variant before all utilities. We have fixed up the prefix for you. Remove the trailing \`-\` to silence this warning.`)),!ln.test(f.prefix))throw new Error(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);r.theme.prefix=f.prefix}if(!r.important&&f.important===!0&&(r.important=!0),typeof f.important=="string"){let k=f.important;F(i,(N,{replaceWith:b,parent:S})=>{if(N.kind==="at-rule"&&!(N.name!=="@tailwind"||N.params!=="utilities"))return S?.kind==="rule"&&S.selector===k?2:(b(M(k,[N])),2)})}for(let k of f.blocklist)r.invalidCandidates.add(k);for(let k of f.content.files){if("raw"in k)throw new Error(`Error in the config file/plugin/preset. The \`content\` key contains a \`raw\` entry: + +${JSON.stringify(k,null,2)} + +This feature is not currently supported.`);let N=!1;k.pattern[0]=="!"&&(N=!0,k.pattern=k.pattern.slice(1)),e.push({...k,negated:N})}return a}function Hr(r){let t=[0];for(let n=0;n0;){let u=(a|0)>>1,f=s+u;t[f]<=n?(s=f+1,a=a-u-1):a=u}s-=1;let c=n-t[s];return{line:s+1,column:c}}function e({line:n,column:s}){n-=1,n=Math.min(Math.max(n,0),t.length-1);let a=t[n],c=t[n+1]??a;return Math.min(Math.max(a+s,0),c)}return{find:i,findOffset:e}}function Yr({ast:r}){let t=new B(n=>Hr(n.code)),i=new B(n=>({url:n.file,content:n.code,ignore:!1})),e={file:null,sources:[],mappings:[]};F(r,n=>{if(!n.src||!n.dst)return;let s=i.get(n.src[0]);if(!s.content)return;let a=t.get(n.src[0]),c=t.get(n.dst[0]),u=s.content.slice(n.src[1],n.src[2]),f=0;for(let m of u.split(` +`)){if(m.trim()!==""){let w=a.find(n.src[1]+f),v=c.find(n.dst[1]);e.mappings.push({name:null,originalPosition:{source:s,...w},generatedPosition:v})}f+=m.length,f+=1}let g=a.find(n.src[2]),d=c.find(n.dst[2]);e.mappings.push({name:null,originalPosition:{source:s,...g},generatedPosition:d})});for(let n of t.keys())e.sources.push(i.get(n));return e.mappings.sort((n,s)=>n.generatedPosition.line-s.generatedPosition.line||n.generatedPosition.column-s.generatedPosition.column||(n.originalPosition?.line??0)-(s.originalPosition?.line??0)||(n.originalPosition?.column??0)-(s.originalPosition?.column??0)),e}var Zr=/^(-?\d+)\.\.(-?\d+)(?:\.\.(-?\d+))?$/;function nt(r){let t=r.indexOf("{");if(t===-1)return[r];let i=[],e=r.slice(0,t),n=r.slice(t),s=0,a=n.lastIndexOf("}");for(let d=0;dnt(d));let g=nt(u);for(let d of g)for(let m of f)i.push(e+m+d);return i}function an(r){return Zr.test(r)}function sn(r){let t=r.match(Zr);if(!t)return[r];let[,i,e,n]=t,s=n?parseInt(n,10):void 0,a=[];if(/^-?\d+$/.test(i)&&/^-?\d+$/.test(e)){let c=parseInt(i,10),u=parseInt(e,10);if(s===void 0&&(s=c<=u?1:-1),s===0)throw new Error("Step cannot be zero in sequence expansion.");let f=c0&&(s=-s);for(let g=c;f?g<=u:g>=u;g+=s)a.push(g.toString())}return a}var un=/^[a-z]+$/,dt=(n=>(n[n.None=0]="None",n[n.AtProperty=1]="AtProperty",n[n.ColorMix=2]="ColorMix",n[n.All=3]="All",n))(dt||{});function fn(){throw new Error("No `loadModule` function provided to `compile`")}function cn(){throw new Error("No `loadStylesheet` function provided to `compile`")}function pn(r){let t=0,i=null;for(let e of D(r," "))e==="reference"?t|=2:e==="inline"?t|=1:e==="default"?t|=4:e==="static"?t|=8:e.startsWith("prefix(")&&e.endsWith(")")&&(i=e.slice(7,-1));return[t,i]}var Pe=(c=>(c[c.None=0]="None",c[c.AtApply=1]="AtApply",c[c.AtImport=2]="AtImport",c[c.JsPluginCompat=4]="JsPluginCompat",c[c.ThemeFunction=8]="ThemeFunction",c[c.Utilities=16]="Utilities",c[c.Variants=32]="Variants",c))(Pe||{});async function Qr(r,{base:t="",from:i,loadModule:e=fn,loadStylesheet:n=cn}={}){let s=0;r=[le({base:t},r)],s|=await $t(r,t,n,0,i!==void 0);let a=null,c=new Be,u=[],f=[],g=null,d=null,m=[],w=[],v=[],x=[],k=null;F(r,(b,{parent:S,replaceWith:P,context:U})=>{if(b.kind==="at-rule"){if(b.name==="@tailwind"&&(b.params==="utilities"||b.params.startsWith("utilities"))){if(d!==null){P([]);return}if(U.reference){P([]);return}let R=D(b.params," ");for(let _ of R)if(_.startsWith("source(")){let K=_.slice(7,-1);if(K==="none"){k=K;continue}if(K[0]==='"'&&K[K.length-1]!=='"'||K[0]==="'"&&K[K.length-1]!=="'"||K[0]!=="'"&&K[0]!=='"')throw new Error("`source(\u2026)` paths must be quoted.");k={base:U.sourceBase??U.base,pattern:K.slice(1,-1)}}d=b,s|=16}if(b.name==="@utility"){if(S!==null)throw new Error("`@utility` cannot be nested.");if(b.nodes.length===0)throw new Error(`\`@utility ${b.params}\` is empty. Utilities should include at least one property.`);let R=ur(b);if(R===null)throw new Error(`\`@utility ${b.params}\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter.`);f.push(R)}if(b.name==="@source"){if(b.nodes.length>0)throw new Error("`@source` cannot have a body.");if(S!==null)throw new Error("`@source` cannot be nested.");let R=!1,_=!1,K=b.params;if(K[0]==="n"&&K.startsWith("not ")&&(R=!0,K=K.slice(4)),K[0]==="i"&&K.startsWith("inline(")&&(_=!0,K=K.slice(7,-1)),K[0]==='"'&&K[K.length-1]!=='"'||K[0]==="'"&&K[K.length-1]!=="'"||K[0]!=="'"&&K[0]!=='"')throw new Error("`@source` paths must be quoted.");let G=K.slice(1,-1);if(_){let I=R?x:v,W=D(G," ");for(let Z of W)for(let re of nt(Z))I.push(re)}else w.push({base:U.base,pattern:G,negated:R});P([]);return}if(b.name==="@variant"&&(S===null?b.nodes.length===0?b.name="@custom-variant":(F(b.nodes,R=>{if(R.kind==="at-rule"&&R.name==="@slot")return b.name="@custom-variant",2}),b.name==="@variant"&&m.push(b)):m.push(b)),b.name==="@custom-variant"){if(S!==null)throw new Error("`@custom-variant` cannot be nested.");P([]);let[R,_]=D(b.params," ");if(!Xe.test(R))throw new Error(`\`@custom-variant ${R}\` defines an invalid variant name. Variants should only contain alphanumeric, dashes or underscore characters.`);if(b.nodes.length>0&&_)throw new Error(`\`@custom-variant ${R}\` cannot have both a selector and a body.`);if(b.nodes.length===0){if(!_)throw new Error(`\`@custom-variant ${R}\` has no selector or body.`);let K=D(_.slice(1,-1),",");if(K.length===0||K.some(W=>W.trim()===""))throw new Error(`\`@custom-variant ${R} (${K.join(",")})\` selector is invalid.`);let G=[],I=[];for(let W of K)W=W.trim(),W[0]==="@"?G.push(W):I.push(W);u.push(W=>{W.variants.static(R,Z=>{let re=[];I.length>0&&re.push(M(I.join(", "),Z.nodes));for(let o of G)re.push(H(o,Z.nodes));Z.nodes=re},{compounds:ye([...I,...G])})});return}else{u.push(K=>{K.variants.fromAst(R,b.nodes)});return}}if(b.name==="@media"){let R=D(b.params," "),_=[];for(let K of R)if(K.startsWith("source(")){let G=K.slice(7,-1);F(b.nodes,(I,{replaceWith:W})=>{if(I.kind==="at-rule"&&I.name==="@tailwind"&&I.params==="utilities")return I.params+=` source(${G})`,W([le({sourceBase:U.base},[I])]),2})}else if(K.startsWith("theme(")){let G=K.slice(6,-1),I=G.includes("reference");F(b.nodes,W=>{if(W.kind!=="at-rule"){if(I)throw new Error('Files imported with `@import "\u2026" theme(reference)` must only contain `@theme` blocks.\nUse `@reference "\u2026";` instead.');return 0}if(W.name==="@theme")return W.params+=" "+G,1})}else if(K.startsWith("prefix(")){let G=K.slice(7,-1);F(b.nodes,I=>{if(I.kind==="at-rule"&&I.name==="@theme")return I.params+=` prefix(${G})`,1})}else K==="important"?a=!0:K==="reference"?b.nodes=[le({reference:!0},b.nodes)]:_.push(K);_.length>0?b.params=_.join(" "):R.length>0&&P(b.nodes)}if(b.name==="@theme"){let[R,_]=pn(b.params);if(U.reference&&(R|=2),_){if(!un.test(_))throw new Error(`The prefix "${_}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);c.prefix=_}return F(b.nodes,K=>{if(K.kind==="at-rule"&&K.name==="@keyframes")return c.addKeyframes(K),1;if(K.kind==="comment")return;if(K.kind==="declaration"&&K.property.startsWith("--")){c.add(ge(K.property),K.value??"",R,K.src);return}let G=ne([z(b.name,b.params,[K])]).split(` +`).map((I,W,Z)=>`${W===0||W>=Z.length-2?" ":">"} ${I}`).join(` +`);throw new Error(`\`@theme\` blocks must only contain custom properties or \`@keyframes\`. + +${G}`)}),g?P([]):(g=M(":root, :host",[]),g.src=b.src,P([g])),1}}});let N=vr(c);if(a&&(N.important=a),x.length>0)for(let b of x)N.invalidCandidates.add(b);s|=await Jr({designSystem:N,base:t,ast:r,loadModule:e,sources:w});for(let b of u)b(N);for(let b of f)b(N);if(g){let b=[];for(let[P,U]of N.theme.entries()){if(U.options&2)continue;let R=l(fe(P),U.value);R.src=U.src,b.push(R)}let S=N.theme.getKeyframes();for(let P of S)r.push(le({theme:!0},[L([P])]));g.nodes=[le({theme:!0},b)]}if(m.length>0){for(let b of m){let S=M("&",b.nodes),P=b.params,U=N.parseVariant(P);if(U===null)throw new Error(`Cannot use \`@variant\` with unknown variant: ${P}`);if(Ae(S,U,N.variants)===null)throw new Error(`Cannot use \`@variant\` with variant: ${P}`);Object.assign(b,S)}s|=32}if(s|=xe(r,N),s|=Oe(r,N),d){let b=d;b.kind="context",b.context={}}return F(r,(b,{replaceWith:S})=>{if(b.kind==="at-rule")return b.name==="@utility"&&S([]),1}),{designSystem:N,ast:r,sources:w,root:k,utilitiesNode:d,features:s,inlineCandidates:v}}async function dn(r,t={}){let{designSystem:i,ast:e,sources:n,root:s,utilitiesNode:a,features:c,inlineCandidates:u}=await Qr(r,t);e.unshift(We(`! tailwindcss v${Rt} | MIT License | https://tailwindcss.com `));function f(v){i.invalidCandidates.add(v)}let g=new Set,d=null,m=0,w=!1;for(let v of u)i.invalidCandidates.has(v)||(g.add(v),w=!0);return{sources:n,root:s,features:c,build(v){if(c===0)return r;if(!a)return d??=ve(e,i,t.polyfills),d;let x=w,k=!1;w=!1;let N=g.size;for(let S of v)if(!i.invalidCandidates.has(S))if(S[0]==="-"&&S[1]==="-"){let P=i.theme.markUsedVariable(S);x||=P,k||=P}else g.add(S),x||=g.size!==N;if(!x)return d??=ve(e,i,t.polyfills),d;let b=pe(g,i,{onInvalidCandidate:f}).astNodes;return t.from&&F(b,S=>{S.src??=a.src}),!k&&m===b.length?(d??=ve(e,i,t.polyfills),d):(m=b.length,a.nodes=b,d=ve(e,i,t.polyfills),d)}}}async function Aa(r,t={}){let i=me(r,{from:t.from}),e=await dn(i,t),n=i,s=r;return{...e,build(a){let c=e.build(a);return c===n||(s=ne(c,!!t.from),n=c),s},buildSourceMap(){return Yr({ast:n})}}}async function Ca(r,t={}){return(await Qr(me(r),t)).designSystem}function mn(){throw new Error("It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install `@tailwindcss/postcss` and update your PostCSS configuration.")}export{dt as a,Pe as b,dn as c,Aa as d,Ca as e,mn as f}; diff --git a/node_modules/tailwindcss/dist/chunk-HTB5LLOP.mjs b/node_modules/tailwindcss/dist/chunk-HTB5LLOP.mjs new file mode 100644 index 0000000..8a95483 --- /dev/null +++ b/node_modules/tailwindcss/dist/chunk-HTB5LLOP.mjs @@ -0,0 +1 @@ +var l={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};export{l as a}; diff --git a/node_modules/tailwindcss/dist/chunk-P5FH2LZE.mjs b/node_modules/tailwindcss/dist/chunk-P5FH2LZE.mjs new file mode 100644 index 0000000..f8e601b --- /dev/null +++ b/node_modules/tailwindcss/dist/chunk-P5FH2LZE.mjs @@ -0,0 +1 @@ +import{a as S}from"./chunk-HTB5LLOP.mjs";var O=new Set(["black","silver","gray","white","maroon","red","purple","fuchsia","green","lime","olive","yellow","navy","blue","teal","aqua","aliceblue","antiquewhite","aqua","aquamarine","azure","beige","bisque","black","blanchedalmond","blue","blueviolet","brown","burlywood","cadetblue","chartreuse","chocolate","coral","cornflowerblue","cornsilk","crimson","cyan","darkblue","darkcyan","darkgoldenrod","darkgray","darkgreen","darkgrey","darkkhaki","darkmagenta","darkolivegreen","darkorange","darkorchid","darkred","darksalmon","darkseagreen","darkslateblue","darkslategray","darkslategrey","darkturquoise","darkviolet","deeppink","deepskyblue","dimgray","dimgrey","dodgerblue","firebrick","floralwhite","forestgreen","fuchsia","gainsboro","ghostwhite","gold","goldenrod","gray","green","greenyellow","grey","honeydew","hotpink","indianred","indigo","ivory","khaki","lavender","lavenderblush","lawngreen","lemonchiffon","lightblue","lightcoral","lightcyan","lightgoldenrodyellow","lightgray","lightgreen","lightgrey","lightpink","lightsalmon","lightseagreen","lightskyblue","lightslategray","lightslategrey","lightsteelblue","lightyellow","lime","limegreen","linen","magenta","maroon","mediumaquamarine","mediumblue","mediumorchid","mediumpurple","mediumseagreen","mediumslateblue","mediumspringgreen","mediumturquoise","mediumvioletred","midnightblue","mintcream","mistyrose","moccasin","navajowhite","navy","oldlace","olive","olivedrab","orange","orangered","orchid","palegoldenrod","palegreen","paleturquoise","palevioletred","papayawhip","peachpuff","peru","pink","plum","powderblue","purple","rebeccapurple","red","rosybrown","royalblue","saddlebrown","salmon","sandybrown","seagreen","seashell","sienna","silver","skyblue","slateblue","slategray","slategrey","snow","springgreen","steelblue","tan","teal","thistle","tomato","turquoise","violet","wheat","white","whitesmoke","yellow","yellowgreen","transparent","currentcolor","canvas","canvastext","linktext","visitedtext","activetext","buttonface","buttontext","buttonborder","field","fieldtext","highlight","highlighttext","selecteditem","selecteditemtext","mark","marktext","graytext","accentcolor","accentcolortext"]),R=/^(rgba?|hsla?|hwb|color|(ok)?(lab|lch)|light-dark|color-mix)\(/i;function v(e){return e.charCodeAt(0)===35||R.test(e)||O.has(e.toLowerCase())}var E=["calc","min","max","clamp","mod","rem","sin","cos","tan","asin","acos","atan","atan2","pow","sqrt","hypot","log","exp","round"],h=["anchor-size"],A=new RegExp(`(${h.join("|")})\\(`,"g");function b(e){return e.indexOf("(")!==-1&&E.some(r=>e.includes(`${r}(`))}function ie(e){if(!E.some(n=>e.includes(n)))return e;let r=!1;h.some(n=>e.includes(n))&&(A.lastIndex=0,e=e.replace(A,(n,o)=>(r=!0,`$${h.indexOf(o)}$(`)));let t="",i=[];for(let n=0;n=0;c--){let x=e.charCodeAt(c);if(x>=48&&x<=57)m=c;else if(x>=97&&x<=122)m=c;else break}let a=e.slice(m,n);if(E.includes(a)){i.unshift(!0);continue}else if(i[0]&&a===""){i.unshift(!0);continue}i.unshift(!1);continue}else if(o===")")t+=o,i.shift();else if(o===","&&i[0]){t+=", ";continue}else{if(o===" "&&i[0]&&t[t.length-1]===" ")continue;if((o==="+"||o==="*"||o==="/"||o==="-")&&i[0]){let m=t.trimEnd(),a=m[m.length-1];if(a==="+"||a==="*"||a==="/"||a==="-"){t+=o;continue}else if(a==="("||a===","){t+=o;continue}else e[n-1]===" "?t+=`${o} `:t+=` ${o} `}else if(i[0]&&e.startsWith("to-zero",n)){let m=n;n+=7,t+=e.slice(m,n+1)}else t+=o}}return r?t.replace(/\$(\d+)\$/g,(n,o)=>h[o]??n):t}var y=new Uint8Array(256);function g(e,r){let t=0,i=[],n=0,o=e.length,m=r.charCodeAt(0);for(let a=0;a0&&c===y[t-1]&&t--;break}}return i.push(e.slice(n)),i}var _={color:v,length:w,percentage:C,ratio:j,number:N,integer:p,url:z,position:Q,"bg-size":X,"line-width":I,image:H,"family-name":q,"generic-name":P,"absolute-size":B,"relative-size":W,angle:ee,vector:re};function pe(e,r){if(e.startsWith("var("))return null;for(let t of r)if(_[t]?.(e))return t;return null}var D=/^url\(.*\)$/;function z(e){return D.test(e)}function I(e){return g(e," ").every(r=>w(r)||N(r)||r==="thin"||r==="medium"||r==="thick")}var F=/^(?:element|image|cross-fade|image-set)\(/,$=/^(repeating-)?(conic|linear|radial)-gradient\(/;function H(e){let r=0;for(let t of g(e,","))if(!t.startsWith("var(")){if(z(t)){r+=1;continue}if($.test(t)){r+=1;continue}if(F.test(t)){r+=1;continue}return!1}return r>0}function P(e){return e==="serif"||e==="sans-serif"||e==="monospace"||e==="cursive"||e==="fantasy"||e==="system-ui"||e==="ui-serif"||e==="ui-sans-serif"||e==="ui-monospace"||e==="ui-rounded"||e==="math"||e==="emoji"||e==="fangsong"}function q(e){let r=0;for(let t of g(e,",")){let i=t.charCodeAt(0);if(i>=48&&i<=57)return!1;t.startsWith("var(")||(r+=1)}return r>0}function B(e){return e==="xx-small"||e==="x-small"||e==="small"||e==="medium"||e==="large"||e==="x-large"||e==="xx-large"||e==="xxx-large"}function W(e){return e==="larger"||e==="smaller"}var u=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,M=new RegExp(`^${u.source}$`);function N(e){return M.test(e)||b(e)}var G=new RegExp(`^${u.source}%$`);function C(e){return G.test(e)||b(e)}var V=new RegExp(`^${u.source}s*/s*${u.source}$`);function j(e){return V.test(e)||b(e)}var K=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],Y=new RegExp(`^${u.source}(${K.join("|")})$`);function w(e){return Y.test(e)||b(e)}function Q(e){let r=0;for(let t of g(e," ")){if(t==="center"||t==="top"||t==="right"||t==="bottom"||t==="left"){r+=1;continue}if(!t.startsWith("var(")){if(w(t)||C(t)){r+=1;continue}return!1}}return r>0}function X(e){let r=0;for(let t of g(e,",")){if(t==="cover"||t==="contain"){r+=1;continue}let i=g(t," ");if(i.length!==1&&i.length!==2)return!1;if(i.every(n=>n==="auto"||w(n)||C(n))){r+=1;continue}}return r>0}var J=["deg","rad","grad","turn"],Z=new RegExp(`^${u.source}(${J.join("|")})$`);function ee(e){return Z.test(e)}var te=new RegExp(`^${u.source} +${u.source} +${u.source}$`);function re(e){return te.test(e)}function p(e){let r=Number(e);return Number.isInteger(r)&&r>=0&&String(r)===String(e)}function ge(e){let r=Number(e);return Number.isInteger(r)&&r>0&&String(r)===String(e)}function ue(e){return T(e,.25)}function de(e){return T(e,.25)}function T(e,r){let t=Number(e);return t>=0&&t%r===0&&String(t)===String(e)}function f(e){return{__BARE_VALUE__:e}}var l=f(e=>{if(p(e.value))return e.value}),s=f(e=>{if(p(e.value))return`${e.value}%`}),d=f(e=>{if(p(e.value))return`${e.value}px`}),L=f(e=>{if(p(e.value))return`${e.value}ms`}),k=f(e=>{if(p(e.value))return`${e.value}deg`}),ne=f(e=>{if(e.fraction===null)return;let[r,t]=g(e.fraction,"/");if(!(!p(r)||!p(t)))return e.fraction}),U=f(e=>{if(p(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),ye={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...ne},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...s}),backdropContrast:({theme:e})=>({...e("contrast"),...s}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...s}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...k}),backdropInvert:({theme:e})=>({...e("invert"),...s}),backdropOpacity:({theme:e})=>({...e("opacity"),...s}),backdropSaturate:({theme:e})=>({...e("saturate"),...s}),backdropSepia:({theme:e})=>({...e("sepia"),...s}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...d},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...s},caretColor:({theme:e})=>e("colors"),colors:()=>({...S}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...l},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...s},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...d}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...l},flexShrink:{0:"0",DEFAULT:"1",...l},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...s},grayscale:{0:"0",DEFAULT:"100%",...s},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...l},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...l},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...l},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...l},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...U},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...U},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...k},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...s},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...l},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...s},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...l},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...k},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...s},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...s},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...s},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...k},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...l},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...d},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...L},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...L},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...l}};export{ie as a,g as b,pe as c,p as d,ge as e,ue as f,de as g,ye as h}; diff --git a/node_modules/tailwindcss/dist/colors-b_6i0Oi7.d.ts b/node_modules/tailwindcss/dist/colors-b_6i0Oi7.d.ts new file mode 100644 index 0000000..8f187dc --- /dev/null +++ b/node_modules/tailwindcss/dist/colors-b_6i0Oi7.d.ts @@ -0,0 +1,295 @@ +declare const _default: { + inherit: string; + current: string; + transparent: string; + black: string; + white: string; + slate: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + gray: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + zinc: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + neutral: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + stone: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + red: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + orange: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + amber: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + yellow: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + lime: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + green: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + emerald: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + teal: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + cyan: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + sky: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + blue: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + indigo: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + violet: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + purple: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + fuchsia: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + pink: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + rose: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; +}; + +export { _default as _ }; diff --git a/node_modules/tailwindcss/dist/colors.d.mts b/node_modules/tailwindcss/dist/colors.d.mts new file mode 100644 index 0000000..5ea4701 --- /dev/null +++ b/node_modules/tailwindcss/dist/colors.d.mts @@ -0,0 +1,295 @@ +declare const _default: { + inherit: string; + current: string; + transparent: string; + black: string; + white: string; + slate: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + gray: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + zinc: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + neutral: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + stone: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + red: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + orange: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + amber: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + yellow: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + lime: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + green: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + emerald: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + teal: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + cyan: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + sky: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + blue: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + indigo: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + violet: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + purple: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + fuchsia: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + pink: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + rose: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; +}; + +export { _default as default }; diff --git a/node_modules/tailwindcss/dist/colors.d.ts b/node_modules/tailwindcss/dist/colors.d.ts new file mode 100644 index 0000000..e9d15d3 --- /dev/null +++ b/node_modules/tailwindcss/dist/colors.d.ts @@ -0,0 +1,5 @@ +import { _ as _default } from './colors-b_6i0Oi7.js'; + + + +export { _default as default }; diff --git a/node_modules/tailwindcss/dist/colors.js b/node_modules/tailwindcss/dist/colors.js new file mode 100644 index 0000000..409c0d5 --- /dev/null +++ b/node_modules/tailwindcss/dist/colors.js @@ -0,0 +1 @@ +"use strict";var l={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};module.exports=l; diff --git a/node_modules/tailwindcss/dist/colors.mjs b/node_modules/tailwindcss/dist/colors.mjs new file mode 100644 index 0000000..9d20fbc --- /dev/null +++ b/node_modules/tailwindcss/dist/colors.mjs @@ -0,0 +1 @@ +import{a}from"./chunk-HTB5LLOP.mjs";export{a as default}; diff --git a/node_modules/tailwindcss/dist/default-theme.d.mts b/node_modules/tailwindcss/dist/default-theme.d.mts new file mode 100644 index 0000000..1b80d8a --- /dev/null +++ b/node_modules/tailwindcss/dist/default-theme.d.mts @@ -0,0 +1,1147 @@ +import { P as PluginUtils, N as NamedUtilityValue } from './resolve-config-QUZ9b-Gn.mjs'; +import './colors.mjs'; + +declare const _default: { + accentColor: ({ theme }: PluginUtils) => any; + animation: { + none: string; + spin: string; + ping: string; + pulse: string; + bounce: string; + }; + aria: { + busy: string; + checked: string; + disabled: string; + expanded: string; + hidden: string; + pressed: string; + readonly: string; + required: string; + selected: string; + }; + aspectRatio: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + square: string; + video: string; + }; + backdropBlur: ({ theme }: PluginUtils) => any; + backdropBrightness: ({ theme }: PluginUtils) => any; + backdropContrast: ({ theme }: PluginUtils) => any; + backdropGrayscale: ({ theme }: PluginUtils) => any; + backdropHueRotate: ({ theme }: PluginUtils) => any; + backdropInvert: ({ theme }: PluginUtils) => any; + backdropOpacity: ({ theme }: PluginUtils) => any; + backdropSaturate: ({ theme }: PluginUtils) => any; + backdropSepia: ({ theme }: PluginUtils) => any; + backgroundColor: ({ theme }: PluginUtils) => any; + backgroundImage: { + none: string; + 'gradient-to-t': string; + 'gradient-to-tr': string; + 'gradient-to-r': string; + 'gradient-to-br': string; + 'gradient-to-b': string; + 'gradient-to-bl': string; + 'gradient-to-l': string; + 'gradient-to-tl': string; + }; + backgroundOpacity: ({ theme }: PluginUtils) => any; + backgroundPosition: { + bottom: string; + center: string; + left: string; + 'left-bottom': string; + 'left-top': string; + right: string; + 'right-bottom': string; + 'right-top': string; + top: string; + }; + backgroundSize: { + auto: string; + cover: string; + contain: string; + }; + blur: { + 0: string; + none: string; + sm: string; + DEFAULT: string; + md: string; + lg: string; + xl: string; + '2xl': string; + '3xl': string; + }; + borderColor: ({ theme }: PluginUtils) => any; + borderOpacity: ({ theme }: PluginUtils) => any; + borderRadius: { + none: string; + sm: string; + DEFAULT: string; + md: string; + lg: string; + xl: string; + '2xl': string; + '3xl': string; + full: string; + }; + borderSpacing: ({ theme }: PluginUtils) => any; + borderWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + DEFAULT: string; + 0: string; + 2: string; + 4: string; + 8: string; + }; + boxShadow: { + sm: string; + DEFAULT: string; + md: string; + lg: string; + xl: string; + '2xl': string; + inner: string; + none: string; + }; + boxShadowColor: ({ theme }: PluginUtils) => any; + brightness: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 50: string; + 75: string; + 90: string; + 95: string; + 100: string; + 105: string; + 110: string; + 125: string; + 150: string; + 200: string; + }; + caretColor: ({ theme }: PluginUtils) => any; + colors: () => { + inherit: string; + current: string; + transparent: string; + black: string; + white: string; + slate: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + gray: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + zinc: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + neutral: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + stone: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + red: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + orange: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + amber: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + yellow: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + lime: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + green: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + emerald: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + teal: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + cyan: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + sky: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + blue: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + indigo: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + violet: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + purple: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + fuchsia: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + pink: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + rose: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + }; + columns: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + '3xs': string; + '2xs': string; + xs: string; + sm: string; + md: string; + lg: string; + xl: string; + '2xl': string; + '3xl': string; + '4xl': string; + '5xl': string; + '6xl': string; + '7xl': string; + }; + container: {}; + content: { + none: string; + }; + contrast: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 50: string; + 75: string; + 100: string; + 125: string; + 150: string; + 200: string; + }; + cursor: { + auto: string; + default: string; + pointer: string; + wait: string; + text: string; + move: string; + help: string; + 'not-allowed': string; + none: string; + 'context-menu': string; + progress: string; + cell: string; + crosshair: string; + 'vertical-text': string; + alias: string; + copy: string; + 'no-drop': string; + grab: string; + grabbing: string; + 'all-scroll': string; + 'col-resize': string; + 'row-resize': string; + 'n-resize': string; + 'e-resize': string; + 's-resize': string; + 'w-resize': string; + 'ne-resize': string; + 'nw-resize': string; + 'se-resize': string; + 'sw-resize': string; + 'ew-resize': string; + 'ns-resize': string; + 'nesw-resize': string; + 'nwse-resize': string; + 'zoom-in': string; + 'zoom-out': string; + }; + divideColor: ({ theme }: PluginUtils) => any; + divideOpacity: ({ theme }: PluginUtils) => any; + divideWidth: ({ theme }: PluginUtils) => any; + dropShadow: { + sm: string; + DEFAULT: string[]; + md: string[]; + lg: string[]; + xl: string[]; + '2xl': string; + none: string; + }; + fill: ({ theme }: PluginUtils) => any; + flex: { + 1: string; + auto: string; + initial: string; + none: string; + }; + flexBasis: ({ theme }: PluginUtils) => any; + flexGrow: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + flexShrink: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + fontFamily: { + sans: string[]; + serif: string[]; + mono: string[]; + }; + fontSize: { + xs: (string | { + lineHeight: string; + })[]; + sm: (string | { + lineHeight: string; + })[]; + base: (string | { + lineHeight: string; + })[]; + lg: (string | { + lineHeight: string; + })[]; + xl: (string | { + lineHeight: string; + })[]; + '2xl': (string | { + lineHeight: string; + })[]; + '3xl': (string | { + lineHeight: string; + })[]; + '4xl': (string | { + lineHeight: string; + })[]; + '5xl': (string | { + lineHeight: string; + })[]; + '6xl': (string | { + lineHeight: string; + })[]; + '7xl': (string | { + lineHeight: string; + })[]; + '8xl': (string | { + lineHeight: string; + })[]; + '9xl': (string | { + lineHeight: string; + })[]; + }; + fontWeight: { + thin: string; + extralight: string; + light: string; + normal: string; + medium: string; + semibold: string; + bold: string; + extrabold: string; + black: string; + }; + gap: ({ theme }: PluginUtils) => any; + gradientColorStops: ({ theme }: PluginUtils) => any; + gradientColorStopPositions: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + '0%': string; + '5%': string; + '10%': string; + '15%': string; + '20%': string; + '25%': string; + '30%': string; + '35%': string; + '40%': string; + '45%': string; + '50%': string; + '55%': string; + '60%': string; + '65%': string; + '70%': string; + '75%': string; + '80%': string; + '85%': string; + '90%': string; + '95%': string; + '100%': string; + }; + grayscale: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + gridAutoColumns: { + auto: string; + min: string; + max: string; + fr: string; + }; + gridAutoRows: { + auto: string; + min: string; + max: string; + fr: string; + }; + gridColumn: { + auto: string; + 'span-1': string; + 'span-2': string; + 'span-3': string; + 'span-4': string; + 'span-5': string; + 'span-6': string; + 'span-7': string; + 'span-8': string; + 'span-9': string; + 'span-10': string; + 'span-11': string; + 'span-12': string; + 'span-full': string; + }; + gridColumnEnd: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 13: string; + }; + gridColumnStart: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 13: string; + }; + gridRow: { + auto: string; + 'span-1': string; + 'span-2': string; + 'span-3': string; + 'span-4': string; + 'span-5': string; + 'span-6': string; + 'span-7': string; + 'span-8': string; + 'span-9': string; + 'span-10': string; + 'span-11': string; + 'span-12': string; + 'span-full': string; + }; + gridRowEnd: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 13: string; + }; + gridRowStart: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 13: string; + }; + gridTemplateColumns: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + none: string; + subgrid: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + }; + gridTemplateRows: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + none: string; + subgrid: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + }; + height: ({ theme }: PluginUtils) => any; + hueRotate: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 15: string; + 30: string; + 60: string; + 90: string; + 180: string; + }; + inset: ({ theme }: PluginUtils) => any; + invert: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + keyframes: { + spin: { + to: { + transform: string; + }; + }; + ping: { + '75%, 100%': { + transform: string; + opacity: string; + }; + }; + pulse: { + '50%': { + opacity: string; + }; + }; + bounce: { + '0%, 100%': { + transform: string; + animationTimingFunction: string; + }; + '50%': { + transform: string; + animationTimingFunction: string; + }; + }; + }; + letterSpacing: { + tighter: string; + tight: string; + normal: string; + wide: string; + wider: string; + widest: string; + }; + lineHeight: { + none: string; + tight: string; + snug: string; + normal: string; + relaxed: string; + loose: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + }; + listStyleType: { + none: string; + disc: string; + decimal: string; + }; + listStyleImage: { + none: string; + }; + margin: ({ theme }: PluginUtils) => any; + lineClamp: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + }; + maxHeight: ({ theme }: PluginUtils) => any; + maxWidth: ({ theme }: PluginUtils) => any; + minHeight: ({ theme }: PluginUtils) => any; + minWidth: ({ theme }: PluginUtils) => any; + objectPosition: { + bottom: string; + center: string; + left: string; + 'left-bottom': string; + 'left-top': string; + right: string; + 'right-bottom': string; + 'right-top': string; + top: string; + }; + opacity: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 5: string; + 10: string; + 15: string; + 20: string; + 25: string; + 30: string; + 35: string; + 40: string; + 45: string; + 50: string; + 55: string; + 60: string; + 65: string; + 70: string; + 75: string; + 80: string; + 85: string; + 90: string; + 95: string; + 100: string; + }; + order: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + first: string; + last: string; + none: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + }; + outlineColor: ({ theme }: PluginUtils) => any; + outlineOffset: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + outlineWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + padding: ({ theme }: PluginUtils) => any; + placeholderColor: ({ theme }: PluginUtils) => any; + placeholderOpacity: ({ theme }: PluginUtils) => any; + ringColor: ({ theme }: PluginUtils) => any; + ringOffsetColor: ({ theme }: PluginUtils) => any; + ringOffsetWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + ringOpacity: ({ theme }: PluginUtils) => any; + ringWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + DEFAULT: string; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + rotate: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 3: string; + 6: string; + 12: string; + 45: string; + 90: string; + 180: string; + }; + saturate: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 50: string; + 100: string; + 150: string; + 200: string; + }; + scale: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 50: string; + 75: string; + 90: string; + 95: string; + 100: string; + 105: string; + 110: string; + 125: string; + 150: string; + }; + screens: { + sm: string; + md: string; + lg: string; + xl: string; + '2xl': string; + }; + scrollMargin: ({ theme }: PluginUtils) => any; + scrollPadding: ({ theme }: PluginUtils) => any; + sepia: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + skew: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 3: string; + 6: string; + 12: string; + }; + space: ({ theme }: PluginUtils) => any; + spacing: { + px: string; + 0: string; + 0.5: string; + 1: string; + 1.5: string; + 2: string; + 2.5: string; + 3: string; + 3.5: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 14: string; + 16: string; + 20: string; + 24: string; + 28: string; + 32: string; + 36: string; + 40: string; + 44: string; + 48: string; + 52: string; + 56: string; + 60: string; + 64: string; + 72: string; + 80: string; + 96: string; + }; + stroke: ({ theme }: PluginUtils) => any; + strokeWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + }; + supports: {}; + data: {}; + textColor: ({ theme }: PluginUtils) => any; + textDecorationColor: ({ theme }: PluginUtils) => any; + textDecorationThickness: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 'from-font': string; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + textIndent: ({ theme }: PluginUtils) => any; + textOpacity: ({ theme }: PluginUtils) => any; + textUnderlineOffset: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + transformOrigin: { + center: string; + top: string; + 'top-right': string; + right: string; + 'bottom-right': string; + bottom: string; + 'bottom-left': string; + left: string; + 'top-left': string; + }; + transitionDelay: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 75: string; + 100: string; + 150: string; + 200: string; + 300: string; + 500: string; + 700: string; + 1000: string; + }; + transitionDuration: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + DEFAULT: string; + 0: string; + 75: string; + 100: string; + 150: string; + 200: string; + 300: string; + 500: string; + 700: string; + 1000: string; + }; + transitionProperty: { + none: string; + all: string; + DEFAULT: string; + colors: string; + opacity: string; + shadow: string; + transform: string; + }; + transitionTimingFunction: { + DEFAULT: string; + linear: string; + in: string; + out: string; + 'in-out': string; + }; + translate: ({ theme }: PluginUtils) => any; + size: ({ theme }: PluginUtils) => any; + width: ({ theme }: PluginUtils) => any; + willChange: { + auto: string; + scroll: string; + contents: string; + transform: string; + }; + zIndex: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 0: string; + 10: string; + 20: string; + 30: string; + 40: string; + 50: string; + }; +}; + +export { _default as default }; diff --git a/node_modules/tailwindcss/dist/default-theme.d.ts b/node_modules/tailwindcss/dist/default-theme.d.ts new file mode 100644 index 0000000..6d36e26 --- /dev/null +++ b/node_modules/tailwindcss/dist/default-theme.d.ts @@ -0,0 +1,1147 @@ +import { P as PluginUtils, N as NamedUtilityValue } from './resolve-config-BIFUA2FY.js'; +import './colors-b_6i0Oi7.js'; + +declare const _default: { + accentColor: ({ theme }: PluginUtils) => any; + animation: { + none: string; + spin: string; + ping: string; + pulse: string; + bounce: string; + }; + aria: { + busy: string; + checked: string; + disabled: string; + expanded: string; + hidden: string; + pressed: string; + readonly: string; + required: string; + selected: string; + }; + aspectRatio: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + square: string; + video: string; + }; + backdropBlur: ({ theme }: PluginUtils) => any; + backdropBrightness: ({ theme }: PluginUtils) => any; + backdropContrast: ({ theme }: PluginUtils) => any; + backdropGrayscale: ({ theme }: PluginUtils) => any; + backdropHueRotate: ({ theme }: PluginUtils) => any; + backdropInvert: ({ theme }: PluginUtils) => any; + backdropOpacity: ({ theme }: PluginUtils) => any; + backdropSaturate: ({ theme }: PluginUtils) => any; + backdropSepia: ({ theme }: PluginUtils) => any; + backgroundColor: ({ theme }: PluginUtils) => any; + backgroundImage: { + none: string; + 'gradient-to-t': string; + 'gradient-to-tr': string; + 'gradient-to-r': string; + 'gradient-to-br': string; + 'gradient-to-b': string; + 'gradient-to-bl': string; + 'gradient-to-l': string; + 'gradient-to-tl': string; + }; + backgroundOpacity: ({ theme }: PluginUtils) => any; + backgroundPosition: { + bottom: string; + center: string; + left: string; + 'left-bottom': string; + 'left-top': string; + right: string; + 'right-bottom': string; + 'right-top': string; + top: string; + }; + backgroundSize: { + auto: string; + cover: string; + contain: string; + }; + blur: { + 0: string; + none: string; + sm: string; + DEFAULT: string; + md: string; + lg: string; + xl: string; + '2xl': string; + '3xl': string; + }; + borderColor: ({ theme }: PluginUtils) => any; + borderOpacity: ({ theme }: PluginUtils) => any; + borderRadius: { + none: string; + sm: string; + DEFAULT: string; + md: string; + lg: string; + xl: string; + '2xl': string; + '3xl': string; + full: string; + }; + borderSpacing: ({ theme }: PluginUtils) => any; + borderWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + DEFAULT: string; + 0: string; + 2: string; + 4: string; + 8: string; + }; + boxShadow: { + sm: string; + DEFAULT: string; + md: string; + lg: string; + xl: string; + '2xl': string; + inner: string; + none: string; + }; + boxShadowColor: ({ theme }: PluginUtils) => any; + brightness: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 50: string; + 75: string; + 90: string; + 95: string; + 100: string; + 105: string; + 110: string; + 125: string; + 150: string; + 200: string; + }; + caretColor: ({ theme }: PluginUtils) => any; + colors: () => { + inherit: string; + current: string; + transparent: string; + black: string; + white: string; + slate: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + gray: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + zinc: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + neutral: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + stone: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + red: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + orange: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + amber: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + yellow: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + lime: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + green: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + emerald: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + teal: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + cyan: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + sky: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + blue: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + indigo: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + violet: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + purple: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + fuchsia: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + pink: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + rose: { + '50': string; + '100': string; + '200': string; + '300': string; + '400': string; + '500': string; + '600': string; + '700': string; + '800': string; + '900': string; + '950': string; + }; + }; + columns: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + '3xs': string; + '2xs': string; + xs: string; + sm: string; + md: string; + lg: string; + xl: string; + '2xl': string; + '3xl': string; + '4xl': string; + '5xl': string; + '6xl': string; + '7xl': string; + }; + container: {}; + content: { + none: string; + }; + contrast: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 50: string; + 75: string; + 100: string; + 125: string; + 150: string; + 200: string; + }; + cursor: { + auto: string; + default: string; + pointer: string; + wait: string; + text: string; + move: string; + help: string; + 'not-allowed': string; + none: string; + 'context-menu': string; + progress: string; + cell: string; + crosshair: string; + 'vertical-text': string; + alias: string; + copy: string; + 'no-drop': string; + grab: string; + grabbing: string; + 'all-scroll': string; + 'col-resize': string; + 'row-resize': string; + 'n-resize': string; + 'e-resize': string; + 's-resize': string; + 'w-resize': string; + 'ne-resize': string; + 'nw-resize': string; + 'se-resize': string; + 'sw-resize': string; + 'ew-resize': string; + 'ns-resize': string; + 'nesw-resize': string; + 'nwse-resize': string; + 'zoom-in': string; + 'zoom-out': string; + }; + divideColor: ({ theme }: PluginUtils) => any; + divideOpacity: ({ theme }: PluginUtils) => any; + divideWidth: ({ theme }: PluginUtils) => any; + dropShadow: { + sm: string; + DEFAULT: string[]; + md: string[]; + lg: string[]; + xl: string[]; + '2xl': string; + none: string; + }; + fill: ({ theme }: PluginUtils) => any; + flex: { + 1: string; + auto: string; + initial: string; + none: string; + }; + flexBasis: ({ theme }: PluginUtils) => any; + flexGrow: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + flexShrink: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + fontFamily: { + sans: string[]; + serif: string[]; + mono: string[]; + }; + fontSize: { + xs: (string | { + lineHeight: string; + })[]; + sm: (string | { + lineHeight: string; + })[]; + base: (string | { + lineHeight: string; + })[]; + lg: (string | { + lineHeight: string; + })[]; + xl: (string | { + lineHeight: string; + })[]; + '2xl': (string | { + lineHeight: string; + })[]; + '3xl': (string | { + lineHeight: string; + })[]; + '4xl': (string | { + lineHeight: string; + })[]; + '5xl': (string | { + lineHeight: string; + })[]; + '6xl': (string | { + lineHeight: string; + })[]; + '7xl': (string | { + lineHeight: string; + })[]; + '8xl': (string | { + lineHeight: string; + })[]; + '9xl': (string | { + lineHeight: string; + })[]; + }; + fontWeight: { + thin: string; + extralight: string; + light: string; + normal: string; + medium: string; + semibold: string; + bold: string; + extrabold: string; + black: string; + }; + gap: ({ theme }: PluginUtils) => any; + gradientColorStops: ({ theme }: PluginUtils) => any; + gradientColorStopPositions: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + '0%': string; + '5%': string; + '10%': string; + '15%': string; + '20%': string; + '25%': string; + '30%': string; + '35%': string; + '40%': string; + '45%': string; + '50%': string; + '55%': string; + '60%': string; + '65%': string; + '70%': string; + '75%': string; + '80%': string; + '85%': string; + '90%': string; + '95%': string; + '100%': string; + }; + grayscale: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + gridAutoColumns: { + auto: string; + min: string; + max: string; + fr: string; + }; + gridAutoRows: { + auto: string; + min: string; + max: string; + fr: string; + }; + gridColumn: { + auto: string; + 'span-1': string; + 'span-2': string; + 'span-3': string; + 'span-4': string; + 'span-5': string; + 'span-6': string; + 'span-7': string; + 'span-8': string; + 'span-9': string; + 'span-10': string; + 'span-11': string; + 'span-12': string; + 'span-full': string; + }; + gridColumnEnd: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 13: string; + }; + gridColumnStart: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 13: string; + }; + gridRow: { + auto: string; + 'span-1': string; + 'span-2': string; + 'span-3': string; + 'span-4': string; + 'span-5': string; + 'span-6': string; + 'span-7': string; + 'span-8': string; + 'span-9': string; + 'span-10': string; + 'span-11': string; + 'span-12': string; + 'span-full': string; + }; + gridRowEnd: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 13: string; + }; + gridRowStart: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 13: string; + }; + gridTemplateColumns: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + none: string; + subgrid: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + }; + gridTemplateRows: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + none: string; + subgrid: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + }; + height: ({ theme }: PluginUtils) => any; + hueRotate: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 15: string; + 30: string; + 60: string; + 90: string; + 180: string; + }; + inset: ({ theme }: PluginUtils) => any; + invert: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + keyframes: { + spin: { + to: { + transform: string; + }; + }; + ping: { + '75%, 100%': { + transform: string; + opacity: string; + }; + }; + pulse: { + '50%': { + opacity: string; + }; + }; + bounce: { + '0%, 100%': { + transform: string; + animationTimingFunction: string; + }; + '50%': { + transform: string; + animationTimingFunction: string; + }; + }; + }; + letterSpacing: { + tighter: string; + tight: string; + normal: string; + wide: string; + wider: string; + widest: string; + }; + lineHeight: { + none: string; + tight: string; + snug: string; + normal: string; + relaxed: string; + loose: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + }; + listStyleType: { + none: string; + disc: string; + decimal: string; + }; + listStyleImage: { + none: string; + }; + margin: ({ theme }: PluginUtils) => any; + lineClamp: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + }; + maxHeight: ({ theme }: PluginUtils) => any; + maxWidth: ({ theme }: PluginUtils) => any; + minHeight: ({ theme }: PluginUtils) => any; + minWidth: ({ theme }: PluginUtils) => any; + objectPosition: { + bottom: string; + center: string; + left: string; + 'left-bottom': string; + 'left-top': string; + right: string; + 'right-bottom': string; + 'right-top': string; + top: string; + }; + opacity: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 5: string; + 10: string; + 15: string; + 20: string; + 25: string; + 30: string; + 35: string; + 40: string; + 45: string; + 50: string; + 55: string; + 60: string; + 65: string; + 70: string; + 75: string; + 80: string; + 85: string; + 90: string; + 95: string; + 100: string; + }; + order: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + first: string; + last: string; + none: string; + 1: string; + 2: string; + 3: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + }; + outlineColor: ({ theme }: PluginUtils) => any; + outlineOffset: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + outlineWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + padding: ({ theme }: PluginUtils) => any; + placeholderColor: ({ theme }: PluginUtils) => any; + placeholderOpacity: ({ theme }: PluginUtils) => any; + ringColor: ({ theme }: PluginUtils) => any; + ringOffsetColor: ({ theme }: PluginUtils) => any; + ringOffsetWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + ringOpacity: ({ theme }: PluginUtils) => any; + ringWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + DEFAULT: string; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + rotate: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 3: string; + 6: string; + 12: string; + 45: string; + 90: string; + 180: string; + }; + saturate: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 50: string; + 100: string; + 150: string; + 200: string; + }; + scale: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 50: string; + 75: string; + 90: string; + 95: string; + 100: string; + 105: string; + 110: string; + 125: string; + 150: string; + }; + screens: { + sm: string; + md: string; + lg: string; + xl: string; + '2xl': string; + }; + scrollMargin: ({ theme }: PluginUtils) => any; + scrollPadding: ({ theme }: PluginUtils) => any; + sepia: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + DEFAULT: string; + }; + skew: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + 3: string; + 6: string; + 12: string; + }; + space: ({ theme }: PluginUtils) => any; + spacing: { + px: string; + 0: string; + 0.5: string; + 1: string; + 1.5: string; + 2: string; + 2.5: string; + 3: string; + 3.5: string; + 4: string; + 5: string; + 6: string; + 7: string; + 8: string; + 9: string; + 10: string; + 11: string; + 12: string; + 14: string; + 16: string; + 20: string; + 24: string; + 28: string; + 32: string; + 36: string; + 40: string; + 44: string; + 48: string; + 52: string; + 56: string; + 60: string; + 64: string; + 72: string; + 80: string; + 96: string; + }; + stroke: ({ theme }: PluginUtils) => any; + strokeWidth: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 1: string; + 2: string; + }; + supports: {}; + data: {}; + textColor: ({ theme }: PluginUtils) => any; + textDecorationColor: ({ theme }: PluginUtils) => any; + textDecorationThickness: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 'from-font': string; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + textIndent: ({ theme }: PluginUtils) => any; + textOpacity: ({ theme }: PluginUtils) => any; + textUnderlineOffset: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 0: string; + 1: string; + 2: string; + 4: string; + 8: string; + }; + transformOrigin: { + center: string; + top: string; + 'top-right': string; + right: string; + 'bottom-right': string; + bottom: string; + 'bottom-left': string; + left: string; + 'top-left': string; + }; + transitionDelay: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + 0: string; + 75: string; + 100: string; + 150: string; + 200: string; + 300: string; + 500: string; + 700: string; + 1000: string; + }; + transitionDuration: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + DEFAULT: string; + 0: string; + 75: string; + 100: string; + 150: string; + 200: string; + 300: string; + 500: string; + 700: string; + 1000: string; + }; + transitionProperty: { + none: string; + all: string; + DEFAULT: string; + colors: string; + opacity: string; + shadow: string; + transform: string; + }; + transitionTimingFunction: { + DEFAULT: string; + linear: string; + in: string; + out: string; + 'in-out': string; + }; + translate: ({ theme }: PluginUtils) => any; + size: ({ theme }: PluginUtils) => any; + width: ({ theme }: PluginUtils) => any; + willChange: { + auto: string; + scroll: string; + contents: string; + transform: string; + }; + zIndex: { + __BARE_VALUE__: (value: NamedUtilityValue) => string | undefined; + auto: string; + 0: string; + 10: string; + 20: string; + 30: string; + 40: string; + 50: string; + }; +}; + +export { _default as default }; diff --git a/node_modules/tailwindcss/dist/default-theme.js b/node_modules/tailwindcss/dist/default-theme.js new file mode 100644 index 0000000..bbc94db --- /dev/null +++ b/node_modules/tailwindcss/dist/default-theme.js @@ -0,0 +1 @@ +"use strict";var v=["anchor-size"],N=new RegExp(`(${v.join("|")})\\(`,"g");var m=new Uint8Array(256);function k(e,c){let t=0,g=[],u=0,d=e.length,E=c.charCodeAt(0);for(let n=0;n0&&h===m[t-1]&&t--;break}}return g.push(e.slice(u)),g}var i=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,I=new RegExp(`^${i.source}$`);var F=new RegExp(`^${i.source}%$`);var $=new RegExp(`^${i.source}s*/s*${i.source}$`);var C=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],H=new RegExp(`^${i.source}(${C.join("|")})$`);var S=["deg","rad","grad","turn"],P=new RegExp(`^${i.source}(${S.join("|")})$`);var q=new RegExp(`^${i.source} +${i.source} +${i.source}$`);function l(e){let c=Number(e);return Number.isInteger(c)&&c>=0&&String(c)===String(e)}var f={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};function s(e){return{__BARE_VALUE__:e}}var r=s(e=>{if(l(e.value))return e.value}),o=s(e=>{if(l(e.value))return`${e.value}%`}),a=s(e=>{if(l(e.value))return`${e.value}px`}),b=s(e=>{if(l(e.value))return`${e.value}ms`}),p=s(e=>{if(l(e.value))return`${e.value}deg`}),A=s(e=>{if(e.fraction===null)return;let[c,t]=k(e.fraction,"/");if(!(!l(c)||!l(t)))return e.fraction}),y=s(e=>{if(l(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),w={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...A},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...o}),backdropContrast:({theme:e})=>({...e("contrast"),...o}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...o}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...p}),backdropInvert:({theme:e})=>({...e("invert"),...o}),backdropOpacity:({theme:e})=>({...e("opacity"),...o}),backdropSaturate:({theme:e})=>({...e("saturate"),...o}),backdropSepia:({theme:e})=>({...e("sepia"),...o}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...a},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...o},caretColor:({theme:e})=>e("colors"),colors:()=>({...f}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...r},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...o},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...a}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...r},flexShrink:{0:"0",DEFAULT:"1",...r},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...o},grayscale:{0:"0",DEFAULT:"100%",...o},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...r},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...r},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...r},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...r},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...y},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...y},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...p},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...o},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...r},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...o},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...r},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...p},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...o},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...o},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...o},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...p},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...r},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...a},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...b},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...b},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...r}};module.exports=w; diff --git a/node_modules/tailwindcss/dist/default-theme.mjs b/node_modules/tailwindcss/dist/default-theme.mjs new file mode 100644 index 0000000..7bf7fa7 --- /dev/null +++ b/node_modules/tailwindcss/dist/default-theme.mjs @@ -0,0 +1 @@ +import{h as a}from"./chunk-P5FH2LZE.mjs";import"./chunk-HTB5LLOP.mjs";export{a as default}; diff --git a/node_modules/tailwindcss/dist/flatten-color-palette.d.mts b/node_modules/tailwindcss/dist/flatten-color-palette.d.mts new file mode 100644 index 0000000..1151604 --- /dev/null +++ b/node_modules/tailwindcss/dist/flatten-color-palette.d.mts @@ -0,0 +1,6 @@ +type Colors = { + [key: string | number]: string | Colors; +}; +declare function flattenColorPalette(colors: Colors): Record; + +export { flattenColorPalette as default }; diff --git a/node_modules/tailwindcss/dist/flatten-color-palette.d.ts b/node_modules/tailwindcss/dist/flatten-color-palette.d.ts new file mode 100644 index 0000000..1151604 --- /dev/null +++ b/node_modules/tailwindcss/dist/flatten-color-palette.d.ts @@ -0,0 +1,6 @@ +type Colors = { + [key: string | number]: string | Colors; +}; +declare function flattenColorPalette(colors: Colors): Record; + +export { flattenColorPalette as default }; diff --git a/node_modules/tailwindcss/dist/flatten-color-palette.js b/node_modules/tailwindcss/dist/flatten-color-palette.js new file mode 100644 index 0000000..465deb2 --- /dev/null +++ b/node_modules/tailwindcss/dist/flatten-color-palette.js @@ -0,0 +1,3 @@ +"use strict";function _(e){return{kind:"word",value:e}}function se(e,t){return{kind:"function",value:e,nodes:t}}function ue(e){return{kind:"separator",value:e}}function v(e,t,i=null){for(let r=0;r0){let M=_(n);r?r.nodes.push(M):t.push(M),n=""}let a=l,u=l+1;for(;u0){let u=_(n);a?.nodes.push(u),n=""}i.length>0?r=i[i.length-1]:r=null;break}default:n+=String.fromCharCode(s)}}return n.length>0&&t.push(_(n)),t}var me=["anchor-size"],je=new RegExp(`(${me.join("|")})\\(`,"g");var c=class extends Map{constructor(i){super();this.factory=i}get(i){let r=super.get(i);return r===void 0&&(r=this.factory(i,this),this.set(i,r)),r}};var Ge=new Uint8Array(256);var E=new Uint8Array(256);function p(e,t){let i=0,r=[],n=0,o=e.length,l=t.charCodeAt(0);for(let s=0;s0&&a===E[i-1]&&i--;break}}return r.push(e.slice(n)),r}var it=new c(e=>{let t=m(e),i=new Set;return v(t,(r,{parent:n})=>{let o=n===null?t:n.nodes??[];if(r.kind==="word"&&(r.value==="+"||r.value==="-"||r.value==="*"||r.value==="/")){let l=o.indexOf(r)??-1;if(l===-1)return;let s=o[l-1];if(s?.kind!=="separator"||s.value!==" ")return;let a=o[l+1];if(a?.kind!=="separator"||a.value!==" ")return;i.add(s),i.add(a)}else r.kind==="separator"&&r.value.trim()==="/"?r.value="/":r.kind==="separator"&&r.value.length>0&&r.value.trim()===""?(o[0]===r||o[o.length-1]===r)&&i.add(r):r.kind==="separator"&&r.value.trim()===","&&(r.value=",")}),i.size>0&&v(t,(r,{replaceWith:n})=>{i.has(r)&&(i.delete(r),n([]))}),K(t),h(t)});var nt=new c(e=>{let t=m(e);return t.length===3&&t[0].kind==="word"&&t[0].value==="&"&&t[1].kind==="separator"&&t[1].value===":"&&t[2].kind==="function"&&t[2].value==="is"?h(t[2].nodes):e});function K(e){for(let t of e)switch(t.kind){case"function":{if(t.value==="url"||t.value.endsWith("_url")){t.value=N(t.value);break}if(t.value==="var"||t.value.endsWith("_var")||t.value==="theme"||t.value.endsWith("_theme")){t.value=N(t.value);for(let i=0;i{let t=m(e);return t.length===1&&t[0].kind==="function"&&t[0].value==="var"});function ge(e){throw new Error(`Unexpected value: ${e}`)}function N(e){return e.replaceAll("_",String.raw`\_`).replaceAll(" ","_")}var w=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,mt=new RegExp(`^${w.source}$`);var gt=new RegExp(`^${w.source}%$`);var ht=new RegExp(`^${w.source}s*/s*${w.source}$`);var he=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],vt=new RegExp(`^${w.source}(${he.join("|")})$`);var ve=["deg","rad","grad","turn"],wt=new RegExp(`^${w.source}(${ve.join("|")})$`);var kt=new RegExp(`^${w.source} +${w.source} +${w.source}$`);function d(e){let t=Number(e);return Number.isInteger(t)&&t>=0&&String(t)===String(e)}function S(e,t){if(t===null)return e;let i=Number(t);return Number.isNaN(i)||(t=`${i*100}%`),t==="100%"?e:`color-mix(in oklab, ${e} ${t}, transparent)`}var be={"--alpha":ye,"--spacing":xe,"--theme":Ae,theme:Ce};function ye(e,t,i,...r){let[n,o]=p(i,"/").map(l=>l.trim());if(!n||!o)throw new Error(`The --alpha(\u2026) function requires a color and an alpha value, e.g.: \`--alpha(${n||"var(--my-color)"} / ${o||"50%"})\``);if(r.length>0)throw new Error(`The --alpha(\u2026) function only accepts one argument, e.g.: \`--alpha(${n||"var(--my-color)"} / ${o||"50%"})\``);return S(n,o)}function xe(e,t,i,...r){if(!i)throw new Error("The --spacing(\u2026) function requires an argument, but received none.");if(r.length>0)throw new Error(`The --spacing(\u2026) function only accepts a single argument, but received ${r.length+1}.`);let n=e.theme.resolve(null,["--spacing"]);if(!n)throw new Error("The --spacing(\u2026) function requires that the `--spacing` theme variable exists, but it was not found.");return`calc(${n} * ${i})`}function Ae(e,t,i,...r){if(!i.startsWith("--"))throw new Error("The --theme(\u2026) function can only be used with CSS variables from your theme.");let n=!1;i.endsWith(" inline")&&(n=!0,i=i.slice(0,-7)),t.kind==="at-rule"&&(n=!0);let o=e.resolveThemeValue(i,n);if(!o){if(r.length>0)return r.join(", ");throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the variable name is correct or provide a fallback value to silence this error.`)}if(r.length===0)return o;let l=r.join(", ");if(l==="initial")return o;if(o==="initial")return l;if(o.startsWith("var(")||o.startsWith("theme(")||o.startsWith("--theme(")){let s=m(o);return Ne(s,l),h(s)}return o}function Ce(e,t,i,...r){i=$e(i);let n=e.resolveThemeValue(i);if(!n&&r.length>0)return r.join(", ");if(!n)throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the path is correct or provide a fallback value to silence this error.`);return n}var Lt=new RegExp(Object.keys(be).map(e=>`${e}\\(`).join("|"));function $e(e){if(e[0]!=="'"&&e[0]!=='"')return e;let t="",i=e[0];for(let r=1;r{if(i.kind==="function"&&!(i.value!=="var"&&i.value!=="theme"&&i.value!=="--theme"))if(i.nodes.length===1)i.nodes.push({kind:"word",value:`, ${t}`});else{let r=i.nodes[i.nodes.length-1];r.kind==="word"&&r.value==="initial"&&(r.value=t)}})}var F={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};function C(e){return{__BARE_VALUE__:e}}var g=C(e=>{if(d(e.value))return e.value}),f=C(e=>{if(d(e.value))return`${e.value}%`}),y=C(e=>{if(d(e.value))return`${e.value}px`}),le=C(e=>{if(d(e.value))return`${e.value}ms`}),P=C(e=>{if(d(e.value))return`${e.value}deg`}),Ie=C(e=>{if(e.fraction===null)return;let[t,i]=p(e.fraction,"/");if(!(!d(t)||!d(i)))return e.fraction}),ae=C(e=>{if(d(Number(e.value)))return`repeat(${e.value}, minmax(0, 1fr))`}),Fe={accentColor:({theme:e})=>e("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...Ie},backdropBlur:({theme:e})=>e("blur"),backdropBrightness:({theme:e})=>({...e("brightness"),...f}),backdropContrast:({theme:e})=>({...e("contrast"),...f}),backdropGrayscale:({theme:e})=>({...e("grayscale"),...f}),backdropHueRotate:({theme:e})=>({...e("hueRotate"),...P}),backdropInvert:({theme:e})=>({...e("invert"),...f}),backdropOpacity:({theme:e})=>({...e("opacity"),...f}),backdropSaturate:({theme:e})=>({...e("saturate"),...f}),backdropSepia:({theme:e})=>({...e("sepia"),...f}),backgroundColor:({theme:e})=>e("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:e})=>e("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),borderOpacity:({theme:e})=>e("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:e})=>e("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...y},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:e})=>e("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...f},caretColor:({theme:e})=>e("colors"),colors:()=>({...F}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...g},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...f},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:e})=>e("borderColor"),divideOpacity:({theme:e})=>e("borderOpacity"),divideWidth:({theme:e})=>({...e("borderWidth"),...y}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:e})=>e("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...e("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...g},flexShrink:{0:"0",DEFAULT:"1",...g},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:e})=>e("spacing"),gradientColorStops:({theme:e})=>e("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...f},grayscale:{0:"0",DEFAULT:"100%",...f},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...g},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...g},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...g},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...g},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...ae},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...ae},height:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...P},inset:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),invert:{0:"0",DEFAULT:"100%",...f},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:e})=>({auto:"auto",...e("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...g},maxHeight:({theme:e})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),maxWidth:({theme:e})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...e("spacing")}),minHeight:({theme:e})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),minWidth:({theme:e})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...f},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...g},outlineColor:({theme:e})=>e("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...y},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...y},padding:({theme:e})=>e("spacing"),placeholderColor:({theme:e})=>e("colors"),placeholderOpacity:({theme:e})=>e("opacity"),ringColor:({theme:e})=>({DEFAULT:"currentcolor",...e("colors")}),ringOffsetColor:({theme:e})=>e("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...y},ringOpacity:({theme:e})=>({DEFAULT:"0.5",...e("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...y},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...P},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...f},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...f},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:e})=>e("spacing"),scrollPadding:({theme:e})=>e("spacing"),sepia:{0:"0",DEFAULT:"100%",...f},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...P},space:({theme:e})=>e("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:e})=>({none:"none",...e("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...g},supports:{},data:{},textColor:({theme:e})=>e("colors"),textDecorationColor:({theme:e})=>e("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...y},textIndent:({theme:e})=>e("spacing"),textOpacity:({theme:e})=>e("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...y},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...le},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...le},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:e})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...e("spacing")}),size:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),width:({theme:e})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...e("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...g}};function O(e){let t={};for(let[i,r]of Object.entries(e??{}))if(i!=="__CSS_VALUES__")if(typeof r=="object"&&r!==null)for(let[n,o]of Object.entries(O(r)))t[`${i}${n==="DEFAULT"?"":`-${n}`}`]=o;else t[i]=r;if("__CSS_VALUES__"in e)for(let[i,r]of Object.entries(e.__CSS_VALUES__))(Number(r)&4)===0&&(t[i]=e[i]);return t}module.exports=O; diff --git a/node_modules/tailwindcss/dist/flatten-color-palette.mjs b/node_modules/tailwindcss/dist/flatten-color-palette.mjs new file mode 100644 index 0000000..4b77ccc --- /dev/null +++ b/node_modules/tailwindcss/dist/flatten-color-palette.mjs @@ -0,0 +1 @@ +import"./chunk-FEUCFEMW.mjs";import"./chunk-P5FH2LZE.mjs";import"./chunk-HTB5LLOP.mjs";function i(r){let n={};for(let[e,t]of Object.entries(r??{}))if(e!=="__CSS_VALUES__")if(typeof t=="object"&&t!==null)for(let[o,f]of Object.entries(i(t)))n[`${e}${o==="DEFAULT"?"":`-${o}`}`]=f;else n[e]=t;if("__CSS_VALUES__"in r)for(let[e,t]of Object.entries(r.__CSS_VALUES__))(Number(t)&4)===0&&(n[e]=r[e]);return n}export{i as default}; diff --git a/node_modules/tailwindcss/dist/lib.d.mts b/node_modules/tailwindcss/dist/lib.d.mts new file mode 100644 index 0000000..1ef39e8 --- /dev/null +++ b/node_modules/tailwindcss/dist/lib.d.mts @@ -0,0 +1,373 @@ +import { U as UserConfig, P as Plugin } from './types-B254mqw1.mjs'; +import { V as Variant, C as Candidate } from './resolve-config-QUZ9b-Gn.mjs'; +import './colors.mjs'; + +declare const enum ThemeOptions { + NONE = 0, + INLINE = 1, + REFERENCE = 2, + DEFAULT = 4, + STATIC = 8, + USED = 16 +} +declare class Theme { + #private; + private values; + private keyframes; + prefix: string | null; + constructor(values?: Map, keyframes?: Set); + get size(): number; + add(key: string, value: string, options?: ThemeOptions, src?: Declaration['src']): void; + keysInNamespaces(themeKeys: Iterable): string[]; + get(themeKeys: ThemeKey[]): string | null; + hasDefault(key: string): boolean; + getOptions(key: string): ThemeOptions; + entries(): IterableIterator<[string, { + value: string; + options: ThemeOptions; + src: Declaration["src"]; + }]> | [string, { + value: string; + options: ThemeOptions; + src: Declaration["src"]; + }][]; + prefixKey(key: string): string; + clearNamespace(namespace: string, clearOptions: ThemeOptions): void; + markUsedVariable(themeKey: string): boolean; + resolve(candidateValue: string | null, themeKeys: ThemeKey[], options?: ThemeOptions): string | null; + resolveValue(candidateValue: string | null, themeKeys: ThemeKey[]): string | null; + resolveWith(candidateValue: string, themeKeys: ThemeKey[], nestedKeys?: `--${string}`[]): [string, Record] | null; + namespace(namespace: string): Map; + addKeyframes(value: AtRule): void; + getKeyframes(): AtRule[]; +} +type ThemeKey = `--${string}`; + +type VariantFn = (rule: Rule, variant: Extract) => null | void; +type CompareFn = (a: Variant, z: Variant) => number; +declare const enum Compounds { + Never = 0, + AtRules = 1, + StyleRules = 2 +} +declare class Variants { + compareFns: Map; + variants: Map; + compoundsWith: Compounds; + compounds: Compounds; + }>; + private completions; + /** + * Registering a group of variants should result in the same sort number for + * all the variants. This is to ensure that the variants are applied in the + * correct order. + */ + private groupOrder; + /** + * Keep track of the last sort order instead of using the size of the map to + * avoid unnecessarily skipping order numbers. + */ + private lastOrder; + static(name: string, applyFn: VariantFn<'static'>, { compounds, order }?: { + compounds?: Compounds; + order?: number; + }): void; + fromAst(name: string, ast: AstNode[]): void; + functional(name: string, applyFn: VariantFn<'functional'>, { compounds, order }?: { + compounds?: Compounds; + order?: number; + }): void; + compound(name: string, compoundsWith: Compounds, applyFn: VariantFn<'compound'>, { compounds, order }?: { + compounds?: Compounds; + order?: number; + }): void; + group(fn: () => void, compareFn?: CompareFn): void; + has(name: string): boolean; + get(name: string): { + kind: Variant["kind"]; + order: number; + applyFn: VariantFn; + compoundsWith: Compounds; + compounds: Compounds; + } | undefined; + kind(name: string): "arbitrary" | "static" | "functional" | "compound"; + compoundsWith(parent: string, child: string | Variant): boolean; + suggest(name: string, suggestions: () => string[]): void; + getCompletions(name: string): string[]; + compare(a: Variant | null, z: Variant | null): number; + keys(): IterableIterator; + entries(): IterableIterator<[string, { + kind: Variant["kind"]; + order: number; + applyFn: VariantFn; + compoundsWith: Compounds; + compounds: Compounds; + }]>; + private set; + private nextOrder; +} + +declare function compileAstNodes(candidate: Candidate, designSystem: DesignSystem): { + node: AstNode; + propertySort: { + order: number[]; + count: number; + }; +}[]; + +interface ClassMetadata { + modifiers: string[]; +} +type ClassEntry = [string, ClassMetadata]; +interface SelectorOptions { + modifier?: string; + value?: string; +} +interface VariantEntry { + name: string; + isArbitrary: boolean; + values: string[]; + hasDash: boolean; + selectors: (options: SelectorOptions) => string[]; +} + +type CompileFn = (value: Extract) => AstNode[] | undefined | null; +interface SuggestionGroup { + supportsNegative?: boolean; + values: (string | null)[]; + modifiers: string[]; +} +type UtilityOptions = { + types: string[]; +}; +type Utility = { + kind: 'static' | 'functional'; + compileFn: CompileFn; + options?: UtilityOptions; +}; +declare class Utilities { + private utilities; + private completions; + static(name: string, compileFn: CompileFn<'static'>): void; + functional(name: string, compileFn: CompileFn<'functional'>, options?: UtilityOptions): void; + has(name: string, kind: 'static' | 'functional'): boolean; + get(name: string): Utility[]; + getCompletions(name: string): SuggestionGroup[]; + suggest(name: string, groups: () => SuggestionGroup[]): void; + keys(kind: 'static' | 'functional'): string[]; +} + +type DesignSystem = { + theme: Theme; + utilities: Utilities; + variants: Variants; + invalidCandidates: Set; + important: boolean; + getClassOrder(classes: string[]): [string, bigint | null][]; + getClassList(): ClassEntry[]; + getVariants(): VariantEntry[]; + parseCandidate(candidate: string): Readonly[]; + parseVariant(variant: string): Readonly | null; + compileAstNodes(candidate: Candidate): ReturnType; + printCandidate(candidate: Candidate): string; + printVariant(variant: Variant): string; + getVariantOrder(): Map; + resolveThemeValue(path: string, forceInline?: boolean): string | undefined; + trackUsedVariables(raw: string): void; + candidatesToCss(classes: string[]): (string | null)[]; +}; + +/** + * The source code for one or more nodes in the AST + * + * This generally corresponds to a stylesheet + */ +interface Source { + /** + * The path to the file that contains the referenced source code + * + * If this references the *output* source code, this is `null`. + */ + file: string | null; + /** + * The referenced source code + */ + code: string; +} +/** + * The file and offsets within it that this node covers + * + * This can represent either: + * - A location in the original CSS which caused this node to be created + * - A location in the output CSS where this node resides + */ +type SourceLocation = [source: Source, start: number, end: number]; + +type StyleRule = { + kind: 'rule'; + selector: string; + nodes: AstNode[]; + src?: SourceLocation; + dst?: SourceLocation; +}; +type AtRule = { + kind: 'at-rule'; + name: string; + params: string; + nodes: AstNode[]; + src?: SourceLocation; + dst?: SourceLocation; +}; +type Declaration = { + kind: 'declaration'; + property: string; + value: string | undefined; + important: boolean; + src?: SourceLocation; + dst?: SourceLocation; +}; +type Comment = { + kind: 'comment'; + value: string; + src?: SourceLocation; + dst?: SourceLocation; +}; +type Context = { + kind: 'context'; + context: Record; + nodes: AstNode[]; + src?: undefined; + dst?: undefined; +}; +type AtRoot = { + kind: 'at-root'; + nodes: AstNode[]; + src?: undefined; + dst?: undefined; +}; +type Rule = StyleRule | AtRule; +type AstNode = StyleRule | AtRule | Declaration | Comment | Context | AtRoot; + +/** + * Line offset tables are the key to generating our source maps. They allow us + * to store indexes with our AST nodes and later convert them into positions as + * when given the source that the indexes refer to. + */ +/** + * A position in source code + * + * https://tc39.es/ecma426/#sec-position-record-type + */ +interface Position { + /** The line number, one-based */ + line: number; + /** The column/character number, one-based */ + column: number; +} + +interface OriginalPosition extends Position { + source: DecodedSource; +} +/** + * A "decoded" sourcemap + * + * @see https://tc39.es/ecma426/#decoded-source-map-record + */ +interface DecodedSourceMap { + file: string | null; + sources: DecodedSource[]; + mappings: DecodedMapping[]; +} +/** + * A "decoded" source + * + * @see https://tc39.es/ecma426/#decoded-source-record + */ +interface DecodedSource { + url: string | null; + content: string | null; + ignore: boolean; +} +/** + * A "decoded" mapping + * + * @see https://tc39.es/ecma426/#decoded-mapping-record + */ +interface DecodedMapping { + originalPosition: OriginalPosition | null; + generatedPosition: Position; + name: string | null; +} + +type Config = UserConfig; +declare const enum Polyfills { + None = 0, + AtProperty = 1, + ColorMix = 2, + All = 3 +} +type CompileOptions = { + base?: string; + from?: string; + polyfills?: Polyfills; + loadModule?: (id: string, base: string, resourceHint: 'plugin' | 'config') => Promise<{ + path: string; + base: string; + module: Plugin | Config; + }>; + loadStylesheet?: (id: string, base: string) => Promise<{ + path: string; + base: string; + content: string; + }>; +}; +type Root = null | 'none' | { + base: string; + pattern: string; +}; +declare const enum Features { + None = 0, + AtApply = 1, + AtImport = 2, + JsPluginCompat = 4, + ThemeFunction = 8, + Utilities = 16, + Variants = 32 +} +declare function compileAst(input: AstNode[], opts?: CompileOptions): Promise<{ + sources: { + base: string; + pattern: string; + negated: boolean; + }[]; + root: Root; + features: Features; + build(candidates: string[]): AstNode[]; +}>; + +declare function compile(css: string, opts?: CompileOptions): Promise<{ + sources: { + base: string; + pattern: string; + negated: boolean; + }[]; + root: Root; + features: Features; + build(candidates: string[]): string; + buildSourceMap(): DecodedSourceMap; +}>; +declare function __unstable__loadDesignSystem(css: string, opts?: CompileOptions): Promise; +declare function postcssPluginWarning(): void; + +export { type Config, type DecodedSourceMap, Features, Polyfills, __unstable__loadDesignSystem, compile, compileAst, postcssPluginWarning as default }; diff --git a/node_modules/tailwindcss/dist/lib.d.ts b/node_modules/tailwindcss/dist/lib.d.ts new file mode 100644 index 0000000..411ce06 --- /dev/null +++ b/node_modules/tailwindcss/dist/lib.d.ts @@ -0,0 +1,3 @@ +declare function postcssPluginWarning(): void; + +export { postcssPluginWarning as default }; diff --git a/node_modules/tailwindcss/dist/lib.js b/node_modules/tailwindcss/dist/lib.js new file mode 100644 index 0000000..2240914 --- /dev/null +++ b/node_modules/tailwindcss/dist/lib.js @@ -0,0 +1,35 @@ +"use strict";var yi=Object.defineProperty;var xi=(t,r)=>{for(var i in r)yi(t,i,{get:r[i],enumerable:!0})};var wt={};xi(wt,{Features:()=>Se,Polyfills:()=>tt,__unstable__loadDesignSystem:()=>co,compile:()=>uo,compileAst:()=>bi,default:()=>We});var Wt="4.1.8";var Pe=92,Be=47,qe=42,Ci=34,$i=39,Ni=58,He=59,ne=10,Ge=13,Oe=32,Ye=9,Bt=123,bt=125,At=40,qt=41,Vi=91,Si=93,Ht=45,yt=64,Ti=33;function ve(t,r){let i=r?.from?{file:r.from,code:t}:null;t[0]==="\uFEFF"&&(t=" "+t.slice(1));let e=[],n=[],s=[],a=null,c=null,u="",f="",g=0,d;for(let m=0;m0&&t[b]===v[v.length-1]&&(v=v.slice(0,-1));let V=xt(u,y);if(!V)throw new Error("Invalid custom property, expected a value");i&&(V.src=[i,x,m],V.dst=[i,x,m]),a?a.nodes.push(V):e.push(V),u=""}else if(w===He&&u.charCodeAt(0)===yt)c=_e(u),i&&(c.src=[i,g,m],c.dst=[i,g,m]),a?a.nodes.push(c):e.push(c),u="",c=null;else if(w===He&&f[f.length-1]!==")"){let v=xt(u);if(!v)throw u.length===0?new Error("Unexpected semicolon"):new Error(`Invalid declaration: \`${u.trim()}\``);i&&(v.src=[i,g,m],v.dst=[i,g,m]),a?a.nodes.push(v):e.push(v),u=""}else if(w===Bt&&f[f.length-1]!==")")f+="}",c=G(u.trim()),i&&(c.src=[i,g,m],c.dst=[i,g,m]),a&&a.nodes.push(c),s.push(a),a=c,u="",c=null;else if(w===bt&&f[f.length-1]!==")"){if(f==="")throw new Error("Missing opening {");if(f=f.slice(0,-1),u.length>0)if(u.charCodeAt(0)===yt)c=_e(u),i&&(c.src=[i,g,m],c.dst=[i,g,m]),a?a.nodes.push(c):e.push(c),u="",c=null;else{let x=u.indexOf(":");if(a){let y=xt(u,x);if(!y)throw new Error(`Invalid declaration: \`${u.trim()}\``);i&&(y.src=[i,g,m],y.dst=[i,g,m]),a.nodes.push(y)}}let v=s.pop()??null;v===null&&a&&e.push(a),a=v,u="",c=null}else if(w===At)f+=")",u+="(";else if(w===qt){if(f[f.length-1]!==")")throw new Error("Missing opening (");f=f.slice(0,-1),u+=")"}else{if(u.length===0&&(w===Oe||w===ne||w===Ye))continue;u===""&&(g=m),u+=String.fromCharCode(w)}}}if(u.charCodeAt(0)===yt){let m=_e(u);i&&(m.src=[i,g,t.length],m.dst=[i,g,t.length]),e.push(m)}if(f.length>0&&a){if(a.kind==="rule")throw new Error(`Missing closing } at ${a.selector}`);if(a.kind==="at-rule")throw new Error(`Missing closing } at ${a.name} ${a.params}`)}return n.length>0?n.concat(e):e}function _e(t,r=[]){let i=t,e="";for(let n=5;n=1&&n<=31||n===127||e===0&&n>=48&&n<=57||e===1&&n>=48&&n<=57&&a===45){s+="\\"+n.toString(16)+" ";continue}if(n>=128||n===45||n===95||n>=48&&n<=57||n>=65&&n<=90||n>=97&&n<=122){s+=r.charAt(e);continue}s+="\\"+r.charAt(e)}return s}function we(t){return t.replace(/\\([\dA-Fa-f]{1,6}[\t\n\f\r ]?|[\S\s])/g,r=>r.length>2?String.fromCodePoint(Number.parseInt(r.slice(1).trim(),16)):r[1])}var Yt=new Map([["--font",["--font-weight","--font-size"]],["--inset",["--inset-shadow","--inset-ring"]],["--text",["--text-color","--text-decoration-color","--text-decoration-thickness","--text-indent","--text-shadow","--text-underline-offset"]]]);function Gt(t,r){return(Yt.get(r)??[]).some(i=>t===i||t.startsWith(`${i}-`))}var Qe=class{constructor(r=new Map,i=new Set([])){this.values=r;this.keyframes=i}prefix=null;get size(){return this.values.size}add(r,i,e=0,n){if(r.endsWith("-*")){if(i!=="initial")throw new Error(`Invalid theme value \`${i}\` for namespace \`${r}\``);r==="--*"?this.values.clear():this.clearNamespace(r.slice(0,-2),0)}if(e&4){let s=this.values.get(r);if(s&&!(s.options&4))return}i==="initial"?this.values.delete(r):this.values.set(r,{value:i,options:e,src:n})}keysInNamespaces(r){let i=[];for(let e of r){let n=`${e}-`;for(let s of this.values.keys())s.startsWith(n)&&s.indexOf("--",2)===-1&&(Gt(s,e)||i.push(s.slice(n.length)))}return i}get(r){for(let i of r){let e=this.values.get(i);if(e)return e.value}return null}hasDefault(r){return(this.getOptions(r)&4)===4}getOptions(r){return r=we(this.#r(r)),this.values.get(r)?.options??0}entries(){return this.prefix?Array.from(this.values,r=>(r[0]=this.prefixKey(r[0]),r)):this.values.entries()}prefixKey(r){return this.prefix?`--${this.prefix}-${r.slice(2)}`:r}#r(r){return this.prefix?`--${r.slice(3+this.prefix.length)}`:r}clearNamespace(r,i){let e=Yt.get(r)??[];e:for(let n of this.values.keys())if(n.startsWith(r)){if(i!==0&&(this.getOptions(n)&i)!==i)continue;for(let s of e)if(n.startsWith(s))continue e;this.values.delete(n)}}#e(r,i){for(let e of i){let n=r!==null?`${e}-${r}`:e;if(!this.values.has(n))if(r!==null&&r.includes(".")){if(n=`${e}-${r.replaceAll(".","_")}`,!this.values.has(n))continue}else continue;if(!Gt(n,e))return n}return null}#t(r){let i=this.values.get(r);if(!i)return null;let e=null;return i.options&2&&(e=i.value),`var(${de(this.prefixKey(r))}${e?`, ${e}`:""})`}markUsedVariable(r){let i=we(this.#r(r)),e=this.values.get(i);if(!e)return!1;let n=e.options&16;return e.options|=16,!n}resolve(r,i,e=0){let n=this.#e(r,i);if(!n)return null;let s=this.values.get(n);return(e|s.options)&1?s.value:this.#t(n)}resolveValue(r,i){let e=this.#e(r,i);return e?this.values.get(e).value:null}resolveWith(r,i,e=[]){let n=this.#e(r,i);if(!n)return null;let s={};for(let c of e){let u=`${n}${c}`,f=this.values.get(u);f&&(f.options&1?s[c]=f.value:s[c]=this.#t(u))}let a=this.values.get(n);return a.options&1?[a.value,s]:[this.#t(n),s]}namespace(r){let i=new Map,e=`${r}-`;for(let[n,s]of this.values)n===r?i.set(null,s.value):n.startsWith(`${e}-`)?i.set(n.slice(r.length),s.value):n.startsWith(e)&&i.set(n.slice(e.length),s.value);return i}addKeyframes(r){this.keyframes.add(r)}getKeyframes(){return Array.from(this.keyframes)}};var B=class extends Map{constructor(i){super();this.factory=i}get(i){let e=super.get(i);return e===void 0&&(e=this.factory(i,this),this.set(i,e)),e}};function $t(t){return{kind:"word",value:t}}function Ei(t,r){return{kind:"function",value:t,nodes:r}}function Ri(t){return{kind:"separator",value:t}}function ee(t,r,i=null){for(let e=0;e0){let d=$t(n);e?e.nodes.push(d):r.push(d),n=""}let u=a,f=a+1;for(;f0){let f=$t(n);u?.nodes.push(f),n=""}i.length>0?e=i[i.length-1]:e=null;break}default:n+=String.fromCharCode(c)}}return n.length>0&&r.push($t(n)),r}function Ze(t){let r=[];return ee(q(t),i=>{if(!(i.kind!=="function"||i.value!=="var"))return ee(i.nodes,e=>{e.kind!=="word"||e.value[0]!=="-"||e.value[1]!=="-"||r.push(e.value)}),1}),r}var Ui=64;function M(t,r=[]){return{kind:"rule",selector:t,nodes:r}}function F(t,r="",i=[]){return{kind:"at-rule",name:t,params:r,nodes:i}}function G(t,r=[]){return t.charCodeAt(0)===Ui?_e(t,r):M(t,r)}function l(t,r,i=!1){return{kind:"declaration",property:t,value:r,important:i}}function Je(t){return{kind:"comment",value:t}}function se(t,r){return{kind:"context",context:t,nodes:r}}function I(t){return{kind:"at-root",nodes:t}}function z(t,r,i=[],e={}){for(let n=0;nnew Set),a=new B(()=>new Set),c=new Set,u=new Set,f=[],g=[],d=new B(()=>new Set);function m(v,x,y={},V=0){if(v.kind==="declaration"){if(v.property==="--tw-sort"||v.value===void 0||v.value===null)return;if(y.theme&&v.property[0]==="-"&&v.property[1]==="-"){if(v.value==="initial"){v.value=void 0;return}y.keyframes||s.get(x).add(v)}if(v.value.includes("var("))if(y.theme&&v.property[0]==="-"&&v.property[1]==="-")for(let b of Ze(v.value))d.get(b).add(v.property);else r.trackUsedVariables(v.value);if(v.property==="animation")for(let b of lr(v.value))u.add(b);i&2&&v.value.includes("color-mix(")&&a.get(x).add(v),x.push(v)}else if(v.kind==="rule")if(v.selector==="&")for(let b of v.nodes){let S=[];m(b,S,y,V+1),S.length>0&&x.push(...S)}else{let b={...v,nodes:[]};for(let S of v.nodes)m(S,b.nodes,y,V+1);b.nodes.length>0&&x.push(b)}else if(v.kind==="at-rule"&&v.name==="@property"&&V===0){if(n.has(v.params))return;if(i&1){let S=v.params,R=null,j=!1;for(let D of v.nodes)D.kind==="declaration"&&(D.property==="initial-value"?R=D.value:D.property==="inherits"&&(j=D.value==="true"));let P=l(S,R??"initial");P.src=v.src,j?f.push(P):g.push(P)}n.add(v.params);let b={...v,nodes:[]};for(let S of v.nodes)m(S,b.nodes,y,V+1);x.push(b)}else if(v.kind==="at-rule"){v.name==="@keyframes"&&(y={...y,keyframes:!0});let b={...v,nodes:[]};for(let S of v.nodes)m(S,b.nodes,y,V+1);v.name==="@keyframes"&&y.theme&&c.add(b),(b.nodes.length>0||b.name==="@layer"||b.name==="@charset"||b.name==="@custom-media"||b.name==="@namespace"||b.name==="@import")&&x.push(b)}else if(v.kind==="at-root")for(let b of v.nodes){let S=[];m(b,S,y,0);for(let R of S)e.push(R)}else if(v.kind==="context"){if(v.context.reference)return;for(let b of v.nodes)m(b,x,{...y,...v.context},V)}else v.kind==="comment"&&x.push(v)}let w=[];for(let v of t)m(v,w,{},0);e:for(let[v,x]of s)for(let y of x){if(ar(y.property,r.theme,d)){if(y.property.startsWith(r.theme.prefixKey("--animate-")))for(let S of lr(y.value))u.add(S);continue}let b=v.indexOf(y);if(v.splice(b,1),v.length===0){let S=ji(w,R=>R.kind==="rule"&&R.nodes===v);if(!S||S.length===0)continue e;S.unshift({kind:"at-root",nodes:w});do{let R=S.pop();if(!R)break;let j=S[S.length-1];if(!j||j.kind!=="at-root"&&j.kind!=="at-rule")break;let P=j.nodes.indexOf(R);if(P===-1)break;j.nodes.splice(P,1)}while(!0);continue e}}for(let v of c)if(!u.has(v.params)){let x=e.indexOf(v);e.splice(x,1)}if(w=w.concat(e),i&2)for(let[v,x]of a)for(let y of x){let V=v.indexOf(y);if(V===-1||y.value==null)continue;let b=q(y.value),S=!1;if(ee(b,(P,{replaceWith:D})=>{if(P.kind!=="function"||P.value!=="color-mix")return;let _=!1,H=!1;if(ee(P.nodes,(L,{replaceWith:W})=>{if(L.kind=="word"&&L.value.toLowerCase()==="currentcolor"){H=!0,S=!0;return}let Q=L,ie=null,o=new Set;do{if(Q.kind!=="function"||Q.value!=="var")return;let p=Q.nodes[0];if(!p||p.kind!=="word")return;let h=p.value;if(o.has(h)){_=!0;return}if(o.add(h),S=!0,ie=r.theme.resolveValue(null,[p.value]),!ie){_=!0;return}if(ie.toLowerCase()==="currentcolor"){H=!0;return}ie.startsWith("var(")?Q=q(ie)[0]:Q=null}while(Q);W({kind:"word",value:ie})}),_||H){let L=P.nodes.findIndex(Q=>Q.kind==="separator"&&Q.value.trim().includes(","));if(L===-1)return;let W=P.nodes.length>L?P.nodes[L+1]:null;if(!W)return;D(W)}else if(S){let L=P.nodes[2];L.kind==="word"&&(L.value==="oklab"||L.value==="oklch"||L.value==="lab"||L.value==="lch")&&(L.value="srgb")}}),!S)continue;let R={...y,value:J(b)},j=G("@supports (color: color-mix(in lab, red, red))",[y]);j.src=y.src,v.splice(V,1,R,j)}if(i&1){let v=[];if(f.length>0){let x=G(":root, :host",f);x.src=f[0].src,v.push(x)}if(g.length>0){let x=G("*, ::before, ::after, ::backdrop",g);x.src=g[0].src,v.push(x)}if(v.length>0){let x=w.findIndex(b=>!(b.kind==="comment"||b.kind==="at-rule"&&(b.name==="@charset"||b.name==="@import"))),y=F("@layer","properties",[]);y.src=v[0].src,w.splice(x<0?w.length:x,0,y);let V=G("@layer properties",[F("@supports","((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b))))",v)]);V.src=v[0].src,V.nodes[0].src=v[0].src,w.push(V)}}return w}function oe(t,r){let i=0,e={file:null,code:""};function n(a,c=0){let u="",f=" ".repeat(c);if(a.kind==="declaration"){if(u+=`${f}${a.property}: ${a.value}${a.important?" !important":""}; +`,r){i+=f.length;let g=i;i+=a.property.length,i+=2,i+=a.value?.length??0,a.important&&(i+=11);let d=i;i+=2,a.dst=[e,g,d]}}else if(a.kind==="rule"){if(u+=`${f}${a.selector} { +`,r){i+=f.length;let g=i;i+=a.selector.length,i+=1;let d=i;a.dst=[e,g,d],i+=2}for(let g of a.nodes)u+=n(g,c+1);u+=`${f}} +`,r&&(i+=f.length,i+=2)}else if(a.kind==="at-rule"){if(a.nodes.length===0){let g=`${f}${a.name} ${a.params}; +`;if(r){i+=f.length;let d=i;i+=a.name.length,i+=1,i+=a.params.length;let m=i;i+=2,a.dst=[e,d,m]}return g}if(u+=`${f}${a.name}${a.params?` ${a.params} `:" "}{ +`,r){i+=f.length;let g=i;i+=a.name.length,a.params&&(i+=1,i+=a.params.length),i+=1;let d=i;a.dst=[e,g,d],i+=2}for(let g of a.nodes)u+=n(g,c+1);u+=`${f}} +`,r&&(i+=f.length,i+=2)}else if(a.kind==="comment"){if(u+=`${f}/*${a.value}*/ +`,r){i+=f.length;let g=i;i+=2+a.value.length+2;let d=i;a.dst=[e,g,d],i+=1}}else if(a.kind==="context"||a.kind==="at-root")return"";return u}let s="";for(let a of t)s+=n(a,0);return e.code=s,s}function ji(t,r){let i=[];return z(t,(e,{path:n})=>{if(r(e))return i=[...n],2}),i}function ar(t,r,i,e=new Set){if(e.has(t)||(e.add(t),r.getOptions(t)&24))return!0;{let s=i.get(t)??[];for(let a of s)if(ar(a,r,i,e))return!0}return!1}function lr(t){return t.split(/[\s,]+/)}var Nt=["calc","min","max","clamp","mod","rem","sin","cos","tan","asin","acos","atan","atan2","pow","sqrt","hypot","log","exp","round"],rt=["anchor-size"],sr=new RegExp(`(${rt.join("|")})\\(`,"g");function Ke(t){return t.indexOf("(")!==-1&&Nt.some(r=>t.includes(`${r}(`))}function ur(t){if(!Nt.some(n=>t.includes(n)))return t;let r=!1;rt.some(n=>t.includes(n))&&(sr.lastIndex=0,t=t.replace(sr,(n,s)=>(r=!0,`$${rt.indexOf(s)}$(`)));let i="",e=[];for(let n=0;n=0;u--){let f=t.charCodeAt(u);if(f>=48&&f<=57)a=u;else if(f>=97&&f<=122)a=u;else break}let c=t.slice(a,n);if(Nt.includes(c)){e.unshift(!0);continue}else if(e[0]&&c===""){e.unshift(!0);continue}e.unshift(!1);continue}else if(s===")")i+=s,e.shift();else if(s===","&&e[0]){i+=", ";continue}else{if(s===" "&&e[0]&&i[i.length-1]===" ")continue;if((s==="+"||s==="*"||s==="/"||s==="-")&&e[0]){let a=i.trimEnd(),c=a[a.length-1];if(c==="+"||c==="*"||c==="/"||c==="-"){i+=s;continue}else if(c==="("||c===","){i+=s;continue}else t[n-1]===" "?i+=`${s} `:i+=` ${s} `}else if(e[0]&&t.startsWith("to-zero",n)){let a=n;n+=7,i+=t.slice(a,n+1)}else i+=s}}return r?i.replace(/\$(\d+)\$/g,(n,s)=>rt[s]??n):i}function me(t){if(t.indexOf("(")===-1)return $e(t);let r=q(t);return Vt(r),t=J(r),t=ur(t),t}function $e(t,r=!1){let i="";for(let e=0;e0&&n===St[r-1]&&r--;break;case 59:if(r===0)return!1;break}}return!0}var it=new Uint8Array(256);function K(t,r){let i=0,e=[],n=0,s=t.length,a=r.charCodeAt(0);for(let c=0;c0&&u===it[i-1]&&i--;break}}return e.push(t.slice(n)),e}var zi=58,cr=45,fr=97,pr=122;function*dr(t,r){let i=K(t,":");if(r.theme.prefix){if(i.length===1||i[0]!==r.theme.prefix)return null;i.shift()}let e=i.pop(),n=[];for(let d=i.length-1;d>=0;--d){let m=r.parseVariant(i[d]);if(m===null)return;n.push(m)}let s=!1;e[e.length-1]==="!"?(s=!0,e=e.slice(0,-1)):e[0]==="!"&&(s=!0,e=e.slice(1)),r.utilities.has(e,"static")&&!e.includes("[")&&(yield{kind:"static",root:e,variants:n,important:s,raw:t});let[a,c=null,u]=K(e,"/");if(u)return;let f=c===null?null:Tt(c);if(c!==null&&f===null)return;if(a[0]==="["){if(a[a.length-1]!=="]")return;let d=a.charCodeAt(1);if(d!==cr&&!(d>=fr&&d<=pr))return;a=a.slice(1,-1);let m=a.indexOf(":");if(m===-1||m===0||m===a.length-1)return;let w=a.slice(0,m),v=me(a.slice(m+1));if(!ce(v))return;yield{kind:"arbitrary",property:w,value:v,modifier:f,variants:n,important:s,raw:t};return}let g;if(a[a.length-1]==="]"){let d=a.indexOf("-[");if(d===-1)return;let m=a.slice(0,d);if(!r.utilities.has(m,"functional"))return;let w=a.slice(d+1);g=[[m,w]]}else if(a[a.length-1]===")"){let d=a.indexOf("-(");if(d===-1)return;let m=a.slice(0,d);if(!r.utilities.has(m,"functional"))return;let w=a.slice(d+2,-1),v=K(w,":"),x=null;if(v.length===2&&(x=v[0],w=v[1]),w[0]!=="-"||w[1]!=="-"||!ce(w))return;g=[[m,x===null?`[var(${w})]`:`[${x}:var(${w})]`]]}else g=gr(a,d=>r.utilities.has(d,"functional"));for(let[d,m]of g){let w={kind:"functional",root:d,modifier:f,value:null,variants:n,important:s,raw:t};if(m===null){yield w;continue}{let v=m.indexOf("[");if(v!==-1){if(m[m.length-1]!=="]")return;let y=me(m.slice(v+1,-1));if(!ce(y))continue;let V="";for(let b=0;b=fr&&S<=pr))break}if(y.length===0||y.trim().length===0)continue;w.value={kind:"arbitrary",dataType:V||null,value:y}}else{let y=c===null||w.modifier?.kind==="arbitrary"?null:`${m}/${c}`;w.value={kind:"named",value:m,fraction:y}}}yield w}}function Tt(t){if(t[0]==="["&&t[t.length-1]==="]"){let r=me(t.slice(1,-1));return!ce(r)||r.length===0||r.trim().length===0?null:{kind:"arbitrary",value:r}}return t[0]==="("&&t[t.length-1]===")"?(t=t.slice(1,-1),t[0]!=="-"||t[1]!=="-"||!ce(t)?null:(t=`var(${t})`,{kind:"arbitrary",value:me(t)})):{kind:"named",value:t}}function mr(t,r){if(t[0]==="["&&t[t.length-1]==="]"){if(t[1]==="@"&&t.includes("&"))return null;let i=me(t.slice(1,-1));if(!ce(i)||i.length===0||i.trim().length===0)return null;let e=i[0]===">"||i[0]==="+"||i[0]==="~";return!e&&i[0]!=="@"&&!i.includes("&")&&(i=`&:is(${i})`),{kind:"arbitrary",selector:i,relative:e}}{let[i,e=null,n]=K(t,"/");if(n)return null;let s=gr(i,a=>r.variants.has(a));for(let[a,c]of s)switch(r.variants.kind(a)){case"static":return c!==null||e!==null?null:{kind:"static",root:a};case"functional":{let u=e===null?null:Tt(e);if(e!==null&&u===null)return null;if(c===null)return{kind:"functional",root:a,modifier:u,value:null};if(c[c.length-1]==="]"){if(c[0]!=="[")continue;let f=me(c.slice(1,-1));return!ce(f)||f.length===0||f.trim().length===0?null:{kind:"functional",root:a,modifier:u,value:{kind:"arbitrary",value:f}}}if(c[c.length-1]===")"){if(c[0]!=="(")continue;let f=me(c.slice(1,-1));return!ce(f)||f.length===0||f.trim().length===0||f[0]!=="-"||f[1]!=="-"?null:{kind:"functional",root:a,modifier:u,value:{kind:"arbitrary",value:`var(${f})`}}}return{kind:"functional",root:a,modifier:u,value:{kind:"named",value:c}}}case"compound":{if(c===null)return null;let u=r.parseVariant(c);if(u===null||!r.variants.compoundsWith(a,u))return null;let f=e===null?null:Tt(e);return e!==null&&f===null?null:{kind:"compound",root:a,modifier:f,variant:u}}}}return null}function*gr(t,r){r(t)&&(yield[t,null]);let i=t.lastIndexOf("-");for(;i>0;){let e=t.slice(0,i);if(r(e)){let n=[e,t.slice(i+1)];if(n[1]==="")break;yield n}i=t.lastIndexOf("-",i-1)}t[0]==="@"&&r("@")&&(yield["@",t.slice(1)])}function hr(t,r){let i=[];for(let n of r.variants)i.unshift(nt(n));t.theme.prefix&&i.unshift(t.theme.prefix);let e="";if(r.kind==="static"&&(e+=r.root),r.kind==="functional"&&(e+=r.root,r.value))if(r.value.kind==="arbitrary"){if(r.value!==null){let n=Rt(r.value.value),s=n?r.value.value.slice(4,-1):r.value.value,[a,c]=n?["(",")"]:["[","]"];r.value.dataType?e+=`-${a}${r.value.dataType}:${Ne(s)}${c}`:e+=`-${a}${Ne(s)}${c}`}}else r.value.kind==="named"&&(e+=`-${r.value.value}`);return r.kind==="arbitrary"&&(e+=`[${r.property}:${Ne(r.value)}]`),(r.kind==="arbitrary"||r.kind==="functional")&&(e+=vr(r.modifier)),r.important&&(e+="!"),i.push(e),i.join(":")}function vr(t){if(t===null)return"";let r=Rt(t.value),i=r?t.value.slice(4,-1):t.value,[e,n]=r?["(",")"]:["[","]"];return t.kind==="arbitrary"?`/${e}${Ne(i)}${n}`:t.kind==="named"?`/${t.value}`:""}function nt(t){if(t.kind==="static")return t.root;if(t.kind==="arbitrary")return`[${Ne(Mi(t.selector))}]`;let r="";if(t.kind==="functional"){r+=t.root;let i=t.root!=="@";if(t.value)if(t.value.kind==="arbitrary"){let e=Rt(t.value.value),n=e?t.value.value.slice(4,-1):t.value.value,[s,a]=e?["(",")"]:["[","]"];r+=`${i?"-":""}${s}${Ne(n)}${a}`}else t.value.kind==="named"&&(r+=`${i?"-":""}${t.value.value}`)}return t.kind==="compound"&&(r+=t.root,r+="-",r+=nt(t.variant)),(t.kind==="functional"||t.kind==="compound")&&(r+=vr(t.modifier)),r}var Ii=new B(t=>{let r=q(t),i=new Set;return ee(r,(e,{parent:n})=>{let s=n===null?r:n.nodes??[];if(e.kind==="word"&&(e.value==="+"||e.value==="-"||e.value==="*"||e.value==="/")){let a=s.indexOf(e)??-1;if(a===-1)return;let c=s[a-1];if(c?.kind!=="separator"||c.value!==" ")return;let u=s[a+1];if(u?.kind!=="separator"||u.value!==" ")return;i.add(c),i.add(u)}else e.kind==="separator"&&e.value.trim()==="/"?e.value="/":e.kind==="separator"&&e.value.length>0&&e.value.trim()===""?(s[0]===e||s[s.length-1]===e)&&i.add(e):e.kind==="separator"&&e.value.trim()===","&&(e.value=",")}),i.size>0&&ee(r,(e,{replaceWith:n})=>{i.has(e)&&(i.delete(e),n([]))}),Et(r),J(r)});function Ne(t){return Ii.get(t)}var Fi=new B(t=>{let r=q(t);return r.length===3&&r[0].kind==="word"&&r[0].value==="&"&&r[1].kind==="separator"&&r[1].value===":"&&r[2].kind==="function"&&r[2].value==="is"?J(r[2].nodes):t});function Mi(t){return Fi.get(t)}function Et(t){for(let r of t)switch(r.kind){case"function":{if(r.value==="url"||r.value.endsWith("_url")){r.value=De(r.value);break}if(r.value==="var"||r.value.endsWith("_var")||r.value==="theme"||r.value.endsWith("_theme")){r.value=De(r.value);for(let i=0;i{let r=q(t);return r.length===1&&r[0].kind==="function"&&r[0].value==="var"});function Rt(t){return Wi.get(t)}function Bi(t){throw new Error(`Unexpected value: ${t}`)}function De(t){return t.replaceAll("_",String.raw`\_`).replaceAll(" ","_")}function ye(t,r,i){if(t===r)return 0;let e=t.indexOf("("),n=r.indexOf("("),s=e===-1?t.replace(/[\d.]+/g,""):t.slice(0,e),a=n===-1?r.replace(/[\d.]+/g,""):r.slice(0,n),c=(s===a?0:sot(r)||br(r)||r==="thin"||r==="medium"||r==="thick")}var Qi=/^(?:element|image|cross-fade|image-set)\(/,Zi=/^(repeating-)?(conic|linear|radial)-gradient\(/;function Xi(t){let r=0;for(let i of K(t,","))if(!i.startsWith("var(")){if(kr(i)){r+=1;continue}if(Zi.test(i)){r+=1;continue}if(Qi.test(i)){r+=1;continue}return!1}return r>0}function en(t){return t==="serif"||t==="sans-serif"||t==="monospace"||t==="cursive"||t==="fantasy"||t==="system-ui"||t==="ui-serif"||t==="ui-sans-serif"||t==="ui-monospace"||t==="ui-rounded"||t==="math"||t==="emoji"||t==="fangsong"}function tn(t){let r=0;for(let i of K(t,",")){let e=i.charCodeAt(0);if(e>=48&&e<=57)return!1;i.startsWith("var(")||(r+=1)}return r>0}function rn(t){return t==="xx-small"||t==="x-small"||t==="small"||t==="medium"||t==="large"||t==="x-large"||t==="xx-large"||t==="xxx-large"}function nn(t){return t==="larger"||t==="smaller"}var fe=/[+-]?\d*\.?\d+(?:[eE][+-]?\d+)?/,on=new RegExp(`^${fe.source}$`);function br(t){return on.test(t)||Ke(t)}var ln=new RegExp(`^${fe.source}%$`);function Pt(t){return ln.test(t)||Ke(t)}var an=new RegExp(`^${fe.source}s*/s*${fe.source}$`);function sn(t){return an.test(t)||Ke(t)}var un=["cm","mm","Q","in","pc","pt","px","em","ex","ch","rem","lh","rlh","vw","vh","vmin","vmax","vb","vi","svw","svh","lvw","lvh","dvw","dvh","cqw","cqh","cqi","cqb","cqmin","cqmax"],cn=new RegExp(`^${fe.source}(${un.join("|")})$`);function ot(t){return cn.test(t)||Ke(t)}function fn(t){let r=0;for(let i of K(t," ")){if(i==="center"||i==="top"||i==="right"||i==="bottom"||i==="left"){r+=1;continue}if(!i.startsWith("var(")){if(ot(i)||Pt(i)){r+=1;continue}return!1}}return r>0}function pn(t){let r=0;for(let i of K(t,",")){if(i==="cover"||i==="contain"){r+=1;continue}let e=K(i," ");if(e.length!==1&&e.length!==2)return!1;if(e.every(n=>n==="auto"||ot(n)||Pt(n))){r+=1;continue}}return r>0}var dn=["deg","rad","grad","turn"],mn=new RegExp(`^${fe.source}(${dn.join("|")})$`);function gn(t){return mn.test(t)}var hn=new RegExp(`^${fe.source} +${fe.source} +${fe.source}$`);function vn(t){return hn.test(t)}function E(t){let r=Number(t);return Number.isInteger(r)&&r>=0&&String(r)===String(t)}function Ot(t){let r=Number(t);return Number.isInteger(r)&&r>0&&String(r)===String(t)}function xe(t){return yr(t,.25)}function lt(t){return yr(t,.25)}function yr(t,r){let i=Number(t);return i>=0&&i%r===0&&String(i)===String(t)}var wn=new Set(["inset","inherit","initial","revert","unset"]),xr=/^-?(\d+|\.\d+)(.*?)$/g;function Ue(t,r){return K(t,",").map(e=>{e=e.trim();let n=K(e," ").filter(f=>f.trim()!==""),s=null,a=null,c=null;for(let f of n)wn.has(f)||(xr.test(f)?(a===null?a=f:c===null&&(c=f),xr.lastIndex=0):s===null&&(s=f));if(a===null||c===null)return e;let u=r(s??"currentcolor");return s!==null?e.replace(s,u):`${e} ${u}`}).join(", ")}var kn=/^-?[a-z][a-zA-Z0-9/%._-]*$/,bn=/^-?[a-z][a-zA-Z0-9/%._-]*-\*$/,st=["0","0.5","1","1.5","2","2.5","3","3.5","4","5","6","7","8","9","10","11","12","14","16","20","24","28","32","36","40","44","48","52","56","60","64","72","80","96"],_t=class{utilities=new B(()=>[]);completions=new Map;static(r,i){this.utilities.get(r).push({kind:"static",compileFn:i})}functional(r,i,e){this.utilities.get(r).push({kind:"functional",compileFn:i,options:e})}has(r,i){return this.utilities.has(r)&&this.utilities.get(r).some(e=>e.kind===i)}get(r){return this.utilities.has(r)?this.utilities.get(r):[]}getCompletions(r){return this.completions.get(r)?.()??[]}suggest(r,i){this.completions.set(r,i)}keys(r){let i=[];for(let[e,n]of this.utilities.entries())for(let s of n)if(s.kind===r){i.push(e);break}return i}};function $(t,r,i){return F("@property",t,[l("syntax",i?`"${i}"`:'"*"'),l("inherits","false"),...r?[l("initial-value",r)]:[]])}function Z(t,r){if(r===null)return t;let i=Number(r);return Number.isNaN(i)||(r=`${i*100}%`),r==="100%"?t:`color-mix(in oklab, ${t} ${r}, transparent)`}function Cr(t,r){let i=Number(r);return Number.isNaN(i)||(r=`${i*100}%`),`oklab(from ${t} l a b / ${r})`}function X(t,r,i){if(!r)return t;if(r.kind==="arbitrary")return Z(t,r.value);let e=i.resolve(r.value,["--opacity"]);return e?Z(t,e):lt(r.value)?Z(t,`${r.value}%`):null}function te(t,r,i){let e=null;switch(t.value.value){case"inherit":{e="inherit";break}case"transparent":{e="transparent";break}case"current":{e="currentcolor";break}default:{e=r.resolve(t.value.value,i);break}}return e?X(e,t.modifier,r):null}var $r=/(\d+)_(\d+)/g;function Nr(t){let r=new _t;function i(o,p){function*h(k){for(let C of t.keysInNamespaces(k))yield C.replace($r,(O,N,T)=>`${N}.${T}`)}let A=["1/2","1/3","2/3","1/4","2/4","3/4","1/5","2/5","3/5","4/5","1/6","2/6","3/6","4/6","5/6","1/12","2/12","3/12","4/12","5/12","6/12","7/12","8/12","9/12","10/12","11/12"];r.suggest(o,()=>{let k=[];for(let C of p()){if(typeof C=="string"){k.push({values:[C],modifiers:[]});continue}let O=[...C.values??[],...h(C.valueThemeKeys??[])],N=[...C.modifiers??[],...h(C.modifierThemeKeys??[])];C.supportsFractions&&O.push(...A),C.hasDefaultValue&&O.unshift(null),k.push({supportsNegative:C.supportsNegative,values:O,modifiers:N})}return k})}function e(o,p){r.static(o,()=>p.map(h=>typeof h=="function"?h():l(h[0],h[1])))}function n(o,p){function h({negative:A}){return k=>{let C=null,O=null;if(k.value)if(k.value.kind==="arbitrary"){if(k.modifier)return;C=k.value.value,O=k.value.dataType}else{if(C=t.resolve(k.value.fraction??k.value.value,p.themeKeys??[]),C===null&&p.supportsFractions&&k.value.fraction){let[N,T]=K(k.value.fraction,"/");if(!E(N)||!E(T))return;C=`calc(${k.value.fraction} * 100%)`}if(C===null&&A&&p.handleNegativeBareValue){if(C=p.handleNegativeBareValue(k.value),!C?.includes("/")&&k.modifier)return;if(C!==null)return p.handle(C,null)}if(C===null&&p.handleBareValue&&(C=p.handleBareValue(k.value),!C?.includes("/")&&k.modifier))return}else{if(k.modifier)return;C=p.defaultValue!==void 0?p.defaultValue:t.resolve(null,p.themeKeys??[])}if(C!==null)return p.handle(A?`calc(${C} * -1)`:C,O)}}p.supportsNegative&&r.functional(`-${o}`,h({negative:!0})),r.functional(o,h({negative:!1})),i(o,()=>[{supportsNegative:p.supportsNegative,valueThemeKeys:p.themeKeys??[],hasDefaultValue:p.defaultValue!==void 0&&p.defaultValue!==null,supportsFractions:p.supportsFractions}])}function s(o,p){r.functional(o,h=>{if(!h.value)return;let A=null;if(h.value.kind==="arbitrary"?(A=h.value.value,A=X(A,h.modifier,t)):A=te(h,t,p.themeKeys),A!==null)return p.handle(A)}),i(o,()=>[{values:["current","inherit","transparent"],valueThemeKeys:p.themeKeys,modifiers:Array.from({length:21},(h,A)=>`${A*5}`)}])}function a(o,p,h,{supportsNegative:A=!1,supportsFractions:k=!1}={}){A&&r.static(`-${o}-px`,()=>h("-1px")),r.static(`${o}-px`,()=>h("1px")),n(o,{themeKeys:p,supportsFractions:k,supportsNegative:A,defaultValue:null,handleBareValue:({value:C})=>{let O=t.resolve(null,["--spacing"]);return!O||!xe(C)?null:`calc(${O} * ${C})`},handleNegativeBareValue:({value:C})=>{let O=t.resolve(null,["--spacing"]);return!O||!xe(C)?null:`calc(${O} * -${C})`},handle:h}),i(o,()=>[{values:t.get(["--spacing"])?st:[],supportsNegative:A,supportsFractions:k,valueThemeKeys:p}])}e("sr-only",[["position","absolute"],["width","1px"],["height","1px"],["padding","0"],["margin","-1px"],["overflow","hidden"],["clip","rect(0, 0, 0, 0)"],["white-space","nowrap"],["border-width","0"]]),e("not-sr-only",[["position","static"],["width","auto"],["height","auto"],["padding","0"],["margin","0"],["overflow","visible"],["clip","auto"],["white-space","normal"]]),e("pointer-events-none",[["pointer-events","none"]]),e("pointer-events-auto",[["pointer-events","auto"]]),e("visible",[["visibility","visible"]]),e("invisible",[["visibility","hidden"]]),e("collapse",[["visibility","collapse"]]),e("static",[["position","static"]]),e("fixed",[["position","fixed"]]),e("absolute",[["position","absolute"]]),e("relative",[["position","relative"]]),e("sticky",[["position","sticky"]]);for(let[o,p]of[["inset","inset"],["inset-x","inset-inline"],["inset-y","inset-block"],["start","inset-inline-start"],["end","inset-inline-end"],["top","top"],["right","right"],["bottom","bottom"],["left","left"]])e(`${o}-auto`,[[p,"auto"]]),e(`${o}-full`,[[p,"100%"]]),e(`-${o}-full`,[[p,"-100%"]]),a(o,["--inset","--spacing"],h=>[l(p,h)],{supportsNegative:!0,supportsFractions:!0});e("isolate",[["isolation","isolate"]]),e("isolation-auto",[["isolation","auto"]]),e("z-auto",[["z-index","auto"]]),n("z",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--z-index"],handle:o=>[l("z-index",o)]}),i("z",()=>[{supportsNegative:!0,values:["0","10","20","30","40","50"],valueThemeKeys:["--z-index"]}]),e("order-first",[["order","-9999"]]),e("order-last",[["order","9999"]]),n("order",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--order"],handle:o=>[l("order",o)]}),i("order",()=>[{supportsNegative:!0,values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:["--order"]}]),e("col-auto",[["grid-column","auto"]]),n("col",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-column"],handle:o=>[l("grid-column",o)]}),e("col-span-full",[["grid-column","1 / -1"]]),n("col-span",{handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("grid-column",`span ${o} / span ${o}`)]}),e("col-start-auto",[["grid-column-start","auto"]]),n("col-start",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-column-start"],handle:o=>[l("grid-column-start",o)]}),e("col-end-auto",[["grid-column-end","auto"]]),n("col-end",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-column-end"],handle:o=>[l("grid-column-end",o)]}),i("col-span",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:[]}]),i("col-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-column-start"]}]),i("col-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-column-end"]}]),e("row-auto",[["grid-row","auto"]]),n("row",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-row"],handle:o=>[l("grid-row",o)]}),e("row-span-full",[["grid-row","1 / -1"]]),n("row-span",{themeKeys:[],handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("grid-row",`span ${o} / span ${o}`)]}),e("row-start-auto",[["grid-row-start","auto"]]),n("row-start",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-row-start"],handle:o=>[l("grid-row-start",o)]}),e("row-end-auto",[["grid-row-end","auto"]]),n("row-end",{supportsNegative:!0,handleBareValue:({value:o})=>E(o)?o:null,themeKeys:["--grid-row-end"],handle:o=>[l("grid-row-end",o)]}),i("row-span",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:[]}]),i("row-start",()=>[{supportsNegative:!0,values:Array.from({length:13},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-row-start"]}]),i("row-end",()=>[{supportsNegative:!0,values:Array.from({length:13},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-row-end"]}]),e("float-start",[["float","inline-start"]]),e("float-end",[["float","inline-end"]]),e("float-right",[["float","right"]]),e("float-left",[["float","left"]]),e("float-none",[["float","none"]]),e("clear-start",[["clear","inline-start"]]),e("clear-end",[["clear","inline-end"]]),e("clear-right",[["clear","right"]]),e("clear-left",[["clear","left"]]),e("clear-both",[["clear","both"]]),e("clear-none",[["clear","none"]]);for(let[o,p]of[["m","margin"],["mx","margin-inline"],["my","margin-block"],["ms","margin-inline-start"],["me","margin-inline-end"],["mt","margin-top"],["mr","margin-right"],["mb","margin-bottom"],["ml","margin-left"]])e(`${o}-auto`,[[p,"auto"]]),a(o,["--margin","--spacing"],h=>[l(p,h)],{supportsNegative:!0});e("box-border",[["box-sizing","border-box"]]),e("box-content",[["box-sizing","content-box"]]),e("line-clamp-none",[["overflow","visible"],["display","block"],["-webkit-box-orient","horizontal"],["-webkit-line-clamp","unset"]]),n("line-clamp",{themeKeys:["--line-clamp"],handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("overflow","hidden"),l("display","-webkit-box"),l("-webkit-box-orient","vertical"),l("-webkit-line-clamp",o)]}),i("line-clamp",()=>[{values:["1","2","3","4","5","6"],valueThemeKeys:["--line-clamp"]}]),e("block",[["display","block"]]),e("inline-block",[["display","inline-block"]]),e("inline",[["display","inline"]]),e("hidden",[["display","none"]]),e("inline-flex",[["display","inline-flex"]]),e("table",[["display","table"]]),e("inline-table",[["display","inline-table"]]),e("table-caption",[["display","table-caption"]]),e("table-cell",[["display","table-cell"]]),e("table-column",[["display","table-column"]]),e("table-column-group",[["display","table-column-group"]]),e("table-footer-group",[["display","table-footer-group"]]),e("table-header-group",[["display","table-header-group"]]),e("table-row-group",[["display","table-row-group"]]),e("table-row",[["display","table-row"]]),e("flow-root",[["display","flow-root"]]),e("flex",[["display","flex"]]),e("grid",[["display","grid"]]),e("inline-grid",[["display","inline-grid"]]),e("contents",[["display","contents"]]),e("list-item",[["display","list-item"]]),e("field-sizing-content",[["field-sizing","content"]]),e("field-sizing-fixed",[["field-sizing","fixed"]]),e("aspect-auto",[["aspect-ratio","auto"]]),e("aspect-square",[["aspect-ratio","1 / 1"]]),n("aspect",{themeKeys:["--aspect"],handleBareValue:({fraction:o})=>{if(o===null)return null;let[p,h]=K(o,"/");return!E(p)||!E(h)?null:o},handle:o=>[l("aspect-ratio",o)]});for(let[o,p]of[["full","100%"],["svw","100svw"],["lvw","100lvw"],["dvw","100dvw"],["svh","100svh"],["lvh","100lvh"],["dvh","100dvh"],["min","min-content"],["max","max-content"],["fit","fit-content"]])e(`size-${o}`,[["--tw-sort","size"],["width",p],["height",p]]),e(`w-${o}`,[["width",p]]),e(`h-${o}`,[["height",p]]),e(`min-w-${o}`,[["min-width",p]]),e(`min-h-${o}`,[["min-height",p]]),e(`max-w-${o}`,[["max-width",p]]),e(`max-h-${o}`,[["max-height",p]]);e("size-auto",[["--tw-sort","size"],["width","auto"],["height","auto"]]),e("w-auto",[["width","auto"]]),e("h-auto",[["height","auto"]]),e("min-w-auto",[["min-width","auto"]]),e("min-h-auto",[["min-height","auto"]]),e("h-lh",[["height","1lh"]]),e("min-h-lh",[["min-height","1lh"]]),e("max-h-lh",[["max-height","1lh"]]),e("w-screen",[["width","100vw"]]),e("min-w-screen",[["min-width","100vw"]]),e("max-w-screen",[["max-width","100vw"]]),e("h-screen",[["height","100vh"]]),e("min-h-screen",[["min-height","100vh"]]),e("max-h-screen",[["max-height","100vh"]]),e("max-w-none",[["max-width","none"]]),e("max-h-none",[["max-height","none"]]),a("size",["--size","--spacing"],o=>[l("--tw-sort","size"),l("width",o),l("height",o)],{supportsFractions:!0});for(let[o,p,h]of[["w",["--width","--spacing","--container"],"width"],["min-w",["--min-width","--spacing","--container"],"min-width"],["max-w",["--max-width","--spacing","--container"],"max-width"],["h",["--height","--spacing"],"height"],["min-h",["--min-height","--height","--spacing"],"min-height"],["max-h",["--max-height","--height","--spacing"],"max-height"]])a(o,p,A=>[l(h,A)],{supportsFractions:!0});r.static("container",()=>{let o=[...t.namespace("--breakpoint").values()];o.sort((h,A)=>ye(h,A,"asc"));let p=[l("--tw-sort","--tw-container-component"),l("width","100%")];for(let h of o)p.push(F("@media",`(width >= ${h})`,[l("max-width",h)]));return p}),e("flex-auto",[["flex","auto"]]),e("flex-initial",[["flex","0 auto"]]),e("flex-none",[["flex","none"]]),r.functional("flex",o=>{if(o.value){if(o.value.kind==="arbitrary")return o.modifier?void 0:[l("flex",o.value.value)];if(o.value.fraction){let[p,h]=K(o.value.fraction,"/");return!E(p)||!E(h)?void 0:[l("flex",`calc(${o.value.fraction} * 100%)`)]}if(E(o.value.value))return o.modifier?void 0:[l("flex",o.value.value)]}}),i("flex",()=>[{supportsFractions:!0}]),n("shrink",{defaultValue:"1",handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("flex-shrink",o)]}),n("grow",{defaultValue:"1",handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("flex-grow",o)]}),i("shrink",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),i("grow",()=>[{values:["0"],valueThemeKeys:[],hasDefaultValue:!0}]),e("basis-auto",[["flex-basis","auto"]]),e("basis-full",[["flex-basis","100%"]]),a("basis",["--flex-basis","--spacing","--container"],o=>[l("flex-basis",o)],{supportsFractions:!0}),e("table-auto",[["table-layout","auto"]]),e("table-fixed",[["table-layout","fixed"]]),e("caption-top",[["caption-side","top"]]),e("caption-bottom",[["caption-side","bottom"]]),e("border-collapse",[["border-collapse","collapse"]]),e("border-separate",[["border-collapse","separate"]]);let c=()=>I([$("--tw-border-spacing-x","0",""),$("--tw-border-spacing-y","0","")]);a("border-spacing",["--border-spacing","--spacing"],o=>[c(),l("--tw-border-spacing-x",o),l("--tw-border-spacing-y",o),l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-x",["--border-spacing","--spacing"],o=>[c(),l("--tw-border-spacing-x",o),l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),a("border-spacing-y",["--border-spacing","--spacing"],o=>[c(),l("--tw-border-spacing-y",o),l("border-spacing","var(--tw-border-spacing-x) var(--tw-border-spacing-y)")]),e("origin-center",[["transform-origin","center"]]),e("origin-top",[["transform-origin","top"]]),e("origin-top-right",[["transform-origin","top right"]]),e("origin-right",[["transform-origin","right"]]),e("origin-bottom-right",[["transform-origin","bottom right"]]),e("origin-bottom",[["transform-origin","bottom"]]),e("origin-bottom-left",[["transform-origin","bottom left"]]),e("origin-left",[["transform-origin","left"]]),e("origin-top-left",[["transform-origin","top left"]]),n("origin",{themeKeys:["--transform-origin"],handle:o=>[l("transform-origin",o)]}),e("perspective-origin-center",[["perspective-origin","center"]]),e("perspective-origin-top",[["perspective-origin","top"]]),e("perspective-origin-top-right",[["perspective-origin","top right"]]),e("perspective-origin-right",[["perspective-origin","right"]]),e("perspective-origin-bottom-right",[["perspective-origin","bottom right"]]),e("perspective-origin-bottom",[["perspective-origin","bottom"]]),e("perspective-origin-bottom-left",[["perspective-origin","bottom left"]]),e("perspective-origin-left",[["perspective-origin","left"]]),e("perspective-origin-top-left",[["perspective-origin","top left"]]),n("perspective-origin",{themeKeys:["--perspective-origin"],handle:o=>[l("perspective-origin",o)]}),e("perspective-none",[["perspective","none"]]),n("perspective",{themeKeys:["--perspective"],handle:o=>[l("perspective",o)]});let u=()=>I([$("--tw-translate-x","0"),$("--tw-translate-y","0"),$("--tw-translate-z","0")]);e("translate-none",[["translate","none"]]),e("-translate-full",[u,["--tw-translate-x","-100%"],["--tw-translate-y","-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e("translate-full",[u,["--tw-translate-x","100%"],["--tw-translate-y","100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a("translate",["--translate","--spacing"],o=>[u(),l("--tw-translate-x",o),l("--tw-translate-y",o),l("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});for(let o of["x","y"])e(`-translate-${o}-full`,[u,[`--tw-translate-${o}`,"-100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),e(`translate-${o}-full`,[u,[`--tw-translate-${o}`,"100%"],["translate","var(--tw-translate-x) var(--tw-translate-y)"]]),a(`translate-${o}`,["--translate","--spacing"],p=>[u(),l(`--tw-translate-${o}`,p),l("translate","var(--tw-translate-x) var(--tw-translate-y)")],{supportsNegative:!0,supportsFractions:!0});a("translate-z",["--translate","--spacing"],o=>[u(),l("--tw-translate-z",o),l("translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)")],{supportsNegative:!0}),e("translate-3d",[u,["translate","var(--tw-translate-x) var(--tw-translate-y) var(--tw-translate-z)"]]);let f=()=>I([$("--tw-scale-x","1"),$("--tw-scale-y","1"),$("--tw-scale-z","1")]);e("scale-none",[["scale","none"]]);function g({negative:o}){return p=>{if(!p.value||p.modifier)return;let h;return p.value.kind==="arbitrary"?(h=p.value.value,h=o?`calc(${h} * -1)`:h,[l("scale",h)]):(h=t.resolve(p.value.value,["--scale"]),!h&&E(p.value.value)&&(h=`${p.value.value}%`),h?(h=o?`calc(${h} * -1)`:h,[f(),l("--tw-scale-x",h),l("--tw-scale-y",h),l("--tw-scale-z",h),l("scale","var(--tw-scale-x) var(--tw-scale-y)")]):void 0)}}r.functional("-scale",g({negative:!0})),r.functional("scale",g({negative:!1})),i("scale",()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);for(let o of["x","y","z"])n(`scale-${o}`,{supportsNegative:!0,themeKeys:["--scale"],handleBareValue:({value:p})=>E(p)?`${p}%`:null,handle:p=>[f(),l(`--tw-scale-${o}`,p),l("scale",`var(--tw-scale-x) var(--tw-scale-y)${o==="z"?" var(--tw-scale-z)":""}`)]}),i(`scale-${o}`,()=>[{supportsNegative:!0,values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--scale"]}]);e("scale-3d",[f,["scale","var(--tw-scale-x) var(--tw-scale-y) var(--tw-scale-z)"]]),e("rotate-none",[["rotate","none"]]);function d({negative:o}){return p=>{if(!p.value||p.modifier)return;let h;if(p.value.kind==="arbitrary"){h=p.value.value;let A=p.value.dataType??Y(h,["angle","vector"]);if(A==="vector")return[l("rotate",`${h} var(--tw-rotate)`)];if(A!=="angle")return[l("rotate",o?`calc(${h} * -1)`:h)]}else if(h=t.resolve(p.value.value,["--rotate"]),!h&&E(p.value.value)&&(h=`${p.value.value}deg`),!h)return;return[l("rotate",o?`calc(${h} * -1)`:h)]}}r.functional("-rotate",d({negative:!0})),r.functional("rotate",d({negative:!1})),i("rotate",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);{let o=["var(--tw-rotate-x,)","var(--tw-rotate-y,)","var(--tw-rotate-z,)","var(--tw-skew-x,)","var(--tw-skew-y,)"].join(" "),p=()=>I([$("--tw-rotate-x"),$("--tw-rotate-y"),$("--tw-rotate-z"),$("--tw-skew-x"),$("--tw-skew-y")]);for(let h of["x","y","z"])n(`rotate-${h}`,{supportsNegative:!0,themeKeys:["--rotate"],handleBareValue:({value:A})=>E(A)?`${A}deg`:null,handle:A=>[p(),l(`--tw-rotate-${h}`,`rotate${h.toUpperCase()}(${A})`),l("transform",o)]}),i(`rotate-${h}`,()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"],valueThemeKeys:["--rotate"]}]);n("skew",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:h})=>E(h)?`${h}deg`:null,handle:h=>[p(),l("--tw-skew-x",`skewX(${h})`),l("--tw-skew-y",`skewY(${h})`),l("transform",o)]}),n("skew-x",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:h})=>E(h)?`${h}deg`:null,handle:h=>[p(),l("--tw-skew-x",`skewX(${h})`),l("transform",o)]}),n("skew-y",{supportsNegative:!0,themeKeys:["--skew"],handleBareValue:({value:h})=>E(h)?`${h}deg`:null,handle:h=>[p(),l("--tw-skew-y",`skewY(${h})`),l("transform",o)]}),i("skew",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),i("skew-x",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),i("skew-y",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12"],valueThemeKeys:["--skew"]}]),r.functional("transform",h=>{if(h.modifier)return;let A=null;if(h.value?h.value.kind==="arbitrary"&&(A=h.value.value):A=o,A!==null)return[p(),l("transform",A)]}),i("transform",()=>[{hasDefaultValue:!0}]),e("transform-cpu",[["transform",o]]),e("transform-gpu",[["transform",`translateZ(0) ${o}`]]),e("transform-none",[["transform","none"]])}e("transform-flat",[["transform-style","flat"]]),e("transform-3d",[["transform-style","preserve-3d"]]),e("transform-content",[["transform-box","content-box"]]),e("transform-border",[["transform-box","border-box"]]),e("transform-fill",[["transform-box","fill-box"]]),e("transform-stroke",[["transform-box","stroke-box"]]),e("transform-view",[["transform-box","view-box"]]),e("backface-visible",[["backface-visibility","visible"]]),e("backface-hidden",[["backface-visibility","hidden"]]);for(let o of["auto","default","pointer","wait","text","move","help","not-allowed","none","context-menu","progress","cell","crosshair","vertical-text","alias","copy","no-drop","grab","grabbing","all-scroll","col-resize","row-resize","n-resize","e-resize","s-resize","w-resize","ne-resize","nw-resize","se-resize","sw-resize","ew-resize","ns-resize","nesw-resize","nwse-resize","zoom-in","zoom-out"])e(`cursor-${o}`,[["cursor",o]]);n("cursor",{themeKeys:["--cursor"],handle:o=>[l("cursor",o)]});for(let o of["auto","none","manipulation"])e(`touch-${o}`,[["touch-action",o]]);let m=()=>I([$("--tw-pan-x"),$("--tw-pan-y"),$("--tw-pinch-zoom")]);for(let o of["x","left","right"])e(`touch-pan-${o}`,[m,["--tw-pan-x",`pan-${o}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let o of["y","up","down"])e(`touch-pan-${o}`,[m,["--tw-pan-y",`pan-${o}`],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);e("touch-pinch-zoom",[m,["--tw-pinch-zoom","pinch-zoom"],["touch-action","var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,)"]]);for(let o of["none","text","all","auto"])e(`select-${o}`,[["-webkit-user-select",o],["user-select",o]]);e("resize-none",[["resize","none"]]),e("resize-x",[["resize","horizontal"]]),e("resize-y",[["resize","vertical"]]),e("resize",[["resize","both"]]),e("snap-none",[["scroll-snap-type","none"]]);let w=()=>I([$("--tw-scroll-snap-strictness","proximity","*")]);for(let o of["x","y","both"])e(`snap-${o}`,[w,["scroll-snap-type",`${o} var(--tw-scroll-snap-strictness)`]]);e("snap-mandatory",[w,["--tw-scroll-snap-strictness","mandatory"]]),e("snap-proximity",[w,["--tw-scroll-snap-strictness","proximity"]]),e("snap-align-none",[["scroll-snap-align","none"]]),e("snap-start",[["scroll-snap-align","start"]]),e("snap-end",[["scroll-snap-align","end"]]),e("snap-center",[["scroll-snap-align","center"]]),e("snap-normal",[["scroll-snap-stop","normal"]]),e("snap-always",[["scroll-snap-stop","always"]]);for(let[o,p]of[["scroll-m","scroll-margin"],["scroll-mx","scroll-margin-inline"],["scroll-my","scroll-margin-block"],["scroll-ms","scroll-margin-inline-start"],["scroll-me","scroll-margin-inline-end"],["scroll-mt","scroll-margin-top"],["scroll-mr","scroll-margin-right"],["scroll-mb","scroll-margin-bottom"],["scroll-ml","scroll-margin-left"]])a(o,["--scroll-margin","--spacing"],h=>[l(p,h)],{supportsNegative:!0});for(let[o,p]of[["scroll-p","scroll-padding"],["scroll-px","scroll-padding-inline"],["scroll-py","scroll-padding-block"],["scroll-ps","scroll-padding-inline-start"],["scroll-pe","scroll-padding-inline-end"],["scroll-pt","scroll-padding-top"],["scroll-pr","scroll-padding-right"],["scroll-pb","scroll-padding-bottom"],["scroll-pl","scroll-padding-left"]])a(o,["--scroll-padding","--spacing"],h=>[l(p,h)]);e("list-inside",[["list-style-position","inside"]]),e("list-outside",[["list-style-position","outside"]]),e("list-none",[["list-style-type","none"]]),e("list-disc",[["list-style-type","disc"]]),e("list-decimal",[["list-style-type","decimal"]]),n("list",{themeKeys:["--list-style-type"],handle:o=>[l("list-style-type",o)]}),e("list-image-none",[["list-style-image","none"]]),n("list-image",{themeKeys:["--list-style-image"],handle:o=>[l("list-style-image",o)]}),e("appearance-none",[["appearance","none"]]),e("appearance-auto",[["appearance","auto"]]),e("scheme-normal",[["color-scheme","normal"]]),e("scheme-dark",[["color-scheme","dark"]]),e("scheme-light",[["color-scheme","light"]]),e("scheme-light-dark",[["color-scheme","light dark"]]),e("scheme-only-dark",[["color-scheme","only dark"]]),e("scheme-only-light",[["color-scheme","only light"]]),e("columns-auto",[["columns","auto"]]),n("columns",{themeKeys:["--columns","--container"],handleBareValue:({value:o})=>E(o)?o:null,handle:o=>[l("columns",o)]}),i("columns",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:["--columns","--container"]}]);for(let o of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-before-${o}`,[["break-before",o]]);for(let o of["auto","avoid","avoid-page","avoid-column"])e(`break-inside-${o}`,[["break-inside",o]]);for(let o of["auto","avoid","all","avoid-page","page","left","right","column"])e(`break-after-${o}`,[["break-after",o]]);e("grid-flow-row",[["grid-auto-flow","row"]]),e("grid-flow-col",[["grid-auto-flow","column"]]),e("grid-flow-dense",[["grid-auto-flow","dense"]]),e("grid-flow-row-dense",[["grid-auto-flow","row dense"]]),e("grid-flow-col-dense",[["grid-auto-flow","column dense"]]),e("auto-cols-auto",[["grid-auto-columns","auto"]]),e("auto-cols-min",[["grid-auto-columns","min-content"]]),e("auto-cols-max",[["grid-auto-columns","max-content"]]),e("auto-cols-fr",[["grid-auto-columns","minmax(0, 1fr)"]]),n("auto-cols",{themeKeys:["--grid-auto-columns"],handle:o=>[l("grid-auto-columns",o)]}),e("auto-rows-auto",[["grid-auto-rows","auto"]]),e("auto-rows-min",[["grid-auto-rows","min-content"]]),e("auto-rows-max",[["grid-auto-rows","max-content"]]),e("auto-rows-fr",[["grid-auto-rows","minmax(0, 1fr)"]]),n("auto-rows",{themeKeys:["--grid-auto-rows"],handle:o=>[l("grid-auto-rows",o)]}),e("grid-cols-none",[["grid-template-columns","none"]]),e("grid-cols-subgrid",[["grid-template-columns","subgrid"]]),n("grid-cols",{themeKeys:["--grid-template-columns"],handleBareValue:({value:o})=>Ot(o)?`repeat(${o}, minmax(0, 1fr))`:null,handle:o=>[l("grid-template-columns",o)]}),e("grid-rows-none",[["grid-template-rows","none"]]),e("grid-rows-subgrid",[["grid-template-rows","subgrid"]]),n("grid-rows",{themeKeys:["--grid-template-rows"],handleBareValue:({value:o})=>Ot(o)?`repeat(${o}, minmax(0, 1fr))`:null,handle:o=>[l("grid-template-rows",o)]}),i("grid-cols",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-template-columns"]}]),i("grid-rows",()=>[{values:Array.from({length:12},(o,p)=>`${p+1}`),valueThemeKeys:["--grid-template-rows"]}]),e("flex-row",[["flex-direction","row"]]),e("flex-row-reverse",[["flex-direction","row-reverse"]]),e("flex-col",[["flex-direction","column"]]),e("flex-col-reverse",[["flex-direction","column-reverse"]]),e("flex-wrap",[["flex-wrap","wrap"]]),e("flex-nowrap",[["flex-wrap","nowrap"]]),e("flex-wrap-reverse",[["flex-wrap","wrap-reverse"]]),e("place-content-center",[["place-content","center"]]),e("place-content-start",[["place-content","start"]]),e("place-content-end",[["place-content","end"]]),e("place-content-center-safe",[["place-content","safe center"]]),e("place-content-end-safe",[["place-content","safe end"]]),e("place-content-between",[["place-content","space-between"]]),e("place-content-around",[["place-content","space-around"]]),e("place-content-evenly",[["place-content","space-evenly"]]),e("place-content-baseline",[["place-content","baseline"]]),e("place-content-stretch",[["place-content","stretch"]]),e("place-items-center",[["place-items","center"]]),e("place-items-start",[["place-items","start"]]),e("place-items-end",[["place-items","end"]]),e("place-items-center-safe",[["place-items","safe center"]]),e("place-items-end-safe",[["place-items","safe end"]]),e("place-items-baseline",[["place-items","baseline"]]),e("place-items-stretch",[["place-items","stretch"]]),e("content-normal",[["align-content","normal"]]),e("content-center",[["align-content","center"]]),e("content-start",[["align-content","flex-start"]]),e("content-end",[["align-content","flex-end"]]),e("content-center-safe",[["align-content","safe center"]]),e("content-end-safe",[["align-content","safe flex-end"]]),e("content-between",[["align-content","space-between"]]),e("content-around",[["align-content","space-around"]]),e("content-evenly",[["align-content","space-evenly"]]),e("content-baseline",[["align-content","baseline"]]),e("content-stretch",[["align-content","stretch"]]),e("items-center",[["align-items","center"]]),e("items-start",[["align-items","flex-start"]]),e("items-end",[["align-items","flex-end"]]),e("items-center-safe",[["align-items","safe center"]]),e("items-end-safe",[["align-items","safe flex-end"]]),e("items-baseline",[["align-items","baseline"]]),e("items-baseline-last",[["align-items","last baseline"]]),e("items-stretch",[["align-items","stretch"]]),e("justify-normal",[["justify-content","normal"]]),e("justify-center",[["justify-content","center"]]),e("justify-start",[["justify-content","flex-start"]]),e("justify-end",[["justify-content","flex-end"]]),e("justify-center-safe",[["justify-content","safe center"]]),e("justify-end-safe",[["justify-content","safe flex-end"]]),e("justify-between",[["justify-content","space-between"]]),e("justify-around",[["justify-content","space-around"]]),e("justify-evenly",[["justify-content","space-evenly"]]),e("justify-baseline",[["justify-content","baseline"]]),e("justify-stretch",[["justify-content","stretch"]]),e("justify-items-normal",[["justify-items","normal"]]),e("justify-items-center",[["justify-items","center"]]),e("justify-items-start",[["justify-items","start"]]),e("justify-items-end",[["justify-items","end"]]),e("justify-items-center-safe",[["justify-items","safe center"]]),e("justify-items-end-safe",[["justify-items","safe end"]]),e("justify-items-stretch",[["justify-items","stretch"]]),a("gap",["--gap","--spacing"],o=>[l("gap",o)]),a("gap-x",["--gap","--spacing"],o=>[l("column-gap",o)]),a("gap-y",["--gap","--spacing"],o=>[l("row-gap",o)]),a("space-x",["--space","--spacing"],o=>[I([$("--tw-space-x-reverse","0")]),M(":where(& > :not(:last-child))",[l("--tw-sort","row-gap"),l("--tw-space-x-reverse","0"),l("margin-inline-start",`calc(${o} * var(--tw-space-x-reverse))`),l("margin-inline-end",`calc(${o} * calc(1 - var(--tw-space-x-reverse)))`)])],{supportsNegative:!0}),a("space-y",["--space","--spacing"],o=>[I([$("--tw-space-y-reverse","0")]),M(":where(& > :not(:last-child))",[l("--tw-sort","column-gap"),l("--tw-space-y-reverse","0"),l("margin-block-start",`calc(${o} * var(--tw-space-y-reverse))`),l("margin-block-end",`calc(${o} * calc(1 - var(--tw-space-y-reverse)))`)])],{supportsNegative:!0}),e("space-x-reverse",[()=>I([$("--tw-space-x-reverse","0")]),()=>M(":where(& > :not(:last-child))",[l("--tw-sort","row-gap"),l("--tw-space-x-reverse","1")])]),e("space-y-reverse",[()=>I([$("--tw-space-y-reverse","0")]),()=>M(":where(& > :not(:last-child))",[l("--tw-sort","column-gap"),l("--tw-space-y-reverse","1")])]),e("accent-auto",[["accent-color","auto"]]),s("accent",{themeKeys:["--accent-color","--color"],handle:o=>[l("accent-color",o)]}),s("caret",{themeKeys:["--caret-color","--color"],handle:o=>[l("caret-color",o)]}),s("divide",{themeKeys:["--divide-color","--color"],handle:o=>[M(":where(& > :not(:last-child))",[l("--tw-sort","divide-color"),l("border-color",o)])]}),e("place-self-auto",[["place-self","auto"]]),e("place-self-start",[["place-self","start"]]),e("place-self-end",[["place-self","end"]]),e("place-self-center",[["place-self","center"]]),e("place-self-end-safe",[["place-self","safe end"]]),e("place-self-center-safe",[["place-self","safe center"]]),e("place-self-stretch",[["place-self","stretch"]]),e("self-auto",[["align-self","auto"]]),e("self-start",[["align-self","flex-start"]]),e("self-end",[["align-self","flex-end"]]),e("self-center",[["align-self","center"]]),e("self-end-safe",[["align-self","safe flex-end"]]),e("self-center-safe",[["align-self","safe center"]]),e("self-stretch",[["align-self","stretch"]]),e("self-baseline",[["align-self","baseline"]]),e("self-baseline-last",[["align-self","last baseline"]]),e("justify-self-auto",[["justify-self","auto"]]),e("justify-self-start",[["justify-self","flex-start"]]),e("justify-self-end",[["justify-self","flex-end"]]),e("justify-self-center",[["justify-self","center"]]),e("justify-self-end-safe",[["justify-self","safe flex-end"]]),e("justify-self-center-safe",[["justify-self","safe center"]]),e("justify-self-stretch",[["justify-self","stretch"]]);for(let o of["auto","hidden","clip","visible","scroll"])e(`overflow-${o}`,[["overflow",o]]),e(`overflow-x-${o}`,[["overflow-x",o]]),e(`overflow-y-${o}`,[["overflow-y",o]]);for(let o of["auto","contain","none"])e(`overscroll-${o}`,[["overscroll-behavior",o]]),e(`overscroll-x-${o}`,[["overscroll-behavior-x",o]]),e(`overscroll-y-${o}`,[["overscroll-behavior-y",o]]);e("scroll-auto",[["scroll-behavior","auto"]]),e("scroll-smooth",[["scroll-behavior","smooth"]]),e("truncate",[["overflow","hidden"],["text-overflow","ellipsis"],["white-space","nowrap"]]),e("text-ellipsis",[["text-overflow","ellipsis"]]),e("text-clip",[["text-overflow","clip"]]),e("hyphens-none",[["-webkit-hyphens","none"],["hyphens","none"]]),e("hyphens-manual",[["-webkit-hyphens","manual"],["hyphens","manual"]]),e("hyphens-auto",[["-webkit-hyphens","auto"],["hyphens","auto"]]),e("whitespace-normal",[["white-space","normal"]]),e("whitespace-nowrap",[["white-space","nowrap"]]),e("whitespace-pre",[["white-space","pre"]]),e("whitespace-pre-line",[["white-space","pre-line"]]),e("whitespace-pre-wrap",[["white-space","pre-wrap"]]),e("whitespace-break-spaces",[["white-space","break-spaces"]]),e("text-wrap",[["text-wrap","wrap"]]),e("text-nowrap",[["text-wrap","nowrap"]]),e("text-balance",[["text-wrap","balance"]]),e("text-pretty",[["text-wrap","pretty"]]),e("break-normal",[["overflow-wrap","normal"],["word-break","normal"]]),e("break-words",[["overflow-wrap","break-word"]]),e("break-all",[["word-break","break-all"]]),e("break-keep",[["word-break","keep-all"]]),e("wrap-anywhere",[["overflow-wrap","anywhere"]]),e("wrap-break-word",[["overflow-wrap","break-word"]]),e("wrap-normal",[["overflow-wrap","normal"]]);for(let[o,p]of[["rounded",["border-radius"]],["rounded-s",["border-start-start-radius","border-end-start-radius"]],["rounded-e",["border-start-end-radius","border-end-end-radius"]],["rounded-t",["border-top-left-radius","border-top-right-radius"]],["rounded-r",["border-top-right-radius","border-bottom-right-radius"]],["rounded-b",["border-bottom-right-radius","border-bottom-left-radius"]],["rounded-l",["border-top-left-radius","border-bottom-left-radius"]],["rounded-ss",["border-start-start-radius"]],["rounded-se",["border-start-end-radius"]],["rounded-ee",["border-end-end-radius"]],["rounded-es",["border-end-start-radius"]],["rounded-tl",["border-top-left-radius"]],["rounded-tr",["border-top-right-radius"]],["rounded-br",["border-bottom-right-radius"]],["rounded-bl",["border-bottom-left-radius"]]])e(`${o}-none`,p.map(h=>[h,"0"])),e(`${o}-full`,p.map(h=>[h,"calc(infinity * 1px)"])),n(o,{themeKeys:["--radius"],handle:h=>p.map(A=>l(A,h))});e("border-solid",[["--tw-border-style","solid"],["border-style","solid"]]),e("border-dashed",[["--tw-border-style","dashed"],["border-style","dashed"]]),e("border-dotted",[["--tw-border-style","dotted"],["border-style","dotted"]]),e("border-double",[["--tw-border-style","double"],["border-style","double"]]),e("border-hidden",[["--tw-border-style","hidden"],["border-style","hidden"]]),e("border-none",[["--tw-border-style","none"],["border-style","none"]]);{let p=function(h,A){r.functional(h,k=>{if(!k.value){if(k.modifier)return;let C=t.get(["--default-border-width"])??"1px",O=A.width(C);return O?[o(),...O]:void 0}if(k.value.kind==="arbitrary"){let C=k.value.value;switch(k.value.dataType??Y(C,["color","line-width","length"])){case"line-width":case"length":{if(k.modifier)return;let N=A.width(C);return N?[o(),...N]:void 0}default:return C=X(C,k.modifier,t),C===null?void 0:A.color(C)}}{let C=te(k,t,["--border-color","--color"]);if(C)return A.color(C)}{if(k.modifier)return;let C=t.resolve(k.value.value,["--border-width"]);if(C){let O=A.width(C);return O?[o(),...O]:void 0}if(E(k.value.value)){let O=A.width(`${k.value.value}px`);return O?[o(),...O]:void 0}}}),i(h,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--border-color","--color"],modifiers:Array.from({length:21},(k,C)=>`${C*5}`),hasDefaultValue:!0},{values:["0","2","4","8"],valueThemeKeys:["--border-width"]}])};var _=p;let o=()=>I([$("--tw-border-style","solid")]);p("border",{width:h=>[l("border-style","var(--tw-border-style)"),l("border-width",h)],color:h=>[l("border-color",h)]}),p("border-x",{width:h=>[l("border-inline-style","var(--tw-border-style)"),l("border-inline-width",h)],color:h=>[l("border-inline-color",h)]}),p("border-y",{width:h=>[l("border-block-style","var(--tw-border-style)"),l("border-block-width",h)],color:h=>[l("border-block-color",h)]}),p("border-s",{width:h=>[l("border-inline-start-style","var(--tw-border-style)"),l("border-inline-start-width",h)],color:h=>[l("border-inline-start-color",h)]}),p("border-e",{width:h=>[l("border-inline-end-style","var(--tw-border-style)"),l("border-inline-end-width",h)],color:h=>[l("border-inline-end-color",h)]}),p("border-t",{width:h=>[l("border-top-style","var(--tw-border-style)"),l("border-top-width",h)],color:h=>[l("border-top-color",h)]}),p("border-r",{width:h=>[l("border-right-style","var(--tw-border-style)"),l("border-right-width",h)],color:h=>[l("border-right-color",h)]}),p("border-b",{width:h=>[l("border-bottom-style","var(--tw-border-style)"),l("border-bottom-width",h)],color:h=>[l("border-bottom-color",h)]}),p("border-l",{width:h=>[l("border-left-style","var(--tw-border-style)"),l("border-left-width",h)],color:h=>[l("border-left-color",h)]}),n("divide-x",{defaultValue:t.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:h})=>E(h)?`${h}px`:null,handle:h=>[I([$("--tw-divide-x-reverse","0")]),M(":where(& > :not(:last-child))",[l("--tw-sort","divide-x-width"),o(),l("--tw-divide-x-reverse","0"),l("border-inline-style","var(--tw-border-style)"),l("border-inline-start-width",`calc(${h} * var(--tw-divide-x-reverse))`),l("border-inline-end-width",`calc(${h} * calc(1 - var(--tw-divide-x-reverse)))`)])]}),n("divide-y",{defaultValue:t.get(["--default-border-width"])??"1px",themeKeys:["--divide-width","--border-width"],handleBareValue:({value:h})=>E(h)?`${h}px`:null,handle:h=>[I([$("--tw-divide-y-reverse","0")]),M(":where(& > :not(:last-child))",[l("--tw-sort","divide-y-width"),o(),l("--tw-divide-y-reverse","0"),l("border-bottom-style","var(--tw-border-style)"),l("border-top-style","var(--tw-border-style)"),l("border-top-width",`calc(${h} * var(--tw-divide-y-reverse))`),l("border-bottom-width",`calc(${h} * calc(1 - var(--tw-divide-y-reverse)))`)])]}),i("divide-x",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),i("divide-y",()=>[{values:["0","2","4","8"],valueThemeKeys:["--divide-width","--border-width"],hasDefaultValue:!0}]),e("divide-x-reverse",[()=>I([$("--tw-divide-x-reverse","0")]),()=>M(":where(& > :not(:last-child))",[l("--tw-divide-x-reverse","1")])]),e("divide-y-reverse",[()=>I([$("--tw-divide-y-reverse","0")]),()=>M(":where(& > :not(:last-child))",[l("--tw-divide-y-reverse","1")])]);for(let h of["solid","dashed","dotted","double","none"])e(`divide-${h}`,[()=>M(":where(& > :not(:last-child))",[l("--tw-sort","divide-style"),l("--tw-border-style",h),l("border-style",h)])])}e("bg-auto",[["background-size","auto"]]),e("bg-cover",[["background-size","cover"]]),e("bg-contain",[["background-size","contain"]]),n("bg-size",{handle(o){if(o)return[l("background-size",o)]}}),e("bg-fixed",[["background-attachment","fixed"]]),e("bg-local",[["background-attachment","local"]]),e("bg-scroll",[["background-attachment","scroll"]]),e("bg-top",[["background-position","top"]]),e("bg-top-left",[["background-position","left top"]]),e("bg-top-right",[["background-position","right top"]]),e("bg-bottom",[["background-position","bottom"]]),e("bg-bottom-left",[["background-position","left bottom"]]),e("bg-bottom-right",[["background-position","right bottom"]]),e("bg-left",[["background-position","left"]]),e("bg-right",[["background-position","right"]]),e("bg-center",[["background-position","center"]]),n("bg-position",{handle(o){if(o)return[l("background-position",o)]}}),e("bg-repeat",[["background-repeat","repeat"]]),e("bg-no-repeat",[["background-repeat","no-repeat"]]),e("bg-repeat-x",[["background-repeat","repeat-x"]]),e("bg-repeat-y",[["background-repeat","repeat-y"]]),e("bg-repeat-round",[["background-repeat","round"]]),e("bg-repeat-space",[["background-repeat","space"]]),e("bg-none",[["background-image","none"]]);{let h=function(C){let O="in oklab";if(C?.kind==="named")switch(C.value){case"longer":case"shorter":case"increasing":case"decreasing":O=`in oklch ${C.value} hue`;break;default:O=`in ${C.value}`}else C?.kind==="arbitrary"&&(O=C.value);return O},A=function({negative:C}){return O=>{if(!O.value)return;if(O.value.kind==="arbitrary"){if(O.modifier)return;let U=O.value.value;switch(O.value.dataType??Y(U,["angle"])){case"angle":return U=C?`calc(${U} * -1)`:`${U}`,[l("--tw-gradient-position",U),l("background-image",`linear-gradient(var(--tw-gradient-stops,${U}))`)];default:return C?void 0:[l("--tw-gradient-position",U),l("background-image",`linear-gradient(var(--tw-gradient-stops,${U}))`)]}}let N=O.value.value;if(!C&&p.has(N))N=p.get(N);else if(E(N))N=C?`calc(${N}deg * -1)`:`${N}deg`;else return;let T=h(O.modifier);return[l("--tw-gradient-position",`${N}`),G("@supports (background-image: linear-gradient(in lab, red, red))",[l("--tw-gradient-position",`${N} ${T}`)]),l("background-image","linear-gradient(var(--tw-gradient-stops))")]}},k=function({negative:C}){return O=>{if(O.value?.kind==="arbitrary"){if(O.modifier)return;let U=O.value.value;return[l("--tw-gradient-position",U),l("background-image",`conic-gradient(var(--tw-gradient-stops,${U}))`)]}let N=h(O.modifier);if(!O.value)return[l("--tw-gradient-position",N),l("background-image","conic-gradient(var(--tw-gradient-stops))")];let T=O.value.value;if(E(T))return T=C?`calc(${T}deg * -1)`:`${T}deg`,[l("--tw-gradient-position",`from ${T} ${N}`),l("background-image","conic-gradient(var(--tw-gradient-stops))")]}};var H=h,L=A,W=k;let o=["oklab","oklch","srgb","hsl","longer","shorter","increasing","decreasing"],p=new Map([["to-t","to top"],["to-tr","to top right"],["to-r","to right"],["to-br","to bottom right"],["to-b","to bottom"],["to-bl","to bottom left"],["to-l","to left"],["to-tl","to top left"]]);r.functional("-bg-linear",A({negative:!0})),r.functional("bg-linear",A({negative:!1})),i("bg-linear",()=>[{values:[...p.keys()],modifiers:o},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:o}]),r.functional("-bg-conic",k({negative:!0})),r.functional("bg-conic",k({negative:!1})),i("bg-conic",()=>[{hasDefaultValue:!0,modifiers:o},{values:["0","30","60","90","120","150","180","210","240","270","300","330"],supportsNegative:!0,modifiers:o}]),r.functional("bg-radial",C=>{if(!C.value){let O=h(C.modifier);return[l("--tw-gradient-position",O),l("background-image","radial-gradient(var(--tw-gradient-stops))")]}if(C.value.kind==="arbitrary"){if(C.modifier)return;let O=C.value.value;return[l("--tw-gradient-position",O),l("background-image",`radial-gradient(var(--tw-gradient-stops,${O}))`)]}}),i("bg-radial",()=>[{hasDefaultValue:!0,modifiers:o}])}r.functional("bg",o=>{if(o.value){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??Y(p,["image","color","percentage","position","bg-size","length","url"])){case"percentage":case"position":return o.modifier?void 0:[l("background-position",p)];case"bg-size":case"length":case"size":return o.modifier?void 0:[l("background-size",p)];case"image":case"url":return o.modifier?void 0:[l("background-image",p)];default:return p=X(p,o.modifier,t),p===null?void 0:[l("background-color",p)]}}{let p=te(o,t,["--background-color","--color"]);if(p)return[l("background-color",p)]}{if(o.modifier)return;let p=t.resolve(o.value.value,["--background-image"]);if(p)return[l("background-image",p)]}}}),i("bg",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:[],valueThemeKeys:["--background-image"]}]);let v=()=>I([$("--tw-gradient-position"),$("--tw-gradient-from","#0000",""),$("--tw-gradient-via","#0000",""),$("--tw-gradient-to","#0000",""),$("--tw-gradient-stops"),$("--tw-gradient-via-stops"),$("--tw-gradient-from-position","0%",""),$("--tw-gradient-via-position","50%",""),$("--tw-gradient-to-position","100%","")]);function x(o,p){r.functional(o,h=>{if(h.value){if(h.value.kind==="arbitrary"){let A=h.value.value;switch(h.value.dataType??Y(A,["color","length","percentage"])){case"length":case"percentage":return h.modifier?void 0:p.position(A);default:return A=X(A,h.modifier,t),A===null?void 0:p.color(A)}}{let A=te(h,t,["--background-color","--color"]);if(A)return p.color(A)}{if(h.modifier)return;let A=t.resolve(h.value.value,["--gradient-color-stop-positions"]);if(A)return p.position(A);if(h.value.value[h.value.value.length-1]==="%"&&E(h.value.value.slice(0,-1)))return p.position(h.value.value)}}}),i(o,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(h,A)=>`${A*5}`)},{values:Array.from({length:21},(h,A)=>`${A*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}])}x("from",{color:o=>[v(),l("--tw-sort","--tw-gradient-from"),l("--tw-gradient-from",o),l("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:o=>[v(),l("--tw-gradient-from-position",o)]}),e("via-none",[["--tw-gradient-via-stops","initial"]]),x("via",{color:o=>[v(),l("--tw-sort","--tw-gradient-via"),l("--tw-gradient-via",o),l("--tw-gradient-via-stops","var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position)"),l("--tw-gradient-stops","var(--tw-gradient-via-stops)")],position:o=>[v(),l("--tw-gradient-via-position",o)]}),x("to",{color:o=>[v(),l("--tw-sort","--tw-gradient-to"),l("--tw-gradient-to",o),l("--tw-gradient-stops","var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position))")],position:o=>[v(),l("--tw-gradient-to-position",o)]}),e("mask-none",[["mask-image","none"]]),r.functional("mask",o=>{if(!o.value||o.modifier||o.value.kind!=="arbitrary")return;let p=o.value.value;switch(o.value.dataType??Y(p,["image","percentage","position","bg-size","length","url"])){case"percentage":case"position":return o.modifier?void 0:[l("mask-position",p)];case"bg-size":case"length":case"size":return[l("mask-size",p)];case"image":case"url":default:return[l("mask-image",p)]}}),e("mask-add",[["mask-composite","add"]]),e("mask-subtract",[["mask-composite","subtract"]]),e("mask-intersect",[["mask-composite","intersect"]]),e("mask-exclude",[["mask-composite","exclude"]]),e("mask-alpha",[["mask-mode","alpha"]]),e("mask-luminance",[["mask-mode","luminance"]]),e("mask-match",[["mask-mode","match-source"]]),e("mask-type-alpha",[["mask-type","alpha"]]),e("mask-type-luminance",[["mask-type","luminance"]]),e("mask-auto",[["mask-size","auto"]]),e("mask-cover",[["mask-size","cover"]]),e("mask-contain",[["mask-size","contain"]]),n("mask-size",{handle(o){if(o)return[l("mask-size",o)]}}),e("mask-top",[["mask-position","top"]]),e("mask-top-left",[["mask-position","left top"]]),e("mask-top-right",[["mask-position","right top"]]),e("mask-bottom",[["mask-position","bottom"]]),e("mask-bottom-left",[["mask-position","left bottom"]]),e("mask-bottom-right",[["mask-position","right bottom"]]),e("mask-left",[["mask-position","left"]]),e("mask-right",[["mask-position","right"]]),e("mask-center",[["mask-position","center"]]),n("mask-position",{handle(o){if(o)return[l("mask-position",o)]}}),e("mask-repeat",[["mask-repeat","repeat"]]),e("mask-no-repeat",[["mask-repeat","no-repeat"]]),e("mask-repeat-x",[["mask-repeat","repeat-x"]]),e("mask-repeat-y",[["mask-repeat","repeat-y"]]),e("mask-repeat-round",[["mask-repeat","round"]]),e("mask-repeat-space",[["mask-repeat","space"]]),e("mask-clip-border",[["mask-clip","border-box"]]),e("mask-clip-padding",[["mask-clip","padding-box"]]),e("mask-clip-content",[["mask-clip","content-box"]]),e("mask-clip-fill",[["mask-clip","fill-box"]]),e("mask-clip-stroke",[["mask-clip","stroke-box"]]),e("mask-clip-view",[["mask-clip","view-box"]]),e("mask-no-clip",[["mask-clip","no-clip"]]),e("mask-origin-border",[["mask-origin","border-box"]]),e("mask-origin-padding",[["mask-origin","padding-box"]]),e("mask-origin-content",[["mask-origin","content-box"]]),e("mask-origin-fill",[["mask-origin","fill-box"]]),e("mask-origin-stroke",[["mask-origin","stroke-box"]]),e("mask-origin-view",[["mask-origin","view-box"]]);let y=()=>I([$("--tw-mask-linear","linear-gradient(#fff, #fff)"),$("--tw-mask-radial","linear-gradient(#fff, #fff)"),$("--tw-mask-conic","linear-gradient(#fff, #fff)")]);function V(o,p){r.functional(o,h=>{if(h.value){if(h.value.kind==="arbitrary"){let A=h.value.value;switch(h.value.dataType??Y(A,["length","percentage","color"])){case"color":return A=X(A,h.modifier,t),A===null?void 0:p.color(A);case"percentage":return h.modifier||!E(A.slice(0,-1))?void 0:p.position(A);default:return h.modifier?void 0:p.position(A)}}{let A=te(h,t,["--background-color","--color"]);if(A)return p.color(A)}{if(h.modifier)return;let A=Y(h.value.value,["number","percentage"]);if(!A)return;switch(A){case"number":{let k=t.resolve(null,["--spacing"]);return!k||!xe(h.value.value)?void 0:p.position(`calc(${k} * ${h.value.value})`)}case"percentage":return E(h.value.value.slice(0,-1))?p.position(h.value.value):void 0;default:return}}}}),i(o,()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(h,A)=>`${A*5}`)},{values:Array.from({length:21},(h,A)=>`${A*5}%`),valueThemeKeys:["--gradient-color-stop-positions"]}]),i(o,()=>[{values:Array.from({length:21},(h,A)=>`${A*5}%`)},{values:t.get(["--spacing"])?st:[]},{values:["current","inherit","transparent"],valueThemeKeys:["--background-color","--color"],modifiers:Array.from({length:21},(h,A)=>`${A*5}`)}])}let b=()=>I([$("--tw-mask-left","linear-gradient(#fff, #fff)"),$("--tw-mask-right","linear-gradient(#fff, #fff)"),$("--tw-mask-bottom","linear-gradient(#fff, #fff)"),$("--tw-mask-top","linear-gradient(#fff, #fff)")]);function S(o,p,h){V(o,{color(A){let k=[y(),b(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear","var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top)")];for(let C of["top","right","bottom","left"])h[C]&&(k.push(l(`--tw-mask-${C}`,`linear-gradient(to ${C}, var(--tw-mask-${C}-from-color) var(--tw-mask-${C}-from-position), var(--tw-mask-${C}-to-color) var(--tw-mask-${C}-to-position))`)),k.push(I([$(`--tw-mask-${C}-from-position`,"0%"),$(`--tw-mask-${C}-to-position`,"100%"),$(`--tw-mask-${C}-from-color`,"black"),$(`--tw-mask-${C}-to-color`,"transparent")])),k.push(l(`--tw-mask-${C}-${p}-color`,A)));return k},position(A){let k=[y(),b(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear","var(--tw-mask-left), var(--tw-mask-right), var(--tw-mask-bottom), var(--tw-mask-top)")];for(let C of["top","right","bottom","left"])h[C]&&(k.push(l(`--tw-mask-${C}`,`linear-gradient(to ${C}, var(--tw-mask-${C}-from-color) var(--tw-mask-${C}-from-position), var(--tw-mask-${C}-to-color) var(--tw-mask-${C}-to-position))`)),k.push(I([$(`--tw-mask-${C}-from-position`,"0%"),$(`--tw-mask-${C}-to-position`,"100%"),$(`--tw-mask-${C}-from-color`,"black"),$(`--tw-mask-${C}-to-color`,"transparent")])),k.push(l(`--tw-mask-${C}-${p}-position`,A)));return k}})}S("mask-x-from","from",{top:!1,right:!0,bottom:!1,left:!0}),S("mask-x-to","to",{top:!1,right:!0,bottom:!1,left:!0}),S("mask-y-from","from",{top:!0,right:!1,bottom:!0,left:!1}),S("mask-y-to","to",{top:!0,right:!1,bottom:!0,left:!1}),S("mask-t-from","from",{top:!0,right:!1,bottom:!1,left:!1}),S("mask-t-to","to",{top:!0,right:!1,bottom:!1,left:!1}),S("mask-r-from","from",{top:!1,right:!0,bottom:!1,left:!1}),S("mask-r-to","to",{top:!1,right:!0,bottom:!1,left:!1}),S("mask-b-from","from",{top:!1,right:!1,bottom:!0,left:!1}),S("mask-b-to","to",{top:!1,right:!1,bottom:!0,left:!1}),S("mask-l-from","from",{top:!1,right:!1,bottom:!1,left:!0}),S("mask-l-to","to",{top:!1,right:!1,bottom:!1,left:!0});let R=()=>I([$("--tw-mask-linear-position","0deg"),$("--tw-mask-linear-from-position","0%"),$("--tw-mask-linear-to-position","100%"),$("--tw-mask-linear-from-color","black"),$("--tw-mask-linear-to-color","transparent")]);n("mask-linear",{defaultValue:null,supportsNegative:!0,supportsFractions:!1,handleBareValue(o){return E(o.value)?`calc(1deg * ${o.value})`:null},handleNegativeBareValue(o){return E(o.value)?`calc(1deg * -${o.value})`:null},handle:o=>[y(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops, var(--tw-mask-linear-position)))"),l("--tw-mask-linear-position",o)]}),i("mask-linear",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"]}]),V("mask-linear-from",{color:o=>[y(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),l("--tw-mask-linear-from-color",o)],position:o=>[y(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),l("--tw-mask-linear-from-position",o)]}),V("mask-linear-to",{color:o=>[y(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),l("--tw-mask-linear-to-color",o)],position:o=>[y(),R(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-linear-stops","var(--tw-mask-linear-position), var(--tw-mask-linear-from-color) var(--tw-mask-linear-from-position), var(--tw-mask-linear-to-color) var(--tw-mask-linear-to-position)"),l("--tw-mask-linear","linear-gradient(var(--tw-mask-linear-stops))"),l("--tw-mask-linear-to-position",o)]});let j=()=>I([$("--tw-mask-radial-from-position","0%"),$("--tw-mask-radial-to-position","100%"),$("--tw-mask-radial-from-color","black"),$("--tw-mask-radial-to-color","transparent"),$("--tw-mask-radial-shape","ellipse"),$("--tw-mask-radial-size","farthest-corner"),$("--tw-mask-radial-position","center")]);e("mask-circle",[["--tw-mask-radial-shape","circle"]]),e("mask-ellipse",[["--tw-mask-radial-shape","ellipse"]]),e("mask-radial-closest-side",[["--tw-mask-radial-size","closest-side"]]),e("mask-radial-farthest-side",[["--tw-mask-radial-size","farthest-side"]]),e("mask-radial-closest-corner",[["--tw-mask-radial-size","closest-corner"]]),e("mask-radial-farthest-corner",[["--tw-mask-radial-size","farthest-corner"]]),e("mask-radial-at-top",[["--tw-mask-radial-position","top"]]),e("mask-radial-at-top-left",[["--tw-mask-radial-position","top left"]]),e("mask-radial-at-top-right",[["--tw-mask-radial-position","top right"]]),e("mask-radial-at-bottom",[["--tw-mask-radial-position","bottom"]]),e("mask-radial-at-bottom-left",[["--tw-mask-radial-position","bottom left"]]),e("mask-radial-at-bottom-right",[["--tw-mask-radial-position","bottom right"]]),e("mask-radial-at-left",[["--tw-mask-radial-position","left"]]),e("mask-radial-at-right",[["--tw-mask-radial-position","right"]]),e("mask-radial-at-center",[["--tw-mask-radial-position","center"]]),n("mask-radial-at",{defaultValue:null,supportsNegative:!1,supportsFractions:!1,handle:o=>[l("--tw-mask-radial-position",o)]}),n("mask-radial",{defaultValue:null,supportsNegative:!1,supportsFractions:!1,handle:o=>[y(),j(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops, var(--tw-mask-radial-size)))"),l("--tw-mask-radial-size",o)]}),V("mask-radial-from",{color:o=>[y(),j(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),l("--tw-mask-radial-from-color",o)],position:o=>[y(),j(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),l("--tw-mask-radial-from-position",o)]}),V("mask-radial-to",{color:o=>[y(),j(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),l("--tw-mask-radial-to-color",o)],position:o=>[y(),j(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-radial-stops","var(--tw-mask-radial-shape) var(--tw-mask-radial-size) at var(--tw-mask-radial-position), var(--tw-mask-radial-from-color) var(--tw-mask-radial-from-position), var(--tw-mask-radial-to-color) var(--tw-mask-radial-to-position)"),l("--tw-mask-radial","radial-gradient(var(--tw-mask-radial-stops))"),l("--tw-mask-radial-to-position",o)]});let P=()=>I([$("--tw-mask-conic-position","0deg"),$("--tw-mask-conic-from-position","0%"),$("--tw-mask-conic-to-position","100%"),$("--tw-mask-conic-from-color","black"),$("--tw-mask-conic-to-color","transparent")]);n("mask-conic",{defaultValue:null,supportsNegative:!0,supportsFractions:!1,handleBareValue(o){return E(o.value)?`calc(1deg * ${o.value})`:null},handleNegativeBareValue(o){return E(o.value)?`calc(1deg * -${o.value})`:null},handle:o=>[y(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops, var(--tw-mask-conic-position)))"),l("--tw-mask-conic-position",o)]}),i("mask-conic",()=>[{supportsNegative:!0,values:["0","1","2","3","6","12","45","90","180"]}]),V("mask-conic-from",{color:o=>[y(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),l("--tw-mask-conic-from-color",o)],position:o=>[y(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),l("--tw-mask-conic-from-position",o)]}),V("mask-conic-to",{color:o=>[y(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),l("--tw-mask-conic-to-color",o)],position:o=>[y(),P(),l("mask-image","var(--tw-mask-linear), var(--tw-mask-radial), var(--tw-mask-conic)"),l("mask-composite","intersect"),l("--tw-mask-conic-stops","from var(--tw-mask-conic-position), var(--tw-mask-conic-from-color) var(--tw-mask-conic-from-position), var(--tw-mask-conic-to-color) var(--tw-mask-conic-to-position)"),l("--tw-mask-conic","conic-gradient(var(--tw-mask-conic-stops))"),l("--tw-mask-conic-to-position",o)]}),e("box-decoration-slice",[["-webkit-box-decoration-break","slice"],["box-decoration-break","slice"]]),e("box-decoration-clone",[["-webkit-box-decoration-break","clone"],["box-decoration-break","clone"]]),e("bg-clip-text",[["background-clip","text"]]),e("bg-clip-border",[["background-clip","border-box"]]),e("bg-clip-padding",[["background-clip","padding-box"]]),e("bg-clip-content",[["background-clip","content-box"]]),e("bg-origin-border",[["background-origin","border-box"]]),e("bg-origin-padding",[["background-origin","padding-box"]]),e("bg-origin-content",[["background-origin","content-box"]]);for(let o of["normal","multiply","screen","overlay","darken","lighten","color-dodge","color-burn","hard-light","soft-light","difference","exclusion","hue","saturation","color","luminosity"])e(`bg-blend-${o}`,[["background-blend-mode",o]]),e(`mix-blend-${o}`,[["mix-blend-mode",o]]);e("mix-blend-plus-darker",[["mix-blend-mode","plus-darker"]]),e("mix-blend-plus-lighter",[["mix-blend-mode","plus-lighter"]]),e("fill-none",[["fill","none"]]),r.functional("fill",o=>{if(!o.value)return;if(o.value.kind==="arbitrary"){let h=X(o.value.value,o.modifier,t);return h===null?void 0:[l("fill",h)]}let p=te(o,t,["--fill","--color"]);if(p)return[l("fill",p)]}),i("fill",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--fill","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)}]),e("stroke-none",[["stroke","none"]]),r.functional("stroke",o=>{if(o.value){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??Y(p,["color","number","length","percentage"])){case"number":case"length":case"percentage":return o.modifier?void 0:[l("stroke-width",p)];default:return p=X(o.value.value,o.modifier,t),p===null?void 0:[l("stroke",p)]}}{let p=te(o,t,["--stroke","--color"]);if(p)return[l("stroke",p)]}{let p=t.resolve(o.value.value,["--stroke-width"]);if(p)return[l("stroke-width",p)];if(E(o.value.value))return[l("stroke-width",o.value.value)]}}}),i("stroke",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--stroke","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:["0","1","2","3"],valueThemeKeys:["--stroke-width"]}]),e("object-contain",[["object-fit","contain"]]),e("object-cover",[["object-fit","cover"]]),e("object-fill",[["object-fit","fill"]]),e("object-none",[["object-fit","none"]]),e("object-scale-down",[["object-fit","scale-down"]]),e("object-top",[["object-position","top"]]),e("object-top-left",[["object-position","left top"]]),e("object-top-right",[["object-position","right top"]]),e("object-bottom",[["object-position","bottom"]]),e("object-bottom-left",[["object-position","left bottom"]]),e("object-bottom-right",[["object-position","right bottom"]]),e("object-left",[["object-position","left"]]),e("object-right",[["object-position","right"]]),e("object-center",[["object-position","center"]]),n("object",{themeKeys:["--object-position"],handle:o=>[l("object-position",o)]});for(let[o,p]of[["p","padding"],["px","padding-inline"],["py","padding-block"],["ps","padding-inline-start"],["pe","padding-inline-end"],["pt","padding-top"],["pr","padding-right"],["pb","padding-bottom"],["pl","padding-left"]])a(o,["--padding","--spacing"],h=>[l(p,h)]);e("text-left",[["text-align","left"]]),e("text-center",[["text-align","center"]]),e("text-right",[["text-align","right"]]),e("text-justify",[["text-align","justify"]]),e("text-start",[["text-align","start"]]),e("text-end",[["text-align","end"]]),a("indent",["--text-indent","--spacing"],o=>[l("text-indent",o)],{supportsNegative:!0}),e("align-baseline",[["vertical-align","baseline"]]),e("align-top",[["vertical-align","top"]]),e("align-middle",[["vertical-align","middle"]]),e("align-bottom",[["vertical-align","bottom"]]),e("align-text-top",[["vertical-align","text-top"]]),e("align-text-bottom",[["vertical-align","text-bottom"]]),e("align-sub",[["vertical-align","sub"]]),e("align-super",[["vertical-align","super"]]),n("align",{themeKeys:[],handle:o=>[l("vertical-align",o)]}),r.functional("font",o=>{if(!(!o.value||o.modifier)){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??Y(p,["number","generic-name","family-name"])){case"generic-name":case"family-name":return[l("font-family",p)];default:return[I([$("--tw-font-weight")]),l("--tw-font-weight",p),l("font-weight",p)]}}{let p=t.resolveWith(o.value.value,["--font"],["--font-feature-settings","--font-variation-settings"]);if(p){let[h,A={}]=p;return[l("font-family",h),l("font-feature-settings",A["--font-feature-settings"]),l("font-variation-settings",A["--font-variation-settings"])]}}{let p=t.resolve(o.value.value,["--font-weight"]);if(p)return[I([$("--tw-font-weight")]),l("--tw-font-weight",p),l("font-weight",p)]}}}),i("font",()=>[{values:[],valueThemeKeys:["--font"]},{values:[],valueThemeKeys:["--font-weight"]}]),e("uppercase",[["text-transform","uppercase"]]),e("lowercase",[["text-transform","lowercase"]]),e("capitalize",[["text-transform","capitalize"]]),e("normal-case",[["text-transform","none"]]),e("italic",[["font-style","italic"]]),e("not-italic",[["font-style","normal"]]),e("underline",[["text-decoration-line","underline"]]),e("overline",[["text-decoration-line","overline"]]),e("line-through",[["text-decoration-line","line-through"]]),e("no-underline",[["text-decoration-line","none"]]),e("font-stretch-normal",[["font-stretch","normal"]]),e("font-stretch-ultra-condensed",[["font-stretch","ultra-condensed"]]),e("font-stretch-extra-condensed",[["font-stretch","extra-condensed"]]),e("font-stretch-condensed",[["font-stretch","condensed"]]),e("font-stretch-semi-condensed",[["font-stretch","semi-condensed"]]),e("font-stretch-semi-expanded",[["font-stretch","semi-expanded"]]),e("font-stretch-expanded",[["font-stretch","expanded"]]),e("font-stretch-extra-expanded",[["font-stretch","extra-expanded"]]),e("font-stretch-ultra-expanded",[["font-stretch","ultra-expanded"]]),n("font-stretch",{handleBareValue:({value:o})=>{if(!o.endsWith("%"))return null;let p=Number(o.slice(0,-1));return!E(p)||Number.isNaN(p)||p<50||p>200?null:o},handle:o=>[l("font-stretch",o)]}),i("font-stretch",()=>[{values:["50%","75%","90%","95%","100%","105%","110%","125%","150%","200%"]}]),s("placeholder",{themeKeys:["--background-color","--color"],handle:o=>[M("&::placeholder",[l("--tw-sort","placeholder-color"),l("color",o)])]}),e("decoration-solid",[["text-decoration-style","solid"]]),e("decoration-double",[["text-decoration-style","double"]]),e("decoration-dotted",[["text-decoration-style","dotted"]]),e("decoration-dashed",[["text-decoration-style","dashed"]]),e("decoration-wavy",[["text-decoration-style","wavy"]]),e("decoration-auto",[["text-decoration-thickness","auto"]]),e("decoration-from-font",[["text-decoration-thickness","from-font"]]),r.functional("decoration",o=>{if(o.value){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??Y(p,["color","length","percentage"])){case"length":case"percentage":return o.modifier?void 0:[l("text-decoration-thickness",p)];default:return p=X(p,o.modifier,t),p===null?void 0:[l("text-decoration-color",p)]}}{let p=t.resolve(o.value.value,["--text-decoration-thickness"]);if(p)return o.modifier?void 0:[l("text-decoration-thickness",p)];if(E(o.value.value))return o.modifier?void 0:[l("text-decoration-thickness",`${o.value.value}px`)]}{let p=te(o,t,["--text-decoration-color","--color"]);if(p)return[l("text-decoration-color",p)]}}}),i("decoration",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-decoration-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:["0","1","2"],valueThemeKeys:["--text-decoration-thickness"]}]),e("animate-none",[["animation","none"]]),n("animate",{themeKeys:["--animate"],handle:o=>[l("animation",o)]});{let o=["var(--tw-blur,)","var(--tw-brightness,)","var(--tw-contrast,)","var(--tw-grayscale,)","var(--tw-hue-rotate,)","var(--tw-invert,)","var(--tw-saturate,)","var(--tw-sepia,)","var(--tw-drop-shadow,)"].join(" "),p=["var(--tw-backdrop-blur,)","var(--tw-backdrop-brightness,)","var(--tw-backdrop-contrast,)","var(--tw-backdrop-grayscale,)","var(--tw-backdrop-hue-rotate,)","var(--tw-backdrop-invert,)","var(--tw-backdrop-opacity,)","var(--tw-backdrop-saturate,)","var(--tw-backdrop-sepia,)"].join(" "),h=()=>I([$("--tw-blur"),$("--tw-brightness"),$("--tw-contrast"),$("--tw-grayscale"),$("--tw-hue-rotate"),$("--tw-invert"),$("--tw-opacity"),$("--tw-saturate"),$("--tw-sepia"),$("--tw-drop-shadow"),$("--tw-drop-shadow-color"),$("--tw-drop-shadow-alpha","100%",""),$("--tw-drop-shadow-size")]),A=()=>I([$("--tw-backdrop-blur"),$("--tw-backdrop-brightness"),$("--tw-backdrop-contrast"),$("--tw-backdrop-grayscale"),$("--tw-backdrop-hue-rotate"),$("--tw-backdrop-invert"),$("--tw-backdrop-opacity"),$("--tw-backdrop-saturate"),$("--tw-backdrop-sepia")]);r.functional("filter",k=>{if(!k.modifier){if(k.value===null)return[h(),l("filter",o)];if(k.value.kind==="arbitrary")return[l("filter",k.value.value)];switch(k.value.value){case"none":return[l("filter","none")]}}}),r.functional("backdrop-filter",k=>{if(!k.modifier){if(k.value===null)return[A(),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)];if(k.value.kind==="arbitrary")return[l("-webkit-backdrop-filter",k.value.value),l("backdrop-filter",k.value.value)];switch(k.value.value){case"none":return[l("-webkit-backdrop-filter","none"),l("backdrop-filter","none")]}}}),n("blur",{themeKeys:["--blur"],handle:k=>[h(),l("--tw-blur",`blur(${k})`),l("filter",o)]}),e("blur-none",[h,["--tw-blur"," "],["filter",o]]),n("backdrop-blur",{themeKeys:["--backdrop-blur","--blur"],handle:k=>[A(),l("--tw-backdrop-blur",`blur(${k})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),e("backdrop-blur-none",[A,["--tw-backdrop-blur"," "],["-webkit-backdrop-filter",p],["backdrop-filter",p]]),n("brightness",{themeKeys:["--brightness"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,handle:k=>[h(),l("--tw-brightness",`brightness(${k})`),l("filter",o)]}),n("backdrop-brightness",{themeKeys:["--backdrop-brightness","--brightness"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,handle:k=>[A(),l("--tw-backdrop-brightness",`brightness(${k})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--brightness"]}]),i("backdrop-brightness",()=>[{values:["0","50","75","90","95","100","105","110","125","150","200"],valueThemeKeys:["--backdrop-brightness","--brightness"]}]),n("contrast",{themeKeys:["--contrast"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,handle:k=>[h(),l("--tw-contrast",`contrast(${k})`),l("filter",o)]}),n("backdrop-contrast",{themeKeys:["--backdrop-contrast","--contrast"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,handle:k=>[A(),l("--tw-backdrop-contrast",`contrast(${k})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--contrast"]}]),i("backdrop-contrast",()=>[{values:["0","50","75","100","125","150","200"],valueThemeKeys:["--backdrop-contrast","--contrast"]}]),n("grayscale",{themeKeys:["--grayscale"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,defaultValue:"100%",handle:k=>[h(),l("--tw-grayscale",`grayscale(${k})`),l("filter",o)]}),n("backdrop-grayscale",{themeKeys:["--backdrop-grayscale","--grayscale"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,defaultValue:"100%",handle:k=>[A(),l("--tw-backdrop-grayscale",`grayscale(${k})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--grayscale"],hasDefaultValue:!0}]),i("backdrop-grayscale",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-grayscale","--grayscale"],hasDefaultValue:!0}]),n("hue-rotate",{supportsNegative:!0,themeKeys:["--hue-rotate"],handleBareValue:({value:k})=>E(k)?`${k}deg`:null,handle:k=>[h(),l("--tw-hue-rotate",`hue-rotate(${k})`),l("filter",o)]}),n("backdrop-hue-rotate",{supportsNegative:!0,themeKeys:["--backdrop-hue-rotate","--hue-rotate"],handleBareValue:({value:k})=>E(k)?`${k}deg`:null,handle:k=>[A(),l("--tw-backdrop-hue-rotate",`hue-rotate(${k})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--hue-rotate"]}]),i("backdrop-hue-rotate",()=>[{values:["0","15","30","60","90","180"],valueThemeKeys:["--backdrop-hue-rotate","--hue-rotate"]}]),n("invert",{themeKeys:["--invert"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,defaultValue:"100%",handle:k=>[h(),l("--tw-invert",`invert(${k})`),l("filter",o)]}),n("backdrop-invert",{themeKeys:["--backdrop-invert","--invert"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,defaultValue:"100%",handle:k=>[A(),l("--tw-backdrop-invert",`invert(${k})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--invert"],hasDefaultValue:!0}]),i("backdrop-invert",()=>[{values:["0","25","50","75","100"],valueThemeKeys:["--backdrop-invert","--invert"],hasDefaultValue:!0}]),n("saturate",{themeKeys:["--saturate"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,handle:k=>[h(),l("--tw-saturate",`saturate(${k})`),l("filter",o)]}),n("backdrop-saturate",{themeKeys:["--backdrop-saturate","--saturate"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,handle:k=>[A(),l("--tw-backdrop-saturate",`saturate(${k})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--saturate"]}]),i("backdrop-saturate",()=>[{values:["0","50","100","150","200"],valueThemeKeys:["--backdrop-saturate","--saturate"]}]),n("sepia",{themeKeys:["--sepia"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,defaultValue:"100%",handle:k=>[h(),l("--tw-sepia",`sepia(${k})`),l("filter",o)]}),n("backdrop-sepia",{themeKeys:["--backdrop-sepia","--sepia"],handleBareValue:({value:k})=>E(k)?`${k}%`:null,defaultValue:"100%",handle:k=>[A(),l("--tw-backdrop-sepia",`sepia(${k})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--sepia"],hasDefaultValue:!0}]),i("backdrop-sepia",()=>[{values:["0","50","100"],valueThemeKeys:["--backdrop-sepia","--sepia"],hasDefaultValue:!0}]),e("drop-shadow-none",[h,["--tw-drop-shadow"," "],["filter",o]]),r.functional("drop-shadow",k=>{let C;if(k.modifier&&(k.modifier.kind==="arbitrary"?C=k.modifier.value:E(k.modifier.value)&&(C=`${k.modifier.value}%`)),!k.value){let O=t.get(["--drop-shadow"]),N=t.resolve(null,["--drop-shadow"]);return O===null||N===null?void 0:[h(),l("--tw-drop-shadow-alpha",C),...at("--tw-drop-shadow-size",O,C,T=>`var(--tw-drop-shadow-color, ${T})`),l("--tw-drop-shadow",K(N,",").map(T=>`drop-shadow(${T})`).join(" ")),l("filter",o)]}if(k.value.kind==="arbitrary"){let O=k.value.value;switch(k.value.dataType??Y(O,["color"])){case"color":return O=X(O,k.modifier,t),O===null?void 0:[h(),l("--tw-drop-shadow-color",Z(O,"var(--tw-drop-shadow-alpha)")),l("--tw-drop-shadow","var(--tw-drop-shadow-size)")];default:return k.modifier&&!C?void 0:[h(),l("--tw-drop-shadow-alpha",C),...at("--tw-drop-shadow-size",O,C,T=>`var(--tw-drop-shadow-color, ${T})`),l("--tw-drop-shadow","var(--tw-drop-shadow-size)"),l("filter",o)]}}{let O=t.get([`--drop-shadow-${k.value.value}`]),N=t.resolve(k.value.value,["--drop-shadow"]);if(O&&N)return k.modifier&&!C?void 0:C?[h(),l("--tw-drop-shadow-alpha",C),...at("--tw-drop-shadow-size",O,C,T=>`var(--tw-drop-shadow-color, ${T})`),l("--tw-drop-shadow","var(--tw-drop-shadow-size)"),l("filter",o)]:[h(),l("--tw-drop-shadow-alpha",C),...at("--tw-drop-shadow-size",O,C,T=>`var(--tw-drop-shadow-color, ${T})`),l("--tw-drop-shadow",K(N,",").map(T=>`drop-shadow(${T})`).join(" ")),l("filter",o)]}{let O=te(k,t,["--drop-shadow-color","--color"]);if(O)return O==="inherit"?[h(),l("--tw-drop-shadow-color","inherit"),l("--tw-drop-shadow","var(--tw-drop-shadow-size)")]:[h(),l("--tw-drop-shadow-color",Z(O,"var(--tw-drop-shadow-alpha)")),l("--tw-drop-shadow","var(--tw-drop-shadow-size)")]}}),i("drop-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--drop-shadow-color","--color"],modifiers:Array.from({length:21},(k,C)=>`${C*5}`)},{valueThemeKeys:["--drop-shadow"]}]),n("backdrop-opacity",{themeKeys:["--backdrop-opacity","--opacity"],handleBareValue:({value:k})=>lt(k)?`${k}%`:null,handle:k=>[A(),l("--tw-backdrop-opacity",`opacity(${k})`),l("-webkit-backdrop-filter",p),l("backdrop-filter",p)]}),i("backdrop-opacity",()=>[{values:Array.from({length:21},(k,C)=>`${C*5}`),valueThemeKeys:["--backdrop-opacity","--opacity"]}])}{let o=`var(--tw-ease, ${t.resolve(null,["--default-transition-timing-function"])??"ease"})`,p=`var(--tw-duration, ${t.resolve(null,["--default-transition-duration"])??"0s"})`;e("transition-none",[["transition-property","none"]]),e("transition-all",[["transition-property","all"],["transition-timing-function",o],["transition-duration",p]]),e("transition-colors",[["transition-property","color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to"],["transition-timing-function",o],["transition-duration",p]]),e("transition-opacity",[["transition-property","opacity"],["transition-timing-function",o],["transition-duration",p]]),e("transition-shadow",[["transition-property","box-shadow"],["transition-timing-function",o],["transition-duration",p]]),e("transition-transform",[["transition-property","transform, translate, scale, rotate"],["transition-timing-function",o],["transition-duration",p]]),n("transition",{defaultValue:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, visibility, content-visibility, overlay, pointer-events",themeKeys:["--transition-property"],handle:h=>[l("transition-property",h),l("transition-timing-function",o),l("transition-duration",p)]}),e("transition-discrete",[["transition-behavior","allow-discrete"]]),e("transition-normal",[["transition-behavior","normal"]]),n("delay",{handleBareValue:({value:h})=>E(h)?`${h}ms`:null,themeKeys:["--transition-delay"],handle:h=>[l("transition-delay",h)]});{let h=()=>I([$("--tw-duration")]);e("duration-initial",[h,["--tw-duration","initial"]]),r.functional("duration",A=>{if(A.modifier||!A.value)return;let k=null;if(A.value.kind==="arbitrary"?k=A.value.value:(k=t.resolve(A.value.fraction??A.value.value,["--transition-duration"]),k===null&&E(A.value.value)&&(k=`${A.value.value}ms`)),k!==null)return[h(),l("--tw-duration",k),l("transition-duration",k)]})}i("delay",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-delay"]}]),i("duration",()=>[{values:["75","100","150","200","300","500","700","1000"],valueThemeKeys:["--transition-duration"]}])}{let o=()=>I([$("--tw-ease")]);e("ease-initial",[o,["--tw-ease","initial"]]),e("ease-linear",[o,["--tw-ease","linear"],["transition-timing-function","linear"]]),n("ease",{themeKeys:["--ease"],handle:p=>[o(),l("--tw-ease",p),l("transition-timing-function",p)]})}e("will-change-auto",[["will-change","auto"]]),e("will-change-scroll",[["will-change","scroll-position"]]),e("will-change-contents",[["will-change","contents"]]),e("will-change-transform",[["will-change","transform"]]),n("will-change",{themeKeys:[],handle:o=>[l("will-change",o)]}),e("content-none",[["--tw-content","none"],["content","none"]]),n("content",{themeKeys:[],handle:o=>[I([$("--tw-content",'""')]),l("--tw-content",o),l("content","var(--tw-content)")]});{let o="var(--tw-contain-size,) var(--tw-contain-layout,) var(--tw-contain-paint,) var(--tw-contain-style,)",p=()=>I([$("--tw-contain-size"),$("--tw-contain-layout"),$("--tw-contain-paint"),$("--tw-contain-style")]);e("contain-none",[["contain","none"]]),e("contain-content",[["contain","content"]]),e("contain-strict",[["contain","strict"]]),e("contain-size",[p,["--tw-contain-size","size"],["contain",o]]),e("contain-inline-size",[p,["--tw-contain-size","inline-size"],["contain",o]]),e("contain-layout",[p,["--tw-contain-layout","layout"],["contain",o]]),e("contain-paint",[p,["--tw-contain-paint","paint"],["contain",o]]),e("contain-style",[p,["--tw-contain-style","style"],["contain",o]]),n("contain",{themeKeys:[],handle:h=>[l("contain",h)]})}e("forced-color-adjust-none",[["forced-color-adjust","none"]]),e("forced-color-adjust-auto",[["forced-color-adjust","auto"]]),e("leading-none",[()=>I([$("--tw-leading")]),["--tw-leading","1"],["line-height","1"]]),a("leading",["--leading","--spacing"],o=>[I([$("--tw-leading")]),l("--tw-leading",o),l("line-height",o)]),n("tracking",{supportsNegative:!0,themeKeys:["--tracking"],handle:o=>[I([$("--tw-tracking")]),l("--tw-tracking",o),l("letter-spacing",o)]}),e("antialiased",[["-webkit-font-smoothing","antialiased"],["-moz-osx-font-smoothing","grayscale"]]),e("subpixel-antialiased",[["-webkit-font-smoothing","auto"],["-moz-osx-font-smoothing","auto"]]);{let o="var(--tw-ordinal,) var(--tw-slashed-zero,) var(--tw-numeric-figure,) var(--tw-numeric-spacing,) var(--tw-numeric-fraction,)",p=()=>I([$("--tw-ordinal"),$("--tw-slashed-zero"),$("--tw-numeric-figure"),$("--tw-numeric-spacing"),$("--tw-numeric-fraction")]);e("normal-nums",[["font-variant-numeric","normal"]]),e("ordinal",[p,["--tw-ordinal","ordinal"],["font-variant-numeric",o]]),e("slashed-zero",[p,["--tw-slashed-zero","slashed-zero"],["font-variant-numeric",o]]),e("lining-nums",[p,["--tw-numeric-figure","lining-nums"],["font-variant-numeric",o]]),e("oldstyle-nums",[p,["--tw-numeric-figure","oldstyle-nums"],["font-variant-numeric",o]]),e("proportional-nums",[p,["--tw-numeric-spacing","proportional-nums"],["font-variant-numeric",o]]),e("tabular-nums",[p,["--tw-numeric-spacing","tabular-nums"],["font-variant-numeric",o]]),e("diagonal-fractions",[p,["--tw-numeric-fraction","diagonal-fractions"],["font-variant-numeric",o]]),e("stacked-fractions",[p,["--tw-numeric-fraction","stacked-fractions"],["font-variant-numeric",o]])}{let o=()=>I([$("--tw-outline-style","solid")]);r.static("outline-hidden",()=>[l("--tw-outline-style","none"),l("outline-style","none"),F("@media","(forced-colors: active)",[l("outline","2px solid transparent"),l("outline-offset","2px")])]),e("outline-none",[["--tw-outline-style","none"],["outline-style","none"]]),e("outline-solid",[["--tw-outline-style","solid"],["outline-style","solid"]]),e("outline-dashed",[["--tw-outline-style","dashed"],["outline-style","dashed"]]),e("outline-dotted",[["--tw-outline-style","dotted"],["outline-style","dotted"]]),e("outline-double",[["--tw-outline-style","double"],["outline-style","double"]]),r.functional("outline",p=>{if(p.value===null){if(p.modifier)return;let h=t.get(["--default-outline-width"])??"1px";return[o(),l("outline-style","var(--tw-outline-style)"),l("outline-width",h)]}if(p.value.kind==="arbitrary"){let h=p.value.value;switch(p.value.dataType??Y(h,["color","length","number","percentage"])){case"length":case"number":case"percentage":return p.modifier?void 0:[o(),l("outline-style","var(--tw-outline-style)"),l("outline-width",h)];default:return h=X(h,p.modifier,t),h===null?void 0:[l("outline-color",h)]}}{let h=te(p,t,["--outline-color","--color"]);if(h)return[l("outline-color",h)]}{if(p.modifier)return;let h=t.resolve(p.value.value,["--outline-width"]);if(h)return[o(),l("outline-style","var(--tw-outline-style)"),l("outline-width",h)];if(E(p.value.value))return[o(),l("outline-style","var(--tw-outline-style)"),l("outline-width",`${p.value.value}px`)]}}),i("outline",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--outline-color","--color"],modifiers:Array.from({length:21},(p,h)=>`${h*5}`),hasDefaultValue:!0},{values:["0","1","2","4","8"],valueThemeKeys:["--outline-width"]}]),n("outline-offset",{supportsNegative:!0,themeKeys:["--outline-offset"],handleBareValue:({value:p})=>E(p)?`${p}px`:null,handle:p=>[l("outline-offset",p)]}),i("outline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--outline-offset"]}])}n("opacity",{themeKeys:["--opacity"],handleBareValue:({value:o})=>lt(o)?`${o}%`:null,handle:o=>[l("opacity",o)]}),i("opacity",()=>[{values:Array.from({length:21},(o,p)=>`${p*5}`),valueThemeKeys:["--opacity"]}]),e("underline-offset-auto",[["text-underline-offset","auto"]]),n("underline-offset",{supportsNegative:!0,themeKeys:["--text-underline-offset"],handleBareValue:({value:o})=>E(o)?`${o}px`:null,handle:o=>[l("text-underline-offset",o)]}),i("underline-offset",()=>[{supportsNegative:!0,values:["0","1","2","4","8"],valueThemeKeys:["--text-underline-offset"]}]),r.functional("text",o=>{if(o.value){if(o.value.kind==="arbitrary"){let p=o.value.value;switch(o.value.dataType??Y(p,["color","length","percentage","absolute-size","relative-size"])){case"size":case"length":case"percentage":case"absolute-size":case"relative-size":{if(o.modifier){let A=o.modifier.kind==="arbitrary"?o.modifier.value:t.resolve(o.modifier.value,["--leading"]);if(!A&&xe(o.modifier.value)){let k=t.resolve(null,["--spacing"]);if(!k)return null;A=`calc(${k} * ${o.modifier.value})`}return!A&&o.modifier.value==="none"&&(A="1"),A?[l("font-size",p),l("line-height",A)]:null}return[l("font-size",p)]}default:return p=X(p,o.modifier,t),p===null?void 0:[l("color",p)]}}{let p=te(o,t,["--text-color","--color"]);if(p)return[l("color",p)]}{let p=t.resolveWith(o.value.value,["--text"],["--line-height","--letter-spacing","--font-weight"]);if(p){let[h,A={}]=Array.isArray(p)?p:[p];if(o.modifier){let k=o.modifier.kind==="arbitrary"?o.modifier.value:t.resolve(o.modifier.value,["--leading"]);if(!k&&xe(o.modifier.value)){let O=t.resolve(null,["--spacing"]);if(!O)return null;k=`calc(${O} * ${o.modifier.value})`}if(!k&&o.modifier.value==="none"&&(k="1"),!k)return null;let C=[l("font-size",h)];return k&&C.push(l("line-height",k)),C}return typeof A=="string"?[l("font-size",h),l("line-height",A)]:[l("font-size",h),l("line-height",A["--line-height"]?`var(--tw-leading, ${A["--line-height"]})`:void 0),l("letter-spacing",A["--letter-spacing"]?`var(--tw-tracking, ${A["--letter-spacing"]})`:void 0),l("font-weight",A["--font-weight"]?`var(--tw-font-weight, ${A["--font-weight"]})`:void 0)]}}}}),i("text",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:[],valueThemeKeys:["--text"],modifiers:[],modifierThemeKeys:["--leading"]}]);let D=()=>I([$("--tw-text-shadow-color"),$("--tw-text-shadow-alpha","100%","")]);e("text-shadow-initial",[D,["--tw-text-shadow-color","initial"]]),r.functional("text-shadow",o=>{let p;if(o.modifier&&(o.modifier.kind==="arbitrary"?p=o.modifier.value:E(o.modifier.value)&&(p=`${o.modifier.value}%`)),!o.value){let h=t.get(["--text-shadow"]);return h===null?void 0:[D(),l("--tw-text-shadow-alpha",p),...pe("text-shadow",h,p,A=>`var(--tw-text-shadow-color, ${A})`)]}if(o.value.kind==="arbitrary"){let h=o.value.value;switch(o.value.dataType??Y(h,["color"])){case"color":return h=X(h,o.modifier,t),h===null?void 0:[D(),l("--tw-text-shadow-color",Z(h,"var(--tw-text-shadow-alpha)"))];default:return[D(),l("--tw-text-shadow-alpha",p),...pe("text-shadow",h,p,k=>`var(--tw-text-shadow-color, ${k})`)]}}switch(o.value.value){case"none":return o.modifier?void 0:[D(),l("text-shadow","none")];case"inherit":return o.modifier?void 0:[D(),l("--tw-text-shadow-color","inherit")]}{let h=t.get([`--text-shadow-${o.value.value}`]);if(h)return[D(),l("--tw-text-shadow-alpha",p),...pe("text-shadow",h,p,A=>`var(--tw-text-shadow-color, ${A})`)]}{let h=te(o,t,["--text-shadow-color","--color"]);if(h)return[D(),l("--tw-text-shadow-color",Z(h,"var(--tw-text-shadow-alpha)"))]}}),i("text-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--text-shadow-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:["none"]},{valueThemeKeys:["--text-shadow"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`),hasDefaultValue:t.get(["--text-shadow"])!==null}]);{let k=function(N){return`var(--tw-ring-inset,) 0 0 0 calc(${N} + var(--tw-ring-offset-width)) var(--tw-ring-color, ${A})`},C=function(N){return`inset 0 0 0 ${N} var(--tw-inset-ring-color, currentcolor)`};var Q=k,ie=C;let o=["var(--tw-inset-shadow)","var(--tw-inset-ring-shadow)","var(--tw-ring-offset-shadow)","var(--tw-ring-shadow)","var(--tw-shadow)"].join(", "),p="0 0 #0000",h=()=>I([$("--tw-shadow",p),$("--tw-shadow-color"),$("--tw-shadow-alpha","100%",""),$("--tw-inset-shadow",p),$("--tw-inset-shadow-color"),$("--tw-inset-shadow-alpha","100%",""),$("--tw-ring-color"),$("--tw-ring-shadow",p),$("--tw-inset-ring-color"),$("--tw-inset-ring-shadow",p),$("--tw-ring-inset"),$("--tw-ring-offset-width","0px",""),$("--tw-ring-offset-color","#fff"),$("--tw-ring-offset-shadow",p)]);e("shadow-initial",[h,["--tw-shadow-color","initial"]]),r.functional("shadow",N=>{let T;if(N.modifier&&(N.modifier.kind==="arbitrary"?T=N.modifier.value:E(N.modifier.value)&&(T=`${N.modifier.value}%`)),!N.value){let U=t.get(["--shadow"]);return U===null?void 0:[h(),l("--tw-shadow-alpha",T),...pe("--tw-shadow",U,T,ae=>`var(--tw-shadow-color, ${ae})`),l("box-shadow",o)]}if(N.value.kind==="arbitrary"){let U=N.value.value;switch(N.value.dataType??Y(U,["color"])){case"color":return U=X(U,N.modifier,t),U===null?void 0:[h(),l("--tw-shadow-color",Z(U,"var(--tw-shadow-alpha)"))];default:return[h(),l("--tw-shadow-alpha",T),...pe("--tw-shadow",U,T,kt=>`var(--tw-shadow-color, ${kt})`),l("box-shadow",o)]}}switch(N.value.value){case"none":return N.modifier?void 0:[h(),l("--tw-shadow",p),l("box-shadow",o)];case"inherit":return N.modifier?void 0:[h(),l("--tw-shadow-color","inherit")]}{let U=t.get([`--shadow-${N.value.value}`]);if(U)return[h(),l("--tw-shadow-alpha",T),...pe("--tw-shadow",U,T,ae=>`var(--tw-shadow-color, ${ae})`),l("box-shadow",o)]}{let U=te(N,t,["--box-shadow-color","--color"]);if(U)return[h(),l("--tw-shadow-color",Z(U,"var(--tw-shadow-alpha)"))]}}),i("shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(N,T)=>`${T*5}`)},{values:["none"]},{valueThemeKeys:["--shadow"],modifiers:Array.from({length:21},(N,T)=>`${T*5}`),hasDefaultValue:t.get(["--shadow"])!==null}]),e("inset-shadow-initial",[h,["--tw-inset-shadow-color","initial"]]),r.functional("inset-shadow",N=>{let T;if(N.modifier&&(N.modifier.kind==="arbitrary"?T=N.modifier.value:E(N.modifier.value)&&(T=`${N.modifier.value}%`)),!N.value){let U=t.get(["--inset-shadow"]);return U===null?void 0:[h(),l("--tw-inset-shadow-alpha",T),...pe("--tw-inset-shadow",U,T,ae=>`var(--tw-inset-shadow-color, ${ae})`),l("box-shadow",o)]}if(N.value.kind==="arbitrary"){let U=N.value.value;switch(N.value.dataType??Y(U,["color"])){case"color":return U=X(U,N.modifier,t),U===null?void 0:[h(),l("--tw-inset-shadow-color",Z(U,"var(--tw-inset-shadow-alpha)"))];default:return[h(),l("--tw-inset-shadow-alpha",T),...pe("--tw-inset-shadow",U,T,kt=>`var(--tw-inset-shadow-color, ${kt})`,"inset "),l("box-shadow",o)]}}switch(N.value.value){case"none":return N.modifier?void 0:[h(),l("--tw-inset-shadow",p),l("box-shadow",o)];case"inherit":return N.modifier?void 0:[h(),l("--tw-inset-shadow-color","inherit")]}{let U=t.get([`--inset-shadow-${N.value.value}`]);if(U)return[h(),l("--tw-inset-shadow-alpha",T),...pe("--tw-inset-shadow",U,T,ae=>`var(--tw-inset-shadow-color, ${ae})`),l("box-shadow",o)]}{let U=te(N,t,["--box-shadow-color","--color"]);if(U)return[h(),l("--tw-inset-shadow-color",Z(U,"var(--tw-inset-shadow-alpha)"))]}}),i("inset-shadow",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--box-shadow-color","--color"],modifiers:Array.from({length:21},(N,T)=>`${T*5}`)},{values:["none"]},{valueThemeKeys:["--inset-shadow"],modifiers:Array.from({length:21},(N,T)=>`${T*5}`),hasDefaultValue:t.get(["--inset-shadow"])!==null}]),e("ring-inset",[h,["--tw-ring-inset","inset"]]);let A=t.get(["--default-ring-color"])??"currentcolor";r.functional("ring",N=>{if(!N.value){if(N.modifier)return;let T=t.get(["--default-ring-width"])??"1px";return[h(),l("--tw-ring-shadow",k(T)),l("box-shadow",o)]}if(N.value.kind==="arbitrary"){let T=N.value.value;switch(N.value.dataType??Y(T,["color","length"])){case"length":return N.modifier?void 0:[h(),l("--tw-ring-shadow",k(T)),l("box-shadow",o)];default:return T=X(T,N.modifier,t),T===null?void 0:[l("--tw-ring-color",T)]}}{let T=te(N,t,["--ring-color","--color"]);if(T)return[l("--tw-ring-color",T)]}{if(N.modifier)return;let T=t.resolve(N.value.value,["--ring-width"]);if(T===null&&E(N.value.value)&&(T=`${N.value.value}px`),T)return[h(),l("--tw-ring-shadow",k(T)),l("box-shadow",o)]}}),i("ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(N,T)=>`${T*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]),r.functional("inset-ring",N=>{if(!N.value)return N.modifier?void 0:[h(),l("--tw-inset-ring-shadow",C("1px")),l("box-shadow",o)];if(N.value.kind==="arbitrary"){let T=N.value.value;switch(N.value.dataType??Y(T,["color","length"])){case"length":return N.modifier?void 0:[h(),l("--tw-inset-ring-shadow",C(T)),l("box-shadow",o)];default:return T=X(T,N.modifier,t),T===null?void 0:[l("--tw-inset-ring-color",T)]}}{let T=te(N,t,["--ring-color","--color"]);if(T)return[l("--tw-inset-ring-color",T)]}{if(N.modifier)return;let T=t.resolve(N.value.value,["--ring-width"]);if(T===null&&E(N.value.value)&&(T=`${N.value.value}px`),T)return[h(),l("--tw-inset-ring-shadow",C(T)),l("box-shadow",o)]}}),i("inset-ring",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-color","--color"],modifiers:Array.from({length:21},(N,T)=>`${T*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-width"],hasDefaultValue:!0}]);let O="var(--tw-ring-inset,) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)";r.functional("ring-offset",N=>{if(N.value){if(N.value.kind==="arbitrary"){let T=N.value.value;switch(N.value.dataType??Y(T,["color","length"])){case"length":return N.modifier?void 0:[l("--tw-ring-offset-width",T),l("--tw-ring-offset-shadow",O)];default:return T=X(T,N.modifier,t),T===null?void 0:[l("--tw-ring-offset-color",T)]}}{let T=t.resolve(N.value.value,["--ring-offset-width"]);if(T)return N.modifier?void 0:[l("--tw-ring-offset-width",T),l("--tw-ring-offset-shadow",O)];if(E(N.value.value))return N.modifier?void 0:[l("--tw-ring-offset-width",`${N.value.value}px`),l("--tw-ring-offset-shadow",O)]}{let T=te(N,t,["--ring-offset-color","--color"]);if(T)return[l("--tw-ring-offset-color",T)]}}})}return i("ring-offset",()=>[{values:["current","inherit","transparent"],valueThemeKeys:["--ring-offset-color","--color"],modifiers:Array.from({length:21},(o,p)=>`${p*5}`)},{values:["0","1","2","4","8"],valueThemeKeys:["--ring-offset-width"]}]),r.functional("@container",o=>{let p=null;if(o.value===null?p="inline-size":o.value.kind==="arbitrary"?p=o.value.value:o.value.kind==="named"&&o.value.value==="normal"&&(p="normal"),p!==null)return o.modifier?[l("container-type",p),l("container-name",o.modifier.value)]:[l("container-type",p)]}),i("@container",()=>[{values:["normal"],valueThemeKeys:[],hasDefaultValue:!0}]),r}var Kt=["number","integer","ratio","percentage"];function Vr(t){let r=t.params;return bn.test(r)?i=>{let e={"--value":{usedSpacingInteger:!1,usedSpacingNumber:!1,themeKeys:new Set,literals:new Set},"--modifier":{usedSpacingInteger:!1,usedSpacingNumber:!1,themeKeys:new Set,literals:new Set}};z(t.nodes,n=>{if(n.kind!=="declaration"||!n.value||!n.value.includes("--value(")&&!n.value.includes("--modifier("))return;let s=q(n.value);ee(s,a=>{if(a.kind!=="function")return;if(a.value==="--spacing"&&!(e["--modifier"].usedSpacingNumber&&e["--value"].usedSpacingNumber))return ee(a.nodes,u=>{if(u.kind!=="function"||u.value!=="--value"&&u.value!=="--modifier")return;let f=u.value;for(let g of u.nodes)if(g.kind==="word"){if(g.value==="integer")e[f].usedSpacingInteger||=!0;else if(g.value==="number"&&(e[f].usedSpacingNumber||=!0,e["--modifier"].usedSpacingNumber&&e["--value"].usedSpacingNumber))return 2}}),0;if(a.value!=="--value"&&a.value!=="--modifier")return;let c=K(J(a.nodes),",");for(let[u,f]of c.entries())f=f.replace(/\\\*/g,"*"),f=f.replace(/--(.*?)\s--(.*?)/g,"--$1-*--$2"),f=f.replace(/\s+/g,""),f=f.replace(/(-\*){2,}/g,"-*"),f[0]==="-"&&f[1]==="-"&&!f.includes("-*")&&(f+="-*"),c[u]=f;a.nodes=q(c.join(","));for(let u of a.nodes)if(u.kind==="word"&&(u.value[0]==='"'||u.value[0]==="'")&&u.value[0]===u.value[u.value.length-1]){let f=u.value.slice(1,-1);e[a.value].literals.add(f)}else if(u.kind==="word"&&u.value[0]==="-"&&u.value[1]==="-"){let f=u.value.replace(/-\*.*$/g,"");e[a.value].themeKeys.add(f)}else if(u.kind==="word"&&!(u.value[0]==="["&&u.value[u.value.length-1]==="]")&&!Kt.includes(u.value)){console.warn(`Unsupported bare value data type: "${u.value}". +Only valid data types are: ${Kt.map(x=>`"${x}"`).join(", ")}. +`);let f=u.value,g=structuredClone(a),d="\xB6";ee(g.nodes,(x,{replaceWith:y})=>{x.kind==="word"&&x.value===f&&y({kind:"word",value:d})});let m="^".repeat(J([u]).length),w=J([g]).indexOf(d),v=["```css",J([a])," ".repeat(w)+m,"```"].join(` +`);console.warn(v)}}),n.value=J(s)}),i.utilities.functional(r.slice(0,-2),n=>{let s=structuredClone(t),a=n.value,c=n.modifier;if(a===null)return;let u=!1,f=!1,g=!1,d=!1,m=new Map,w=!1;if(z([s],(v,{parent:x,replaceWith:y})=>{if(x?.kind!=="rule"&&x?.kind!=="at-rule"||v.kind!=="declaration"||!v.value)return;let V=q(v.value);(ee(V,(S,{replaceWith:R})=>{if(S.kind==="function"){if(S.value==="--value"){u=!0;let j=Ar(a,S,i);return j?(f=!0,j.ratio?w=!0:m.set(v,x),R(j.nodes),1):(u||=!1,y([]),2)}else if(S.value==="--modifier"){if(c===null)return y([]),2;g=!0;let j=Ar(c,S,i);return j?(d=!0,R(j.nodes),1):(g||=!1,y([]),2)}}})??0)===0&&(v.value=J(V))}),u&&!f||g&&!d||w&&d||c&&!w&&!d)return null;if(w)for(let[v,x]of m){let y=x.nodes.indexOf(v);y!==-1&&x.nodes.splice(y,1)}return s.nodes}),i.utilities.suggest(r.slice(0,-2),()=>{let n=[],s=[];for(let[a,{literals:c,usedSpacingNumber:u,usedSpacingInteger:f,themeKeys:g}]of[[n,e["--value"]],[s,e["--modifier"]]]){for(let d of c)a.push(d);if(u)a.push(...st);else if(f)for(let d of st)E(d)&&a.push(d);for(let d of i.theme.keysInNamespaces(g))a.push(d.replace($r,(m,w,v)=>`${w}.${v}`))}return[{values:n,modifiers:s}]})}:kn.test(r)?i=>{i.utilities.static(r,()=>structuredClone(t.nodes))}:null}function Ar(t,r,i){for(let e of r.nodes){if(t.kind==="named"&&e.kind==="word"&&(e.value[0]==="'"||e.value[0]==='"')&&e.value[e.value.length-1]===e.value[0]&&e.value.slice(1,-1)===t.value)return{nodes:q(t.value)};if(t.kind==="named"&&e.kind==="word"&&e.value[0]==="-"&&e.value[1]==="-"){let n=e.value;if(n.endsWith("-*")){n=n.slice(0,-2);let s=i.theme.resolve(t.value,[n]);if(s)return{nodes:q(s)}}else{let s=n.split("-*");if(s.length<=1)continue;let a=[s.shift()],c=i.theme.resolveWith(t.value,a,s);if(c){let[,u={}]=c;{let f=u[s.pop()];if(f)return{nodes:q(f)}}}}}else if(t.kind==="named"&&e.kind==="word"){if(!Kt.includes(e.value))continue;let n=e.value==="ratio"&&"fraction"in t?t.fraction:t.value;if(!n)continue;let s=Y(n,[e.value]);if(s===null)continue;if(s==="ratio"){let[a,c]=K(n,"/");if(!E(a)||!E(c))continue}else{if(s==="number"&&!xe(n))continue;if(s==="percentage"&&!E(n.slice(0,-1)))continue}return{nodes:q(n),ratio:s==="ratio"}}else if(t.kind==="arbitrary"&&e.kind==="word"&&e.value[0]==="["&&e.value[e.value.length-1]==="]"){let n=e.value.slice(1,-1);if(n==="*")return{nodes:q(t.value)};if("dataType"in t&&t.dataType&&t.dataType!==n)continue;if("dataType"in t&&t.dataType)return{nodes:q(t.value)};if(Y(t.value,[n])!==null)return{nodes:q(t.value)}}}}function pe(t,r,i,e,n=""){let s=!1,a=Ue(r,u=>i==null?e(u):u.startsWith("current")?e(Z(u,i)):((u.startsWith("var(")||i.startsWith("var("))&&(s=!0),e(Cr(u,i))));function c(u){return n?K(u,",").map(f=>n+f).join(","):u}return s?[l(t,c(Ue(r,e))),G("@supports (color: lab(from red l a b))",[l(t,c(a))])]:[l(t,c(a))]}function at(t,r,i,e,n=""){let s=!1,a=K(r,",").map(c=>Ue(c,u=>i==null?e(u):u.startsWith("current")?e(Z(u,i)):((u.startsWith("var(")||i.startsWith("var("))&&(s=!0),e(Cr(u,i))))).map(c=>`drop-shadow(${c})`).join(" ");return s?[l(t,n+K(r,",").map(c=>`drop-shadow(${Ue(c,e)})`).join(" ")),G("@supports (color: lab(from red l a b))",[l(t,n+a)])]:[l(t,n+a)]}var Dt={"--alpha":yn,"--spacing":xn,"--theme":An,theme:Cn};function yn(t,r,i,...e){let[n,s]=K(i,"/").map(a=>a.trim());if(!n||!s)throw new Error(`The --alpha(\u2026) function requires a color and an alpha value, e.g.: \`--alpha(${n||"var(--my-color)"} / ${s||"50%"})\``);if(e.length>0)throw new Error(`The --alpha(\u2026) function only accepts one argument, e.g.: \`--alpha(${n||"var(--my-color)"} / ${s||"50%"})\``);return Z(n,s)}function xn(t,r,i,...e){if(!i)throw new Error("The --spacing(\u2026) function requires an argument, but received none.");if(e.length>0)throw new Error(`The --spacing(\u2026) function only accepts a single argument, but received ${e.length+1}.`);let n=t.theme.resolve(null,["--spacing"]);if(!n)throw new Error("The --spacing(\u2026) function requires that the `--spacing` theme variable exists, but it was not found.");return`calc(${n} * ${i})`}function An(t,r,i,...e){if(!i.startsWith("--"))throw new Error("The --theme(\u2026) function can only be used with CSS variables from your theme.");let n=!1;i.endsWith(" inline")&&(n=!0,i=i.slice(0,-7)),r.kind==="at-rule"&&(n=!0);let s=t.resolveThemeValue(i,n);if(!s){if(e.length>0)return e.join(", ");throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the variable name is correct or provide a fallback value to silence this error.`)}if(e.length===0)return s;let a=e.join(", ");if(a==="initial")return s;if(s==="initial")return a;if(s.startsWith("var(")||s.startsWith("theme(")||s.startsWith("--theme(")){let c=q(s);return Nn(c,a),J(c)}return s}function Cn(t,r,i,...e){i=$n(i);let n=t.resolveThemeValue(i);if(!n&&e.length>0)return e.join(", ");if(!n)throw new Error(`Could not resolve value for theme function: \`theme(${i})\`. Consider checking if the path is correct or provide a fallback value to silence this error.`);return n}var Sr=new RegExp(Object.keys(Dt).map(t=>`${t}\\(`).join("|"));function Ve(t,r){let i=0;return z(t,e=>{if(e.kind==="declaration"&&e.value&&Sr.test(e.value)){i|=8,e.value=Tr(e.value,e,r);return}e.kind==="at-rule"&&(e.name==="@media"||e.name==="@custom-media"||e.name==="@container"||e.name==="@supports")&&Sr.test(e.params)&&(i|=8,e.params=Tr(e.params,e,r))}),i}function Tr(t,r,i){let e=q(t);return ee(e,(n,{replaceWith:s})=>{if(n.kind==="function"&&n.value in Dt){let a=K(J(n.nodes).trim(),",").map(u=>u.trim()),c=Dt[n.value](i,r,...a);return s(q(c))}}),J(e)}function $n(t){if(t[0]!=="'"&&t[0]!=='"')return t;let r="",i=t[0];for(let e=1;e{if(i.kind==="function"&&!(i.value!=="var"&&i.value!=="theme"&&i.value!=="--theme"))if(i.nodes.length===1)i.nodes.push({kind:"word",value:`, ${r}`});else{let e=i.nodes[i.nodes.length-1];e.kind==="word"&&e.value==="initial"&&(e.value=r)}})}function ut(t,r){let i=t.length,e=r.length,n=i=48&&a<=57&&c>=48&&c<=57){let u=s,f=s+1,g=s,d=s+1;for(a=t.charCodeAt(f);a>=48&&a<=57;)a=t.charCodeAt(++f);for(c=r.charCodeAt(d);c>=48&&c<=57;)c=r.charCodeAt(++d);let m=t.slice(u,f),w=r.slice(g,d),v=Number(m)-Number(w);if(v)return v;if(mw)return 1;continue}if(a!==c)return a-c}return t.length-r.length}var Vn=/^\d+\/\d+$/;function Er(t){let r=new B(n=>({name:n,utility:n,fraction:!1,modifiers:[]}));for(let n of t.utilities.keys("static")){let s=r.get(n);s.fraction=!1,s.modifiers=[]}for(let n of t.utilities.keys("functional")){let s=t.utilities.getCompletions(n);for(let a of s)for(let c of a.values){let u=c!==null&&Vn.test(c),f=c===null?n:`${n}-${c}`,g=r.get(f);if(g.utility=n,g.fraction||=u,g.modifiers.push(...a.modifiers),a.supportsNegative){let d=r.get(`-${f}`);d.utility=`-${n}`,d.fraction||=u,d.modifiers.push(...a.modifiers)}}}if(r.size===0)return[];let i=Array.from(r.values());return i.sort((n,s)=>ut(n.name,s.name)),Sn(i)}function Sn(t){let r=[],i=null,e=new Map,n=new B(()=>[]);for(let a of t){let{utility:c,fraction:u}=a;i||(i={utility:c,items:[]},e.set(c,i)),c!==i.utility&&(r.push(i),i={utility:c,items:[]},e.set(c,i)),u?n.get(c).push(a):i.items.push(a)}i&&r[r.length-1]!==i&&r.push(i);for(let[a,c]of n){let u=e.get(a);u&&u.items.push(...c)}let s=[];for(let a of r)for(let c of a.items)s.push([c.name,{modifiers:c.modifiers}]);return s}function Rr(t){let r=[];for(let[e,n]of t.variants.entries()){let c=function({value:u,modifier:f}={}){let g=e;u&&(g+=s?`-${u}`:u),f&&(g+=`/${f}`);let d=t.parseVariant(g);if(!d)return[];let m=M(".__placeholder__",[]);if(Te(m,d,t.variants)===null)return[];let w=[];return Xe(m.nodes,(v,{path:x})=>{if(v.kind!=="rule"&&v.kind!=="at-rule"||v.nodes.length>0)return;x.sort((b,S)=>{let R=b.kind==="at-rule",j=S.kind==="at-rule";return R&&!j?-1:!R&&j?1:0});let y=x.flatMap(b=>b.kind==="rule"?b.selector==="&"?[]:[b.selector]:b.kind==="at-rule"?[`${b.name} ${b.params}`]:[]),V="";for(let b=y.length-1;b>=0;b--)V=V===""?y[b]:`${y[b]} { ${V} }`;w.push(V)}),w};var i=c;if(n.kind==="arbitrary")continue;let s=e!=="@",a=t.variants.getCompletions(e);switch(n.kind){case"static":{r.push({name:e,values:a,isArbitrary:!1,hasDash:s,selectors:c});break}case"functional":{r.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:c});break}case"compound":{r.push({name:e,values:a,isArbitrary:!0,hasDash:s,selectors:c});break}}}return r}function Pr(t,r){let{astNodes:i,nodeSorting:e}=ge(Array.from(r),t),n=new Map(r.map(a=>[a,null])),s=0n;for(let a of i){let c=e.get(a)?.candidate;c&&n.set(c,n.get(c)??s++)}return r.map(a=>[a,n.get(a)??null])}var ct=/^@?[a-zA-Z0-9_-]*$/;var Ut=class{compareFns=new Map;variants=new Map;completions=new Map;groupOrder=null;lastOrder=0;static(r,i,{compounds:e,order:n}={}){this.set(r,{kind:"static",applyFn:i,compoundsWith:0,compounds:e??2,order:n})}fromAst(r,i){let e=[];z(i,n=>{n.kind==="rule"?e.push(n.selector):n.kind==="at-rule"&&n.name!=="@slot"&&e.push(`${n.name} ${n.params}`)}),this.static(r,n=>{let s=structuredClone(i);jt(s,n.nodes),n.nodes=s},{compounds:Ae(e)})}functional(r,i,{compounds:e,order:n}={}){this.set(r,{kind:"functional",applyFn:i,compoundsWith:0,compounds:e??2,order:n})}compound(r,i,e,{compounds:n,order:s}={}){this.set(r,{kind:"compound",applyFn:e,compoundsWith:i,compounds:n??2,order:s})}group(r,i){this.groupOrder=this.nextOrder(),i&&this.compareFns.set(this.groupOrder,i),r(),this.groupOrder=null}has(r){return this.variants.has(r)}get(r){return this.variants.get(r)}kind(r){return this.variants.get(r)?.kind}compoundsWith(r,i){let e=this.variants.get(r),n=typeof i=="string"?this.variants.get(i):i.kind==="arbitrary"?{compounds:Ae([i.selector])}:this.variants.get(i.root);return!(!e||!n||e.kind!=="compound"||n.compounds===0||e.compoundsWith===0||(e.compoundsWith&n.compounds)===0)}suggest(r,i){this.completions.set(r,i)}getCompletions(r){return this.completions.get(r)?.()??[]}compare(r,i){if(r===i)return 0;if(r===null)return-1;if(i===null)return 1;if(r.kind==="arbitrary"&&i.kind==="arbitrary")return r.selector{m.nodes=g.map(w=>G(w,m.nodes))},{compounds:d})}i("*",[":is(& > *)"],{compounds:0}),i("**",[":is(& *)"],{compounds:0});function e(f,g){return g.map(d=>{d=d.trim();let m=K(d," ");return m[0]==="not"?m.slice(1).join(" "):f==="@container"?m[0][0]==="("?`not ${d}`:m[1]==="not"?`${m[0]} ${m.slice(2).join(" ")}`:`${m[0]} not ${m.slice(1).join(" ")}`:`not ${d}`})}let n=["@media","@supports","@container"];function s(f){for(let g of n){if(g!==f.name)continue;let d=K(f.params,",");return d.length>1?null:(d=e(f.name,d),F(f.name,d.join(", ")))}return null}function a(f){return f.includes("::")?null:`&:not(${K(f,",").map(d=>(d=d.replaceAll("&","*"),d)).join(", ")})`}r.compound("not",3,(f,g)=>{if(g.variant.kind==="arbitrary"&&g.variant.relative||g.modifier)return null;let d=!1;if(z([f],(m,{path:w})=>{if(m.kind!=="rule"&&m.kind!=="at-rule")return 0;if(m.nodes.length>0)return 0;let v=[],x=[];for(let V of w)V.kind==="at-rule"?v.push(V):V.kind==="rule"&&x.push(V);if(v.length>1)return 2;if(x.length>1)return 2;let y=[];for(let V of x){let b=a(V.selector);if(!b)return d=!1,2;y.push(M(b,[]))}for(let V of v){let b=s(V);if(!b)return d=!1,2;y.push(b)}return Object.assign(f,M("&",y)),d=!0,1}),f.kind==="rule"&&f.selector==="&"&&f.nodes.length===1&&Object.assign(f,f.nodes[0]),!d)return null}),r.suggest("not",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("not",f))),r.compound("group",2,(f,g)=>{if(g.variant.kind==="arbitrary"&&g.variant.relative)return null;let d=g.modifier?`:where(.${t.prefix?`${t.prefix}\\:`:""}group\\/${g.modifier.value})`:`:where(.${t.prefix?`${t.prefix}\\:`:""}group)`,m=!1;if(z([f],(w,{path:v})=>{if(w.kind!=="rule")return 0;for(let y of v.slice(0,-1))if(y.kind==="rule")return m=!1,2;let x=w.selector.replaceAll("&",d);K(x,",").length>1&&(x=`:is(${x})`),w.selector=`&:is(${x} *)`,m=!0}),!m)return null}),r.suggest("group",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("group",f))),r.compound("peer",2,(f,g)=>{if(g.variant.kind==="arbitrary"&&g.variant.relative)return null;let d=g.modifier?`:where(.${t.prefix?`${t.prefix}\\:`:""}peer\\/${g.modifier.value})`:`:where(.${t.prefix?`${t.prefix}\\:`:""}peer)`,m=!1;if(z([f],(w,{path:v})=>{if(w.kind!=="rule")return 0;for(let y of v.slice(0,-1))if(y.kind==="rule")return m=!1,2;let x=w.selector.replaceAll("&",d);K(x,",").length>1&&(x=`:is(${x})`),w.selector=`&:is(${x} ~ *)`,m=!0}),!m)return null}),r.suggest("peer",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("peer",f))),i("first-letter",["&::first-letter"]),i("first-line",["&::first-line"]),i("marker",["& *::marker","&::marker","& *::-webkit-details-marker","&::-webkit-details-marker"]),i("selection",["& *::selection","&::selection"]),i("file",["&::file-selector-button"]),i("placeholder",["&::placeholder"]),i("backdrop",["&::backdrop"]),i("details-content",["&::details-content"]);{let f=function(){return I([F("@property","--tw-content",[l("syntax",'"*"'),l("initial-value",'""'),l("inherits","false")])])};var c=f;r.static("before",g=>{g.nodes=[M("&::before",[f(),l("content","var(--tw-content)"),...g.nodes])]},{compounds:0}),r.static("after",g=>{g.nodes=[M("&::after",[f(),l("content","var(--tw-content)"),...g.nodes])]},{compounds:0})}i("first",["&:first-child"]),i("last",["&:last-child"]),i("only",["&:only-child"]),i("odd",["&:nth-child(odd)"]),i("even",["&:nth-child(even)"]),i("first-of-type",["&:first-of-type"]),i("last-of-type",["&:last-of-type"]),i("only-of-type",["&:only-of-type"]),i("visited",["&:visited"]),i("target",["&:target"]),i("open",["&:is([open], :popover-open, :open)"]),i("default",["&:default"]),i("checked",["&:checked"]),i("indeterminate",["&:indeterminate"]),i("placeholder-shown",["&:placeholder-shown"]),i("autofill",["&:autofill"]),i("optional",["&:optional"]),i("required",["&:required"]),i("valid",["&:valid"]),i("invalid",["&:invalid"]),i("user-valid",["&:user-valid"]),i("user-invalid",["&:user-invalid"]),i("in-range",["&:in-range"]),i("out-of-range",["&:out-of-range"]),i("read-only",["&:read-only"]),i("empty",["&:empty"]),i("focus-within",["&:focus-within"]),r.static("hover",f=>{f.nodes=[M("&:hover",[F("@media","(hover: hover)",f.nodes)])]}),i("focus",["&:focus"]),i("focus-visible",["&:focus-visible"]),i("active",["&:active"]),i("enabled",["&:enabled"]),i("disabled",["&:disabled"]),i("inert",["&:is([inert], [inert] *)"]),r.compound("in",2,(f,g)=>{if(g.modifier)return null;let d=!1;if(z([f],(m,{path:w})=>{if(m.kind!=="rule")return 0;for(let v of w.slice(0,-1))if(v.kind==="rule")return d=!1,2;m.selector=`:where(${m.selector.replaceAll("&","*")}) &`,d=!0}),!d)return null}),r.suggest("in",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("in",f))),r.compound("has",2,(f,g)=>{if(g.modifier)return null;let d=!1;if(z([f],(m,{path:w})=>{if(m.kind!=="rule")return 0;for(let v of w.slice(0,-1))if(v.kind==="rule")return d=!1,2;m.selector=`&:has(${m.selector.replaceAll("&","*")})`,d=!0}),!d)return null}),r.suggest("has",()=>Array.from(r.keys()).filter(f=>r.compoundsWith("has",f))),r.functional("aria",(f,g)=>{if(!g.value||g.modifier)return null;g.value.kind==="arbitrary"?f.nodes=[M(`&[aria-${Or(g.value.value)}]`,f.nodes)]:f.nodes=[M(`&[aria-${g.value.value}="true"]`,f.nodes)]}),r.suggest("aria",()=>["busy","checked","disabled","expanded","hidden","pressed","readonly","required","selected"]),r.functional("data",(f,g)=>{if(!g.value||g.modifier)return null;f.nodes=[M(`&[data-${Or(g.value.value)}]`,f.nodes)]}),r.functional("nth",(f,g)=>{if(!g.value||g.modifier||g.value.kind==="named"&&!E(g.value.value))return null;f.nodes=[M(`&:nth-child(${g.value.value})`,f.nodes)]}),r.functional("nth-last",(f,g)=>{if(!g.value||g.modifier||g.value.kind==="named"&&!E(g.value.value))return null;f.nodes=[M(`&:nth-last-child(${g.value.value})`,f.nodes)]}),r.functional("nth-of-type",(f,g)=>{if(!g.value||g.modifier||g.value.kind==="named"&&!E(g.value.value))return null;f.nodes=[M(`&:nth-of-type(${g.value.value})`,f.nodes)]}),r.functional("nth-last-of-type",(f,g)=>{if(!g.value||g.modifier||g.value.kind==="named"&&!E(g.value.value))return null;f.nodes=[M(`&:nth-last-of-type(${g.value.value})`,f.nodes)]}),r.functional("supports",(f,g)=>{if(!g.value||g.modifier)return null;let d=g.value.value;if(d===null)return null;if(/^[\w-]*\s*\(/.test(d)){let m=d.replace(/\b(and|or|not)\b/g," $1 ");f.nodes=[F("@supports",m,f.nodes)];return}d.includes(":")||(d=`${d}: var(--tw)`),(d[0]!=="("||d[d.length-1]!==")")&&(d=`(${d})`),f.nodes=[F("@supports",d,f.nodes)]},{compounds:1}),i("motion-safe",["@media (prefers-reduced-motion: no-preference)"]),i("motion-reduce",["@media (prefers-reduced-motion: reduce)"]),i("contrast-more",["@media (prefers-contrast: more)"]),i("contrast-less",["@media (prefers-contrast: less)"]);{let f=function(g,d,m,w){if(g===d)return 0;let v=w.get(g);if(v===null)return m==="asc"?-1:1;let x=w.get(d);return x===null?m==="asc"?1:-1:ye(v,x,m)};var u=f;{let g=t.namespace("--breakpoint"),d=new B(m=>{switch(m.kind){case"static":return t.resolveValue(m.root,["--breakpoint"])??null;case"functional":{if(!m.value||m.modifier)return null;let w=null;return m.value.kind==="arbitrary"?w=m.value.value:m.value.kind==="named"&&(w=t.resolveValue(m.value.value,["--breakpoint"])),!w||w.includes("var(")?null:w}case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("max",(m,w)=>{if(w.modifier)return null;let v=d.get(w);if(v===null)return null;m.nodes=[F("@media",`(width < ${v})`,m.nodes)]},{compounds:1})},(m,w)=>f(m,w,"desc",d)),r.suggest("max",()=>Array.from(g.keys()).filter(m=>m!==null)),r.group(()=>{for(let[m,w]of t.namespace("--breakpoint"))m!==null&&r.static(m,v=>{v.nodes=[F("@media",`(width >= ${w})`,v.nodes)]},{compounds:1});r.functional("min",(m,w)=>{if(w.modifier)return null;let v=d.get(w);if(v===null)return null;m.nodes=[F("@media",`(width >= ${v})`,m.nodes)]},{compounds:1})},(m,w)=>f(m,w,"asc",d)),r.suggest("min",()=>Array.from(g.keys()).filter(m=>m!==null))}{let g=t.namespace("--container"),d=new B(m=>{switch(m.kind){case"functional":{if(m.value===null)return null;let w=null;return m.value.kind==="arbitrary"?w=m.value.value:m.value.kind==="named"&&(w=t.resolveValue(m.value.value,["--container"])),!w||w.includes("var(")?null:w}case"static":case"arbitrary":case"compound":return null}});r.group(()=>{r.functional("@max",(m,w)=>{let v=d.get(w);if(v===null)return null;m.nodes=[F("@container",w.modifier?`${w.modifier.value} (width < ${v})`:`(width < ${v})`,m.nodes)]},{compounds:1})},(m,w)=>f(m,w,"desc",d)),r.suggest("@max",()=>Array.from(g.keys()).filter(m=>m!==null)),r.group(()=>{r.functional("@",(m,w)=>{let v=d.get(w);if(v===null)return null;m.nodes=[F("@container",w.modifier?`${w.modifier.value} (width >= ${v})`:`(width >= ${v})`,m.nodes)]},{compounds:1}),r.functional("@min",(m,w)=>{let v=d.get(w);if(v===null)return null;m.nodes=[F("@container",w.modifier?`${w.modifier.value} (width >= ${v})`:`(width >= ${v})`,m.nodes)]},{compounds:1})},(m,w)=>f(m,w,"asc",d)),r.suggest("@min",()=>Array.from(g.keys()).filter(m=>m!==null)),r.suggest("@",()=>Array.from(g.keys()).filter(m=>m!==null))}}return i("portrait",["@media (orientation: portrait)"]),i("landscape",["@media (orientation: landscape)"]),i("ltr",['&:where(:dir(ltr), [dir="ltr"], [dir="ltr"] *)']),i("rtl",['&:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *)']),i("dark",["@media (prefers-color-scheme: dark)"]),i("starting",["@starting-style"]),i("print",["@media print"]),i("forced-colors",["@media (forced-colors: active)"]),i("inverted-colors",["@media (inverted-colors: inverted)"]),i("pointer-none",["@media (pointer: none)"]),i("pointer-coarse",["@media (pointer: coarse)"]),i("pointer-fine",["@media (pointer: fine)"]),i("any-pointer-none",["@media (any-pointer: none)"]),i("any-pointer-coarse",["@media (any-pointer: coarse)"]),i("any-pointer-fine",["@media (any-pointer: fine)"]),i("noscript",["@media (scripting: none)"]),r}function Or(t){if(t.includes("=")){let[r,...i]=K(t,"="),e=i.join("=").trim();if(e[0]==="'"||e[0]==='"')return t;if(e.length>1){let n=e[e.length-1];if(e[e.length-2]===" "&&(n==="i"||n==="I"||n==="s"||n==="S"))return`${r}="${e.slice(0,-2)}" ${n}`}return`${r}="${e}"`}return t}function jt(t,r){z(t,(i,{replaceWith:e})=>{if(i.kind==="at-rule"&&i.name==="@slot")e(r);else if(i.kind==="at-rule"&&(i.name==="@keyframes"||i.name==="@property"))return Object.assign(i,I([F(i.name,i.params,i.nodes)])),1})}function Kr(t){let r=Nr(t),i=_r(t),e=new B(u=>mr(u,c)),n=new B(u=>Array.from(dr(u,c))),s=new B(u=>{let f=Dr(u,c);try{Ve(f.map(({node:g})=>g),c)}catch{return[]}return f}),a=new B(u=>{for(let f of Ze(u))t.markUsedVariable(f)}),c={theme:t,utilities:r,variants:i,invalidCandidates:new Set,important:!1,candidatesToCss(u){let f=[];for(let g of u){let d=!1,{astNodes:m}=ge([g],this,{onInvalidCandidate(){d=!0}});m=be(m,c,0),m.length===0||d?f.push(null):f.push(oe(m))}return f},getClassOrder(u){return Pr(this,u)},getClassList(){return Er(this)},getVariants(){return Rr(this)},parseCandidate(u){return n.get(u)},parseVariant(u){return e.get(u)},compileAstNodes(u){return s.get(u)},printCandidate(u){return hr(c,u)},printVariant(u){return nt(u)},getVariantOrder(){let u=Array.from(e.values());u.sort((m,w)=>this.variants.compare(m,w));let f=new Map,g,d=0;for(let m of u)m!==null&&(g!==void 0&&this.variants.compare(g,m)!==0&&d++,f.set(m,d),g=m);return f},resolveThemeValue(u,f=!0){let g=u.lastIndexOf("/"),d=null;g!==-1&&(d=u.slice(g+1).trim(),u=u.slice(0,g).trim());let m=t.resolve(null,[u],f?1:0)??void 0;return d&&m?Z(m,d):m},trackUsedVariables(u){a.get(u)}};return c}var Lt=["container-type","pointer-events","visibility","position","inset","inset-inline","inset-block","inset-inline-start","inset-inline-end","top","right","bottom","left","isolation","z-index","order","grid-column","grid-column-start","grid-column-end","grid-row","grid-row-start","grid-row-end","float","clear","--tw-container-component","margin","margin-inline","margin-block","margin-inline-start","margin-inline-end","margin-top","margin-right","margin-bottom","margin-left","box-sizing","display","field-sizing","aspect-ratio","height","max-height","min-height","width","max-width","min-width","flex","flex-shrink","flex-grow","flex-basis","table-layout","caption-side","border-collapse","border-spacing","transform-origin","translate","--tw-translate-x","--tw-translate-y","--tw-translate-z","scale","--tw-scale-x","--tw-scale-y","--tw-scale-z","rotate","--tw-rotate-x","--tw-rotate-y","--tw-rotate-z","--tw-skew-x","--tw-skew-y","transform","animation","cursor","touch-action","--tw-pan-x","--tw-pan-y","--tw-pinch-zoom","resize","scroll-snap-type","--tw-scroll-snap-strictness","scroll-snap-align","scroll-snap-stop","scroll-margin","scroll-margin-inline","scroll-margin-block","scroll-margin-inline-start","scroll-margin-inline-end","scroll-margin-top","scroll-margin-right","scroll-margin-bottom","scroll-margin-left","scroll-padding","scroll-padding-inline","scroll-padding-block","scroll-padding-inline-start","scroll-padding-inline-end","scroll-padding-top","scroll-padding-right","scroll-padding-bottom","scroll-padding-left","list-style-position","list-style-type","list-style-image","appearance","columns","break-before","break-inside","break-after","grid-auto-columns","grid-auto-flow","grid-auto-rows","grid-template-columns","grid-template-rows","flex-direction","flex-wrap","place-content","place-items","align-content","align-items","justify-content","justify-items","gap","column-gap","row-gap","--tw-space-x-reverse","--tw-space-y-reverse","divide-x-width","divide-y-width","--tw-divide-y-reverse","divide-style","divide-color","place-self","align-self","justify-self","overflow","overflow-x","overflow-y","overscroll-behavior","overscroll-behavior-x","overscroll-behavior-y","scroll-behavior","border-radius","border-start-radius","border-end-radius","border-top-radius","border-right-radius","border-bottom-radius","border-left-radius","border-start-start-radius","border-start-end-radius","border-end-end-radius","border-end-start-radius","border-top-left-radius","border-top-right-radius","border-bottom-right-radius","border-bottom-left-radius","border-width","border-inline-width","border-block-width","border-inline-start-width","border-inline-end-width","border-top-width","border-right-width","border-bottom-width","border-left-width","border-style","border-inline-style","border-block-style","border-inline-start-style","border-inline-end-style","border-top-style","border-right-style","border-bottom-style","border-left-style","border-color","border-inline-color","border-block-color","border-inline-start-color","border-inline-end-color","border-top-color","border-right-color","border-bottom-color","border-left-color","background-color","background-image","--tw-gradient-position","--tw-gradient-stops","--tw-gradient-via-stops","--tw-gradient-from","--tw-gradient-from-position","--tw-gradient-via","--tw-gradient-via-position","--tw-gradient-to","--tw-gradient-to-position","mask-image","--tw-mask-top","--tw-mask-top-from-color","--tw-mask-top-from-position","--tw-mask-top-to-color","--tw-mask-top-to-position","--tw-mask-right","--tw-mask-right-from-color","--tw-mask-right-from-position","--tw-mask-right-to-color","--tw-mask-right-to-position","--tw-mask-bottom","--tw-mask-bottom-from-color","--tw-mask-bottom-from-position","--tw-mask-bottom-to-color","--tw-mask-bottom-to-position","--tw-mask-left","--tw-mask-left-from-color","--tw-mask-left-from-position","--tw-mask-left-to-color","--tw-mask-left-to-position","--tw-mask-linear","--tw-mask-linear-position","--tw-mask-linear-from-color","--tw-mask-linear-from-position","--tw-mask-linear-to-color","--tw-mask-linear-to-position","--tw-mask-radial","--tw-mask-radial-shape","--tw-mask-radial-size","--tw-mask-radial-position","--tw-mask-radial-from-color","--tw-mask-radial-from-position","--tw-mask-radial-to-color","--tw-mask-radial-to-position","--tw-mask-conic","--tw-mask-conic-position","--tw-mask-conic-from-color","--tw-mask-conic-from-position","--tw-mask-conic-to-color","--tw-mask-conic-to-position","box-decoration-break","background-size","background-attachment","background-clip","background-position","background-repeat","background-origin","mask-composite","mask-mode","mask-type","mask-size","mask-clip","mask-position","mask-repeat","mask-origin","fill","stroke","stroke-width","object-fit","object-position","padding","padding-inline","padding-block","padding-inline-start","padding-inline-end","padding-top","padding-right","padding-bottom","padding-left","text-align","text-indent","vertical-align","font-family","font-size","line-height","font-weight","letter-spacing","text-wrap","overflow-wrap","word-break","text-overflow","hyphens","white-space","color","text-transform","font-style","font-stretch","font-variant-numeric","text-decoration-line","text-decoration-color","text-decoration-style","text-decoration-thickness","text-underline-offset","-webkit-font-smoothing","placeholder-color","caret-color","accent-color","color-scheme","opacity","background-blend-mode","mix-blend-mode","box-shadow","--tw-shadow","--tw-shadow-color","--tw-ring-shadow","--tw-ring-color","--tw-inset-shadow","--tw-inset-shadow-color","--tw-inset-ring-shadow","--tw-inset-ring-color","--tw-ring-offset-width","--tw-ring-offset-color","outline","outline-width","outline-offset","outline-color","--tw-blur","--tw-brightness","--tw-contrast","--tw-drop-shadow","--tw-grayscale","--tw-hue-rotate","--tw-invert","--tw-saturate","--tw-sepia","filter","--tw-backdrop-blur","--tw-backdrop-brightness","--tw-backdrop-contrast","--tw-backdrop-grayscale","--tw-backdrop-hue-rotate","--tw-backdrop-invert","--tw-backdrop-opacity","--tw-backdrop-saturate","--tw-backdrop-sepia","backdrop-filter","transition-property","transition-behavior","transition-delay","transition-duration","transition-timing-function","will-change","contain","content","forced-color-adjust"];function ge(t,r,{onInvalidCandidate:i}={}){let e=new Map,n=[],s=new Map;for(let c of t){if(r.invalidCandidates.has(c)){i?.(c);continue}let u=r.parseCandidate(c);if(u.length===0){i?.(c);continue}s.set(c,u)}let a=r.getVariantOrder();for(let[c,u]of s){let f=!1;for(let g of u){let d=r.compileAstNodes(g);if(d.length!==0){f=!0;for(let{node:m,propertySort:w}of d){let v=0n;for(let x of g.variants)v|=1n<{let f=e.get(c),g=e.get(u);if(f.variants-g.variants!==0n)return Number(f.variants-g.variants);let d=0;for(;d1)return null;for(let u of a.nodes)if(u.kind!=="rule"&&u.kind!=="at-rule"||n(u,r)===null)return null;z(a.nodes,u=>{if((u.kind==="rule"||u.kind==="at-rule")&&u.nodes.length<=0)return u.nodes=t.nodes,1}),t.nodes=a.nodes;return}if(n(t,r)===null)return null}function Ur(t){let r=t.options?.types??[];return r.length>1&&r.includes("any")}function Tn(t,r){if(t.kind==="arbitrary"){let a=t.value;return t.modifier&&(a=X(a,t.modifier,r.theme)),a===null?[]:[[l(t.property,a)]]}let i=r.utilities.get(t.root)??[],e=[],n=i.filter(a=>!Ur(a));for(let a of n){if(a.kind!==t.kind)continue;let c=a.compileFn(t);if(c!==void 0){if(c===null)return e;e.push(c)}}if(e.length>0)return e;let s=i.filter(a=>Ur(a));for(let a of s){if(a.kind!==t.kind)continue;let c=a.compileFn(t);if(c!==void 0){if(c===null)return e;e.push(c)}}return e}function jr(t){for(let r of t)r.kind!=="at-root"&&(r.kind==="declaration"?r.important=!0:(r.kind==="rule"||r.kind==="at-rule")&&jr(r.nodes))}function En(t){let r=new Set,i=0,e=t.slice(),n=!1;for(;e.length>0;){let s=e.shift();if(s.kind==="declaration"){if(s.value===void 0||(i++,n))continue;if(s.property==="--tw-sort"){let c=Lt.indexOf(s.value??"");if(c!==-1){r.add(c),n=!0;continue}}let a=Lt.indexOf(s.property);a!==-1&&r.add(a)}else if(s.kind==="rule"||s.kind==="at-rule")for(let a of s.nodes)e.push(a)}return{order:Array.from(r).sort((s,a)=>s-a),count:i}}function Le(t,r){let i=0,e=G("&",t),n=new Set,s=new B(()=>new Set),a=new B(()=>new Set);z([e],(d,{parent:m,path:w})=>{if(d.kind==="at-rule"){if(d.name==="@keyframes")return z(d.nodes,v=>{if(v.kind==="at-rule"&&v.name==="@apply")throw new Error("You cannot use `@apply` inside `@keyframes`.")}),1;if(d.name==="@utility"){let v=d.params.replace(/-\*$/,"");a.get(v).add(d),z(d.nodes,x=>{if(!(x.kind!=="at-rule"||x.name!=="@apply")){n.add(d);for(let y of Lr(x,r))s.get(d).add(y)}});return}if(d.name==="@apply"){if(m===null)return;i|=1,n.add(m);for(let v of Lr(d,r))for(let x of w)x!==d&&n.has(x)&&s.get(x).add(v)}}});let c=new Set,u=[],f=new Set;function g(d,m=[]){if(!c.has(d)){if(f.has(d)){let w=m[(m.indexOf(d)+1)%m.length];throw d.kind==="at-rule"&&d.name==="@utility"&&w.kind==="at-rule"&&w.name==="@utility"&&z(d.nodes,v=>{if(v.kind!=="at-rule"||v.name!=="@apply")return;let x=v.params.split(/\s+/g);for(let y of x)for(let V of r.parseCandidate(y))switch(V.kind){case"arbitrary":break;case"static":case"functional":if(w.params.replace(/-\*$/,"")===V.root)throw new Error(`You cannot \`@apply\` the \`${y}\` utility here because it creates a circular dependency.`);break;default:}}),new Error(`Circular dependency detected: + +${oe([d])} +Relies on: + +${oe([w])}`)}f.add(d);for(let w of s.get(d))for(let v of a.get(w))m.push(d),g(v,m),m.pop();c.add(d),f.delete(d),u.push(d)}}for(let d of n)g(d);for(let d of u)"nodes"in d&&z(d.nodes,(m,{replaceWith:w})=>{if(m.kind!=="at-rule"||m.name!=="@apply")return;let v=m.params.split(/(\s+)/g),x={},y=0;for(let[V,b]of v.entries())V%2===0&&(x[b]=y),y+=b.length;{let V=Object.keys(x),b=ge(V,r,{onInvalidCandidate:P=>{if(r.theme.prefix&&!P.startsWith(r.theme.prefix))throw new Error(`Cannot apply unprefixed utility class \`${P}\`. Did you mean \`${r.theme.prefix}:${P}\`?`);if(r.invalidCandidates.has(P))throw new Error(`Cannot apply utility class \`${P}\` because it has been explicitly disabled: https://tailwindcss.com/docs/detecting-classes-in-source-files#explicitly-excluding-classes`);let D=K(P,":");if(D.length>1){let _=D.pop();if(r.candidatesToCss([_])[0]){let H=r.candidatesToCss(D.map(W=>`${W}:[--tw-variant-check:1]`)),L=D.filter((W,Q)=>H[Q]===null);if(L.length>0){if(L.length===1)throw new Error(`Cannot apply utility class \`${P}\` because the ${L.map(W=>`\`${W}\``)} variant does not exist.`);{let W=new Intl.ListFormat("en",{style:"long",type:"conjunction"});throw new Error(`Cannot apply utility class \`${P}\` because the ${W.format(L.map(Q=>`\`${Q}\``))} variants do not exist.`)}}}}throw r.theme.size===0?new Error(`Cannot apply unknown utility class \`${P}\`. Are you using CSS modules or similar and missing \`@reference\`? https://tailwindcss.com/docs/functions-and-directives#reference-directive`):new Error(`Cannot apply unknown utility class \`${P}\``)}}),S=m.src,R=b.astNodes.map(P=>{let D=b.nodeSorting.get(P)?.candidate,_=D?x[D]:void 0;if(P=structuredClone(P),!S||!D||_===void 0)return z([P],L=>{L.src=S}),P;let H=[S[0],S[1],S[2]];return H[1]+=7+_,H[2]=H[1]+D.length,z([P],L=>{L.src=H}),P}),j=[];for(let P of R)if(P.kind==="rule")for(let D of P.nodes)j.push(D);else j.push(P);w(j)}});return i}function*Lr(t,r){for(let i of t.params.split(/\s+/g))for(let e of r.parseCandidate(i))switch(e.kind){case"arbitrary":break;case"static":case"functional":yield e.root;break;default:}}async function zt(t,r,i,e=0,n=!1){let s=0,a=[];return z(t,(c,{replaceWith:u})=>{if(c.kind==="at-rule"&&(c.name==="@import"||c.name==="@reference")){let f=Rn(q(c.params));if(f===null)return;c.name==="@reference"&&(f.media="reference"),s|=2;let{uri:g,layer:d,media:m,supports:w}=f;if(g.startsWith("data:")||g.startsWith("http://")||g.startsWith("https://"))return;let v=se({},[]);return a.push((async()=>{if(e>100)throw new Error(`Exceeded maximum recursion depth while resolving \`${g}\` in \`${r}\`)`);let x=await i(g,r),y=ve(x.content,{from:n?x.path:void 0});await zt(y,x.base,i,e+1,n),v.nodes=Pn(c,[se({base:x.base},y)],d,m,w)})()),u(v),1}}),a.length>0&&await Promise.all(a),s}function Rn(t){let r,i=null,e=null,n=null;for(let s=0;s/g,"1")),e[0]==="opacity"&&(typeof n=="number"||typeof n=="string")){let a=typeof n=="string"?parseFloat(n):n;a>=0&&a<=1&&(n=a*100+"%")}let s=ft(e);s&&t.theme.add(`--${s}`,""+n,7)}if(Object.hasOwn(r,"fontFamily")){let e=5;{let n=Ee(r.fontFamily.sans);n&&t.theme.hasDefault("--font-sans")&&(t.theme.add("--default-font-family",n,e),t.theme.add("--default-font-feature-settings",Ee(r.fontFamily.sans,"fontFeatureSettings")??"normal",e),t.theme.add("--default-font-variation-settings",Ee(r.fontFamily.sans,"fontVariationSettings")??"normal",e))}{let n=Ee(r.fontFamily.mono);n&&t.theme.hasDefault("--font-mono")&&(t.theme.add("--default-mono-font-family",n,e),t.theme.add("--default-mono-font-feature-settings",Ee(r.fontFamily.mono,"fontFeatureSettings")??"normal",e),t.theme.add("--default-mono-font-variation-settings",Ee(r.fontFamily.mono,"fontVariationSettings")??"normal",e))}}return r}function On(t){let r=[];return Ir(t,[],(i,e)=>{if(Kn(i))return r.push([e,i]),1;if(Dn(i)){r.push([e,i[0]]);for(let n of Reflect.ownKeys(i[1]))r.push([[...e,`-${n}`],i[1][n]]);return 1}if(Array.isArray(i)&&i.every(n=>typeof n=="string"))return e[0]==="fontSize"?(r.push([e,i[0]]),i.length>=2&&r.push([[...e,"-line-height"],i[1]])):r.push([e,i.join(", ")]),1}),r}var _n=/^[a-zA-Z0-9-_%/\.]+$/;function ft(t){if(t[0]==="container")return null;t=structuredClone(t),t[0]==="animation"&&(t[0]="animate"),t[0]==="aspectRatio"&&(t[0]="aspect"),t[0]==="borderRadius"&&(t[0]="radius"),t[0]==="boxShadow"&&(t[0]="shadow"),t[0]==="colors"&&(t[0]="color"),t[0]==="containers"&&(t[0]="container"),t[0]==="fontFamily"&&(t[0]="font"),t[0]==="fontSize"&&(t[0]="text"),t[0]==="letterSpacing"&&(t[0]="tracking"),t[0]==="lineHeight"&&(t[0]="leading"),t[0]==="maxWidth"&&(t[0]="container"),t[0]==="screens"&&(t[0]="breakpoint"),t[0]==="transitionTimingFunction"&&(t[0]="ease");for(let r of t)if(!_n.test(r))return null;return t.map((r,i,e)=>r==="1"&&i!==e.length-1?"":r).map(r=>r.replaceAll(".","_").replace(/([a-z])([A-Z])/g,(i,e,n)=>`${e}-${n.toLowerCase()}`)).filter((r,i)=>r!=="DEFAULT"||i!==t.length-1).join("-")}function Kn(t){return typeof t=="number"||typeof t=="string"}function Dn(t){if(!Array.isArray(t)||t.length!==2||typeof t[0]!="string"&&typeof t[0]!="number"||t[1]===void 0||t[1]===null||typeof t[1]!="object")return!1;for(let r of Reflect.ownKeys(t[1]))if(typeof r!="string"||typeof t[1][r]!="string"&&typeof t[1][r]!="number")return!1;return!0}function Ir(t,r=[],i){for(let e of Reflect.ownKeys(t)){let n=t[e];if(n==null)continue;let s=[...r,e],a=i(n,s)??0;if(a!==1){if(a===2)return 2;if(!(!Array.isArray(n)&&typeof n!="object")&&Ir(n,s,i)===2)return 2}}}function pt(t){let r=[];for(let i of K(t,".")){if(!i.includes("[")){r.push(i);continue}let e=0;for(;;){let n=i.indexOf("[",e),s=i.indexOf("]",n);if(n===-1||s===-1)break;n>e&&r.push(i.slice(e,n)),r.push(i.slice(n+1,s)),e=s+1}e<=i.length-1&&r.push(i.slice(e))}return r}function Re(t){if(Object.prototype.toString.call(t)!=="[object Object]")return!1;let r=Object.getPrototypeOf(t);return r===null||Object.getPrototypeOf(r)===null}function ze(t,r,i,e=[]){for(let n of r)if(n!=null)for(let s of Reflect.ownKeys(n)){e.push(s);let a=i(t[s],n[s],e);a!==void 0?t[s]=a:!Re(t[s])||!Re(n[s])?t[s]=n[s]:t[s]=ze({},[t[s],n[s]],i,e),e.pop()}return t}function dt(t,r,i){return function(n,s){let a=n.lastIndexOf("/"),c=null;a!==-1&&(c=n.slice(a+1).trim(),n=n.slice(0,a).trim());let u=(()=>{let f=pt(n),[g,d]=Un(t.theme,f),m=i(Fr(r()??{},f)??null);if(typeof m=="string"&&(m=m.replace("","1")),typeof g!="object")return typeof d!="object"&&d&4?m??g:g;if(m!==null&&typeof m=="object"&&!Array.isArray(m)){let w=ze({},[m],(v,x)=>x);if(g===null&&Object.hasOwn(m,"__CSS_VALUES__")){let v={};for(let x in m.__CSS_VALUES__)v[x]=m[x],delete w[x];g=v}for(let v in g)v!=="__CSS_VALUES__"&&(m?.__CSS_VALUES__?.[v]&4&&Fr(w,v.split("-"))!==void 0||(w[we(v)]=g[v]));return w}if(Array.isArray(g)&&Array.isArray(d)&&Array.isArray(m)){let w=g[0],v=g[1];d[0]&4&&(w=m[0]??w);for(let x of Object.keys(v))d[1][x]&4&&(v[x]=m[1][x]??v[x]);return[w,v]}return g??m})();return c&&typeof u=="string"&&(u=Z(u,c)),u??s}}function Un(t,r){if(r.length===1&&r[0].startsWith("--"))return[t.get([r[0]]),t.getOptions(r[0])];let i=ft(r),e=new Map,n=new B(()=>new Map),s=t.namespace(`--${i}`);if(s.size===0)return[null,0];let a=new Map;for(let[g,d]of s){if(!g||!g.includes("--")){e.set(g,d),a.set(g,t.getOptions(g?`--${i}-${g}`:`--${i}`));continue}let m=g.indexOf("--"),w=g.slice(0,m),v=g.slice(m+2);v=v.replace(/-([a-z])/g,(x,y)=>y.toUpperCase()),n.get(w===""?null:w).set(v,[d,t.getOptions(`--${i}${g}`)])}let c=t.getOptions(`--${i}`);for(let[g,d]of n){let m=e.get(g);if(typeof m!="string")continue;let w={},v={};for(let[x,[y,V]]of d)w[x]=y,v[x]=V;e.set(g,[m,w]),a.set(g,[c,v])}let u={},f={};for(let[g,d]of e)Mr(u,[g??"DEFAULT"],d);for(let[g,d]of a)Mr(f,[g??"DEFAULT"],d);return r[r.length-1]==="DEFAULT"?[u?.DEFAULT??null,f.DEFAULT??0]:"DEFAULT"in u&&Object.keys(u).length===1?[u.DEFAULT,f.DEFAULT??0]:(u.__CSS_VALUES__=f,[u,f])}function Fr(t,r){for(let i=0;i0){let m=Ie(n);e?e.nodes.push(m):r.push(m),n=""}let u=a,f=a+1;for(;f0){let f=Ie(n);u.nodes.push(f),n=""}i.length>0?e=i[i.length-1]:e=null;break}case Bn:case Mn:case qn:{if(n.length>0){let u=Ie(n);e?e.nodes.push(u):r.push(u)}n=String.fromCharCode(c);break}case Yr:{if(n.length>0){let g=Ie(n);e?e.nodes.push(g):r.push(g)}n="";let u=a,f=0;for(let g=a+1;g0&&r.push(Ie(n)),r}var ti=/^[a-z@][a-zA-Z0-9/%._-]*$/;function It({designSystem:t,ast:r,resolvedConfig:i,featuresRef:e,referenceMode:n}){let s={addBase(a){if(n)return;let c=ue(a);e.current|=Ve(c,t),r.push(F("@layer","base",c))},addVariant(a,c){if(!ct.test(a))throw new Error(`\`addVariant('${a}')\` defines an invalid variant name. Variants should only contain alphanumeric, dashes or underscore characters.`);if(typeof c=="string"){if(c.includes(":merge("))return}else if(Array.isArray(c)){if(c.some(f=>f.includes(":merge(")))return}else if(typeof c=="object"){let f=function(g,d){return Object.entries(g).some(([m,w])=>m.includes(d)||typeof w=="object"&&f(w,d))};var u=f;if(f(c,":merge("))return}typeof c=="string"||Array.isArray(c)?t.variants.static(a,f=>{f.nodes=ri(c,f.nodes)},{compounds:Ae(typeof c=="string"?[c]:c)}):typeof c=="object"&&t.variants.fromAst(a,ue(c))},matchVariant(a,c,u){function f(d,m,w){let v=c(d,{modifier:m?.value??null});return ri(v,w)}try{let d=c("a",{modifier:null});if(typeof d=="string"&&d.includes(":merge("))return;if(Array.isArray(d)&&d.some(m=>m.includes(":merge(")))return}catch{}let g=Object.keys(u?.values??{});t.variants.group(()=>{t.variants.functional(a,(d,m)=>{if(!m.value){if(u?.values&&"DEFAULT"in u.values){d.nodes=f(u.values.DEFAULT,m.modifier,d.nodes);return}return null}if(m.value.kind==="arbitrary")d.nodes=f(m.value.value,m.modifier,d.nodes);else if(m.value.kind==="named"&&u?.values){let w=u.values[m.value.value];if(typeof w!="string")return;d.nodes=f(w,m.modifier,d.nodes)}})},(d,m)=>{if(d.kind!=="functional"||m.kind!=="functional")return 0;let w=d.value?d.value.value:"DEFAULT",v=m.value?m.value.value:"DEFAULT",x=u?.values?.[w]??w,y=u?.values?.[v]??v;if(u&&typeof u.sort=="function")return u.sort({value:x,modifier:d.modifier?.value??null},{value:y,modifier:m.modifier?.value??null});let V=g.indexOf(w),b=g.indexOf(v);return V=V===-1?g.length:V,b=b===-1?g.length:b,V!==b?V-b:xObject.entries(f));c=c.flatMap(([f,g])=>K(f,",").map(d=>[d.trim(),g]));let u=new B(()=>[]);for(let[f,g]of c){if(f.startsWith("@keyframes ")){n||r.push(G(f,ue(g)));continue}let d=mt(f),m=!1;if(Fe(d,w=>{if(w.kind==="selector"&&w.value[0]==="."&&ti.test(w.value.slice(1))){let v=w.value;w.value="&";let x=Me(d),y=v.slice(1),V=x==="&"?ue(g):[G(x,ue(g))];u.get(y).push(...V),m=!0,w.value=v;return}if(w.kind==="function"&&w.value===":not")return 1}),!m)throw new Error(`\`addUtilities({ '${f}' : \u2026 })\` defines an invalid utility selector. Utilities must be a single class name and start with a lowercase letter, eg. \`.scrollbar-none\`.`)}for(let[f,g]of u)t.theme.prefix&&z(g,d=>{if(d.kind==="rule"){let m=mt(d.selector);Fe(m,w=>{w.kind==="selector"&&w.value[0]==="."&&(w.value=`.${t.theme.prefix}\\:${w.value.slice(1)}`)}),d.selector=Me(m)}}),t.utilities.static(f,d=>{let m=structuredClone(g);return ii(m,f,d.raw),e.current|=Le(m,t),m})},matchUtilities(a,c){let u=c?.type?Array.isArray(c?.type)?c.type:[c.type]:["any"];for(let[g,d]of Object.entries(a)){let m=function({negative:w}){return v=>{if(v.value?.kind==="arbitrary"&&u.length>0&&!u.includes("any")&&(v.value.dataType&&!u.includes(v.value.dataType)||!v.value.dataType&&!Y(v.value.value,u)))return;let x=u.includes("color"),y=null,V=!1;{let R=c?.values??{};x&&(R=Object.assign({inherit:"inherit",transparent:"transparent",current:"currentcolor"},R)),v.value?v.value.kind==="arbitrary"?y=v.value.value:v.value.fraction&&R[v.value.fraction]?(y=R[v.value.fraction],V=!0):R[v.value.value]?y=R[v.value.value]:R.__BARE_VALUE__&&(y=R.__BARE_VALUE__(v.value)??null,V=(v.value.fraction!==null&&y?.includes("/"))??!1):y=R.DEFAULT??null}if(y===null)return;let b;{let R=c?.modifiers??null;v.modifier?R==="any"||v.modifier.kind==="arbitrary"?b=v.modifier.value:R?.[v.modifier.value]?b=R[v.modifier.value]:x&&!Number.isNaN(Number(v.modifier.value))?b=`${v.modifier.value}%`:b=null:b=null}if(v.modifier&&b===null&&!V)return v.value?.kind==="arbitrary"?null:void 0;x&&b!==null&&(y=Z(y,b)),w&&(y=`calc(${y} * -1)`);let S=ue(d(y,{modifier:b}));return ii(S,g,v.raw),e.current|=Le(S,t),S}};var f=m;if(!ti.test(g))throw new Error(`\`matchUtilities({ '${g}' : \u2026 })\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter, eg. \`scrollbar\`.`);c?.supportsNegativeValues&&t.utilities.functional(`-${g}`,m({negative:!0}),{types:u}),t.utilities.functional(g,m({negative:!1}),{types:u}),t.utilities.suggest(g,()=>{let w=c?.values??{},v=new Set(Object.keys(w));v.delete("__BARE_VALUE__"),v.has("DEFAULT")&&(v.delete("DEFAULT"),v.add(null));let x=c?.modifiers??{},y=x==="any"?[]:Object.keys(x);return[{supportsNegative:c?.supportsNegativeValues??!1,values:Array.from(v),modifiers:y}]})}},addComponents(a,c){this.addUtilities(a,c)},matchComponents(a,c){this.matchUtilities(a,c)},theme:dt(t,()=>i.theme??{},a=>a),prefix(a){return a},config(a,c){let u=i;if(!a)return u;let f=pt(a);for(let g=0;gObject.entries(e));for(let[e,n]of i)if(typeof n!="object"){if(!e.startsWith("--")){if(n==="@slot"){r.push(G(e,[F("@slot")]));continue}e=e.replace(/([A-Z])/g,"-$1").toLowerCase()}r.push(l(e,String(n)))}else if(Array.isArray(n))for(let s of n)typeof s=="string"?r.push(l(e,s)):r.push(G(e,ue(s)));else n!==null&&r.push(G(e,ue(n)));return r}function ri(t,r){return(typeof t=="string"?[t]:t).flatMap(e=>{if(e.trim().endsWith("}")){let n=e.replace("}","{@slot}}"),s=ve(n);return jt(s,r),s}else return G(e,r)})}function ii(t,r,i){z(t,e=>{if(e.kind==="rule"){let n=mt(e.selector);Fe(n,s=>{s.kind==="selector"&&s.value===`.${r}`&&(s.value=`.${de(i)}`)}),e.selector=Me(n)}})}function ni(t,r,i){for(let e of Yn(r))t.theme.addKeyframes(e)}function Yn(t){let r=[];if("keyframes"in t.theme)for(let[i,e]of Object.entries(t.theme.keyframes))r.push(F("@keyframes",i,ue(e)));return r}var gt={inherit:"inherit",current:"currentcolor",transparent:"transparent",black:"#000",white:"#fff",slate:{50:"oklch(98.4% 0.003 247.858)",100:"oklch(96.8% 0.007 247.896)",200:"oklch(92.9% 0.013 255.508)",300:"oklch(86.9% 0.022 252.894)",400:"oklch(70.4% 0.04 256.788)",500:"oklch(55.4% 0.046 257.417)",600:"oklch(44.6% 0.043 257.281)",700:"oklch(37.2% 0.044 257.287)",800:"oklch(27.9% 0.041 260.031)",900:"oklch(20.8% 0.042 265.755)",950:"oklch(12.9% 0.042 264.695)"},gray:{50:"oklch(98.5% 0.002 247.839)",100:"oklch(96.7% 0.003 264.542)",200:"oklch(92.8% 0.006 264.531)",300:"oklch(87.2% 0.01 258.338)",400:"oklch(70.7% 0.022 261.325)",500:"oklch(55.1% 0.027 264.364)",600:"oklch(44.6% 0.03 256.802)",700:"oklch(37.3% 0.034 259.733)",800:"oklch(27.8% 0.033 256.848)",900:"oklch(21% 0.034 264.665)",950:"oklch(13% 0.028 261.692)"},zinc:{50:"oklch(98.5% 0 0)",100:"oklch(96.7% 0.001 286.375)",200:"oklch(92% 0.004 286.32)",300:"oklch(87.1% 0.006 286.286)",400:"oklch(70.5% 0.015 286.067)",500:"oklch(55.2% 0.016 285.938)",600:"oklch(44.2% 0.017 285.786)",700:"oklch(37% 0.013 285.805)",800:"oklch(27.4% 0.006 286.033)",900:"oklch(21% 0.006 285.885)",950:"oklch(14.1% 0.005 285.823)"},neutral:{50:"oklch(98.5% 0 0)",100:"oklch(97% 0 0)",200:"oklch(92.2% 0 0)",300:"oklch(87% 0 0)",400:"oklch(70.8% 0 0)",500:"oklch(55.6% 0 0)",600:"oklch(43.9% 0 0)",700:"oklch(37.1% 0 0)",800:"oklch(26.9% 0 0)",900:"oklch(20.5% 0 0)",950:"oklch(14.5% 0 0)"},stone:{50:"oklch(98.5% 0.001 106.423)",100:"oklch(97% 0.001 106.424)",200:"oklch(92.3% 0.003 48.717)",300:"oklch(86.9% 0.005 56.366)",400:"oklch(70.9% 0.01 56.259)",500:"oklch(55.3% 0.013 58.071)",600:"oklch(44.4% 0.011 73.639)",700:"oklch(37.4% 0.01 67.558)",800:"oklch(26.8% 0.007 34.298)",900:"oklch(21.6% 0.006 56.043)",950:"oklch(14.7% 0.004 49.25)"},red:{50:"oklch(97.1% 0.013 17.38)",100:"oklch(93.6% 0.032 17.717)",200:"oklch(88.5% 0.062 18.334)",300:"oklch(80.8% 0.114 19.571)",400:"oklch(70.4% 0.191 22.216)",500:"oklch(63.7% 0.237 25.331)",600:"oklch(57.7% 0.245 27.325)",700:"oklch(50.5% 0.213 27.518)",800:"oklch(44.4% 0.177 26.899)",900:"oklch(39.6% 0.141 25.723)",950:"oklch(25.8% 0.092 26.042)"},orange:{50:"oklch(98% 0.016 73.684)",100:"oklch(95.4% 0.038 75.164)",200:"oklch(90.1% 0.076 70.697)",300:"oklch(83.7% 0.128 66.29)",400:"oklch(75% 0.183 55.934)",500:"oklch(70.5% 0.213 47.604)",600:"oklch(64.6% 0.222 41.116)",700:"oklch(55.3% 0.195 38.402)",800:"oklch(47% 0.157 37.304)",900:"oklch(40.8% 0.123 38.172)",950:"oklch(26.6% 0.079 36.259)"},amber:{50:"oklch(98.7% 0.022 95.277)",100:"oklch(96.2% 0.059 95.617)",200:"oklch(92.4% 0.12 95.746)",300:"oklch(87.9% 0.169 91.605)",400:"oklch(82.8% 0.189 84.429)",500:"oklch(76.9% 0.188 70.08)",600:"oklch(66.6% 0.179 58.318)",700:"oklch(55.5% 0.163 48.998)",800:"oklch(47.3% 0.137 46.201)",900:"oklch(41.4% 0.112 45.904)",950:"oklch(27.9% 0.077 45.635)"},yellow:{50:"oklch(98.7% 0.026 102.212)",100:"oklch(97.3% 0.071 103.193)",200:"oklch(94.5% 0.129 101.54)",300:"oklch(90.5% 0.182 98.111)",400:"oklch(85.2% 0.199 91.936)",500:"oklch(79.5% 0.184 86.047)",600:"oklch(68.1% 0.162 75.834)",700:"oklch(55.4% 0.135 66.442)",800:"oklch(47.6% 0.114 61.907)",900:"oklch(42.1% 0.095 57.708)",950:"oklch(28.6% 0.066 53.813)"},lime:{50:"oklch(98.6% 0.031 120.757)",100:"oklch(96.7% 0.067 122.328)",200:"oklch(93.8% 0.127 124.321)",300:"oklch(89.7% 0.196 126.665)",400:"oklch(84.1% 0.238 128.85)",500:"oklch(76.8% 0.233 130.85)",600:"oklch(64.8% 0.2 131.684)",700:"oklch(53.2% 0.157 131.589)",800:"oklch(45.3% 0.124 130.933)",900:"oklch(40.5% 0.101 131.063)",950:"oklch(27.4% 0.072 132.109)"},green:{50:"oklch(98.2% 0.018 155.826)",100:"oklch(96.2% 0.044 156.743)",200:"oklch(92.5% 0.084 155.995)",300:"oklch(87.1% 0.15 154.449)",400:"oklch(79.2% 0.209 151.711)",500:"oklch(72.3% 0.219 149.579)",600:"oklch(62.7% 0.194 149.214)",700:"oklch(52.7% 0.154 150.069)",800:"oklch(44.8% 0.119 151.328)",900:"oklch(39.3% 0.095 152.535)",950:"oklch(26.6% 0.065 152.934)"},emerald:{50:"oklch(97.9% 0.021 166.113)",100:"oklch(95% 0.052 163.051)",200:"oklch(90.5% 0.093 164.15)",300:"oklch(84.5% 0.143 164.978)",400:"oklch(76.5% 0.177 163.223)",500:"oklch(69.6% 0.17 162.48)",600:"oklch(59.6% 0.145 163.225)",700:"oklch(50.8% 0.118 165.612)",800:"oklch(43.2% 0.095 166.913)",900:"oklch(37.8% 0.077 168.94)",950:"oklch(26.2% 0.051 172.552)"},teal:{50:"oklch(98.4% 0.014 180.72)",100:"oklch(95.3% 0.051 180.801)",200:"oklch(91% 0.096 180.426)",300:"oklch(85.5% 0.138 181.071)",400:"oklch(77.7% 0.152 181.912)",500:"oklch(70.4% 0.14 182.503)",600:"oklch(60% 0.118 184.704)",700:"oklch(51.1% 0.096 186.391)",800:"oklch(43.7% 0.078 188.216)",900:"oklch(38.6% 0.063 188.416)",950:"oklch(27.7% 0.046 192.524)"},cyan:{50:"oklch(98.4% 0.019 200.873)",100:"oklch(95.6% 0.045 203.388)",200:"oklch(91.7% 0.08 205.041)",300:"oklch(86.5% 0.127 207.078)",400:"oklch(78.9% 0.154 211.53)",500:"oklch(71.5% 0.143 215.221)",600:"oklch(60.9% 0.126 221.723)",700:"oklch(52% 0.105 223.128)",800:"oklch(45% 0.085 224.283)",900:"oklch(39.8% 0.07 227.392)",950:"oklch(30.2% 0.056 229.695)"},sky:{50:"oklch(97.7% 0.013 236.62)",100:"oklch(95.1% 0.026 236.824)",200:"oklch(90.1% 0.058 230.902)",300:"oklch(82.8% 0.111 230.318)",400:"oklch(74.6% 0.16 232.661)",500:"oklch(68.5% 0.169 237.323)",600:"oklch(58.8% 0.158 241.966)",700:"oklch(50% 0.134 242.749)",800:"oklch(44.3% 0.11 240.79)",900:"oklch(39.1% 0.09 240.876)",950:"oklch(29.3% 0.066 243.157)"},blue:{50:"oklch(97% 0.014 254.604)",100:"oklch(93.2% 0.032 255.585)",200:"oklch(88.2% 0.059 254.128)",300:"oklch(80.9% 0.105 251.813)",400:"oklch(70.7% 0.165 254.624)",500:"oklch(62.3% 0.214 259.815)",600:"oklch(54.6% 0.245 262.881)",700:"oklch(48.8% 0.243 264.376)",800:"oklch(42.4% 0.199 265.638)",900:"oklch(37.9% 0.146 265.522)",950:"oklch(28.2% 0.091 267.935)"},indigo:{50:"oklch(96.2% 0.018 272.314)",100:"oklch(93% 0.034 272.788)",200:"oklch(87% 0.065 274.039)",300:"oklch(78.5% 0.115 274.713)",400:"oklch(67.3% 0.182 276.935)",500:"oklch(58.5% 0.233 277.117)",600:"oklch(51.1% 0.262 276.966)",700:"oklch(45.7% 0.24 277.023)",800:"oklch(39.8% 0.195 277.366)",900:"oklch(35.9% 0.144 278.697)",950:"oklch(25.7% 0.09 281.288)"},violet:{50:"oklch(96.9% 0.016 293.756)",100:"oklch(94.3% 0.029 294.588)",200:"oklch(89.4% 0.057 293.283)",300:"oklch(81.1% 0.111 293.571)",400:"oklch(70.2% 0.183 293.541)",500:"oklch(60.6% 0.25 292.717)",600:"oklch(54.1% 0.281 293.009)",700:"oklch(49.1% 0.27 292.581)",800:"oklch(43.2% 0.232 292.759)",900:"oklch(38% 0.189 293.745)",950:"oklch(28.3% 0.141 291.089)"},purple:{50:"oklch(97.7% 0.014 308.299)",100:"oklch(94.6% 0.033 307.174)",200:"oklch(90.2% 0.063 306.703)",300:"oklch(82.7% 0.119 306.383)",400:"oklch(71.4% 0.203 305.504)",500:"oklch(62.7% 0.265 303.9)",600:"oklch(55.8% 0.288 302.321)",700:"oklch(49.6% 0.265 301.924)",800:"oklch(43.8% 0.218 303.724)",900:"oklch(38.1% 0.176 304.987)",950:"oklch(29.1% 0.149 302.717)"},fuchsia:{50:"oklch(97.7% 0.017 320.058)",100:"oklch(95.2% 0.037 318.852)",200:"oklch(90.3% 0.076 319.62)",300:"oklch(83.3% 0.145 321.434)",400:"oklch(74% 0.238 322.16)",500:"oklch(66.7% 0.295 322.15)",600:"oklch(59.1% 0.293 322.896)",700:"oklch(51.8% 0.253 323.949)",800:"oklch(45.2% 0.211 324.591)",900:"oklch(40.1% 0.17 325.612)",950:"oklch(29.3% 0.136 325.661)"},pink:{50:"oklch(97.1% 0.014 343.198)",100:"oklch(94.8% 0.028 342.258)",200:"oklch(89.9% 0.061 343.231)",300:"oklch(82.3% 0.12 346.018)",400:"oklch(71.8% 0.202 349.761)",500:"oklch(65.6% 0.241 354.308)",600:"oklch(59.2% 0.249 0.584)",700:"oklch(52.5% 0.223 3.958)",800:"oklch(45.9% 0.187 3.815)",900:"oklch(40.8% 0.153 2.432)",950:"oklch(28.4% 0.109 3.907)"},rose:{50:"oklch(96.9% 0.015 12.422)",100:"oklch(94.1% 0.03 12.58)",200:"oklch(89.2% 0.058 10.001)",300:"oklch(81% 0.117 11.638)",400:"oklch(71.2% 0.194 13.428)",500:"oklch(64.5% 0.246 16.439)",600:"oklch(58.6% 0.253 17.585)",700:"oklch(51.4% 0.222 16.935)",800:"oklch(45.5% 0.188 13.697)",900:"oklch(41% 0.159 10.272)",950:"oklch(27.1% 0.105 12.094)"}};function Ce(t){return{__BARE_VALUE__:t}}var le=Ce(t=>{if(E(t.value))return t.value}),re=Ce(t=>{if(E(t.value))return`${t.value}%`}),he=Ce(t=>{if(E(t.value))return`${t.value}px`}),oi=Ce(t=>{if(E(t.value))return`${t.value}ms`}),ht=Ce(t=>{if(E(t.value))return`${t.value}deg`}),Jn=Ce(t=>{if(t.fraction===null)return;let[r,i]=K(t.fraction,"/");if(!(!E(r)||!E(i)))return t.fraction}),li=Ce(t=>{if(E(Number(t.value)))return`repeat(${t.value}, minmax(0, 1fr))`}),ai={accentColor:({theme:t})=>t("colors"),animation:{none:"none",spin:"spin 1s linear infinite",ping:"ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",pulse:"pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",bounce:"bounce 1s infinite"},aria:{busy:'busy="true"',checked:'checked="true"',disabled:'disabled="true"',expanded:'expanded="true"',hidden:'hidden="true"',pressed:'pressed="true"',readonly:'readonly="true"',required:'required="true"',selected:'selected="true"'},aspectRatio:{auto:"auto",square:"1 / 1",video:"16 / 9",...Jn},backdropBlur:({theme:t})=>t("blur"),backdropBrightness:({theme:t})=>({...t("brightness"),...re}),backdropContrast:({theme:t})=>({...t("contrast"),...re}),backdropGrayscale:({theme:t})=>({...t("grayscale"),...re}),backdropHueRotate:({theme:t})=>({...t("hueRotate"),...ht}),backdropInvert:({theme:t})=>({...t("invert"),...re}),backdropOpacity:({theme:t})=>({...t("opacity"),...re}),backdropSaturate:({theme:t})=>({...t("saturate"),...re}),backdropSepia:({theme:t})=>({...t("sepia"),...re}),backgroundColor:({theme:t})=>t("colors"),backgroundImage:{none:"none","gradient-to-t":"linear-gradient(to top, var(--tw-gradient-stops))","gradient-to-tr":"linear-gradient(to top right, var(--tw-gradient-stops))","gradient-to-r":"linear-gradient(to right, var(--tw-gradient-stops))","gradient-to-br":"linear-gradient(to bottom right, var(--tw-gradient-stops))","gradient-to-b":"linear-gradient(to bottom, var(--tw-gradient-stops))","gradient-to-bl":"linear-gradient(to bottom left, var(--tw-gradient-stops))","gradient-to-l":"linear-gradient(to left, var(--tw-gradient-stops))","gradient-to-tl":"linear-gradient(to top left, var(--tw-gradient-stops))"},backgroundOpacity:({theme:t})=>t("opacity"),backgroundPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},backgroundSize:{auto:"auto",cover:"cover",contain:"contain"},blur:{0:"0",none:"",sm:"4px",DEFAULT:"8px",md:"12px",lg:"16px",xl:"24px","2xl":"40px","3xl":"64px"},borderColor:({theme:t})=>({DEFAULT:"currentcolor",...t("colors")}),borderOpacity:({theme:t})=>t("opacity"),borderRadius:{none:"0px",sm:"0.125rem",DEFAULT:"0.25rem",md:"0.375rem",lg:"0.5rem",xl:"0.75rem","2xl":"1rem","3xl":"1.5rem",full:"9999px"},borderSpacing:({theme:t})=>t("spacing"),borderWidth:{DEFAULT:"1px",0:"0px",2:"2px",4:"4px",8:"8px",...he},boxShadow:{sm:"0 1px 2px 0 rgb(0 0 0 / 0.05)",DEFAULT:"0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",md:"0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",lg:"0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",xl:"0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)","2xl":"0 25px 50px -12px rgb(0 0 0 / 0.25)",inner:"inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",none:"none"},boxShadowColor:({theme:t})=>t("colors"),brightness:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",200:"2",...re},caretColor:({theme:t})=>t("colors"),colors:()=>({...gt}),columns:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12","3xs":"16rem","2xs":"18rem",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",...le},container:{},content:{none:"none"},contrast:{0:"0",50:".5",75:".75",100:"1",125:"1.25",150:"1.5",200:"2",...re},cursor:{auto:"auto",default:"default",pointer:"pointer",wait:"wait",text:"text",move:"move",help:"help","not-allowed":"not-allowed",none:"none","context-menu":"context-menu",progress:"progress",cell:"cell",crosshair:"crosshair","vertical-text":"vertical-text",alias:"alias",copy:"copy","no-drop":"no-drop",grab:"grab",grabbing:"grabbing","all-scroll":"all-scroll","col-resize":"col-resize","row-resize":"row-resize","n-resize":"n-resize","e-resize":"e-resize","s-resize":"s-resize","w-resize":"w-resize","ne-resize":"ne-resize","nw-resize":"nw-resize","se-resize":"se-resize","sw-resize":"sw-resize","ew-resize":"ew-resize","ns-resize":"ns-resize","nesw-resize":"nesw-resize","nwse-resize":"nwse-resize","zoom-in":"zoom-in","zoom-out":"zoom-out"},divideColor:({theme:t})=>t("borderColor"),divideOpacity:({theme:t})=>t("borderOpacity"),divideWidth:({theme:t})=>({...t("borderWidth"),...he}),dropShadow:{sm:"0 1px 1px rgb(0 0 0 / 0.05)",DEFAULT:["0 1px 2px rgb(0 0 0 / 0.1)","0 1px 1px rgb(0 0 0 / 0.06)"],md:["0 4px 3px rgb(0 0 0 / 0.07)","0 2px 2px rgb(0 0 0 / 0.06)"],lg:["0 10px 8px rgb(0 0 0 / 0.04)","0 4px 3px rgb(0 0 0 / 0.1)"],xl:["0 20px 13px rgb(0 0 0 / 0.03)","0 8px 5px rgb(0 0 0 / 0.08)"],"2xl":"0 25px 25px rgb(0 0 0 / 0.15)",none:"0 0 #0000"},fill:({theme:t})=>t("colors"),flex:{1:"1 1 0%",auto:"1 1 auto",initial:"0 1 auto",none:"none"},flexBasis:({theme:t})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",...t("spacing")}),flexGrow:{0:"0",DEFAULT:"1",...le},flexShrink:{0:"0",DEFAULT:"1",...le},fontFamily:{sans:["ui-sans-serif","system-ui","sans-serif",'"Apple Color Emoji"','"Segoe UI Emoji"','"Segoe UI Symbol"','"Noto Color Emoji"'],serif:["ui-serif","Georgia","Cambria",'"Times New Roman"',"Times","serif"],mono:["ui-monospace","SFMono-Regular","Menlo","Monaco","Consolas",'"Liberation Mono"','"Courier New"',"monospace"]},fontSize:{xs:["0.75rem",{lineHeight:"1rem"}],sm:["0.875rem",{lineHeight:"1.25rem"}],base:["1rem",{lineHeight:"1.5rem"}],lg:["1.125rem",{lineHeight:"1.75rem"}],xl:["1.25rem",{lineHeight:"1.75rem"}],"2xl":["1.5rem",{lineHeight:"2rem"}],"3xl":["1.875rem",{lineHeight:"2.25rem"}],"4xl":["2.25rem",{lineHeight:"2.5rem"}],"5xl":["3rem",{lineHeight:"1"}],"6xl":["3.75rem",{lineHeight:"1"}],"7xl":["4.5rem",{lineHeight:"1"}],"8xl":["6rem",{lineHeight:"1"}],"9xl":["8rem",{lineHeight:"1"}]},fontWeight:{thin:"100",extralight:"200",light:"300",normal:"400",medium:"500",semibold:"600",bold:"700",extrabold:"800",black:"900"},gap:({theme:t})=>t("spacing"),gradientColorStops:({theme:t})=>t("colors"),gradientColorStopPositions:{"0%":"0%","5%":"5%","10%":"10%","15%":"15%","20%":"20%","25%":"25%","30%":"30%","35%":"35%","40%":"40%","45%":"45%","50%":"50%","55%":"55%","60%":"60%","65%":"65%","70%":"70%","75%":"75%","80%":"80%","85%":"85%","90%":"90%","95%":"95%","100%":"100%",...re},grayscale:{0:"0",DEFAULT:"100%",...re},gridAutoColumns:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridAutoRows:{auto:"auto",min:"min-content",max:"max-content",fr:"minmax(0, 1fr)"},gridColumn:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridColumnEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...le},gridColumnStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...le},gridRow:{auto:"auto","span-1":"span 1 / span 1","span-2":"span 2 / span 2","span-3":"span 3 / span 3","span-4":"span 4 / span 4","span-5":"span 5 / span 5","span-6":"span 6 / span 6","span-7":"span 7 / span 7","span-8":"span 8 / span 8","span-9":"span 9 / span 9","span-10":"span 10 / span 10","span-11":"span 11 / span 11","span-12":"span 12 / span 12","span-full":"1 / -1"},gridRowEnd:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...le},gridRowStart:{auto:"auto",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",13:"13",...le},gridTemplateColumns:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...li},gridTemplateRows:{none:"none",subgrid:"subgrid",1:"repeat(1, minmax(0, 1fr))",2:"repeat(2, minmax(0, 1fr))",3:"repeat(3, minmax(0, 1fr))",4:"repeat(4, minmax(0, 1fr))",5:"repeat(5, minmax(0, 1fr))",6:"repeat(6, minmax(0, 1fr))",7:"repeat(7, minmax(0, 1fr))",8:"repeat(8, minmax(0, 1fr))",9:"repeat(9, minmax(0, 1fr))",10:"repeat(10, minmax(0, 1fr))",11:"repeat(11, minmax(0, 1fr))",12:"repeat(12, minmax(0, 1fr))",...li},height:({theme:t})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...t("spacing")}),hueRotate:{0:"0deg",15:"15deg",30:"30deg",60:"60deg",90:"90deg",180:"180deg",...ht},inset:({theme:t})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...t("spacing")}),invert:{0:"0",DEFAULT:"100%",...re},keyframes:{spin:{to:{transform:"rotate(360deg)"}},ping:{"75%, 100%":{transform:"scale(2)",opacity:"0"}},pulse:{"50%":{opacity:".5"}},bounce:{"0%, 100%":{transform:"translateY(-25%)",animationTimingFunction:"cubic-bezier(0.8,0,1,1)"},"50%":{transform:"none",animationTimingFunction:"cubic-bezier(0,0,0.2,1)"}}},letterSpacing:{tighter:"-0.05em",tight:"-0.025em",normal:"0em",wide:"0.025em",wider:"0.05em",widest:"0.1em"},lineHeight:{none:"1",tight:"1.25",snug:"1.375",normal:"1.5",relaxed:"1.625",loose:"2",3:".75rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem"},listStyleType:{none:"none",disc:"disc",decimal:"decimal"},listStyleImage:{none:"none"},margin:({theme:t})=>({auto:"auto",...t("spacing")}),lineClamp:{1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",...le},maxHeight:({theme:t})=>({none:"none",full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...t("spacing")}),maxWidth:({theme:t})=>({none:"none",xs:"20rem",sm:"24rem",md:"28rem",lg:"32rem",xl:"36rem","2xl":"42rem","3xl":"48rem","4xl":"56rem","5xl":"64rem","6xl":"72rem","7xl":"80rem",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",prose:"65ch",...t("spacing")}),minHeight:({theme:t})=>({full:"100%",screen:"100vh",svh:"100svh",lvh:"100lvh",dvh:"100dvh",min:"min-content",max:"max-content",fit:"fit-content",...t("spacing")}),minWidth:({theme:t})=>({full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...t("spacing")}),objectPosition:{bottom:"bottom",center:"center",left:"left","left-bottom":"left bottom","left-top":"left top",right:"right","right-bottom":"right bottom","right-top":"right top",top:"top"},opacity:{0:"0",5:"0.05",10:"0.1",15:"0.15",20:"0.2",25:"0.25",30:"0.3",35:"0.35",40:"0.4",45:"0.45",50:"0.5",55:"0.55",60:"0.6",65:"0.65",70:"0.7",75:"0.75",80:"0.8",85:"0.85",90:"0.9",95:"0.95",100:"1",...re},order:{first:"-9999",last:"9999",none:"0",1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",10:"10",11:"11",12:"12",...le},outlineColor:({theme:t})=>t("colors"),outlineOffset:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...he},outlineWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...he},padding:({theme:t})=>t("spacing"),placeholderColor:({theme:t})=>t("colors"),placeholderOpacity:({theme:t})=>t("opacity"),ringColor:({theme:t})=>({DEFAULT:"currentcolor",...t("colors")}),ringOffsetColor:({theme:t})=>t("colors"),ringOffsetWidth:{0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...he},ringOpacity:({theme:t})=>({DEFAULT:"0.5",...t("opacity")}),ringWidth:{DEFAULT:"3px",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...he},rotate:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",45:"45deg",90:"90deg",180:"180deg",...ht},saturate:{0:"0",50:".5",100:"1",150:"1.5",200:"2",...re},scale:{0:"0",50:".5",75:".75",90:".9",95:".95",100:"1",105:"1.05",110:"1.1",125:"1.25",150:"1.5",...re},screens:{sm:"40rem",md:"48rem",lg:"64rem",xl:"80rem","2xl":"96rem"},scrollMargin:({theme:t})=>t("spacing"),scrollPadding:({theme:t})=>t("spacing"),sepia:{0:"0",DEFAULT:"100%",...re},skew:{0:"0deg",1:"1deg",2:"2deg",3:"3deg",6:"6deg",12:"12deg",...ht},space:({theme:t})=>t("spacing"),spacing:{px:"1px",0:"0px",.5:"0.125rem",1:"0.25rem",1.5:"0.375rem",2:"0.5rem",2.5:"0.625rem",3:"0.75rem",3.5:"0.875rem",4:"1rem",5:"1.25rem",6:"1.5rem",7:"1.75rem",8:"2rem",9:"2.25rem",10:"2.5rem",11:"2.75rem",12:"3rem",14:"3.5rem",16:"4rem",20:"5rem",24:"6rem",28:"7rem",32:"8rem",36:"9rem",40:"10rem",44:"11rem",48:"12rem",52:"13rem",56:"14rem",60:"15rem",64:"16rem",72:"18rem",80:"20rem",96:"24rem"},stroke:({theme:t})=>({none:"none",...t("colors")}),strokeWidth:{0:"0",1:"1",2:"2",...le},supports:{},data:{},textColor:({theme:t})=>t("colors"),textDecorationColor:({theme:t})=>t("colors"),textDecorationThickness:{auto:"auto","from-font":"from-font",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...he},textIndent:({theme:t})=>t("spacing"),textOpacity:({theme:t})=>t("opacity"),textUnderlineOffset:{auto:"auto",0:"0px",1:"1px",2:"2px",4:"4px",8:"8px",...he},transformOrigin:{center:"center",top:"top","top-right":"top right",right:"right","bottom-right":"bottom right",bottom:"bottom","bottom-left":"bottom left",left:"left","top-left":"top left"},transitionDelay:{0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...oi},transitionDuration:{DEFAULT:"150ms",0:"0s",75:"75ms",100:"100ms",150:"150ms",200:"200ms",300:"300ms",500:"500ms",700:"700ms",1e3:"1000ms",...oi},transitionProperty:{none:"none",all:"all",DEFAULT:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",colors:"color, background-color, border-color, outline-color, text-decoration-color, fill, stroke",opacity:"opacity",shadow:"box-shadow",transform:"transform"},transitionTimingFunction:{DEFAULT:"cubic-bezier(0.4, 0, 0.2, 1)",linear:"linear",in:"cubic-bezier(0.4, 0, 1, 1)",out:"cubic-bezier(0, 0, 0.2, 1)","in-out":"cubic-bezier(0.4, 0, 0.2, 1)"},translate:({theme:t})=>({"1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%",full:"100%",...t("spacing")}),size:({theme:t})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",min:"min-content",max:"max-content",fit:"fit-content",...t("spacing")}),width:({theme:t})=>({auto:"auto","1/2":"50%","1/3":"33.333333%","2/3":"66.666667%","1/4":"25%","2/4":"50%","3/4":"75%","1/5":"20%","2/5":"40%","3/5":"60%","4/5":"80%","1/6":"16.666667%","2/6":"33.333333%","3/6":"50%","4/6":"66.666667%","5/6":"83.333333%","1/12":"8.333333%","2/12":"16.666667%","3/12":"25%","4/12":"33.333333%","5/12":"41.666667%","6/12":"50%","7/12":"58.333333%","8/12":"66.666667%","9/12":"75%","10/12":"83.333333%","11/12":"91.666667%",full:"100%",screen:"100vw",svw:"100svw",lvw:"100lvw",dvw:"100dvw",min:"min-content",max:"max-content",fit:"fit-content",...t("spacing")}),willChange:{auto:"auto",scroll:"scroll-position",contents:"contents",transform:"transform"},zIndex:{auto:"auto",0:"0",10:"10",20:"20",30:"30",40:"40",50:"50",...le}};function si(t){return{theme:{...ai,colors:({theme:r})=>r("color",{}),extend:{fontSize:({theme:r})=>({...r("text",{})}),boxShadow:({theme:r})=>({...r("shadow",{})}),animation:({theme:r})=>({...r("animate",{})}),aspectRatio:({theme:r})=>({...r("aspect",{})}),borderRadius:({theme:r})=>({...r("radius",{})}),screens:({theme:r})=>({...r("breakpoint",{})}),letterSpacing:({theme:r})=>({...r("tracking",{})}),lineHeight:({theme:r})=>({...r("leading",{})}),transitionDuration:{DEFAULT:t.get(["--default-transition-duration"])??null},transitionTimingFunction:{DEFAULT:t.get(["--default-transition-timing-function"])??null},maxWidth:({theme:r})=>({...r("container",{})})}}}}var Qn={blocklist:[],future:{},prefix:"",important:!1,darkMode:null,theme:{},plugins:[],content:{files:[]}};function Mt(t,r){let i={design:t,configs:[],plugins:[],content:{files:[]},theme:{},extend:{},result:structuredClone(Qn)};for(let n of r)Ft(i,n);for(let n of i.configs)"darkMode"in n&&n.darkMode!==void 0&&(i.result.darkMode=n.darkMode??null),"prefix"in n&&n.prefix!==void 0&&(i.result.prefix=n.prefix??""),"blocklist"in n&&n.blocklist!==void 0&&(i.result.blocklist=n.blocklist??[]),"important"in n&&n.important!==void 0&&(i.result.important=n.important??!1);let e=Xn(i);return{resolvedConfig:{...i.result,content:i.content,theme:i.theme,plugins:i.plugins},replacedThemeKeys:e}}function Zn(t,r){if(Array.isArray(t)&&Re(t[0]))return t.concat(r);if(Array.isArray(r)&&Re(r[0])&&Re(t))return[t,...r];if(Array.isArray(r))return r}function Ft(t,{config:r,base:i,path:e,reference:n}){let s=[];for(let u of r.plugins??[])"__isOptionsFunction"in u?s.push({...u(),reference:n}):"handler"in u?s.push({...u,reference:n}):s.push({handler:u,reference:n});if(Array.isArray(r.presets)&&r.presets.length===0)throw new Error("Error in the config file/plugin/preset. An empty preset (`preset: []`) is not currently supported.");for(let u of r.presets??[])Ft(t,{path:e,base:i,config:u,reference:n});for(let u of s)t.plugins.push(u),u.config&&Ft(t,{path:e,base:i,config:u.config,reference:!!u.reference});let a=r.content??[],c=Array.isArray(a)?a:a.files;for(let u of c)t.content.files.push(typeof u=="object"?u:{base:i,pattern:u});t.configs.push(r)}function Xn(t){let r=new Set,i=dt(t.design,()=>t.theme,n),e=Object.assign(i,{theme:i,colors:gt});function n(s){return typeof s=="function"?s(e)??null:s??null}for(let s of t.configs){let a=s.theme??{},c=a.extend??{};for(let u in a)u!=="extend"&&r.add(u);Object.assign(t.theme,a);for(let u in c)t.extend[u]??=[],t.extend[u].push(c[u])}delete t.theme.extend;for(let s in t.extend){let a=[t.theme[s],...t.extend[s]];t.theme[s]=()=>{let c=a.map(n);return ze({},c,Zn)}}for(let s in t.theme)t.theme[s]=n(t.theme[s]);if(t.theme.screens&&typeof t.theme.screens=="object")for(let s of Object.keys(t.theme.screens)){let a=t.theme.screens[s];a&&typeof a=="object"&&("raw"in a||"max"in a||"min"in a&&(t.theme.screens[s]=a.min))}return r}function ui(t,r){let i=t.theme.container||{};if(typeof i!="object"||i===null)return;let e=eo(i,r);e.length!==0&&r.utilities.static("container",()=>structuredClone(e))}function eo({center:t,padding:r,screens:i},e){let n=[],s=null;if(t&&n.push(l("margin-inline","auto")),(typeof r=="string"||typeof r=="object"&&r!==null&&"DEFAULT"in r)&&n.push(l("padding-inline",typeof r=="string"?r:r.DEFAULT)),typeof i=="object"&&i!==null){s=new Map;let a=Array.from(e.theme.namespace("--breakpoint").entries());if(a.sort((c,u)=>ye(c[1],u[1],"asc")),a.length>0){let[c]=a[0];n.push(F("@media",`(width >= --theme(--breakpoint-${c}))`,[l("max-width","none")]))}for(let[c,u]of Object.entries(i)){if(typeof u=="object")if("min"in u)u=u.min;else continue;s.set(c,F("@media",`(width >= ${u})`,[l("max-width",u)]))}}if(typeof r=="object"&&r!==null){let a=Object.entries(r).filter(([c])=>c!=="DEFAULT").map(([c,u])=>[c,e.theme.resolveValue(c,["--breakpoint"]),u]).filter(Boolean);a.sort((c,u)=>ye(c[1],u[1],"asc"));for(let[c,,u]of a)if(s&&s.has(c))s.get(c).nodes.push(l("padding-inline",u));else{if(s)continue;n.push(F("@media",`(width >= theme(--breakpoint-${c}))`,[l("padding-inline",u)]))}}if(s)for(let[,a]of s)n.push(a);return n}function ci({addVariant:t,config:r}){let i=r("darkMode",null),[e,n=".dark"]=Array.isArray(i)?i:[i];if(e==="variant"){let s;if(Array.isArray(n)||typeof n=="function"?s=n:typeof n=="string"&&(s=[n]),Array.isArray(s))for(let a of s)a===".dark"?(e=!1,console.warn('When using `variant` for `darkMode`, you must provide a selector.\nExample: `darkMode: ["variant", ".your-selector &"]`')):a.includes("&")||(e=!1,console.warn('When using `variant` for `darkMode`, your selector must contain `&`.\nExample `darkMode: ["variant", ".your-selector &"]`'));n=s}e===null||(e==="selector"?t("dark",`&:where(${n}, ${n} *)`):e==="media"?t("dark","@media (prefers-color-scheme: dark)"):e==="variant"?t("dark",n):e==="class"&&t("dark",`&:is(${n} *)`))}function fi(t){for(let[r,i]of[["t","top"],["tr","top right"],["r","right"],["br","bottom right"],["b","bottom"],["bl","bottom left"],["l","left"],["tl","top left"]])t.utilities.static(`bg-gradient-to-${r}`,()=>[l("--tw-gradient-position",`to ${i} in oklab`),l("background-image","linear-gradient(var(--tw-gradient-stops))")]);t.utilities.static("bg-left-top",()=>[l("background-position","left top")]),t.utilities.static("bg-right-top",()=>[l("background-position","right top")]),t.utilities.static("bg-left-bottom",()=>[l("background-position","left bottom")]),t.utilities.static("bg-right-bottom",()=>[l("background-position","right bottom")]),t.utilities.static("object-left-top",()=>[l("object-position","left top")]),t.utilities.static("object-right-top",()=>[l("object-position","right top")]),t.utilities.static("object-left-bottom",()=>[l("object-position","left bottom")]),t.utilities.static("object-right-bottom",()=>[l("object-position","right bottom")]),t.utilities.functional("max-w-screen",r=>{if(!r.value||r.value.kind==="arbitrary")return;let i=t.theme.resolve(r.value.value,["--breakpoint"]);if(i)return[l("max-width",i)]}),t.utilities.static("overflow-ellipsis",()=>[l("text-overflow","ellipsis")]),t.utilities.static("decoration-slice",()=>[l("-webkit-box-decoration-break","slice"),l("box-decoration-break","slice")]),t.utilities.static("decoration-clone",()=>[l("-webkit-box-decoration-break","clone"),l("box-decoration-break","clone")]),t.utilities.functional("flex-shrink",r=>{if(!r.modifier){if(!r.value)return[l("flex-shrink","1")];if(r.value.kind==="arbitrary")return[l("flex-shrink",r.value.value)];if(E(r.value.value))return[l("flex-shrink",r.value.value)]}}),t.utilities.functional("flex-grow",r=>{if(!r.modifier){if(!r.value)return[l("flex-grow","1")];if(r.value.kind==="arbitrary")return[l("flex-grow",r.value.value)];if(E(r.value.value))return[l("flex-grow",r.value.value)]}}),t.utilities.static("order-none",()=>[l("order","0")])}function pi(t,r){let i=t.theme.screens||{},e=r.variants.get("min")?.order??0,n=[];for(let[a,c]of Object.entries(i)){let m=function(w){r.variants.static(a,v=>{v.nodes=[F("@media",d,v.nodes)]},{order:w})};var s=m;let u=r.variants.get(a),f=r.theme.resolveValue(a,["--breakpoint"]);if(u&&f&&!r.theme.hasDefault(`--breakpoint-${a}`))continue;let g=!0;typeof c=="string"&&(g=!1);let d=to(c);g?n.push(m):m(e)}if(n.length!==0){for(let[,a]of r.variants.variants)a.order>e&&(a.order+=n.length);r.variants.compareFns=new Map(Array.from(r.variants.compareFns).map(([a,c])=>(a>e&&(a+=n.length),[a,c])));for(let[a,c]of n.entries())c(e+a+1)}}function to(t){return(Array.isArray(t)?t:[t]).map(i=>typeof i=="string"?{min:i}:i&&typeof i=="object"?i:null).map(i=>{if(i===null)return null;if("raw"in i)return i.raw;let e="";return i.max!==void 0&&(e+=`${i.max} >= `),e+="width",i.min!==void 0&&(e+=` >= ${i.min}`),`(${e})`}).filter(Boolean).join(", ")}function di(t,r){let i=t.theme.aria||{},e=t.theme.supports||{},n=t.theme.data||{};if(Object.keys(i).length>0){let s=r.variants.get("aria"),a=s?.applyFn,c=s?.compounds;r.variants.functional("aria",(u,f)=>{let g=f.value;return g&&g.kind==="named"&&g.value in i?a?.(u,{...f,value:{kind:"arbitrary",value:i[g.value]}}):a?.(u,f)},{compounds:c})}if(Object.keys(e).length>0){let s=r.variants.get("supports"),a=s?.applyFn,c=s?.compounds;r.variants.functional("supports",(u,f)=>{let g=f.value;return g&&g.kind==="named"&&g.value in e?a?.(u,{...f,value:{kind:"arbitrary",value:e[g.value]}}):a?.(u,f)},{compounds:c})}if(Object.keys(n).length>0){let s=r.variants.get("data"),a=s?.applyFn,c=s?.compounds;r.variants.functional("data",(u,f)=>{let g=f.value;return g&&g.kind==="named"&&g.value in n?a?.(u,{...f,value:{kind:"arbitrary",value:n[g.value]}}):a?.(u,f)},{compounds:c})}}var ro=/^[a-z]+$/;async function gi({designSystem:t,base:r,ast:i,loadModule:e,sources:n}){let s=0,a=[],c=[];z(i,(d,{parent:m,replaceWith:w,context:v})=>{if(d.kind==="at-rule"){if(d.name==="@plugin"){if(m!==null)throw new Error("`@plugin` cannot be nested.");let x=d.params.slice(1,-1);if(x.length===0)throw new Error("`@plugin` must have a path.");let y={};for(let V of d.nodes??[]){if(V.kind!=="declaration")throw new Error(`Unexpected \`@plugin\` option: + +${oe([V])} + +\`@plugin\` options must be a flat list of declarations.`);if(V.value===void 0)continue;let b=V.value,S=K(b,",").map(R=>{if(R=R.trim(),R==="null")return null;if(R==="true")return!0;if(R==="false")return!1;if(Number.isNaN(Number(R))){if(R[0]==='"'&&R[R.length-1]==='"'||R[0]==="'"&&R[R.length-1]==="'")return R.slice(1,-1);if(R[0]==="{"&&R[R.length-1]==="}")throw new Error(`Unexpected \`@plugin\` option: Value of declaration \`${oe([V]).trim()}\` is not supported. + +Using an object as a plugin option is currently only supported in JavaScript configuration files.`)}else return Number(R);return R});y[V.property]=S.length===1?S[0]:S}a.push([{id:x,base:v.base,reference:!!v.reference},Object.keys(y).length>0?y:null]),w([]),s|=4;return}if(d.name==="@config"){if(d.nodes.length>0)throw new Error("`@config` cannot have a body.");if(m!==null)throw new Error("`@config` cannot be nested.");c.push({id:d.params.slice(1,-1),base:v.base,reference:!!v.reference}),w([]),s|=4;return}}}),fi(t);let u=t.resolveThemeValue;if(t.resolveThemeValue=function(m,w){return m.startsWith("--")?u(m,w):(s|=mi({designSystem:t,base:r,ast:i,sources:n,configs:[],pluginDetails:[]}),t.resolveThemeValue(m,w))},!a.length&&!c.length)return 0;let[f,g]=await Promise.all([Promise.all(c.map(async({id:d,base:m,reference:w})=>{let v=await e(d,m,"config");return{path:d,base:v.base,config:v.module,reference:w}})),Promise.all(a.map(async([{id:d,base:m,reference:w},v])=>{let x=await e(d,m,"plugin");return{path:d,base:x.base,plugin:x.module,options:v,reference:w}}))]);return s|=mi({designSystem:t,base:r,ast:i,sources:n,configs:f,pluginDetails:g}),s}function mi({designSystem:t,base:r,ast:i,sources:e,configs:n,pluginDetails:s}){let a=0,u=[...s.map(y=>{if(!y.options)return{config:{plugins:[y.plugin]},base:y.base,reference:y.reference};if("__isOptionsFunction"in y.plugin)return{config:{plugins:[y.plugin(y.options)]},base:y.base,reference:y.reference};throw new Error(`The plugin "${y.path}" does not accept options`)}),...n],{resolvedConfig:f}=Mt(t,[{config:si(t.theme),base:r,reference:!0},...u,{config:{plugins:[ci]},base:r,reference:!0}]),{resolvedConfig:g,replacedThemeKeys:d}=Mt(t,u),m=t.resolveThemeValue;t.resolveThemeValue=function(V,b){if(V[0]==="-"&&V[1]==="-")return m(V,b);let S=v.theme(V,void 0);if(Array.isArray(S)&&S.length===2)return S[0];if(Array.isArray(S))return S.join(", ");if(typeof S=="string")return S};let w={designSystem:t,ast:i,resolvedConfig:f,featuresRef:{set current(y){a|=y}}},v=It({...w,referenceMode:!1}),x;for(let{handler:y,reference:V}of f.plugins)V?(x||=It({...w,referenceMode:!0}),y(x)):y(v);if(zr(t,g,d),ni(t,g,d),di(g,t),pi(g,t),ui(g,t),!t.theme.prefix&&f.prefix){if(f.prefix.endsWith("-")&&(f.prefix=f.prefix.slice(0,-1),console.warn(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only and is written as a variant before all utilities. We have fixed up the prefix for you. Remove the trailing \`-\` to silence this warning.`)),!ro.test(f.prefix))throw new Error(`The prefix "${f.prefix}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);t.theme.prefix=f.prefix}if(!t.important&&f.important===!0&&(t.important=!0),typeof f.important=="string"){let y=f.important;z(i,(V,{replaceWith:b,parent:S})=>{if(V.kind==="at-rule"&&!(V.name!=="@tailwind"||V.params!=="utilities"))return S?.kind==="rule"&&S.selector===y?2:(b(M(y,[V])),2)})}for(let y of f.blocklist)t.invalidCandidates.add(y);for(let y of f.content.files){if("raw"in y)throw new Error(`Error in the config file/plugin/preset. The \`content\` key contains a \`raw\` entry: + +${JSON.stringify(y,null,2)} + +This feature is not currently supported.`);let V=!1;y.pattern[0]=="!"&&(V=!0,y.pattern=y.pattern.slice(1)),e.push({...y,negated:V})}return a}function hi(t){let r=[0];for(let n=0;n0;){let u=(a|0)>>1,f=s+u;r[f]<=n?(s=f+1,a=a-u-1):a=u}s-=1;let c=n-r[s];return{line:s+1,column:c}}function e({line:n,column:s}){n-=1,n=Math.min(Math.max(n,0),r.length-1);let a=r[n],c=r[n+1]??a;return Math.min(Math.max(a+s,0),c)}return{find:i,findOffset:e}}function vi({ast:t}){let r=new B(n=>hi(n.code)),i=new B(n=>({url:n.file,content:n.code,ignore:!1})),e={file:null,sources:[],mappings:[]};z(t,n=>{if(!n.src||!n.dst)return;let s=i.get(n.src[0]);if(!s.content)return;let a=r.get(n.src[0]),c=r.get(n.dst[0]),u=s.content.slice(n.src[1],n.src[2]),f=0;for(let m of u.split(` +`)){if(m.trim()!==""){let w=a.find(n.src[1]+f),v=c.find(n.dst[1]);e.mappings.push({name:null,originalPosition:{source:s,...w},generatedPosition:v})}f+=m.length,f+=1}let g=a.find(n.src[2]),d=c.find(n.dst[2]);e.mappings.push({name:null,originalPosition:{source:s,...g},generatedPosition:d})});for(let n of r.keys())e.sources.push(i.get(n));return e.mappings.sort((n,s)=>n.generatedPosition.line-s.generatedPosition.line||n.generatedPosition.column-s.generatedPosition.column||(n.originalPosition?.line??0)-(s.originalPosition?.line??0)||(n.originalPosition?.column??0)-(s.originalPosition?.column??0)),e}var wi=/^(-?\d+)\.\.(-?\d+)(?:\.\.(-?\d+))?$/;function vt(t){let r=t.indexOf("{");if(r===-1)return[t];let i=[],e=t.slice(0,r),n=t.slice(r),s=0,a=n.lastIndexOf("}");for(let d=0;dvt(d));let g=vt(u);for(let d of g)for(let m of f)i.push(e+m+d);return i}function io(t){return wi.test(t)}function no(t){let r=t.match(wi);if(!r)return[t];let[,i,e,n]=r,s=n?parseInt(n,10):void 0,a=[];if(/^-?\d+$/.test(i)&&/^-?\d+$/.test(e)){let c=parseInt(i,10),u=parseInt(e,10);if(s===void 0&&(s=c<=u?1:-1),s===0)throw new Error("Step cannot be zero in sequence expansion.");let f=c0&&(s=-s);for(let g=c;f?g<=u:g>=u;g+=s)a.push(g.toString())}return a}var oo=/^[a-z]+$/,tt=(n=>(n[n.None=0]="None",n[n.AtProperty=1]="AtProperty",n[n.ColorMix=2]="ColorMix",n[n.All=3]="All",n))(tt||{});function lo(){throw new Error("No `loadModule` function provided to `compile`")}function ao(){throw new Error("No `loadStylesheet` function provided to `compile`")}function so(t){let r=0,i=null;for(let e of K(t," "))e==="reference"?r|=2:e==="inline"?r|=1:e==="default"?r|=4:e==="static"?r|=8:e.startsWith("prefix(")&&e.endsWith(")")&&(i=e.slice(7,-1));return[r,i]}var Se=(c=>(c[c.None=0]="None",c[c.AtApply=1]="AtApply",c[c.AtImport=2]="AtImport",c[c.JsPluginCompat=4]="JsPluginCompat",c[c.ThemeFunction=8]="ThemeFunction",c[c.Utilities=16]="Utilities",c[c.Variants=32]="Variants",c))(Se||{});async function ki(t,{base:r="",from:i,loadModule:e=lo,loadStylesheet:n=ao}={}){let s=0;t=[se({base:r},t)],s|=await zt(t,r,n,0,i!==void 0);let a=null,c=new Qe,u=[],f=[],g=null,d=null,m=[],w=[],v=[],x=[],y=null;z(t,(b,{parent:S,replaceWith:R,context:j})=>{if(b.kind==="at-rule"){if(b.name==="@tailwind"&&(b.params==="utilities"||b.params.startsWith("utilities"))){if(d!==null){R([]);return}if(j.reference){R([]);return}let P=K(b.params," ");for(let D of P)if(D.startsWith("source(")){let _=D.slice(7,-1);if(_==="none"){y=_;continue}if(_[0]==='"'&&_[_.length-1]!=='"'||_[0]==="'"&&_[_.length-1]!=="'"||_[0]!=="'"&&_[0]!=='"')throw new Error("`source(\u2026)` paths must be quoted.");y={base:j.sourceBase??j.base,pattern:_.slice(1,-1)}}d=b,s|=16}if(b.name==="@utility"){if(S!==null)throw new Error("`@utility` cannot be nested.");if(b.nodes.length===0)throw new Error(`\`@utility ${b.params}\` is empty. Utilities should include at least one property.`);let P=Vr(b);if(P===null)throw new Error(`\`@utility ${b.params}\` defines an invalid utility name. Utilities should be alphanumeric and start with a lowercase letter.`);f.push(P)}if(b.name==="@source"){if(b.nodes.length>0)throw new Error("`@source` cannot have a body.");if(S!==null)throw new Error("`@source` cannot be nested.");let P=!1,D=!1,_=b.params;if(_[0]==="n"&&_.startsWith("not ")&&(P=!0,_=_.slice(4)),_[0]==="i"&&_.startsWith("inline(")&&(D=!0,_=_.slice(7,-1)),_[0]==='"'&&_[_.length-1]!=='"'||_[0]==="'"&&_[_.length-1]!=="'"||_[0]!=="'"&&_[0]!=='"')throw new Error("`@source` paths must be quoted.");let H=_.slice(1,-1);if(D){let L=P?x:v,W=K(H," ");for(let Q of W)for(let ie of vt(Q))L.push(ie)}else w.push({base:j.base,pattern:H,negated:P});R([]);return}if(b.name==="@variant"&&(S===null?b.nodes.length===0?b.name="@custom-variant":(z(b.nodes,P=>{if(P.kind==="at-rule"&&P.name==="@slot")return b.name="@custom-variant",2}),b.name==="@variant"&&m.push(b)):m.push(b)),b.name==="@custom-variant"){if(S!==null)throw new Error("`@custom-variant` cannot be nested.");R([]);let[P,D]=K(b.params," ");if(!ct.test(P))throw new Error(`\`@custom-variant ${P}\` defines an invalid variant name. Variants should only contain alphanumeric, dashes or underscore characters.`);if(b.nodes.length>0&&D)throw new Error(`\`@custom-variant ${P}\` cannot have both a selector and a body.`);if(b.nodes.length===0){if(!D)throw new Error(`\`@custom-variant ${P}\` has no selector or body.`);let _=K(D.slice(1,-1),",");if(_.length===0||_.some(W=>W.trim()===""))throw new Error(`\`@custom-variant ${P} (${_.join(",")})\` selector is invalid.`);let H=[],L=[];for(let W of _)W=W.trim(),W[0]==="@"?H.push(W):L.push(W);u.push(W=>{W.variants.static(P,Q=>{let ie=[];L.length>0&&ie.push(M(L.join(", "),Q.nodes));for(let o of H)ie.push(G(o,Q.nodes));Q.nodes=ie},{compounds:Ae([...L,...H])})});return}else{u.push(_=>{_.variants.fromAst(P,b.nodes)});return}}if(b.name==="@media"){let P=K(b.params," "),D=[];for(let _ of P)if(_.startsWith("source(")){let H=_.slice(7,-1);z(b.nodes,(L,{replaceWith:W})=>{if(L.kind==="at-rule"&&L.name==="@tailwind"&&L.params==="utilities")return L.params+=` source(${H})`,W([se({sourceBase:j.base},[L])]),2})}else if(_.startsWith("theme(")){let H=_.slice(6,-1),L=H.includes("reference");z(b.nodes,W=>{if(W.kind!=="at-rule"){if(L)throw new Error('Files imported with `@import "\u2026" theme(reference)` must only contain `@theme` blocks.\nUse `@reference "\u2026";` instead.');return 0}if(W.name==="@theme")return W.params+=" "+H,1})}else if(_.startsWith("prefix(")){let H=_.slice(7,-1);z(b.nodes,L=>{if(L.kind==="at-rule"&&L.name==="@theme")return L.params+=` prefix(${H})`,1})}else _==="important"?a=!0:_==="reference"?b.nodes=[se({reference:!0},b.nodes)]:D.push(_);D.length>0?b.params=D.join(" "):P.length>0&&R(b.nodes)}if(b.name==="@theme"){let[P,D]=so(b.params);if(j.reference&&(P|=2),D){if(!oo.test(D))throw new Error(`The prefix "${D}" is invalid. Prefixes must be lowercase ASCII letters (a-z) only.`);c.prefix=D}return z(b.nodes,_=>{if(_.kind==="at-rule"&&_.name==="@keyframes")return c.addKeyframes(_),1;if(_.kind==="comment")return;if(_.kind==="declaration"&&_.property.startsWith("--")){c.add(we(_.property),_.value??"",P,_.src);return}let H=oe([F(b.name,b.params,[_])]).split(` +`).map((L,W,Q)=>`${W===0||W>=Q.length-2?" ":">"} ${L}`).join(` +`);throw new Error(`\`@theme\` blocks must only contain custom properties or \`@keyframes\`. + +${H}`)}),g?R([]):(g=M(":root, :host",[]),g.src=b.src,R([g])),1}}});let V=Kr(c);if(a&&(V.important=a),x.length>0)for(let b of x)V.invalidCandidates.add(b);s|=await gi({designSystem:V,base:r,ast:t,loadModule:e,sources:w});for(let b of u)b(V);for(let b of f)b(V);if(g){let b=[];for(let[R,j]of V.theme.entries()){if(j.options&2)continue;let P=l(de(R),j.value);P.src=j.src,b.push(P)}let S=V.theme.getKeyframes();for(let R of S)t.push(se({theme:!0},[I([R])]));g.nodes=[se({theme:!0},b)]}if(m.length>0){for(let b of m){let S=M("&",b.nodes),R=b.params,j=V.parseVariant(R);if(j===null)throw new Error(`Cannot use \`@variant\` with unknown variant: ${R}`);if(Te(S,j,V.variants)===null)throw new Error(`Cannot use \`@variant\` with variant: ${R}`);Object.assign(b,S)}s|=32}if(s|=Ve(t,V),s|=Le(t,V),d){let b=d;b.kind="context",b.context={}}return z(t,(b,{replaceWith:S})=>{if(b.kind==="at-rule")return b.name==="@utility"&&S([]),1}),{designSystem:V,ast:t,sources:w,root:y,utilitiesNode:d,features:s,inlineCandidates:v}}async function bi(t,r={}){let{designSystem:i,ast:e,sources:n,root:s,utilitiesNode:a,features:c,inlineCandidates:u}=await ki(t,r);e.unshift(Je(`! tailwindcss v${Wt} | MIT License | https://tailwindcss.com `));function f(v){i.invalidCandidates.add(v)}let g=new Set,d=null,m=0,w=!1;for(let v of u)i.invalidCandidates.has(v)||(g.add(v),w=!0);return{sources:n,root:s,features:c,build(v){if(c===0)return t;if(!a)return d??=be(e,i,r.polyfills),d;let x=w,y=!1;w=!1;let V=g.size;for(let S of v)if(!i.invalidCandidates.has(S))if(S[0]==="-"&&S[1]==="-"){let R=i.theme.markUsedVariable(S);x||=R,y||=R}else g.add(S),x||=g.size!==V;if(!x)return d??=be(e,i,r.polyfills),d;let b=ge(g,i,{onInvalidCandidate:f}).astNodes;return r.from&&z(b,S=>{S.src??=a.src}),!y&&m===b.length?(d??=be(e,i,r.polyfills),d):(m=b.length,a.nodes=b,d=be(e,i,r.polyfills),d)}}}async function uo(t,r={}){let i=ve(t,{from:r.from}),e=await bi(i,r),n=i,s=t;return{...e,build(a){let c=e.build(a);return c===n||(s=oe(c,!!r.from),n=c),s},buildSourceMap(){return vi({ast:n})}}}async function co(t,r={}){return(await ki(ve(t),r)).designSystem}function We(){throw new Error("It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install `@tailwindcss/postcss` and update your PostCSS configuration.")}for(let t in wt)t!=="default"&&(We[t]=wt[t]);module.exports=We; diff --git a/node_modules/tailwindcss/dist/lib.mjs b/node_modules/tailwindcss/dist/lib.mjs new file mode 100644 index 0000000..5338c1f --- /dev/null +++ b/node_modules/tailwindcss/dist/lib.mjs @@ -0,0 +1 @@ +import{a,b,c,d,e,f}from"./chunk-FEUCFEMW.mjs";import"./chunk-P5FH2LZE.mjs";import"./chunk-HTB5LLOP.mjs";export{b as Features,a as Polyfills,e as __unstable__loadDesignSystem,d as compile,c as compileAst,f as default}; diff --git a/node_modules/tailwindcss/dist/plugin.d.mts b/node_modules/tailwindcss/dist/plugin.d.mts new file mode 100644 index 0000000..6c11f7d --- /dev/null +++ b/node_modules/tailwindcss/dist/plugin.d.mts @@ -0,0 +1,11 @@ +export { P as PluginUtils } from './resolve-config-QUZ9b-Gn.mjs'; +import { a as PluginFn, C as Config, b as PluginWithConfig, c as PluginWithOptions } from './types-B254mqw1.mjs'; +export { d as PluginAPI, P as PluginsConfig, T as ThemeConfig } from './types-B254mqw1.mjs'; +import './colors.mjs'; + +declare function createPlugin(handler: PluginFn, config?: Partial): PluginWithConfig; +declare namespace createPlugin { + var withOptions: (pluginFunction: (options?: T) => PluginFn, configFunction?: (options?: T) => Partial) => PluginWithOptions; +} + +export { Config, PluginFn as PluginCreator, createPlugin as default }; diff --git a/node_modules/tailwindcss/dist/plugin.d.ts b/node_modules/tailwindcss/dist/plugin.d.ts new file mode 100644 index 0000000..305e84e --- /dev/null +++ b/node_modules/tailwindcss/dist/plugin.d.ts @@ -0,0 +1,104 @@ +import { N as NamedUtilityValue, P as PluginUtils } from './resolve-config-BIFUA2FY.js'; +import './colors-b_6i0Oi7.js'; + +type Config = UserConfig; +type PluginFn = (api: PluginAPI) => void; +type PluginWithConfig = { + handler: PluginFn; + config?: UserConfig; + /** @internal */ + reference?: boolean; +}; +type PluginWithOptions = { + (options?: T): PluginWithConfig; + __isOptionsFunction: true; +}; +type Plugin = PluginFn | PluginWithConfig | PluginWithOptions; +type PluginAPI = { + addBase(base: CssInJs): void; + addVariant(name: string, variant: string | string[] | CssInJs): void; + matchVariant(name: string, cb: (value: T | string, extra: { + modifier: string | null; + }) => string | string[], options?: { + values?: Record; + sort?(a: { + value: T | string; + modifier: string | null; + }, b: { + value: T | string; + modifier: string | null; + }): number; + }): void; + addUtilities(utilities: Record | Record[], options?: {}): void; + matchUtilities(utilities: Record CssInJs | CssInJs[]>, options?: Partial<{ + type: string | string[]; + supportsNegativeValues: boolean; + values: Record & { + __BARE_VALUE__?: (value: NamedUtilityValue) => string | undefined; + }; + modifiers: 'any' | Record; + }>): void; + addComponents(utilities: Record | Record[], options?: {}): void; + matchComponents(utilities: Record CssInJs>, options?: Partial<{ + type: string | string[]; + supportsNegativeValues: boolean; + values: Record & { + __BARE_VALUE__?: (value: NamedUtilityValue) => string | undefined; + }; + modifiers: 'any' | Record; + }>): void; + theme(path: string, defaultValue?: any): any; + config(path?: string, defaultValue?: any): any; + prefix(className: string): string; +}; +type CssInJs = { + [key: string]: string | string[] | CssInJs | CssInJs[]; +}; + +type ResolvableTo = T | ((utils: PluginUtils) => T); +type ThemeValue = ResolvableTo> | null | undefined; +type ThemeConfig = Record & { + extend?: Record; +}; +type ContentFile = string | { + raw: string; + extension?: string; +}; +type DarkModeStrategy = false | 'media' | 'class' | ['class', string] | 'selector' | ['selector', string] | ['variant', string | string[]]; +interface UserConfig { + presets?: UserConfig[]; + theme?: ThemeConfig; + plugins?: Plugin[]; +} +interface UserConfig { + content?: ContentFile[] | { + relative?: boolean; + files: ContentFile[]; + }; +} +interface UserConfig { + darkMode?: DarkModeStrategy; +} +interface UserConfig { + prefix?: string; +} +interface UserConfig { + blocklist?: string[]; +} +interface UserConfig { + important?: boolean | string; +} +interface UserConfig { + future?: 'all' | Record; +} + +declare function createPlugin(handler: PluginFn, config?: Partial): PluginWithConfig; +declare namespace createPlugin { + var withOptions: (pluginFunction: (options?: T) => PluginFn, configFunction?: (options?: T) => Partial) => PluginWithOptions; +} + +export { createPlugin as default }; diff --git a/node_modules/tailwindcss/dist/plugin.js b/node_modules/tailwindcss/dist/plugin.js new file mode 100644 index 0000000..eca100c --- /dev/null +++ b/node_modules/tailwindcss/dist/plugin.js @@ -0,0 +1 @@ +"use strict";function g(i,n){return{handler:i,config:n}}g.withOptions=function(i,n=()=>({})){function t(o){return{handler:i(o),config:n(o)}}return t.__isOptionsFunction=!0,t};var u=g;module.exports=u; diff --git a/node_modules/tailwindcss/dist/plugin.mjs b/node_modules/tailwindcss/dist/plugin.mjs new file mode 100644 index 0000000..430fa25 --- /dev/null +++ b/node_modules/tailwindcss/dist/plugin.mjs @@ -0,0 +1 @@ +function g(i,n){return{handler:i,config:n}}g.withOptions=function(i,n=()=>({})){function t(o){return{handler:i(o),config:n(o)}}return t.__isOptionsFunction=!0,t};var u=g;export{u as default}; diff --git a/node_modules/tailwindcss/dist/resolve-config-BIFUA2FY.d.ts b/node_modules/tailwindcss/dist/resolve-config-BIFUA2FY.d.ts new file mode 100644 index 0000000..5d9dbe2 --- /dev/null +++ b/node_modules/tailwindcss/dist/resolve-config-BIFUA2FY.d.ts @@ -0,0 +1,29 @@ +import { _ as _default } from './colors-b_6i0Oi7.js'; + +type NamedUtilityValue = { + kind: 'named'; + /** + * ``` + * bg-red-500 + * ^^^^^^^ + * + * w-1/2 + * ^ + * ``` + */ + value: string; + /** + * ``` + * w-1/2 + * ^^^ + * ``` + */ + fraction: string | null; +}; + +type PluginUtils = { + theme: (keypath: string, defaultValue?: any) => any; + colors: typeof _default; +}; + +export type { NamedUtilityValue as N, PluginUtils as P }; diff --git a/node_modules/tailwindcss/dist/resolve-config-QUZ9b-Gn.d.mts b/node_modules/tailwindcss/dist/resolve-config-QUZ9b-Gn.d.mts new file mode 100644 index 0000000..e1cde16 --- /dev/null +++ b/node_modules/tailwindcss/dist/resolve-config-QUZ9b-Gn.d.mts @@ -0,0 +1,190 @@ +import _default from './colors.mjs'; + +type ArbitraryUtilityValue = { + kind: 'arbitrary'; + /** + * ``` + * bg-[color:var(--my-color)] + * ^^^^^ + * + * bg-(color:--my-color) + * ^^^^^ + * ``` + */ + dataType: string | null; + /** + * ``` + * bg-[#0088cc] + * ^^^^^^^ + * + * bg-[var(--my_variable)] + * ^^^^^^^^^^^^^^^^^^ + * + * bg-(--my_variable) + * ^^^^^^^^^^^^^^ + * ``` + */ + value: string; +}; +type NamedUtilityValue = { + kind: 'named'; + /** + * ``` + * bg-red-500 + * ^^^^^^^ + * + * w-1/2 + * ^ + * ``` + */ + value: string; + /** + * ``` + * w-1/2 + * ^^^ + * ``` + */ + fraction: string | null; +}; +type ArbitraryModifier = { + kind: 'arbitrary'; + /** + * ``` + * bg-red-500/[50%] + * ^^^ + * ``` + */ + value: string; +}; +type NamedModifier = { + kind: 'named'; + /** + * ``` + * bg-red-500/50 + * ^^ + * ``` + */ + value: string; +}; +type ArbitraryVariantValue = { + kind: 'arbitrary'; + value: string; +}; +type NamedVariantValue = { + kind: 'named'; + value: string; +}; +type Variant = +/** + * Arbitrary variants are variants that take a selector and generate a variant + * on the fly. + * + * E.g.: `[&_p]` + */ +{ + kind: 'arbitrary'; + selector: string; + relative: boolean; +} +/** + * Static variants are variants that don't take any arguments. + * + * E.g.: `hover` + */ + | { + kind: 'static'; + root: string; +} +/** + * Functional variants are variants that can take an argument. The argument is + * either a named variant value or an arbitrary variant value. + * + * E.g.: + * + * - `aria-disabled` + * - `aria-[disabled]` + * - `@container-size` -> @container, with named value `size` + * - `@container-[inline-size]` -> @container, with arbitrary variant value `inline-size` + * - `@container` -> @container, with no value + */ + | { + kind: 'functional'; + root: string; + value: ArbitraryVariantValue | NamedVariantValue | null; + modifier: ArbitraryModifier | NamedModifier | null; +} +/** + * Compound variants are variants that take another variant as an argument. + * + * E.g.: + * + * - `has-[&_p]` + * - `group-*` + * - `peer-*` + */ + | { + kind: 'compound'; + root: string; + modifier: ArbitraryModifier | NamedModifier | null; + variant: Variant; +}; +type Candidate = +/** + * Arbitrary candidates are candidates that register utilities on the fly with + * a property and a value. + * + * E.g.: + * + * - `[color:red]` + * - `[color:red]/50` + * - `[color:red]/50!` + */ +{ + kind: 'arbitrary'; + property: string; + value: string; + modifier: ArbitraryModifier | NamedModifier | null; + variants: Variant[]; + important: boolean; + raw: string; +} +/** + * Static candidates are candidates that don't take any arguments. + * + * E.g.: + * + * - `underline` + * - `box-border` + */ + | { + kind: 'static'; + root: string; + variants: Variant[]; + important: boolean; + raw: string; +} +/** + * Functional candidates are candidates that can take an argument. + * + * E.g.: + * + * - `bg-red-500` + * - `bg-[#0088cc]` + * - `w-1/2` + */ + | { + kind: 'functional'; + root: string; + value: ArbitraryUtilityValue | NamedUtilityValue | null; + modifier: ArbitraryModifier | NamedModifier | null; + variants: Variant[]; + important: boolean; + raw: string; +}; + +type PluginUtils = { + theme: (keypath: string, defaultValue?: any) => any; + colors: typeof _default; +}; + +export type { Candidate as C, NamedUtilityValue as N, PluginUtils as P, Variant as V }; diff --git a/node_modules/tailwindcss/dist/types-B254mqw1.d.mts b/node_modules/tailwindcss/dist/types-B254mqw1.d.mts new file mode 100644 index 0000000..b3ac7a9 --- /dev/null +++ b/node_modules/tailwindcss/dist/types-B254mqw1.d.mts @@ -0,0 +1,98 @@ +import { N as NamedUtilityValue, P as PluginUtils } from './resolve-config-QUZ9b-Gn.mjs'; + +type Config = UserConfig; +type PluginFn = (api: PluginAPI) => void; +type PluginWithConfig = { + handler: PluginFn; + config?: UserConfig; + /** @internal */ + reference?: boolean; +}; +type PluginWithOptions = { + (options?: T): PluginWithConfig; + __isOptionsFunction: true; +}; +type Plugin = PluginFn | PluginWithConfig | PluginWithOptions; +type PluginAPI = { + addBase(base: CssInJs): void; + addVariant(name: string, variant: string | string[] | CssInJs): void; + matchVariant(name: string, cb: (value: T | string, extra: { + modifier: string | null; + }) => string | string[], options?: { + values?: Record; + sort?(a: { + value: T | string; + modifier: string | null; + }, b: { + value: T | string; + modifier: string | null; + }): number; + }): void; + addUtilities(utilities: Record | Record[], options?: {}): void; + matchUtilities(utilities: Record CssInJs | CssInJs[]>, options?: Partial<{ + type: string | string[]; + supportsNegativeValues: boolean; + values: Record & { + __BARE_VALUE__?: (value: NamedUtilityValue) => string | undefined; + }; + modifiers: 'any' | Record; + }>): void; + addComponents(utilities: Record | Record[], options?: {}): void; + matchComponents(utilities: Record CssInJs>, options?: Partial<{ + type: string | string[]; + supportsNegativeValues: boolean; + values: Record & { + __BARE_VALUE__?: (value: NamedUtilityValue) => string | undefined; + }; + modifiers: 'any' | Record; + }>): void; + theme(path: string, defaultValue?: any): any; + config(path?: string, defaultValue?: any): any; + prefix(className: string): string; +}; +type CssInJs = { + [key: string]: string | string[] | CssInJs | CssInJs[]; +}; + +type ResolvableTo = T | ((utils: PluginUtils) => T); +type ThemeValue = ResolvableTo> | null | undefined; +type ThemeConfig = Record & { + extend?: Record; +}; +type ContentFile = string | { + raw: string; + extension?: string; +}; +type DarkModeStrategy = false | 'media' | 'class' | ['class', string] | 'selector' | ['selector', string] | ['variant', string | string[]]; +interface UserConfig { + presets?: UserConfig[]; + theme?: ThemeConfig; + plugins?: Plugin[]; +} +interface UserConfig { + content?: ContentFile[] | { + relative?: boolean; + files: ContentFile[]; + }; +} +interface UserConfig { + darkMode?: DarkModeStrategy; +} +interface UserConfig { + prefix?: string; +} +interface UserConfig { + blocklist?: string[]; +} +interface UserConfig { + important?: boolean | string; +} +interface UserConfig { + future?: 'all' | Record; +} + +export type { Config as C, Plugin as P, ThemeConfig as T, UserConfig as U, PluginFn as a, PluginWithConfig as b, PluginWithOptions as c, PluginAPI as d }; diff --git a/node_modules/tailwindcss/index.css b/node_modules/tailwindcss/index.css new file mode 100644 index 0000000..0792ea3 --- /dev/null +++ b/node_modules/tailwindcss/index.css @@ -0,0 +1,888 @@ +@layer theme, base, components, utilities; + +@layer theme { + @theme default { + --font-sans: + ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", + "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif; + --font-mono: + ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", + "Courier New", monospace; + + --color-red-50: oklch(97.1% 0.013 17.38); + --color-red-100: oklch(93.6% 0.032 17.717); + --color-red-200: oklch(88.5% 0.062 18.334); + --color-red-300: oklch(80.8% 0.114 19.571); + --color-red-400: oklch(70.4% 0.191 22.216); + --color-red-500: oklch(63.7% 0.237 25.331); + --color-red-600: oklch(57.7% 0.245 27.325); + --color-red-700: oklch(50.5% 0.213 27.518); + --color-red-800: oklch(44.4% 0.177 26.899); + --color-red-900: oklch(39.6% 0.141 25.723); + --color-red-950: oklch(25.8% 0.092 26.042); + + --color-orange-50: oklch(98% 0.016 73.684); + --color-orange-100: oklch(95.4% 0.038 75.164); + --color-orange-200: oklch(90.1% 0.076 70.697); + --color-orange-300: oklch(83.7% 0.128 66.29); + --color-orange-400: oklch(75% 0.183 55.934); + --color-orange-500: oklch(70.5% 0.213 47.604); + --color-orange-600: oklch(64.6% 0.222 41.116); + --color-orange-700: oklch(55.3% 0.195 38.402); + --color-orange-800: oklch(47% 0.157 37.304); + --color-orange-900: oklch(40.8% 0.123 38.172); + --color-orange-950: oklch(26.6% 0.079 36.259); + + --color-amber-50: oklch(98.7% 0.022 95.277); + --color-amber-100: oklch(96.2% 0.059 95.617); + --color-amber-200: oklch(92.4% 0.12 95.746); + --color-amber-300: oklch(87.9% 0.169 91.605); + --color-amber-400: oklch(82.8% 0.189 84.429); + --color-amber-500: oklch(76.9% 0.188 70.08); + --color-amber-600: oklch(66.6% 0.179 58.318); + --color-amber-700: oklch(55.5% 0.163 48.998); + --color-amber-800: oklch(47.3% 0.137 46.201); + --color-amber-900: oklch(41.4% 0.112 45.904); + --color-amber-950: oklch(27.9% 0.077 45.635); + + --color-yellow-50: oklch(98.7% 0.026 102.212); + --color-yellow-100: oklch(97.3% 0.071 103.193); + --color-yellow-200: oklch(94.5% 0.129 101.54); + --color-yellow-300: oklch(90.5% 0.182 98.111); + --color-yellow-400: oklch(85.2% 0.199 91.936); + --color-yellow-500: oklch(79.5% 0.184 86.047); + --color-yellow-600: oklch(68.1% 0.162 75.834); + --color-yellow-700: oklch(55.4% 0.135 66.442); + --color-yellow-800: oklch(47.6% 0.114 61.907); + --color-yellow-900: oklch(42.1% 0.095 57.708); + --color-yellow-950: oklch(28.6% 0.066 53.813); + + --color-lime-50: oklch(98.6% 0.031 120.757); + --color-lime-100: oklch(96.7% 0.067 122.328); + --color-lime-200: oklch(93.8% 0.127 124.321); + --color-lime-300: oklch(89.7% 0.196 126.665); + --color-lime-400: oklch(84.1% 0.238 128.85); + --color-lime-500: oklch(76.8% 0.233 130.85); + --color-lime-600: oklch(64.8% 0.2 131.684); + --color-lime-700: oklch(53.2% 0.157 131.589); + --color-lime-800: oklch(45.3% 0.124 130.933); + --color-lime-900: oklch(40.5% 0.101 131.063); + --color-lime-950: oklch(27.4% 0.072 132.109); + + --color-green-50: oklch(98.2% 0.018 155.826); + --color-green-100: oklch(96.2% 0.044 156.743); + --color-green-200: oklch(92.5% 0.084 155.995); + --color-green-300: oklch(87.1% 0.15 154.449); + --color-green-400: oklch(79.2% 0.209 151.711); + --color-green-500: oklch(72.3% 0.219 149.579); + --color-green-600: oklch(62.7% 0.194 149.214); + --color-green-700: oklch(52.7% 0.154 150.069); + --color-green-800: oklch(44.8% 0.119 151.328); + --color-green-900: oklch(39.3% 0.095 152.535); + --color-green-950: oklch(26.6% 0.065 152.934); + + --color-emerald-50: oklch(97.9% 0.021 166.113); + --color-emerald-100: oklch(95% 0.052 163.051); + --color-emerald-200: oklch(90.5% 0.093 164.15); + --color-emerald-300: oklch(84.5% 0.143 164.978); + --color-emerald-400: oklch(76.5% 0.177 163.223); + --color-emerald-500: oklch(69.6% 0.17 162.48); + --color-emerald-600: oklch(59.6% 0.145 163.225); + --color-emerald-700: oklch(50.8% 0.118 165.612); + --color-emerald-800: oklch(43.2% 0.095 166.913); + --color-emerald-900: oklch(37.8% 0.077 168.94); + --color-emerald-950: oklch(26.2% 0.051 172.552); + + --color-teal-50: oklch(98.4% 0.014 180.72); + --color-teal-100: oklch(95.3% 0.051 180.801); + --color-teal-200: oklch(91% 0.096 180.426); + --color-teal-300: oklch(85.5% 0.138 181.071); + --color-teal-400: oklch(77.7% 0.152 181.912); + --color-teal-500: oklch(70.4% 0.14 182.503); + --color-teal-600: oklch(60% 0.118 184.704); + --color-teal-700: oklch(51.1% 0.096 186.391); + --color-teal-800: oklch(43.7% 0.078 188.216); + --color-teal-900: oklch(38.6% 0.063 188.416); + --color-teal-950: oklch(27.7% 0.046 192.524); + + --color-cyan-50: oklch(98.4% 0.019 200.873); + --color-cyan-100: oklch(95.6% 0.045 203.388); + --color-cyan-200: oklch(91.7% 0.08 205.041); + --color-cyan-300: oklch(86.5% 0.127 207.078); + --color-cyan-400: oklch(78.9% 0.154 211.53); + --color-cyan-500: oklch(71.5% 0.143 215.221); + --color-cyan-600: oklch(60.9% 0.126 221.723); + --color-cyan-700: oklch(52% 0.105 223.128); + --color-cyan-800: oklch(45% 0.085 224.283); + --color-cyan-900: oklch(39.8% 0.07 227.392); + --color-cyan-950: oklch(30.2% 0.056 229.695); + + --color-sky-50: oklch(97.7% 0.013 236.62); + --color-sky-100: oklch(95.1% 0.026 236.824); + --color-sky-200: oklch(90.1% 0.058 230.902); + --color-sky-300: oklch(82.8% 0.111 230.318); + --color-sky-400: oklch(74.6% 0.16 232.661); + --color-sky-500: oklch(68.5% 0.169 237.323); + --color-sky-600: oklch(58.8% 0.158 241.966); + --color-sky-700: oklch(50% 0.134 242.749); + --color-sky-800: oklch(44.3% 0.11 240.79); + --color-sky-900: oklch(39.1% 0.09 240.876); + --color-sky-950: oklch(29.3% 0.066 243.157); + + --color-blue-50: oklch(97% 0.014 254.604); + --color-blue-100: oklch(93.2% 0.032 255.585); + --color-blue-200: oklch(88.2% 0.059 254.128); + --color-blue-300: oklch(80.9% 0.105 251.813); + --color-blue-400: oklch(70.7% 0.165 254.624); + --color-blue-500: oklch(62.3% 0.214 259.815); + --color-blue-600: oklch(54.6% 0.245 262.881); + --color-blue-700: oklch(48.8% 0.243 264.376); + --color-blue-800: oklch(42.4% 0.199 265.638); + --color-blue-900: oklch(37.9% 0.146 265.522); + --color-blue-950: oklch(28.2% 0.091 267.935); + + --color-indigo-50: oklch(96.2% 0.018 272.314); + --color-indigo-100: oklch(93% 0.034 272.788); + --color-indigo-200: oklch(87% 0.065 274.039); + --color-indigo-300: oklch(78.5% 0.115 274.713); + --color-indigo-400: oklch(67.3% 0.182 276.935); + --color-indigo-500: oklch(58.5% 0.233 277.117); + --color-indigo-600: oklch(51.1% 0.262 276.966); + --color-indigo-700: oklch(45.7% 0.24 277.023); + --color-indigo-800: oklch(39.8% 0.195 277.366); + --color-indigo-900: oklch(35.9% 0.144 278.697); + --color-indigo-950: oklch(25.7% 0.09 281.288); + + --color-violet-50: oklch(96.9% 0.016 293.756); + --color-violet-100: oklch(94.3% 0.029 294.588); + --color-violet-200: oklch(89.4% 0.057 293.283); + --color-violet-300: oklch(81.1% 0.111 293.571); + --color-violet-400: oklch(70.2% 0.183 293.541); + --color-violet-500: oklch(60.6% 0.25 292.717); + --color-violet-600: oklch(54.1% 0.281 293.009); + --color-violet-700: oklch(49.1% 0.27 292.581); + --color-violet-800: oklch(43.2% 0.232 292.759); + --color-violet-900: oklch(38% 0.189 293.745); + --color-violet-950: oklch(28.3% 0.141 291.089); + + --color-purple-50: oklch(97.7% 0.014 308.299); + --color-purple-100: oklch(94.6% 0.033 307.174); + --color-purple-200: oklch(90.2% 0.063 306.703); + --color-purple-300: oklch(82.7% 0.119 306.383); + --color-purple-400: oklch(71.4% 0.203 305.504); + --color-purple-500: oklch(62.7% 0.265 303.9); + --color-purple-600: oklch(55.8% 0.288 302.321); + --color-purple-700: oklch(49.6% 0.265 301.924); + --color-purple-800: oklch(43.8% 0.218 303.724); + --color-purple-900: oklch(38.1% 0.176 304.987); + --color-purple-950: oklch(29.1% 0.149 302.717); + + --color-fuchsia-50: oklch(97.7% 0.017 320.058); + --color-fuchsia-100: oklch(95.2% 0.037 318.852); + --color-fuchsia-200: oklch(90.3% 0.076 319.62); + --color-fuchsia-300: oklch(83.3% 0.145 321.434); + --color-fuchsia-400: oklch(74% 0.238 322.16); + --color-fuchsia-500: oklch(66.7% 0.295 322.15); + --color-fuchsia-600: oklch(59.1% 0.293 322.896); + --color-fuchsia-700: oklch(51.8% 0.253 323.949); + --color-fuchsia-800: oklch(45.2% 0.211 324.591); + --color-fuchsia-900: oklch(40.1% 0.17 325.612); + --color-fuchsia-950: oklch(29.3% 0.136 325.661); + + --color-pink-50: oklch(97.1% 0.014 343.198); + --color-pink-100: oklch(94.8% 0.028 342.258); + --color-pink-200: oklch(89.9% 0.061 343.231); + --color-pink-300: oklch(82.3% 0.12 346.018); + --color-pink-400: oklch(71.8% 0.202 349.761); + --color-pink-500: oklch(65.6% 0.241 354.308); + --color-pink-600: oklch(59.2% 0.249 0.584); + --color-pink-700: oklch(52.5% 0.223 3.958); + --color-pink-800: oklch(45.9% 0.187 3.815); + --color-pink-900: oklch(40.8% 0.153 2.432); + --color-pink-950: oklch(28.4% 0.109 3.907); + + --color-rose-50: oklch(96.9% 0.015 12.422); + --color-rose-100: oklch(94.1% 0.03 12.58); + --color-rose-200: oklch(89.2% 0.058 10.001); + --color-rose-300: oklch(81% 0.117 11.638); + --color-rose-400: oklch(71.2% 0.194 13.428); + --color-rose-500: oklch(64.5% 0.246 16.439); + --color-rose-600: oklch(58.6% 0.253 17.585); + --color-rose-700: oklch(51.4% 0.222 16.935); + --color-rose-800: oklch(45.5% 0.188 13.697); + --color-rose-900: oklch(41% 0.159 10.272); + --color-rose-950: oklch(27.1% 0.105 12.094); + + --color-slate-50: oklch(98.4% 0.003 247.858); + --color-slate-100: oklch(96.8% 0.007 247.896); + --color-slate-200: oklch(92.9% 0.013 255.508); + --color-slate-300: oklch(86.9% 0.022 252.894); + --color-slate-400: oklch(70.4% 0.04 256.788); + --color-slate-500: oklch(55.4% 0.046 257.417); + --color-slate-600: oklch(44.6% 0.043 257.281); + --color-slate-700: oklch(37.2% 0.044 257.287); + --color-slate-800: oklch(27.9% 0.041 260.031); + --color-slate-900: oklch(20.8% 0.042 265.755); + --color-slate-950: oklch(12.9% 0.042 264.695); + + --color-gray-50: oklch(98.5% 0.002 247.839); + --color-gray-100: oklch(96.7% 0.003 264.542); + --color-gray-200: oklch(92.8% 0.006 264.531); + --color-gray-300: oklch(87.2% 0.01 258.338); + --color-gray-400: oklch(70.7% 0.022 261.325); + --color-gray-500: oklch(55.1% 0.027 264.364); + --color-gray-600: oklch(44.6% 0.03 256.802); + --color-gray-700: oklch(37.3% 0.034 259.733); + --color-gray-800: oklch(27.8% 0.033 256.848); + --color-gray-900: oklch(21% 0.034 264.665); + --color-gray-950: oklch(13% 0.028 261.692); + + --color-zinc-50: oklch(98.5% 0 0); + --color-zinc-100: oklch(96.7% 0.001 286.375); + --color-zinc-200: oklch(92% 0.004 286.32); + --color-zinc-300: oklch(87.1% 0.006 286.286); + --color-zinc-400: oklch(70.5% 0.015 286.067); + --color-zinc-500: oklch(55.2% 0.016 285.938); + --color-zinc-600: oklch(44.2% 0.017 285.786); + --color-zinc-700: oklch(37% 0.013 285.805); + --color-zinc-800: oklch(27.4% 0.006 286.033); + --color-zinc-900: oklch(21% 0.006 285.885); + --color-zinc-950: oklch(14.1% 0.005 285.823); + + --color-neutral-50: oklch(98.5% 0 0); + --color-neutral-100: oklch(97% 0 0); + --color-neutral-200: oklch(92.2% 0 0); + --color-neutral-300: oklch(87% 0 0); + --color-neutral-400: oklch(70.8% 0 0); + --color-neutral-500: oklch(55.6% 0 0); + --color-neutral-600: oklch(43.9% 0 0); + --color-neutral-700: oklch(37.1% 0 0); + --color-neutral-800: oklch(26.9% 0 0); + --color-neutral-900: oklch(20.5% 0 0); + --color-neutral-950: oklch(14.5% 0 0); + + --color-stone-50: oklch(98.5% 0.001 106.423); + --color-stone-100: oklch(97% 0.001 106.424); + --color-stone-200: oklch(92.3% 0.003 48.717); + --color-stone-300: oklch(86.9% 0.005 56.366); + --color-stone-400: oklch(70.9% 0.01 56.259); + --color-stone-500: oklch(55.3% 0.013 58.071); + --color-stone-600: oklch(44.4% 0.011 73.639); + --color-stone-700: oklch(37.4% 0.01 67.558); + --color-stone-800: oklch(26.8% 0.007 34.298); + --color-stone-900: oklch(21.6% 0.006 56.043); + --color-stone-950: oklch(14.7% 0.004 49.25); + + --color-black: #000; + --color-white: #fff; + + --spacing: 0.25rem; + + --breakpoint-sm: 40rem; + --breakpoint-md: 48rem; + --breakpoint-lg: 64rem; + --breakpoint-xl: 80rem; + --breakpoint-2xl: 96rem; + + --container-3xs: 16rem; + --container-2xs: 18rem; + --container-xs: 20rem; + --container-sm: 24rem; + --container-md: 28rem; + --container-lg: 32rem; + --container-xl: 36rem; + --container-2xl: 42rem; + --container-3xl: 48rem; + --container-4xl: 56rem; + --container-5xl: 64rem; + --container-6xl: 72rem; + --container-7xl: 80rem; + + --text-xs: 0.75rem; + --text-xs--line-height: calc(1 / 0.75); + --text-sm: 0.875rem; + --text-sm--line-height: calc(1.25 / 0.875); + --text-base: 1rem; + --text-base--line-height: calc(1.5 / 1); + --text-lg: 1.125rem; + --text-lg--line-height: calc(1.75 / 1.125); + --text-xl: 1.25rem; + --text-xl--line-height: calc(1.75 / 1.25); + --text-2xl: 1.5rem; + --text-2xl--line-height: calc(2 / 1.5); + --text-3xl: 1.875rem; + --text-3xl--line-height: calc(2.25 / 1.875); + --text-4xl: 2.25rem; + --text-4xl--line-height: calc(2.5 / 2.25); + --text-5xl: 3rem; + --text-5xl--line-height: 1; + --text-6xl: 3.75rem; + --text-6xl--line-height: 1; + --text-7xl: 4.5rem; + --text-7xl--line-height: 1; + --text-8xl: 6rem; + --text-8xl--line-height: 1; + --text-9xl: 8rem; + --text-9xl--line-height: 1; + + --font-weight-thin: 100; + --font-weight-extralight: 200; + --font-weight-light: 300; + --font-weight-normal: 400; + --font-weight-medium: 500; + --font-weight-semibold: 600; + --font-weight-bold: 700; + --font-weight-extrabold: 800; + --font-weight-black: 900; + + --tracking-tighter: -0.05em; + --tracking-tight: -0.025em; + --tracking-normal: 0em; + --tracking-wide: 0.025em; + --tracking-wider: 0.05em; + --tracking-widest: 0.1em; + + --leading-tight: 1.25; + --leading-snug: 1.375; + --leading-normal: 1.5; + --leading-relaxed: 1.625; + --leading-loose: 2; + + --radius-xs: 0.125rem; + --radius-sm: 0.25rem; + --radius-md: 0.375rem; + --radius-lg: 0.5rem; + --radius-xl: 0.75rem; + --radius-2xl: 1rem; + --radius-3xl: 1.5rem; + --radius-4xl: 2rem; + + --shadow-2xs: 0 1px rgb(0 0 0 / 0.05); + --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --shadow-md: + 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --shadow-lg: + 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --shadow-xl: + 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); + --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25); + + --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05); + --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05); + --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05); + + --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05); + --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15); + --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12); + --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15); + --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1); + --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15); + + --text-shadow-2xs: 0px 1px 0px rgb(0 0 0 / 0.15); + --text-shadow-xs: 0px 1px 1px rgb(0 0 0 / 0.2); + --text-shadow-sm: + 0px 1px 0px rgb(0 0 0 / 0.075), 0px 1px 1px rgb(0 0 0 / 0.075), + 0px 2px 2px rgb(0 0 0 / 0.075); + --text-shadow-md: + 0px 1px 1px rgb(0 0 0 / 0.1), 0px 1px 2px rgb(0 0 0 / 0.1), + 0px 2px 4px rgb(0 0 0 / 0.1); + --text-shadow-lg: + 0px 1px 2px rgb(0 0 0 / 0.1), 0px 3px 2px rgb(0 0 0 / 0.1), + 0px 4px 8px rgb(0 0 0 / 0.1); + + --ease-in: cubic-bezier(0.4, 0, 1, 1); + --ease-out: cubic-bezier(0, 0, 0.2, 1); + --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1); + + --animate-spin: spin 1s linear infinite; + --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + --animate-bounce: bounce 1s infinite; + + @keyframes spin { + to { + transform: rotate(360deg); + } + } + + @keyframes ping { + 75%, + 100% { + transform: scale(2); + opacity: 0; + } + } + + @keyframes pulse { + 50% { + opacity: 0.5; + } + } + + @keyframes bounce { + 0%, + 100% { + transform: translateY(-25%); + animation-timing-function: cubic-bezier(0.8, 0, 1, 1); + } + + 50% { + transform: none; + animation-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + } + + --blur-xs: 4px; + --blur-sm: 8px; + --blur-md: 12px; + --blur-lg: 16px; + --blur-xl: 24px; + --blur-2xl: 40px; + --blur-3xl: 64px; + + --perspective-dramatic: 100px; + --perspective-near: 300px; + --perspective-normal: 500px; + --perspective-midrange: 800px; + --perspective-distant: 1200px; + + --aspect-video: 16 / 9; + + --default-transition-duration: 150ms; + --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + --default-font-family: --theme(--font-sans, initial); + --default-font-feature-settings: --theme( + --font-sans--font-feature-settings, + initial + ); + --default-font-variation-settings: --theme( + --font-sans--font-variation-settings, + initial + ); + --default-mono-font-family: --theme(--font-mono, initial); + --default-mono-font-feature-settings: --theme( + --font-mono--font-feature-settings, + initial + ); + --default-mono-font-variation-settings: --theme( + --font-mono--font-variation-settings, + initial + ); + } + + /* Deprecated */ + @theme default inline reference { + --blur: 8px; + --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); + --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06); + --radius: 0.25rem; + --max-width-prose: 65ch; + } +} + +@layer base { + /* + 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) + 2. Remove default margins and padding + 3. Reset all borders. +*/ + + *, + ::after, + ::before, + ::backdrop, + ::file-selector-button { + box-sizing: border-box; /* 1 */ + margin: 0; /* 2 */ + padding: 0; /* 2 */ + border: 0 solid; /* 3 */ + } + + /* + 1. Use a consistent sensible line-height in all browsers. + 2. Prevent adjustments of font size after orientation changes in iOS. + 3. Use a more readable tab size. + 4. Use the user's configured `sans` font-family by default. + 5. Use the user's configured `sans` font-feature-settings by default. + 6. Use the user's configured `sans` font-variation-settings by default. + 7. Disable tap highlights on iOS. +*/ + + html, + :host { + line-height: 1.5; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ + tab-size: 4; /* 3 */ + font-family: --theme( + --default-font-family, + ui-sans-serif, + system-ui, + sans-serif, + "Apple Color Emoji", + "Segoe UI Emoji", + "Segoe UI Symbol", + "Noto Color Emoji" + ); /* 4 */ + font-feature-settings: --theme( + --default-font-feature-settings, + normal + ); /* 5 */ + font-variation-settings: --theme( + --default-font-variation-settings, + normal + ); /* 6 */ + -webkit-tap-highlight-color: transparent; /* 7 */ + } + + /* + 1. Add the correct height in Firefox. + 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) + 3. Reset the default border style to a 1px solid border. +*/ + + hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ + border-top-width: 1px; /* 3 */ + } + + /* + Add the correct text decoration in Chrome, Edge, and Safari. +*/ + + abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + } + + /* + Remove the default font size and weight for headings. +*/ + + h1, + h2, + h3, + h4, + h5, + h6 { + font-size: inherit; + font-weight: inherit; + } + + /* + Reset links to optimize for opt-in styling instead of opt-out. +*/ + + a { + color: inherit; + -webkit-text-decoration: inherit; + text-decoration: inherit; + } + + /* + Add the correct font weight in Edge and Safari. +*/ + + b, + strong { + font-weight: bolder; + } + + /* + 1. Use the user's configured `mono` font-family by default. + 2. Use the user's configured `mono` font-feature-settings by default. + 3. Use the user's configured `mono` font-variation-settings by default. + 4. Correct the odd `em` font sizing in all browsers. +*/ + + code, + kbd, + samp, + pre { + font-family: --theme( + --default-mono-font-family, + ui-monospace, + SFMono-Regular, + Menlo, + Monaco, + Consolas, + "Liberation Mono", + "Courier New", + monospace + ); /* 1 */ + font-feature-settings: --theme( + --default-mono-font-feature-settings, + normal + ); /* 2 */ + font-variation-settings: --theme( + --default-mono-font-variation-settings, + normal + ); /* 3 */ + font-size: 1em; /* 4 */ + } + + /* + Add the correct font size in all browsers. +*/ + + small { + font-size: 80%; + } + + /* + Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + + sub, + sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; + } + + sub { + bottom: -0.25em; + } + + sup { + top: -0.5em; + } + + /* + 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) + 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) + 3. Remove gaps between table borders by default. +*/ + + table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ + border-collapse: collapse; /* 3 */ + } + + /* + Use the modern Firefox focus style for all focusable elements. +*/ + + :-moz-focusring { + outline: auto; + } + + /* + Add the correct vertical alignment in Chrome and Firefox. +*/ + + progress { + vertical-align: baseline; + } + + /* + Add the correct display in Chrome and Safari. +*/ + + summary { + display: list-item; + } + + /* + Make lists unstyled by default. +*/ + + ol, + ul, + menu { + list-style: none; + } + + /* + 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) + 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + + img, + svg, + video, + canvas, + audio, + iframe, + embed, + object { + display: block; /* 1 */ + vertical-align: middle; /* 2 */ + } + + /* + Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + + img, + video { + max-width: 100%; + height: auto; + } + + /* + 1. Inherit font styles in all browsers. + 2. Remove border radius in all browsers. + 3. Remove background color in all browsers. + 4. Ensure consistent opacity for disabled states in all browsers. +*/ + + button, + input, + select, + optgroup, + textarea, + ::file-selector-button { + font: inherit; /* 1 */ + font-feature-settings: inherit; /* 1 */ + font-variation-settings: inherit; /* 1 */ + letter-spacing: inherit; /* 1 */ + color: inherit; /* 1 */ + border-radius: 0; /* 2 */ + background-color: transparent; /* 3 */ + opacity: 1; /* 4 */ + } + + /* + Restore default font weight. +*/ + + :where(select:is([multiple], [size])) optgroup { + font-weight: bolder; + } + + /* + Restore indentation. +*/ + + :where(select:is([multiple], [size])) optgroup option { + padding-inline-start: 20px; + } + + /* + Restore space after button. +*/ + + ::file-selector-button { + margin-inline-end: 4px; + } + + /* + Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +*/ + + ::placeholder { + opacity: 1; + } + + /* + Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not + crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194) +*/ + + @supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or + (contain-intrinsic-size: 1px) /* Safari 17+ */ { + ::placeholder { + color: color-mix(in oklab, currentcolor 50%, transparent); + } + } + + /* + Prevent resizing textareas horizontally by default. +*/ + + textarea { + resize: vertical; + } + + /* + Remove the inner padding in Chrome and Safari on macOS. +*/ + + ::-webkit-search-decoration { + -webkit-appearance: none; + } + + /* + 1. Ensure date/time inputs have the same height when empty in iOS Safari. + 2. Ensure text alignment can be changed on date/time inputs in iOS Safari. +*/ + + ::-webkit-date-and-time-value { + min-height: 1lh; /* 1 */ + text-align: inherit; /* 2 */ + } + + /* + Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`. +*/ + + ::-webkit-datetime-edit { + display: inline-flex; + } + + /* + Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers. +*/ + + ::-webkit-datetime-edit-fields-wrapper { + padding: 0; + } + + ::-webkit-datetime-edit, + ::-webkit-datetime-edit-year-field, + ::-webkit-datetime-edit-month-field, + ::-webkit-datetime-edit-day-field, + ::-webkit-datetime-edit-hour-field, + ::-webkit-datetime-edit-minute-field, + ::-webkit-datetime-edit-second-field, + ::-webkit-datetime-edit-millisecond-field, + ::-webkit-datetime-edit-meridiem-field { + padding-block: 0; + } + + /* + Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + + :-moz-ui-invalid { + box-shadow: none; + } + + /* + Correct the inability to style the border radius in iOS Safari. +*/ + + button, + input:where([type="button"], [type="reset"], [type="submit"]), + ::file-selector-button { + appearance: button; + } + + /* + Correct the cursor style of increment and decrement buttons in Safari. +*/ + + ::-webkit-inner-spin-button, + ::-webkit-outer-spin-button { + height: auto; + } + + /* + Make elements with the HTML hidden attribute stay hidden by default. +*/ + + [hidden]:where(:not([hidden="until-found"])) { + display: none !important; + } +} + +@layer utilities { + @tailwind utilities; +} diff --git a/node_modules/tailwindcss/package.json b/node_modules/tailwindcss/package.json new file mode 100644 index 0000000..5413d91 --- /dev/null +++ b/node_modules/tailwindcss/package.json @@ -0,0 +1,89 @@ +{ + "name": "tailwindcss", + "version": "4.1.8", + "description": "A utility-first CSS framework for rapidly building custom user interfaces.", + "license": "MIT", + "repository": { + "type": "git", + "url": "https://github.com/tailwindlabs/tailwindcss.git", + "directory": "packages/tailwindcss" + }, + "bugs": "https://github.com/tailwindlabs/tailwindcss/issues", + "homepage": "https://tailwindcss.com", + "exports": { + ".": { + "types": "./dist/lib.d.mts", + "style": "./index.css", + "require": "./dist/lib.js", + "import": "./dist/lib.mjs" + }, + "./plugin": { + "require": "./dist/plugin.js", + "import": "./dist/plugin.mjs" + }, + "./plugin.js": { + "require": "./dist/plugin.js", + "import": "./dist/plugin.mjs" + }, + "./defaultTheme": { + "require": "./dist/default-theme.js", + "import": "./dist/default-theme.mjs" + }, + "./defaultTheme.js": { + "require": "./dist/default-theme.js", + "import": "./dist/default-theme.mjs" + }, + "./colors": { + "require": "./dist/colors.js", + "import": "./dist/colors.mjs" + }, + "./colors.js": { + "require": "./dist/colors.js", + "import": "./dist/colors.mjs" + }, + "./lib/util/flattenColorPalette": { + "require": "./dist/flatten-color-palette.js", + "import": "./dist/flatten-color-palette.mjs" + }, + "./lib/util/flattenColorPalette.js": { + "require": "./dist/flatten-color-palette.js", + "import": "./dist/flatten-color-palette.mjs" + }, + "./package.json": "./package.json", + "./index.css": "./index.css", + "./index": "./index.css", + "./preflight.css": "./preflight.css", + "./preflight": "./preflight.css", + "./theme.css": "./theme.css", + "./theme": "./theme.css", + "./utilities.css": "./utilities.css", + "./utilities": "./utilities.css" + }, + "publishConfig": { + "provenance": true, + "access": "public" + }, + "style": "index.css", + "files": [ + "dist", + "index.css", + "preflight.css", + "theme.css", + "utilities.css" + ], + "devDependencies": { + "@ampproject/remapping": "^2.3.0", + "@types/node": "^20.14.8", + "dedent": "1.6.0", + "lightningcss": "1.30.1", + "magic-string": "^0.30.17", + "source-map-js": "^1.2.1", + "@tailwindcss/oxide": "^4.1.8" + }, + "scripts": { + "lint": "tsc --noEmit", + "build": "tsup-node --env.NODE_ENV production", + "dev": "tsup-node --env.NODE_ENV development --watch", + "test:ui": "playwright test" + } +} \ No newline at end of file diff --git a/node_modules/tailwindcss/preflight.css b/node_modules/tailwindcss/preflight.css new file mode 100644 index 0000000..0976a40 --- /dev/null +++ b/node_modules/tailwindcss/preflight.css @@ -0,0 +1,385 @@ +/* + 1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) + 2. Remove default margins and padding + 3. Reset all borders. +*/ + +*, +::after, +::before, +::backdrop, +::file-selector-button { + box-sizing: border-box; /* 1 */ + margin: 0; /* 2 */ + padding: 0; /* 2 */ + border: 0 solid; /* 3 */ +} + +/* + 1. Use a consistent sensible line-height in all browsers. + 2. Prevent adjustments of font size after orientation changes in iOS. + 3. Use a more readable tab size. + 4. Use the user's configured `sans` font-family by default. + 5. Use the user's configured `sans` font-feature-settings by default. + 6. Use the user's configured `sans` font-variation-settings by default. + 7. Disable tap highlights on iOS. +*/ + +html, +:host { + line-height: 1.5; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ + tab-size: 4; /* 3 */ + font-family: --theme( + --default-font-family, + ui-sans-serif, + system-ui, + sans-serif, + 'Apple Color Emoji', + 'Segoe UI Emoji', + 'Segoe UI Symbol', + 'Noto Color Emoji' + ); /* 4 */ + font-feature-settings: --theme(--default-font-feature-settings, normal); /* 5 */ + font-variation-settings: --theme(--default-font-variation-settings, normal); /* 6 */ + -webkit-tap-highlight-color: transparent; /* 7 */ +} + +/* + 1. Add the correct height in Firefox. + 2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) + 3. Reset the default border style to a 1px solid border. +*/ + +hr { + height: 0; /* 1 */ + color: inherit; /* 2 */ + border-top-width: 1px; /* 3 */ +} + +/* + Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/* + Remove the default font size and weight for headings. +*/ + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/* + Reset links to optimize for opt-in styling instead of opt-out. +*/ + +a { + color: inherit; + -webkit-text-decoration: inherit; + text-decoration: inherit; +} + +/* + Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/* + 1. Use the user's configured `mono` font-family by default. + 2. Use the user's configured `mono` font-feature-settings by default. + 3. Use the user's configured `mono` font-variation-settings by default. + 4. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: --theme( + --default-mono-font-family, + ui-monospace, + SFMono-Regular, + Menlo, + Monaco, + Consolas, + 'Liberation Mono', + 'Courier New', + monospace + ); /* 1 */ + font-feature-settings: --theme(--default-mono-font-feature-settings, normal); /* 2 */ + font-variation-settings: --theme(--default-mono-font-variation-settings, normal); /* 3 */ + font-size: 1em; /* 4 */ +} + +/* + Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/* + Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* + 1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) + 2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) + 3. Remove gaps between table borders by default. +*/ + +table { + text-indent: 0; /* 1 */ + border-color: inherit; /* 2 */ + border-collapse: collapse; /* 3 */ +} + +/* + Use the modern Firefox focus style for all focusable elements. +*/ + +:-moz-focusring { + outline: auto; +} + +/* + Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/* + Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/* + Make lists unstyled by default. +*/ + +ol, +ul, +menu { + list-style: none; +} + +/* + 1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) + 2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; /* 1 */ + vertical-align: middle; /* 2 */ +} + +/* + Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + +img, +video { + max-width: 100%; + height: auto; +} + +/* + 1. Inherit font styles in all browsers. + 2. Remove border radius in all browsers. + 3. Remove background color in all browsers. + 4. Ensure consistent opacity for disabled states in all browsers. +*/ + +button, +input, +select, +optgroup, +textarea, +::file-selector-button { + font: inherit; /* 1 */ + font-feature-settings: inherit; /* 1 */ + font-variation-settings: inherit; /* 1 */ + letter-spacing: inherit; /* 1 */ + color: inherit; /* 1 */ + border-radius: 0; /* 2 */ + background-color: transparent; /* 3 */ + opacity: 1; /* 4 */ +} + +/* + Restore default font weight. +*/ + +:where(select:is([multiple], [size])) optgroup { + font-weight: bolder; +} + +/* + Restore indentation. +*/ + +:where(select:is([multiple], [size])) optgroup option { + padding-inline-start: 20px; +} + +/* + Restore space after button. +*/ + +::file-selector-button { + margin-inline-end: 4px; +} + +/* + Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +*/ + +::placeholder { + opacity: 1; +} + +/* + Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not + crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194) +*/ + +@supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or + (contain-intrinsic-size: 1px) /* Safari 17+ */ { + ::placeholder { + color: color-mix(in oklab, currentcolor 50%, transparent); + } +} + +/* + Prevent resizing textareas horizontally by default. +*/ + +textarea { + resize: vertical; +} + +/* + Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* + 1. Ensure date/time inputs have the same height when empty in iOS Safari. + 2. Ensure text alignment can be changed on date/time inputs in iOS Safari. +*/ + +::-webkit-date-and-time-value { + min-height: 1lh; /* 1 */ + text-align: inherit; /* 2 */ +} + +/* + Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`. +*/ + +::-webkit-datetime-edit { + display: inline-flex; +} + +/* + Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers. +*/ + +::-webkit-datetime-edit-fields-wrapper { + padding: 0; +} + +::-webkit-datetime-edit, +::-webkit-datetime-edit-year-field, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-minute-field, +::-webkit-datetime-edit-second-field, +::-webkit-datetime-edit-millisecond-field, +::-webkit-datetime-edit-meridiem-field { + padding-block: 0; +} + +/* + Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/* + Correct the inability to style the border radius in iOS Safari. +*/ + +button, +input:where([type='button'], [type='reset'], [type='submit']), +::file-selector-button { + appearance: button; +} + +/* + Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/* + Make elements with the HTML hidden attribute stay hidden by default. +*/ + +[hidden]:where(:not([hidden='until-found'])) { + display: none !important; +} diff --git a/node_modules/tailwindcss/theme.css b/node_modules/tailwindcss/theme.css new file mode 100644 index 0000000..52d447f --- /dev/null +++ b/node_modules/tailwindcss/theme.css @@ -0,0 +1,462 @@ +@theme default { + --font-sans: + ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', + 'Noto Color Emoji'; + --font-serif: ui-serif, Georgia, Cambria, 'Times New Roman', Times, serif; + --font-mono: + ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', + monospace; + + --color-red-50: oklch(97.1% 0.013 17.38); + --color-red-100: oklch(93.6% 0.032 17.717); + --color-red-200: oklch(88.5% 0.062 18.334); + --color-red-300: oklch(80.8% 0.114 19.571); + --color-red-400: oklch(70.4% 0.191 22.216); + --color-red-500: oklch(63.7% 0.237 25.331); + --color-red-600: oklch(57.7% 0.245 27.325); + --color-red-700: oklch(50.5% 0.213 27.518); + --color-red-800: oklch(44.4% 0.177 26.899); + --color-red-900: oklch(39.6% 0.141 25.723); + --color-red-950: oklch(25.8% 0.092 26.042); + + --color-orange-50: oklch(98% 0.016 73.684); + --color-orange-100: oklch(95.4% 0.038 75.164); + --color-orange-200: oklch(90.1% 0.076 70.697); + --color-orange-300: oklch(83.7% 0.128 66.29); + --color-orange-400: oklch(75% 0.183 55.934); + --color-orange-500: oklch(70.5% 0.213 47.604); + --color-orange-600: oklch(64.6% 0.222 41.116); + --color-orange-700: oklch(55.3% 0.195 38.402); + --color-orange-800: oklch(47% 0.157 37.304); + --color-orange-900: oklch(40.8% 0.123 38.172); + --color-orange-950: oklch(26.6% 0.079 36.259); + + --color-amber-50: oklch(98.7% 0.022 95.277); + --color-amber-100: oklch(96.2% 0.059 95.617); + --color-amber-200: oklch(92.4% 0.12 95.746); + --color-amber-300: oklch(87.9% 0.169 91.605); + --color-amber-400: oklch(82.8% 0.189 84.429); + --color-amber-500: oklch(76.9% 0.188 70.08); + --color-amber-600: oklch(66.6% 0.179 58.318); + --color-amber-700: oklch(55.5% 0.163 48.998); + --color-amber-800: oklch(47.3% 0.137 46.201); + --color-amber-900: oklch(41.4% 0.112 45.904); + --color-amber-950: oklch(27.9% 0.077 45.635); + + --color-yellow-50: oklch(98.7% 0.026 102.212); + --color-yellow-100: oklch(97.3% 0.071 103.193); + --color-yellow-200: oklch(94.5% 0.129 101.54); + --color-yellow-300: oklch(90.5% 0.182 98.111); + --color-yellow-400: oklch(85.2% 0.199 91.936); + --color-yellow-500: oklch(79.5% 0.184 86.047); + --color-yellow-600: oklch(68.1% 0.162 75.834); + --color-yellow-700: oklch(55.4% 0.135 66.442); + --color-yellow-800: oklch(47.6% 0.114 61.907); + --color-yellow-900: oklch(42.1% 0.095 57.708); + --color-yellow-950: oklch(28.6% 0.066 53.813); + + --color-lime-50: oklch(98.6% 0.031 120.757); + --color-lime-100: oklch(96.7% 0.067 122.328); + --color-lime-200: oklch(93.8% 0.127 124.321); + --color-lime-300: oklch(89.7% 0.196 126.665); + --color-lime-400: oklch(84.1% 0.238 128.85); + --color-lime-500: oklch(76.8% 0.233 130.85); + --color-lime-600: oklch(64.8% 0.2 131.684); + --color-lime-700: oklch(53.2% 0.157 131.589); + --color-lime-800: oklch(45.3% 0.124 130.933); + --color-lime-900: oklch(40.5% 0.101 131.063); + --color-lime-950: oklch(27.4% 0.072 132.109); + + --color-green-50: oklch(98.2% 0.018 155.826); + --color-green-100: oklch(96.2% 0.044 156.743); + --color-green-200: oklch(92.5% 0.084 155.995); + --color-green-300: oklch(87.1% 0.15 154.449); + --color-green-400: oklch(79.2% 0.209 151.711); + --color-green-500: oklch(72.3% 0.219 149.579); + --color-green-600: oklch(62.7% 0.194 149.214); + --color-green-700: oklch(52.7% 0.154 150.069); + --color-green-800: oklch(44.8% 0.119 151.328); + --color-green-900: oklch(39.3% 0.095 152.535); + --color-green-950: oklch(26.6% 0.065 152.934); + + --color-emerald-50: oklch(97.9% 0.021 166.113); + --color-emerald-100: oklch(95% 0.052 163.051); + --color-emerald-200: oklch(90.5% 0.093 164.15); + --color-emerald-300: oklch(84.5% 0.143 164.978); + --color-emerald-400: oklch(76.5% 0.177 163.223); + --color-emerald-500: oklch(69.6% 0.17 162.48); + --color-emerald-600: oklch(59.6% 0.145 163.225); + --color-emerald-700: oklch(50.8% 0.118 165.612); + --color-emerald-800: oklch(43.2% 0.095 166.913); + --color-emerald-900: oklch(37.8% 0.077 168.94); + --color-emerald-950: oklch(26.2% 0.051 172.552); + + --color-teal-50: oklch(98.4% 0.014 180.72); + --color-teal-100: oklch(95.3% 0.051 180.801); + --color-teal-200: oklch(91% 0.096 180.426); + --color-teal-300: oklch(85.5% 0.138 181.071); + --color-teal-400: oklch(77.7% 0.152 181.912); + --color-teal-500: oklch(70.4% 0.14 182.503); + --color-teal-600: oklch(60% 0.118 184.704); + --color-teal-700: oklch(51.1% 0.096 186.391); + --color-teal-800: oklch(43.7% 0.078 188.216); + --color-teal-900: oklch(38.6% 0.063 188.416); + --color-teal-950: oklch(27.7% 0.046 192.524); + + --color-cyan-50: oklch(98.4% 0.019 200.873); + --color-cyan-100: oklch(95.6% 0.045 203.388); + --color-cyan-200: oklch(91.7% 0.08 205.041); + --color-cyan-300: oklch(86.5% 0.127 207.078); + --color-cyan-400: oklch(78.9% 0.154 211.53); + --color-cyan-500: oklch(71.5% 0.143 215.221); + --color-cyan-600: oklch(60.9% 0.126 221.723); + --color-cyan-700: oklch(52% 0.105 223.128); + --color-cyan-800: oklch(45% 0.085 224.283); + --color-cyan-900: oklch(39.8% 0.07 227.392); + --color-cyan-950: oklch(30.2% 0.056 229.695); + + --color-sky-50: oklch(97.7% 0.013 236.62); + --color-sky-100: oklch(95.1% 0.026 236.824); + --color-sky-200: oklch(90.1% 0.058 230.902); + --color-sky-300: oklch(82.8% 0.111 230.318); + --color-sky-400: oklch(74.6% 0.16 232.661); + --color-sky-500: oklch(68.5% 0.169 237.323); + --color-sky-600: oklch(58.8% 0.158 241.966); + --color-sky-700: oklch(50% 0.134 242.749); + --color-sky-800: oklch(44.3% 0.11 240.79); + --color-sky-900: oklch(39.1% 0.09 240.876); + --color-sky-950: oklch(29.3% 0.066 243.157); + + --color-blue-50: oklch(97% 0.014 254.604); + --color-blue-100: oklch(93.2% 0.032 255.585); + --color-blue-200: oklch(88.2% 0.059 254.128); + --color-blue-300: oklch(80.9% 0.105 251.813); + --color-blue-400: oklch(70.7% 0.165 254.624); + --color-blue-500: oklch(62.3% 0.214 259.815); + --color-blue-600: oklch(54.6% 0.245 262.881); + --color-blue-700: oklch(48.8% 0.243 264.376); + --color-blue-800: oklch(42.4% 0.199 265.638); + --color-blue-900: oklch(37.9% 0.146 265.522); + --color-blue-950: oklch(28.2% 0.091 267.935); + + --color-indigo-50: oklch(96.2% 0.018 272.314); + --color-indigo-100: oklch(93% 0.034 272.788); + --color-indigo-200: oklch(87% 0.065 274.039); + --color-indigo-300: oklch(78.5% 0.115 274.713); + --color-indigo-400: oklch(67.3% 0.182 276.935); + --color-indigo-500: oklch(58.5% 0.233 277.117); + --color-indigo-600: oklch(51.1% 0.262 276.966); + --color-indigo-700: oklch(45.7% 0.24 277.023); + --color-indigo-800: oklch(39.8% 0.195 277.366); + --color-indigo-900: oklch(35.9% 0.144 278.697); + --color-indigo-950: oklch(25.7% 0.09 281.288); + + --color-violet-50: oklch(96.9% 0.016 293.756); + --color-violet-100: oklch(94.3% 0.029 294.588); + --color-violet-200: oklch(89.4% 0.057 293.283); + --color-violet-300: oklch(81.1% 0.111 293.571); + --color-violet-400: oklch(70.2% 0.183 293.541); + --color-violet-500: oklch(60.6% 0.25 292.717); + --color-violet-600: oklch(54.1% 0.281 293.009); + --color-violet-700: oklch(49.1% 0.27 292.581); + --color-violet-800: oklch(43.2% 0.232 292.759); + --color-violet-900: oklch(38% 0.189 293.745); + --color-violet-950: oklch(28.3% 0.141 291.089); + + --color-purple-50: oklch(97.7% 0.014 308.299); + --color-purple-100: oklch(94.6% 0.033 307.174); + --color-purple-200: oklch(90.2% 0.063 306.703); + --color-purple-300: oklch(82.7% 0.119 306.383); + --color-purple-400: oklch(71.4% 0.203 305.504); + --color-purple-500: oklch(62.7% 0.265 303.9); + --color-purple-600: oklch(55.8% 0.288 302.321); + --color-purple-700: oklch(49.6% 0.265 301.924); + --color-purple-800: oklch(43.8% 0.218 303.724); + --color-purple-900: oklch(38.1% 0.176 304.987); + --color-purple-950: oklch(29.1% 0.149 302.717); + + --color-fuchsia-50: oklch(97.7% 0.017 320.058); + --color-fuchsia-100: oklch(95.2% 0.037 318.852); + --color-fuchsia-200: oklch(90.3% 0.076 319.62); + --color-fuchsia-300: oklch(83.3% 0.145 321.434); + --color-fuchsia-400: oklch(74% 0.238 322.16); + --color-fuchsia-500: oklch(66.7% 0.295 322.15); + --color-fuchsia-600: oklch(59.1% 0.293 322.896); + --color-fuchsia-700: oklch(51.8% 0.253 323.949); + --color-fuchsia-800: oklch(45.2% 0.211 324.591); + --color-fuchsia-900: oklch(40.1% 0.17 325.612); + --color-fuchsia-950: oklch(29.3% 0.136 325.661); + + --color-pink-50: oklch(97.1% 0.014 343.198); + --color-pink-100: oklch(94.8% 0.028 342.258); + --color-pink-200: oklch(89.9% 0.061 343.231); + --color-pink-300: oklch(82.3% 0.12 346.018); + --color-pink-400: oklch(71.8% 0.202 349.761); + --color-pink-500: oklch(65.6% 0.241 354.308); + --color-pink-600: oklch(59.2% 0.249 0.584); + --color-pink-700: oklch(52.5% 0.223 3.958); + --color-pink-800: oklch(45.9% 0.187 3.815); + --color-pink-900: oklch(40.8% 0.153 2.432); + --color-pink-950: oklch(28.4% 0.109 3.907); + + --color-rose-50: oklch(96.9% 0.015 12.422); + --color-rose-100: oklch(94.1% 0.03 12.58); + --color-rose-200: oklch(89.2% 0.058 10.001); + --color-rose-300: oklch(81% 0.117 11.638); + --color-rose-400: oklch(71.2% 0.194 13.428); + --color-rose-500: oklch(64.5% 0.246 16.439); + --color-rose-600: oklch(58.6% 0.253 17.585); + --color-rose-700: oklch(51.4% 0.222 16.935); + --color-rose-800: oklch(45.5% 0.188 13.697); + --color-rose-900: oklch(41% 0.159 10.272); + --color-rose-950: oklch(27.1% 0.105 12.094); + + --color-slate-50: oklch(98.4% 0.003 247.858); + --color-slate-100: oklch(96.8% 0.007 247.896); + --color-slate-200: oklch(92.9% 0.013 255.508); + --color-slate-300: oklch(86.9% 0.022 252.894); + --color-slate-400: oklch(70.4% 0.04 256.788); + --color-slate-500: oklch(55.4% 0.046 257.417); + --color-slate-600: oklch(44.6% 0.043 257.281); + --color-slate-700: oklch(37.2% 0.044 257.287); + --color-slate-800: oklch(27.9% 0.041 260.031); + --color-slate-900: oklch(20.8% 0.042 265.755); + --color-slate-950: oklch(12.9% 0.042 264.695); + + --color-gray-50: oklch(98.5% 0.002 247.839); + --color-gray-100: oklch(96.7% 0.003 264.542); + --color-gray-200: oklch(92.8% 0.006 264.531); + --color-gray-300: oklch(87.2% 0.01 258.338); + --color-gray-400: oklch(70.7% 0.022 261.325); + --color-gray-500: oklch(55.1% 0.027 264.364); + --color-gray-600: oklch(44.6% 0.03 256.802); + --color-gray-700: oklch(37.3% 0.034 259.733); + --color-gray-800: oklch(27.8% 0.033 256.848); + --color-gray-900: oklch(21% 0.034 264.665); + --color-gray-950: oklch(13% 0.028 261.692); + + --color-zinc-50: oklch(98.5% 0 0); + --color-zinc-100: oklch(96.7% 0.001 286.375); + --color-zinc-200: oklch(92% 0.004 286.32); + --color-zinc-300: oklch(87.1% 0.006 286.286); + --color-zinc-400: oklch(70.5% 0.015 286.067); + --color-zinc-500: oklch(55.2% 0.016 285.938); + --color-zinc-600: oklch(44.2% 0.017 285.786); + --color-zinc-700: oklch(37% 0.013 285.805); + --color-zinc-800: oklch(27.4% 0.006 286.033); + --color-zinc-900: oklch(21% 0.006 285.885); + --color-zinc-950: oklch(14.1% 0.005 285.823); + + --color-neutral-50: oklch(98.5% 0 0); + --color-neutral-100: oklch(97% 0 0); + --color-neutral-200: oklch(92.2% 0 0); + --color-neutral-300: oklch(87% 0 0); + --color-neutral-400: oklch(70.8% 0 0); + --color-neutral-500: oklch(55.6% 0 0); + --color-neutral-600: oklch(43.9% 0 0); + --color-neutral-700: oklch(37.1% 0 0); + --color-neutral-800: oklch(26.9% 0 0); + --color-neutral-900: oklch(20.5% 0 0); + --color-neutral-950: oklch(14.5% 0 0); + + --color-stone-50: oklch(98.5% 0.001 106.423); + --color-stone-100: oklch(97% 0.001 106.424); + --color-stone-200: oklch(92.3% 0.003 48.717); + --color-stone-300: oklch(86.9% 0.005 56.366); + --color-stone-400: oklch(70.9% 0.01 56.259); + --color-stone-500: oklch(55.3% 0.013 58.071); + --color-stone-600: oklch(44.4% 0.011 73.639); + --color-stone-700: oklch(37.4% 0.01 67.558); + --color-stone-800: oklch(26.8% 0.007 34.298); + --color-stone-900: oklch(21.6% 0.006 56.043); + --color-stone-950: oklch(14.7% 0.004 49.25); + + --color-black: #000; + --color-white: #fff; + + --spacing: 0.25rem; + + --breakpoint-sm: 40rem; + --breakpoint-md: 48rem; + --breakpoint-lg: 64rem; + --breakpoint-xl: 80rem; + --breakpoint-2xl: 96rem; + + --container-3xs: 16rem; + --container-2xs: 18rem; + --container-xs: 20rem; + --container-sm: 24rem; + --container-md: 28rem; + --container-lg: 32rem; + --container-xl: 36rem; + --container-2xl: 42rem; + --container-3xl: 48rem; + --container-4xl: 56rem; + --container-5xl: 64rem; + --container-6xl: 72rem; + --container-7xl: 80rem; + + --text-xs: 0.75rem; + --text-xs--line-height: calc(1 / 0.75); + --text-sm: 0.875rem; + --text-sm--line-height: calc(1.25 / 0.875); + --text-base: 1rem; + --text-base--line-height: calc(1.5 / 1); + --text-lg: 1.125rem; + --text-lg--line-height: calc(1.75 / 1.125); + --text-xl: 1.25rem; + --text-xl--line-height: calc(1.75 / 1.25); + --text-2xl: 1.5rem; + --text-2xl--line-height: calc(2 / 1.5); + --text-3xl: 1.875rem; + --text-3xl--line-height: calc(2.25 / 1.875); + --text-4xl: 2.25rem; + --text-4xl--line-height: calc(2.5 / 2.25); + --text-5xl: 3rem; + --text-5xl--line-height: 1; + --text-6xl: 3.75rem; + --text-6xl--line-height: 1; + --text-7xl: 4.5rem; + --text-7xl--line-height: 1; + --text-8xl: 6rem; + --text-8xl--line-height: 1; + --text-9xl: 8rem; + --text-9xl--line-height: 1; + + --font-weight-thin: 100; + --font-weight-extralight: 200; + --font-weight-light: 300; + --font-weight-normal: 400; + --font-weight-medium: 500; + --font-weight-semibold: 600; + --font-weight-bold: 700; + --font-weight-extrabold: 800; + --font-weight-black: 900; + + --tracking-tighter: -0.05em; + --tracking-tight: -0.025em; + --tracking-normal: 0em; + --tracking-wide: 0.025em; + --tracking-wider: 0.05em; + --tracking-widest: 0.1em; + + --leading-tight: 1.25; + --leading-snug: 1.375; + --leading-normal: 1.5; + --leading-relaxed: 1.625; + --leading-loose: 2; + + --radius-xs: 0.125rem; + --radius-sm: 0.25rem; + --radius-md: 0.375rem; + --radius-lg: 0.5rem; + --radius-xl: 0.75rem; + --radius-2xl: 1rem; + --radius-3xl: 1.5rem; + --radius-4xl: 2rem; + + --shadow-2xs: 0 1px rgb(0 0 0 / 0.05); + --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); + --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25); + + --inset-shadow-2xs: inset 0 1px rgb(0 0 0 / 0.05); + --inset-shadow-xs: inset 0 1px 1px rgb(0 0 0 / 0.05); + --inset-shadow-sm: inset 0 2px 4px rgb(0 0 0 / 0.05); + + --drop-shadow-xs: 0 1px 1px rgb(0 0 0 / 0.05); + --drop-shadow-sm: 0 1px 2px rgb(0 0 0 / 0.15); + --drop-shadow-md: 0 3px 3px rgb(0 0 0 / 0.12); + --drop-shadow-lg: 0 4px 4px rgb(0 0 0 / 0.15); + --drop-shadow-xl: 0 9px 7px rgb(0 0 0 / 0.1); + --drop-shadow-2xl: 0 25px 25px rgb(0 0 0 / 0.15); + + --text-shadow-2xs: 0px 1px 0px rgb(0 0 0 / 0.15); + --text-shadow-xs: 0px 1px 1px rgb(0 0 0 / 0.2); + --text-shadow-sm: + 0px 1px 0px rgb(0 0 0 / 0.075), 0px 1px 1px rgb(0 0 0 / 0.075), 0px 2px 2px rgb(0 0 0 / 0.075); + --text-shadow-md: + 0px 1px 1px rgb(0 0 0 / 0.1), 0px 1px 2px rgb(0 0 0 / 0.1), 0px 2px 4px rgb(0 0 0 / 0.1); + --text-shadow-lg: + 0px 1px 2px rgb(0 0 0 / 0.1), 0px 3px 2px rgb(0 0 0 / 0.1), 0px 4px 8px rgb(0 0 0 / 0.1); + + --ease-in: cubic-bezier(0.4, 0, 1, 1); + --ease-out: cubic-bezier(0, 0, 0.2, 1); + --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1); + + --animate-spin: spin 1s linear infinite; + --animate-ping: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; + --animate-pulse: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; + --animate-bounce: bounce 1s infinite; + + @keyframes spin { + to { + transform: rotate(360deg); + } + } + + @keyframes ping { + 75%, + 100% { + transform: scale(2); + opacity: 0; + } + } + + @keyframes pulse { + 50% { + opacity: 0.5; + } + } + + @keyframes bounce { + 0%, + 100% { + transform: translateY(-25%); + animation-timing-function: cubic-bezier(0.8, 0, 1, 1); + } + + 50% { + transform: none; + animation-timing-function: cubic-bezier(0, 0, 0.2, 1); + } + } + + --blur-xs: 4px; + --blur-sm: 8px; + --blur-md: 12px; + --blur-lg: 16px; + --blur-xl: 24px; + --blur-2xl: 40px; + --blur-3xl: 64px; + + --perspective-dramatic: 100px; + --perspective-near: 300px; + --perspective-normal: 500px; + --perspective-midrange: 800px; + --perspective-distant: 1200px; + + --aspect-video: 16 / 9; + + --default-transition-duration: 150ms; + --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + --default-font-family: --theme(--font-sans, initial); + --default-font-feature-settings: --theme(--font-sans--font-feature-settings, initial); + --default-font-variation-settings: --theme(--font-sans--font-variation-settings, initial); + --default-mono-font-family: --theme(--font-mono, initial); + --default-mono-font-feature-settings: --theme(--font-mono--font-feature-settings, initial); + --default-mono-font-variation-settings: --theme(--font-mono--font-variation-settings, initial); +} + +/* Deprecated */ +@theme default inline reference { + --blur: 8px; + --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); + --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); + --drop-shadow: 0 1px 2px rgb(0 0 0 / 0.1), 0 1px 1px rgb(0 0 0 / 0.06); + --radius: 0.25rem; + --max-width-prose: 65ch; +} diff --git a/node_modules/tailwindcss/utilities.css b/node_modules/tailwindcss/utilities.css new file mode 100644 index 0000000..65dd5f6 --- /dev/null +++ b/node_modules/tailwindcss/utilities.css @@ -0,0 +1 @@ +@tailwind utilities; diff --git a/package-lock.json b/package-lock.json index cd71fde..2aae76b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,3197 +1,41 @@ { "name": "vrclipboard-ime-gui", - "version": "1.11.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "vrclipboard-ime-gui", - "version": "1.11.0", "dependencies": { - "@tauri-apps/api": "^2.0.0-rc.0", - "@tauri-apps/plugin-process": "^2.2.0", - "@tauri-apps/plugin-shell": "^2.0.0", - "@tauri-apps/plugin-updater": "^2.6.0", - "react": "^18.2.0", - "react-dom": "^18.2.0" + "@tauri-apps/plugin-opener": "^2.2.7" }, "devDependencies": { - "@tauri-apps/cli": "^2.0.0-rc.18", - "@types/react": "^18.2.15", - "@types/react-dom": "^18.2.7", - "@vitejs/plugin-react": "^4.2.1", - "autoprefixer": "^10.4.19", - "lucide-react": "^0.397.0", - "postcss": "^8.4.38", - "tailwindcss": "^3.4.4", - "typescript": "^5.2.2", - "vite": "^5.3.1" + "tailwindcss": "^4.1.8" } }, - "node_modules/@alloc/quick-lru": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", - "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.7.tgz", - "integrity": "sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==", - "dev": true, - "dependencies": { - "@babel/highlight": "^7.24.7", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.7.tgz", - "integrity": "sha512-qJzAIcv03PyaWqxRgO4mSU3lihncDT296vnyuE2O8uA4w3UHWI4S3hgeZd1L8W1Bft40w9JxJ2b412iDUFFRhw==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.7.tgz", - "integrity": "sha512-nykK+LEK86ahTkX/3TgauT0ikKoNCfKHEaZYTUVupJdTLzGNvrblu4u6fa7DhZONAltdf8e662t/abY8idrd/g==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-compilation-targets": "^7.24.7", - "@babel/helper-module-transforms": "^7.24.7", - "@babel/helpers": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/template": "^7.24.7", - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/generator": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.7.tgz", - "integrity": "sha512-oipXieGC3i45Y1A41t4tAqpnEZWgB/lC6Ehh6+rOviR5XWpTtMmLN+fGjz9vOiNRt0p6RtO6DtD0pdU3vpqdSA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.24.7.tgz", - "integrity": "sha512-ctSdRHBi20qWOfy27RUb4Fhp07KSJ3sXcuSvTrXrc4aG8NSYDo1ici3Vhg9bg69y5bj0Mr1lh0aeEgTvc12rMg==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.24.7", - "@babel/helper-validator-option": "^7.24.7", - "browserslist": "^4.22.2", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.24.7.tgz", - "integrity": "sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.24.7.tgz", - "integrity": "sha512-FyoJTsj/PEUWu1/TYRiXTIHc8lbw+TDYkZuoE43opPS5TrI7MyONBE1oNvfguEXAD9yhQRrVBnXdXzSLQl9XnA==", - "dev": true, - "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.24.7.tgz", - "integrity": "sha512-MJJwhkoGy5c4ehfoRyrJ/owKeMl19U54h27YYftT0o2teQ3FJ3nQUf/I3LlJsX4l3qlw7WRXUmiyajvHXoTubQ==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz", - "integrity": "sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.24.7.tgz", - "integrity": "sha512-1fuJEwIrp+97rM4RWdO+qrRsZlAeL1lQJoPqtCYWv0NL115XM93hIH4CSRln2w52SqvmY5hqdtauB6QFCDiZNQ==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-module-imports": "^7.24.7", - "@babel/helper-simple-access": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.7.tgz", - "integrity": "sha512-Rq76wjt7yz9AAc1KnlRKNAi/dMSVWgDRx43FHoJEbcYU6xOWaE2dVPwcdTukJrjxS65GITyfbvEYHvkirZ6uEg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-simple-access": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz", - "integrity": "sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==", - "dev": true, - "dependencies": { - "@babel/traverse": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.7.tgz", - "integrity": "sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.7.tgz", - "integrity": "sha512-7MbVt6xrwFQbunH2DNQsAP5sTGxfqQtErvBIvIMi6EQnbgUOuVYanvREcmFrOPhoXBrTtjhhP+lW+o5UfK+tDg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz", - "integrity": "sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.24.7.tgz", - "integrity": "sha512-yy1/KvjhV/ZCL+SM7hBrvnZJ3ZuT9OuZgIJAGpPEToANvc3iM6iDvBnRjtElWibHU6n8/LPR/EjX9EtIEYO3pw==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.7.tgz", - "integrity": "sha512-NlmJJtvcw72yRJRcnCmGvSi+3jDEg8qFu3z0AFoymmzLx5ERVWyzd9kVXr7Th9/8yIJi2Zc6av4Tqz3wFs8QWg==", - "dev": true, - "dependencies": { - "@babel/template": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/highlight": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.7.tgz", - "integrity": "sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==", - "dev": true, - "dependencies": { - "@babel/helper-validator-identifier": "^7.24.7", - "chalk": "^2.4.2", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.7.tgz", - "integrity": "sha512-9uUYRm6OqQrCqQdG1iCBwBPZgN8ciDBro2nIOFaiRz1/BCxaI7CNvQbDHvsArAC7Tw9Hda/B3U+6ui9u4HWXPw==", - "dev": true, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-self": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.7.tgz", - "integrity": "sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-source": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.7.tgz", - "integrity": "sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/template": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.7.tgz", - "integrity": "sha512-jYqfPrU9JTF0PmPy1tLYHW4Mp4KlgxJD9l2nP9fD6yT/ICi554DmrWBAEYpIelzjHf1msDP3PxJIRt/nFNfBig==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.7.tgz", - "integrity": "sha512-yb65Ed5S/QAcewNPh0nZczy9JdYXkkAbIsEo+P7BE7yO3txAY30Y/oPa3QkQ5It3xVG2kpKMg9MsdxZaO31uKA==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.24.7", - "@babel/generator": "^7.24.7", - "@babel/helper-environment-visitor": "^7.24.7", - "@babel/helper-function-name": "^7.24.7", - "@babel/helper-hoist-variables": "^7.24.7", - "@babel/helper-split-export-declaration": "^7.24.7", - "@babel/parser": "^7.24.7", - "@babel/types": "^7.24.7", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.24.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.7.tgz", - "integrity": "sha512-XEFXSlxiG5td2EJRe8vOmRbaXVgfcBlszKujvVmWIK/UpywWljQCfzAv3RQCGujWQ1RD4YYWEAqDXfuJiy8f5Q==", - "dev": true, - "dependencies": { - "@babel/helper-string-parser": "^7.24.7", - "@babel/helper-validator-identifier": "^7.24.7", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", - "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", - "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", - "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", - "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", - "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", - "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", - "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", - "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", - "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", - "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", - "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", - "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", - "cpu": [ - "loong64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", - "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", - "cpu": [ - "mips64el" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", - "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", - "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", - "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", - "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", - "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", - "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", - "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", - "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", - "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", - "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@isaacs/cliui": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", - "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", - "dev": true, - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", - "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", - "dev": true, - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "dev": true, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", - "dev": true - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", - "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.22.5.tgz", - "integrity": "sha512-SU5cvamg0Eyu/F+kLeMXS7GoahL+OoizlclVFX3l5Ql6yNlywJJ0OuqTzUx0v+aHhPHEB/56CT06GQrRrGNYww==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.22.5.tgz", - "integrity": "sha512-S4pit5BP6E5R5C8S6tgU/drvgjtYW76FBuG6+ibG3tMvlD1h9LHVF9KmlmaUBQ8Obou7hEyS+0w+IR/VtxwNMQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-darwin-arm64": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.22.5.tgz", - "integrity": "sha512-250ZGg4ipTL0TGvLlfACkIxS9+KLtIbn7BCZjsZj88zSg2Lvu3Xdw6dhAhfe/FjjXPVNCtcSp+WZjVsD3a/Zlw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.22.5.tgz", - "integrity": "sha512-D8brJEFg5D+QxFcW6jYANu+Rr9SlKtTenmsX5hOSzNYVrK5oLAEMTUgKWYJP+wdKyCdeSwnapLsn+OVRFycuQg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.22.5.tgz", - "integrity": "sha512-PNqXYmdNFyWNg0ma5LdY8wP+eQfdvyaBAojAXgO7/gs0Q/6TQJVXAXe8gwW9URjbS0YAammur0fynYGiWsKlXw==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.22.5.tgz", - "integrity": "sha512-kSSCZOKz3HqlrEuwKd9TYv7vxPYD77vHSUvM2y0YaTGnFc8AdI5TTQRrM1yIp3tXCKrSL9A7JLoILjtad5t8pQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.22.5.tgz", - "integrity": "sha512-oTXQeJHRbOnwRnRffb6bmqmUugz0glXaPyspp4gbQOPVApdpRrY/j7KP3lr7M8kTfQTyrBUzFjj5EuHAhqH4/w==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.22.5.tgz", - "integrity": "sha512-qnOTIIs6tIGFKCHdhYitgC2XQ2X25InIbZFor5wh+mALH84qnFHvc+vmWUpyX97B0hNvwNUL4B+MB8vJvH65Fw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.22.5.tgz", - "integrity": "sha512-TMYu+DUdNlgBXING13rHSfUc3Ky5nLPbWs4bFnT+R6Vu3OvXkTkixvvBKk8uO4MT5Ab6lC3U7x8S8El2q5o56w==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.22.5.tgz", - "integrity": "sha512-PTQq1Kz22ZRvuhr3uURH+U/Q/a0pbxJoICGSprNLAoBEkyD3Sh9qP5I0Asn0y0wejXQBbsVMRZRxlbGFD9OK4A==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.22.5.tgz", - "integrity": "sha512-bR5nCojtpuMss6TDEmf/jnBnzlo+6n1UhgwqUvRoe4VIotC7FG1IKkyJbwsT7JDsF2jxR+NTnuOwiGv0hLyDoQ==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.22.5.tgz", - "integrity": "sha512-N0jPPhHjGShcB9/XXZQWuWBKZQnC1F36Ce3sDqWpujsGjDz/CQtOL9LgTrJ+rJC8MJeesMWrMWVLKKNR/tMOCA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.22.5.tgz", - "integrity": "sha512-uBa2e28ohzNNwjr6Uxm4XyaA1M/8aTgfF2T7UIlElLaeXkgpmIJ2EitVNQxjO9xLLLy60YqAgKn/AqSpCUkE9g==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.22.5.tgz", - "integrity": "sha512-RXT8S1HP8AFN/Kr3tg4fuYrNxZ/pZf1HemC5Tsddc6HzgGnJm0+Lh5rAHJkDuW3StI0ynNXukidROMXYl6ew8w==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.22.5.tgz", - "integrity": "sha512-ElTYOh50InL8kzyUD6XsnPit7jYCKrphmddKAe1/Ytt74apOxDq5YEcbsiKs0fR3vff3jEneMM+3I7jbqaMyBg==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.22.5.tgz", - "integrity": "sha512-+lvL/4mQxSV8MukpkKyyvfwhH266COcWlXE/1qxwN08ajovta3459zrjLghYMgDerlzNwLAcFpvU+WWE5y6nAQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ] - }, "node_modules/@tauri-apps/api": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.0.1.tgz", - "integrity": "sha512-eoQWT+Tq1qSwQpHV+nw1eNYe5B/nm1PoRjQCRiEOS12I1b+X4PUcREfXVX8dPcBT6GrzWGDtaecY0+1p0Rfqlw==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.5.0.tgz", + "integrity": "sha512-Ldux4ip+HGAcPUmuLT8EIkk6yafl5vK0P0c0byzAKzxJh7vxelVtdPONjfgTm96PbN24yjZNESY8CKo8qniluA==", + "license": "Apache-2.0 OR MIT", "funding": { "type": "opencollective", "url": "https://opencollective.com/tauri" } }, - "node_modules/@tauri-apps/cli": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli/-/cli-2.0.0-rc.18.tgz", - "integrity": "sha512-43PjSEISHI3uH2jyR7QlEJUv1yQYlCOvm5eEdadhHIooV5Dqjs6zkddwEJuHYRpSLI/IfiQ8VPBYrw/GfyvhCA==", - "dev": true, - "bin": { - "tauri": "tauri.js" - }, - "engines": { - "node": ">= 10" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/tauri" - }, - "optionalDependencies": { - "@tauri-apps/cli-darwin-arm64": "2.0.0-rc.18", - "@tauri-apps/cli-darwin-x64": "2.0.0-rc.18", - "@tauri-apps/cli-linux-arm-gnueabihf": "2.0.0-rc.18", - "@tauri-apps/cli-linux-arm64-gnu": "2.0.0-rc.18", - "@tauri-apps/cli-linux-arm64-musl": "2.0.0-rc.18", - "@tauri-apps/cli-linux-x64-gnu": "2.0.0-rc.18", - "@tauri-apps/cli-linux-x64-musl": "2.0.0-rc.18", - "@tauri-apps/cli-win32-arm64-msvc": "2.0.0-rc.18", - "@tauri-apps/cli-win32-ia32-msvc": "2.0.0-rc.18", - "@tauri-apps/cli-win32-x64-msvc": "2.0.0-rc.18" - } - }, - "node_modules/@tauri-apps/cli-darwin-arm64": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-arm64/-/cli-darwin-arm64-2.0.0-rc.18.tgz", - "integrity": "sha512-L2/VQ4q1pZyhqOifarVDJf/+JabU6DSUMj6979wXrUOOxmyfLCZaw5qGGsbirYOfxWMo+qcXEFRF411YIv9qWw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-darwin-x64": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-darwin-x64/-/cli-darwin-x64-2.0.0-rc.18.tgz", - "integrity": "sha512-ri0NrRAh2CqejoKym67m9Devpqppnn4SrwWnuqV68oHXan3ibn2CeY+g3ygkb6Ch0v5ZcbxJEtop5fZwUTFH4w==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-arm-gnueabihf": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm-gnueabihf/-/cli-linux-arm-gnueabihf-2.0.0-rc.18.tgz", - "integrity": "sha512-+dDZQIHXufqq3WVrKycudVeJa8xfRzIY2XHSYunWS5RMRx1PrcvLbZLBcm3BMtwuY9pwbzrpDHL4K/1+Maj4JQ==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-arm64-gnu": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-gnu/-/cli-linux-arm64-gnu-2.0.0-rc.18.tgz", - "integrity": "sha512-pti3FmMAJKArbr8FyoU8eFbcRHRcFRaD16crjNfXfGFGUGNXeMcrAAZptDpGZ9fPfMYBQYzUN/uKqHvrlrYFIw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-arm64-musl": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.0.0-rc.18.tgz", - "integrity": "sha512-1e+h543bXRnLLhUwhglnnH6eN4dgtbxKS48oHsBCpLEqLNrovHTHEd1xSZgUAEOh9J9hpIh6Bme7loCwOps9ZQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-x64-gnu": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-gnu/-/cli-linux-x64-gnu-2.0.0-rc.18.tgz", - "integrity": "sha512-5lwBuY06s5J1iCOZq+hM6spBhaGejkh8zn8HdVjnL0mqZ+cH/qbC1Uss6HO/gC1Q53JQFoYeam2P2/8UuNjlHQ==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-linux-x64-musl": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-linux-x64-musl/-/cli-linux-x64-musl-2.0.0-rc.18.tgz", - "integrity": "sha512-jtJ1EP6GhW258MKujampDbPWX+El26m8yGBzEcZxurrhFvN8d3QHgle4eT/cgqlVT+AZ9DVrhDwTfXilGjERZA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-win32-arm64-msvc": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-arm64-msvc/-/cli-win32-arm64-msvc-2.0.0-rc.18.tgz", - "integrity": "sha512-E9PSjWwvUnhnW/wjXti0UQgXDYLTUBKWtT2yOS2dXLspmvh1vwdRgZn/AjhjMM2HwZzhBW94Qys06mQAz6z2vg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-win32-ia32-msvc": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-ia32-msvc/-/cli-win32-ia32-msvc-2.0.0-rc.18.tgz", - "integrity": "sha512-I+r88I/Dyqex7oV1NOtW3kxYoRegjxtQrQLILGsn6xcirTERnX0pPl1GYW5ooTxvs/H+qt4tuW5iL8Fp1lpmuQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/cli-win32-x64-msvc": { - "version": "2.0.0-rc.18", - "resolved": "https://registry.npmjs.org/@tauri-apps/cli-win32-x64-msvc/-/cli-win32-x64-msvc-2.0.0-rc.18.tgz", - "integrity": "sha512-IEl0dDc10ln1rt2SGoNxKiYJIDS/fBsS1hTKT4cfZeeKCgHOqMqpdGq25RaVmkkk0UhW/9WeyjxIyFGO3ll4TA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">= 10" - } - }, - "node_modules/@tauri-apps/plugin-process": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-process/-/plugin-process-2.2.0.tgz", - "integrity": "sha512-uypN2Crmyop9z+KRJr3zl71OyVFgTuvHFjsJ0UxxQ/J5212jVa5w4nPEYjIewcn8bUEXacRebwE6F7owgrbhSw==", + "node_modules/@tauri-apps/plugin-opener": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-opener/-/plugin-opener-2.2.7.tgz", + "integrity": "sha512-uduEyvOdjpPOEeDRrhwlCspG/f9EQalHumWBtLBnp3fRp++fKGLqDOyUhSIn7PzX45b/rKep//ZQSAQoIxobLA==", "license": "MIT OR Apache-2.0", "dependencies": { "@tauri-apps/api": "^2.0.0" } }, - "node_modules/@tauri-apps/plugin-shell": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-shell/-/plugin-shell-2.0.0.tgz", - "integrity": "sha512-OpW2+ycgJLrEoZityWeWYk+6ZWP9VyiAfbO+N/O8VfLkqyOym8kXh7odKDfINx9RAotkSGBtQM4abyKfJDkcUg==", - "dependencies": { - "@tauri-apps/api": "^2.0.0" - } - }, - "node_modules/@tauri-apps/plugin-updater": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@tauri-apps/plugin-updater/-/plugin-updater-2.6.0.tgz", - "integrity": "sha512-j74RUolLIhQDQwrff6R28xIewYVXME1gFU+d+4LYN1dLRzLD+ySa7VHqzyWYxWEvm+TPZ7lkUxa5a9uH9Ist3A==", - "license": "MIT OR Apache-2.0", - "dependencies": { - "@tauri-apps/api": "^2.0.0" - } - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.20.6", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", - "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.7" - } - }, - "node_modules/@types/estree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", - "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", - "dev": true - }, - "node_modules/@types/prop-types": { - "version": "15.7.12", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", - "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==", - "dev": true - }, - "node_modules/@types/react": { - "version": "18.3.3", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz", - "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==", - "dev": true, - "dependencies": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@types/react-dom": { - "version": "18.3.0", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", - "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", - "dev": true, - "dependencies": { - "@types/react": "*" - } - }, - "node_modules/@vitejs/plugin-react": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.1.tgz", - "integrity": "sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.24.5", - "@babel/plugin-transform-react-jsx-self": "^7.24.5", - "@babel/plugin-transform-react-jsx-source": "^7.24.1", - "@types/babel__core": "^7.20.5", - "react-refresh": "^0.14.2" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "peerDependencies": { - "vite": "^4.2.0 || ^5.0.0" - } - }, - "node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", - "dev": true - }, - "node_modules/autoprefixer": { - "version": "10.4.19", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.19.tgz", - "integrity": "sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "browserslist": "^4.23.0", - "caniuse-lite": "^1.0.30001599", - "fraction.js": "^4.3.7", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.23.1", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.1.tgz", - "integrity": "sha512-TUfofFo/KsK/bWZ9TWQ5O26tsWW4Uhmt8IYklbnUa70udB6P2wA7w7o4PY4muaEPBQaAX+CEnmmIA41NVHtPVw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001629", - "electron-to-chromium": "^1.4.796", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.16" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/camelcase-css": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", - "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001638", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001638.tgz", - "integrity": "sha512-5SuJUJ7cZnhPpeLHaH0c/HPAnAHZvS6ElWyHK9GSIbVOQABLzowiI2pjmpvZ1WEbkyz46iFd4UXlOHR5SqgfMQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dev": true, - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true - }, - "node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", - "dev": true - }, - "node_modules/debug": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.5.tgz", - "integrity": "sha512-pt0bNEmneDIvdL1Xsd9oDQ/wrQRkXDT4AUWlNZNPKvW5x/jyO9VFXkJUP07vQ2upmw5PlaITaPKc31jK13V+jg==", - "dev": true, - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/didyoumean": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", - "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", - "dev": true - }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/electron-to-chromium": { - "version": "1.4.812", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.812.tgz", - "integrity": "sha512-7L8fC2Ey/b6SePDFKR2zHAy4mbdp1/38Yk5TsARO66W3hC5KEaeKMMHoxwtuH+jcu2AYLSn9QX04i95t6Fl1Hg==", - "dev": true - }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/esbuild": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.5", - "@esbuild/android-arm": "0.21.5", - "@esbuild/android-arm64": "0.21.5", - "@esbuild/android-x64": "0.21.5", - "@esbuild/darwin-arm64": "0.21.5", - "@esbuild/darwin-x64": "0.21.5", - "@esbuild/freebsd-arm64": "0.21.5", - "@esbuild/freebsd-x64": "0.21.5", - "@esbuild/linux-arm": "0.21.5", - "@esbuild/linux-arm64": "0.21.5", - "@esbuild/linux-ia32": "0.21.5", - "@esbuild/linux-loong64": "0.21.5", - "@esbuild/linux-mips64el": "0.21.5", - "@esbuild/linux-ppc64": "0.21.5", - "@esbuild/linux-riscv64": "0.21.5", - "@esbuild/linux-s390x": "0.21.5", - "@esbuild/linux-x64": "0.21.5", - "@esbuild/netbsd-x64": "0.21.5", - "@esbuild/openbsd-x64": "0.21.5", - "@esbuild/sunos-x64": "0.21.5", - "@esbuild/win32-arm64": "0.21.5", - "@esbuild/win32-ia32": "0.21.5", - "@esbuild/win32-x64": "0.21.5" - } - }, - "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dev": true, - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fastq": { - "version": "1.17.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", - "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/foreground-child": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.2.1.tgz", - "integrity": "sha512-PXUUyLqrR2XCWICfv6ukppP96sdFwWbNEnfEMt7jNsISjMsvaLNinAHNDYyvkyU+SZG2BTSbT5NjG+vZslfGTA==", - "dev": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "dev": true, - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/glob": { - "version": "10.4.2", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.2.tgz", - "integrity": "sha512-GwMlUF6PkPo3Gk21UxkCohOv0PLcIXVtKyLlpEI28R/cO/4eNOdmLk3CMW1wROV/WR/EsZOWAfBbBOqYvs88/w==", - "dev": true, - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-core-module": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.14.0.tgz", - "integrity": "sha512-a5dFJih5ZLYlRtDc0dZWP7RiKr6xIKzmn/oAYCDvdLThadVgyJwlaoQPmRtMSpz+rk0OGAgIu+TcM9HUF0fk1A==", - "dev": true, - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/jackspeak": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0.tgz", - "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw==", - "dev": true, - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/jiti": { - "version": "1.21.6", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", - "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", - "dev": true, - "bin": { - "jiti": "bin/jiti.js" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/lucide-react": { - "version": "0.397.0", - "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.397.0.tgz", - "integrity": "sha512-rUcbRY5jFP/4za/OJvaRUUmdPsPb940Tw9zE1ehrRZmr9JnkDcW8OV3POR3XfEAAMDkssiTc5IWBFv8Y//pkDQ==", - "dev": true, - "peerDependencies": { - "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0" - } - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/minipass": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", - "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", - "dev": true, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "dev": true - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/object-hash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", - "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/package-json-from-dist": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.0.tgz", - "integrity": "sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==", - "dev": true - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-scurry": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", - "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", - "dev": true, - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/path-scurry/node_modules/lru-cache": { - "version": "10.2.2", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.2.tgz", - "integrity": "sha512-9hp3Vp2/hFQUiIwKo8XCeFVnrg8Pk3TYNPIR7tJADKi5YfcF7vEaK7avFHTlSy3kOKYaJQaalfEo6YuXdceBOQ==", - "dev": true, - "engines": { - "node": "14 || >=16.14" - } - }, - "node_modules/picocolors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", - "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", - "dev": true - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/postcss": { - "version": "8.4.47", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", - "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.1.0", - "source-map-js": "^1.2.1" - }, - "engines": { - "node": "^10 || ^12 || >=14" - } - }, - "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", - "dev": true, - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "postcss": "^8.0.0" - } - }, - "node_modules/postcss-js": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", - "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", - "dev": true, - "dependencies": { - "camelcase-css": "^2.0.1" - }, - "engines": { - "node": "^12 || ^14 || >= 16" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.4.21" - } - }, - "node_modules/postcss-load-config": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", - "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "lilconfig": "^3.0.0", - "yaml": "^2.3.4" - }, - "engines": { - "node": ">= 14" - }, - "peerDependencies": { - "postcss": ">=8.0.9", - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "postcss": { - "optional": true - }, - "ts-node": { - "optional": true - } - } - }, - "node_modules/postcss-load-config/node_modules/lilconfig": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.2.tgz", - "integrity": "sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antonk52" - } - }, - "node_modules/postcss-nested": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", - "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", - "dev": true, - "dependencies": { - "postcss-selector-parser": "^6.0.11" - }, - "engines": { - "node": ">=12.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - "peerDependencies": { - "postcss": "^8.2.14" - } - }, - "node_modules/postcss-selector-parser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.0.tgz", - "integrity": "sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==", - "dev": true, - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/react": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", - "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-dom": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", - "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", - "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.2" - }, - "peerDependencies": { - "react": "^18.3.1" - } - }, - "node_modules/react-refresh": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", - "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", - "dev": true, - "dependencies": { - "pify": "^2.3.0" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", - "dev": true, - "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", - "dev": true, - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rollup": { - "version": "4.22.5", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.22.5.tgz", - "integrity": "sha512-WoinX7GeQOFMGznEcWA1WrTQCd/tpEbMkc3nuMs9BT0CPjMdSjPMTVClwWd4pgSQwJdP65SK9mTCNvItlr5o7w==", - "dev": true, - "dependencies": { - "@types/estree": "1.0.6" - }, - "bin": { - "rollup": "dist/bin/rollup" - }, - "engines": { - "node": ">=18.0.0", - "npm": ">=8.0.0" - }, - "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.22.5", - "@rollup/rollup-android-arm64": "4.22.5", - "@rollup/rollup-darwin-arm64": "4.22.5", - "@rollup/rollup-darwin-x64": "4.22.5", - "@rollup/rollup-linux-arm-gnueabihf": "4.22.5", - "@rollup/rollup-linux-arm-musleabihf": "4.22.5", - "@rollup/rollup-linux-arm64-gnu": "4.22.5", - "@rollup/rollup-linux-arm64-musl": "4.22.5", - "@rollup/rollup-linux-powerpc64le-gnu": "4.22.5", - "@rollup/rollup-linux-riscv64-gnu": "4.22.5", - "@rollup/rollup-linux-s390x-gnu": "4.22.5", - "@rollup/rollup-linux-x64-gnu": "4.22.5", - "@rollup/rollup-linux-x64-musl": "4.22.5", - "@rollup/rollup-win32-arm64-msvc": "4.22.5", - "@rollup/rollup-win32-ia32-msvc": "4.22.5", - "@rollup/rollup-win32-x64-msvc": "4.22.5", - "fsevents": "~2.3.2" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/scheduler": { - "version": "0.23.2", - "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", - "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", - "dependencies": { - "loose-envify": "^1.1.0" - } - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/source-map-js": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", - "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/string-width-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/sucrase": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", - "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", - "dev": true, - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.2", - "commander": "^4.0.0", - "glob": "^10.3.10", - "lines-and-columns": "^1.1.6", - "mz": "^2.7.0", - "pirates": "^4.0.1", - "ts-interface-checker": "^0.1.9" - }, - "bin": { - "sucrase": "bin/sucrase", - "sucrase-node": "bin/sucrase-node" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/tailwindcss": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.4.tgz", - "integrity": "sha512-ZoyXOdJjISB7/BcLTR6SEsLgKtDStYyYZVLsUtWChO4Ps20CBad7lfJKVDiejocV4ME1hLmyY0WJE3hSDcmQ2A==", + "version": "4.1.8", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.8.tgz", + "integrity": "sha512-kjeW8gjdxasbmFKpVGrGd5T4i40mV5J2Rasw48QARfYeQ8YS9x02ON9SFWax3Qf616rt4Cp3nVNIj6Hd1mP3og==", "dev": true, - "dependencies": { - "@alloc/quick-lru": "^5.2.0", - "arg": "^5.0.2", - "chokidar": "^3.5.3", - "didyoumean": "^1.2.2", - "dlv": "^1.1.3", - "fast-glob": "^3.3.0", - "glob-parent": "^6.0.2", - "is-glob": "^4.0.3", - "jiti": "^1.21.0", - "lilconfig": "^2.1.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-hash": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.23", - "postcss-import": "^15.1.0", - "postcss-js": "^4.0.1", - "postcss-load-config": "^4.0.1", - "postcss-nested": "^6.0.1", - "postcss-selector-parser": "^6.0.11", - "resolve": "^1.22.2", - "sucrase": "^3.32.0" - }, - "bin": { - "tailwind": "lib/cli.js", - "tailwindcss": "lib/cli.js" - }, - "engines": { - "node": ">=14.0.0" - } - }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dev": true, - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "dev": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/ts-interface-checker": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", - "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", - "dev": true - }, - "node_modules/typescript": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.2.tgz", - "integrity": "sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.0.16", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.16.tgz", - "integrity": "sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "escalade": "^3.1.2", - "picocolors": "^1.0.1" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true - }, - "node_modules/vite": { - "version": "5.4.8", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.8.tgz", - "integrity": "sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==", - "dev": true, - "dependencies": { - "esbuild": "^0.21.3", - "postcss": "^8.4.43", - "rollup": "^4.20.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - }, - "peerDependencies": { - "@types/node": "^18.0.0 || >=20.0.0", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "sass-embedded": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" - }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { - "optional": true - } - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/wrap-ansi": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", - "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", - "dev": true, - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true - }, - "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true - }, - "node_modules/wrap-ansi-cjs/node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "node_modules/yaml": { - "version": "2.4.5", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.4.5.tgz", - "integrity": "sha512-aBx2bnqDzVOyNKfsysjA2ms5ZlnjSAW2eG3/L5G/CSujfjLJTJsEw1bGw8kCf04KodQWk1pxlGnZ56CRxiawmg==", - "dev": true, - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14" - } + "license": "MIT" } } } diff --git a/package.json b/package.json index 0433d55..52bc4f2 100644 --- a/package.json +++ b/package.json @@ -1,32 +1,8 @@ { - "name": "vrclipboard-ime-gui", - "private": true, - "version": "1.12.0", - "type": "module", - "scripts": { - "dev": "vite", - "build": "tsc && vite build", - "preview": "vite preview", - "tauri": "tauri" + "devDependencies": { + "tailwindcss": "^4.1.8" }, "dependencies": { - "@tauri-apps/api": "^2.0.0-rc.0", - "@tauri-apps/plugin-process": "^2.2.0", - "@tauri-apps/plugin-shell": "^2.0.0", - "@tauri-apps/plugin-updater": "^2.6.0", - "react": "^18.2.0", - "react-dom": "^18.2.0" - }, - "devDependencies": { - "@tauri-apps/cli": "^2.0.0-rc.18", - "@types/react": "^18.2.15", - "@types/react-dom": "^18.2.7", - "@vitejs/plugin-react": "^4.2.1", - "autoprefixer": "^10.4.19", - "lucide-react": "^0.397.0", - "postcss": "^8.4.38", - "tailwindcss": "^3.4.4", - "typescript": "^5.2.2", - "vite": "^5.3.1" + "@tauri-apps/plugin-opener": "^2.2.7" } -} \ No newline at end of file +} diff --git a/pigeon.png b/pigeon.png deleted file mode 100644 index 11989f6..0000000 Binary files a/pigeon.png and /dev/null differ diff --git a/postcss.config.js b/postcss.config.js deleted file mode 100644 index 2e7af2b..0000000 --- a/postcss.config.js +++ /dev/null @@ -1,6 +0,0 @@ -export default { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - }, -} diff --git a/public/leptos.svg b/public/leptos.svg new file mode 100644 index 0000000..7fc2154 --- /dev/null +++ b/public/leptos.svg @@ -0,0 +1,64 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/public/vite.svg b/public/vite.svg deleted file mode 100644 index e7b8dfb..0000000 --- a/public/vite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/public/windows_settings.png b/public/windows_settings.png deleted file mode 100644 index 9ce4c03..0000000 Binary files a/public/windows_settings.png and /dev/null differ diff --git a/release.json b/release.json deleted file mode 100644 index 03162ca..0000000 --- a/release.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "url": "https://r2-vrime.mii.dev/releases/vrclipboard-ime-gui_1.11.1_x64_ja-JP.msi.zip", - "version": "1.11.1", - "notes": "UIの変更, TSF再変換機能の正式リリース, アップデート機能の修正", - "pub_date": "2025-03-11T19:14:02+09:00", - "signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVTTStkVlpUR0NpcVlBbURsaEpHUmtuS3N5dUJzM0RaMnBCK2F4K1J5dFJYR0NoaWlvRUtJK203NEd6aDFXZjE5MFF6MUZqZDBwd0pVdWFpOW14ZDJaTDJKL0d4dGd0K1FrPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNzQxNjk2MTEwCWZpbGU6dnJjbGlwYm9hcmQtaW1lLWd1aV8xLjExLjFfeDY0X2phLUpQLm1zaS56aXAKTmljczR2U0ZmSlZwbUZ2eEFuSmNUZEJ0L0ZHeSs0SmlRUjRRMU95OWpLTWZ5QktLSWRZdDgvMkpEV2hDQ00wSytWYm9WSHhpQm5naWlUQTBhQkhKRGc9PQo=" -} diff --git a/src-tauri/2.0.0-rc b/src-tauri/2.0.0-rc deleted file mode 100644 index ee72c95..0000000 --- a/src-tauri/2.0.0-rc +++ /dev/null @@ -1,12 +0,0 @@ - -changed 1 package, and audited 194 packages in 3s - -38 packages are looking for funding - run `npm fund` for details - -4 vulnerabilities (3 moderate, 1 high) - -To address all issues, run: - npm audit fix - -Run `npm audit` for details. diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock deleted file mode 100644 index 8ef9b1d..0000000 --- a/src-tauri/Cargo.lock +++ /dev/null @@ -1,6185 +0,0 @@ -# This file is automatically @generated by Cargo. -# It is not intended for manual editing. -version = 4 - -[[package]] -name = "addr2line" -version = "0.24.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1" -dependencies = [ - "gimli", -] - -[[package]] -name = "adler2" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" - -[[package]] -name = "aes" -version = "0.8.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0" -dependencies = [ - "cfg-if", - "cipher", - "cpufeatures", -] - -[[package]] -name = "aho-corasick" -version = "1.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" -dependencies = [ - "memchr", -] - -[[package]] -name = "alloc-no-stdlib" -version = "2.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" - -[[package]] -name = "alloc-stdlib" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" -dependencies = [ - "alloc-no-stdlib", -] - -[[package]] -name = "android-tzdata" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" - -[[package]] -name = "android_system_properties" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" -dependencies = [ - "libc", -] - -[[package]] -name = "anyhow" -version = "1.0.98" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487" - -[[package]] -name = "arbitrary" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" -dependencies = [ - "derive_arbitrary", -] - -[[package]] -name = "ascii-canvas" -version = "3.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8824ecca2e851cec16968d54a01dd372ef8f95b244fb84b84e70128be347c3c6" -dependencies = [ - "term", -] - -[[package]] -name = "atk" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" -dependencies = [ - "atk-sys", - "glib", - "libc", -] - -[[package]] -name = "atk-sys" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" -dependencies = [ - "glib-sys", - "gobject-sys", - "libc", - "system-deps", -] - -[[package]] -name = "autocfg" -version = "1.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26" - -[[package]] -name = "azookey-binding" -version = "0.1.0" -dependencies = [ - "libc", - "serde", -] - -[[package]] -name = "backtrace" -version = "0.3.74" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" -dependencies = [ - "addr2line", - "cfg-if", - "libc", - "miniz_oxide", - "object", - "rustc-demangle", - "windows-targets 0.52.6", -] - -[[package]] -name = "base64" -version = "0.21.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" - -[[package]] -name = "base64" -version = "0.22.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" - -[[package]] -name = "bincode" -version = "1.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" -dependencies = [ - "serde", -] - -[[package]] -name = "bit-set" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" -dependencies = [ - "bit-vec", -] - -[[package]] -name = "bit-vec" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" - -[[package]] -name = "bitflags" -version = "1.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" - -[[package]] -name = "bitflags" -version = "2.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd" -dependencies = [ - "serde", -] - -[[package]] -name = "block" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a" - -[[package]] -name = "block-buffer" -version = "0.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" -dependencies = [ - "generic-array", -] - -[[package]] -name = "block2" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f" -dependencies = [ - "objc2 0.5.2", -] - -[[package]] -name = "block2" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "340d2f0bdb2a43c1d3cd40513185b2bd7def0aa1052f956455114bc98f82dcf2" -dependencies = [ - "objc2 0.6.1", -] - -[[package]] -name = "brotli" -version = "7.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc97b8f16f944bba54f0433f07e30be199b6dc2bd25937444bbad560bcea29bd" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", - "brotli-decompressor", -] - -[[package]] -name = "brotli-decompressor" -version = "4.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd" -dependencies = [ - "alloc-no-stdlib", - "alloc-stdlib", -] - -[[package]] -name = "bumpalo" -version = "3.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf" - -[[package]] -name = "bytemuck" -version = "1.23.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9134a6ef01ce4b366b50689c94f82c14bc72bc5d0386829828a2e2752ef7958c" - -[[package]] -name = "byteorder" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" - -[[package]] -name = "bytes" -version = "1.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a" -dependencies = [ - "serde", -] - -[[package]] -name = "bzip2" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47" -dependencies = [ - "bzip2-sys", -] - -[[package]] -name = "bzip2-sys" -version = "0.1.13+1.0.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" -dependencies = [ - "cc", - "pkg-config", -] - -[[package]] -name = "cairo-rs" -version = "0.18.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" -dependencies = [ - "bitflags 2.9.0", - "cairo-sys-rs", - "glib", - "libc", - "once_cell", - "thiserror 1.0.69", -] - -[[package]] -name = "cairo-sys-rs" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" -dependencies = [ - "glib-sys", - "libc", - "system-deps", -] - -[[package]] -name = "calc" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f581d92e3ef26b37096e320d0e1b04b917ae6f6a3aa19a04ba44170f3d7bedb" -dependencies = [ - "lalrpop", - "lalrpop-util", - "lazy_static", - "num-runtime-fmt", - "regex", - "thiserror 1.0.69", -] - -[[package]] -name = "camino" -version = "1.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3" -dependencies = [ - "serde", -] - -[[package]] -name = "cargo-platform" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" -dependencies = [ - "serde", -] - -[[package]] -name = "cargo_metadata" -version = "0.19.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" -dependencies = [ - "camino", - "cargo-platform", - "semver", - "serde", - "serde_json", - "thiserror 2.0.12", -] - -[[package]] -name = "cargo_toml" -version = "0.22.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02260d489095346e5cafd04dea8e8cb54d1d74fcd759022a9b72986ebe9a1257" -dependencies = [ - "serde", - "toml", -] - -[[package]] -name = "cc" -version = "1.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8691782945451c1c383942c4874dbe63814f61cb57ef773cda2972682b7bb3c0" -dependencies = [ - "jobserver", - "libc", - "shlex", -] - -[[package]] -name = "cesu8" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" - -[[package]] -name = "cfb" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" -dependencies = [ - "byteorder", - "fnv", - "uuid", -] - -[[package]] -name = "cfg-expr" -version = "0.15.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" -dependencies = [ - "smallvec", - "target-lexicon", -] - -[[package]] -name = "cfg-if" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" - -[[package]] -name = "cfg_aliases" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" - -[[package]] -name = "chrono" -version = "0.4.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d" -dependencies = [ - "android-tzdata", - "iana-time-zone", - "js-sys", - "num-traits", - "serde", - "wasm-bindgen", - "windows-link", -] - -[[package]] -name = "chrono-tz" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93698b29de5e97ad0ae26447b344c482a7284c737d9ddc5f9e52b74a336671bb" -dependencies = [ - "chrono", - "chrono-tz-build", - "phf 0.11.3", -] - -[[package]] -name = "chrono-tz-build" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0c088aee841df9c3041febbb73934cfc39708749bf96dc827e3359cd39ef11b1" -dependencies = [ - "parse-zoneinfo", - "phf 0.11.3", - "phf_codegen 0.11.3", -] - -[[package]] -name = "cipher" -version = "0.4.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad" -dependencies = [ - "crypto-common", - "inout", -] - -[[package]] -name = "clipboard" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25a904646c0340239dcf7c51677b33928bf24fdf424b79a57909c0109075b2e7" -dependencies = [ - "clipboard-win", - "objc", - "objc-foundation", - "objc_id", - "x11-clipboard 0.3.3", -] - -[[package]] -name = "clipboard-master" -version = "3.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "459887701008d8ee21f8de7f45f0f0707417c7eea3311973f6e67222bd686b7a" -dependencies = [ - "objc", - "objc-foundation", - "objc_id", - "winapi", - "windows-win", - "x11-clipboard 0.5.3", -] - -[[package]] -name = "clipboard-win" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3a093d6fed558e5fe24c3dfc85a68bb68f1c824f440d3ba5aca189e2998786b" -dependencies = [ - "winapi", -] - -[[package]] -name = "combine" -version = "4.6.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" -dependencies = [ - "bytes", - "memchr", -] - -[[package]] -name = "constant_time_eq" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" - -[[package]] -name = "convert_case" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" - -[[package]] -name = "cookie" -version = "0.18.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" -dependencies = [ - "time", - "version_check", -] - -[[package]] -name = "core-foundation" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63" -dependencies = [ - "core-foundation-sys", - "libc", -] - -[[package]] -name = "core-foundation-sys" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" - -[[package]] -name = "core-graphics" -version = "0.24.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fa95a34622365fa5bbf40b20b75dba8dfa8c94c734aea8ac9a5ca38af14316f1" -dependencies = [ - "bitflags 2.9.0", - "core-foundation", - "core-graphics-types", - "foreign-types", - "libc", -] - -[[package]] -name = "core-graphics-types" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" -dependencies = [ - "bitflags 2.9.0", - "core-foundation", - "libc", -] - -[[package]] -name = "cpufeatures" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" -dependencies = [ - "libc", -] - -[[package]] -name = "crc" -version = "3.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636" -dependencies = [ - "crc-catalog", -] - -[[package]] -name = "crc-catalog" -version = "2.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5" - -[[package]] -name = "crc32fast" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "crossbeam-channel" -version = "0.5.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" -dependencies = [ - "crossbeam-utils", -] - -[[package]] -name = "crossbeam-utils" -version = "0.8.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" - -[[package]] -name = "crunchy" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929" - -[[package]] -name = "crypto-common" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" -dependencies = [ - "generic-array", - "typenum", -] - -[[package]] -name = "cssparser" -version = "0.27.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "754b69d351cdc2d8ee09ae203db831e005560fc6030da058f86ad60c92a9cb0a" -dependencies = [ - "cssparser-macros", - "dtoa-short", - "itoa 0.4.8", - "matches", - "phf 0.8.0", - "proc-macro2", - "quote", - "smallvec", - "syn 1.0.109", -] - -[[package]] -name = "cssparser-macros" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" -dependencies = [ - "quote", - "syn 2.0.101", -] - -[[package]] -name = "ctor" -version = "0.2.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" -dependencies = [ - "quote", - "syn 2.0.101", -] - -[[package]] -name = "darling" -version = "0.20.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee" -dependencies = [ - "darling_core", - "darling_macro", -] - -[[package]] -name = "darling_core" -version = "0.20.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e" -dependencies = [ - "fnv", - "ident_case", - "proc-macro2", - "quote", - "strsim", - "syn 2.0.101", -] - -[[package]] -name = "darling_macro" -version = "0.20.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead" -dependencies = [ - "darling_core", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "deflate64" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b" - -[[package]] -name = "deranged" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e" -dependencies = [ - "powerfmt", - "serde", -] - -[[package]] -name = "derive_arbitrary" -version = "1.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30542c1ad912e0e3d22a1935c290e12e8a29d704a420177a31faad4a601a0800" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "derive_more" -version = "0.99.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" -dependencies = [ - "convert_case", - "proc-macro2", - "quote", - "rustc_version", - "syn 2.0.101", -] - -[[package]] -name = "diff" -version = "0.1.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" - -[[package]] -name = "digest" -version = "0.10.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" -dependencies = [ - "block-buffer", - "crypto-common", - "subtle", -] - -[[package]] -name = "dirs" -version = "6.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" -dependencies = [ - "dirs-sys", -] - -[[package]] -name = "dirs-next" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf36e65a80337bea855cd4ef9b8401ffce06a7baedf2e85ec467b1ac3f6e82b6" -dependencies = [ - "cfg-if", - "dirs-sys-next", -] - -[[package]] -name = "dirs-next" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b98cf8ebf19c3d1b223e151f99a4f9f0690dca41414773390fc824184ac833e1" -dependencies = [ - "cfg-if", - "dirs-sys-next", -] - -[[package]] -name = "dirs-sys" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" -dependencies = [ - "libc", - "option-ext", - "redox_users 0.5.0", - "windows-sys 0.59.0", -] - -[[package]] -name = "dirs-sys-next" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d" -dependencies = [ - "libc", - "redox_users 0.4.6", - "winapi", -] - -[[package]] -name = "dispatch" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b" - -[[package]] -name = "dispatch2" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec" -dependencies = [ - "bitflags 2.9.0", - "objc2 0.6.1", -] - -[[package]] -name = "displaydoc" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "dlopen2" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e1297103d2bbaea85724fcee6294c2d50b1081f9ad47d0f6f6f61eda65315a6" -dependencies = [ - "dlopen2_derive", - "libc", - "once_cell", - "winapi", -] - -[[package]] -name = "dlopen2_derive" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f2b99bf03862d7f545ebc28ddd33a665b50865f4dfd84031a393823879bd4c54" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "dpi" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" -dependencies = [ - "serde", -] - -[[package]] -name = "dtoa" -version = "1.0.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04" - -[[package]] -name = "dtoa-short" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" -dependencies = [ - "dtoa", -] - -[[package]] -name = "dunce" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" - -[[package]] -name = "dyn-clone" -version = "1.0.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c7a8fb8a9fbf66c1f703fe16184d10ca0ee9d23be5b4436400408ba54a95005" - -[[package]] -name = "either" -version = "1.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719" - -[[package]] -name = "embed-resource" -version = "3.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fbc6e0d8e0c03a655b53ca813f0463d2c956bc4db8138dbc89f120b066551e3" -dependencies = [ - "cc", - "memchr", - "rustc_version", - "toml", - "vswhom", - "winreg", -] - -[[package]] -name = "embed_plist" -version = "1.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" - -[[package]] -name = "ena" -version = "0.14.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3d248bdd43ce613d87415282f69b9bb99d947d290b10962dd6c56233312c2ad5" -dependencies = [ - "log", -] - -[[package]] -name = "encoding_rs" -version = "0.8.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3" -dependencies = [ - "cfg-if", -] - -[[package]] -name = "equivalent" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" - -[[package]] -name = "erased-serde" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7" -dependencies = [ - "serde", - "typeid", -] - -[[package]] -name = "errno" -version = "0.3.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "976dd42dc7e85965fe702eb8164f21f450704bdde31faefd6471dba214cb594e" -dependencies = [ - "libc", - "windows-sys 0.59.0", -] - -[[package]] -name = "fastrand" -version = "2.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be" - -[[package]] -name = "fdeflate" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" -dependencies = [ - "simd-adler32", -] - -[[package]] -name = "field-offset" -version = "0.3.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" -dependencies = [ - "memoffset", - "rustc_version", -] - -[[package]] -name = "filetime" -version = "0.2.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586" -dependencies = [ - "cfg-if", - "libc", - "libredox", - "windows-sys 0.59.0", -] - -[[package]] -name = "fixedbitset" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80" - -[[package]] -name = "flate2" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ced92e76e966ca2fd84c8f7aa01a4aea65b0eb6648d72f7c8f3e2764a67fece" -dependencies = [ - "crc32fast", - "miniz_oxide", -] - -[[package]] -name = "fnv" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" - -[[package]] -name = "foreign-types" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" -dependencies = [ - "foreign-types-macros", - "foreign-types-shared", -] - -[[package]] -name = "foreign-types-macros" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "foreign-types-shared" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" - -[[package]] -name = "form_urlencoded" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" -dependencies = [ - "percent-encoding", -] - -[[package]] -name = "futf" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" -dependencies = [ - "mac", - "new_debug_unreachable", -] - -[[package]] -name = "futures-channel" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10" -dependencies = [ - "futures-core", -] - -[[package]] -name = "futures-core" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e" - -[[package]] -name = "futures-executor" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f" -dependencies = [ - "futures-core", - "futures-task", - "futures-util", -] - -[[package]] -name = "futures-io" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6" - -[[package]] -name = "futures-macro" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "futures-sink" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7" - -[[package]] -name = "futures-task" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988" - -[[package]] -name = "futures-util" -version = "0.3.31" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81" -dependencies = [ - "futures-core", - "futures-io", - "futures-macro", - "futures-sink", - "futures-task", - "memchr", - "pin-project-lite", - "pin-utils", - "slab", -] - -[[package]] -name = "fxhash" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" -dependencies = [ - "byteorder", -] - -[[package]] -name = "gdk" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" -dependencies = [ - "cairo-rs", - "gdk-pixbuf", - "gdk-sys", - "gio", - "glib", - "libc", - "pango", -] - -[[package]] -name = "gdk-pixbuf" -version = "0.18.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" -dependencies = [ - "gdk-pixbuf-sys", - "gio", - "glib", - "libc", - "once_cell", -] - -[[package]] -name = "gdk-pixbuf-sys" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" -dependencies = [ - "gio-sys", - "glib-sys", - "gobject-sys", - "libc", - "system-deps", -] - -[[package]] -name = "gdk-sys" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" -dependencies = [ - "cairo-sys-rs", - "gdk-pixbuf-sys", - "gio-sys", - "glib-sys", - "gobject-sys", - "libc", - "pango-sys", - "pkg-config", - "system-deps", -] - -[[package]] -name = "gdkwayland-sys" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" -dependencies = [ - "gdk-sys", - "glib-sys", - "gobject-sys", - "libc", - "pkg-config", - "system-deps", -] - -[[package]] -name = "gdkx11" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" -dependencies = [ - "gdk", - "gdkx11-sys", - "gio", - "glib", - "libc", - "x11", -] - -[[package]] -name = "gdkx11-sys" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" -dependencies = [ - "gdk-sys", - "glib-sys", - "libc", - "system-deps", - "x11", -] - -[[package]] -name = "generic-array" -version = "0.14.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" -dependencies = [ - "typenum", - "version_check", -] - -[[package]] -name = "getrandom" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" -dependencies = [ - "cfg-if", - "libc", - "wasi 0.9.0+wasi-snapshot-preview1", -] - -[[package]] -name = "getrandom" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592" -dependencies = [ - "cfg-if", - "js-sys", - "libc", - "wasi 0.11.0+wasi-snapshot-preview1", - "wasm-bindgen", -] - -[[package]] -name = "getrandom" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0" -dependencies = [ - "cfg-if", - "js-sys", - "libc", - "r-efi", - "wasi 0.14.2+wasi-0.2.4", - "wasm-bindgen", -] - -[[package]] -name = "gimli" -version = "0.31.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f" - -[[package]] -name = "gio" -version = "0.18.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" -dependencies = [ - "futures-channel", - "futures-core", - "futures-io", - "futures-util", - "gio-sys", - "glib", - "libc", - "once_cell", - "pin-project-lite", - "smallvec", - "thiserror 1.0.69", -] - -[[package]] -name = "gio-sys" -version = "0.18.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" -dependencies = [ - "glib-sys", - "gobject-sys", - "libc", - "system-deps", - "winapi", -] - -[[package]] -name = "glib" -version = "0.18.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" -dependencies = [ - "bitflags 2.9.0", - "futures-channel", - "futures-core", - "futures-executor", - "futures-task", - "futures-util", - "gio-sys", - "glib-macros", - "glib-sys", - "gobject-sys", - "libc", - "memchr", - "once_cell", - "smallvec", - "thiserror 1.0.69", -] - -[[package]] -name = "glib-macros" -version = "0.18.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" -dependencies = [ - "heck 0.4.1", - "proc-macro-crate 2.0.0", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "glib-sys" -version = "0.18.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" -dependencies = [ - "libc", - "system-deps", -] - -[[package]] -name = "glob" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" - -[[package]] -name = "gobject-sys" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" -dependencies = [ - "glib-sys", - "libc", - "system-deps", -] - -[[package]] -name = "gtk" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" -dependencies = [ - "atk", - "cairo-rs", - "field-offset", - "futures-channel", - "gdk", - "gdk-pixbuf", - "gio", - "glib", - "gtk-sys", - "gtk3-macros", - "libc", - "pango", - "pkg-config", -] - -[[package]] -name = "gtk-sys" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" -dependencies = [ - "atk-sys", - "cairo-sys-rs", - "gdk-pixbuf-sys", - "gdk-sys", - "gio-sys", - "glib-sys", - "gobject-sys", - "libc", - "pango-sys", - "system-deps", -] - -[[package]] -name = "gtk3-macros" -version = "0.18.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" -dependencies = [ - "proc-macro-crate 1.3.1", - "proc-macro-error", - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "hashbrown" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" - -[[package]] -name = "hashbrown" -version = "0.15.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3" - -[[package]] -name = "heck" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" - -[[package]] -name = "heck" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" - -[[package]] -name = "hermit-abi" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fbd780fe5cc30f81464441920d82ac8740e2e46b29a6fad543ddd075229ce37e" - -[[package]] -name = "hex" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" - -[[package]] -name = "hmac" -version = "0.12.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" -dependencies = [ - "digest", -] - -[[package]] -name = "html5ever" -version = "0.26.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7" -dependencies = [ - "log", - "mac", - "markup5ever", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "http" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565" -dependencies = [ - "bytes", - "fnv", - "itoa 1.0.15", -] - -[[package]] -name = "http-body" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" -dependencies = [ - "bytes", - "http", -] - -[[package]] -name = "http-body-util" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" -dependencies = [ - "bytes", - "futures-core", - "http", - "http-body", - "pin-project-lite", -] - -[[package]] -name = "httparse" -version = "1.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" - -[[package]] -name = "hyper" -version = "1.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80" -dependencies = [ - "bytes", - "futures-channel", - "futures-util", - "http", - "http-body", - "httparse", - "itoa 1.0.15", - "pin-project-lite", - "smallvec", - "tokio", - "want", -] - -[[package]] -name = "hyper-rustls" -version = "0.27.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2" -dependencies = [ - "futures-util", - "http", - "hyper", - "hyper-util", - "rustls", - "rustls-pki-types", - "tokio", - "tokio-rustls", - "tower-service", - "webpki-roots", -] - -[[package]] -name = "hyper-util" -version = "0.1.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "497bbc33a26fdd4af9ed9c70d63f61cf56a938375fbb32df34db9b1cd6d643f2" -dependencies = [ - "bytes", - "futures-channel", - "futures-util", - "http", - "http-body", - "hyper", - "libc", - "pin-project-lite", - "socket2", - "tokio", - "tower-service", - "tracing", -] - -[[package]] -name = "iana-time-zone" -version = "0.1.63" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8" -dependencies = [ - "android_system_properties", - "core-foundation-sys", - "iana-time-zone-haiku", - "js-sys", - "log", - "wasm-bindgen", - "windows-core 0.61.0", -] - -[[package]] -name = "iana-time-zone-haiku" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" -dependencies = [ - "cc", -] - -[[package]] -name = "ico" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cc50b891e4acf8fe0e71ef88ec43ad82ee07b3810ad09de10f1d01f072ed4b98" -dependencies = [ - "byteorder", - "png", -] - -[[package]] -name = "icu_collections" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" -dependencies = [ - "displaydoc", - "yoke", - "zerofrom", - "zerovec", -] - -[[package]] -name = "icu_locid" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" -dependencies = [ - "displaydoc", - "litemap", - "tinystr", - "writeable", - "zerovec", -] - -[[package]] -name = "icu_locid_transform" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" -dependencies = [ - "displaydoc", - "icu_locid", - "icu_locid_transform_data", - "icu_provider", - "tinystr", - "zerovec", -] - -[[package]] -name = "icu_locid_transform_data" -version = "1.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7515e6d781098bf9f7205ab3fc7e9709d34554ae0b21ddbcb5febfa4bc7df11d" - -[[package]] -name = "icu_normalizer" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" -dependencies = [ - "displaydoc", - "icu_collections", - "icu_normalizer_data", - "icu_properties", - "icu_provider", - "smallvec", - "utf16_iter", - "utf8_iter", - "write16", - "zerovec", -] - -[[package]] -name = "icu_normalizer_data" -version = "1.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5e8338228bdc8ab83303f16b797e177953730f601a96c25d10cb3ab0daa0cb7" - -[[package]] -name = "icu_properties" -version = "1.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" -dependencies = [ - "displaydoc", - "icu_collections", - "icu_locid_transform", - "icu_properties_data", - "icu_provider", - "tinystr", - "zerovec", -] - -[[package]] -name = "icu_properties_data" -version = "1.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85fb8799753b75aee8d2a21d7c14d9f38921b54b3dbda10f5a3c7a7b82dba5e2" - -[[package]] -name = "icu_provider" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" -dependencies = [ - "displaydoc", - "icu_locid", - "icu_provider_macros", - "stable_deref_trait", - "tinystr", - "writeable", - "yoke", - "zerofrom", - "zerovec", -] - -[[package]] -name = "icu_provider_macros" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "ident_case" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" - -[[package]] -name = "idna" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" -dependencies = [ - "idna_adapter", - "smallvec", - "utf8_iter", -] - -[[package]] -name = "idna_adapter" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" -dependencies = [ - "icu_normalizer", - "icu_properties", -] - -[[package]] -name = "indexmap" -version = "1.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" -dependencies = [ - "autocfg", - "hashbrown 0.12.3", - "serde", -] - -[[package]] -name = "indexmap" -version = "2.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e" -dependencies = [ - "equivalent", - "hashbrown 0.15.3", - "serde", -] - -[[package]] -name = "infer" -version = "0.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" -dependencies = [ - "cfb", -] - -[[package]] -name = "inout" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01" -dependencies = [ - "generic-array", -] - -[[package]] -name = "ipc-channel" -version = "0.19.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6fb8251fb7bcd9ccd3725ed8deae9fe7db8e586495c9eb5b0c52e6233e5e75ea" -dependencies = [ - "bincode", - "crossbeam-channel", - "fnv", - "lazy_static", - "libc", - "mio", - "rand 0.8.5", - "serde", - "tempfile", - "uuid", - "windows 0.58.0", -] - -[[package]] -name = "ipnet" -version = "2.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" - -[[package]] -name = "is-docker" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3" -dependencies = [ - "once_cell", -] - -[[package]] -name = "is-terminal" -version = "0.4.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9" -dependencies = [ - "hermit-abi", - "libc", - "windows-sys 0.59.0", -] - -[[package]] -name = "is-wsl" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5" -dependencies = [ - "is-docker", - "once_cell", -] - -[[package]] -name = "iterext" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e76a40b972b250590567018fd753f44adedc270994fb7be37e4d8c20764bab49" -dependencies = [ - "itertools 0.10.5", -] - -[[package]] -name = "itertools" -version = "0.10.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" -dependencies = [ - "either", -] - -[[package]] -name = "itertools" -version = "0.14.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" -dependencies = [ - "either", -] - -[[package]] -name = "itoa" -version = "0.4.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" - -[[package]] -name = "itoa" -version = "1.0.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c" - -[[package]] -name = "javascriptcore-rs" -version = "1.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" -dependencies = [ - "bitflags 1.3.2", - "glib", - "javascriptcore-rs-sys", -] - -[[package]] -name = "javascriptcore-rs-sys" -version = "1.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" -dependencies = [ - "glib-sys", - "gobject-sys", - "libc", - "system-deps", -] - -[[package]] -name = "jni" -version = "0.21.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" -dependencies = [ - "cesu8", - "cfg-if", - "combine", - "jni-sys", - "log", - "thiserror 1.0.69", - "walkdir", - "windows-sys 0.45.0", -] - -[[package]] -name = "jni-sys" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" - -[[package]] -name = "jobserver" -version = "0.1.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a" -dependencies = [ - "getrandom 0.3.2", - "libc", -] - -[[package]] -name = "js-sys" -version = "0.3.77" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f" -dependencies = [ - "once_cell", - "wasm-bindgen", -] - -[[package]] -name = "json-patch" -version = "3.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" -dependencies = [ - "jsonptr", - "serde", - "serde_json", - "thiserror 1.0.69", -] - -[[package]] -name = "jsonptr" -version = "0.6.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" -dependencies = [ - "serde", - "serde_json", -] - -[[package]] -name = "keyboard-types" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" -dependencies = [ - "bitflags 2.9.0", - "serde", - "unicode-segmentation", -] - -[[package]] -name = "kuchikiki" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f29e4755b7b995046f510a7520c42b2fed58b77bd94d5a87a8eb43d2fd126da8" -dependencies = [ - "cssparser", - "html5ever", - "indexmap 1.9.3", - "matches", - "selectors", -] - -[[package]] -name = "lalrpop" -version = "0.19.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a1cbf952127589f2851ab2046af368fd20645491bb4b376f04b7f94d7a9837b" -dependencies = [ - "ascii-canvas", - "bit-set", - "diff", - "ena", - "is-terminal", - "itertools 0.10.5", - "lalrpop-util", - "petgraph", - "regex", - "regex-syntax 0.6.29", - "string_cache", - "term", - "tiny-keccak", - "unicode-xid", -] - -[[package]] -name = "lalrpop-util" -version = "0.19.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3c48237b9604c5a4702de6b824e02006c3214327564636aef27c1028a8fa0ed" -dependencies = [ - "regex", -] - -[[package]] -name = "lazy_static" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" - -[[package]] -name = "libappindicator" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" -dependencies = [ - "glib", - "gtk", - "gtk-sys", - "libappindicator-sys", - "log", -] - -[[package]] -name = "libappindicator-sys" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" -dependencies = [ - "gtk-sys", - "libloading", - "once_cell", -] - -[[package]] -name = "libc" -version = "0.2.172" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa" - -[[package]] -name = "libloading" -version = "0.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" -dependencies = [ - "cfg-if", - "winapi", -] - -[[package]] -name = "libredox" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d" -dependencies = [ - "bitflags 2.9.0", - "libc", - "redox_syscall", -] - -[[package]] -name = "linux-raw-sys" -version = "0.9.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12" - -[[package]] -name = "litemap" -version = "0.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "23fb14cb19457329c82206317a5663005a4d404783dc74f4252769b0d5f42856" - -[[package]] -name = "lock_api" -version = "0.4.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" -dependencies = [ - "autocfg", - "scopeguard", -] - -[[package]] -name = "log" -version = "0.4.27" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94" - -[[package]] -name = "lzma-rs" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e" -dependencies = [ - "byteorder", - "crc", -] - -[[package]] -name = "lzma-sys" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27" -dependencies = [ - "cc", - "libc", - "pkg-config", -] - -[[package]] -name = "mac" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" - -[[package]] -name = "malloc_buf" -version = "0.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb" -dependencies = [ - "libc", -] - -[[package]] -name = "markup5ever" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016" -dependencies = [ - "log", - "phf 0.10.1", - "phf_codegen 0.10.0", - "string_cache", - "string_cache_codegen", - "tendril", -] - -[[package]] -name = "matchers" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" -dependencies = [ - "regex-automata 0.1.10", -] - -[[package]] -name = "matches" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" - -[[package]] -name = "memchr" -version = "2.7.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" - -[[package]] -name = "memoffset" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" -dependencies = [ - "autocfg", -] - -[[package]] -name = "mime" -version = "0.3.17" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" - -[[package]] -name = "minimal-lexical" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" - -[[package]] -name = "minisign-verify" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6367d84fb54d4242af283086402907277715b8fe46976963af5ebf173f8efba3" - -[[package]] -name = "miniz_oxide" -version = "0.8.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a" -dependencies = [ - "adler2", - "simd-adler32", -] - -[[package]] -name = "mio" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd" -dependencies = [ - "libc", - "log", - "wasi 0.11.0+wasi-snapshot-preview1", - "windows-sys 0.52.0", -] - -[[package]] -name = "muda" -version = "0.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4de14a9b5d569ca68d7c891d613b390cf5ab4f851c77aaa2f9e435555d3d9492" -dependencies = [ - "crossbeam-channel", - "dpi", - "gtk", - "keyboard-types", - "objc2 0.6.1", - "objc2-app-kit", - "objc2-core-foundation", - "objc2-foundation 0.3.1", - "once_cell", - "png", - "serde", - "thiserror 2.0.12", - "windows-sys 0.59.0", -] - -[[package]] -name = "ndk" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" -dependencies = [ - "bitflags 2.9.0", - "jni-sys", - "log", - "ndk-sys", - "num_enum", - "raw-window-handle", - "thiserror 1.0.69", -] - -[[package]] -name = "ndk-context" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" - -[[package]] -name = "ndk-sys" -version = "0.6.0+11769913" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" -dependencies = [ - "jni-sys", -] - -[[package]] -name = "new_debug_unreachable" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" - -[[package]] -name = "nodrop" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" - -[[package]] -name = "nom" -version = "7.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" -dependencies = [ - "memchr", - "minimal-lexical", -] - -[[package]] -name = "nu-ansi-term" -version = "0.46.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" -dependencies = [ - "overload", - "winapi", -] - -[[package]] -name = "num-conv" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" - -[[package]] -name = "num-runtime-fmt" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68a3aa892c8728aa98afcb19dcfab4bab012ad88c2fade0717564db3f521344e" -dependencies = [ - "iterext", - "lazy_static", - "regex", - "thiserror 1.0.69", -] - -[[package]] -name = "num-traits" -version = "0.2.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" -dependencies = [ - "autocfg", -] - -[[package]] -name = "num_enum" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179" -dependencies = [ - "num_enum_derive", -] - -[[package]] -name = "num_enum_derive" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56" -dependencies = [ - "proc-macro-crate 3.3.0", - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "num_threads" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9" -dependencies = [ - "libc", -] - -[[package]] -name = "objc" -version = "0.2.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1" -dependencies = [ - "malloc_buf", -] - -[[package]] -name = "objc-foundation" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9" -dependencies = [ - "block", - "objc", - "objc_id", -] - -[[package]] -name = "objc-sys" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310" - -[[package]] -name = "objc2" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804" -dependencies = [ - "objc-sys", - "objc2-encode", -] - -[[package]] -name = "objc2" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88c6597e14493ab2e44ce58f2fdecf095a51f12ca57bec060a11c57332520551" -dependencies = [ - "objc2-encode", - "objc2-exception-helper", -] - -[[package]] -name = "objc2-app-kit" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6f29f568bec459b0ddff777cec4fe3fd8666d82d5a40ebd0ff7e66134f89bcc" -dependencies = [ - "bitflags 2.9.0", - "block2 0.6.1", - "libc", - "objc2 0.6.1", - "objc2-cloud-kit", - "objc2-core-data", - "objc2-core-foundation", - "objc2-core-graphics", - "objc2-core-image", - "objc2-foundation 0.3.1", - "objc2-quartz-core 0.3.1", -] - -[[package]] -name = "objc2-cloud-kit" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17614fdcd9b411e6ff1117dfb1d0150f908ba83a7df81b1f118005fe0a8ea15d" -dependencies = [ - "bitflags 2.9.0", - "objc2 0.6.1", - "objc2-foundation 0.3.1", -] - -[[package]] -name = "objc2-core-data" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291fbbf7d29287518e8686417cf7239c74700fd4b607623140a7d4a3c834329d" -dependencies = [ - "bitflags 2.9.0", - "objc2 0.6.1", - "objc2-foundation 0.3.1", -] - -[[package]] -name = "objc2-core-foundation" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c10c2894a6fed806ade6027bcd50662746363a9589d3ec9d9bef30a4e4bc166" -dependencies = [ - "bitflags 2.9.0", - "dispatch2", - "objc2 0.6.1", -] - -[[package]] -name = "objc2-core-graphics" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "989c6c68c13021b5c2d6b71456ebb0f9dc78d752e86a98da7c716f4f9470f5a4" -dependencies = [ - "bitflags 2.9.0", - "dispatch2", - "objc2 0.6.1", - "objc2-core-foundation", - "objc2-io-surface", -] - -[[package]] -name = "objc2-core-image" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "79b3dc0cc4386b6ccf21c157591b34a7f44c8e75b064f85502901ab2188c007e" -dependencies = [ - "objc2 0.6.1", - "objc2-foundation 0.3.1", -] - -[[package]] -name = "objc2-encode" -version = "4.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" - -[[package]] -name = "objc2-exception-helper" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" -dependencies = [ - "cc", -] - -[[package]] -name = "objc2-foundation" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8" -dependencies = [ - "bitflags 2.9.0", - "block2 0.5.1", - "libc", - "objc2 0.5.2", -] - -[[package]] -name = "objc2-foundation" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "900831247d2fe1a09a683278e5384cfb8c80c79fe6b166f9d14bfdde0ea1b03c" -dependencies = [ - "bitflags 2.9.0", - "block2 0.6.1", - "libc", - "objc2 0.6.1", - "objc2-core-foundation", -] - -[[package]] -name = "objc2-io-surface" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7282e9ac92529fa3457ce90ebb15f4ecbc383e8338060960760fa2cf75420c3c" -dependencies = [ - "bitflags 2.9.0", - "objc2 0.6.1", - "objc2-core-foundation", -] - -[[package]] -name = "objc2-metal" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6" -dependencies = [ - "bitflags 2.9.0", - "block2 0.5.1", - "objc2 0.5.2", - "objc2-foundation 0.2.2", -] - -[[package]] -name = "objc2-osa-kit" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26bb88504b5a050dbba515d2414607bf5e57dd56b107bc5f0351197a3e7bdc5d" -dependencies = [ - "bitflags 2.9.0", - "objc2 0.6.1", - "objc2-app-kit", - "objc2-foundation 0.3.1", -] - -[[package]] -name = "objc2-quartz-core" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a" -dependencies = [ - "bitflags 2.9.0", - "block2 0.5.1", - "objc2 0.5.2", - "objc2-foundation 0.2.2", - "objc2-metal", -] - -[[package]] -name = "objc2-quartz-core" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90ffb6a0cd5f182dc964334388560b12a57f7b74b3e2dec5e2722aa2dfb2ccd5" -dependencies = [ - "bitflags 2.9.0", - "objc2 0.6.1", - "objc2-foundation 0.3.1", -] - -[[package]] -name = "objc2-ui-kit" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25b1312ad7bc8a0e92adae17aa10f90aae1fb618832f9b993b022b591027daed" -dependencies = [ - "bitflags 2.9.0", - "objc2 0.6.1", - "objc2-core-foundation", - "objc2-foundation 0.3.1", -] - -[[package]] -name = "objc2-web-kit" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91672909de8b1ce1c2252e95bbee8c1649c9ad9d14b9248b3d7b4c47903c47ad" -dependencies = [ - "bitflags 2.9.0", - "block2 0.6.1", - "objc2 0.6.1", - "objc2-app-kit", - "objc2-core-foundation", - "objc2-foundation 0.3.1", -] - -[[package]] -name = "objc_id" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b" -dependencies = [ - "objc", -] - -[[package]] -name = "object" -version = "0.36.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87" -dependencies = [ - "memchr", -] - -[[package]] -name = "once_cell" -version = "1.21.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" - -[[package]] -name = "open" -version = "5.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2483562e62ea94312f3576a7aca397306df7990b8d89033e18766744377ef95" -dependencies = [ - "dunce", - "is-wsl", - "libc", - "pathdiff", -] - -[[package]] -name = "option-ext" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" - -[[package]] -name = "os_pipe" -version = "1.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ffd2b0a5634335b135d5728d84c5e0fd726954b87111f7506a61c502280d982" -dependencies = [ - "libc", - "windows-sys 0.59.0", -] - -[[package]] -name = "osakit" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "732c71caeaa72c065bb69d7ea08717bd3f4863a4f451402fc9513e29dbd5261b" -dependencies = [ - "objc2 0.6.1", - "objc2-foundation 0.3.1", - "objc2-osa-kit", - "serde", - "serde_json", - "thiserror 2.0.12", -] - -[[package]] -name = "overload" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" - -[[package]] -name = "pango" -version = "0.18.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" -dependencies = [ - "gio", - "glib", - "libc", - "once_cell", - "pango-sys", -] - -[[package]] -name = "pango-sys" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" -dependencies = [ - "glib-sys", - "gobject-sys", - "libc", - "system-deps", -] - -[[package]] -name = "parking_lot" -version = "0.12.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" -dependencies = [ - "lock_api", - "parking_lot_core", -] - -[[package]] -name = "parking_lot_core" -version = "0.9.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" -dependencies = [ - "cfg-if", - "libc", - "redox_syscall", - "smallvec", - "windows-targets 0.52.6", -] - -[[package]] -name = "parse-zoneinfo" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f2a05b18d44e2957b88f96ba460715e295bc1d7510468a2f3d3b44535d26c24" -dependencies = [ - "regex", -] - -[[package]] -name = "pathdiff" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3" - -[[package]] -name = "pbkdf2" -version = "0.12.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2" -dependencies = [ - "digest", - "hmac", -] - -[[package]] -name = "percent-encoding" -version = "2.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" - -[[package]] -name = "petgraph" -version = "0.6.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db" -dependencies = [ - "fixedbitset", - "indexmap 2.9.0", -] - -[[package]] -name = "phf" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" -dependencies = [ - "phf_macros 0.8.0", - "phf_shared 0.8.0", - "proc-macro-hack", -] - -[[package]] -name = "phf" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" -dependencies = [ - "phf_shared 0.10.0", -] - -[[package]] -name = "phf" -version = "0.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" -dependencies = [ - "phf_macros 0.11.3", - "phf_shared 0.11.3", -] - -[[package]] -name = "phf_codegen" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" -dependencies = [ - "phf_generator 0.8.0", - "phf_shared 0.8.0", -] - -[[package]] -name = "phf_codegen" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd" -dependencies = [ - "phf_generator 0.10.0", - "phf_shared 0.10.0", -] - -[[package]] -name = "phf_codegen" -version = "0.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" -dependencies = [ - "phf_generator 0.11.3", - "phf_shared 0.11.3", -] - -[[package]] -name = "phf_generator" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" -dependencies = [ - "phf_shared 0.8.0", - "rand 0.7.3", -] - -[[package]] -name = "phf_generator" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" -dependencies = [ - "phf_shared 0.10.0", - "rand 0.8.5", -] - -[[package]] -name = "phf_generator" -version = "0.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" -dependencies = [ - "phf_shared 0.11.3", - "rand 0.8.5", -] - -[[package]] -name = "phf_macros" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f6fde18ff429ffc8fe78e2bf7f8b7a5a5a6e2a8b58bc5a9ac69198bbda9189c" -dependencies = [ - "phf_generator 0.8.0", - "phf_shared 0.8.0", - "proc-macro-hack", - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "phf_macros" -version = "0.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" -dependencies = [ - "phf_generator 0.11.3", - "phf_shared 0.11.3", - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "phf_shared" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" -dependencies = [ - "siphasher 0.3.11", -] - -[[package]] -name = "phf_shared" -version = "0.10.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" -dependencies = [ - "siphasher 0.3.11", -] - -[[package]] -name = "phf_shared" -version = "0.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" -dependencies = [ - "siphasher 1.0.1", -] - -[[package]] -name = "pin-project-lite" -version = "0.2.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" - -[[package]] -name = "pin-utils" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" - -[[package]] -name = "pkg-config" -version = "0.3.32" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" - -[[package]] -name = "platform-dirs" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e188d043c1a692985f78b5464853a263f1a27e5bd6322bad3a4078ee3c998a38" -dependencies = [ - "dirs-next 1.0.2", -] - -[[package]] -name = "plist" -version = "1.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eac26e981c03a6e53e0aee43c113e3202f5581d5360dae7bd2c70e800dd0451d" -dependencies = [ - "base64 0.22.1", - "indexmap 2.9.0", - "quick-xml 0.32.0", - "serde", - "time", -] - -[[package]] -name = "png" -version = "0.17.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" -dependencies = [ - "bitflags 1.3.2", - "crc32fast", - "fdeflate", - "flate2", - "miniz_oxide", -] - -[[package]] -name = "powerfmt" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" - -[[package]] -name = "ppv-lite86" -version = "0.2.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" -dependencies = [ - "zerocopy", -] - -[[package]] -name = "precomputed-hash" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" - -[[package]] -name = "proc-macro-crate" -version = "1.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" -dependencies = [ - "once_cell", - "toml_edit 0.19.15", -] - -[[package]] -name = "proc-macro-crate" -version = "2.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" -dependencies = [ - "toml_edit 0.20.7", -] - -[[package]] -name = "proc-macro-crate" -version = "3.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35" -dependencies = [ - "toml_edit 0.22.26", -] - -[[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2", - "quote", - "syn 1.0.109", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2", - "quote", - "version_check", -] - -[[package]] -name = "proc-macro-hack" -version = "0.5.20+deprecated" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" - -[[package]] -name = "proc-macro2" -version = "1.0.95" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "quick-xml" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8533f14c8382aaad0d592c812ac3b826162128b65662331e1127b45c3d18536b" -dependencies = [ - "memchr", -] - -[[package]] -name = "quick-xml" -version = "0.32.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2" -dependencies = [ - "memchr", -] - -[[package]] -name = "quinn" -version = "0.11.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c3bd15a6f2967aef83887dcb9fec0014580467e33720d073560cf015a5683012" -dependencies = [ - "bytes", - "cfg_aliases", - "pin-project-lite", - "quinn-proto", - "quinn-udp", - "rustc-hash", - "rustls", - "socket2", - "thiserror 2.0.12", - "tokio", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-proto" -version = "0.11.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcbafbbdbb0f638fe3f35f3c56739f77a8a1d070cb25603226c83339b391472b" -dependencies = [ - "bytes", - "getrandom 0.3.2", - "rand 0.9.1", - "ring", - "rustc-hash", - "rustls", - "rustls-pki-types", - "slab", - "thiserror 2.0.12", - "tinyvec", - "tracing", - "web-time", -] - -[[package]] -name = "quinn-udp" -version = "0.5.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee4e529991f949c5e25755532370b8af5d114acae52326361d68d47af64aa842" -dependencies = [ - "cfg_aliases", - "libc", - "once_cell", - "socket2", - "tracing", - "windows-sys 0.59.0", -] - -[[package]] -name = "quote" -version = "1.0.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d" -dependencies = [ - "proc-macro2", -] - -[[package]] -name = "r-efi" -version = "5.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5" - -[[package]] -name = "rand" -version = "0.7.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" -dependencies = [ - "getrandom 0.1.16", - "libc", - "rand_chacha 0.2.2", - "rand_core 0.5.1", - "rand_hc", - "rand_pcg", -] - -[[package]] -name = "rand" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" -dependencies = [ - "libc", - "rand_chacha 0.3.1", - "rand_core 0.6.4", -] - -[[package]] -name = "rand" -version = "0.9.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97" -dependencies = [ - "rand_chacha 0.9.0", - "rand_core 0.9.3", -] - -[[package]] -name = "rand_chacha" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" -dependencies = [ - "ppv-lite86", - "rand_core 0.5.1", -] - -[[package]] -name = "rand_chacha" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" -dependencies = [ - "ppv-lite86", - "rand_core 0.6.4", -] - -[[package]] -name = "rand_chacha" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" -dependencies = [ - "ppv-lite86", - "rand_core 0.9.3", -] - -[[package]] -name = "rand_core" -version = "0.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" -dependencies = [ - "getrandom 0.1.16", -] - -[[package]] -name = "rand_core" -version = "0.6.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" -dependencies = [ - "getrandom 0.2.16", -] - -[[package]] -name = "rand_core" -version = "0.9.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38" -dependencies = [ - "getrandom 0.3.2", -] - -[[package]] -name = "rand_hc" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" -dependencies = [ - "rand_core 0.5.1", -] - -[[package]] -name = "rand_pcg" -version = "0.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" -dependencies = [ - "rand_core 0.5.1", -] - -[[package]] -name = "raw-window-handle" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" - -[[package]] -name = "redox_syscall" -version = "0.5.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af" -dependencies = [ - "bitflags 2.9.0", -] - -[[package]] -name = "redox_users" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" -dependencies = [ - "getrandom 0.2.16", - "libredox", - "thiserror 1.0.69", -] - -[[package]] -name = "redox_users" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd6f9d3d47bdd2ad6945c5015a226ec6155d0bcdfd8f7cd29f86b71f8de99d2b" -dependencies = [ - "getrandom 0.2.16", - "libredox", - "thiserror 2.0.12", -] - -[[package]] -name = "regex" -version = "1.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" -dependencies = [ - "aho-corasick", - "memchr", - "regex-automata 0.4.9", - "regex-syntax 0.8.5", -] - -[[package]] -name = "regex-automata" -version = "0.1.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" -dependencies = [ - "regex-syntax 0.6.29", -] - -[[package]] -name = "regex-automata" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" -dependencies = [ - "aho-corasick", - "memchr", - "regex-syntax 0.8.5", -] - -[[package]] -name = "regex-syntax" -version = "0.6.29" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" - -[[package]] -name = "regex-syntax" -version = "0.8.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" - -[[package]] -name = "reqwest" -version = "0.12.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d19c46a6fdd48bc4dab94b6103fccc55d34c67cc0ad04653aad4ea2a07cd7bbb" -dependencies = [ - "base64 0.22.1", - "bytes", - "futures-core", - "futures-util", - "http", - "http-body", - "http-body-util", - "hyper", - "hyper-rustls", - "hyper-util", - "ipnet", - "js-sys", - "log", - "mime", - "once_cell", - "percent-encoding", - "pin-project-lite", - "quinn", - "rustls", - "rustls-pemfile", - "rustls-pki-types", - "serde", - "serde_json", - "serde_urlencoded", - "sync_wrapper", - "tokio", - "tokio-rustls", - "tokio-util", - "tower", - "tower-service", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", - "webpki-roots", - "windows-registry", -] - -[[package]] -name = "ring" -version = "0.17.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" -dependencies = [ - "cc", - "cfg-if", - "getrandom 0.2.16", - "libc", - "untrusted", - "windows-sys 0.52.0", -] - -[[package]] -name = "rosc" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2e63d9e6b0d090be1485cf159b1e04c3973d2d3e1614963544ea2ff47a4a981" -dependencies = [ - "byteorder", - "nom", -] - -[[package]] -name = "rustc-demangle" -version = "0.1.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" - -[[package]] -name = "rustc-hash" -version = "2.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d" - -[[package]] -name = "rustc_version" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" -dependencies = [ - "semver", -] - -[[package]] -name = "rustix" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266" -dependencies = [ - "bitflags 2.9.0", - "errno", - "libc", - "linux-raw-sys", - "windows-sys 0.59.0", -] - -[[package]] -name = "rustls" -version = "0.23.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df51b5869f3a441595eac5e8ff14d486ff285f7b8c0df8770e49c3b56351f0f0" -dependencies = [ - "once_cell", - "ring", - "rustls-pki-types", - "rustls-webpki", - "subtle", - "zeroize", -] - -[[package]] -name = "rustls-pemfile" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50" -dependencies = [ - "rustls-pki-types", -] - -[[package]] -name = "rustls-pki-types" -version = "1.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "917ce264624a4b4db1c364dcc35bfca9ded014d0a958cd47ad3e960e988ea51c" -dependencies = [ - "web-time", -] - -[[package]] -name = "rustls-webpki" -version = "0.103.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fef8b8769aaccf73098557a87cd1816b4f9c7c16811c9c77142aa695c16f2c03" -dependencies = [ - "ring", - "rustls-pki-types", - "untrusted", -] - -[[package]] -name = "rustversion" -version = "1.0.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2" - -[[package]] -name = "ryu" -version = "1.0.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f" - -[[package]] -name = "same-file" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" -dependencies = [ - "winapi-util", -] - -[[package]] -name = "schemars" -version = "0.8.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" -dependencies = [ - "dyn-clone", - "indexmap 1.9.3", - "schemars_derive", - "serde", - "serde_json", - "url", - "uuid", -] - -[[package]] -name = "schemars_derive" -version = "0.8.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" -dependencies = [ - "proc-macro2", - "quote", - "serde_derive_internals", - "syn 2.0.101", -] - -[[package]] -name = "scopeguard" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" - -[[package]] -name = "selectors" -version = "0.22.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df320f1889ac4ba6bc0cdc9c9af7af4bd64bb927bccdf32d81140dc1f9be12fe" -dependencies = [ - "bitflags 1.3.2", - "cssparser", - "derive_more", - "fxhash", - "log", - "matches", - "phf 0.8.0", - "phf_codegen 0.8.0", - "precomputed-hash", - "servo_arc", - "smallvec", - "thin-slice", -] - -[[package]] -name = "semver" -version = "1.0.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56e6fa9c48d24d85fb3de5ad847117517440f6beceb7798af16b4a87d616b8d0" -dependencies = [ - "serde", -] - -[[package]] -name = "serde" -version = "1.0.219" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6" -dependencies = [ - "serde_derive", -] - -[[package]] -name = "serde-untagged" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "299d9c19d7d466db4ab10addd5703e4c615dec2a5a16dbbafe191045e87ee66e" -dependencies = [ - "erased-serde", - "serde", - "typeid", -] - -[[package]] -name = "serde_derive" -version = "1.0.219" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "serde_derive_internals" -version = "0.29.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "serde_json" -version = "1.0.140" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373" -dependencies = [ - "itoa 1.0.15", - "memchr", - "ryu", - "serde", -] - -[[package]] -name = "serde_repr" -version = "0.1.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "serde_spanned" -version = "0.6.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" -dependencies = [ - "serde", -] - -[[package]] -name = "serde_urlencoded" -version = "0.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" -dependencies = [ - "form_urlencoded", - "itoa 1.0.15", - "ryu", - "serde", -] - -[[package]] -name = "serde_with" -version = "3.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa" -dependencies = [ - "base64 0.22.1", - "chrono", - "hex", - "indexmap 1.9.3", - "indexmap 2.9.0", - "serde", - "serde_derive", - "serde_json", - "serde_with_macros", - "time", -] - -[[package]] -name = "serde_with_macros" -version = "3.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e" -dependencies = [ - "darling", - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "serde_yaml" -version = "0.9.34+deprecated" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47" -dependencies = [ - "indexmap 2.9.0", - "itoa 1.0.15", - "ryu", - "serde", - "unsafe-libyaml", -] - -[[package]] -name = "serialize-to-javascript" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9823f2d3b6a81d98228151fdeaf848206a7855a7a042bbf9bf870449a66cafb" -dependencies = [ - "serde", - "serde_json", - "serialize-to-javascript-impl", -] - -[[package]] -name = "serialize-to-javascript-impl" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "74064874e9f6a15f04c1f3cb627902d0e6b410abbf36668afa873c61889f1763" -dependencies = [ - "proc-macro2", - "quote", - "syn 1.0.109", -] - -[[package]] -name = "servo_arc" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d98238b800e0d1576d8b6e3de32827c2d74bee68bb97748dcf5071fb53965432" -dependencies = [ - "nodrop", - "stable_deref_trait", -] - -[[package]] -name = "sha1" -version = "0.10.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba" -dependencies = [ - "cfg-if", - "cpufeatures", - "digest", -] - -[[package]] -name = "sha2" -version = "0.10.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" -dependencies = [ - "cfg-if", - "cpufeatures", - "digest", -] - -[[package]] -name = "sharded-slab" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" -dependencies = [ - "lazy_static", -] - -[[package]] -name = "shared_child" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7e297bd52991bbe0686c086957bee142f13df85d1e79b0b21630a99d374ae9dc" -dependencies = [ - "libc", - "windows-sys 0.59.0", -] - -[[package]] -name = "shlex" -version = "1.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" - -[[package]] -name = "signal-hook-registry" -version = "1.4.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410" -dependencies = [ - "libc", -] - -[[package]] -name = "simd-adler32" -version = "0.3.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" - -[[package]] -name = "siphasher" -version = "0.3.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" - -[[package]] -name = "siphasher" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d" - -[[package]] -name = "slab" -version = "0.4.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" -dependencies = [ - "autocfg", -] - -[[package]] -name = "smallvec" -version = "1.15.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8917285742e9f3e1683f0a9c4e6b57960b7314d0b08d30d1ecd426713ee2eee9" - -[[package]] -name = "socket2" -version = "0.5.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f5fd57c80058a56cf5c777ab8a126398ece8e442983605d280a44ce79d0edef" -dependencies = [ - "libc", - "windows-sys 0.52.0", -] - -[[package]] -name = "softbuffer" -version = "0.4.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "18051cdd562e792cad055119e0cdb2cfc137e44e3987532e0f9659a77931bb08" -dependencies = [ - "bytemuck", - "cfg_aliases", - "core-graphics", - "foreign-types", - "js-sys", - "log", - "objc2 0.5.2", - "objc2-foundation 0.2.2", - "objc2-quartz-core 0.2.2", - "raw-window-handle", - "redox_syscall", - "wasm-bindgen", - "web-sys", - "windows-sys 0.59.0", -] - -[[package]] -name = "soup3" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" -dependencies = [ - "futures-channel", - "gio", - "glib", - "libc", - "soup3-sys", -] - -[[package]] -name = "soup3-sys" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" -dependencies = [ - "gio-sys", - "glib-sys", - "gobject-sys", - "libc", - "system-deps", -] - -[[package]] -name = "stable_deref_trait" -version = "1.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" - -[[package]] -name = "string_cache" -version = "0.8.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" -dependencies = [ - "new_debug_unreachable", - "parking_lot", - "phf_shared 0.11.3", - "precomputed-hash", - "serde", -] - -[[package]] -name = "string_cache_codegen" -version = "0.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" -dependencies = [ - "phf_generator 0.11.3", - "phf_shared 0.11.3", - "proc-macro2", - "quote", -] - -[[package]] -name = "strsim" -version = "0.11.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" - -[[package]] -name = "subtle" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" - -[[package]] -name = "swift-rs" -version = "1.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" -dependencies = [ - "base64 0.21.7", - "serde", - "serde_json", -] - -[[package]] -name = "syn" -version = "1.0.109" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "syn" -version = "2.0.101" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf" -dependencies = [ - "proc-macro2", - "quote", - "unicode-ident", -] - -[[package]] -name = "sync_wrapper" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" -dependencies = [ - "futures-core", -] - -[[package]] -name = "synstructure" -version = "0.13.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "system-deps" -version = "6.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" -dependencies = [ - "cfg-expr", - "heck 0.5.0", - "pkg-config", - "toml", - "version-compare", -] - -[[package]] -name = "tao" -version = "0.33.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e59c1f38e657351a2e822eadf40d6a2ad4627b9c25557bc1180ec1b3295ef82" -dependencies = [ - "bitflags 2.9.0", - "core-foundation", - "core-graphics", - "crossbeam-channel", - "dispatch", - "dlopen2", - "dpi", - "gdkwayland-sys", - "gdkx11-sys", - "gtk", - "jni", - "lazy_static", - "libc", - "log", - "ndk", - "ndk-context", - "ndk-sys", - "objc2 0.6.1", - "objc2-app-kit", - "objc2-foundation 0.3.1", - "once_cell", - "parking_lot", - "raw-window-handle", - "scopeguard", - "tao-macros", - "unicode-segmentation", - "url", - "windows 0.61.1", - "windows-core 0.61.0", - "windows-version", - "x11-dl", -] - -[[package]] -name = "tao-macros" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "tar" -version = "0.4.44" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d863878d212c87a19c1a610eb53bb01fe12951c0501cf5a0d65f724914a667a" -dependencies = [ - "filetime", - "libc", - "xattr", -] - -[[package]] -name = "target-lexicon" -version = "0.12.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" - -[[package]] -name = "tauri" -version = "2.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e7b0bc1aec81bda6bc455ea98fcaed26b3c98c1648c627ad6ff1c704e8bf8cbc" -dependencies = [ - "anyhow", - "bytes", - "dirs", - "dunce", - "embed_plist", - "futures-util", - "getrandom 0.2.16", - "glob", - "gtk", - "heck 0.5.0", - "http", - "jni", - "libc", - "log", - "mime", - "muda", - "objc2 0.6.1", - "objc2-app-kit", - "objc2-foundation 0.3.1", - "objc2-ui-kit", - "percent-encoding", - "plist", - "raw-window-handle", - "reqwest", - "serde", - "serde_json", - "serde_repr", - "serialize-to-javascript", - "swift-rs", - "tauri-build", - "tauri-macros", - "tauri-runtime", - "tauri-runtime-wry", - "tauri-utils", - "thiserror 2.0.12", - "tokio", - "tray-icon", - "url", - "urlpattern", - "webkit2gtk", - "webview2-com", - "window-vibrancy", - "windows 0.61.1", -] - -[[package]] -name = "tauri-build" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d7a0350f0df1db385ca5c02888a83e0e66655c245b7443db8b78a70da7d7f8fc" -dependencies = [ - "anyhow", - "cargo_toml", - "dirs", - "glob", - "heck 0.5.0", - "json-patch", - "schemars", - "semver", - "serde", - "serde_json", - "tauri-utils", - "tauri-winres", - "toml", - "walkdir", -] - -[[package]] -name = "tauri-codegen" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f93f035551bf7b11b3f51ad9bc231ebbe5e085565527991c16cf326aa38cdf47" -dependencies = [ - "base64 0.22.1", - "brotli", - "ico", - "json-patch", - "plist", - "png", - "proc-macro2", - "quote", - "semver", - "serde", - "serde_json", - "sha2", - "syn 2.0.101", - "tauri-utils", - "thiserror 2.0.12", - "time", - "url", - "uuid", - "walkdir", -] - -[[package]] -name = "tauri-macros" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8db4df25e2d9d45de0c4c910da61cd5500190da14ae4830749fee3466dddd112" -dependencies = [ - "heck 0.5.0", - "proc-macro2", - "quote", - "syn 2.0.101", - "tauri-codegen", - "tauri-utils", -] - -[[package]] -name = "tauri-plugin" -version = "2.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37a5ebe6a610d1b78a94650896e6f7c9796323f408800cef436e0fa0539de601" -dependencies = [ - "anyhow", - "glob", - "plist", - "schemars", - "serde", - "serde_json", - "tauri-utils", - "toml", - "walkdir", -] - -[[package]] -name = "tauri-plugin-shell" -version = "2.2.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "69d5eb3368b959937ad2aeaf6ef9a8f5d11e01ffe03629d3530707bbcb27ff5d" -dependencies = [ - "encoding_rs", - "log", - "open", - "os_pipe", - "regex", - "schemars", - "serde", - "serde_json", - "shared_child", - "tauri", - "tauri-plugin", - "thiserror 2.0.12", - "tokio", -] - -[[package]] -name = "tauri-plugin-updater" -version = "2.7.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73f05c38afd77a4b8fd98e8fb6f1cdbb5fbb8a46ba181eb2758b05321e3c6209" -dependencies = [ - "base64 0.22.1", - "dirs", - "flate2", - "futures-util", - "http", - "infer", - "log", - "minisign-verify", - "osakit", - "percent-encoding", - "reqwest", - "semver", - "serde", - "serde_json", - "tar", - "tauri", - "tauri-plugin", - "tempfile", - "thiserror 2.0.12", - "time", - "tokio", - "url", - "windows-sys 0.59.0", - "zip", -] - -[[package]] -name = "tauri-runtime" -version = "2.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "00f004905d549854069e6774533d742b03cacfd6f03deb08940a8677586cbe39" -dependencies = [ - "cookie", - "dpi", - "gtk", - "http", - "jni", - "objc2 0.6.1", - "objc2-ui-kit", - "raw-window-handle", - "serde", - "serde_json", - "tauri-utils", - "thiserror 2.0.12", - "url", - "windows 0.61.1", -] - -[[package]] -name = "tauri-runtime-wry" -version = "2.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f85d056f4d4b014fe874814034f3416d57114b617a493a4fe552580851a3f3a2" -dependencies = [ - "gtk", - "http", - "jni", - "log", - "objc2 0.6.1", - "objc2-app-kit", - "objc2-foundation 0.3.1", - "once_cell", - "percent-encoding", - "raw-window-handle", - "softbuffer", - "tao", - "tauri-runtime", - "tauri-utils", - "url", - "webkit2gtk", - "webview2-com", - "windows 0.61.1", - "wry", -] - -[[package]] -name = "tauri-utils" -version = "2.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b2900399c239a471bcff7f15c4399eb1a8c4fe511ba2853e07c996d771a5e0a4" -dependencies = [ - "anyhow", - "brotli", - "cargo_metadata", - "ctor", - "dunce", - "glob", - "html5ever", - "http", - "infer", - "json-patch", - "kuchikiki", - "log", - "memchr", - "phf 0.11.3", - "proc-macro2", - "quote", - "regex", - "schemars", - "semver", - "serde", - "serde-untagged", - "serde_json", - "serde_with", - "swift-rs", - "thiserror 2.0.12", - "toml", - "url", - "urlpattern", - "uuid", - "walkdir", -] - -[[package]] -name = "tauri-winres" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8d321dbc6f998d825ab3f0d62673e810c861aac2d0de2cc2c395328f1d113b4" -dependencies = [ - "embed-resource", - "indexmap 2.9.0", - "toml", -] - -[[package]] -name = "tempfile" -version = "3.19.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7437ac7763b9b123ccf33c338a5cc1bac6f69b45a136c19bdd8a65e3916435bf" -dependencies = [ - "fastrand", - "getrandom 0.3.2", - "once_cell", - "rustix", - "windows-sys 0.59.0", -] - -[[package]] -name = "tendril" -version = "0.4.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" -dependencies = [ - "futf", - "mac", - "utf-8", -] - -[[package]] -name = "term" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c59df8ac95d96ff9bede18eb7300b0fda5e5d8d90960e76f8e14ae765eedbf1f" -dependencies = [ - "dirs-next 2.0.0", - "rustversion", - "winapi", -] - -[[package]] -name = "thin-slice" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8eaa81235c7058867fa8c0e7314f33dcce9c215f535d1913822a2b3f5e289f3c" - -[[package]] -name = "thiserror" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" -dependencies = [ - "thiserror-impl 1.0.69", -] - -[[package]] -name = "thiserror" -version = "2.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708" -dependencies = [ - "thiserror-impl 2.0.12", -] - -[[package]] -name = "thiserror-impl" -version = "1.0.69" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "thiserror-impl" -version = "2.0.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "thread_local" -version = "1.1.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" -dependencies = [ - "cfg-if", - "once_cell", -] - -[[package]] -name = "time" -version = "0.3.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40" -dependencies = [ - "deranged", - "itoa 1.0.15", - "libc", - "num-conv", - "num_threads", - "powerfmt", - "serde", - "time-core", - "time-macros", -] - -[[package]] -name = "time-core" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c" - -[[package]] -name = "time-macros" -version = "0.2.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49" -dependencies = [ - "num-conv", - "time-core", -] - -[[package]] -name = "tiny-keccak" -version = "2.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237" -dependencies = [ - "crunchy", -] - -[[package]] -name = "tinystr" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" -dependencies = [ - "displaydoc", - "zerovec", -] - -[[package]] -name = "tinyvec" -version = "1.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71" -dependencies = [ - "tinyvec_macros", -] - -[[package]] -name = "tinyvec_macros" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" - -[[package]] -name = "tokio" -version = "1.44.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e6b88822cbe49de4185e3a4cbf8321dd487cf5fe0c5c65695fef6346371e9c48" -dependencies = [ - "backtrace", - "bytes", - "libc", - "mio", - "parking_lot", - "pin-project-lite", - "signal-hook-registry", - "socket2", - "tokio-macros", - "windows-sys 0.52.0", -] - -[[package]] -name = "tokio-macros" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "tokio-rustls" -version = "0.26.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e727b36a1a0e8b74c376ac2211e40c2c8af09fb4013c60d910495810f008e9b" -dependencies = [ - "rustls", - "tokio", -] - -[[package]] -name = "tokio-util" -version = "0.7.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df" -dependencies = [ - "bytes", - "futures-core", - "futures-sink", - "pin-project-lite", - "tokio", -] - -[[package]] -name = "toml" -version = "0.8.22" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "05ae329d1f08c4d17a59bed7ff5b5a769d062e64a62d34a3261b219e62cd5aae" -dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit 0.22.26", -] - -[[package]] -name = "toml_datetime" -version = "0.6.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3da5db5a963e24bc68be8b17b6fa82814bb22ee8660f192bb182771d498f09a3" -dependencies = [ - "serde", -] - -[[package]] -name = "toml_edit" -version = "0.19.15" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" -dependencies = [ - "indexmap 2.9.0", - "toml_datetime", - "winnow 0.5.40", -] - -[[package]] -name = "toml_edit" -version = "0.20.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" -dependencies = [ - "indexmap 2.9.0", - "toml_datetime", - "winnow 0.5.40", -] - -[[package]] -name = "toml_edit" -version = "0.22.26" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "310068873db2c5b3e7659d2cc35d21855dbafa50d1ce336397c666e3cb08137e" -dependencies = [ - "indexmap 2.9.0", - "serde", - "serde_spanned", - "toml_datetime", - "toml_write", - "winnow 0.7.9", -] - -[[package]] -name = "toml_write" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfb942dfe1d8e29a7ee7fcbde5bd2b9a25fb89aa70caea2eba3bee836ff41076" - -[[package]] -name = "tower" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" -dependencies = [ - "futures-core", - "futures-util", - "pin-project-lite", - "sync_wrapper", - "tokio", - "tower-layer", - "tower-service", -] - -[[package]] -name = "tower-layer" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" - -[[package]] -name = "tower-service" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" - -[[package]] -name = "tracing" -version = "0.1.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" -dependencies = [ - "pin-project-lite", - "tracing-attributes", - "tracing-core", -] - -[[package]] -name = "tracing-appender" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3566e8ce28cc0a3fe42519fc80e6b4c943cc4c8cef275620eb8dac2d3d4e06cf" -dependencies = [ - "crossbeam-channel", - "thiserror 1.0.69", - "time", - "tracing-subscriber", -] - -[[package]] -name = "tracing-attributes" -version = "0.1.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "tracing-core" -version = "0.1.33" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" -dependencies = [ - "once_cell", - "valuable", -] - -[[package]] -name = "tracing-log" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" -dependencies = [ - "log", - "once_cell", - "tracing-core", -] - -[[package]] -name = "tracing-serde" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" -dependencies = [ - "serde", - "tracing-core", -] - -[[package]] -name = "tracing-subscriber" -version = "0.3.19" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" -dependencies = [ - "matchers", - "nu-ansi-term", - "once_cell", - "regex", - "serde", - "serde_json", - "sharded-slab", - "smallvec", - "thread_local", - "time", - "tracing", - "tracing-core", - "tracing-log", - "tracing-serde", -] - -[[package]] -name = "tray-icon" -version = "0.20.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9f7eee98ec5c90daf179d55c20a49d8c0d043054ce7c26336c09a24d31f14fa0" -dependencies = [ - "crossbeam-channel", - "dirs", - "libappindicator", - "muda", - "objc2 0.6.1", - "objc2-app-kit", - "objc2-core-foundation", - "objc2-core-graphics", - "objc2-foundation 0.3.1", - "once_cell", - "png", - "serde", - "thiserror 2.0.12", - "windows-sys 0.59.0", -] - -[[package]] -name = "try-lock" -version = "0.2.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" - -[[package]] -name = "typeid" -version = "1.0.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" - -[[package]] -name = "typenum" -version = "1.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f" - -[[package]] -name = "unic-char-property" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" -dependencies = [ - "unic-char-range", -] - -[[package]] -name = "unic-char-range" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" - -[[package]] -name = "unic-common" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" - -[[package]] -name = "unic-ucd-ident" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" -dependencies = [ - "unic-char-property", - "unic-char-range", - "unic-ucd-version", -] - -[[package]] -name = "unic-ucd-version" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" -dependencies = [ - "unic-common", -] - -[[package]] -name = "unicode-ident" -version = "1.0.18" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512" - -[[package]] -name = "unicode-segmentation" -version = "1.12.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" - -[[package]] -name = "unicode-xid" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" - -[[package]] -name = "unsafe-libyaml" -version = "0.2.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861" - -[[package]] -name = "untrusted" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" - -[[package]] -name = "url" -version = "2.5.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" -dependencies = [ - "form_urlencoded", - "idna", - "percent-encoding", - "serde", -] - -[[package]] -name = "urlpattern" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" -dependencies = [ - "regex", - "serde", - "unic-ucd-ident", - "url", -] - -[[package]] -name = "utf-8" -version = "0.7.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" - -[[package]] -name = "utf16_iter" -version = "1.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" - -[[package]] -name = "utf8_iter" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" - -[[package]] -name = "uuid" -version = "1.16.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9" -dependencies = [ - "getrandom 0.3.2", - "serde", -] - -[[package]] -name = "valuable" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" - -[[package]] -name = "version-compare" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" - -[[package]] -name = "version_check" -version = "0.9.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" - -[[package]] -name = "vrclipboard-ime-gui" -version = "1.12.0" -dependencies = [ - "anyhow", - "azookey-binding", - "calc", - "chrono", - "chrono-tz", - "clipboard", - "clipboard-master", - "ipc-channel", - "itertools 0.14.0", - "once_cell", - "platform-dirs", - "regex", - "rosc", - "serde", - "serde_derive", - "serde_json", - "serde_yaml", - "tauri", - "tauri-build", - "tauri-plugin-shell", - "tauri-plugin-updater", - "tokio", - "tracing", - "tracing-appender", - "tracing-subscriber", - "wana_kana", - "winapi", - "windows 0.56.0", - "windows-core 0.56.0", - "zip", -] - -[[package]] -name = "vswhom" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" -dependencies = [ - "libc", - "vswhom-sys", -] - -[[package]] -name = "vswhom-sys" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" -dependencies = [ - "cc", - "libc", -] - -[[package]] -name = "walkdir" -version = "2.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" -dependencies = [ - "same-file", - "winapi-util", -] - -[[package]] -name = "wana_kana" -version = "4.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a74666202acfcb4f9b995be2e3e9f7f530deb65e05a1407b8d0b30c9c451238a" -dependencies = [ - "fnv", - "itertools 0.10.5", - "lazy_static", -] - -[[package]] -name = "want" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" -dependencies = [ - "try-lock", -] - -[[package]] -name = "wasi" -version = "0.9.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" - -[[package]] -name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" - -[[package]] -name = "wasi" -version = "0.14.2+wasi-0.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3" -dependencies = [ - "wit-bindgen-rt", -] - -[[package]] -name = "wasm-bindgen" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5" -dependencies = [ - "cfg-if", - "once_cell", - "rustversion", - "wasm-bindgen-macro", -] - -[[package]] -name = "wasm-bindgen-backend" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6" -dependencies = [ - "bumpalo", - "log", - "proc-macro2", - "quote", - "syn 2.0.101", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-futures" -version = "0.4.50" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61" -dependencies = [ - "cfg-if", - "js-sys", - "once_cell", - "wasm-bindgen", - "web-sys", -] - -[[package]] -name = "wasm-bindgen-macro" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407" -dependencies = [ - "quote", - "wasm-bindgen-macro-support", -] - -[[package]] -name = "wasm-bindgen-macro-support" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", - "wasm-bindgen-backend", - "wasm-bindgen-shared", -] - -[[package]] -name = "wasm-bindgen-shared" -version = "0.2.100" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d" -dependencies = [ - "unicode-ident", -] - -[[package]] -name = "wasm-streams" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65" -dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "web-sys" -version = "0.3.77" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "web-time" -version = "1.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" -dependencies = [ - "js-sys", - "wasm-bindgen", -] - -[[package]] -name = "webkit2gtk" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76b1bc1e54c581da1e9f179d0b38512ba358fb1af2d634a1affe42e37172361a" -dependencies = [ - "bitflags 1.3.2", - "cairo-rs", - "gdk", - "gdk-sys", - "gio", - "gio-sys", - "glib", - "glib-sys", - "gobject-sys", - "gtk", - "gtk-sys", - "javascriptcore-rs", - "libc", - "once_cell", - "soup3", - "webkit2gtk-sys", -] - -[[package]] -name = "webkit2gtk-sys" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "62daa38afc514d1f8f12b8693d30d5993ff77ced33ce30cd04deebc267a6d57c" -dependencies = [ - "bitflags 1.3.2", - "cairo-sys-rs", - "gdk-sys", - "gio-sys", - "glib-sys", - "gobject-sys", - "gtk-sys", - "javascriptcore-rs-sys", - "libc", - "pkg-config", - "soup3-sys", - "system-deps", -] - -[[package]] -name = "webpki-roots" -version = "0.26.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37493cadf42a2a939ed404698ded7fb378bf301b5011f973361779a3a74f8c93" -dependencies = [ - "rustls-pki-types", -] - -[[package]] -name = "webview2-com" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b542b5cfbd9618c46c2784e4d41ba218c336ac70d44c55e47b251033e7d85601" -dependencies = [ - "webview2-com-macros", - "webview2-com-sys", - "windows 0.61.1", - "windows-core 0.61.0", - "windows-implement 0.60.0", - "windows-interface 0.59.1", -] - -[[package]] -name = "webview2-com-macros" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d228f15bba3b9d56dde8bddbee66fa24545bd17b48d5128ccf4a8742b18e431" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "webview2-com-sys" -version = "0.37.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ae2d11c4a686e4409659d7891791254cf9286d3cfe0eef54df1523533d22295" -dependencies = [ - "thiserror 2.0.12", - "windows 0.61.1", - "windows-core 0.61.0", -] - -[[package]] -name = "winapi" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" -dependencies = [ - "winapi-i686-pc-windows-gnu", - "winapi-x86_64-pc-windows-gnu", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" - -[[package]] -name = "winapi-util" -version = "0.1.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb" -dependencies = [ - "windows-sys 0.59.0", -] - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "window-vibrancy" -version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" -dependencies = [ - "objc2 0.6.1", - "objc2-app-kit", - "objc2-core-foundation", - "objc2-foundation 0.3.1", - "raw-window-handle", - "windows-sys 0.59.0", - "windows-version", -] - -[[package]] -name = "windows" -version = "0.56.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1de69df01bdf1ead2f4ac895dc77c9351aefff65b2f3db429a343f9cbf05e132" -dependencies = [ - "windows-core 0.56.0", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" -dependencies = [ - "windows-core 0.58.0", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows" -version = "0.61.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c5ee8f3d025738cb02bad7868bbb5f8a6327501e870bf51f1b455b0a2454a419" -dependencies = [ - "windows-collections", - "windows-core 0.61.0", - "windows-future", - "windows-link", - "windows-numerics", -] - -[[package]] -name = "windows-collections" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" -dependencies = [ - "windows-core 0.61.0", -] - -[[package]] -name = "windows-core" -version = "0.56.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4698e52ed2d08f8658ab0c39512a7c00ee5fe2688c65f8c0a4f06750d729f2a6" -dependencies = [ - "windows-implement 0.56.0", - "windows-interface 0.56.0", - "windows-result 0.1.2", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-core" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" -dependencies = [ - "windows-implement 0.58.0", - "windows-interface 0.58.0", - "windows-result 0.2.0", - "windows-strings 0.1.0", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-core" -version = "0.61.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4763c1de310c86d75a878046489e2e5ba02c649d185f21c67d4cf8a56d098980" -dependencies = [ - "windows-implement 0.60.0", - "windows-interface 0.59.1", - "windows-link", - "windows-result 0.3.2", - "windows-strings 0.4.0", -] - -[[package]] -name = "windows-future" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a1d6bbefcb7b60acd19828e1bc965da6fcf18a7e39490c5f8be71e54a19ba32" -dependencies = [ - "windows-core 0.61.0", - "windows-link", -] - -[[package]] -name = "windows-implement" -version = "0.56.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f6fc35f58ecd95a9b71c4f2329b911016e6bec66b3f2e6a4aad86bd2e99e2f9b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "windows-implement" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "windows-implement" -version = "0.60.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "windows-interface" -version = "0.56.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "08990546bf4edef8f431fa6326e032865f27138718c587dc21bc0265bbcb57cc" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "windows-interface" -version = "0.58.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "windows-interface" -version = "0.59.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "windows-link" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76840935b766e1b0a05c0066835fb9ec80071d4c09a16f6bd5f7e655e3c14c38" - -[[package]] -name = "windows-numerics" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" -dependencies = [ - "windows-core 0.61.0", - "windows-link", -] - -[[package]] -name = "windows-registry" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4286ad90ddb45071efd1a66dfa43eb02dd0dfbae1545ad6cc3c51cf34d7e8ba3" -dependencies = [ - "windows-result 0.3.2", - "windows-strings 0.3.1", - "windows-targets 0.53.0", -] - -[[package]] -name = "windows-result" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8" -dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-result" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e" -dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-result" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c64fd11a4fd95df68efcfee5f44a294fe71b8bc6a91993e2791938abcc712252" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows-strings" -version = "0.1.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" -dependencies = [ - "windows-result 0.2.0", - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-strings" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows-strings" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a2ba9642430ee452d5a7aa78d72907ebe8cfda358e8cb7918a2050581322f97" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows-sys" -version = "0.45.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" -dependencies = [ - "windows-targets 0.42.2", -] - -[[package]] -name = "windows-sys" -version = "0.48.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" -dependencies = [ - "windows-targets 0.48.5", -] - -[[package]] -name = "windows-sys" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" -dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-sys" -version = "0.59.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" -dependencies = [ - "windows-targets 0.52.6", -] - -[[package]] -name = "windows-targets" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" -dependencies = [ - "windows_aarch64_gnullvm 0.42.2", - "windows_aarch64_msvc 0.42.2", - "windows_i686_gnu 0.42.2", - "windows_i686_msvc 0.42.2", - "windows_x86_64_gnu 0.42.2", - "windows_x86_64_gnullvm 0.42.2", - "windows_x86_64_msvc 0.42.2", -] - -[[package]] -name = "windows-targets" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" -dependencies = [ - "windows_aarch64_gnullvm 0.48.5", - "windows_aarch64_msvc 0.48.5", - "windows_i686_gnu 0.48.5", - "windows_i686_msvc 0.48.5", - "windows_x86_64_gnu 0.48.5", - "windows_x86_64_gnullvm 0.48.5", - "windows_x86_64_msvc 0.48.5", -] - -[[package]] -name = "windows-targets" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" -dependencies = [ - "windows_aarch64_gnullvm 0.52.6", - "windows_aarch64_msvc 0.52.6", - "windows_i686_gnu 0.52.6", - "windows_i686_gnullvm 0.52.6", - "windows_i686_msvc 0.52.6", - "windows_x86_64_gnu 0.52.6", - "windows_x86_64_gnullvm 0.52.6", - "windows_x86_64_msvc 0.52.6", -] - -[[package]] -name = "windows-targets" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1e4c7e8ceaaf9cb7d7507c974735728ab453b67ef8f18febdd7c11fe59dca8b" -dependencies = [ - "windows_aarch64_gnullvm 0.53.0", - "windows_aarch64_msvc 0.53.0", - "windows_i686_gnu 0.53.0", - "windows_i686_gnullvm 0.53.0", - "windows_i686_msvc 0.53.0", - "windows_x86_64_gnu 0.53.0", - "windows_x86_64_gnullvm 0.53.0", - "windows_x86_64_msvc 0.53.0", -] - -[[package]] -name = "windows-version" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e04a5c6627e310a23ad2358483286c7df260c964eb2d003d8efd6d0f4e79265c" -dependencies = [ - "windows-link", -] - -[[package]] -name = "windows-win" -version = "2.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8d4243ec23afe4e9b4e668b3c0a0e973f1b8265f6a46223cfcbc16fd267480c0" -dependencies = [ - "winapi", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c" - -[[package]] -name = "windows_i686_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" - -[[package]] -name = "windows_i686_gnu" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" - -[[package]] -name = "windows_i686_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" - -[[package]] -name = "windows_i686_gnu" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" - -[[package]] -name = "windows_i686_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11" - -[[package]] -name = "windows_i686_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" - -[[package]] -name = "windows_i686_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" - -[[package]] -name = "windows_i686_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" - -[[package]] -name = "windows_i686_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.42.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.48.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.52.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.53.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" - -[[package]] -name = "winnow" -version = "0.5.40" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" -dependencies = [ - "memchr", -] - -[[package]] -name = "winnow" -version = "0.7.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9fb597c990f03753e08d3c29efbfcf2019a003b4bf4ba19225c158e1549f0f3" -dependencies = [ - "memchr", -] - -[[package]] -name = "winreg" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5" -dependencies = [ - "cfg-if", - "windows-sys 0.48.0", -] - -[[package]] -name = "wit-bindgen-rt" -version = "0.39.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1" -dependencies = [ - "bitflags 2.9.0", -] - -[[package]] -name = "write16" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" - -[[package]] -name = "writeable" -version = "0.5.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" - -[[package]] -name = "wry" -version = "0.51.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c886a0a9d2a94fd90cfa1d929629b79cfefb1546e2c7430c63a47f0664c0e4e2" -dependencies = [ - "base64 0.22.1", - "block2 0.6.1", - "cookie", - "crossbeam-channel", - "dpi", - "dunce", - "gdkx11", - "gtk", - "html5ever", - "http", - "javascriptcore-rs", - "jni", - "kuchikiki", - "libc", - "ndk", - "objc2 0.6.1", - "objc2-app-kit", - "objc2-core-foundation", - "objc2-foundation 0.3.1", - "objc2-ui-kit", - "objc2-web-kit", - "once_cell", - "percent-encoding", - "raw-window-handle", - "sha2", - "soup3", - "tao-macros", - "thiserror 2.0.12", - "url", - "webkit2gtk", - "webkit2gtk-sys", - "webview2-com", - "windows 0.61.1", - "windows-core 0.61.0", - "windows-version", - "x11-dl", -] - -[[package]] -name = "x11" -version = "2.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" -dependencies = [ - "libc", - "pkg-config", -] - -[[package]] -name = "x11-clipboard" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89bd49c06c9eb5d98e6ba6536cf64ac9f7ee3a009b2f53996d405b3944f6bcea" -dependencies = [ - "xcb 0.8.2", -] - -[[package]] -name = "x11-clipboard" -version = "0.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "473068b7b80ac86a18328824f1054e5e007898c47b5bbc281bd7abe32bc3653c" -dependencies = [ - "xcb 0.10.1", -] - -[[package]] -name = "x11-dl" -version = "2.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" -dependencies = [ - "libc", - "once_cell", - "pkg-config", -] - -[[package]] -name = "xattr" -version = "1.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d65cbf2f12c15564212d48f4e3dfb87923d25d611f2aed18f4cb23f0413d89e" -dependencies = [ - "libc", - "rustix", -] - -[[package]] -name = "xcb" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e917a3f24142e9ff8be2414e36c649d47d6cc2ba81f16201cdef96e533e02de" -dependencies = [ - "libc", - "log", -] - -[[package]] -name = "xcb" -version = "0.10.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "771e2b996df720cd1c6dd9ff90f62d91698fd3610cc078388d0564bdd6622a9c" -dependencies = [ - "libc", - "log", - "quick-xml 0.22.0", -] - -[[package]] -name = "xz2" -version = "0.1.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2" -dependencies = [ - "lzma-sys", -] - -[[package]] -name = "yoke" -version = "0.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" -dependencies = [ - "serde", - "stable_deref_trait", - "yoke-derive", - "zerofrom", -] - -[[package]] -name = "yoke-derive" -version = "0.7.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", - "synstructure", -] - -[[package]] -name = "zerocopy" -version = "0.8.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb" -dependencies = [ - "zerocopy-derive", -] - -[[package]] -name = "zerocopy-derive" -version = "0.8.25" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "zerofrom" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" -dependencies = [ - "zerofrom-derive", -] - -[[package]] -name = "zerofrom-derive" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", - "synstructure", -] - -[[package]] -name = "zeroize" -version = "1.8.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" -dependencies = [ - "zeroize_derive", -] - -[[package]] -name = "zeroize_derive" -version = "1.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "zerovec" -version = "0.10.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" -dependencies = [ - "yoke", - "zerofrom", - "zerovec-derive", -] - -[[package]] -name = "zerovec-derive" -version = "0.10.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" -dependencies = [ - "proc-macro2", - "quote", - "syn 2.0.101", -] - -[[package]] -name = "zip" -version = "2.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1dcb24d0152526ae49b9b96c1dcf71850ca1e0b882e4e28ed898a93c41334744" -dependencies = [ - "aes", - "arbitrary", - "bzip2", - "constant_time_eq", - "crc32fast", - "crossbeam-utils", - "deflate64", - "flate2", - "getrandom 0.3.2", - "hmac", - "indexmap 2.9.0", - "lzma-rs", - "memchr", - "pbkdf2", - "sha1", - "time", - "xz2", - "zeroize", - "zopfli", - "zstd", -] - -[[package]] -name = "zopfli" -version = "0.8.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "edfc5ee405f504cd4984ecc6f14d02d55cfda60fa4b689434ef4102aae150cd7" -dependencies = [ - "bumpalo", - "crc32fast", - "log", - "simd-adler32", -] - -[[package]] -name = "zstd" -version = "0.13.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a" -dependencies = [ - "zstd-safe", -] - -[[package]] -name = "zstd-safe" -version = "7.2.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d" -dependencies = [ - "zstd-sys", -] - -[[package]] -name = "zstd-sys" -version = "2.0.15+zstd.1.5.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237" -dependencies = [ - "cc", - "pkg-config", -] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index bdea8f6..702cd91 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,86 +1,26 @@ [package] name = "vrclipboard-ime-gui" -version = "1.12.0" -description = "VRClipboard IME" -authors = ["mii"] +version = "0.1.0" +description = "A Tauri App" +authors = ["you"] edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[lib] +# The `_lib` suffix may seem redundant but it is necessary +# to make the lib name unique and wouldn't conflict with the bin name. +# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519 +name = "vrclipboard_ime_gui_lib" +crate-type = ["staticlib", "cdylib", "rlib"] + [build-dependencies] -tauri-build = { version = "2.0.0-rc", features = [] } +tauri-build = { version = "2", features = [] } [dependencies] -tauri = { version = "2.0.0-rc", features = [] } +tauri = { version = "2", features = [] } +tauri-plugin-opener = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" -chrono = "0.4.38" -chrono-tz = "0.9.0" -anyhow = "1.0.86" -clipboard = "0.5.0" -clipboard-master = "3.1.3" -serde_derive = "1.0.203" -serde_yaml = "0.9.34" -calc = { version = "*", default-features = false } -platform-dirs = "0.3.0" -once_cell = "1.19.0" -rosc = "~0.10" -regex = "1" -windows-core = "0.56.0" -tracing = "0.1" -tracing-appender = "0.2" -tauri-plugin-shell = "2.0.0-rc" -azookey-binding = { path = "../../rs-azookey-binding" } -tokio = { version = "1.44.2", features = ["full"] } -ipc-channel = "0.19.0" -zip = "2.6.1" -wana_kana = "4.0.0" -itertools = "0.14.0" -winapi = { version = "0.3", features = ["winreg", "winnt"] } +open = "5.3.2" -[dependencies.tracing-subscriber] -version = "0.3.16" -features = ["env-filter", "fmt", "json", "local-time", "time"] - -[dependencies.windows] -version = "0.56.0" -features = [ - "implement", - "Win32_System_Com", - "Win32_UI_Input_Ime", - "Win32_UI_TextServices", - "Win32_UI_Input_KeyboardAndMouse", - "Win32_System_DataExchange", - "Win32_UI_WindowsAndMessaging", - "Foundation_Numerics", - "UI", - "Win32_Foundation", - "Win32_Globalization", - "Win32_Graphics_Direct2D", - "Win32_Graphics_Direct2D_Common", - "Win32_Graphics_DirectWrite", - "Win32_Graphics_Dxgi_Common", - "Win32_Graphics_Dwm", - "Win32_Graphics_Gdi", - "Win32_Graphics_Imaging", - "Win32_Security", - "Win32_System_Com", - "Win32_System_Console", - "Win32_System_Diagnostics_Debug", - "Win32_System_LibraryLoader", - "Win32_System_Ole", - "Win32_System_SystemServices", - "Win32_System_Registry", - "Win32_System_Variant", - "Win32_System_WindowsProgramming", - "Win32_UI_Controls", - "Win32_UI_HiDpi", -] - - -[features] -# This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!! -custom-protocol = ["tauri/custom-protocol"] - -[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies] -tauri-plugin-updater = "2.0.0-rc" diff --git a/src-tauri/capabilities/default.json b/src-tauri/capabilities/default.json index 12c67a6..10f5af8 100644 --- a/src-tauri/capabilities/default.json +++ b/src-tauri/capabilities/default.json @@ -1,15 +1,13 @@ { - "identifier": "desktop-capability", - "platforms": [ - "macOS", - "windows", - "linux" + "$schema": "../gen/schemas/desktop-schema.json", + "identifier": "default", + "description": "Capability for the main window", + "windows": [ + "main" ], - "windows": ["main"], "permissions": [ - "updater:allow-check", - "updater:allow-download", - "updater:allow-install", - "updater:allow-download-and-install" + "core:default", + "opener:default", + "opener:default" ] } \ No newline at end of file diff --git a/src-tauri/capabilities/migrated.json b/src-tauri/capabilities/migrated.json deleted file mode 100644 index 642d931..0000000 --- a/src-tauri/capabilities/migrated.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "identifier": "migrated", - "description": "permissions that were migrated from v1", - "local": true, - "windows": [ - "main" - ], - "permissions": [ - "core:default", - "core:window:allow-maximize", - "core:window:allow-unmaximize", - "core:window:allow-minimize", - "core:window:allow-unminimize", - "core:window:allow-show", - "core:window:allow-hide", - "core:window:allow-close", - "core:window:allow-start-dragging", - "shell:allow-open" - ] -} \ No newline at end of file diff --git a/src-tauri/config.yaml b/src-tauri/config.yaml deleted file mode 100644 index 784457d..0000000 --- a/src-tauri/config.yaml +++ /dev/null @@ -1,4 +0,0 @@ -prefix: ";" -command: ";" -split: "/" -ignore_prefix: false \ No newline at end of file diff --git a/src-tauri/icons/128x128.png b/src-tauri/icons/128x128.png index 249fb29..6be5e50 100644 Binary files a/src-tauri/icons/128x128.png and b/src-tauri/icons/128x128.png differ diff --git a/src-tauri/icons/128x128@2x.png b/src-tauri/icons/128x128@2x.png index 35bfdc1..e81bece 100644 Binary files a/src-tauri/icons/128x128@2x.png and b/src-tauri/icons/128x128@2x.png differ diff --git a/src-tauri/icons/32x32.png b/src-tauri/icons/32x32.png index e41220a..a437dd5 100644 Binary files a/src-tauri/icons/32x32.png and b/src-tauri/icons/32x32.png differ diff --git a/src-tauri/icons/Square107x107Logo.png b/src-tauri/icons/Square107x107Logo.png index 7f7c27a..0ca4f27 100644 Binary files a/src-tauri/icons/Square107x107Logo.png and b/src-tauri/icons/Square107x107Logo.png differ diff --git a/src-tauri/icons/Square142x142Logo.png b/src-tauri/icons/Square142x142Logo.png index d706e9d..b81f820 100644 Binary files a/src-tauri/icons/Square142x142Logo.png and b/src-tauri/icons/Square142x142Logo.png differ diff --git a/src-tauri/icons/Square150x150Logo.png b/src-tauri/icons/Square150x150Logo.png index 4eadebd..624c7bf 100644 Binary files a/src-tauri/icons/Square150x150Logo.png and b/src-tauri/icons/Square150x150Logo.png differ diff --git a/src-tauri/icons/Square284x284Logo.png b/src-tauri/icons/Square284x284Logo.png index 906a848..c021d2b 100644 Binary files a/src-tauri/icons/Square284x284Logo.png and b/src-tauri/icons/Square284x284Logo.png differ diff --git a/src-tauri/icons/Square30x30Logo.png b/src-tauri/icons/Square30x30Logo.png index 1a1dad5..6219700 100644 Binary files a/src-tauri/icons/Square30x30Logo.png and b/src-tauri/icons/Square30x30Logo.png differ diff --git a/src-tauri/icons/Square310x310Logo.png b/src-tauri/icons/Square310x310Logo.png index b030b05..f9bc048 100644 Binary files a/src-tauri/icons/Square310x310Logo.png and b/src-tauri/icons/Square310x310Logo.png differ diff --git a/src-tauri/icons/Square44x44Logo.png b/src-tauri/icons/Square44x44Logo.png index dca7cfe..d5fbfb2 100644 Binary files a/src-tauri/icons/Square44x44Logo.png and b/src-tauri/icons/Square44x44Logo.png differ diff --git a/src-tauri/icons/Square71x71Logo.png b/src-tauri/icons/Square71x71Logo.png index 377a360..63440d7 100644 Binary files a/src-tauri/icons/Square71x71Logo.png and b/src-tauri/icons/Square71x71Logo.png differ diff --git a/src-tauri/icons/Square89x89Logo.png b/src-tauri/icons/Square89x89Logo.png index 61388c7..f3f705a 100644 Binary files a/src-tauri/icons/Square89x89Logo.png and b/src-tauri/icons/Square89x89Logo.png differ diff --git a/src-tauri/icons/StoreLogo.png b/src-tauri/icons/StoreLogo.png index 303a79d..4556388 100644 Binary files a/src-tauri/icons/StoreLogo.png and b/src-tauri/icons/StoreLogo.png differ diff --git a/src-tauri/icons/icon.icns b/src-tauri/icons/icon.icns index e89ad8b..12a5bce 100644 Binary files a/src-tauri/icons/icon.icns and b/src-tauri/icons/icon.icns differ diff --git a/src-tauri/icons/icon.ico b/src-tauri/icons/icon.ico index 93d8eed..b3636e4 100644 Binary files a/src-tauri/icons/icon.ico and b/src-tauri/icons/icon.ico differ diff --git a/src-tauri/icons/icon.png b/src-tauri/icons/icon.png index 15f3bfb..e1cd261 100644 Binary files a/src-tauri/icons/icon.png and b/src-tauri/icons/icon.png differ diff --git a/src-tauri/resources/AzooKeyDictionary.zip b/src-tauri/resources/AzooKeyDictionary.zip deleted file mode 100644 index 91c9117..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary.zip and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/.gitkeep b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/.gitkeep b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/0.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/0.binary deleted file mode 100644 index 8137bd6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/0.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1.binary deleted file mode 100644 index e5171a6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/10.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/10.binary deleted file mode 100644 index 6cdd003..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/10.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/100.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/100.binary deleted file mode 100644 index 0aa6ea2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/100.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1000.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1000.binary deleted file mode 100644 index 878ebd4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1000.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1001.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1001.binary deleted file mode 100644 index 430165a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1001.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1002.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1002.binary deleted file mode 100644 index 0302bcb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1002.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1003.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1003.binary deleted file mode 100644 index e5fdd6b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1003.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1004.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1004.binary deleted file mode 100644 index 8e626ed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1004.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1005.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1005.binary deleted file mode 100644 index 6d18e6a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1005.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1006.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1006.binary deleted file mode 100644 index 635c7e9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1006.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1007.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1007.binary deleted file mode 100644 index 9231bfd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1007.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1008.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1008.binary deleted file mode 100644 index ca79eb7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1008.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1009.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1009.binary deleted file mode 100644 index 155eb46..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1009.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/101.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/101.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/101.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1010.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1010.binary deleted file mode 100644 index 8fe9ca7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1010.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1011.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1011.binary deleted file mode 100644 index acf1fe3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1011.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1012.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1012.binary deleted file mode 100644 index d2124e0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1012.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1013.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1013.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1013.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1014.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1014.binary deleted file mode 100644 index ba792dc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1014.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1015.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1015.binary deleted file mode 100644 index 3f119ef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1015.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1016.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1016.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1016.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1017.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1017.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1017.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1018.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1018.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1018.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1019.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1019.binary deleted file mode 100644 index 1d16a93..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1019.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/102.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/102.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/102.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1020.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1020.binary deleted file mode 100644 index eadb8bb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1020.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1021.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1021.binary deleted file mode 100644 index 71e63c5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1021.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1022.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1022.binary deleted file mode 100644 index 7258fb7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1022.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1023.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1023.binary deleted file mode 100644 index e646a02..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1023.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1024.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1024.binary deleted file mode 100644 index 6916a59..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1024.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1025.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1025.binary deleted file mode 100644 index bafd1e2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1025.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1026.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1026.binary deleted file mode 100644 index 6a08ff5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1026.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1027.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1027.binary deleted file mode 100644 index dcec42b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1027.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1028.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1028.binary deleted file mode 100644 index 0672b8e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1028.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1029.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1029.binary deleted file mode 100644 index 9c0b307..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1029.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/103.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/103.binary deleted file mode 100644 index 1d7897c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/103.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1030.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1030.binary deleted file mode 100644 index 83dc06d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1030.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1031.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1031.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1031.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1032.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1032.binary deleted file mode 100644 index c1e9d72..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1032.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1033.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1033.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1033.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1034.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1034.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1034.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1035.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1035.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1035.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1036.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1036.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1036.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1037.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1037.binary deleted file mode 100644 index da66dfe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1037.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1038.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1038.binary deleted file mode 100644 index 5fae3f4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1038.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1039.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1039.binary deleted file mode 100644 index 1873498..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1039.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/104.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/104.binary deleted file mode 100644 index a9d3388..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/104.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1040.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1040.binary deleted file mode 100644 index 01e20fa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1040.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1041.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1041.binary deleted file mode 100644 index 6cd26cf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1041.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1042.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1042.binary deleted file mode 100644 index 25ce928..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1042.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1043.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1043.binary deleted file mode 100644 index f618dfc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1043.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1044.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1044.binary deleted file mode 100644 index e02b1e7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1044.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1045.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1045.binary deleted file mode 100644 index 2806d8f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1045.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1046.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1046.binary deleted file mode 100644 index 41031ed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1046.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1047.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1047.binary deleted file mode 100644 index 21fd044..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1047.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1048.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1048.binary deleted file mode 100644 index 2b9ec05..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1048.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1049.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1049.binary deleted file mode 100644 index d321009..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1049.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/105.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/105.binary deleted file mode 100644 index 3e0779b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/105.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1050.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1050.binary deleted file mode 100644 index 39662c8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1050.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1051.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1051.binary deleted file mode 100644 index aeae065..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1051.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1052.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1052.binary deleted file mode 100644 index 40308ba..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1052.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1053.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1053.binary deleted file mode 100644 index 715ba2e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1053.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1054.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1054.binary deleted file mode 100644 index efc0345..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1054.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1055.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1055.binary deleted file mode 100644 index 0200fc2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1055.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1056.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1056.binary deleted file mode 100644 index 48cdb06..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1056.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1057.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1057.binary deleted file mode 100644 index 74b3c27..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1057.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1058.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1058.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1058.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1059.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1059.binary deleted file mode 100644 index e39f9b2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1059.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/106.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/106.binary deleted file mode 100644 index 040d5c1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/106.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1060.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1060.binary deleted file mode 100644 index 3749514..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1060.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1061.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1061.binary deleted file mode 100644 index db11e36..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1061.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1062.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1062.binary deleted file mode 100644 index e5c750f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1062.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1063.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1063.binary deleted file mode 100644 index 467d48e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1063.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1064.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1064.binary deleted file mode 100644 index 73bb7ef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1064.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1065.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1065.binary deleted file mode 100644 index 06f03ad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1065.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1066.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1066.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1066.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1067.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1067.binary deleted file mode 100644 index 29b669a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1067.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1068.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1068.binary deleted file mode 100644 index 6d53532..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1068.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1069.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1069.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1069.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/107.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/107.binary deleted file mode 100644 index f7bfcd2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/107.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1070.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1070.binary deleted file mode 100644 index 8ed9521..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1070.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1071.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1071.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1071.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1072.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1072.binary deleted file mode 100644 index cdc3482..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1072.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1073.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1073.binary deleted file mode 100644 index f2f1530..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1073.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1074.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1074.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1074.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1075.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1075.binary deleted file mode 100644 index f2f1530..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1075.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1076.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1076.binary deleted file mode 100644 index bdc9774..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1076.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1077.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1077.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1077.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1078.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1078.binary deleted file mode 100644 index fcf7b6b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1078.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1079.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1079.binary deleted file mode 100644 index ac57728..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1079.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/108.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/108.binary deleted file mode 100644 index a0bbd7e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/108.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1080.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1080.binary deleted file mode 100644 index a2d4845..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1080.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1081.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1081.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1081.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1082.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1082.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1082.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1083.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1083.binary deleted file mode 100644 index 6efa0fd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1083.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1084.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1084.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1084.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1085.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1085.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1085.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1086.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1086.binary deleted file mode 100644 index ce8f1d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1086.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1087.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1087.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1087.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1088.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1088.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1088.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1089.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1089.binary deleted file mode 100644 index 71cbef5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1089.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/109.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/109.binary deleted file mode 100644 index 56e588a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/109.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1090.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1090.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1090.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1091.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1091.binary deleted file mode 100644 index 4f68a10..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1091.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1092.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1092.binary deleted file mode 100644 index 1d0ed07..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1092.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1093.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1093.binary deleted file mode 100644 index a916ab0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1093.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1094.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1094.binary deleted file mode 100644 index e670425..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1094.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1095.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1095.binary deleted file mode 100644 index a126504..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1095.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1096.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1096.binary deleted file mode 100644 index 6d508bf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1096.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1097.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1097.binary deleted file mode 100644 index fa4edf5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1097.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1098.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1098.binary deleted file mode 100644 index 1aaa467..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1098.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1099.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1099.binary deleted file mode 100644 index c4f4f93..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1099.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/11.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/11.binary deleted file mode 100644 index b310ea1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/11.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/110.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/110.binary deleted file mode 100644 index ba453ab..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/110.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1100.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1100.binary deleted file mode 100644 index 3e76665..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1100.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1101.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1101.binary deleted file mode 100644 index ce7fd43..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1101.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1102.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1102.binary deleted file mode 100644 index baa6c44..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1102.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1103.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1103.binary deleted file mode 100644 index a4d13b8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1103.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1104.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1104.binary deleted file mode 100644 index d25bb51..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1104.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1105.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1105.binary deleted file mode 100644 index 98e59b0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1105.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1106.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1106.binary deleted file mode 100644 index c7f29f9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1106.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1107.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1107.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1107.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1108.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1108.binary deleted file mode 100644 index 606ff8e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1108.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1109.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1109.binary deleted file mode 100644 index 237b2c2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1109.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/111.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/111.binary deleted file mode 100644 index 81325a8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/111.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1110.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1110.binary deleted file mode 100644 index 031c9b8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1110.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1111.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1111.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1111.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1112.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1112.binary deleted file mode 100644 index 8457988..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1112.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1113.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1113.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1113.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1114.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1114.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1114.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1115.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1115.binary deleted file mode 100644 index d9525e7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1115.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1116.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1116.binary deleted file mode 100644 index 67add66..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1116.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1117.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1117.binary deleted file mode 100644 index f8a26e2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1117.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1118.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1118.binary deleted file mode 100644 index 4986505..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1118.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1119.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1119.binary deleted file mode 100644 index 9cdff8e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1119.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/112.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/112.binary deleted file mode 100644 index cc9c5a6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/112.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1120.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1120.binary deleted file mode 100644 index 074c76e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1120.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1121.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1121.binary deleted file mode 100644 index 33c33a7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1121.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1122.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1122.binary deleted file mode 100644 index efeaf8d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1122.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1123.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1123.binary deleted file mode 100644 index 620e505..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1123.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1124.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1124.binary deleted file mode 100644 index 37d41e1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1124.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1125.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1125.binary deleted file mode 100644 index a39173b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1125.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1126.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1126.binary deleted file mode 100644 index fcc70de..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1126.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1127.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1127.binary deleted file mode 100644 index 8df903b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1127.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1128.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1128.binary deleted file mode 100644 index f732c3a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1128.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1129.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1129.binary deleted file mode 100644 index e14ab62..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1129.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/113.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/113.binary deleted file mode 100644 index af2358c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/113.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1130.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1130.binary deleted file mode 100644 index 891d77a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1130.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1131.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1131.binary deleted file mode 100644 index 32c2b3b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1131.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1132.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1132.binary deleted file mode 100644 index 7a16236..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1132.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1133.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1133.binary deleted file mode 100644 index 41082fd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1133.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1134.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1134.binary deleted file mode 100644 index 3fad78e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1134.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1135.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1135.binary deleted file mode 100644 index 34b6073..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1135.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1136.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1136.binary deleted file mode 100644 index b62c9d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1136.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1137.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1137.binary deleted file mode 100644 index 8fd8c54..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1137.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1138.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1138.binary deleted file mode 100644 index d92b317..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1138.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1139.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1139.binary deleted file mode 100644 index b62c9d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1139.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/114.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/114.binary deleted file mode 100644 index d10155f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/114.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1140.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1140.binary deleted file mode 100644 index fc2d501..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1140.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1141.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1141.binary deleted file mode 100644 index fc2d501..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1141.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1142.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1142.binary deleted file mode 100644 index 95014fe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1142.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1143.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1143.binary deleted file mode 100644 index b639c1c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1143.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1144.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1144.binary deleted file mode 100644 index b0c84c6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1144.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1145.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1145.binary deleted file mode 100644 index b0a1257..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1145.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1146.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1146.binary deleted file mode 100644 index e1e44d5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1146.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1147.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1147.binary deleted file mode 100644 index 837e51b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1147.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1148.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1148.binary deleted file mode 100644 index 36097c2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1148.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1149.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1149.binary deleted file mode 100644 index 5ea2adb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1149.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/115.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/115.binary deleted file mode 100644 index 7c78e92..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/115.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1150.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1150.binary deleted file mode 100644 index 053b72d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1150.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1151.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1151.binary deleted file mode 100644 index 3946740..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1151.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1152.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1152.binary deleted file mode 100644 index 91a8397..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1152.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1153.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1153.binary deleted file mode 100644 index c080fa5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1153.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1154.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1154.binary deleted file mode 100644 index 889d1d1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1154.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1155.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1155.binary deleted file mode 100644 index d16d8d3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1155.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1156.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1156.binary deleted file mode 100644 index ff0ba2a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1156.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1157.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1157.binary deleted file mode 100644 index bf6cb0f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1157.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1158.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1158.binary deleted file mode 100644 index 24e1504..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1158.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1159.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1159.binary deleted file mode 100644 index fd252a2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1159.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/116.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/116.binary deleted file mode 100644 index fec0f52..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/116.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1160.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1160.binary deleted file mode 100644 index 1387f24..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1160.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1161.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1161.binary deleted file mode 100644 index af8fcf4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1161.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1162.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1162.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1162.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1163.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1163.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1163.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1164.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1164.binary deleted file mode 100644 index 34d69c1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1164.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1165.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1165.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1165.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1166.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1166.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1166.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1167.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1167.binary deleted file mode 100644 index b9f4759..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1167.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1168.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1168.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1168.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1169.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1169.binary deleted file mode 100644 index fa2ea1a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1169.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/117.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/117.binary deleted file mode 100644 index 34b0418..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/117.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1170.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1170.binary deleted file mode 100644 index 6eac9e0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1170.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1171.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1171.binary deleted file mode 100644 index 8518575..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1171.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1172.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1172.binary deleted file mode 100644 index ffb2073..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1172.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1173.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1173.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1173.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1174.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1174.binary deleted file mode 100644 index 4be79ce..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1174.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1175.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1175.binary deleted file mode 100644 index a63052c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1175.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1176.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1176.binary deleted file mode 100644 index d323270..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1176.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1177.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1177.binary deleted file mode 100644 index 996fa9d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1177.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1178.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1178.binary deleted file mode 100644 index 8c9e188..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1178.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1179.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1179.binary deleted file mode 100644 index 569d7a0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1179.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/118.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/118.binary deleted file mode 100644 index 0c60b31..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/118.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1180.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1180.binary deleted file mode 100644 index 5796b06..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1180.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1181.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1181.binary deleted file mode 100644 index d51dcfe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1181.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1182.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1182.binary deleted file mode 100644 index c42ba56..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1182.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1183.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1183.binary deleted file mode 100644 index 353d39d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1183.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1184.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1184.binary deleted file mode 100644 index 8880062..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1184.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1185.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1185.binary deleted file mode 100644 index 7fdfc06..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1185.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1186.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1186.binary deleted file mode 100644 index a086399..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1186.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1187.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1187.binary deleted file mode 100644 index becd6bf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1187.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1188.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1188.binary deleted file mode 100644 index 067cd4d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1188.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1189.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1189.binary deleted file mode 100644 index d87036d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1189.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/119.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/119.binary deleted file mode 100644 index 32cb7d6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/119.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1190.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1190.binary deleted file mode 100644 index 74cc5ab..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1190.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1191.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1191.binary deleted file mode 100644 index 029e7f3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1191.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1192.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1192.binary deleted file mode 100644 index d420403..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1192.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1193.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1193.binary deleted file mode 100644 index 7b45e36..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1193.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1194.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1194.binary deleted file mode 100644 index 57dd6a7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1194.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1195.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1195.binary deleted file mode 100644 index 15b085e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1195.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1196.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1196.binary deleted file mode 100644 index 62ace6f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1196.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1197.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1197.binary deleted file mode 100644 index 3b015d1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1197.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1198.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1198.binary deleted file mode 100644 index 95a713a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1198.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1199.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1199.binary deleted file mode 100644 index e29e1ad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1199.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/12.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/12.binary deleted file mode 100644 index cbcf8b2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/12.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/120.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/120.binary deleted file mode 100644 index 9a18610..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/120.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1200.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1200.binary deleted file mode 100644 index 2446328..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1200.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1201.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1201.binary deleted file mode 100644 index 08ecd96..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1201.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1202.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1202.binary deleted file mode 100644 index 4b00a1c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1202.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1203.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1203.binary deleted file mode 100644 index a721c81..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1203.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1204.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1204.binary deleted file mode 100644 index 80807b6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1204.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1205.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1205.binary deleted file mode 100644 index 6dacd21..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1205.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1206.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1206.binary deleted file mode 100644 index a10badd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1206.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1207.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1207.binary deleted file mode 100644 index d4f32b7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1207.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1208.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1208.binary deleted file mode 100644 index ffeec6e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1208.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1209.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1209.binary deleted file mode 100644 index 6c73e44..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1209.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/121.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/121.binary deleted file mode 100644 index 792af9c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/121.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1210.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1210.binary deleted file mode 100644 index 05c81f7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1210.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1211.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1211.binary deleted file mode 100644 index 03bfe99..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1211.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1212.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1212.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1212.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1213.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1213.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1213.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1214.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1214.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1214.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1215.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1215.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1215.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1216.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1216.binary deleted file mode 100644 index 66101f0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1216.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1217.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1217.binary deleted file mode 100644 index 21d4715..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1217.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1218.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1218.binary deleted file mode 100644 index 7e8a52a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1218.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1219.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1219.binary deleted file mode 100644 index 6c4f37e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1219.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/122.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/122.binary deleted file mode 100644 index 7ecdee0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/122.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1220.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1220.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1220.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1221.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1221.binary deleted file mode 100644 index 062359d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1221.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1222.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1222.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1222.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1223.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1223.binary deleted file mode 100644 index b961de0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1223.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1224.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1224.binary deleted file mode 100644 index 79ab3aa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1224.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1225.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1225.binary deleted file mode 100644 index 1c6ca84..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1225.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1226.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1226.binary deleted file mode 100644 index 775fd08..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1226.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1227.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1227.binary deleted file mode 100644 index b1f0f82..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1227.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1228.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1228.binary deleted file mode 100644 index f4b5407..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1228.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1229.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1229.binary deleted file mode 100644 index 787a40f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1229.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/123.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/123.binary deleted file mode 100644 index 28dc2e0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/123.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1230.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1230.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1230.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1231.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1231.binary deleted file mode 100644 index 8550200..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1231.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1232.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1232.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1232.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1233.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1233.binary deleted file mode 100644 index f92e624..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1233.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1234.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1234.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1234.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1235.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1235.binary deleted file mode 100644 index 40a21c2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1235.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1236.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1236.binary deleted file mode 100644 index 5501f16..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1236.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1237.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1237.binary deleted file mode 100644 index 592bf56..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1237.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1238.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1238.binary deleted file mode 100644 index be44ced..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1238.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1239.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1239.binary deleted file mode 100644 index be05d6e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1239.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/124.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/124.binary deleted file mode 100644 index 407db88..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/124.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1240.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1240.binary deleted file mode 100644 index 695dce3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1240.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1241.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1241.binary deleted file mode 100644 index 38ed4a1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1241.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1242.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1242.binary deleted file mode 100644 index a0a52d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1242.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1243.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1243.binary deleted file mode 100644 index eed9d9c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1243.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1244.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1244.binary deleted file mode 100644 index 10f655d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1244.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1245.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1245.binary deleted file mode 100644 index 4e25c37..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1245.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1246.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1246.binary deleted file mode 100644 index fe2016c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1246.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1247.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1247.binary deleted file mode 100644 index ee178cb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1247.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1248.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1248.binary deleted file mode 100644 index 83cd651..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1248.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1249.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1249.binary deleted file mode 100644 index 716983b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1249.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/125.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/125.binary deleted file mode 100644 index d0e15da..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/125.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1250.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1250.binary deleted file mode 100644 index 5fbea61..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1250.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1251.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1251.binary deleted file mode 100644 index e6772f2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1251.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1252.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1252.binary deleted file mode 100644 index 60d429b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1252.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1253.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1253.binary deleted file mode 100644 index d87257e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1253.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1254.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1254.binary deleted file mode 100644 index df06f47..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1254.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1255.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1255.binary deleted file mode 100644 index ed952b1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1255.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1256.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1256.binary deleted file mode 100644 index 5761273..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1256.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1257.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1257.binary deleted file mode 100644 index 909933c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1257.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1258.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1258.binary deleted file mode 100644 index ca747f3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1258.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1259.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1259.binary deleted file mode 100644 index 80716d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1259.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/126.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/126.binary deleted file mode 100644 index 6b4db2b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/126.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1260.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1260.binary deleted file mode 100644 index 17f784b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1260.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1261.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1261.binary deleted file mode 100644 index 7c8860f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1261.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1262.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1262.binary deleted file mode 100644 index d7935ed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1262.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1263.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1263.binary deleted file mode 100644 index 8f197c3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1263.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1264.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1264.binary deleted file mode 100644 index 0f9c440..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1264.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1265.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1265.binary deleted file mode 100644 index ccd52d0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1265.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1266.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1266.binary deleted file mode 100644 index 5407a77..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1266.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1267.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1267.binary deleted file mode 100644 index ff3b5a1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1267.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1268.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1268.binary deleted file mode 100644 index 8c17084..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1268.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1269.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1269.binary deleted file mode 100644 index b381857..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1269.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/127.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/127.binary deleted file mode 100644 index 744ae92..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/127.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1270.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1270.binary deleted file mode 100644 index 3f54e4f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1270.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1271.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1271.binary deleted file mode 100644 index 87d6cd8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1271.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1272.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1272.binary deleted file mode 100644 index 79ce6f4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1272.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1273.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1273.binary deleted file mode 100644 index 05945a4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1273.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1274.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1274.binary deleted file mode 100644 index 17244b8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1274.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1275.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1275.binary deleted file mode 100644 index 0fa80b9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1275.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1276.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1276.binary deleted file mode 100644 index 865ac4a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1276.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1277.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1277.binary deleted file mode 100644 index f547b03..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1277.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1278.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1278.binary deleted file mode 100644 index 1b418bf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1278.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1279.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1279.binary deleted file mode 100644 index 27a5d75..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1279.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/128.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/128.binary deleted file mode 100644 index 5da3a95..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/128.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1280.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1280.binary deleted file mode 100644 index 4863ccd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1280.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1281.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1281.binary deleted file mode 100644 index 16e47bb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1281.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1282.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1282.binary deleted file mode 100644 index 674d509..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1282.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1283.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1283.binary deleted file mode 100644 index dd51c5d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1283.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1284.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1284.binary deleted file mode 100644 index 68ec3f8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1284.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1285.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1285.binary deleted file mode 100644 index b7657d1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1285.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1286.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1286.binary deleted file mode 100644 index b26abea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1286.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1287.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1287.binary deleted file mode 100644 index 7017d33..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1287.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1288.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1288.binary deleted file mode 100644 index 23e324c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1288.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1289.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1289.binary deleted file mode 100644 index 5bde41b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1289.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/129.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/129.binary deleted file mode 100644 index 23aec4e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/129.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1290.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1290.binary deleted file mode 100644 index c59118e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1290.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1291.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1291.binary deleted file mode 100644 index d145485..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1291.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1292.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1292.binary deleted file mode 100644 index a91372d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1292.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1293.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1293.binary deleted file mode 100644 index aa368d4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1293.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1294.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1294.binary deleted file mode 100644 index fe3864f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1294.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1295.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1295.binary deleted file mode 100644 index 383b8ad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1295.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1296.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1296.binary deleted file mode 100644 index ef218b6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1296.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1297.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1297.binary deleted file mode 100644 index ca8fea5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1297.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1298.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1298.binary deleted file mode 100644 index 7a7098f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1298.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1299.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1299.binary deleted file mode 100644 index fce74cc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1299.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/13.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/13.binary deleted file mode 100644 index cf5e8bd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/13.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/130.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/130.binary deleted file mode 100644 index d85c271..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/130.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1300.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1300.binary deleted file mode 100644 index 6df8cb2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1300.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1301.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1301.binary deleted file mode 100644 index 5b83358..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1301.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1302.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1302.binary deleted file mode 100644 index c895881..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1302.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1303.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1303.binary deleted file mode 100644 index 9b14af6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1303.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1304.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1304.binary deleted file mode 100644 index d4e4920..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1304.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1305.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1305.binary deleted file mode 100644 index 8a8011d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1305.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1306.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1306.binary deleted file mode 100644 index 5413019..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1306.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1307.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1307.binary deleted file mode 100644 index d0ac2d4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1307.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1308.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1308.binary deleted file mode 100644 index d377aa5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1308.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1309.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1309.binary deleted file mode 100644 index 18fa690..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1309.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/131.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/131.binary deleted file mode 100644 index d0277e4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/131.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1310.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1310.binary deleted file mode 100644 index 7c521a2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1310.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1311.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1311.binary deleted file mode 100644 index 2f5f006..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1311.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1312.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1312.binary deleted file mode 100644 index 8dea506..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1312.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1313.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1313.binary deleted file mode 100644 index 5900bad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1313.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1314.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1314.binary deleted file mode 100644 index 69c6470..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1314.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1315.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1315.binary deleted file mode 100644 index 3e1a5c7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1315.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1316.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1316.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1316.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1317.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1317.binary deleted file mode 100644 index e70a7f2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1317.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1318.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1318.binary deleted file mode 100644 index e58bb69..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/1318.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/132.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/132.binary deleted file mode 100644 index 49f02d2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/132.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/133.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/133.binary deleted file mode 100644 index 4b6e73a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/133.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/134.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/134.binary deleted file mode 100644 index 769f224..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/134.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/135.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/135.binary deleted file mode 100644 index b7ee948..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/135.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/136.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/136.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/136.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/137.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/137.binary deleted file mode 100644 index 5a26968..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/137.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/138.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/138.binary deleted file mode 100644 index 8714275..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/138.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/139.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/139.binary deleted file mode 100644 index 9ee8f34..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/139.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/14.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/14.binary deleted file mode 100644 index e19c5ea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/14.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/140.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/140.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/140.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/141.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/141.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/141.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/142.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/142.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/142.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/143.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/143.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/143.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/144.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/144.binary deleted file mode 100644 index deb92c8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/144.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/145.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/145.binary deleted file mode 100644 index 049260d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/145.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/146.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/146.binary deleted file mode 100644 index ef1a2db..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/146.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/147.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/147.binary deleted file mode 100644 index 0ae0bad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/147.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/148.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/148.binary deleted file mode 100644 index 688c457..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/148.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/149.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/149.binary deleted file mode 100644 index f305bb6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/149.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/15.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/15.binary deleted file mode 100644 index 7f1f197..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/15.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/150.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/150.binary deleted file mode 100644 index da04e84..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/150.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/151.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/151.binary deleted file mode 100644 index ece361e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/151.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/152.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/152.binary deleted file mode 100644 index 29b7fb4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/152.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/153.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/153.binary deleted file mode 100644 index 36de2a2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/153.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/154.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/154.binary deleted file mode 100644 index 67a91cd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/154.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/155.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/155.binary deleted file mode 100644 index e6fa7f0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/155.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/156.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/156.binary deleted file mode 100644 index d2adf76..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/156.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/157.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/157.binary deleted file mode 100644 index 552dc8c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/157.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/158.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/158.binary deleted file mode 100644 index 654933c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/158.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/159.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/159.binary deleted file mode 100644 index 6524858..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/159.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/16.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/16.binary deleted file mode 100644 index fffc9db..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/16.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/160.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/160.binary deleted file mode 100644 index e3ca1f2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/160.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/161.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/161.binary deleted file mode 100644 index d8edad8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/161.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/162.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/162.binary deleted file mode 100644 index 9489449..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/162.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/163.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/163.binary deleted file mode 100644 index 051c985..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/163.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/164.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/164.binary deleted file mode 100644 index 97e0693..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/164.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/165.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/165.binary deleted file mode 100644 index 3355846..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/165.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/166.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/166.binary deleted file mode 100644 index c7a68fd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/166.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/167.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/167.binary deleted file mode 100644 index ca64f66..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/167.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/168.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/168.binary deleted file mode 100644 index fd6a4a0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/168.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/169.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/169.binary deleted file mode 100644 index c8abcd3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/169.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/17.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/17.binary deleted file mode 100644 index be125ad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/17.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/170.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/170.binary deleted file mode 100644 index d91321d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/170.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/171.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/171.binary deleted file mode 100644 index 1cf985d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/171.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/172.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/172.binary deleted file mode 100644 index 85670e4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/172.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/173.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/173.binary deleted file mode 100644 index 2bcc314..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/173.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/174.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/174.binary deleted file mode 100644 index 700cd92..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/174.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/175.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/175.binary deleted file mode 100644 index 4796e05..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/175.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/176.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/176.binary deleted file mode 100644 index 6122c21..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/176.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/177.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/177.binary deleted file mode 100644 index cf724f4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/177.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/178.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/178.binary deleted file mode 100644 index c9e0c70..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/178.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/179.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/179.binary deleted file mode 100644 index ecfd063..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/179.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/18.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/18.binary deleted file mode 100644 index 04f6de8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/18.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/180.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/180.binary deleted file mode 100644 index 415fc3a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/180.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/181.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/181.binary deleted file mode 100644 index ea248c7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/181.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/182.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/182.binary deleted file mode 100644 index 11fd448..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/182.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/183.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/183.binary deleted file mode 100644 index 99d3408..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/183.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/184.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/184.binary deleted file mode 100644 index bf721bc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/184.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/185.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/185.binary deleted file mode 100644 index d335f52..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/185.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/186.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/186.binary deleted file mode 100644 index 87ea8df..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/186.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/187.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/187.binary deleted file mode 100644 index b1996df..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/187.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/188.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/188.binary deleted file mode 100644 index 3ebd568..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/188.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/189.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/189.binary deleted file mode 100644 index f2bbdea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/189.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/19.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/19.binary deleted file mode 100644 index 863f45e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/19.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/190.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/190.binary deleted file mode 100644 index c9db72a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/190.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/191.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/191.binary deleted file mode 100644 index 9cac0b7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/191.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/192.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/192.binary deleted file mode 100644 index 93062cf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/192.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/193.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/193.binary deleted file mode 100644 index 2b8e8aa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/193.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/194.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/194.binary deleted file mode 100644 index 0911ee4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/194.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/195.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/195.binary deleted file mode 100644 index 19f18b2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/195.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/196.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/196.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/196.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/197.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/197.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/197.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/198.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/198.binary deleted file mode 100644 index 7d0f7d1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/198.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/199.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/199.binary deleted file mode 100644 index 3221137..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/199.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/2.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/2.binary deleted file mode 100644 index 0d17f8e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/2.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/20.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/20.binary deleted file mode 100644 index 59a0dbd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/20.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/200.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/200.binary deleted file mode 100644 index 78e0ab6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/200.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/201.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/201.binary deleted file mode 100644 index bef682d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/201.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/202.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/202.binary deleted file mode 100644 index 4375bba..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/202.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/203.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/203.binary deleted file mode 100644 index b34a2ef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/203.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/204.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/204.binary deleted file mode 100644 index 3ecd08b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/204.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/205.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/205.binary deleted file mode 100644 index 8bc2c41..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/205.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/206.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/206.binary deleted file mode 100644 index 080f0d5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/206.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/207.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/207.binary deleted file mode 100644 index bd8af37..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/207.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/208.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/208.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/208.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/209.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/209.binary deleted file mode 100644 index b004b10..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/209.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/21.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/21.binary deleted file mode 100644 index 013d8bc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/21.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/210.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/210.binary deleted file mode 100644 index 4167719..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/210.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/211.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/211.binary deleted file mode 100644 index 23c38c4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/211.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/212.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/212.binary deleted file mode 100644 index 87796cb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/212.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/213.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/213.binary deleted file mode 100644 index 51750ae..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/213.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/214.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/214.binary deleted file mode 100644 index f38a165..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/214.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/215.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/215.binary deleted file mode 100644 index a9b0dc4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/215.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/216.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/216.binary deleted file mode 100644 index 25f9aff..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/216.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/217.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/217.binary deleted file mode 100644 index 6efa0fd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/217.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/218.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/218.binary deleted file mode 100644 index f618dfc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/218.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/219.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/219.binary deleted file mode 100644 index 42d47d0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/219.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/22.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/22.binary deleted file mode 100644 index d604e0d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/22.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/220.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/220.binary deleted file mode 100644 index 2152e2b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/220.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/221.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/221.binary deleted file mode 100644 index e423c38..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/221.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/222.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/222.binary deleted file mode 100644 index f0a7891..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/222.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/223.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/223.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/223.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/224.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/224.binary deleted file mode 100644 index 70922f6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/224.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/225.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/225.binary deleted file mode 100644 index 4c35435..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/225.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/226.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/226.binary deleted file mode 100644 index a5c471d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/226.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/227.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/227.binary deleted file mode 100644 index b07c124..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/227.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/228.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/228.binary deleted file mode 100644 index e59b5eb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/228.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/229.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/229.binary deleted file mode 100644 index a57dee4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/229.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/23.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/23.binary deleted file mode 100644 index 3ddcfa0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/23.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/230.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/230.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/230.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/231.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/231.binary deleted file mode 100644 index 2e68478..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/231.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/232.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/232.binary deleted file mode 100644 index ef51265..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/232.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/233.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/233.binary deleted file mode 100644 index 06af830..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/233.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/234.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/234.binary deleted file mode 100644 index 448cb74..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/234.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/235.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/235.binary deleted file mode 100644 index 8f81867..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/235.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/236.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/236.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/236.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/237.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/237.binary deleted file mode 100644 index 303f082..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/237.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/238.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/238.binary deleted file mode 100644 index 406726d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/238.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/239.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/239.binary deleted file mode 100644 index a249c0e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/239.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/24.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/24.binary deleted file mode 100644 index 18cef23..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/24.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/240.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/240.binary deleted file mode 100644 index e4a6edd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/240.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/241.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/241.binary deleted file mode 100644 index d28c47f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/241.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/242.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/242.binary deleted file mode 100644 index 4ca5408..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/242.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/243.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/243.binary deleted file mode 100644 index 9caa0fc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/243.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/244.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/244.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/244.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/245.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/245.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/245.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/246.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/246.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/246.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/247.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/247.binary deleted file mode 100644 index 5283835..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/247.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/248.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/248.binary deleted file mode 100644 index d9750a2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/248.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/249.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/249.binary deleted file mode 100644 index adec413..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/249.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/25.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/25.binary deleted file mode 100644 index 59e7fda..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/25.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/250.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/250.binary deleted file mode 100644 index 5ef7aa8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/250.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/251.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/251.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/251.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/252.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/252.binary deleted file mode 100644 index 3599c5e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/252.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/253.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/253.binary deleted file mode 100644 index 459866c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/253.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/254.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/254.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/254.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/255.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/255.binary deleted file mode 100644 index 928da24..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/255.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/256.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/256.binary deleted file mode 100644 index 5087707..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/256.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/257.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/257.binary deleted file mode 100644 index 60a2b9c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/257.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/258.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/258.binary deleted file mode 100644 index 760ca35..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/258.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/259.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/259.binary deleted file mode 100644 index 888fabc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/259.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/26.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/26.binary deleted file mode 100644 index 15a7ff6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/26.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/260.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/260.binary deleted file mode 100644 index 2e71364..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/260.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/261.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/261.binary deleted file mode 100644 index 80258d5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/261.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/262.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/262.binary deleted file mode 100644 index 7a4a46d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/262.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/263.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/263.binary deleted file mode 100644 index ea0adeb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/263.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/264.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/264.binary deleted file mode 100644 index 74874cc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/264.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/265.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/265.binary deleted file mode 100644 index 2a7712a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/265.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/266.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/266.binary deleted file mode 100644 index fdd3d21..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/266.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/267.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/267.binary deleted file mode 100644 index d0b6a02..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/267.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/268.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/268.binary deleted file mode 100644 index ffccc68..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/268.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/269.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/269.binary deleted file mode 100644 index 45bb807..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/269.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/27.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/27.binary deleted file mode 100644 index be3bb65..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/27.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/270.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/270.binary deleted file mode 100644 index 4896fe0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/270.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/271.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/271.binary deleted file mode 100644 index d2b9464..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/271.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/272.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/272.binary deleted file mode 100644 index 483dea0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/272.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/273.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/273.binary deleted file mode 100644 index b067659..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/273.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/274.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/274.binary deleted file mode 100644 index fd13732..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/274.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/275.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/275.binary deleted file mode 100644 index 8a1cd30..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/275.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/276.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/276.binary deleted file mode 100644 index 88acb4a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/276.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/277.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/277.binary deleted file mode 100644 index dae9209..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/277.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/278.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/278.binary deleted file mode 100644 index 655b9ab..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/278.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/279.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/279.binary deleted file mode 100644 index 038d494..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/279.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/28.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/28.binary deleted file mode 100644 index 6563efd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/28.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/280.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/280.binary deleted file mode 100644 index 899e038..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/280.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/281.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/281.binary deleted file mode 100644 index 2bff672..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/281.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/282.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/282.binary deleted file mode 100644 index 4e110d6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/282.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/283.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/283.binary deleted file mode 100644 index 64570ea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/283.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/284.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/284.binary deleted file mode 100644 index fcbeb70..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/284.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/285.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/285.binary deleted file mode 100644 index 29d9711..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/285.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/286.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/286.binary deleted file mode 100644 index 52bc7c8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/286.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/287.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/287.binary deleted file mode 100644 index 708bebd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/287.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/288.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/288.binary deleted file mode 100644 index 1bdeabf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/288.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/289.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/289.binary deleted file mode 100644 index 4298f6b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/289.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/29.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/29.binary deleted file mode 100644 index da76335..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/29.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/290.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/290.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/290.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/291.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/291.binary deleted file mode 100644 index 6bf0647..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/291.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/292.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/292.binary deleted file mode 100644 index 65b2875..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/292.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/293.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/293.binary deleted file mode 100644 index 9ba25d0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/293.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/294.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/294.binary deleted file mode 100644 index d0bd8d7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/294.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/295.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/295.binary deleted file mode 100644 index 120e7ba..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/295.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/296.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/296.binary deleted file mode 100644 index 4b3fd98..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/296.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/297.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/297.binary deleted file mode 100644 index 6d85f1c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/297.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/298.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/298.binary deleted file mode 100644 index 89c6fb0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/298.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/299.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/299.binary deleted file mode 100644 index 01615bf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/299.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/3.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/3.binary deleted file mode 100644 index 071fd3a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/3.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/30.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/30.binary deleted file mode 100644 index d8f62d4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/30.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/300.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/300.binary deleted file mode 100644 index 320da59..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/300.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/301.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/301.binary deleted file mode 100644 index 02fd80c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/301.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/302.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/302.binary deleted file mode 100644 index 80ff4ba..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/302.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/303.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/303.binary deleted file mode 100644 index 1c1e8e1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/303.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/304.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/304.binary deleted file mode 100644 index 0ac4824..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/304.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/305.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/305.binary deleted file mode 100644 index 4c20418..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/305.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/306.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/306.binary deleted file mode 100644 index 009e932..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/306.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/307.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/307.binary deleted file mode 100644 index 82c7150..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/307.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/308.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/308.binary deleted file mode 100644 index 0c0c356..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/308.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/309.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/309.binary deleted file mode 100644 index 0f8be9f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/309.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/31.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/31.binary deleted file mode 100644 index c6cd645..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/31.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/310.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/310.binary deleted file mode 100644 index cc1c8d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/310.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/311.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/311.binary deleted file mode 100644 index d25da84..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/311.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/312.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/312.binary deleted file mode 100644 index c686776..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/312.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/313.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/313.binary deleted file mode 100644 index 7c52ab8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/313.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/314.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/314.binary deleted file mode 100644 index 0aeaf9d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/314.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/315.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/315.binary deleted file mode 100644 index 2d55862..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/315.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/316.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/316.binary deleted file mode 100644 index 010a36e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/316.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/317.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/317.binary deleted file mode 100644 index 7d7ca8c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/317.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/318.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/318.binary deleted file mode 100644 index 3b6f4a8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/318.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/319.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/319.binary deleted file mode 100644 index 219a951..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/319.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/32.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/32.binary deleted file mode 100644 index 9839973..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/32.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/320.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/320.binary deleted file mode 100644 index da2a253..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/320.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/321.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/321.binary deleted file mode 100644 index 9c9d36a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/321.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/322.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/322.binary deleted file mode 100644 index 57e2e79..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/322.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/323.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/323.binary deleted file mode 100644 index 38a926b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/323.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/324.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/324.binary deleted file mode 100644 index 76e4db2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/324.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/325.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/325.binary deleted file mode 100644 index 6549aff..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/325.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/326.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/326.binary deleted file mode 100644 index de0bd39..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/326.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/327.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/327.binary deleted file mode 100644 index 3254b1f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/327.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/328.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/328.binary deleted file mode 100644 index 8f0fcb6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/328.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/329.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/329.binary deleted file mode 100644 index a9a8eea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/329.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/33.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/33.binary deleted file mode 100644 index b9c96c3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/33.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/330.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/330.binary deleted file mode 100644 index 3903e58..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/330.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/331.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/331.binary deleted file mode 100644 index 55620c3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/331.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/332.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/332.binary deleted file mode 100644 index eb3f3e1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/332.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/333.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/333.binary deleted file mode 100644 index c5c8a11..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/333.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/334.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/334.binary deleted file mode 100644 index df6759c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/334.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/335.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/335.binary deleted file mode 100644 index eef2554..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/335.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/336.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/336.binary deleted file mode 100644 index 45c1b10..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/336.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/337.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/337.binary deleted file mode 100644 index 076d57f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/337.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/338.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/338.binary deleted file mode 100644 index 1466aaf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/338.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/339.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/339.binary deleted file mode 100644 index 690d19a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/339.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/34.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/34.binary deleted file mode 100644 index 5a845dd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/34.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/340.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/340.binary deleted file mode 100644 index a880151..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/340.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/341.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/341.binary deleted file mode 100644 index 5827aa0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/341.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/342.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/342.binary deleted file mode 100644 index ec59e0f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/342.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/343.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/343.binary deleted file mode 100644 index 1903ec2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/343.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/344.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/344.binary deleted file mode 100644 index 6b08f75..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/344.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/345.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/345.binary deleted file mode 100644 index bef6449..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/345.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/346.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/346.binary deleted file mode 100644 index 764105b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/346.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/347.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/347.binary deleted file mode 100644 index 9006a00..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/347.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/348.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/348.binary deleted file mode 100644 index c00b1c6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/348.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/349.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/349.binary deleted file mode 100644 index c343bd6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/349.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/35.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/35.binary deleted file mode 100644 index d526dbe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/35.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/350.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/350.binary deleted file mode 100644 index 92a469a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/350.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/351.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/351.binary deleted file mode 100644 index d7b65d2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/351.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/352.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/352.binary deleted file mode 100644 index f5249a6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/352.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/353.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/353.binary deleted file mode 100644 index 7c7882e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/353.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/354.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/354.binary deleted file mode 100644 index 96a11e8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/354.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/355.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/355.binary deleted file mode 100644 index a2c1f36..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/355.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/356.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/356.binary deleted file mode 100644 index a3fe32f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/356.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/357.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/357.binary deleted file mode 100644 index a51fe17..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/357.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/358.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/358.binary deleted file mode 100644 index 85d1637..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/358.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/359.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/359.binary deleted file mode 100644 index 315a6c7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/359.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/36.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/36.binary deleted file mode 100644 index 7b51a1d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/36.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/360.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/360.binary deleted file mode 100644 index 29fc8e7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/360.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/361.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/361.binary deleted file mode 100644 index 5059f0e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/361.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/362.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/362.binary deleted file mode 100644 index 5e0db4d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/362.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/363.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/363.binary deleted file mode 100644 index 214645f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/363.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/364.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/364.binary deleted file mode 100644 index d8f49d3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/364.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/365.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/365.binary deleted file mode 100644 index 07f7580..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/365.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/366.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/366.binary deleted file mode 100644 index 9976aa3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/366.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/367.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/367.binary deleted file mode 100644 index 9f52fcb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/367.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/368.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/368.binary deleted file mode 100644 index 3a8037e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/368.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/369.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/369.binary deleted file mode 100644 index 43ed592..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/369.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/37.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/37.binary deleted file mode 100644 index 66aa09a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/37.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/370.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/370.binary deleted file mode 100644 index 2552741..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/370.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/371.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/371.binary deleted file mode 100644 index 9834f9e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/371.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/372.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/372.binary deleted file mode 100644 index b5a8be9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/372.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/373.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/373.binary deleted file mode 100644 index de97e11..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/373.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/374.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/374.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/374.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/375.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/375.binary deleted file mode 100644 index 3ff1f06..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/375.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/376.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/376.binary deleted file mode 100644 index 616d9aa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/376.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/377.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/377.binary deleted file mode 100644 index 55f1478..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/377.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/378.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/378.binary deleted file mode 100644 index cc22e6c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/378.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/379.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/379.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/379.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/38.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/38.binary deleted file mode 100644 index ac6d974..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/38.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/380.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/380.binary deleted file mode 100644 index afc7b7b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/380.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/381.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/381.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/381.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/382.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/382.binary deleted file mode 100644 index cfd697e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/382.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/383.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/383.binary deleted file mode 100644 index c8eb268..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/383.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/384.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/384.binary deleted file mode 100644 index 3e78340..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/384.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/385.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/385.binary deleted file mode 100644 index 20a03bb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/385.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/386.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/386.binary deleted file mode 100644 index bf84882..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/386.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/387.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/387.binary deleted file mode 100644 index 6e988b5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/387.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/388.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/388.binary deleted file mode 100644 index 5e5236a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/388.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/389.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/389.binary deleted file mode 100644 index b62c9d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/389.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/39.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/39.binary deleted file mode 100644 index b371c45..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/39.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/390.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/390.binary deleted file mode 100644 index d193f74..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/390.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/391.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/391.binary deleted file mode 100644 index ae0fe57..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/391.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/392.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/392.binary deleted file mode 100644 index f1a5e45..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/392.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/393.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/393.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/393.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/394.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/394.binary deleted file mode 100644 index 9937a81..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/394.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/395.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/395.binary deleted file mode 100644 index 5440513..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/395.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/396.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/396.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/396.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/397.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/397.binary deleted file mode 100644 index edfef05..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/397.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/398.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/398.binary deleted file mode 100644 index a88bfb4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/398.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/399.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/399.binary deleted file mode 100644 index c84ff31..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/399.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/4.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/4.binary deleted file mode 100644 index c5bd086..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/4.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/40.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/40.binary deleted file mode 100644 index cb35f39..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/40.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/400.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/400.binary deleted file mode 100644 index 20f04ea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/400.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/401.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/401.binary deleted file mode 100644 index edc6752..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/401.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/402.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/402.binary deleted file mode 100644 index a8fb5b3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/402.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/403.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/403.binary deleted file mode 100644 index 175a925..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/403.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/404.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/404.binary deleted file mode 100644 index afeeaf0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/404.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/405.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/405.binary deleted file mode 100644 index 209fbea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/405.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/406.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/406.binary deleted file mode 100644 index 667c736..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/406.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/407.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/407.binary deleted file mode 100644 index 2a8780e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/407.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/408.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/408.binary deleted file mode 100644 index 2748b7a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/408.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/409.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/409.binary deleted file mode 100644 index 29b5cd7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/409.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/41.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/41.binary deleted file mode 100644 index a033af4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/41.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/410.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/410.binary deleted file mode 100644 index 5bdf362..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/410.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/411.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/411.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/411.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/412.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/412.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/412.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/413.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/413.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/413.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/414.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/414.binary deleted file mode 100644 index 37bf2d3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/414.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/415.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/415.binary deleted file mode 100644 index f5c8ac5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/415.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/416.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/416.binary deleted file mode 100644 index 93b2524..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/416.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/417.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/417.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/417.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/418.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/418.binary deleted file mode 100644 index 75fad50..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/418.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/419.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/419.binary deleted file mode 100644 index b85fd3d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/419.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/42.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/42.binary deleted file mode 100644 index 90c3d4c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/42.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/420.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/420.binary deleted file mode 100644 index 5777e99..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/420.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/421.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/421.binary deleted file mode 100644 index 5efd16f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/421.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/422.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/422.binary deleted file mode 100644 index dc754f6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/422.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/423.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/423.binary deleted file mode 100644 index d51dcfe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/423.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/424.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/424.binary deleted file mode 100644 index 1bb91e3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/424.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/425.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/425.binary deleted file mode 100644 index 78910c0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/425.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/426.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/426.binary deleted file mode 100644 index d3902e8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/426.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/427.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/427.binary deleted file mode 100644 index 348553f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/427.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/428.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/428.binary deleted file mode 100644 index e4e43b8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/428.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/429.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/429.binary deleted file mode 100644 index 82ddff4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/429.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/43.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/43.binary deleted file mode 100644 index 8145ce2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/43.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/430.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/430.binary deleted file mode 100644 index 80b731d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/430.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/431.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/431.binary deleted file mode 100644 index 00a8f5c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/431.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/432.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/432.binary deleted file mode 100644 index 6e3a3f6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/432.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/433.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/433.binary deleted file mode 100644 index 5b96365..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/433.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/434.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/434.binary deleted file mode 100644 index d6a95bf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/434.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/435.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/435.binary deleted file mode 100644 index 936a949..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/435.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/436.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/436.binary deleted file mode 100644 index c53a773..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/436.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/437.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/437.binary deleted file mode 100644 index 1999cf9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/437.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/438.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/438.binary deleted file mode 100644 index c6d88b9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/438.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/439.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/439.binary deleted file mode 100644 index fe1017a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/439.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/44.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/44.binary deleted file mode 100644 index 8d6fe1c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/44.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/440.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/440.binary deleted file mode 100644 index b38a2fc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/440.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/441.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/441.binary deleted file mode 100644 index 65062a5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/441.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/442.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/442.binary deleted file mode 100644 index 10e686b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/442.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/443.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/443.binary deleted file mode 100644 index 52582e2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/443.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/444.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/444.binary deleted file mode 100644 index 22ec7e6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/444.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/445.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/445.binary deleted file mode 100644 index 8fdc2b4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/445.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/446.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/446.binary deleted file mode 100644 index 6900f14..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/446.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/447.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/447.binary deleted file mode 100644 index ffd7f0f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/447.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/448.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/448.binary deleted file mode 100644 index e4999a5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/448.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/449.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/449.binary deleted file mode 100644 index 20d677f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/449.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/45.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/45.binary deleted file mode 100644 index 26fe853..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/45.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/450.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/450.binary deleted file mode 100644 index 97304de..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/450.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/451.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/451.binary deleted file mode 100644 index 3b466be..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/451.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/452.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/452.binary deleted file mode 100644 index 4ad0f7e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/452.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/453.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/453.binary deleted file mode 100644 index d1c8e5c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/453.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/454.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/454.binary deleted file mode 100644 index 7a3f90c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/454.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/455.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/455.binary deleted file mode 100644 index 6167b43..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/455.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/456.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/456.binary deleted file mode 100644 index 17e0ab9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/456.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/457.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/457.binary deleted file mode 100644 index b690a14..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/457.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/458.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/458.binary deleted file mode 100644 index 4fe8d18..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/458.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/459.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/459.binary deleted file mode 100644 index c9455eb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/459.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/46.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/46.binary deleted file mode 100644 index 2abc9ac..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/46.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/460.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/460.binary deleted file mode 100644 index 176bb5f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/460.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/461.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/461.binary deleted file mode 100644 index 339e5fd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/461.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/462.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/462.binary deleted file mode 100644 index 030f641..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/462.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/463.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/463.binary deleted file mode 100644 index 9b0999d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/463.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/464.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/464.binary deleted file mode 100644 index 278d72b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/464.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/465.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/465.binary deleted file mode 100644 index 9770c42..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/465.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/466.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/466.binary deleted file mode 100644 index ee8c0ac..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/466.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/467.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/467.binary deleted file mode 100644 index 5c4b71b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/467.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/468.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/468.binary deleted file mode 100644 index 9dd3c65..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/468.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/469.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/469.binary deleted file mode 100644 index da7cf4f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/469.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/47.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/47.binary deleted file mode 100644 index ebf7034..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/47.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/470.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/470.binary deleted file mode 100644 index 84f16af..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/470.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/471.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/471.binary deleted file mode 100644 index 3833a88..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/471.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/472.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/472.binary deleted file mode 100644 index c68cb74..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/472.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/473.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/473.binary deleted file mode 100644 index 4803fc4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/473.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/474.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/474.binary deleted file mode 100644 index c6e6cc7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/474.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/475.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/475.binary deleted file mode 100644 index 4b07434..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/475.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/476.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/476.binary deleted file mode 100644 index 4a2d4c4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/476.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/477.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/477.binary deleted file mode 100644 index 765986f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/477.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/478.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/478.binary deleted file mode 100644 index 7346511..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/478.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/479.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/479.binary deleted file mode 100644 index 5e4db0a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/479.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/48.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/48.binary deleted file mode 100644 index 91a8492..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/48.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/480.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/480.binary deleted file mode 100644 index f2d992b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/480.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/481.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/481.binary deleted file mode 100644 index 71168e9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/481.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/482.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/482.binary deleted file mode 100644 index e65747a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/482.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/483.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/483.binary deleted file mode 100644 index ba1a3af..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/483.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/484.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/484.binary deleted file mode 100644 index 090c123..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/484.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/485.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/485.binary deleted file mode 100644 index 4e247e2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/485.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/486.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/486.binary deleted file mode 100644 index 5ee9efe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/486.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/487.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/487.binary deleted file mode 100644 index 28761ff..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/487.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/488.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/488.binary deleted file mode 100644 index a9ac28c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/488.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/489.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/489.binary deleted file mode 100644 index e3870b9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/489.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/49.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/49.binary deleted file mode 100644 index 6b42634..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/49.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/490.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/490.binary deleted file mode 100644 index 5653bb2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/490.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/491.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/491.binary deleted file mode 100644 index a94f152..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/491.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/492.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/492.binary deleted file mode 100644 index 761208b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/492.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/493.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/493.binary deleted file mode 100644 index a9bb509..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/493.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/494.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/494.binary deleted file mode 100644 index 7b742dc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/494.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/495.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/495.binary deleted file mode 100644 index f836e32..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/495.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/496.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/496.binary deleted file mode 100644 index aa69ba3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/496.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/497.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/497.binary deleted file mode 100644 index 3c7b6d5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/497.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/498.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/498.binary deleted file mode 100644 index 305877e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/498.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/499.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/499.binary deleted file mode 100644 index e1499a8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/499.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/5.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/5.binary deleted file mode 100644 index d66e232..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/5.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/50.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/50.binary deleted file mode 100644 index 1b694c5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/50.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/500.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/500.binary deleted file mode 100644 index 3a60396..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/500.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/501.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/501.binary deleted file mode 100644 index cd76f2d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/501.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/502.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/502.binary deleted file mode 100644 index a1b216d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/502.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/503.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/503.binary deleted file mode 100644 index 41dc87d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/503.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/504.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/504.binary deleted file mode 100644 index e73ddc9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/504.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/505.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/505.binary deleted file mode 100644 index c94417a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/505.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/506.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/506.binary deleted file mode 100644 index e52f2aa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/506.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/507.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/507.binary deleted file mode 100644 index 44e9ab4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/507.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/508.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/508.binary deleted file mode 100644 index b71ccca..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/508.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/509.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/509.binary deleted file mode 100644 index 2b38d78..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/509.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/51.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/51.binary deleted file mode 100644 index 4ee9d3a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/51.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/510.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/510.binary deleted file mode 100644 index 7db7b82..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/510.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/511.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/511.binary deleted file mode 100644 index 0c1ac83..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/511.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/512.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/512.binary deleted file mode 100644 index 1f6577a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/512.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/513.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/513.binary deleted file mode 100644 index ef1fa26..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/513.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/514.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/514.binary deleted file mode 100644 index 8f1e973..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/514.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/515.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/515.binary deleted file mode 100644 index a1d1979..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/515.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/516.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/516.binary deleted file mode 100644 index e698299..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/516.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/517.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/517.binary deleted file mode 100644 index d9b411c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/517.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/518.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/518.binary deleted file mode 100644 index 3a7fceb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/518.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/519.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/519.binary deleted file mode 100644 index 32ffd89..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/519.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/52.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/52.binary deleted file mode 100644 index 525a90c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/52.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/520.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/520.binary deleted file mode 100644 index 41af7f5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/520.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/521.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/521.binary deleted file mode 100644 index 7580944..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/521.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/522.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/522.binary deleted file mode 100644 index 79b5c5c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/522.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/523.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/523.binary deleted file mode 100644 index b7dcb03..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/523.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/524.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/524.binary deleted file mode 100644 index 20cd367..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/524.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/525.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/525.binary deleted file mode 100644 index a1437aa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/525.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/526.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/526.binary deleted file mode 100644 index 8cdc3d8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/526.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/527.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/527.binary deleted file mode 100644 index 5b8c268..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/527.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/528.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/528.binary deleted file mode 100644 index f9892f4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/528.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/529.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/529.binary deleted file mode 100644 index ce95397..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/529.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/53.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/53.binary deleted file mode 100644 index 0ccc0b9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/53.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/530.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/530.binary deleted file mode 100644 index 79ef6b9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/530.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/531.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/531.binary deleted file mode 100644 index 4c1fe86..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/531.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/532.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/532.binary deleted file mode 100644 index 13297c4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/532.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/533.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/533.binary deleted file mode 100644 index 5be618f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/533.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/534.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/534.binary deleted file mode 100644 index da84448..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/534.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/535.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/535.binary deleted file mode 100644 index e409f41..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/535.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/536.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/536.binary deleted file mode 100644 index 20e6dcd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/536.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/537.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/537.binary deleted file mode 100644 index 44bfce2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/537.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/538.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/538.binary deleted file mode 100644 index 6e2d57a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/538.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/539.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/539.binary deleted file mode 100644 index 484a441..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/539.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/54.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/54.binary deleted file mode 100644 index 7455acb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/54.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/540.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/540.binary deleted file mode 100644 index 5833450..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/540.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/541.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/541.binary deleted file mode 100644 index 72c811b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/541.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/542.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/542.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/542.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/543.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/543.binary deleted file mode 100644 index 906c2a6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/543.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/544.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/544.binary deleted file mode 100644 index 52c61e3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/544.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/545.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/545.binary deleted file mode 100644 index 9d7a0f0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/545.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/546.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/546.binary deleted file mode 100644 index ef0b10f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/546.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/547.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/547.binary deleted file mode 100644 index 50ecf6b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/547.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/548.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/548.binary deleted file mode 100644 index 536c8ea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/548.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/549.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/549.binary deleted file mode 100644 index db57697..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/549.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/55.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/55.binary deleted file mode 100644 index 4f73062..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/55.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/550.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/550.binary deleted file mode 100644 index f284749..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/550.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/551.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/551.binary deleted file mode 100644 index 3e83dbb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/551.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/552.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/552.binary deleted file mode 100644 index 1d48afe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/552.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/553.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/553.binary deleted file mode 100644 index 4659d27..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/553.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/554.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/554.binary deleted file mode 100644 index b329e20..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/554.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/555.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/555.binary deleted file mode 100644 index 3c89bea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/555.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/556.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/556.binary deleted file mode 100644 index f888d1a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/556.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/557.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/557.binary deleted file mode 100644 index 3c9a9ad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/557.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/558.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/558.binary deleted file mode 100644 index 2ec1838..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/558.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/559.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/559.binary deleted file mode 100644 index 6942911..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/559.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/56.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/56.binary deleted file mode 100644 index cdc3482..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/56.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/560.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/560.binary deleted file mode 100644 index b3909ed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/560.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/561.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/561.binary deleted file mode 100644 index a65f2a9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/561.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/562.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/562.binary deleted file mode 100644 index 7e12076..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/562.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/563.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/563.binary deleted file mode 100644 index 185e0cc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/563.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/564.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/564.binary deleted file mode 100644 index e550657..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/564.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/565.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/565.binary deleted file mode 100644 index d25c3f5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/565.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/566.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/566.binary deleted file mode 100644 index 1e56553..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/566.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/567.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/567.binary deleted file mode 100644 index 67b26e9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/567.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/568.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/568.binary deleted file mode 100644 index 2b8795d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/568.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/569.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/569.binary deleted file mode 100644 index 2332b26..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/569.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/57.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/57.binary deleted file mode 100644 index 22ffb36..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/57.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/570.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/570.binary deleted file mode 100644 index c6c5c3d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/570.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/571.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/571.binary deleted file mode 100644 index f25fe47..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/571.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/572.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/572.binary deleted file mode 100644 index 6904631..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/572.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/573.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/573.binary deleted file mode 100644 index 907fd62..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/573.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/574.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/574.binary deleted file mode 100644 index b4efb42..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/574.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/575.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/575.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/575.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/576.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/576.binary deleted file mode 100644 index 90229ea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/576.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/577.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/577.binary deleted file mode 100644 index ea480e8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/577.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/578.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/578.binary deleted file mode 100644 index 9c6bde8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/578.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/579.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/579.binary deleted file mode 100644 index abeb464..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/579.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/58.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/58.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/58.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/580.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/580.binary deleted file mode 100644 index 0031ade..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/580.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/581.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/581.binary deleted file mode 100644 index a317e05..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/581.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/582.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/582.binary deleted file mode 100644 index 7afcbb8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/582.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/583.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/583.binary deleted file mode 100644 index 9b7340a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/583.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/584.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/584.binary deleted file mode 100644 index 9faa285..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/584.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/585.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/585.binary deleted file mode 100644 index f5a8ea8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/585.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/586.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/586.binary deleted file mode 100644 index 3a3aaa5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/586.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/587.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/587.binary deleted file mode 100644 index 224dddc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/587.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/588.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/588.binary deleted file mode 100644 index 3be5657..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/588.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/589.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/589.binary deleted file mode 100644 index c123aaa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/589.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/59.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/59.binary deleted file mode 100644 index 2b8a5c9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/59.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/590.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/590.binary deleted file mode 100644 index 02226ee..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/590.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/591.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/591.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/591.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/592.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/592.binary deleted file mode 100644 index ca9c650..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/592.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/593.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/593.binary deleted file mode 100644 index e354310..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/593.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/594.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/594.binary deleted file mode 100644 index 21c01ab..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/594.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/595.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/595.binary deleted file mode 100644 index c699976..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/595.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/596.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/596.binary deleted file mode 100644 index 02b3824..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/596.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/597.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/597.binary deleted file mode 100644 index de9ba75..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/597.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/598.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/598.binary deleted file mode 100644 index 5ff7181..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/598.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/599.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/599.binary deleted file mode 100644 index 3a560dc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/599.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/6.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/6.binary deleted file mode 100644 index 81f5a74..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/6.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/60.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/60.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/60.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/600.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/600.binary deleted file mode 100644 index c47e2b7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/600.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/601.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/601.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/601.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/602.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/602.binary deleted file mode 100644 index b5ef1b9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/602.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/603.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/603.binary deleted file mode 100644 index 4fe1a4d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/603.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/604.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/604.binary deleted file mode 100644 index b8e301c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/604.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/605.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/605.binary deleted file mode 100644 index 6a1c700..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/605.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/606.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/606.binary deleted file mode 100644 index b906ee5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/606.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/607.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/607.binary deleted file mode 100644 index e9d788d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/607.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/608.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/608.binary deleted file mode 100644 index a63a52e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/608.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/609.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/609.binary deleted file mode 100644 index 1140463..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/609.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/61.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/61.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/61.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/610.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/610.binary deleted file mode 100644 index a4fbb13..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/610.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/611.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/611.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/611.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/612.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/612.binary deleted file mode 100644 index 618dd30..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/612.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/613.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/613.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/613.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/614.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/614.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/614.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/615.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/615.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/615.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/616.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/616.binary deleted file mode 100644 index 4a40c23..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/616.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/617.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/617.binary deleted file mode 100644 index 31b40bd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/617.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/618.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/618.binary deleted file mode 100644 index 4bd1a63..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/618.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/619.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/619.binary deleted file mode 100644 index 77c2f9f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/619.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/62.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/62.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/62.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/620.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/620.binary deleted file mode 100644 index a8f5e13..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/620.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/621.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/621.binary deleted file mode 100644 index 1688e1a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/621.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/622.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/622.binary deleted file mode 100644 index b6405ad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/622.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/623.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/623.binary deleted file mode 100644 index bdb07a3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/623.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/624.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/624.binary deleted file mode 100644 index 2b8af40..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/624.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/625.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/625.binary deleted file mode 100644 index 1b9cc04..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/625.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/626.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/626.binary deleted file mode 100644 index da39ec9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/626.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/627.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/627.binary deleted file mode 100644 index feb6917..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/627.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/628.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/628.binary deleted file mode 100644 index 4126048..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/628.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/629.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/629.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/629.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/63.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/63.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/63.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/630.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/630.binary deleted file mode 100644 index 55890b8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/630.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/631.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/631.binary deleted file mode 100644 index 8a9158c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/631.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/632.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/632.binary deleted file mode 100644 index f91f884..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/632.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/633.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/633.binary deleted file mode 100644 index bb6e136..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/633.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/634.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/634.binary deleted file mode 100644 index 7069deb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/634.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/635.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/635.binary deleted file mode 100644 index d0b567f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/635.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/636.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/636.binary deleted file mode 100644 index 031d2f1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/636.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/637.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/637.binary deleted file mode 100644 index f9798b2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/637.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/638.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/638.binary deleted file mode 100644 index a5421de..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/638.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/639.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/639.binary deleted file mode 100644 index 2a5048e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/639.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/64.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/64.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/64.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/640.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/640.binary deleted file mode 100644 index 6ccdf5d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/640.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/641.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/641.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/641.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/642.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/642.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/642.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/643.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/643.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/643.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/644.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/644.binary deleted file mode 100644 index 031d2f1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/644.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/645.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/645.binary deleted file mode 100644 index 7b51eec..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/645.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/646.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/646.binary deleted file mode 100644 index 36e85d4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/646.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/647.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/647.binary deleted file mode 100644 index e5ae969..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/647.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/648.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/648.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/648.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/649.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/649.binary deleted file mode 100644 index cdad54b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/649.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/65.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/65.binary deleted file mode 100644 index 208cff5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/65.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/650.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/650.binary deleted file mode 100644 index 9d0a2e6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/650.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/651.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/651.binary deleted file mode 100644 index 266ed07..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/651.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/652.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/652.binary deleted file mode 100644 index 595bdda..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/652.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/653.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/653.binary deleted file mode 100644 index 63e1214..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/653.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/654.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/654.binary deleted file mode 100644 index 0298f19..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/654.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/655.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/655.binary deleted file mode 100644 index dbcb869..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/655.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/656.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/656.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/656.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/657.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/657.binary deleted file mode 100644 index 2d584eb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/657.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/658.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/658.binary deleted file mode 100644 index a4356d4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/658.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/659.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/659.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/659.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/66.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/66.binary deleted file mode 100644 index b18cba9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/66.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/660.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/660.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/660.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/661.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/661.binary deleted file mode 100644 index 10ca97f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/661.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/662.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/662.binary deleted file mode 100644 index a5421de..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/662.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/663.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/663.binary deleted file mode 100644 index 185850e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/663.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/664.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/664.binary deleted file mode 100644 index 1f2ce93..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/664.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/665.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/665.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/665.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/666.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/666.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/666.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/667.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/667.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/667.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/668.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/668.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/668.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/669.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/669.binary deleted file mode 100644 index 862d972..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/669.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/67.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/67.binary deleted file mode 100644 index fc6f174..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/67.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/670.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/670.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/670.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/671.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/671.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/671.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/672.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/672.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/672.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/673.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/673.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/673.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/674.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/674.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/674.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/675.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/675.binary deleted file mode 100644 index 1718ba6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/675.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/676.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/676.binary deleted file mode 100644 index 7b9ef87..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/676.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/677.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/677.binary deleted file mode 100644 index a15e1e3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/677.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/678.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/678.binary deleted file mode 100644 index 6fe202c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/678.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/679.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/679.binary deleted file mode 100644 index 517b449..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/679.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/68.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/68.binary deleted file mode 100644 index 0543341..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/68.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/680.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/680.binary deleted file mode 100644 index 1a429ae..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/680.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/681.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/681.binary deleted file mode 100644 index 6c0f3b9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/681.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/682.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/682.binary deleted file mode 100644 index 575bf94..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/682.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/683.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/683.binary deleted file mode 100644 index da45ce1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/683.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/684.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/684.binary deleted file mode 100644 index f70a098..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/684.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/685.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/685.binary deleted file mode 100644 index 3dee341..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/685.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/686.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/686.binary deleted file mode 100644 index 5fe3f7b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/686.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/687.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/687.binary deleted file mode 100644 index e7ee4b8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/687.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/688.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/688.binary deleted file mode 100644 index db591f2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/688.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/689.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/689.binary deleted file mode 100644 index 4c5877c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/689.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/69.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/69.binary deleted file mode 100644 index e030bb3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/69.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/690.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/690.binary deleted file mode 100644 index 3e9ea5c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/690.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/691.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/691.binary deleted file mode 100644 index 2d99d69..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/691.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/692.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/692.binary deleted file mode 100644 index 86e8d65..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/692.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/693.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/693.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/693.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/694.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/694.binary deleted file mode 100644 index 69782f3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/694.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/695.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/695.binary deleted file mode 100644 index f74f9d5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/695.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/696.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/696.binary deleted file mode 100644 index 0b7675c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/696.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/697.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/697.binary deleted file mode 100644 index 95bd3cc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/697.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/698.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/698.binary deleted file mode 100644 index 1c3a13e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/698.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/699.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/699.binary deleted file mode 100644 index f9d3088..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/699.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/7.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/7.binary deleted file mode 100644 index 589e7ee..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/7.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/70.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/70.binary deleted file mode 100644 index 4fb1db7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/70.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/700.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/700.binary deleted file mode 100644 index 3524c2c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/700.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/701.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/701.binary deleted file mode 100644 index 54ada1f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/701.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/702.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/702.binary deleted file mode 100644 index c7f0beb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/702.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/703.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/703.binary deleted file mode 100644 index 3eda7e1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/703.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/704.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/704.binary deleted file mode 100644 index 5f1bccf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/704.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/705.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/705.binary deleted file mode 100644 index d281055..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/705.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/706.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/706.binary deleted file mode 100644 index 94c977a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/706.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/707.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/707.binary deleted file mode 100644 index f17a1e3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/707.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/708.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/708.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/708.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/709.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/709.binary deleted file mode 100644 index 2d9f9d6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/709.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/71.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/71.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/71.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/710.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/710.binary deleted file mode 100644 index 5370a7c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/710.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/711.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/711.binary deleted file mode 100644 index 4e0ae88..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/711.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/712.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/712.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/712.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/713.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/713.binary deleted file mode 100644 index 571ff56..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/713.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/714.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/714.binary deleted file mode 100644 index e9ddb03..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/714.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/715.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/715.binary deleted file mode 100644 index aa73e20..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/715.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/716.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/716.binary deleted file mode 100644 index c90da81..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/716.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/717.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/717.binary deleted file mode 100644 index 84e618c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/717.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/718.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/718.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/718.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/719.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/719.binary deleted file mode 100644 index bff998e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/719.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/72.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/72.binary deleted file mode 100644 index 4e87a60..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/72.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/720.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/720.binary deleted file mode 100644 index a7e01be..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/720.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/721.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/721.binary deleted file mode 100644 index abbc44f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/721.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/722.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/722.binary deleted file mode 100644 index c77ab62..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/722.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/723.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/723.binary deleted file mode 100644 index b8ae4d3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/723.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/724.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/724.binary deleted file mode 100644 index f1dee41..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/724.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/725.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/725.binary deleted file mode 100644 index c9f1100..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/725.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/726.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/726.binary deleted file mode 100644 index 14e144c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/726.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/727.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/727.binary deleted file mode 100644 index 626e97a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/727.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/728.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/728.binary deleted file mode 100644 index 7ec9633..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/728.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/729.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/729.binary deleted file mode 100644 index 24732cb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/729.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/73.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/73.binary deleted file mode 100644 index 3b67c9e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/73.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/730.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/730.binary deleted file mode 100644 index e169edd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/730.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/731.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/731.binary deleted file mode 100644 index 113c26e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/731.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/732.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/732.binary deleted file mode 100644 index 14ad7f9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/732.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/733.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/733.binary deleted file mode 100644 index 8556260..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/733.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/734.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/734.binary deleted file mode 100644 index 4d017df..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/734.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/735.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/735.binary deleted file mode 100644 index 5834670..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/735.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/736.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/736.binary deleted file mode 100644 index b122eb8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/736.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/737.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/737.binary deleted file mode 100644 index cb47e17..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/737.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/738.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/738.binary deleted file mode 100644 index 90ebc3b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/738.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/739.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/739.binary deleted file mode 100644 index f513639..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/739.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/74.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/74.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/74.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/740.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/740.binary deleted file mode 100644 index b332f8c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/740.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/741.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/741.binary deleted file mode 100644 index 6a58971..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/741.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/742.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/742.binary deleted file mode 100644 index 739ee85..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/742.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/743.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/743.binary deleted file mode 100644 index 627d46c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/743.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/744.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/744.binary deleted file mode 100644 index 0d73218..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/744.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/745.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/745.binary deleted file mode 100644 index d994619..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/745.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/746.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/746.binary deleted file mode 100644 index e530342..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/746.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/747.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/747.binary deleted file mode 100644 index b74aea0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/747.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/748.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/748.binary deleted file mode 100644 index 2247a66..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/748.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/749.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/749.binary deleted file mode 100644 index e7646c7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/749.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/75.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/75.binary deleted file mode 100644 index b62c9d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/75.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/750.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/750.binary deleted file mode 100644 index 6c6c6f0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/750.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/751.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/751.binary deleted file mode 100644 index 826d821..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/751.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/752.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/752.binary deleted file mode 100644 index 624ba19..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/752.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/753.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/753.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/753.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/754.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/754.binary deleted file mode 100644 index 3704046..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/754.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/755.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/755.binary deleted file mode 100644 index 53d217e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/755.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/756.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/756.binary deleted file mode 100644 index b11e9be..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/756.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/757.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/757.binary deleted file mode 100644 index df94484..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/757.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/758.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/758.binary deleted file mode 100644 index 99bca33..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/758.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/759.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/759.binary deleted file mode 100644 index 21110c3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/759.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/76.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/76.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/76.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/760.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/760.binary deleted file mode 100644 index 0c9a5ce..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/760.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/761.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/761.binary deleted file mode 100644 index bd5d7f5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/761.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/762.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/762.binary deleted file mode 100644 index da738a1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/762.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/763.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/763.binary deleted file mode 100644 index f2b2ee3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/763.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/764.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/764.binary deleted file mode 100644 index bb208e8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/764.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/765.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/765.binary deleted file mode 100644 index 0953047..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/765.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/766.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/766.binary deleted file mode 100644 index 6217810..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/766.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/767.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/767.binary deleted file mode 100644 index 81b2b5d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/767.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/768.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/768.binary deleted file mode 100644 index f9302a4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/768.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/769.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/769.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/769.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/77.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/77.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/77.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/770.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/770.binary deleted file mode 100644 index c6d81b7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/770.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/771.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/771.binary deleted file mode 100644 index 6aec83f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/771.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/772.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/772.binary deleted file mode 100644 index 1d008ee..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/772.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/773.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/773.binary deleted file mode 100644 index 8652664..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/773.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/774.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/774.binary deleted file mode 100644 index f150f45..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/774.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/775.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/775.binary deleted file mode 100644 index f80f1f1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/775.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/776.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/776.binary deleted file mode 100644 index 5a54942..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/776.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/777.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/777.binary deleted file mode 100644 index f5b12f6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/777.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/778.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/778.binary deleted file mode 100644 index b07cee2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/778.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/779.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/779.binary deleted file mode 100644 index ce9e353..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/779.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/78.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/78.binary deleted file mode 100644 index f4b722a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/78.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/780.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/780.binary deleted file mode 100644 index 1eee375..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/780.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/781.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/781.binary deleted file mode 100644 index 6707517..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/781.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/782.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/782.binary deleted file mode 100644 index b3f2a90..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/782.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/783.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/783.binary deleted file mode 100644 index 6828628..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/783.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/784.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/784.binary deleted file mode 100644 index e995ee9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/784.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/785.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/785.binary deleted file mode 100644 index cff5752..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/785.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/786.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/786.binary deleted file mode 100644 index 1534088..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/786.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/787.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/787.binary deleted file mode 100644 index 617cecb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/787.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/788.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/788.binary deleted file mode 100644 index a634bef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/788.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/789.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/789.binary deleted file mode 100644 index 1635128..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/789.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/79.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/79.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/79.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/790.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/790.binary deleted file mode 100644 index d171ba5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/790.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/791.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/791.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/791.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/792.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/792.binary deleted file mode 100644 index 7e84d5e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/792.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/793.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/793.binary deleted file mode 100644 index 4d8aafb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/793.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/794.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/794.binary deleted file mode 100644 index ad9234c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/794.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/795.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/795.binary deleted file mode 100644 index 3ed3fad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/795.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/796.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/796.binary deleted file mode 100644 index cb0479d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/796.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/797.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/797.binary deleted file mode 100644 index 3c11d77..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/797.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/798.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/798.binary deleted file mode 100644 index ceae4fe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/798.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/799.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/799.binary deleted file mode 100644 index 3d1389e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/799.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/8.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/8.binary deleted file mode 100644 index 00fe8f5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/8.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/80.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/80.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/80.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/800.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/800.binary deleted file mode 100644 index ad932a1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/800.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/801.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/801.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/801.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/802.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/802.binary deleted file mode 100644 index 869b0bb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/802.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/803.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/803.binary deleted file mode 100644 index 3828cde..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/803.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/804.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/804.binary deleted file mode 100644 index 658798f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/804.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/805.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/805.binary deleted file mode 100644 index eb5967e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/805.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/806.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/806.binary deleted file mode 100644 index e1c0c1a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/806.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/807.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/807.binary deleted file mode 100644 index 1c0c79b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/807.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/808.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/808.binary deleted file mode 100644 index 5dd3203..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/808.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/809.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/809.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/809.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/81.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/81.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/81.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/810.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/810.binary deleted file mode 100644 index 3fa88ba..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/810.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/811.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/811.binary deleted file mode 100644 index 4fadf2a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/811.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/812.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/812.binary deleted file mode 100644 index 5bf9fe4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/812.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/813.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/813.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/813.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/814.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/814.binary deleted file mode 100644 index 8e87fad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/814.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/815.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/815.binary deleted file mode 100644 index bb9c1d8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/815.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/816.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/816.binary deleted file mode 100644 index d65fdbb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/816.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/817.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/817.binary deleted file mode 100644 index c6982c4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/817.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/818.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/818.binary deleted file mode 100644 index 8e2e543..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/818.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/819.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/819.binary deleted file mode 100644 index c77d4f0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/819.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/82.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/82.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/82.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/820.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/820.binary deleted file mode 100644 index ad6d9bd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/820.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/821.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/821.binary deleted file mode 100644 index a7af0b3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/821.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/822.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/822.binary deleted file mode 100644 index cb16d47..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/822.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/823.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/823.binary deleted file mode 100644 index 53602ad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/823.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/824.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/824.binary deleted file mode 100644 index 48cb2a8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/824.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/825.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/825.binary deleted file mode 100644 index 243a8ee..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/825.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/826.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/826.binary deleted file mode 100644 index 137a7e1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/826.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/827.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/827.binary deleted file mode 100644 index bbdf971..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/827.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/828.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/828.binary deleted file mode 100644 index a83f44d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/828.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/829.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/829.binary deleted file mode 100644 index 7ad81b3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/829.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/83.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/83.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/83.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/830.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/830.binary deleted file mode 100644 index 03a50e9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/830.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/831.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/831.binary deleted file mode 100644 index 73769e7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/831.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/832.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/832.binary deleted file mode 100644 index af05971..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/832.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/833.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/833.binary deleted file mode 100644 index 00a62da..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/833.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/834.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/834.binary deleted file mode 100644 index d141721..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/834.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/835.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/835.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/835.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/836.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/836.binary deleted file mode 100644 index 8e8a2c7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/836.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/837.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/837.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/837.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/838.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/838.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/838.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/839.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/839.binary deleted file mode 100644 index dc0224d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/839.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/84.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/84.binary deleted file mode 100644 index 8b987ee..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/84.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/840.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/840.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/840.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/841.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/841.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/841.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/842.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/842.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/842.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/843.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/843.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/843.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/844.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/844.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/844.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/845.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/845.binary deleted file mode 100644 index a7c29bd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/845.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/846.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/846.binary deleted file mode 100644 index b271a28..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/846.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/847.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/847.binary deleted file mode 100644 index 52351a1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/847.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/848.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/848.binary deleted file mode 100644 index 5cb9606..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/848.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/849.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/849.binary deleted file mode 100644 index 19ddc01..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/849.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/85.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/85.binary deleted file mode 100644 index 9efd0f9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/85.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/850.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/850.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/850.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/851.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/851.binary deleted file mode 100644 index 4722d32..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/851.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/852.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/852.binary deleted file mode 100644 index f0ccc7c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/852.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/853.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/853.binary deleted file mode 100644 index 6c14ed0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/853.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/854.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/854.binary deleted file mode 100644 index e1da018..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/854.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/855.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/855.binary deleted file mode 100644 index f2f1530..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/855.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/856.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/856.binary deleted file mode 100644 index de8bd0f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/856.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/857.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/857.binary deleted file mode 100644 index 6d76e11..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/857.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/858.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/858.binary deleted file mode 100644 index 4eea181..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/858.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/859.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/859.binary deleted file mode 100644 index 2d5ef83..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/859.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/86.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/86.binary deleted file mode 100644 index 7fdc9d5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/86.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/860.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/860.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/860.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/861.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/861.binary deleted file mode 100644 index b6e38f6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/861.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/862.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/862.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/862.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/863.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/863.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/863.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/864.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/864.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/864.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/865.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/865.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/865.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/866.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/866.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/866.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/867.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/867.binary deleted file mode 100644 index bdffbf9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/867.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/868.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/868.binary deleted file mode 100644 index 5113a0a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/868.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/869.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/869.binary deleted file mode 100644 index 1c4a374..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/869.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/87.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/87.binary deleted file mode 100644 index 8299ca2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/87.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/870.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/870.binary deleted file mode 100644 index 32f0109..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/870.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/871.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/871.binary deleted file mode 100644 index c5133d1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/871.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/872.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/872.binary deleted file mode 100644 index c29721d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/872.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/873.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/873.binary deleted file mode 100644 index 4447139..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/873.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/874.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/874.binary deleted file mode 100644 index 7c70d74..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/874.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/875.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/875.binary deleted file mode 100644 index 51c545c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/875.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/876.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/876.binary deleted file mode 100644 index 038ff01..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/876.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/877.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/877.binary deleted file mode 100644 index 1529fb2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/877.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/878.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/878.binary deleted file mode 100644 index c26ca2f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/878.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/879.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/879.binary deleted file mode 100644 index b1ab129..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/879.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/88.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/88.binary deleted file mode 100644 index 9223fdc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/88.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/880.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/880.binary deleted file mode 100644 index 717f722..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/880.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/881.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/881.binary deleted file mode 100644 index 0bf57d5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/881.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/882.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/882.binary deleted file mode 100644 index c54f7d7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/882.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/883.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/883.binary deleted file mode 100644 index 1b45e4b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/883.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/884.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/884.binary deleted file mode 100644 index 7c7d03a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/884.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/885.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/885.binary deleted file mode 100644 index 4dfa321..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/885.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/886.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/886.binary deleted file mode 100644 index a7e5593..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/886.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/887.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/887.binary deleted file mode 100644 index 91efb28..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/887.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/888.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/888.binary deleted file mode 100644 index 74eddac..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/888.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/889.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/889.binary deleted file mode 100644 index fa9b1ff..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/889.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/89.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/89.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/89.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/890.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/890.binary deleted file mode 100644 index 5362730..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/890.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/891.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/891.binary deleted file mode 100644 index 9d8d3ef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/891.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/892.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/892.binary deleted file mode 100644 index 277806e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/892.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/893.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/893.binary deleted file mode 100644 index ae43bb2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/893.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/894.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/894.binary deleted file mode 100644 index 8ad61da..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/894.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/895.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/895.binary deleted file mode 100644 index ade4130..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/895.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/896.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/896.binary deleted file mode 100644 index 27d12c7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/896.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/897.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/897.binary deleted file mode 100644 index be470c6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/897.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/898.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/898.binary deleted file mode 100644 index 2ccf923..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/898.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/899.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/899.binary deleted file mode 100644 index e0fc2ab..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/899.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/9.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/9.binary deleted file mode 100644 index 04abd7b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/9.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/90.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/90.binary deleted file mode 100644 index ffdd727..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/90.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/900.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/900.binary deleted file mode 100644 index 4738d1f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/900.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/901.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/901.binary deleted file mode 100644 index 66f6e60..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/901.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/902.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/902.binary deleted file mode 100644 index 22a4c62..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/902.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/903.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/903.binary deleted file mode 100644 index 5667f4e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/903.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/904.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/904.binary deleted file mode 100644 index 46d6c77..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/904.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/905.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/905.binary deleted file mode 100644 index 2f63cd8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/905.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/906.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/906.binary deleted file mode 100644 index 86833b4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/906.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/907.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/907.binary deleted file mode 100644 index 0bf5e94..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/907.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/908.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/908.binary deleted file mode 100644 index 81dbfbb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/908.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/909.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/909.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/909.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/91.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/91.binary deleted file mode 100644 index 15dfbd5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/91.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/910.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/910.binary deleted file mode 100644 index a7b0791..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/910.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/911.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/911.binary deleted file mode 100644 index 0e4272f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/911.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/912.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/912.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/912.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/913.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/913.binary deleted file mode 100644 index 94205db..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/913.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/914.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/914.binary deleted file mode 100644 index 3e30c72..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/914.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/915.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/915.binary deleted file mode 100644 index 76a5139..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/915.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/916.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/916.binary deleted file mode 100644 index ed12af4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/916.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/917.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/917.binary deleted file mode 100644 index fb55f0a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/917.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/918.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/918.binary deleted file mode 100644 index b4fd7d7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/918.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/919.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/919.binary deleted file mode 100644 index 4ce779b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/919.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/92.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/92.binary deleted file mode 100644 index 90c2e1c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/92.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/920.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/920.binary deleted file mode 100644 index c9d3827..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/920.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/921.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/921.binary deleted file mode 100644 index 5d68cb0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/921.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/922.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/922.binary deleted file mode 100644 index 2ef4b16..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/922.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/923.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/923.binary deleted file mode 100644 index ea1ac2a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/923.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/924.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/924.binary deleted file mode 100644 index a33e3bd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/924.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/925.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/925.binary deleted file mode 100644 index aad3e5c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/925.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/926.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/926.binary deleted file mode 100644 index fbd8cde..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/926.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/927.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/927.binary deleted file mode 100644 index d980e4f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/927.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/928.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/928.binary deleted file mode 100644 index 67f07e9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/928.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/929.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/929.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/929.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/93.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/93.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/93.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/930.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/930.binary deleted file mode 100644 index af05722..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/930.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/931.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/931.binary deleted file mode 100644 index c2e6903..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/931.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/932.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/932.binary deleted file mode 100644 index 156f724..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/932.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/933.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/933.binary deleted file mode 100644 index c98e66f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/933.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/934.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/934.binary deleted file mode 100644 index 2719238..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/934.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/935.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/935.binary deleted file mode 100644 index 3282fc2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/935.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/936.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/936.binary deleted file mode 100644 index 1875457..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/936.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/937.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/937.binary deleted file mode 100644 index bf5c4d8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/937.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/938.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/938.binary deleted file mode 100644 index 01c7c3e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/938.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/939.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/939.binary deleted file mode 100644 index abaee3a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/939.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/94.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/94.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/94.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/940.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/940.binary deleted file mode 100644 index e17cfd0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/940.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/941.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/941.binary deleted file mode 100644 index 87539ad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/941.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/942.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/942.binary deleted file mode 100644 index e82d7d2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/942.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/943.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/943.binary deleted file mode 100644 index 32d4c13..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/943.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/944.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/944.binary deleted file mode 100644 index 36ce1af..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/944.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/945.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/945.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/945.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/946.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/946.binary deleted file mode 100644 index 99239f3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/946.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/947.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/947.binary deleted file mode 100644 index dac979f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/947.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/948.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/948.binary deleted file mode 100644 index d21698f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/948.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/949.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/949.binary deleted file mode 100644 index 918cf24..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/949.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/95.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/95.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/95.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/950.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/950.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/950.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/951.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/951.binary deleted file mode 100644 index e6d61aa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/951.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/952.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/952.binary deleted file mode 100644 index 0aa6ea2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/952.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/953.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/953.binary deleted file mode 100644 index 2dc8bb5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/953.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/954.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/954.binary deleted file mode 100644 index bd055aa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/954.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/955.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/955.binary deleted file mode 100644 index ba60f96..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/955.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/956.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/956.binary deleted file mode 100644 index a1defc5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/956.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/957.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/957.binary deleted file mode 100644 index 5d7e119..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/957.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/958.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/958.binary deleted file mode 100644 index 7a06874..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/958.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/959.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/959.binary deleted file mode 100644 index f1f5804..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/959.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/96.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/96.binary deleted file mode 100644 index 3d78fbe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/96.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/960.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/960.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/960.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/961.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/961.binary deleted file mode 100644 index 2eeb9eb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/961.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/962.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/962.binary deleted file mode 100644 index 129ad65..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/962.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/963.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/963.binary deleted file mode 100644 index 6449065..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/963.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/964.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/964.binary deleted file mode 100644 index be544ee..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/964.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/965.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/965.binary deleted file mode 100644 index c2c6ff8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/965.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/966.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/966.binary deleted file mode 100644 index a18f711..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/966.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/967.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/967.binary deleted file mode 100644 index ad9cd26..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/967.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/968.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/968.binary deleted file mode 100644 index 96cf8d2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/968.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/969.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/969.binary deleted file mode 100644 index b5f69a1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/969.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/97.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/97.binary deleted file mode 100644 index 2a58342..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/97.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/970.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/970.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/970.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/971.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/971.binary deleted file mode 100644 index bf6e51e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/971.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/972.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/972.binary deleted file mode 100644 index 16ee6c6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/972.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/973.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/973.binary deleted file mode 100644 index eaa9a48..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/973.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/974.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/974.binary deleted file mode 100644 index dea0bc6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/974.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/975.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/975.binary deleted file mode 100644 index 246f535..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/975.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/976.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/976.binary deleted file mode 100644 index a31d3bc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/976.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/977.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/977.binary deleted file mode 100644 index 0cb2770..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/977.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/978.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/978.binary deleted file mode 100644 index 65d928f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/978.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/979.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/979.binary deleted file mode 100644 index d4d82a8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/979.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/98.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/98.binary deleted file mode 100644 index dd1916d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/98.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/980.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/980.binary deleted file mode 100644 index 26fc5ce..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/980.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/981.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/981.binary deleted file mode 100644 index f1cb812..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/981.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/982.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/982.binary deleted file mode 100644 index 3d19246..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/982.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/983.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/983.binary deleted file mode 100644 index cb20de4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/983.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/984.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/984.binary deleted file mode 100644 index a90baf5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/984.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/985.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/985.binary deleted file mode 100644 index fe50be4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/985.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/986.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/986.binary deleted file mode 100644 index c25d85f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/986.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/987.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/987.binary deleted file mode 100644 index 34dcda4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/987.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/988.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/988.binary deleted file mode 100644 index 901d390..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/988.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/989.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/989.binary deleted file mode 100644 index 0ca826a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/989.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/99.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/99.binary deleted file mode 100644 index 561bad8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/99.binary +++ /dev/null @@ -1 +0,0 @@ -{ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/990.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/990.binary deleted file mode 100644 index 0aa6ea2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/990.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/991.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/991.binary deleted file mode 100644 index a3e3a99..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/991.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/992.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/992.binary deleted file mode 100644 index 55f975b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/992.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/993.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/993.binary deleted file mode 100644 index 5137587..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/993.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/994.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/994.binary deleted file mode 100644 index 535682b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/994.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/995.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/995.binary deleted file mode 100644 index 15237be..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/995.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/996.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/996.binary deleted file mode 100644 index 9bc5576..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/996.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/997.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/997.binary deleted file mode 100644 index 2fb60a4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/997.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/998.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/998.binary deleted file mode 100644 index e9b6884..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/998.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/999.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/999.binary deleted file mode 100644 index 489fde6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/cb/999.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/#.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/#.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/#.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/#.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/#.loudschars2 deleted file mode 100644 index b2d9fd8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/#.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/#0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/#0.loudstxt3 deleted file mode 100644 index caeb160..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/#0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/%.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/%.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/%.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/%.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/%.loudschars2 deleted file mode 100644 index 195a180..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/%.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/%0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/%0.loudstxt3 deleted file mode 100644 index 81fa668..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/%0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/&.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/&.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/&.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/&.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/&.loudschars2 deleted file mode 100644 index 2cae822..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/&.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/&0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/&0.loudstxt3 deleted file mode 100644 index 07c55ec..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/&0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/(.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/(.louds deleted file mode 100644 index 58e60d0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/(.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/(.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/(.loudschars2 deleted file mode 100644 index eb9aad1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/(.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/(0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/(0.loudstxt3 deleted file mode 100644 index 06b589c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/(0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/).louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/).louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/).louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/).loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/).loudschars2 deleted file mode 100644 index b4ad69a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/).loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/)0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/)0.loudstxt3 deleted file mode 100644 index 5a34d2b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/)0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/.gitkeep b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/0.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/0.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/0.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/0.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/0.loudschars2 deleted file mode 100644 index 3cadbbb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/0.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/00.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/00.loudstxt3 deleted file mode 100644 index 978bb01..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/00.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/1.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/1.louds deleted file mode 100644 index 0ad1f14..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/1.louds +++ /dev/null @@ -1 +0,0 @@ -'TP% \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/1.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/1.loudschars2 deleted file mode 100644 index 889e3d3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/1.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/10.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/10.loudstxt3 deleted file mode 100644 index 43e5506..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/10.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/2.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/2.louds deleted file mode 100644 index 804edef..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/2.louds +++ /dev/null @@ -1 +0,0 @@ -J \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/2.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/2.loudschars2 deleted file mode 100644 index 92ba012..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/2.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/20.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/20.loudstxt3 deleted file mode 100644 index c117711..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/20.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/3.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/3.louds deleted file mode 100644 index c177375..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/3.louds +++ /dev/null @@ -1 +0,0 @@ -GUʫ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/3.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/3.loudschars2 deleted file mode 100644 index 8b420c1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/3.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/30.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/30.loudstxt3 deleted file mode 100644 index c43686c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/30.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/4.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/4.louds deleted file mode 100644 index d4fb449..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/4.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/4.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/4.loudschars2 deleted file mode 100644 index e067269..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/4.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/40.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/40.loudstxt3 deleted file mode 100644 index 2a49a3d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/40.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/5.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/5.louds deleted file mode 100644 index 6bb55ee..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/5.louds +++ /dev/null @@ -1 +0,0 @@ -G \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/5.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/5.loudschars2 deleted file mode 100644 index 2f73e2b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/5.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/50.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/50.loudstxt3 deleted file mode 100644 index cf9cb66..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/50.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/6.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/6.louds deleted file mode 100644 index 200171a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/6.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/6.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/6.loudschars2 deleted file mode 100644 index 6e99e2e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/6.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/60.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/60.loudstxt3 deleted file mode 100644 index 1344218..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/60.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/7.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/7.louds deleted file mode 100644 index 1b8d245..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/7.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/7.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/7.loudschars2 deleted file mode 100644 index da241b8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/7.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/70.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/70.loudstxt3 deleted file mode 100644 index 411e861..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/70.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/8.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/8.louds deleted file mode 100644 index 58e60d0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/8.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/8.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/8.loudschars2 deleted file mode 100644 index 88d759b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/8.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/80.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/80.loudstxt3 deleted file mode 100644 index d4620ce..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/80.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/9.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/9.louds deleted file mode 100644 index 58e60d0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/9.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/9.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/9.loudschars2 deleted file mode 100644 index 62838de..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/9.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/90.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/90.loudstxt3 deleted file mode 100644 index 4c62875..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/90.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[22].louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[22].louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[22].louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[22].loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[22].loudschars2 deleted file mode 100644 index a0cc0ed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[22].loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[22]0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[22]0.loudstxt3 deleted file mode 100644 index 7e25b88..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[22]0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[27].louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[27].louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[27].louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[27].loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[27].loudschars2 deleted file mode 100644 index 477c913..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[27].loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[27]0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[27]0.loudstxt3 deleted file mode 100644 index dbc42e4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[27]0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[2A].louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[2A].louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[2A].louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[2A].loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[2A].loudschars2 deleted file mode 100644 index 68f51c7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[2A].loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[2A]0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[2A]0.loudstxt3 deleted file mode 100644 index c169a81..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/[2A]0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/^.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/^.louds deleted file mode 100644 index c2cd528..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/^.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/^.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/^.loudschars2 deleted file mode 100644 index 91085f7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/^.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/^0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/^0.loudstxt3 deleted file mode 100644 index 2ce0056..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/^0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/_.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/_.louds deleted file mode 100644 index ab6a4be..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/_.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/_.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/_.loudschars2 deleted file mode 100644 index c712bb2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/_.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/_0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/_0.loudstxt3 deleted file mode 100644 index cad4373..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/_0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/charID.chid b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/charID.chid deleted file mode 100644 index 24b661a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/charID.chid and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/¨.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/¨.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/¨.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/¨.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/¨.loudschars2 deleted file mode 100644 index 480a3e8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/¨.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/¨0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/¨0.loudstxt3 deleted file mode 100644 index 674a686..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/¨0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/´.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/´.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/´.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/´.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/´.loudschars2 deleted file mode 100644 index 4d0d401..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/´.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/´0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/´0.loudstxt3 deleted file mode 100644 index ca66fb1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/´0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‐.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‐.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‐.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‐.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‐.loudschars2 deleted file mode 100644 index 77caf90..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‐.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‐0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‐0.loudstxt3 deleted file mode 100644 index b9165a0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‐0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‘.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‘.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‘.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‘.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‘.loudschars2 deleted file mode 100644 index f4e1ab9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‘.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‘0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‘0.loudstxt3 deleted file mode 100644 index 133833c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‘0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/’.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/’.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/’.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/’.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/’.loudschars2 deleted file mode 100644 index 531cef9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/’.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/’0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/’0.loudstxt3 deleted file mode 100644 index aea8b38..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/’0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/“.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/“.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/“.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/“.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/“.loudschars2 deleted file mode 100644 index fa5ced4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/“.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/“0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/“0.loudstxt3 deleted file mode 100644 index 363d4cc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/“0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/”.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/”.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/”.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/”.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/”.loudschars2 deleted file mode 100644 index 4cc1264..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/”.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/”0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/”0.loudstxt3 deleted file mode 100644 index afb43b1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/”0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‥.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‥.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‥.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‥.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‥.loudschars2 deleted file mode 100644 index d5dc212..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‥.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‥0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‥0.loudstxt3 deleted file mode 100644 index 08266eb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/‥0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/….louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/….louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/….louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/….loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/….loudschars2 deleted file mode 100644 index a2f2039..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/….loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/…0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/…0.loudstxt3 deleted file mode 100644 index bf530d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/…0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/′.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/′.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/′.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/′.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/′.loudschars2 deleted file mode 100644 index c34aec7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/′.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/′0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/′0.loudstxt3 deleted file mode 100644 index 1f7ca38..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/′0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/※.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/※.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/※.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/※.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/※.loudschars2 deleted file mode 100644 index 2fe2b61..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/※.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/※0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/※0.loudstxt3 deleted file mode 100644 index f499abe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/※0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/←.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/←.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/←.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/←.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/←.loudschars2 deleted file mode 100644 index 13bc9a3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/←.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/←0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/←0.loudstxt3 deleted file mode 100644 index efe1026..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/←0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↑.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↑.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↑.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↑.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↑.loudschars2 deleted file mode 100644 index fbc1653..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↑.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↑0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↑0.loudstxt3 deleted file mode 100644 index 5ea4e80..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↑0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/→.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/→.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/→.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/→.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/→.loudschars2 deleted file mode 100644 index a1b315e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/→.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/→0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/→0.loudstxt3 deleted file mode 100644 index 09551bd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/→0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↓.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↓.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↓.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↓.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↓.loudschars2 deleted file mode 100644 index 388026e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↓.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↓0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↓0.loudstxt3 deleted file mode 100644 index ab5bc45..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/↓0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/─.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/─.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/─.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/─.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/─.loudschars2 deleted file mode 100644 index f856ab8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/─.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/─0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/─0.loudstxt3 deleted file mode 100644 index 418519d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/─0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/■.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/■.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/■.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/■.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/■.loudschars2 deleted file mode 100644 index eaa3cce..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/■.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/■0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/■0.loudstxt3 deleted file mode 100644 index b7729c7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/■0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/□.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/□.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/□.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/□.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/□.loudschars2 deleted file mode 100644 index 1bc901e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/□.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/□0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/□0.loudstxt3 deleted file mode 100644 index f0273b9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/□0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▲.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▲.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▲.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▲.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▲.loudschars2 deleted file mode 100644 index 2a7c35a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▲.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▲0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▲0.loudstxt3 deleted file mode 100644 index 24a5296..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▲0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/△.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/△.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/△.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/△.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/△.loudschars2 deleted file mode 100644 index ade26ac..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/△.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/△0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/△0.loudstxt3 deleted file mode 100644 index adccd08..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/△0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▼.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▼.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▼.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▼.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▼.loudschars2 deleted file mode 100644 index ed9a593..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▼.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▼0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▼0.loudstxt3 deleted file mode 100644 index a8a4ada..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▼0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▽.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▽.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▽.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▽.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▽.loudschars2 deleted file mode 100644 index b2ebb5f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▽.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▽0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▽0.loudstxt3 deleted file mode 100644 index 00def9c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/▽0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◆.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◆.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◆.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◆.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◆.loudschars2 deleted file mode 100644 index 50afc25..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◆.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◆0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◆0.loudstxt3 deleted file mode 100644 index decbe84..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◆0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◇.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◇.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◇.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◇.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◇.loudschars2 deleted file mode 100644 index 17e14af..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◇.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◇0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◇0.loudstxt3 deleted file mode 100644 index e4b78fc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◇0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/○.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/○.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/○.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/○.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/○.loudschars2 deleted file mode 100644 index d7c3657..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/○.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/○0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/○0.loudstxt3 deleted file mode 100644 index e76e9f6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/○0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◎.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◎.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◎.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◎.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◎.loudschars2 deleted file mode 100644 index 922794b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◎.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◎0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◎0.loudstxt3 deleted file mode 100644 index 5d43333..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/◎0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/●.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/●.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/●.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/●.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/●.loudschars2 deleted file mode 100644 index 0006736..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/●.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/●0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/●0.loudstxt3 deleted file mode 100644 index 036c798..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/●0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/★.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/★.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/★.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/★.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/★.loudschars2 deleted file mode 100644 index 7da704e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/★.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/★0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/★0.loudstxt3 deleted file mode 100644 index a9766ea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/★0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/☆.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/☆.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/☆.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/☆.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/☆.loudschars2 deleted file mode 100644 index 495a33e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/☆.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/☆0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/☆0.loudstxt3 deleted file mode 100644 index 0f740df..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/☆0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/、.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/、.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/、.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/、.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/、.loudschars2 deleted file mode 100644 index b01f5cb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/、.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/、0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/、0.loudstxt3 deleted file mode 100644 index 2e51f35..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/、0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/。.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/。.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/。.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/。.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/。.loudschars2 deleted file mode 100644 index bd474b2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/。.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/。0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/。0.loudstxt3 deleted file mode 100644 index c4ab087..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/。0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〃.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〃.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〃.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〃.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〃.loudschars2 deleted file mode 100644 index 2343a0c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〃.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〃0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〃0.loudstxt3 deleted file mode 100644 index 5e00667..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〃0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/々.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/々.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/々.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/々.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/々.loudschars2 deleted file mode 100644 index 388a98a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/々.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/々0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/々0.loudstxt3 deleted file mode 100644 index 1d267f3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/々0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〆.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〆.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〆.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〆.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〆.loudschars2 deleted file mode 100644 index e9d6617..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〆.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〆0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〆0.loudstxt3 deleted file mode 100644 index 44925ff..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〆0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〇.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〇.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〇.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〇.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〇.loudschars2 deleted file mode 100644 index 14294c1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〇.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〇0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〇0.loudstxt3 deleted file mode 100644 index 6457374..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〇0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〈.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〈.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〈.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〈.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〈.loudschars2 deleted file mode 100644 index e262c98..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〈.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〈0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〈0.loudstxt3 deleted file mode 100644 index 58f9aef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〈0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〉.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〉.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〉.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〉.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〉.loudschars2 deleted file mode 100644 index 746da08..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〉.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〉0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〉0.loudstxt3 deleted file mode 100644 index b7b688a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〉0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/《.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/《.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/《.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/《.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/《.loudschars2 deleted file mode 100644 index e23d427..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/《.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/《0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/《0.loudstxt3 deleted file mode 100644 index b768d66..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/《0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/》.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/》.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/》.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/》.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/》.loudschars2 deleted file mode 100644 index 50311ac..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/》.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/》0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/》0.loudstxt3 deleted file mode 100644 index fbca35c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/》0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/「.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/「.louds deleted file mode 100644 index 58e60d0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/「.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/「.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/「.loudschars2 deleted file mode 100644 index d36838c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/「.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/「0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/「0.loudstxt3 deleted file mode 100644 index 6b6f06a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/「0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/」.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/」.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/」.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/」.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/」.loudschars2 deleted file mode 100644 index 0080132..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/」.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/」0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/」0.loudstxt3 deleted file mode 100644 index 559a433..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/」0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/『.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/『.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/『.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/『.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/『.loudschars2 deleted file mode 100644 index 9dcd04f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/『.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/『0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/『0.loudstxt3 deleted file mode 100644 index 2cb848d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/『0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/』.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/』.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/』.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/』.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/』.loudschars2 deleted file mode 100644 index 678dfff..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/』.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/』0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/』0.loudstxt3 deleted file mode 100644 index eece7ec..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/』0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/【.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/【.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/【.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/【.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/【.loudschars2 deleted file mode 100644 index 5b8a1c3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/【.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/【0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/【0.loudstxt3 deleted file mode 100644 index 09fa983..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/【0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/】.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/】.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/】.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/】.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/】.loudschars2 deleted file mode 100644 index 4971dca..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/】.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/】0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/】0.loudstxt3 deleted file mode 100644 index cc0585a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/】0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〔.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〔.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〔.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〔.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〔.loudschars2 deleted file mode 100644 index f5ff1c1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〔.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〔0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〔0.loudstxt3 deleted file mode 100644 index 1b73023..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〔0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〕.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〕.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〕.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〕.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〕.loudschars2 deleted file mode 100644 index d8b0ff3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〕.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〕0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〕0.loudstxt3 deleted file mode 100644 index 36590f7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〕0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〜.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〜.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〜.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〜.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〜.loudschars2 deleted file mode 100644 index f32d149..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〜.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〜0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〜0.loudstxt3 deleted file mode 100644 index 7ad93d1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/〜0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゛.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゛.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゛.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゛.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゛.loudschars2 deleted file mode 100644 index 227a1d7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゛.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゛0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゛0.loudstxt3 deleted file mode 100644 index 89f2a55..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゛0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゜.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゜.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゜.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゜.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゜.loudschars2 deleted file mode 100644 index d58ca7d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゜.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゜0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゜0.loudstxt3 deleted file mode 100644 index 150e24f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/゜0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ァ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ァ.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ァ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ァ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ァ.loudschars2 deleted file mode 100644 index 285c4f2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ァ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ァ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ァ0.loudstxt3 deleted file mode 100644 index e6d2d7f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ァ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア.louds deleted file mode 100644 index f9bc2a3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア.loudschars2 deleted file mode 100644 index 3835c6f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア0.loudstxt3 deleted file mode 100644 index 4b224d8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア1.loudstxt3 deleted file mode 100644 index 1e1cbdc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア10.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア10.loudstxt3 deleted file mode 100644 index e7b6114..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア10.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア11.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア11.loudstxt3 deleted file mode 100644 index 1724258..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア11.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア12.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア12.loudstxt3 deleted file mode 100644 index 4344dd9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア12.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア13.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア13.loudstxt3 deleted file mode 100644 index 233c80b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア13.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア14.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア14.loudstxt3 deleted file mode 100644 index 77afb9c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア14.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア2.loudstxt3 deleted file mode 100644 index 595d06c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア3.loudstxt3 deleted file mode 100644 index dfcce18..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア4.loudstxt3 deleted file mode 100644 index 41a5656..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア5.loudstxt3 deleted file mode 100644 index 16dd7e4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア6.loudstxt3 deleted file mode 100644 index 561b94a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア7.loudstxt3 deleted file mode 100644 index 145814e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア8.loudstxt3 deleted file mode 100644 index 0512239..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア9.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア9.loudstxt3 deleted file mode 100644 index b9a6319..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ア9.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ィ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ィ.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ィ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ィ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ィ.loudschars2 deleted file mode 100644 index 58dc6bd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ィ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ィ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ィ0.loudstxt3 deleted file mode 100644 index c7c58bd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ィ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ.louds deleted file mode 100644 index 80636ba..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ.loudschars2 deleted file mode 100644 index abb7b1e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ0.loudstxt3 deleted file mode 100644 index f433683..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ1.loudstxt3 deleted file mode 100644 index 1a5a4f2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ10.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ10.loudstxt3 deleted file mode 100644 index 693ca11..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ10.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ2.loudstxt3 deleted file mode 100644 index 50a0cf7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ3.loudstxt3 deleted file mode 100644 index b8e4fd9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ4.loudstxt3 deleted file mode 100644 index 4e078bb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ5.loudstxt3 deleted file mode 100644 index ffdc116..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ6.loudstxt3 deleted file mode 100644 index b860ba5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ7.loudstxt3 deleted file mode 100644 index f1bcd68..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ8.loudstxt3 deleted file mode 100644 index 9b53a4c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ9.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ9.loudstxt3 deleted file mode 100644 index 8820c7f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/イ9.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゥ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゥ.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゥ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゥ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゥ.loudschars2 deleted file mode 100644 index 3657955..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゥ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゥ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゥ0.loudstxt3 deleted file mode 100644 index db74a62..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゥ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ.louds deleted file mode 100644 index bd5770c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ.loudschars2 deleted file mode 100644 index fc4d6bc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ0.loudstxt3 deleted file mode 100644 index f7b8c62..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ1.loudstxt3 deleted file mode 100644 index c459d03..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ2.loudstxt3 deleted file mode 100644 index 9e7e4a6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ3.loudstxt3 deleted file mode 100644 index c02bb2a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ4.loudstxt3 deleted file mode 100644 index a28c7ca..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ5.loudstxt3 deleted file mode 100644 index 4d781e3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ6.loudstxt3 deleted file mode 100644 index 80dfd33..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ウ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ェ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ェ.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ェ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ェ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ェ.loudschars2 deleted file mode 100644 index 195a607..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ェ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ェ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ェ0.loudstxt3 deleted file mode 100644 index 2810f34..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ェ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ.louds deleted file mode 100644 index 4a761e0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ.loudschars2 deleted file mode 100644 index 0064b88..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ0.loudstxt3 deleted file mode 100644 index 7a6492e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ1.loudstxt3 deleted file mode 100644 index f9cf092..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ2.loudstxt3 deleted file mode 100644 index a036438..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ3.loudstxt3 deleted file mode 100644 index ca13d41..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ4.loudstxt3 deleted file mode 100644 index 3d66e8b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ5.loudstxt3 deleted file mode 100644 index ce4d8d5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ6.loudstxt3 deleted file mode 100644 index 3ea0797..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ7.loudstxt3 deleted file mode 100644 index 1586bcf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/エ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ォ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ォ.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ォ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ォ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ォ.loudschars2 deleted file mode 100644 index 3c7576d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ォ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ォ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ォ0.loudstxt3 deleted file mode 100644 index f74cee2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ォ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ.louds deleted file mode 100644 index db331f8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ.loudschars2 deleted file mode 100644 index 3786262..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ0.loudstxt3 deleted file mode 100644 index ddf7b1d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ1.loudstxt3 deleted file mode 100644 index 7f28ffe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ10.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ10.loudstxt3 deleted file mode 100644 index aacf73e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ10.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ11.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ11.loudstxt3 deleted file mode 100644 index 1a46d9c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ11.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ2.loudstxt3 deleted file mode 100644 index ef75497..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ3.loudstxt3 deleted file mode 100644 index 573bb39..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ4.loudstxt3 deleted file mode 100644 index 50ae8a6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ5.loudstxt3 deleted file mode 100644 index 45809f3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ6.loudstxt3 deleted file mode 100644 index 21da492..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ7.loudstxt3 deleted file mode 100644 index e02d947..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ8.loudstxt3 deleted file mode 100644 index f75dcfb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ9.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ9.loudstxt3 deleted file mode 100644 index 1f11452..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/オ9.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ.louds deleted file mode 100644 index 08b7904..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ.loudschars2 deleted file mode 100644 index 69f3901..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ0.loudstxt3 deleted file mode 100644 index a8b7b23..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ1.loudstxt3 deleted file mode 100644 index 79f3be5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ10.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ10.loudstxt3 deleted file mode 100644 index 45ba5b0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ10.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ11.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ11.loudstxt3 deleted file mode 100644 index fbb1ebe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ11.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ12.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ12.loudstxt3 deleted file mode 100644 index 01221d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ12.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ13.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ13.loudstxt3 deleted file mode 100644 index 961a83a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ13.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ2.loudstxt3 deleted file mode 100644 index ca5a38f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ3.loudstxt3 deleted file mode 100644 index 633eebd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ4.loudstxt3 deleted file mode 100644 index ceda4dc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ5.loudstxt3 deleted file mode 100644 index fc907c9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ6.loudstxt3 deleted file mode 100644 index 772f14c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ7.loudstxt3 deleted file mode 100644 index 09b6242..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ8.loudstxt3 deleted file mode 100644 index 3e45ab5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ9.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ9.loudstxt3 deleted file mode 100644 index d953aef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/カ9.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ.louds deleted file mode 100644 index cc7618a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ.loudschars2 deleted file mode 100644 index bf46266..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ0.loudstxt3 deleted file mode 100644 index 89be9fe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ1.loudstxt3 deleted file mode 100644 index 9f6dae2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ2.loudstxt3 deleted file mode 100644 index c5c7d7a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ3.loudstxt3 deleted file mode 100644 index 807cb24..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ガ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ.louds deleted file mode 100644 index 61c8211..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ.loudschars2 deleted file mode 100644 index baed17e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ0.loudstxt3 deleted file mode 100644 index 4fec37b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ1.loudstxt3 deleted file mode 100644 index 4708315..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ2.loudstxt3 deleted file mode 100644 index fd48332..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ3.loudstxt3 deleted file mode 100644 index f70147b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ4.loudstxt3 deleted file mode 100644 index ca5e467..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ5.loudstxt3 deleted file mode 100644 index d8a70ad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ6.loudstxt3 deleted file mode 100644 index e858c7d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ7.loudstxt3 deleted file mode 100644 index d548df8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ8.loudstxt3 deleted file mode 100644 index 83c222e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ9.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ9.loudstxt3 deleted file mode 100644 index 27918e6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/キ9.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ.louds deleted file mode 100644 index 3b935ed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ.loudschars2 deleted file mode 100644 index 8063c4c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ0.loudstxt3 deleted file mode 100644 index 8e1c450..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ1.loudstxt3 deleted file mode 100644 index eac6ae7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ギ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク.louds deleted file mode 100644 index a412059..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク.loudschars2 deleted file mode 100644 index 9a5e577..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク0.loudstxt3 deleted file mode 100644 index 0a00609..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク1.loudstxt3 deleted file mode 100644 index b269d6d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク2.loudstxt3 deleted file mode 100644 index f032c55..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク3.loudstxt3 deleted file mode 100644 index 192b416..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク4.loudstxt3 deleted file mode 100644 index bbde5cd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク5.loudstxt3 deleted file mode 100644 index c52cee4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ク5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ.louds deleted file mode 100644 index 285935c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ.loudschars2 deleted file mode 100644 index 6a3ed1c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ0.loudstxt3 deleted file mode 100644 index 0b0909a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ1.loudstxt3 deleted file mode 100644 index df44aa2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ2.loudstxt3 deleted file mode 100644 index a039903..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/グ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ.louds deleted file mode 100644 index b5b3478..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ.loudschars2 deleted file mode 100644 index 1f81567..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ0.loudstxt3 deleted file mode 100644 index 6c4111e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ1.loudstxt3 deleted file mode 100644 index 5b3e0e4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ2.loudstxt3 deleted file mode 100644 index 4cf6376..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ3.loudstxt3 deleted file mode 100644 index 60a4a4b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ケ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ.louds deleted file mode 100644 index 77c1820..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ.loudschars2 deleted file mode 100644 index 938764e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ0.loudstxt3 deleted file mode 100644 index c32be2b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ1.loudstxt3 deleted file mode 100644 index ee870b5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゲ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ.louds deleted file mode 100644 index 5e6bcfe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ.loudschars2 deleted file mode 100644 index 124a7ec..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ0.loudstxt3 deleted file mode 100644 index 27ce18b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ1.loudstxt3 deleted file mode 100644 index 04f0a3f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ10.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ10.loudstxt3 deleted file mode 100644 index 38df936..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ10.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ2.loudstxt3 deleted file mode 100644 index 92fa7a9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ3.loudstxt3 deleted file mode 100644 index 83f3e12..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ4.loudstxt3 deleted file mode 100644 index 994dc9a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ5.loudstxt3 deleted file mode 100644 index 47accef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ6.loudstxt3 deleted file mode 100644 index 53ff41b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ7.loudstxt3 deleted file mode 100644 index 2bfacdf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ8.loudstxt3 deleted file mode 100644 index 64ef884..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ9.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ9.loudstxt3 deleted file mode 100644 index a66975f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/コ9.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ.louds deleted file mode 100644 index 93237a0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ.loudschars2 deleted file mode 100644 index c2fc438..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ0.loudstxt3 deleted file mode 100644 index e57b4dc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ1.loudstxt3 deleted file mode 100644 index c47fd69..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ2.loudstxt3 deleted file mode 100644 index 31f21b0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゴ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ.louds deleted file mode 100644 index 5233b89..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ.loudschars2 deleted file mode 100644 index e1ea4ef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ0.loudstxt3 deleted file mode 100644 index 1ca91ab..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ1.loudstxt3 deleted file mode 100644 index 805ffdd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ2.loudstxt3 deleted file mode 100644 index edcccc2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ3.loudstxt3 deleted file mode 100644 index f8b68fd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ4.loudstxt3 deleted file mode 100644 index b7b67c4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ5.loudstxt3 deleted file mode 100644 index 30adcbd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ6.loudstxt3 deleted file mode 100644 index fed84e4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ7.loudstxt3 deleted file mode 100644 index 9a5e4d6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ8.loudstxt3 deleted file mode 100644 index 43ab68e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/サ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ.louds deleted file mode 100644 index 0e5c34c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ.loudschars2 deleted file mode 100644 index 4b81131..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ0.loudstxt3 deleted file mode 100644 index 6ea5093..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ1.loudstxt3 deleted file mode 100644 index 96e7fe4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ザ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ.louds deleted file mode 100644 index 659310d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ.loudschars2 deleted file mode 100644 index 29eb027..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ0.loudstxt3 deleted file mode 100644 index dc112ca..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ1.loudstxt3 deleted file mode 100644 index 63c07ed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ10.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ10.loudstxt3 deleted file mode 100644 index 86530af..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ10.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ11.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ11.loudstxt3 deleted file mode 100644 index 9588851..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ11.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ12.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ12.loudstxt3 deleted file mode 100644 index cf7f15c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ12.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ13.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ13.loudstxt3 deleted file mode 100644 index 65d9160..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ13.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ14.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ14.loudstxt3 deleted file mode 100644 index 597601e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ14.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ15.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ15.loudstxt3 deleted file mode 100644 index b2c5cc1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ15.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ2.loudstxt3 deleted file mode 100644 index 64cf939..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ3.loudstxt3 deleted file mode 100644 index f95539e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ4.loudstxt3 deleted file mode 100644 index 2d1f0c5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ5.loudstxt3 deleted file mode 100644 index 0ed30ac..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ6.loudstxt3 deleted file mode 100644 index f9e48d6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ7.loudstxt3 deleted file mode 100644 index 07a0017..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ8.loudstxt3 deleted file mode 100644 index 8f57491..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ9.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ9.loudstxt3 deleted file mode 100644 index e4ebdf6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/シ9.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ.louds deleted file mode 100644 index e9f42ea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ.loudschars2 deleted file mode 100644 index ae557fc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ0.loudstxt3 deleted file mode 100644 index 515150c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ1.loudstxt3 deleted file mode 100644 index 5f9f80f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ2.loudstxt3 deleted file mode 100644 index 663a7f2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ3.loudstxt3 deleted file mode 100644 index b321e99..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ4.loudstxt3 deleted file mode 100644 index 9ec37ca..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ5.loudstxt3 deleted file mode 100644 index 4fb5aed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ6.loudstxt3 deleted file mode 100644 index c0913b7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ7.loudstxt3 deleted file mode 100644 index 57a1983..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ8.loudstxt3 deleted file mode 100644 index 0912315..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ジ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス.louds deleted file mode 100644 index 83fbe61..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス.loudschars2 deleted file mode 100644 index a0d11d1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス0.loudstxt3 deleted file mode 100644 index c6c4269..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス1.loudstxt3 deleted file mode 100644 index e393185..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス2.loudstxt3 deleted file mode 100644 index 5415302..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス3.loudstxt3 deleted file mode 100644 index 9dfd0fe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス4.loudstxt3 deleted file mode 100644 index 0a63a8b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス5.loudstxt3 deleted file mode 100644 index f2486a2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス6.loudstxt3 deleted file mode 100644 index 6399b1a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ス6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ズ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ズ.louds deleted file mode 100644 index 94cfa58..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ズ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ズ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ズ.loudschars2 deleted file mode 100644 index 17ab561..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ズ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ズ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ズ0.loudstxt3 deleted file mode 100644 index 7de2064..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ズ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ.louds deleted file mode 100644 index a190a6c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ.loudschars2 deleted file mode 100644 index eba618f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ0.loudstxt3 deleted file mode 100644 index d6fa1b1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ1.loudstxt3 deleted file mode 100644 index eaf9cee..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ2.loudstxt3 deleted file mode 100644 index 0a3ef5f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ3.loudstxt3 deleted file mode 100644 index 0fb0d5b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ4.loudstxt3 deleted file mode 100644 index 3bae1ab..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ5.loudstxt3 deleted file mode 100644 index ba57417..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ6.loudstxt3 deleted file mode 100644 index bd148d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ7.loudstxt3 deleted file mode 100644 index 4a21bcf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/セ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ.louds deleted file mode 100644 index 6ffded6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ.loudschars2 deleted file mode 100644 index 901cc39..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ0.loudstxt3 deleted file mode 100644 index 5a6bb9d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ1.loudstxt3 deleted file mode 100644 index c89e74f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゼ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ.louds deleted file mode 100644 index b0e160b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ.loudschars2 deleted file mode 100644 index 62bc16e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ0.loudstxt3 deleted file mode 100644 index 36ce73d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ1.loudstxt3 deleted file mode 100644 index 7b1bbe1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ2.loudstxt3 deleted file mode 100644 index a1c5524..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ3.loudstxt3 deleted file mode 100644 index ac63da7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ソ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゾ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゾ.louds deleted file mode 100644 index 992b11b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゾ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゾ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゾ.loudschars2 deleted file mode 100644 index 5bc910b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゾ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゾ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゾ0.loudstxt3 deleted file mode 100644 index c87de2e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ゾ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ.louds deleted file mode 100644 index 02ee04d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ.loudschars2 deleted file mode 100644 index dc6fa6d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ0.loudstxt3 deleted file mode 100644 index 305daa1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ1.loudstxt3 deleted file mode 100644 index 9303069..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ2.loudstxt3 deleted file mode 100644 index 295d7f2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ3.loudstxt3 deleted file mode 100644 index ea8a7b7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ4.loudstxt3 deleted file mode 100644 index 46e78ef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ5.loudstxt3 deleted file mode 100644 index ac22e40..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ6.loudstxt3 deleted file mode 100644 index 91a3086..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ7.loudstxt3 deleted file mode 100644 index 750e45a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/タ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ.louds deleted file mode 100644 index c9fe4d4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ.loudschars2 deleted file mode 100644 index c64fdb4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ0.loudstxt3 deleted file mode 100644 index 5e319b4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ1.loudstxt3 deleted file mode 100644 index 6f62779..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ2.loudstxt3 deleted file mode 100644 index 68e8da0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ3.loudstxt3 deleted file mode 100644 index 9d8e3eb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ダ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ.louds deleted file mode 100644 index 11eb15c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ.loudschars2 deleted file mode 100644 index ac2012e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ0.loudstxt3 deleted file mode 100644 index c38d88b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ1.loudstxt3 deleted file mode 100644 index 7b511cd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ2.loudstxt3 deleted file mode 100644 index 589262b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ3.loudstxt3 deleted file mode 100644 index 4563e74..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ4.loudstxt3 deleted file mode 100644 index d82445b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ5.loudstxt3 deleted file mode 100644 index d23f659..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/チ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヂ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヂ.louds deleted file mode 100644 index 148fa3b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヂ.louds +++ /dev/null @@ -1 +0,0 @@ -Z)"RRJʛT \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヂ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヂ.loudschars2 deleted file mode 100644 index cfcc611..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヂ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヂ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヂ0.loudstxt3 deleted file mode 100644 index 955d8a3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヂ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ッ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ッ.louds deleted file mode 100644 index b563ed4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ッ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ッ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ッ.loudschars2 deleted file mode 100644 index 2963219..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ッ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ッ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ッ0.loudstxt3 deleted file mode 100644 index b5ea9ea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ッ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ.louds deleted file mode 100644 index 25eeaea..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ.loudschars2 deleted file mode 100644 index 6142690..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ0.loudstxt3 deleted file mode 100644 index 93b42d3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ1.loudstxt3 deleted file mode 100644 index 5bf7f29..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ2.loudstxt3 deleted file mode 100644 index 4265d10..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ3.loudstxt3 deleted file mode 100644 index 1ca5086..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ツ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヅ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヅ.louds deleted file mode 100644 index ce3a31b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヅ.louds +++ /dev/null @@ -1 +0,0 @@ -U _{a= S(E \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヅ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヅ.loudschars2 deleted file mode 100644 index f0480b8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヅ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヅ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヅ0.loudstxt3 deleted file mode 100644 index 97d3ab4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヅ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ.louds deleted file mode 100644 index 100ec51..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ.loudschars2 deleted file mode 100644 index e7bfd97..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ0.loudstxt3 deleted file mode 100644 index c0520bd..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ1.loudstxt3 deleted file mode 100644 index 8e53e12..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ2.loudstxt3 deleted file mode 100644 index 3547ac5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ3.loudstxt3 deleted file mode 100644 index 3e5dc27..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ4.loudstxt3 deleted file mode 100644 index 05f939d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/テ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ.louds deleted file mode 100644 index 6819213..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ.loudschars2 deleted file mode 100644 index 8dfd1c0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ0.loudstxt3 deleted file mode 100644 index 4ca4fbf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ1.loudstxt3 deleted file mode 100644 index b3e1440..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ2.loudstxt3 deleted file mode 100644 index e2946d6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ3.loudstxt3 deleted file mode 100644 index 1a2844a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/デ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト.louds deleted file mode 100644 index 088ac6e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト.loudschars2 deleted file mode 100644 index c50a324..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト0.loudstxt3 deleted file mode 100644 index 4f4ef51..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト1.loudstxt3 deleted file mode 100644 index ea46e35..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト2.loudstxt3 deleted file mode 100644 index 711cd90..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト3.loudstxt3 deleted file mode 100644 index 9ed20bf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト4.loudstxt3 deleted file mode 100644 index b2b0364..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト5.loudstxt3 deleted file mode 100644 index d949fb7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト6.loudstxt3 deleted file mode 100644 index 2363534..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト7.loudstxt3 deleted file mode 100644 index 231a415..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト8.loudstxt3 deleted file mode 100644 index 7fa199f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ト8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド.louds deleted file mode 100644 index a48e8d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド.loudschars2 deleted file mode 100644 index 45818ff..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド0.loudstxt3 deleted file mode 100644 index e93d621..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド1.loudstxt3 deleted file mode 100644 index 696eb32..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド2.loudstxt3 deleted file mode 100644 index e3dcd05..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド3.loudstxt3 deleted file mode 100644 index 70a2878..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ド3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ.louds deleted file mode 100644 index 5c2c533..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ.loudschars2 deleted file mode 100644 index 6823cd7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ0.loudstxt3 deleted file mode 100644 index 0612938..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ1.loudstxt3 deleted file mode 100644 index 33e41df..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ2.loudstxt3 deleted file mode 100644 index 7b87159..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ3.loudstxt3 deleted file mode 100644 index 520a94c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ4.loudstxt3 deleted file mode 100644 index 499c3e5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ5.loudstxt3 deleted file mode 100644 index 3d25180..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ6.loudstxt3 deleted file mode 100644 index 6797022..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ナ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ.louds deleted file mode 100644 index a789c79..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ.loudschars2 deleted file mode 100644 index 1232e4e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ0.loudstxt3 deleted file mode 100644 index 035ed06..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ1.loudstxt3 deleted file mode 100644 index 6bc5428..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ2.loudstxt3 deleted file mode 100644 index ab3fc00..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ3.loudstxt3 deleted file mode 100644 index 5f617a4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ4.loudstxt3 deleted file mode 100644 index f05315b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ5.loudstxt3 deleted file mode 100644 index ebb456e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ6.loudstxt3 deleted file mode 100644 index 628d458..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ7.loudstxt3 deleted file mode 100644 index 4775a41..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ニ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヌ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヌ.louds deleted file mode 100644 index a75c7f1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヌ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヌ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヌ.loudschars2 deleted file mode 100644 index c98de58..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヌ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヌ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヌ0.loudstxt3 deleted file mode 100644 index 26f0438..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヌ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ.louds deleted file mode 100644 index d4f847e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ.loudschars2 deleted file mode 100644 index 547ac23..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ0.loudstxt3 deleted file mode 100644 index 6561af9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ1.loudstxt3 deleted file mode 100644 index f7fdc8c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ネ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ.louds deleted file mode 100644 index 4c4ad56..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ.loudschars2 deleted file mode 100644 index 0c5fd3d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ0.loudstxt3 deleted file mode 100644 index 846c2cf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ1.loudstxt3 deleted file mode 100644 index 9c31803..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ2.loudstxt3 deleted file mode 100644 index 877ae7c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ3.loudstxt3 deleted file mode 100644 index 909b856..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ4.loudstxt3 deleted file mode 100644 index 5462edf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ノ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ.louds deleted file mode 100644 index 1372bfc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ.loudschars2 deleted file mode 100644 index de9d13a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ0.loudstxt3 deleted file mode 100644 index 5fa2149..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ1.loudstxt3 deleted file mode 100644 index cf75226..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ2.loudstxt3 deleted file mode 100644 index 276a54e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ3.loudstxt3 deleted file mode 100644 index ac10e91..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ4.loudstxt3 deleted file mode 100644 index 85ec65b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ5.loudstxt3 deleted file mode 100644 index 351d8bf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ6.loudstxt3 deleted file mode 100644 index ad8eef2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ7.loudstxt3 deleted file mode 100644 index d08be06..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ8.loudstxt3 deleted file mode 100644 index 942baf4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ハ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ.louds deleted file mode 100644 index a9086d4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ.loudschars2 deleted file mode 100644 index 387be03..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ0.loudstxt3 deleted file mode 100644 index b17d1aa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ1.loudstxt3 deleted file mode 100644 index 4f43736..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ2.loudstxt3 deleted file mode 100644 index 007a328..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ3.loudstxt3 deleted file mode 100644 index 74af25c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/バ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ.louds deleted file mode 100644 index 5db18b4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ.louds +++ /dev/null @@ -1,11 +0,0 @@ -{w{߿Rb{o}wv5z}bn(~ݽw__{\ޕrݿo~Iz)*{noգUVUծUUWuu׾KYPsJ*-Ӷ~ʳZk֫J~ʩUU}ȮUU[ŊkV|4R$EźNID ˟w_ZTVJLUKUT*ERUjZ5%UժjRTIUrTZU*\WUJ֪RJj+URRNTjQUu-%**Nj%婤kBRj*픮jTQPjQiU)U-5"U2UU]UU*a%R(IH,UUTURQBjUբz$9UQ&J*ՇUR+РUJJMBUDK*IUUBTH*2UUTEUayUj֝V -URH*UQ%*ERwJJ%*O)ERTI*)BJB($TjEUU*( -UT*Q**2)JY*bRUURU1'ILUHU* -J(IUU%(*ZDDPIU*UUJKD"*j*JTVRQUJQRTPAPPU R"Tj"DQUEQ$TJU Qd*"D IQS**HURU -)BUJP!TQZMJ*IJM5 RJRU -H*D -Q)T*(PUUKPBU$*T$Ҋ*RU -RTTU)PUJDU"IR)"E -IA TDJR -T`"T*PJUIUB *EJ"AJUIT -QH \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ.loudschars2 deleted file mode 100644 index 9ba09ce..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ0.loudstxt3 deleted file mode 100644 index 9fe8fd3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ1.loudstxt3 deleted file mode 100644 index 9ebaac2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/パ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ.louds deleted file mode 100644 index 60edc36..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ.loudschars2 deleted file mode 100644 index 857a3a0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ0.loudstxt3 deleted file mode 100644 index 340fc6f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ1.loudstxt3 deleted file mode 100644 index 82edf2e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ2.loudstxt3 deleted file mode 100644 index 9e33b69..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ3.loudstxt3 deleted file mode 100644 index e44e69f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ4.loudstxt3 deleted file mode 100644 index 68fc7d9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ5.loudstxt3 deleted file mode 100644 index 3f0cd83..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヒ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ.louds deleted file mode 100644 index 8f00be5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ.loudschars2 deleted file mode 100644 index 8be112d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ0.loudstxt3 deleted file mode 100644 index 5522e40..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ1.loudstxt3 deleted file mode 100644 index 026acca..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ビ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ.louds deleted file mode 100644 index 615f83b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ.louds +++ /dev/null @@ -1,10 +0,0 @@ -߿W}_[_}oo])_mVڪUjWrWUݪUEqw{RjMZTۯJRjU}UM**UJUR\U[vERQTJmVTSYRRURi_ߗV*5R-u_V9UUQYU$RU -JҊTUQ%TUIUVU%jJ(*ҋPUUTUMa*JRBe"JEh%ʨTI -R꿵j'*jZ6UUUQJRUUUjjjTPUUDUQUT -PUjQT)UTTJDAI*J*UWQWH%HR[jJFU -B Z(TԪzU*2 - -UMLD@*UB*BUUI4%! -JPjJUդJREWJ( -EQU**A -JU)*JJRUQ*)BPREQUUBHDJ%%)UJJTT%"*H)U))JJJPJEP \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ.loudschars2 deleted file mode 100644 index 97c6694..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ0.loudstxt3 deleted file mode 100644 index bdfdcde..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ1.loudstxt3 deleted file mode 100644 index 0e1dd8a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ピ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ.louds deleted file mode 100644 index 0fcc02c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ.loudschars2 deleted file mode 100644 index 394cc87..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ0.loudstxt3 deleted file mode 100644 index ea22bdc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ1.loudstxt3 deleted file mode 100644 index 89a2f53..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ2.loudstxt3 deleted file mode 100644 index 8efc85f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ3.loudstxt3 deleted file mode 100644 index e938add..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ4.loudstxt3 deleted file mode 100644 index 5dfbe75..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ5.loudstxt3 deleted file mode 100644 index 3a43f69..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ6.loudstxt3 deleted file mode 100644 index 8ea4188..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ7.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ7.loudstxt3 deleted file mode 100644 index b7b849b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ7.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ8.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ8.loudstxt3 deleted file mode 100644 index 1a16eb8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/フ8.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ.louds deleted file mode 100644 index aec7849..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ.loudschars2 deleted file mode 100644 index ebb2741..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ0.loudstxt3 deleted file mode 100644 index 3b07d3e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ1.loudstxt3 deleted file mode 100644 index 4d3f72a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ2.loudstxt3 deleted file mode 100644 index 522c7db..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ブ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ.louds deleted file mode 100644 index 8b979d2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ.loudschars2 deleted file mode 100644 index e4695fc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ0.loudstxt3 deleted file mode 100644 index f121760..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ1.loudstxt3 deleted file mode 100644 index b04d355..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/プ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ.louds deleted file mode 100644 index c1a2ed4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ.loudschars2 deleted file mode 100644 index ebd8145..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ0.loudstxt3 deleted file mode 100644 index 06755de..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ1.loudstxt3 deleted file mode 100644 index 4e94d00..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヘ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ.louds deleted file mode 100644 index b5775b3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ.loudschars2 deleted file mode 100644 index 7ce5cf5..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ0.loudstxt3 deleted file mode 100644 index feb5a21..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ1.loudstxt3 deleted file mode 100644 index 1f221c2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ベ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ペ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ペ.louds deleted file mode 100644 index 1a8e317..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ペ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ペ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ペ.loudschars2 deleted file mode 100644 index 6c50f2b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ペ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ペ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ペ0.loudstxt3 deleted file mode 100644 index 26d68ed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ペ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ.louds deleted file mode 100644 index 437b0d8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ.loudschars2 deleted file mode 100644 index 72a812e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ0.loudstxt3 deleted file mode 100644 index 162beed..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ1.loudstxt3 deleted file mode 100644 index ba6941c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ2.loudstxt3 deleted file mode 100644 index f3955df..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ3.loudstxt3 deleted file mode 100644 index f06bb5a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ4.loudstxt3 deleted file mode 100644 index 071c713..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ホ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ.louds deleted file mode 100644 index 2e41885..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ.loudschars2 deleted file mode 100644 index c20e4f1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ0.loudstxt3 deleted file mode 100644 index a7310a7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ1.loudstxt3 deleted file mode 100644 index b0b406c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ボ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ.louds deleted file mode 100644 index 123dc32..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ.loudschars2 deleted file mode 100644 index 032b228..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ0.loudstxt3 deleted file mode 100644 index d0e47c6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ1.loudstxt3 deleted file mode 100644 index c0870b9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ポ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ.louds deleted file mode 100644 index 2c6b1eb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ.loudschars2 deleted file mode 100644 index e97957b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ0.loudstxt3 deleted file mode 100644 index 626c1ae..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ1.loudstxt3 deleted file mode 100644 index 26ea967..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ2.loudstxt3 deleted file mode 100644 index 3417283..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ3.loudstxt3 deleted file mode 100644 index 883df8f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ4.loudstxt3 deleted file mode 100644 index e32e63f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ5.loudstxt3 deleted file mode 100644 index 88ca2ca..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ6.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ6.loudstxt3 deleted file mode 100644 index 6be753c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/マ6.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ.louds deleted file mode 100644 index cac4a9b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ.loudschars2 deleted file mode 100644 index 549dfd0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ0.loudstxt3 deleted file mode 100644 index 44e26b7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ1.loudstxt3 deleted file mode 100644 index f047b50..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ2.loudstxt3 deleted file mode 100644 index 13c05be..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ3.loudstxt3 deleted file mode 100644 index 16fd28c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ4.loudstxt3 deleted file mode 100644 index 39f4eda..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ5.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ5.loudstxt3 deleted file mode 100644 index 45e8e33..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ミ5.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム.louds deleted file mode 100644 index 0e96fc3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム.loudschars2 deleted file mode 100644 index 8ea47b7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム0.loudstxt3 deleted file mode 100644 index 5acbdfb..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム1.loudstxt3 deleted file mode 100644 index dc136ab..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム2.loudstxt3 deleted file mode 100644 index 7db5a39..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ム2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ.louds deleted file mode 100644 index 9548f73..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ.loudschars2 deleted file mode 100644 index 1d46847..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ0.loudstxt3 deleted file mode 100644 index a4969d8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ1.loudstxt3 deleted file mode 100644 index 311b879..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ2.loudstxt3 deleted file mode 100644 index e505cc1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/メ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ.louds deleted file mode 100644 index 72c804b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ.loudschars2 deleted file mode 100644 index 23a8c55..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ0.loudstxt3 deleted file mode 100644 index 5378863..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ1.loudstxt3 deleted file mode 100644 index e04fdc8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ2.loudstxt3 deleted file mode 100644 index 8ec645b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ3.loudstxt3 deleted file mode 100644 index 48ae443..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ4.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ4.loudstxt3 deleted file mode 100644 index ff22bbf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/モ4.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ.louds deleted file mode 100644 index 48bf2b8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ.loudschars2 deleted file mode 100644 index 805f493..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ0.loudstxt3 deleted file mode 100644 index 0421d31..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ1.loudstxt3 deleted file mode 100644 index f4e7756..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ2.loudstxt3 deleted file mode 100644 index 1931675..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ3.loudstxt3 deleted file mode 100644 index 48ece04..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヤ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ.louds deleted file mode 100644 index 312312c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ.loudschars2 deleted file mode 100644 index db491f4..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ0.loudstxt3 deleted file mode 100644 index 0499b97..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ1.loudstxt3 deleted file mode 100644 index 777f9fe..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ2.loudstxt3 deleted file mode 100644 index 5c39c40..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ユ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ョ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ョ.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ョ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ョ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ョ.loudschars2 deleted file mode 100644 index 35282ce..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ョ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ョ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ョ0.loudstxt3 deleted file mode 100644 index d198c2a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ョ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ.louds deleted file mode 100644 index 2597958..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ.loudschars2 deleted file mode 100644 index 9b2dd2b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ0.loudstxt3 deleted file mode 100644 index 449db0b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ1.loudstxt3 deleted file mode 100644 index 99d76ce..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ2.loudstxt3 deleted file mode 100644 index b3bdf62..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ3.loudstxt3 deleted file mode 100644 index a73b1f3..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヨ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ.louds deleted file mode 100644 index d5a4fb1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ.loudschars2 deleted file mode 100644 index 489b8fa..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ0.loudstxt3 deleted file mode 100644 index 16e5ce7..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ1.loudstxt3 deleted file mode 100644 index ad7787f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ2.loudstxt3 deleted file mode 100644 index d54fed2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ラ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ.louds deleted file mode 100644 index 92018a2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ.loudschars2 deleted file mode 100644 index 08cd901..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ0.loudstxt3 deleted file mode 100644 index 95b2d10..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ1.loudstxt3 deleted file mode 100644 index ffeafe8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ2.loudstxt3 deleted file mode 100644 index 2cf1f09..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ3.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ3.loudstxt3 deleted file mode 100644 index 36b3985..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/リ3.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ル.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ル.louds deleted file mode 100644 index 579af09..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ル.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ル.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ル.loudschars2 deleted file mode 100644 index 9ae3f9e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ル.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ル0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ル0.loudstxt3 deleted file mode 100644 index 7d98830..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ル0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ.louds deleted file mode 100644 index 624906b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ.loudschars2 deleted file mode 100644 index 7380a68..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ0.loudstxt3 deleted file mode 100644 index f479950..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ1.loudstxt3 deleted file mode 100644 index 6cb3b1f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ2.loudstxt3 deleted file mode 100644 index 9ffd1ee..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/レ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ.louds deleted file mode 100644 index edfdf03..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ.loudschars2 deleted file mode 100644 index b1a1a60..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ0.loudstxt3 deleted file mode 100644 index 3527c6a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ1.loudstxt3 deleted file mode 100644 index b1b3fc9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ2.loudstxt3 deleted file mode 100644 index 30aee2e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ロ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヮ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヮ.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヮ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヮ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヮ.loudschars2 deleted file mode 100644 index 799fc79..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヮ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヮ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヮ0.loudstxt3 deleted file mode 100644 index b93b481..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヮ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ.louds deleted file mode 100644 index da23c5f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ.loudschars2 deleted file mode 100644 index bab267b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ0.loudstxt3 deleted file mode 100644 index 1cddc19..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ1.loudstxt3 deleted file mode 100644 index 8a9bd75..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ2.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ2.loudstxt3 deleted file mode 100644 index 951f14e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ワ2.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヰ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヰ.louds deleted file mode 100644 index f0eb3a4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヰ.louds +++ /dev/null @@ -1 +0,0 @@ -RD) \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヰ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヰ.loudschars2 deleted file mode 100644 index fef1b74..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヰ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヰ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヰ0.loudstxt3 deleted file mode 100644 index e855919..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヰ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヱ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヱ.louds deleted file mode 100644 index b6de6c1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヱ.louds +++ /dev/null @@ -1 +0,0 @@ -RJRJ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヱ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヱ.loudschars2 deleted file mode 100644 index d1291b0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヱ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヱ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヱ0.loudstxt3 deleted file mode 100644 index c13cfef..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヱ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ.louds deleted file mode 100644 index 063e55a..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ.loudschars2 deleted file mode 100644 index 01789bf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ0.loudstxt3 deleted file mode 100644 index bcdf1b2..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ1.loudstxt3 deleted file mode 100644 index 713fb12..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヲ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ン.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ン.louds deleted file mode 100644 index 41a1dad..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ン.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ン.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ン.loudschars2 deleted file mode 100644 index e904b36..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ン.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ン0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ン0.loudstxt3 deleted file mode 100644 index 39a18d8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ン0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ.louds deleted file mode 100644 index e9a168f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ.louds and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ.loudschars2 deleted file mode 100644 index 6970138..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ0.loudstxt3 deleted file mode 100644 index a71d087..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ1.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ1.loudstxt3 deleted file mode 100644 index 90b8cc0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヴ1.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヶ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヶ.louds deleted file mode 100644 index f88f408..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヶ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヶ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヶ.loudschars2 deleted file mode 100644 index 8e365f6..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヶ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヶ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヶ0.loudstxt3 deleted file mode 100644 index 7929d10..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヶ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/・.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/・.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/・.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/・.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/・.loudschars2 deleted file mode 100644 index becaec0..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/・.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/・0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/・0.loudstxt3 deleted file mode 100644 index 6dbd09c..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/・0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ー.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ー.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ー.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ー.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ー.loudschars2 deleted file mode 100644 index e25b51e..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ー.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ー0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ー0.loudstxt3 deleted file mode 100644 index a12f7c9..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ー0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヽ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヽ.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヽ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヽ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヽ.loudschars2 deleted file mode 100644 index babc244..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヽ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヽ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヽ0.loudstxt3 deleted file mode 100644 index a9e4735..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヽ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヾ.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヾ.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヾ.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヾ.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヾ.loudschars2 deleted file mode 100644 index 2a34ffc..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヾ.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヾ0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヾ0.loudstxt3 deleted file mode 100644 index e90af0b..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/ヾ0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/仝.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/仝.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/仝.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/仝.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/仝.loudschars2 deleted file mode 100644 index 571c43f..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/仝.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/仝0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/仝0.loudstxt3 deleted file mode 100644 index 0e328d8..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/仝0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/!.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/!.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/!.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/!.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/!.loudschars2 deleted file mode 100644 index fe2afcf..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/!.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/!0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/!0.loudstxt3 deleted file mode 100644 index 7a8968d..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/!0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/?.louds b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/?.louds deleted file mode 100644 index b0b1af0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/?.louds +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/?.loudschars2 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/?.loudschars2 deleted file mode 100644 index ffb6029..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/?.loudschars2 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/?0.loudstxt3 b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/?0.loudstxt3 deleted file mode 100644 index e039d74..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/louds/?0.loudstxt3 and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/mm.binary b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/mm.binary deleted file mode 100644 index 0e1f7d1..0000000 Binary files a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/mm.binary and /dev/null differ diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/.gitkeep b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_1.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_1.csv deleted file mode 100644 index a33bcfd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_1.csv +++ /dev/null @@ -1,10 +0,0 @@ -1ツ,1つ,1285,1285,468,-7.9741 -1ツジョウ,1つ上,1285,1305,17,-12.8576 -1ツデ,1つで,1285,149,17,-11.0270 -1ツデ,1つで,1285,458,17,-11.1347 -1ツニ,1つに,1285,151,17,-11.0303 -1ツノ,1つの,1285,368,17,-9.8709 -1ツハ,1つは,1285,261,17,-10.9123 -1ツヒトツ,1つ1つ,1285,1285,17,-11.5332 -1ツマエ,1つ前,1285,1314,17,-12.8553 -1ツメ,1つ目,1285,1298,17,-11.2776 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_2.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_2.csv deleted file mode 100644 index a35923e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_2.csv +++ /dev/null @@ -1,6 +0,0 @@ -2ツ,2つ,1285,1285,304,-8.0530 -2ツイジョウ,2つ以上,1285,1313,17,-12.3363 -2ツニ,2つに,1285,151,17,-11.2179 -2ツノ,2つの,1285,368,17,-9.5199 -2ツメ,2つ目,1285,1298,17,-11.0298 -2ツメ,2つめ,1285,1298,17,-12.5697 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_3.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_3.csv deleted file mode 100644 index 5f1267f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_3.csv +++ /dev/null @@ -1,5 +0,0 @@ -3ツ,3つ,1285,1285,304,-8.4355 -3ツイジョウ,3つ以上,1285,1313,17,-12.6903 -3ツノ,3つの,1285,368,17,-9.7673 -3ツメ,3つ目,1285,1298,17,-11.5196 -3ツメ,3つめ,1285,1298,17,-12.9383 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_4.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_4.csv deleted file mode 100644 index 7f812af..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_4.csv +++ /dev/null @@ -1,3 +0,0 @@ -4ツ,4つ,1285,1285,304,-9.2714 -4ツノ,4つの,1285,368,17,-10.4097 -4ツメ,4つ目,1285,1298,17,-12.6062 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_5.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_5.csv deleted file mode 100644 index 8f71826..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_5.csv +++ /dev/null @@ -1,2 +0,0 @@ -5ツ,5つ,1285,1285,304,-9.7872 -5ツノ,5つの,1285,368,17,-10.6918 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_6.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_6.csv deleted file mode 100644 index 1364dff..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_6.csv +++ /dev/null @@ -1,2 +0,0 @@ -6ツ,6つ,1285,1285,304,-10.4841 -6ツノ,6つの,1285,368,17,-11.2789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_7.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_7.csv deleted file mode 100644 index 9f19330..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_7.csv +++ /dev/null @@ -1,2 +0,0 @@ -7ツ,7つ,1285,1285,304,-10.6211 -7ツノシュウカン,7つの習慣,1288,1288,59,-12.5715 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_8.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_8.csv deleted file mode 100644 index 0221eb1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_8.csv +++ /dev/null @@ -1 +0,0 @@ -8ツ,8つ,1285,1285,304,-11.0987 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_9.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_9.csv deleted file mode 100644 index 3536fb8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_9.csv +++ /dev/null @@ -1 +0,0 @@ -9ツ,9つ,1285,1285,349,-11.4788 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_—.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_—.csv deleted file mode 100644 index 9febd2c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_—.csv +++ /dev/null @@ -1 +0,0 @@ -——,——,5,5,429,-9.4270 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_−.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_−.csv deleted file mode 100644 index e1e709a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_−.csv +++ /dev/null @@ -1 +0,0 @@ -−−,−−,5,5,501,-12.0440 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ア.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ア.csv deleted file mode 100644 index 3350ce3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ア.csv +++ /dev/null @@ -1,50 +0,0 @@ -アイ,合い,1275,1275,161,-4.0616 -アイ,あい,1275,1275,437,-5.0115 -アイサ,愛さ,586,586,438,-6.2242 -アイシロ,愛しろ,588,588,438,-6.1448 -アイス,愛す,584,584,438,-6.1526 -アイスル,愛する,583,583,438,-6.1485 -アイツゲ,相次げ,726,726,422,-6.1950 -アウ,合う,1255,1255,471,-3.9622 -アウ,あう,1255,1255,438,-4.9738 -アシタ,明日,1314,1314,17,-6.0796 -アソビ,遊び,759,759,471,-5.4675 -アソビ,遊び,1285,1285,290,-5.5478 -アソブ,遊ぶ,754,754,471,-5.4647 -アソベ,遊べ,757,757,471,-5.4635 -アタラシ,新し,45,45,356,-4.9504 -アタラシ,新し,39,39,356,-5.0252 -アタラシイ,新しい,43,43,356,-5.2151 -アタラシカレ,新しかれ,48,48,356,-4.9329 -アタラシキ,新しき,44,44,356,-4.9334 -アタラシク,新しく,51,51,356,-5.0953 -アタラシュウ,新しゅう,49,49,356,-4.9329 -アナタ,あなた,1306,1306,17,-5.4913 -アノ,あの,1315,1315,17,-5.5804 -アノ,あの,2,2,17,-5.6028 -アマテラシ,あまてらし,839,839,293,-5.4841 -アマテラス,あまてらす,836,836,293,-5.4742 -アマテラセ,あまてらせ,838,838,293,-5.4841 -アマリ,あまり,1282,1282,268,-5.8440 -アメリカ,アメリカ,1294,1294,240,-4.8964 -アメリカガッシュウコク,アメリカ合衆国,1294,1294,138,-6.0172 -アラワス,表す,731,731,481,-6.1940 -アラワセ,表せ,734,734,481,-6.1866 -アリ,あり,409,409,249,-2.3509 -アリ,あり,788,788,481,-3.1265 -アリ,あり,1196,1196,249,-3.5527 -アリ,あり,612,612,249,-3.6932 -アリ,あり,616,616,249,-4.0513 -アリガトウ,ありがとう,3,3,244,-3.6808 -アル,ある,403,403,481,-2.1570 -アル,ある,772,772,481,-2.9588 -アル,ある,1092,1092,481,-3.4437 -アル,ある,1315,1315,481,-6.1764 -アルイハ,あるいは,556,556,287,-4.4312 -アルキ,歩き,689,689,471,-6.2102 -アルク,歩く,679,679,471,-6.1696 -アルケ,歩け,685,685,471,-6.1695 -アレ,あれ,407,407,47,-2.4311 -アレ,あれ,784,784,481,-3.1152 -アレ,あれ,1170,1170,47,-3.6684 -アー,あー,2,2,80,-5.8438 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_イ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_イ.csv deleted file mode 100644 index f36fb77..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_イ.csv +++ /dev/null @@ -1,50 +0,0 @@ -イイ,いい,37,37,17,-2.6886 -イイ,いい,131,131,17,-2.9419 -イイ,言い,833,833,17,-2.9432 -イイ,いい,833,833,17,-3.6541 -イイ,イイ,146,146,244,-4.6633 -イイッ,いいっ,38,38,437,-4.7462 -イイッ,いいっ,132,132,437,-4.9118 -イウ,言う,818,818,481,-2.9646 -イウ,いう,818,818,471,-3.2986 -イエ,言え,827,827,47,-3.0072 -イエ,いえ,827,827,47,-3.6816 -イカ,以下,1313,1313,468,-5.0570 -イガイ,以外,1313,1313,468,-5.1794 -イキ,いき,1012,1012,356,-2.8437 -イキ,行き,706,706,271,-3.0482 -イキ,行き,1014,1014,271,-3.5865 -イキ,いき,690,690,356,-4.2891 -イキ,いき,706,706,356,-4.7246 -イギリス,イギリス,1294,1294,240,-5.3881 -イク,いく,992,992,356,-2.7538 -イク,行く,696,696,471,-3.0023 -イク,行く,994,994,471,-3.5453 -イク,いく,680,680,356,-4.5827 -イク,いく,696,696,356,-4.5971 -イケ,いけ,1004,1004,268,-2.9787 -イケ,行け,702,702,47,-3.1711 -イケ,行け,1006,1006,47,-3.6899 -イケ,いけ,686,686,268,-4.5683 -イケ,いけ,702,702,268,-4.7065 -イジョウ,以上,1313,1313,387,-4.8100 -イタシ,致し,1055,1055,495,-3.7426 -イタシ,いたし,1055,1055,17,-3.8306 -イタス,致す,1039,1039,495,-3.6753 -イタダキ,いただき,981,981,17,-3.3977 -イタダキ,頂き,981,981,420,-4.2084 -イタダク,いただく,956,956,17,-3.5937 -イタダク,頂く,956,956,495,-4.4484 -イヅ,いづ,651,651,36,-4.7522 -イデ,いで,655,655,437,-4.7029 -イラッシャイ,いらっしゃい,1244,1244,420,-4.4069 -イラッシャイ,いらっしゃい,799,799,420,-4.7864 -イラッシャイ,いらっしゃい,797,797,420,-5.2528 -イラッシャル,いらっしゃる,1216,1216,420,-4.2467 -イラッシャル,いらっしゃる,792,792,420,-4.6923 -イリ,入り,1297,1297,271,-4.9751 -イル,いる,919,919,468,-1.9884 -イル,いる,619,619,468,-4.6741 -イロ,いろ,926,926,437,-2.1782 -イロ,いろ,623,623,437,-5.2539 -イワク,いわく,1286,1286,51,-4.5938 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ウ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ウ.csv deleted file mode 100644 index 06195a9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ウ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ウカ,うか,506,359,17,-6.6916 -ウカビ,浮かび,759,759,432,-6.2404 -ウカブ,浮かぶ,754,754,432,-6.2376 -ウカベ,浮かべ,757,757,432,-6.2364 -ウケ,受け,625,625,258,-5.4817 -ウケツギ,受け継ぎ,728,728,481,-6.4399 -ウケツグ,受け継ぐ,723,723,481,-6.4501 -ウケツゲ,受け継げ,726,726,481,-6.3737 -ウケル,受ける,619,619,43,-5.8213 -ウケロ,受けろ,623,623,43,-5.7967 -ウゴキ,動き,689,689,471,-6.1598 -ウゴク,動く,679,679,471,-6.1192 -ウゴケ,動け,685,685,471,-6.1192 -ウシナイ,失い,832,832,43,-6.6800 -ウシナウ,失う,817,817,43,-6.6365 -ウシナエ,失え,826,826,43,-6.6308 -ウタイ,歌い,832,832,478,-6.6026 -ウタウ,歌う,817,817,478,-6.5590 -ウタエ,歌え,826,826,478,-6.5533 -ウチ,うち,1313,1313,387,-5.4155 -ウチ,打ち,743,743,211,-5.7321 -ウツ,打つ,738,738,379,-5.7743 -ウツクシ,美し,45,45,307,-6.1400 -ウツクシ,美し,39,39,307,-6.2148 -ウツクシイ,美しい,43,43,307,-6.4048 -ウツクシカレ,美しかれ,48,48,307,-6.1225 -ウツクシキ,美しき,44,44,307,-6.1231 -ウツクシク,美しく,51,51,307,-6.2849 -ウツクシュウ,美しゅう,49,49,307,-6.1225 -ウテ,打て,741,741,379,-5.7465 -ウマク,うまく,35,35,48,-6.5035 -ウマレ,生まれ,625,625,97,-6.3995 -ウマレル,生まれる,619,619,364,-6.7177 -ウマレロ,生まれろ,623,623,364,-6.6931 -ウル,うる,942,942,287,-3.8098 -ウル,うる,637,637,287,-4.5675 -ウレシ,嬉し,45,45,17,-4.6525 -ウレシ,嬉し,39,39,17,-4.7273 -ウレシイ,嬉しい,43,43,17,-4.9173 -ウレシイ〜,嬉しい〜,43,43,17,-5.8032 -ウレシイッ,嬉しいっ,43,43,17,-5.8135 -ウレシイー,嬉しいー,43,43,17,-5.8156 -ウレシカレ,嬉しかれ,48,48,17,-4.6350 -ウレシキ,嬉しき,44,44,17,-4.6356 -ウレシク,嬉しく,51,51,17,-4.7974 -ウレシクッ,嬉しくっ,51,51,17,-5.6975 -ウレシュウ,嬉しゅう,49,49,17,-4.6350 -ウレシー,嬉しー,39,39,17,-5.6280 -ウレフ,憂ふ,657,657,501,-6.4402 -ウン,うん,3,3,437,-6.1209 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_エ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_エ.csv deleted file mode 100644 index 849fedc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_エ.csv +++ /dev/null @@ -1,50 +0,0 @@ -エ〜,え〜,114,114,48,-6.6511 -エ〜,え〜,19,19,48,-8.2004 -エイガ,映画,1285,1285,179,-7.2143 -エイキョウ,影響,1283,1283,356,-6.7775 -エイギョウ,営業,1283,1283,494,-7.9116 -エイギョウショ,営業所,1292,1292,280,-7.0728 -エイコク,英国,1294,1294,240,-7.1923 -エイゴ,英語,1285,1285,340,-7.9365 -エイプリルフール,エイプリルフール,1289,1289,363,-8.2683 -エェ,えぇ,114,114,48,-6.6431 -エェ,えぇ,19,19,48,-8.0820 -エエ,良え,19,19,48,-5.3016 -エエ,ええ,114,114,420,-5.9021 -エエ,ええ,52,52,420,-7.0367 -エエ,ええ,19,19,48,-7.3696 -エガキ,描き,689,689,438,-5.2552 -エガク,描く,679,679,438,-5.2145 -エガケ,描け,685,685,438,-5.2145 -エジプト,エジプト,1294,1294,359,-7.3616 -エスエヌエス,SNS,1288,1288,363,-7.9445 -エッ,えっ,114,114,80,-6.5309 -エッ,えっ,3,3,80,-7.6970 -エッ,えっ,19,19,80,-7.7290 -エト,えと,2,2,437,-7.9660 -エド,江戸,1293,1293,108,-7.1949 -エドジダイ,江戸時代,1288,1288,94,-8.1911 -エラウ,偉う,31,31,420,-7.7964 -エラウ,えらう,31,31,420,-8.3216 -エラカレ,偉かれ,29,29,420,-7.7888 -エラカレ,えらかれ,29,29,420,-8.3140 -エラキ,偉き,21,21,420,-7.7891 -エラキ,えらき,21,21,420,-8.3143 -エラク,偉く,35,35,420,-7.8719 -エラシ,偉し,23,23,420,-7.7963 -エラシ,えらし,23,23,420,-8.3215 -エラビ,選び,759,759,481,-4.6711 -エラブ,選ぶ,754,754,481,-4.6682 -エラベ,選べ,757,757,481,-4.6670 -エル,得る,619,619,481,-6.4467 -エル,得る,919,919,481,-7.7336 -エロ,得ろ,623,623,481,-6.4221 -エンジ,演じ,625,625,258,-7.6615 -エンジル,演じる,619,619,477,-7.7450 -エンジロ,演じろ,623,623,477,-7.7204 -エンズ,演ず,593,593,477,-6.8583 -エンズル,演ずる,592,592,477,-6.8598 -エンソウ,演奏,1283,1283,132,-7.9132 -エー,えー,114,114,80,-6.5331 -エー,えー,19,19,80,-7.9508 -エー,えー,2,2,80,-8.1769 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_オ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_オ.csv deleted file mode 100644 index 370b026..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_オ.csv +++ /dev/null @@ -1,50 +0,0 @@ -オイシ,美味し,45,45,75,-5.3875 -オイシ,美味し,39,39,75,-5.4623 -オイシイ,美味しい,43,43,75,-5.6523 -オイシカレ,美味しかれ,48,48,75,-5.3700 -オイシキ,美味しき,44,44,75,-5.3706 -オイシク,美味しく,51,51,75,-5.5324 -オイシュウ,美味しゅう,49,49,75,-5.3700 -オエエ,多え,19,19,481,-4.9407 -オオイ,多い,19,19,481,-4.9407 -オオウ,多う,31,31,481,-4.3554 -オオカレ,多かれ,29,29,481,-4.3478 -オオキ,多き,21,21,481,-4.3481 -オオキ,大き,39,39,304,-5.2556 -オオキイ,大きい,43,43,471,-5.2954 -オオキク,大きく,51,51,351,-4.8904 -オオキナ,大きな,1315,1315,356,-5.5160 -オオク,多く,35,35,481,-4.4309 -オオク,多く,1314,1314,468,-5.4402 -オオシ,多し,23,23,481,-4.3553 -オオシ,大し,45,45,471,-5.0306 -オオシ,大し,39,39,471,-5.1054 -オオシカレ,大しかれ,48,48,471,-5.0131 -オオシキ,大しき,44,44,471,-5.0137 -オオシク,大しく,51,51,471,-5.1755 -オオシュウ,大しゅう,49,49,471,-5.0131 -オキ,おき,979,979,155,-3.2569 -オキ,置き,689,689,481,-5.4320 -オク,おく,954,954,379,-3.2336 -オク,置く,679,679,481,-5.3913 -オケ,おけ,969,969,47,-3.3969 -オケ,置け,685,685,481,-5.3913 -オコナイ,行い,834,834,258,-2.8926 -オコナウ,行う,819,819,481,-2.8270 -オコナエ,行え,828,828,268,-2.9473 -オナジ,同じ,1315,1315,468,-4.5628 -オハヨウ,おはよう,3,3,244,-4.9615 -オモイ,思い,832,832,17,-3.0179 -オモウ,思う,817,817,17,-3.0926 -オモエ,思え,826,826,17,-3.0869 -オモヒ,思ひ,849,849,495,-5.3200 -オモフ,思ふ,846,846,495,-5.4279 -オモヘ,思へ,848,848,495,-5.0741 -オヨビ,および,296,296,486,-3.9381 -オヨビ,及び,556,556,486,-4.2432 -オヨビ,および,556,556,486,-4.4168 -オリ,おり,1197,1197,356,-2.6223 -オル,おる,1093,1093,437,-2.9728 -オワリ,終わり,1206,1206,282,-3.9709 -オワル,終わる,1102,1102,471,-4.0614 -オワレ,終われ,1180,1180,47,-4.1186 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_カ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_カ.csv deleted file mode 100644 index e474f82..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_カ.csv +++ /dev/null @@ -1,50 +0,0 @@ -カァ,かぁ,264,264,80,-4.3217 -カア,かあ,264,264,501,-5.6293 -カイ,かい,265,265,331,-3.9185 -カイ,買い,832,832,438,-5.3101 -カウ,買う,817,817,438,-5.2666 -カエ,買え,826,826,438,-5.2609 -カカリ,かかり,1198,1198,249,-4.4265 -カカル,かかる,1094,1094,471,-4.4093 -カキ,書き,689,689,481,-4.3820 -カク,書く,679,679,481,-4.3414 -カケ,書け,685,685,481,-4.3413 -カゲツ,ヶ月,1300,1300,454,-5.4901 -カシラ,かしら,266,266,420,-3.7105 -カセギ,稼ぎ,728,728,438,-5.2112 -カセグ,稼ぐ,723,723,438,-5.2214 -カセゲ,稼げ,726,726,438,-5.1449 -カチ,勝ち,743,743,438,-5.8939 -カッコイイ,かっこいい,52,52,17,-4.1569 -カッコイイ,カッコイイ,52,52,420,-5.7603 -カツ,勝つ,738,738,438,-5.8957 -カツテ,かつて,1281,1281,266,-6.0929 -カテ,勝て,741,741,438,-5.8679 -カナ,かな,323,323,437,-5.1774 -カノウ,可能,1287,1287,169,-5.3740 -カノジョ,彼女,1306,1306,25,-5.8000 -カモ,かも,330,330,252,-2.7352 -カラ,から,147,147,356,-1.9960 -カラ,から,297,297,356,-2.3083 -カラニハ,からには,298,298,17,-4.3573 -カワイ,可愛,39,39,17,-5.7284 -カワイ,可愛,45,45,17,-5.8564 -カワイイ,可愛い,43,43,51,-5.2633 -カワイイク,可愛いく,51,51,51,-5.9933 -カワイイッ,可愛いっ,43,43,51,-6.1020 -カワイク,可愛く,51,51,460,-5.7903 -カワイクッ,可愛くっ,51,51,51,-6.0033 -カワシ,可し,45,45,51,-4.9985 -カワシ,可し,39,39,51,-5.0733 -カワシカレ,可しかれ,48,48,51,-4.9811 -カワシキ,可しき,44,44,51,-4.9816 -カワシク,可しく,51,51,51,-5.1435 -カワシュウ,可しゅう,49,49,51,-4.9811 -カンガエ,考え,625,625,52,-5.1086 -カンガエル,考える,619,619,481,-5.2419 -カンガエロ,考えろ,623,623,481,-5.2173 -カンコク,韓国,1294,1294,240,-6.0858 -カンジ,感じ,625,625,301,-5.7380 -カンジル,感じる,619,619,48,-5.8556 -カンジロ,感じろ,623,623,48,-5.8310 -カー,かー,264,264,80,-4.6175 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ガ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ガ.csv deleted file mode 100644 index ba11586..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ガ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ガアッタ,があった,148,435,17,-7.9624 -ガアリ,があり,148,788,17,-7.1696 -ガアリマス,があります,148,491,17,-7.7161 -ガアル,がある,148,772,17,-6.6664 -ガイ,買い,1285,1285,474,-7.3516 -ガイイ,がいい,148,37,17,-7.5614 -ガイヨウ,概要,1285,1285,59,-7.3344 -ガイル,がいる,148,619,17,-8.1205 -ガオオイ,が多い,148,19,17,-7.7444 -ガカル,がかる,886,886,501,-7.9539 -ガカル,掛る,886,886,460,-7.9627 -ガカル,掛かる,886,886,471,-7.9638 -ガキ,書き,1285,1285,59,-7.7213 -ガキ,書き,1298,1298,59,-7.7213 -ガシ,がし,148,610,17,-7.9332 -ガスキ,が好き,148,1287,17,-7.9525 -ガゾウ,画像,1285,1285,139,-7.9588 -ガタ,がた,105,105,252,-6.0595 -ガタイ,がたい,113,113,252,-6.5825 -ガタイ,難い,113,113,48,-6.9187 -ガタイ,難い,19,19,48,-7.0895 -ガタウ,がたう,125,125,252,-5.0726 -ガタカレ,がたかれ,123,123,252,-5.0349 -ガタキ,がたき,115,115,252,-5.0349 -ガタク,がたく,129,129,252,-6.2435 -ガタク,難く,129,129,48,-7.1530 -ガタシ,がたし,117,117,252,-5.8793 -ガチ,がち,1299,1299,169,-5.8275 -ガチ,勝ち,1285,1285,245,-7.7749 -ガチ,勝ち,1299,1299,245,-7.7749 -ガチ,勝ち,1298,1298,245,-7.7749 -ガッコウ,学校,1285,1285,253,-7.4893 -ガッタ,がった,105,105,150,-7.9591 -ガッペイ,合併,1283,1283,494,-8.1819 -ガテェ,がてぇ,113,113,252,-7.3761 -ガテエ,がてえ,113,113,252,-6.5825 -ガデ,が出,148,625,17,-8.0058 -ガデキ,ができ,148,625,17,-8.0679 -ガデキル,ができる,148,619,17,-8.0863 -ガナイ,がない,148,20,17,-7.5588 -ガヨイ,通い,1285,1285,364,-7.0894 -ガヨイ,通い,1298,1298,364,-7.0894 -ガヨイ,が良い,148,19,17,-8.1563 -ガリ,がり,894,894,17,-3.7756 -ガル,がる,886,886,17,-3.7189 -ガレ,がれ,892,892,437,-3.8497 -ガンバッテ,頑張って,786,307,17,-8.0393 -ガンバリ,頑張り,788,788,17,-6.6292 -ガンバル,頑張る,772,772,17,-6.5664 -ガンバレ,頑張れ,784,784,17,-6.7228 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_キ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_キ.csv deleted file mode 100644 index c8ecf63..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_キ.csv +++ /dev/null @@ -1,50 +0,0 @@ -キガサ,気がさ,586,586,501,-6.7446 -キガシロ,気がしろ,588,588,501,-6.6652 -キガス,気がす,584,584,501,-6.6730 -キガスル,気がする,583,583,501,-6.6688 -キキ,聞き,689,689,427,-4.8205 -キキ,聴き,689,689,451,-6.2701 -キク,聞く,679,679,438,-4.7887 -キク,聴く,679,679,481,-6.2920 -キケ,聞け,685,685,438,-4.7886 -キケ,聴け,685,685,481,-6.2920 -キジ,記事,1285,1285,59,-6.7977 -キヅキ,気づき,689,689,427,-6.0306 -キヅキ,気付き,689,689,438,-6.9939 -キヅク,気づく,679,679,438,-6.0788 -キヅク,気付く,679,679,438,-6.9533 -キヅケ,気づけ,685,685,438,-6.0788 -キヅケ,気付け,685,685,438,-6.9532 -キニサ,気にさ,586,586,501,-5.7233 -キニシロ,気にしろ,588,588,501,-5.6439 -キニス,気にす,584,584,501,-5.6517 -キニスル,気にする,583,583,501,-5.6475 -キニナル,気になる,772,772,501,-6.9189 -キノウ,昨日,1314,1314,17,-6.3410 -キビシ,厳し,45,45,48,-6.0718 -キビシ,厳し,39,39,48,-6.1465 -キビシイ,厳しい,43,43,48,-6.3365 -キビシカレ,厳しかれ,48,48,48,-6.0543 -キビシキ,厳しき,44,44,48,-6.0548 -キビシク,厳しく,51,51,48,-6.2167 -キビシュウ,厳しゅう,49,49,48,-6.0543 -キメ,決め,625,625,52,-6.6392 -キメ,決め,1285,1285,52,-6.7838 -キメル,決める,619,619,481,-6.7891 -キメロ,決めろ,623,623,481,-6.7645 -キモサ,気もさ,586,586,501,-6.5660 -キモシロ,気もしろ,588,588,501,-6.4866 -キモス,気もす,584,584,501,-6.4944 -キモスル,気もする,583,583,501,-6.4902 -キモチイイ,気持ちいい,52,52,420,-5.5276 -キョウ,今日,1314,1314,356,-4.9086 -キョウト,京都,1293,1293,473,-6.5262 -キリ,切り,1207,1207,60,-4.1694 -キリ,きり,1199,1199,17,-4.1801 -キリ,切り,788,788,379,-5.3631 -キリ,切り,1298,1298,60,-5.3631 -キリ,切り,1285,1285,60,-5.3631 -キル,切る,1103,1103,379,-4.1344 -キル,きる,1095,1095,471,-4.1736 -キレイ,綺麗,1287,1287,66,-6.7306 -キロク,記録,1283,1283,318,-6.9176 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ギ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ギ.csv deleted file mode 100644 index ed399b7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ギ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ギア,ギア,1290,1290,95,-9.1181 -ギイン,議員,1285,1285,125,-8.8792 -ギオン,祇園,1293,1293,311,-10.1783 -ギカイ,議会,1285,1285,13,-9.2577 -ギコチ,ぎこち,1284,1284,268,-9.1379 -ギシキ,儀式,1285,1285,199,-10.1548 -ギジュツ,技術,1285,1285,351,-7.8343 -ギジュツシャ,技術者,1288,1288,281,-9.9279 -ギジュツヲ,技術を,1285,156,17,-10.0914 -ギセイ,犠牲,1285,1285,282,-9.9410 -ギセイシャ,犠牲者,1288,1288,490,-10.1607 -ギセキ,議席,1285,1285,125,-10.0038 -ギター,ギター,1285,1285,132,-9.1971 -ギチョウ,議長,1285,1285,215,-9.9604 -ギフ,岐阜,1293,1293,473,-8.7104 -ギフケン,岐阜県,1293,1293,397,-8.5103 -ギフシ,岐阜市,1293,1293,18,-10.1561 -ギミ,気味,1298,1298,48,-8.5648 -ギミック,ギミック,1289,1289,26,-9.2201 -ギム,義務,1285,1285,455,-9.2989 -ギモン,疑問,1287,1287,468,-7.3116 -ギャクサツ,虐殺,1283,1283,490,-10.0735 -ギャクタイ,虐待,1283,1283,243,-9.7057 -ギャクテン,逆転,1283,1283,63,-9.4172 -ギャクニ,逆に,1285,151,17,-8.4440 -ギャップ,ギャップ,1285,1285,351,-10.1562 -ギュウニュウ,牛乳,1285,1285,75,-9.9210 -ギュット,ぎゅっと,1281,1281,54,-10.0357 -ギョ,ぎょ,3,3,78,-8.7338 -ギョウカイ,業界,1285,1285,378,-8.7261 -ギョウカイダンタイ,業界団体,1292,1292,378,-9.8114 -ギョウシャ,業者,1285,1285,378,-9.3710 -ギョウジ,行事,1285,1285,224,-9.9092 -ギョウセイ,行政,1285,1285,265,-8.9734 -ギョウセイクカク,行政区画,1288,1288,13,-10.0669 -ギョウセキ,業績,1285,1285,356,-9.8776 -ギョウム,業務,1285,1285,486,-8.4835 -ギョウレツ,行列,1283,1283,447,-9.7946 -ギョライ,魚雷,1285,1285,320,-10.1458 -ギライ,嫌い,1298,1298,66,-9.0128 -ギリ,切り,1298,1298,60,-9.4287 -ギリギリ,ギリギリ,1287,1287,48,-8.1860 -ギリギリ,ぎりぎり,1282,1282,317,-9.5999 -ギリシア,ギリシア,1294,1294,359,-8.0751 -ギリシャ,ギリシャ,1294,1294,240,-7.7375 -ギル,ギル,1289,1289,25,-10.1483 -ギレ,切れ,1298,1298,268,-9.7084 -ギロン,議論,1283,1283,436,-8.2312 -ギンコウ,銀行,1285,1285,378,-9.1152 -ギンザ,銀座,1293,1293,311,-8.2530 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ク.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ク.csv deleted file mode 100644 index 9930132..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ク.csv +++ /dev/null @@ -1,50 +0,0 @@ -クサ,くさ,55,55,437,-4.5143 -クサイ,くさい,67,67,331,-4.5791 -クサイ,臭い,67,67,487,-5.6282 -クソ,クソ,557,557,420,-4.1681 -クソ,くそ,557,557,437,-5.0020 -クダサイ,ください,1239,1239,17,-3.0904 -クダサイ,ください,1247,1247,17,-3.2298 -クダサイ,ください,797,797,17,-3.7361 -クダサイ,ください,799,799,17,-4.5101 -クダサイ,下さい,1239,1239,17,-4.5106 -クダサイ,下さい,1247,1247,17,-4.6469 -クダサル,くださる,1219,1219,495,-3.2236 -クダサル,くださる,1091,1091,495,-3.3563 -クダサル,くださる,792,792,495,-4.5289 -クダサル,下さる,1219,1219,495,-4.6481 -クダサル,下さる,1091,1091,495,-4.7787 -クダサレ,くだされ,1235,1235,47,-3.2474 -クダサレ,下され,1235,1235,495,-4.6697 -クダセエ,くだせえ,1239,1239,495,-4.0849 -クッソ,くっそ,557,557,501,-6.2183 -クラ,くら,11,11,48,-4.7992 -クライ,くらい,331,331,48,-2.8137 -クラウ,くらう,31,31,48,-4.6541 -クラカレ,くらかれ,29,29,48,-4.6465 -クラキ,くらき,21,21,48,-4.6468 -クラク,くらく,35,35,48,-4.7296 -クラシ,くらし,23,23,48,-4.6540 -クリ,くり,788,788,471,-5.6253 -クリカエシ,繰り返し,735,735,258,-6.2352 -クル,くる,897,897,471,-2.9268 -クル,来る,573,573,471,-3.4010 -クル,来る,907,907,471,-3.4507 -クル,くる,563,563,471,-3.9196 -クレ,くれ,940,940,17,-2.7401 -クレ,くれ,937,937,17,-2.9953 -クレ,くれ,635,635,17,-3.8265 -クレ,くれ,632,632,17,-4.0782 -クレ,くれ,784,784,471,-5.6139 -クレエ,くれえ,19,19,48,-5.2394 -クレル,くれる,933,933,17,-2.8295 -クレル,くれる,628,628,17,-3.9624 -クレル,くれる,919,919,17,-5.3621 -クワシ,詳し,45,45,59,-6.1121 -クワシ,詳し,39,39,59,-6.1869 -クワシイ,詳しい,43,43,59,-6.3769 -クワシカレ,詳しかれ,48,48,59,-6.0946 -クワシキ,詳しき,44,44,59,-6.0952 -クワシク,詳しく,51,51,468,-5.7629 -クワシュウ,詳しゅう,49,49,59,-6.0946 -クン,くん,1302,1302,244,-4.6195 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_グ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_グ.csv deleted file mode 100644 index 2922a08..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_グ.csv +++ /dev/null @@ -1,50 +0,0 @@ -グアイ,具合,1285,1285,48,-9.6766 -グアテマラ,グアテマラ,1294,1294,272,-9.7591 -グアム,グアム,1293,1293,410,-9.8646 -グイ,食い,1298,1298,499,-10.1783 -グウゼン,偶然,1314,1314,161,-8.0328 -グサ,ぐさ,586,586,501,-9.7089 -グザイ,具材,1288,1288,75,-10.2121 -グシロ,ぐしろ,588,588,501,-9.6295 -グス,ぐす,584,584,150,-9.1115 -グスタフ,グスタフ,1290,1290,329,-9.8658 -グスル,ぐする,583,583,501,-9.6332 -グセ,ぐせ,586,586,54,-9.2582 -グタイ,具体,1285,1285,468,-9.2240 -グタイテキ,具体的,1288,1288,468,-8.6630 -グタイテキ,具体的,1285,1299,17,-9.7175 -グタイテキナ,具体的な,1285,454,17,-9.8423 -グチ,愚痴,1285,1285,161,-10.2002 -グチャグチャ,ぐちゃぐちゃ,1287,1287,501,-10.1307 -グッスリ,ぐっすり,1282,1282,418,-9.6371 -グッズ,グッズ,1285,1285,442,-9.2020 -グッタリ,ぐったり,1282,1282,418,-10.3047 -グット,グッと,1281,1281,113,-9.4234 -グット,ぐっと,1281,1281,48,-9.7097 -グム,含む,762,762,481,-9.6888 -グライ,ぐらい,332,332,48,-3.2748 -グライニ,ぐらいに,332,151,17,-10.1606 -グライノ,ぐらいの,332,368,17,-9.7135 -グラスゴー,グラスゴー,1293,1293,138,-10.3265 -グラム,グラム,1300,1300,221,-8.8009 -グラム,グラム,1290,1290,221,-9.6079 -グランドスラム,グランドスラム,1289,1289,7,-10.1020 -グリーン,グリーン,1285,1285,347,-9.9627 -グリーンランド,グリーンランド,1293,1293,272,-10.1231 -グルグル,ぐるぐる,1281,1281,60,-9.2406 -グルグル,グルグル,1281,1281,60,-10.2503 -グルジア,グルジア,1294,1294,19,-9.4406 -グループ,グループ,1285,1285,378,-7.9955 -グループノ,グループの,1285,368,17,-10.1933 -グレイ,GLAY,1289,1289,67,-10.0716 -グレードワン,G1,1288,1288,245,-10.2190 -グンジ,軍事,1285,1285,53,-9.4974 -グンジ,郡司,1290,1290,108,-10.2103 -グンジン,軍人,1285,1285,123,-9.8374 -グンタイ,軍隊,1285,1285,53,-9.7761 -グンダン,軍団,1285,1285,53,-10.0661 -グンナイ,郡内,1290,1290,480,-9.8612 -グンマ,群馬,1293,1293,473,-9.2676 -グンマケン,群馬県,1293,1293,397,-8.5704 -グーグル,Google,1288,1288,363,-9.4078 -グーグル,グーグル,1292,1292,363,-9.6170 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ケ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ケ.csv deleted file mode 100644 index a71b20e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ケ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ケイエイ,経営,1283,1283,269,-7.8502 -ケイカク,計画,1283,1283,494,-7.2149 -ケイケン,経験,1283,1283,334,-6.9054 -ケイコウ,傾向,1285,1285,351,-8.6248 -ケイサイ,掲載,1283,1283,375,-7.7409 -ケイサン,計算,1283,1283,375,-8.1745 -ケイザイ,経済,1285,1285,79,-8.4052 -ケイシキ,形式,1285,1285,45,-8.3118 -ケイシチョウ,警視庁,1292,1292,265,-8.4303 -ケイショウ,継承,1283,1283,375,-8.6255 -ケイセイ,形成,1283,1283,375,-7.8830 -ケイゾク,継続,1283,1283,182,-7.8996 -ケイバジョウ,競馬場,1293,1293,165,-8.4948 -ケイヤク,契約,1283,1283,306,-7.5898 -ケイユ,経由,1283,1283,162,-8.2900 -ケイレキ,経歴,1285,1285,334,-8.6121 -ケエ,濃え,19,19,242,-8.6327 -ケサ,今朝,1314,1314,420,-8.2657 -ケシ,消し,735,735,258,-6.8697 -ケス,消す,731,731,438,-7.0315 -ケセ,消せ,734,734,438,-7.0242 -ケッカ,結果,1314,1314,282,-5.4071 -ケッカハ,結果は,1314,261,17,-8.2455 -ケッキョク,結局,1314,1314,282,-6.4022 -ケッコウ,結構,1281,1281,17,-6.4536 -ケッコウ,けっこう,1281,1281,420,-8.4024 -ケッコン,結婚,1283,1283,97,-7.1876 -ケッシテ,決して,1281,1281,268,-7.3020 -ケッセイ,結成,1283,1283,131,-8.0315 -ケッテイ,決定,1283,1283,375,-7.4660 -ケツロン,結論,1283,1283,468,-8.6453 -ケド,けど,301,301,17,-2.4058 -ケド,けど,555,555,17,-7.3660 -ケドネ,けどね,301,279,17,-8.2619 -ケドモ,けども,300,300,420,-3.8288 -ケリ,けり,519,519,495,-4.6464 -ケル,ける,520,520,495,-4.6496 -ケレド,けれど,301,301,17,-5.0179 -ケレド,けれど,555,555,17,-7.9550 -ケレドモ,けれども,302,302,252,-3.8905 -ケンキュウ,研究,1283,1283,239,-6.8305 -ケンキュウカイ,研究会,1292,1292,300,-8.2708 -ケンコウ,健康,1287,1287,402,-6.9278 -ケンサ,検査,1283,1283,257,-8.3701 -ケンサク,検索,1283,1283,363,-7.5690 -ケンセツ,建設,1283,1283,375,-7.4438 -ケンチク,建築,1283,1283,84,-8.3986 -ケンチョ,顕著,1287,1287,169,-8.5419 -ケントウ,検討,1283,1283,375,-7.5634 -ケース,ケース,1285,1285,468,-8.6363 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゲ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゲ.csv deleted file mode 100644 index 5ef6498..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゲ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ゲイジュツ,芸術,1285,1285,84,-9.1552 -ゲキサッカ,劇作家,1289,1289,204,-9.6225 -ゲキジョウ,劇場,1285,1285,449,-9.3360 -ゲキジョウバン,劇場版,1288,1288,424,-9.6390 -ゲキチュウ,劇中,1288,1288,322,-9.6617 -ゲキテキ,劇的,1287,1287,169,-9.1464 -ゲキハ,撃破,1283,1283,411,-9.7957 -ゲスト,ゲスト,1285,1285,409,-9.1959 -ゲスル,解する,583,583,456,-9.8614 -ゲット,ゲット,1292,1292,283,-7.9983 -ゲツヨウ,月曜,1314,1314,305,-8.7395 -ゲツヨウビ,月曜日,1314,1314,380,-8.3160 -ゲンイン,原因,1285,1285,192,-8.0192 -ゲンエキ,現役,1285,1285,334,-9.1733 -ゲンエキジダイ,現役時代,1288,1288,158,-9.8487 -ゲンカイ,限界,1285,1285,351,-9.1265 -ゲンカク,厳格,1287,1287,169,-9.2118 -ゲンキ,元気,1287,1287,17,-6.7041 -ゲンキニ,元気に,1287,329,17,-9.7912 -ゲンキニ,元気に,1287,151,17,-9.8021 -ゲンキュウ,言及,1283,1283,375,-9.0162 -ゲンキン,現金,1285,1285,474,-9.8353 -ゲンゴ,言語,1285,1285,340,-8.5306 -ゲンサク,原作,1285,1285,322,-8.6828 -ゲンザイ,現在,1314,1314,480,-4.9503 -ゲンザイノ,現在の,1314,368,17,-8.7186 -ゲンザイハ,現在は,1314,261,17,-9.1996 -ゲンショウ,減少,1283,1283,182,-8.3165 -ゲンショウ,現象,1285,1285,339,-9.0983 -ゲンジツ,現実,1285,1285,287,-8.3021 -ゲンジョウ,現状,1285,1285,468,-8.9843 -ゲンズ,げんず,593,593,501,-7.5449 -ゲンズ,減ず,593,593,43,-8.5230 -ゲンズル,げんずる,592,592,501,-7.5464 -ゲンズル,減ずる,592,592,43,-8.5244 -ゲンソク,原則,1285,1285,455,-9.1170 -ゲンソン,現存,1283,1283,435,-9.1037 -ゲンダイ,現代,1285,1285,88,-8.4795 -ゲンチ,現地,1285,1285,490,-8.9742 -ゲンテイ,限定,1283,1283,375,-8.0927 -ゲントウシャ,幻冬舎,1292,1292,136,-9.8332 -ゲンナ,元和,1293,1293,21,-9.1860 -ゲンニ,現に,1281,1281,456,-9.3207 -ゲンバ,現場,1285,1285,490,-8.7268 -ゲンミツ,厳密,1287,1287,169,-8.3682 -ゲンリ,原理,1285,1285,287,-9.8860 -ゲーテ,ゲーテ,1290,1290,204,-9.6718 -ゲーム,ゲーム,1285,1285,283,-7.3524 -ゲームノ,ゲームの,1285,368,17,-9.6639 -ゲームヲ,ゲームを,1285,156,17,-9.8147 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_コ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_コ.csv deleted file mode 100644 index 06289e2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_コ.csv +++ /dev/null @@ -1,50 +0,0 @@ -コイ,こい,902,902,437,-3.8669 -コイ,来い,578,578,17,-4.0196 -コイ,こい,568,568,290,-4.0630 -コイ,来い,902,902,17,-5.7258 -コイ,乞い,812,812,438,-5.7313 -コイ,こい,812,812,331,-6.6063 -コウ,乞う,802,802,438,-4.7371 -コウ,こう,1282,1282,331,-5.8100 -コウイウ,こういう,1315,1315,17,-6.1005 -コウシキ,公式,1287,1287,468,-6.6175 -コウシタ,こうした,1315,1315,468,-6.7833 -コエ,乞え,808,808,438,-5.7313 -コエ,こえ,808,808,331,-6.6063 -コエエ,怖え,19,19,17,-6.8003 -ココ,ここ,1306,1306,468,-5.1573 -ココロユク,心ゆく,711,711,501,-6.7114 -コソ,こそ,255,255,127,-3.0984 -コチラ,こちら,1306,1306,468,-5.2456 -コト,こと,1310,1310,282,-2.6917 -コトガ,ことが,1310,148,17,-6.6986 -コトシ,今年,1314,1314,17,-6.6789 -コトナリ,異なり,788,788,468,-6.4506 -コトナル,異なる,772,772,468,-6.2830 -コトナレ,異なれ,784,784,468,-6.4393 -コトバ,言葉,1285,1285,252,-6.8701 -コノ,この,1315,1315,468,-3.0084 -コノメ,好め,765,765,460,-6.8997 -コミ,込み,1064,1064,60,-4.6348 -コミ,こみ,1064,1064,60,-4.9472 -コム,込む,1059,1059,379,-4.4640 -コム,込む,762,762,379,-4.5739 -コム,こむ,1059,1059,379,-4.9876 -コレ,これ,1306,1306,468,-3.8073 -コレカラ,これから,1282,1282,17,-5.6382 -コレラ,これら,1306,1306,468,-5.8690 -コロシ,殺し,735,735,427,-6.7159 -コロス,殺す,731,731,438,-6.6838 -コロセ,殺せ,734,734,438,-6.6764 -コワイ,怖い,19,19,17,-6.8003 -コワウ,怖う,31,31,17,-6.2151 -コワカレ,怖かれ,29,29,17,-6.2075 -コワキ,怖き,21,21,17,-6.2077 -コワク,怖く,35,35,17,-6.2906 -コワシ,怖し,23,23,17,-6.2150 -コンカイ,今回,1314,1314,282,-5.7367 -コンゴ,今後,1314,1314,79,-6.5797 -コンナ,こんな,1315,1315,17,-5.1864 -コンナニ,こんなに,1282,1282,17,-6.8360 -コンニチハ,こんにちは,3,3,244,-6.2867 -コンバンハ,こんばんは,3,3,420,-6.2078 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゴ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゴ.csv deleted file mode 100644 index 04ae6fd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゴ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ゴウカ,豪華,1287,1287,66,-8.6880 -ゴウカク,合格,1283,1283,85,-8.3373 -ゴウケイ,合計,1283,1283,221,-8.5495 -ゴウサ,号さ,586,586,238,-8.7509 -ゴウシロ,号しろ,588,588,238,-8.6715 -ゴウス,号す,584,584,238,-8.5430 -ゴウスル,号する,583,583,238,-8.6751 -ゴウセン,号線,1300,1300,221,-8.7521 -ゴウリュウ,合流,1283,1283,271,-8.7927 -ゴオウボ,ご応募,560,1283,17,-8.6189 -ゴガツ,5月,1288,1288,195,-7.6198 -ゴク,ごく,1281,1281,333,-7.7399 -ゴケントウ,ご検討,560,1283,17,-8.5426 -ゴゴ,午後,1314,1314,380,-8.0040 -ゴサイ,5歳,1289,1289,364,-8.2656 -ゴサンカ,ご参加,560,1283,17,-8.6812 -ゴザイ,ござい,428,428,17,-2.6577 -ゴザイ,ござい,424,424,17,-3.0223 -ゴザイ,御座い,429,429,420,-4.1586 -ゴザイ,ござい,799,799,17,-4.4524 -ゴザイ,御座い,799,799,420,-7.3934 -ゴザイマシ,ございまし,428,501,17,-7.9677 -ゴザイマシタ,ございました,428,435,17,-7.9861 -ゴザイマス,ございます,428,491,17,-6.5713 -ゴザル,ござる,414,414,420,-3.0197 -ゴザル,ござる,792,792,420,-5.2911 -ゴザレ,ござれ,422,422,150,-3.0224 -ゴジツ,後日,1314,1314,282,-8.3182 -ゴト,ごと,1298,1298,283,-6.7239 -ゴト,ごと,1313,1313,283,-8.5393 -ゴトウ,後藤,1290,1290,344,-8.6953 -ゴトキ,ごとき,523,523,495,-4.3365 -ゴトキ,如き,524,524,495,-4.4845 -ゴトク,ごとく,525,525,495,-4.2238 -ゴトク,如く,526,526,495,-4.3703 -ゴトシ,如し,522,522,495,-4.6204 -ゴニ,後に,1305,151,17,-8.3892 -ゴニン,5人,1288,1288,387,-8.8839 -ゴネン,5年,1288,1288,299,-8.3628 -ゴノ,後の,1305,368,17,-8.7464 -ゴハン,ご飯,1285,1285,75,-8.5593 -ゴメン,ごめん,3,3,420,-6.7560 -ゴメンナサイ,ごめんなさい,3,3,420,-6.5153 -ゴラン,ご覧,1308,1308,17,-4.0404 -ゴラン,ごらん,1308,1308,420,-6.7263 -ゴラン,御覧,1308,1308,297,-7.7390 -ゴロ,ごろ,1305,1305,143,-6.2863 -ゴロシ,殺し,1298,1298,427,-8.3275 -ゴロシ,殺し,735,735,438,-8.3275 -ゴロシ,殺し,1285,1285,427,-8.3275 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_サ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_サ.csv deleted file mode 100644 index bcca869..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_サ.csv +++ /dev/null @@ -1,50 +0,0 @@ -サイキン,最近,1314,1314,468,-5.7604 -サイゴ,最後,1285,1285,282,-7.0527 -サイヨウ,採用,1283,1283,375,-7.0833 -サエ,さえ,256,256,48,-3.4197 -サカイ,さかい,303,303,36,-4.7381 -サガシ,探し,735,735,427,-5.8083 -サガス,探す,731,731,438,-6.0618 -サガセ,探せ,734,734,438,-6.0544 -サクヒン,作品,1285,1285,322,-6.5664 -サケビ,叫び,759,759,17,-6.5803 -サケブ,叫ぶ,754,754,17,-6.5775 -サケベ,叫べ,757,757,17,-6.5763 -ササグ,捧ぐ,645,645,389,-4.8192 -サシ,指し,735,735,481,-6.2988 -サシ,さし,883,883,155,-6.3981 -サス,さす,879,879,481,-5.8940 -サス,指す,731,731,481,-6.0482 -サスガ,さすが,1281,1281,17,-6.9533 -サセ,指せ,734,734,481,-6.0408 -サセ,させ,876,876,282,-6.9554 -サセル,させる,870,870,438,-6.9686 -サセロ,させろ,874,874,420,-6.9879 -サテ,さて,555,555,17,-6.7223 -サビシ,寂し,45,45,17,-6.7267 -サビシ,寂し,39,39,17,-6.8015 -サビシイ,寂しい,43,43,17,-6.9915 -サビシカレ,寂しかれ,48,48,17,-6.7092 -サビシキ,寂しき,44,44,17,-6.7098 -サビシク,寂しく,51,51,17,-6.8716 -サビシュウ,寂しゅう,49,49,17,-6.7092 -サマ,さま,1302,1302,420,-6.8135 -サマザマ,様々,1287,1287,169,-6.2364 -サミウ,寒う,31,31,112,-7.0865 -サミカレ,寒かれ,29,29,112,-7.0789 -サミキ,寒き,21,21,112,-7.0792 -サミシ,寒し,23,23,112,-7.0864 -サムウ,寒う,31,31,112,-7.0865 -サムカレ,寒かれ,29,29,112,-7.0789 -サムキ,寒き,21,21,112,-7.0792 -サムシ,寒し,23,23,112,-7.0864 -サラニ,さらに,1282,1282,282,-5.0421 -サラニ,更に,1282,1282,282,-6.5506 -サレ,され,605,876,17,-6.0438 -サレタ,された,605,435,17,-6.8281 -サレテ,されて,605,307,17,-6.8193 -サワギ,騒ぎ,728,728,460,-6.4555 -サワグ,騒ぐ,723,723,460,-6.4657 -サワゲ,騒げ,726,726,460,-6.3892 -サン,さん,1302,1302,420,-2.7569 -サンカ,参加,1283,1283,271,-6.4058 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ザ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ザ.csv deleted file mode 100644 index 74a5ebc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ザ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ザ,The,1289,1289,367,-7.0172 -ザイアクカン,罪悪感,1288,1288,252,-9.9961 -ザイイ,在位,1283,1283,119,-9.6989 -ザイガク,在学,1283,1283,364,-9.8336 -ザイガクチュウ,在学中,1288,1288,501,-10.1761 -ザイコ,在庫,1283,1283,474,-9.7156 -ザイサン,財産,1285,1285,474,-9.8454 -ザイジュウ,在住,1283,1283,324,-9.1867 -ザイセイ,財政,1285,1285,79,-9.9055 -ザイセキ,在籍,1283,1283,364,-8.7016 -ザイタク,在宅,1283,1283,402,-9.8999 -ザイダン,財団,1285,1285,300,-10.4414 -ザイダンホウジン,財団法人,1292,1292,300,-8.6815 -ザイムショウ,財務省,1292,1292,265,-8.9324 -ザイムダイジン,財務大臣,1292,1292,215,-10.0130 -ザイリョウ,材料,1285,1285,270,-9.1388 -ザカリ,盛り,1298,1298,60,-10.0255 -ザクセン,ザクセン,1293,1293,446,-9.5958 -ザシ,指し,1285,1285,390,-9.0416 -ザセキ,座席,1285,1285,414,-9.5848 -ザセツ,挫折,1283,1283,182,-9.8565 -ザックリ,ざっくり,1281,1281,256,-8.7743 -ザッシ,雑誌,1285,1285,201,-8.6317 -ザッタ,雑多,1287,1287,169,-10.1362 -ザット,ざっと,1281,1281,163,-9.7307 -ザツダン,雑談,1283,1283,451,-9.6359 -ザマシ,覚まし,1285,1285,91,-9.5532 -ザリ,ざり,488,488,495,-4.0073 -ザル,ざる,485,485,282,-3.6544 -ザルツブルク,ザルツブルク,1293,1293,98,-10.2328 -ザルヲ,ざるを,485,156,17,-9.7455 -ザルヲエナイ,ざるを得ない,485,473,17,-10.3185 -ザワ,ざわ,1281,1281,36,-9.5853 -ザワツキ,ざわつき,689,689,501,-10.2096 -ザワツク,ざわつく,679,679,501,-10.1690 -ザワツケ,ざわつけ,685,685,501,-10.1689 -ザンギョウ,残業,1283,1283,42,-9.7350 -ザンコク,残酷,1287,1287,66,-9.1604 -ザンシン,斬新,1287,1287,169,-9.4025 -ザンソン,残存,1283,1283,182,-10.1140 -ザンテイ,暫定,1283,1283,436,-10.1128 -ザンネン,残念,1287,1287,17,-6.6581 -ザンネンデス,残念です,1287,460,17,-9.8730 -ザンネンデスガ,残念ですが,1287,299,17,-10.4416 -ザンネンナ,残念な,1287,454,17,-10.3710 -ザンネンナガラ,残念ながら,1287,314,17,-9.1212 -ザンネンナガラハズレ,残念ながらハズレ,1287,1285,17,-10.3496 -ザンネンナガラハズレデス,残念ながらハズレです,1287,460,17,-10.3690 -ザンビア,ザンビア,1294,1294,272,-10.3828 -ザンリュウ,残留,1283,1283,182,-9.9566 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_シ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_シ.csv deleted file mode 100644 index bfb2a38..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_シ.csv +++ /dev/null @@ -1,50 +0,0 @@ -シアワセ,幸せ,1287,1287,66,-6.1164 -シカ,しか,257,257,268,-2.7748 -シカシ,しかし,555,555,282,-4.3940 -シカタ,仕方,1284,1284,468,-4.9245 -シカモ,しかも,555,555,48,-6.1813 -シゴト,仕事,1283,1283,290,-6.0556 -シゼン,自然,1287,1287,287,-6.6113 -シゼン,自然,1281,1281,287,-6.9788 -シゼン,自然,1285,1285,287,-6.9788 -シタ,した,610,435,17,-5.8065 -シタタメ,認め,1285,1285,52,-6.5639 -シッカリ,しっかり,1282,1282,48,-6.0870 -シテ,して,610,307,17,-5.1358 -シテイ,してい,610,930,17,-6.8924 -シテイル,している,610,919,17,-6.7223 -シニ,死に,751,751,161,-3.3489 -シヌ,死ぬ,746,746,161,-3.3315 -シネ,死ね,749,749,161,-6.3384 -シバラク,しばらく,1282,1282,282,-6.6261 -シマイ,しまい,1273,1273,282,-2.7822 -シマウ,しまう,1253,1253,282,-2.7195 -シマエ,しまえ,1265,1265,47,-2.9108 -シマス,します,610,491,17,-6.8098 -シマフ,しまふ,1277,1277,479,-5.3818 -シメシ,示し,735,735,481,-5.7871 -シメス,示す,731,731,481,-5.5365 -シメセ,示せ,734,734,481,-5.5292 -シモ,しも,333,333,437,-4.0393 -ショウカイ,紹介,1283,1283,375,-6.8245 -ショウガ,しょうが,1284,1284,247,-6.8532 -ショウサ,称さ,586,586,481,-6.1339 -ショウサイ,詳細,1287,1287,468,-6.7466 -ショウシ,称し,735,735,390,-6.8074 -ショウシロ,称しろ,588,588,481,-6.0545 -ショウジキ,正直,1287,1287,17,-6.7898 -ショウス,称す,584,584,481,-6.0623 -ショウスル,称する,583,583,481,-6.0581 -ショウズ,生ず,593,593,43,-5.8921 -ショウズル,生ずる,592,592,43,-5.8936 -シヨウ,使用,1283,1283,375,-6.2192 -シリ,知り,788,788,427,-5.7920 -シル,知る,772,772,438,-5.6604 -シルシ,記し,735,735,390,-6.8097 -シルス,記す,731,731,481,-6.8774 -シルセ,記せ,734,734,481,-6.8701 -シレ,知れ,784,784,438,-5.8168 -シレ,しれ,625,625,268,-6.0412 -シレル,しれる,619,619,501,-6.3916 -シレロ,しれろ,623,623,501,-6.3670 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ジ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ジ.csv deleted file mode 100644 index 5fe9aa1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ジ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ジカン,時間,1314,1314,317,-5.0003 -ジカン,時間,1300,1300,317,-7.1355 -ジキ,時期,1314,1314,356,-6.1218 -ジギョウ,事業,1285,1285,378,-7.7283 -ジギョウシャ,事業者,1292,1292,378,-7.2336 -ジシャ,自社,1292,1292,378,-7.0448 -ジシン,自身,1285,1285,282,-7.4355 -ジジツ,事実,1314,1314,468,-6.8536 -ジダイ,時代,1285,1285,356,-6.9115 -ジッサイ,実際,1282,1282,468,-5.3171 -ジッシ,実施,1283,1283,375,-7.3499 -ジツゲン,実現,1283,1283,182,-7.7327 -ジツハ,実は,555,555,161,-5.9819 -ジテン,時点,1285,1285,143,-7.7090 -ジブン,自分,1285,1285,161,-5.4686 -ジブンノ,自分の,1285,368,17,-7.1714 -ジミントウ,自民党,1292,1292,125,-6.8235 -ジャ,じゃ,334,334,247,-2.7478 -ジャ,じゃ,308,261,247,-3.4000 -ジャ,じゃ,430,430,247,-3.7301 -ジャ,じゃ,555,555,247,-7.1330 -ジャア,じゃあ,335,335,17,-4.1035 -ジャア,じゃあ,555,555,17,-6.8372 -ジャウ,じゃう,308,1253,418,-7.7444 -ジャッ,じゃっ,432,432,420,-4.0682 -ジャナイ,じゃない,334,473,17,-6.9777 -ジャナイ,じゃない,308,473,17,-7.1727 -ジャナイ,じゃない,308,20,17,-7.5891 -ジャナクテ,じゃなくて,1288,1288,420,-7.3281 -ジャン,じゃん,508,508,80,-3.4019 -ジュウイチガツ,11月,1288,1288,195,-7.6394 -ジュウガツ,10月,1288,1288,195,-7.4396 -ジュウニガツ,12月,1288,1288,195,-7.5251 -ジュウブン,十分,1287,1287,169,-6.9690 -ジュウヨウ,重要,1287,1287,169,-6.1721 -ジュウライ,従来,1314,1314,468,-7.0971 -ジュショウ,受賞,1283,1283,313,-7.6219 -ジュンズ,準ず,593,593,481,-5.6202 -ジュンズル,準ずる,592,592,481,-5.6217 -ジユウ,自由,1287,1287,169,-6.3665 -ジョウキョウ,状況,1285,1285,282,-7.5180 -ジョウズ,上手,1287,1287,127,-7.4716 -ジョウタイ,状態,1285,1285,282,-7.2073 -ジョウホウ,情報,1285,1285,363,-7.2280 -ジョジョニ,徐々に,1281,1281,356,-7.3841 -ジョセ,叙せ,586,586,52,-7.7360 -ジョセイ,女性,1285,1285,42,-7.1707 -ジョン,ジョン,1291,1291,255,-7.4473 -ジラ,自ら,1285,1285,252,-6.8468 -ジンセイ,人生,1285,1285,252,-7.4625 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ス.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ス.csv deleted file mode 100644 index 3132597..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ス.csv +++ /dev/null @@ -1,50 +0,0 @@ -スキ,好き,1287,1287,66,-4.8632 -スキ,好き,1299,1299,66,-5.3383 -スギ,すぎ,930,930,268,-5.1245 -スギ,すぎ,1305,1305,268,-5.9923 -スギル,すぎる,919,919,48,-5.4433 -スクナ,少な,11,11,471,-5.9680 -スクナイ,少ない,19,19,471,-6.4082 -スクナウ,少なう,31,31,471,-5.8229 -スクナカレ,少なかれ,29,29,471,-5.8153 -スクナキ,少なき,21,21,471,-5.8156 -スクナク,少なく,35,35,471,-5.8984 -スクナシ,少なし,23,23,471,-5.8228 -スクネエ,少ねえ,19,19,471,-6.4082 -スグ,すぐ,1282,1282,282,-5.5325 -スゲエ,すげえ,19,19,17,-6.1901 -スコシ,少し,1282,1282,48,-5.0192 -スゴ,すご,11,11,17,-5.7499 -スゴ〜ク,すご〜く,35,35,17,-6.3675 -スゴイ,すごい,19,19,17,-6.1901 -スゴウ,すごう,31,31,17,-5.6048 -スゴカレ,すごかれ,29,29,17,-5.5973 -スゴキ,すごき,21,21,17,-5.5975 -スゴク,すごく,35,35,17,-5.6803 -スゴシ,すごし,23,23,17,-5.6048 -スゴシ,過ごし,735,735,258,-5.9719 -スゴス,過ごす,731,731,471,-6.1455 -スゴセ,過ごせ,734,734,471,-6.1381 -スゴッ,すごっ,11,11,17,-6.4344 -スゴーク,すごーく,35,35,17,-6.3621 -ススミ,進み,767,767,471,-5.3708 -ススム,進む,762,762,471,-5.3339 -ススメ,進め,765,765,471,-5.3299 -ステキ,素敵,1287,1287,66,-6.1970 -スバラシ,素晴らし,45,45,127,-6.0664 -スバラシ,素晴らし,39,39,127,-6.1412 -スバラシイ,素晴らしい,43,43,127,-6.3312 -スバラシカレ,素晴らしかれ,48,48,127,-6.0489 -スバラシキ,素晴らしき,44,44,127,-6.0495 -スバラシク,素晴らしく,51,51,127,-6.2113 -スバラシュウ,素晴らしゅう,49,49,127,-6.0489 -スベテ,全て,1314,1314,468,-5.7723 -スベテ,すべて,1314,1314,468,-6.1718 -スミ,住み,767,767,290,-5.7173 -スミマセン,すみません,3,3,420,-6.2397 -スム,住む,762,762,290,-5.6804 -スメ,住め,765,765,290,-5.6764 -スラ,すら,258,258,48,-3.3843 -スリ,すり,789,789,60,-4.4814 -スル,する,599,599,481,-1.9113 -スル,する,773,773,481,-4.5539 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ズ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ズ.csv deleted file mode 100644 index 7a07300..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ズ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ズイカク,瑞鶴,1289,1289,343,-10.2438 -ズイジ,随時,1314,1314,363,-9.8764 -ズイブン,随分,1282,1282,48,-8.6350 -ズイブン,ずいぶん,1282,1282,17,-8.8299 -ズイホウ,瑞鳳,1293,1293,343,-10.7713 -ズウズウシ,図々し,45,45,11,-9.9245 -ズウズウシ,図々し,39,39,11,-9.9993 -ズウズウシイ,図々しい,43,43,11,-10.1893 -ズウズウシカレ,図々しかれ,48,48,11,-9.9071 -ズウズウシキ,図々しき,44,44,11,-9.9076 -ズウズウシク,図々しく,51,51,11,-10.0695 -ズウズウシュウ,図々しゅう,49,49,11,-9.9071 -ズカイ,図解,1283,1283,59,-9.5083 -ズサン,ずさん,1287,1287,169,-10.7344 -ズット,ずっと,1281,1281,48,-5.9159 -ズツ,ずつ,337,337,283,-3.3198 -ズツウ,頭痛,1285,1285,192,-10.1714 -ズツミ,包み,1285,1285,60,-10.7852 -ズトモ,ずとも,487,310,17,-10.7824 -ズニ,ずに,487,151,17,-7.8897 -ズニイ,ずにい,487,625,17,-10.7904 -ズバリ,ズバリ,1281,1281,420,-10.2966 -ズミ,済み,1298,1298,445,-8.0662 -ズモウシワケ,ず申し訳,487,1284,17,-10.6360 -ズラシ,ずらし,735,735,155,-8.8896 -ズラス,ずらす,731,731,471,-9.1095 -ズラセ,ずらせ,734,734,471,-9.1021 -ズリイ,ずりい,19,19,420,-9.6142 -ズル,ずる,11,11,420,-9.1740 -ズルイ,ずるい,19,19,420,-9.6142 -ズルイ,ズルイ,19,19,420,-10.5388 -ズルイッ,ずるいっ,19,19,420,-10.5738 -ズルウ,ずるう,31,31,420,-9.0289 -ズルカレ,ずるかれ,29,29,420,-9.0214 -ズルキ,ずるき,21,21,420,-9.0216 -ズルク,ずるく,35,35,420,-9.1044 -ズルシ,ずるし,23,23,420,-9.0289 -ズルズル,ズルズル,1281,1281,63,-10.7531 -ズレ,ずれ,625,625,304,-9.4258 -ズレ,ズレ,625,625,48,-9.4339 -ズレコミ,ずれ込み,767,767,380,-10.6179 -ズレコム,ずれ込む,762,762,380,-10.5810 -ズレコメ,ずれ込め,765,765,380,-10.5770 -ズレル,ずれる,619,619,471,-9.8092 -ズレル,ズレる,619,619,147,-9.9089 -ズレロ,ずれろ,623,623,471,-9.7846 -ズレロ,ズレろ,623,623,147,-9.8843 -ズーット,ずーっと,1281,1281,420,-8.9200 -ズーム,Zoom,1288,1288,40,-10.6917 -ズーム,zoom,1288,1288,501,-10.7492 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_セ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_セ.csv deleted file mode 100644 index 1eadafe..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_セ.csv +++ /dev/null @@ -1,50 +0,0 @@ -セイ,せい,607,607,331,-3.4093 -セイ,せい,1310,1310,331,-7.0058 -セイカク,正確,1287,1287,169,-7.4198 -セイカツ,生活,1283,1283,42,-6.9220 -セイコウ,成功,1283,1283,182,-7.3704 -セイサク,制作,1283,1283,375,-7.3037 -セイサク,製作,1283,1283,375,-7.8409 -セイサン,生産,1283,1283,55,-7.6659 -セイシ,制し,735,735,245,-7.7104 -セイシキ,正式,1287,1287,169,-7.1894 -セイシロ,制しろ,588,588,258,-7.9893 -セイスル,制する,583,583,258,-7.9929 -セイゾウ,製造,1283,1283,281,-7.5705 -セイチョウ,成長,1283,1283,182,-7.4748 -セイビ,整備,1283,1283,375,-7.8187 -セイブ,西武,1292,1292,316,-7.8949 -セイリツ,成立,1283,1283,182,-7.8399 -セカイ,世界,1285,1285,212,-6.8640 -セッカク,せっかく,1281,1281,17,-7.6027 -セッキョク,積極,1287,1287,356,-7.8250 -セッケイ,設計,1283,1283,375,-7.6558 -セッサ,接さ,586,586,471,-5.8955 -セッシ,接し,735,735,390,-7.2599 -セッシロ,接しろ,588,588,471,-5.8161 -セッス,接す,584,584,471,-5.8239 -セッスル,接する,583,583,471,-5.8198 -セッチ,設置,1283,1283,375,-6.9862 -セッテイ,設定,1283,1283,375,-7.0152 -セツメイ,説明,1283,1283,375,-7.1952 -セツリツ,設立,1283,1283,375,-7.3973 -セテ,せて,876,307,17,-7.2476 -セマイ,狭い,19,19,471,-7.9337 -セマウ,狭う,31,31,471,-7.3484 -セマカレ,狭かれ,29,29,471,-7.3409 -セマキ,狭き,21,21,471,-7.3411 -セマク,狭く,35,35,471,-7.4239 -セマシ,狭し,23,23,471,-7.3484 -セメエ,狭え,19,19,471,-7.9337 -セリ,せり,788,788,43,-5.6425 -セル,せる,870,870,43,-4.3284 -セレ,せれ,784,784,43,-5.6311 -セロ,せろ,874,874,17,-4.3799 -センゴ,戦後,1314,1314,356,-7.1910 -センシュ,選手,1285,1285,334,-7.5665 -センジツ,先日,1314,1314,161,-7.4346 -センセイ,先生,1285,1285,364,-7.5150 -センソウ,戦争,1283,1283,298,-7.7525 -センタク,選択,1283,1283,375,-7.7208 -センダイ,仙台,1293,1293,473,-7.8551 -セントウ,戦闘,1283,1283,53,-7.9501 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゼ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゼ.csv deleted file mode 100644 index dbe9b50..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゼ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ゼイカン,税関,1292,1292,265,-9.5908 -ゼイキン,税金,1285,1285,474,-9.7030 -ゼイタク,贅沢,1287,1287,66,-8.9414 -ゼウス,ゼウス,1289,1289,222,-9.4772 -ゼッサ,絶さ,586,586,460,-8.8561 -ゼッサン,絶賛,1283,1283,133,-9.8418 -ゼッシロ,絶しろ,588,588,460,-8.7767 -ゼッス,絶す,584,584,460,-8.7845 -ゼッスル,絶する,583,583,460,-8.7803 -ゼッタイ,絶対,1314,1314,252,-6.1408 -ゼッタイニ,絶対に,1314,151,17,-8.7355 -ゼツダイ,絶大,1287,1287,169,-9.6465 -ゼツボウ,絶望,1283,1283,282,-9.2410 -ゼツミョウ,絶妙,1287,1287,66,-9.0868 -ゼヒ,ぜひ,1281,1281,17,-6.2542 -ゼヒ,是非,1283,1283,436,-8.2799 -ゼヒ,是非,1281,1281,436,-8.3729 -ゼメ,攻め,1298,1298,411,-9.6693 -ゼルダ,ゼルダ,1289,1289,25,-9.7591 -ゼロ,ゼロ,1295,1295,283,-6.5599 -ゼロ,ZERO,1292,1292,40,-9.5028 -ゼンイン,全員,1285,1285,490,-8.3122 -ゼンカイ,前回,1285,1285,125,-9.0134 -ゼンカン,前漢,1294,1294,135,-9.3147 -ゼンキ,前期,1285,1285,94,-9.8908 -ゼンコク,全国,1285,1285,224,-8.2832 -ゼンゴ,前後,1314,1314,143,-7.1362 -ゼンサク,前作,1285,1285,283,-9.4160 -ゼンシャ,前者,1285,1285,468,-9.7901 -ゼンシン,前身,1285,1285,281,-9.4411 -ゼンシン,全身,1285,1285,333,-9.7017 -ゼンシン,前進,1283,1283,411,-9.8306 -ゼンジツ,前日,1314,1314,380,-8.1144 -ゼンジュツ,前述,1283,1283,468,-8.4782 -ゼンセカイ,全世界,1288,1288,501,-9.7746 -ゼンゼン,全然,1282,1282,17,-5.9098 -ゼンタイ,全体,1314,1314,468,-6.4130 -ゼンタイテキ,全体的,1288,1288,48,-9.7814 -ゼンタイノ,全体の,1314,368,17,-9.7286 -ゼンテイ,前提,1285,1285,468,-8.9256 -ゼンニホンプロレス,全日本プロレス,1292,1292,141,-9.2509 -ゼンネン,前年,1314,1314,178,-7.7902 -ゼンハバ,全幅,558,558,194,-9.7800 -ゼンハン,前半,1285,1285,356,-9.2207 -ゼンブ,全部,1314,1314,283,-6.4323 -ゼンブ,ぜんぶ,1314,1314,150,-9.7082 -ゼンベイ,全米,1293,1293,318,-7.7744 -ゼンリョク,全力,1285,1285,282,-9.5032 -ゼンリョクデ,全力で,1285,149,17,-9.6048 -ゼー,ぜー,269,269,80,-7.3803 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ソ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ソ.csv deleted file mode 100644 index 0299c70..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ソ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ソウ,そう,1301,1301,17,-2.6187 -ソウ,そう,1309,1309,17,-3.4742 -ソウ,そう,1282,1282,17,-4.0423 -ソウ,沿う,817,817,471,-7.7306 -ソウイウ,そういう,1315,1315,17,-5.4586 -ソウイッタ,そういった,1315,1315,468,-7.4794 -ソウシタ,そうした,1315,1315,468,-7.4481 -ソウダン,相談,1283,1283,42,-7.5753 -ソウデスネ,そうですね,2,2,501,-7.0951 -ソウデスネ,そうですね,3,3,501,-7.5491 -ソウナ,そうな,1301,454,17,-7.6524 -ソエ,沿え,826,826,471,-7.7249 -ソギ,削ぎ,728,728,60,-7.7692 -ソコ,そこ,1306,1306,290,-5.3090 -ソコデ,そこで,555,555,282,-6.1039 -ソシキ,組織,1283,1283,131,-7.3666 -ソシテ,そして,555,555,282,-4.4117 -ソソギ,注ぎ,728,728,176,-6.0194 -ソソグ,注ぐ,723,723,176,-6.0296 -ソソゲ,注げ,726,726,176,-5.9532 -ソダチ,育ち,743,743,364,-6.2831 -ソダツ,育つ,738,738,364,-6.2850 -ソダテ,育て,741,741,364,-6.2572 -ソツギョウ,卒業,1283,1283,364,-7.3959 -ソナエ,備え,625,625,258,-7.6617 -ソノ,その,1315,1315,468,-3.1000 -ソノゴ,その後,1314,1314,282,-5.2164 -ソノタ,その他,1306,1306,486,-6.2165 -ソノママ,そのまま,1281,1281,282,-6.2190 -ソモソモ,そもそも,555,555,468,-6.0534 -ソリャ,そりゃ,1307,1307,420,-5.4385 -ソリャ,そりゃ,555,555,420,-7.3696 -ソリャア,そりゃあ,1307,1307,479,-4.7730 -ソレ,それ,1306,1306,468,-3.8293 -ソレカラ,それから,555,555,143,-7.2947 -ソレゾレ,それぞれ,1314,1314,283,-5.8664 -ソレダケ,それだけ,1282,1282,48,-7.6903 -ソレデ,それで,555,555,17,-6.6478 -ソレデハ,それでは,555,555,17,-7.2844 -ソレデモ,それでも,555,555,282,-6.0550 -ソレトモ,それとも,555,555,169,-7.1894 -ソレニ,それに,555,555,132,-7.5404 -ソレハ,それは,1306,261,17,-7.4926 -ソレホド,それほど,1282,1282,268,-7.7611 -ソレラ,それら,1306,1306,468,-6.7945 -ソレン,ソ連,1294,1294,298,-6.4962 -ソロソロ,そろそろ,1282,1282,17,-7.1092 -ソンザイ,存在,1283,1283,182,-6.1817 -ソンナ,そんな,1315,1315,161,-4.6627 -ソンナニ,そんなに,1281,1281,17,-6.8965 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゾ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゾ.csv deleted file mode 100644 index ca906bb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ゾ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ゾイ,沿い,1298,1298,176,-7.8712 -ゾイ,ぞい,1298,1298,200,-10.8288 -ゾイニ,沿いに,1298,151,17,-10.8116 -ゾウエイ,造営,1283,1283,238,-10.4091 -ゾウカ,増加,1283,1283,182,-8.0164 -ゾウカシ,増加し,1283,610,17,-10.3081 -ゾウキョウ,増強,1283,1283,182,-9.9510 -ゾウケイ,造形,1283,1283,307,-10.2349 -ゾウゲン,増減,1283,1283,182,-10.7584 -ゾウゴ,造語,1283,1283,327,-10.5924 -ゾウショ,蔵書,1283,1283,229,-10.8074 -ゾウショク,増殖,1283,1283,355,-10.2903 -ゾウセイ,造成,1283,1283,102,-10.5175 -ゾウセツ,増設,1283,1283,375,-10.1510 -ゾウセン,造船,1283,1283,281,-10.5084 -ゾウセンジョ,造船所,1288,1288,230,-10.6384 -ゾウゼイ,増税,1283,1283,286,-10.4182 -ゾウダイ,増大,1283,1283,182,-9.5301 -ゾウフク,増幅,1283,1283,174,-10.7731 -ゾウヘイキョク,造幣局,1292,1292,281,-10.4034 -ゾクサ,属さ,586,586,218,-5.1360 -ゾクシ,属し,735,735,390,-7.0884 -ゾクシテ,属して,735,307,17,-10.8402 -ゾクシュツ,続出,1283,1283,182,-10.5711 -ゾクシロ,属しろ,588,588,218,-5.0567 -ゾクス,属す,584,584,218,-5.0645 -ゾクス,属す,731,731,349,-7.6281 -ゾクスル,属する,583,583,218,-5.0603 -ゾクセ,属せ,734,734,349,-7.6207 -ゾクセイ,属性,1285,1285,283,-9.9117 -ゾクゾク,続々,1282,1282,356,-8.9882 -ゾクニ,俗に,1281,1281,327,-9.4920 -ゾクヘン,続編,1285,1285,322,-9.6888 -ゾッコウ,続行,1283,1283,282,-10.4704 -ゾット,ゾッと,1281,1281,479,-10.6011 -ゾフィー,ゾフィー,1289,1289,329,-10.5337 -ゾメ,染め,1298,1298,276,-10.8674 -ゾロイ,揃い,1285,1285,283,-9.9805 -ゾンジ,存じ,625,625,495,-10.0564 -ゾンジマス,存じます,625,491,17,-10.9551 -ゾンジル,存じる,619,619,501,-10.8979 -ゾンジロ,存じろ,623,623,501,-10.8733 -ゾンズ,存ず,593,593,501,-9.2924 -ゾンズル,存ずる,592,592,501,-9.2939 -ゾンビ,ゾンビ,1289,1289,26,-8.8747 -ゾンメイ,存命,1283,1283,97,-10.8544 -ゾー,ぞー,270,270,501,-6.1003 -ゾーン,ゾーン,1285,1285,283,-10.3922 -ゾーン,ZONE,1289,1289,40,-10.8526 -ゾーー,ぞーー,270,270,501,-9.1372 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_タ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_タ.csv deleted file mode 100644 index 2ebd7ca..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_タ.csv +++ /dev/null @@ -1,50 +0,0 @@ -タイ,たい,444,444,17,-2.4250 -タカイ,高い,19,19,351,-5.6450 -タカウ,高う,31,31,351,-5.0597 -タカカレ,高かれ,29,29,351,-5.0521 -タカキ,高き,21,21,351,-5.0524 -タカク,高く,35,35,351,-5.1352 -タカシ,高し,23,23,351,-5.0596 -タキ,たき,445,445,437,-2.7248 -タク,たく,451,451,17,-3.0166 -タクサン,たくさん,1314,1314,290,-6.0104 -タクッ,たくっ,451,451,17,-3.2814 -タケエ,高え,19,19,351,-5.6450 -タシ,たし,446,446,437,-2.7251 -タダ,ただ,555,555,468,-5.2482 -タダシ,ただし,555,555,468,-5.6279 -タチ,立ち,743,743,356,-5.1833 -タチ,立ち,1285,1285,356,-5.2862 -タチ,たち,1298,1298,252,-5.3419 -タッシロ,達しろ,588,588,471,-6.0199 -タッテ,たって,305,305,17,-4.2802 -タツ,立つ,738,738,471,-5.3195 -タテ,立て,741,741,471,-5.2917 -タトエバ,例えば,555,555,45,-5.7143 -タノシ,楽し,45,45,17,-4.8680 -タノシ,楽し,39,39,17,-4.9428 -タノシイ,楽しい,43,43,17,-5.1328 -タノシイ〜,楽しい〜,43,43,17,-5.7306 -タノシイッ,楽しいっ,43,43,17,-5.7261 -タノシカレ,楽しかれ,48,48,17,-4.8506 -タノシキ,楽しき,44,44,17,-4.8511 -タノシク,楽しく,51,51,17,-5.0130 -タノシクッ,楽しくっ,51,51,17,-5.6124 -タノシミ,楽しみ,767,767,17,-5.3921 -タノシム,楽しむ,762,762,481,-5.3964 -タノシメ,楽しめ,765,765,481,-5.3924 -タノシュウ,楽しゅう,49,49,17,-4.8506 -タビ,たび,854,854,331,-5.1231 -タブ,たぶ,851,851,331,-5.1231 -タベ,たべ,853,853,331,-5.1231 -タベ,食べ,625,625,276,-5.5939 -タベル,食べる,619,619,487,-5.7854 -タベロ,食べろ,623,623,487,-5.7608 -タメ,ため,1313,1313,282,-3.3063 -タラシ,たらし,92,92,155,-5.5798 -タラシ,たらし,98,98,155,-5.6128 -タラシク,たらしく,104,104,501,-5.2739 -タリ,たり,360,360,451,-2.5700 -タリ,たり,529,529,451,-3.8795 -タル,たる,531,531,495,-3.8013 -タレ,たれ,535,535,437,-4.0332 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ダ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ダ.csv deleted file mode 100644 index d178f3a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ダ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ダイ,だい,265,265,331,-4.9615 -ダイガク,大学,1285,1285,314,-7.2948 -ダイジ,大事,1287,1287,66,-6.1510 -ダイジ,大事,1285,1285,66,-6.3275 -ダイジョウブ,大丈夫,1287,1287,17,-5.9376 -ダイスキ,大好き,1287,1287,66,-6.3328 -ダイタイ,だいたい,1281,1281,23,-7.7910 -ダイタイ,大体,1314,1314,23,-7.8433 -ダイヒョウ,代表,1283,1283,334,-7.2623 -ダイブ,だいぶ,1281,1281,48,-7.7051 -ダイメ,代目,1300,1300,73,-7.2319 -ダカラ,だから,555,555,17,-5.4314 -ダカラ,だから,453,297,17,-6.7185 -ダカラコソ,だからこそ,555,555,252,-7.3956 -ダガ,だが,555,555,282,-6.6438 -ダガ,だが,453,299,17,-7.7817 -ダケ,だけ,338,338,468,-2.4590 -ダケデ,だけで,338,149,17,-7.8881 -ダケド,だけど,453,301,17,-6.6678 -ダケド,だけど,555,555,420,-7.0834 -ダシ,出し,1053,1053,258,-4.1710 -ダシ,だし,1053,1053,155,-4.3729 -ダシ,出し,735,735,258,-5.0513 -ダシ,だし,453,304,17,-7.6636 -ダス,出す,1037,1037,481,-4.2456 -ダス,だす,1037,1037,438,-4.5844 -ダス,出す,731,731,481,-5.1014 -ダセ,出せ,734,734,481,-5.0941 -ダッタ,だった,457,435,17,-6.5270 -ダッテ,だって,339,339,17,-3.2391 -ダッテ,だって,271,271,17,-4.8197 -ダッテ,だって,555,555,17,-7.2809 -ダト,だと,453,164,17,-6.6193 -ダト,だと,453,309,17,-7.9369 -ダトオモイ,だと思い,453,832,17,-7.8199 -ダトオモイマス,だと思います,453,491,17,-7.8784 -ダナ,だな,453,275,17,-7.3947 -ダニ,だに,340,340,99,-4.5817 -ダネ,だね,453,279,17,-7.7790 -ダノ,だの,361,361,437,-3.9830 -ダブリュダブリュダブリュー,www,1293,1293,493,-6.7881 -ダメ,ダメ,1287,1287,17,-6.3452 -ダメ,だめ,1287,1287,17,-7.6888 -ダヨ,だよ,453,288,17,-6.1764 -ダヨネ,だよね,453,279,17,-7.2236 -ダリ,だり,362,362,60,-4.7851 -ダリ,だり,308,1203,60,-6.3455 -ダロウ,だろう,455,506,17,-7.0639 -ダンセイ,男性,1285,1285,42,-7.7541 -ダー,だー,453,453,80,-7.8647 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_チ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_チ.csv deleted file mode 100644 index 0dbcacd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_チ.csv +++ /dev/null @@ -1,50 +0,0 @@ -チイキ,地域,1285,1285,480,-7.2897 -チイサ,小さ,11,11,471,-6.6549 -チイサイ,小さい,19,19,471,-7.0951 -チイサウ,小さう,31,31,471,-6.5098 -チイサカレ,小さかれ,29,29,471,-6.5022 -チイサキ,小さき,21,21,471,-6.5025 -チイサク,小さく,35,35,471,-6.5853 -チイサシ,小さし,23,23,471,-6.5097 -チイサナ,小さな,1315,1315,220,-6.4954 -チイセエ,小せえ,19,19,471,-7.0951 -チカイ,近い,19,19,471,-6.5979 -チカイッ,近いっ,19,19,471,-7.6061 -チカウ,近う,31,31,471,-6.0127 -チカカレ,近かれ,29,29,471,-6.0051 -チカキ,近き,21,21,471,-6.0054 -チカク,近く,35,35,471,-6.0882 -チカク,近く,1314,1314,220,-6.4277 -チカシ,近し,23,23,471,-6.0126 -チカヅキ,近づき,689,689,471,-7.2137 -チカヅク,近づく,679,679,471,-7.1731 -チカヅケ,近づけ,685,685,471,-7.1730 -チガイ,違い,1284,1284,468,-4.6864 -チガイ,違い,832,832,471,-4.8376 -チガウ,違う,817,817,471,-4.7941 -チガエ,違え,826,826,471,-4.7884 -チケエ,近え,19,19,471,-6.5979 -チナミ,ちなみ,767,767,6,-7.5056 -チナミニ,ちなみに,555,555,478,-5.8445 -チナム,ちなむ,762,762,6,-7.4687 -チナメ,ちなめ,765,765,6,-7.4647 -チャイ,ちゃい,307,1273,420,-7.8250 -チャウ,ちゃう,1252,1252,17,-3.7790 -チャウ,ちゃう,307,1253,17,-6.9038 -チャン,ちゃん,1302,1302,51,-4.1693 -チャント,ちゃんと,1281,1281,17,-6.0790 -チュウカジンミンキョウワコク,中華人民共和国,1294,1294,240,-7.2952 -チュウゴク,中国,1294,1294,240,-5.1768 -チュウゴク,中国,1293,1293,240,-5.2351 -チュウシャジョウ,駐車場,1293,1293,414,-7.6170 -チュウシン,中心,1285,1285,356,-7.3368 -チョ,ちょ,1308,1308,437,-4.6931 -チョウサ,調査,1283,1283,425,-7.6865 -チョウセン,朝鮮,1294,1294,135,-7.1228 -チョウダイ,ちょうだい,1308,1308,420,-6.7501 -チョウド,ちょうど,1281,1281,143,-7.2928 -チョクゴ,直後,1314,1314,282,-7.2050 -チョクセツ,直接,1314,1314,468,-6.7790 -チョット,ちょっと,1282,1282,17,-5.2102 -チョー,チョー,559,559,244,-7.5422 -チーム,チーム,1285,1285,334,-7.3978 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヂ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヂ.csv deleted file mode 100644 index ab8a29c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヂ.csv +++ /dev/null @@ -1 +0,0 @@ -ヂョウシ,調子,1285,1285,198,-11.7235 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ッ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ッ.csv deleted file mode 100644 index 49eb49f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ッ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ッキャ,っきゃ,260,260,80,-4.9290 -ッキリ,っきり,1305,1305,420,-9.5232 -ッケ,っけ,272,272,80,-3.5973 -ッコ,っ子,1298,1298,51,-9.6811 -ッシ,っし,465,465,331,-3.9808 -ッス,っす,459,459,80,-3.6749 -ッタラシ,ったらし,98,98,501,-5.8318 -ッタラシ,ったらし,92,92,501,-5.8515 -ッタラシイ,ったらしい,96,96,501,-5.2956 -ッタラシカレ,ったらしかれ,101,101,501,-5.2927 -ッタラシキ,ったらしき,97,97,501,-5.2927 -ッタラシク,ったらしく,104,104,501,-6.0411 -ッタラシュウ,ったらしゅう,102,102,501,-5.2927 -ッチュウ,っちゅう,166,166,150,-4.9404 -ッテ,って,167,167,17,-2.3603 -ッテ,って,1009,307,17,-9.6516 -ッテイウ,っていう,168,168,17,-3.3353 -ッテイウ,って言う,167,818,17,-8.8417 -ッテイウ,っていう,167,818,17,-9.5956 -ッテイウノ,っていうの,168,1310,17,-9.5393 -ッテイッテ,って言って,167,307,17,-8.7210 -ッテイッテタ,って言ってた,167,435,17,-9.7930 -ッテイッテル,って言ってる,167,919,17,-9.7643 -ッテイワレ,って言われ,167,876,17,-8.7693 -ッテイワレタ,って言われた,167,435,17,-9.5919 -ッテイワレテ,って言われて,167,307,17,-9.5705 -ッテオモイ,って思い,167,832,17,-9.4544 -ッテオモウ,って思う,167,817,17,-8.9590 -ッテオモッタ,って思った,167,435,17,-9.4804 -ッテオモッテ,って思って,167,307,17,-9.0154 -ッテカ,ってか,555,555,437,-8.5701 -ッテカンジ,って感じ,167,1285,17,-8.5664 -ッテコト,ってこと,167,1310,17,-8.3830 -ッテコト,って事,167,1285,17,-9.6662 -ッテナ,ってな,169,169,244,-3.7125 -ッテナッタ,ってなった,167,435,17,-9.7484 -ッテナッテ,ってなって,167,307,17,-9.8084 -ッテナニ,って何,167,1306,17,-9.4194 -ッテナル,ってなる,167,772,17,-9.2982 -ッテナン,ってなん,169,1310,17,-9.2899 -ッテノ,っての,167,1310,17,-8.8852 -ッテノハ,ってのは,167,261,17,-9.5844 -ッテハナシ,って話,167,1283,17,-9.5734 -ット,っと,163,163,80,-3.8182 -ッパナシ,っぱなし,1298,1298,17,-8.8914 -ップリ,っぷり,1304,1304,127,-7.6806 -ッポ,っぽ,54,54,80,-4.0853 -ッポイ,っぽい,66,66,460,-3.6445 -ッポウ,っぽう,84,84,331,-4.0017 -ッポク,っぽく,90,90,460,-3.8727 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ツ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ツ.csv deleted file mode 100644 index 00821f8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ツ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ツイッター,Twitter,1292,1292,363,-5.7484 -ツイテイキ,ついて行き,705,705,161,-5.2806 -ツイテイク,ついて行く,695,695,161,-5.6509 -ツイテイケ,ついて行け,701,701,161,-5.2806 -ツウズ,通ず,593,593,471,-6.0197 -ツウズル,通ずる,592,592,471,-6.0212 -ツエエ,強え,19,19,43,-5.9426 -ツカイ,使い,832,832,481,-4.5840 -ツカイ,使い,812,812,481,-6.1093 -ツカイ,使い,1298,1298,379,-6.1093 -ツカイ,使い,1285,1285,379,-6.1093 -ツカウ,使う,817,817,481,-4.5404 -ツカエ,使え,826,826,481,-4.5347 -ツキ,つき,689,689,471,-5.4846 -ツギ,次ぎ,728,728,318,-5.5199 -ツギ,継ぎ,728,728,438,-5.6509 -ツク,つく,679,679,471,-5.4440 -ツクシ,尽くし,1054,1054,258,-4.3484 -ツクシ,つくし,1054,1054,495,-5.8850 -ツクス,尽くす,1038,1038,438,-4.4416 -ツクス,つくす,1038,1038,438,-6.0558 -ツクリ,作り,788,788,481,-5.8024 -ツクル,作る,772,772,481,-5.6347 -ツクレ,作れ,784,784,481,-5.7911 -ツグ,次ぐ,723,723,318,-5.5301 -ツグ,継ぐ,723,723,438,-5.6611 -ツケ,つけ,685,685,471,-5.4440 -ツゲ,次げ,726,726,318,-5.4536 -ツゲ,継げ,726,726,438,-5.5847 -ツツ,つつ,306,306,356,-3.2088 -ツヅキ,続き,980,980,249,-4.6983 -ツヅキ,続き,689,689,471,-5.2161 -ツヅク,続く,955,955,471,-4.8171 -ツヅク,続く,679,679,471,-5.1755 -ツヅケ,続け,685,685,471,-5.1754 -ツヅケ,続け,930,930,258,-5.8731 -ツナギ,繋ぎ,728,728,481,-5.8951 -ツナギ,つなぎ,728,728,481,-5.9735 -ツナグ,繋ぐ,723,723,481,-5.9052 -ツナグ,つなぐ,723,723,481,-5.9837 -ツナゲ,繋げ,726,726,481,-5.8288 -ツナゲ,つなげ,726,726,481,-5.9073 -ツマリ,つまり,555,555,287,-6.0231 -ツヨイ,強い,19,19,43,-5.9426 -ツヨウ,強う,31,31,43,-5.3573 -ツヨカレ,強かれ,29,29,43,-5.3497 -ツヨキ,強き,21,21,43,-5.3500 -ツヨク,強く,35,35,43,-5.4328 -ツヨシ,強し,23,23,43,-5.3572 -ツル,つる,371,371,437,-3.7564 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヅ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヅ.csv deleted file mode 100644 index 2bebb98..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヅ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ヅカイ,使い,1298,1298,379,-9.2043 -ヅカイ,遣い,1298,1298,4,-9.7232 -ヅカイ,使い,1285,1285,379,-11.2636 -ヅカマエル,捕まえる,619,619,438,-11.6426 -ヅカマル,捕まる,772,772,91,-12.1271 -ヅカレ,疲れ,1298,1298,161,-10.7605 -ヅカレ,疲れ,1285,1285,161,-11.7592 -ヅキ,づき,689,689,437,-8.7888 -ヅキ,付き,1298,1298,445,-10.8958 -ヅキアイ,づきあい,1298,1298,290,-11.8119 -ヅク,づく,679,679,437,-8.7482 -ヅク,突く,695,695,379,-12.4289 -ヅクシ,づくし,1298,1298,312,-11.4572 -ヅクリ,作り,1298,1298,258,-7.7709 -ヅクリ,づくり,1298,1298,154,-8.2272 -ヅクリ,作り,788,788,481,-8.2752 -ヅクリ,作り,1285,1285,258,-8.2752 -ヅクリ,造り,1298,1298,435,-9.8163 -ヅクリ,造り,1285,1285,435,-11.2751 -ヅクリ,造り,788,788,481,-11.2751 -ヅクリニ,作りに,1298,151,17,-11.0719 -ヅクリヲ,作りを,1298,156,17,-11.1940 -ヅケ,付け,1298,1298,52,-7.9494 -ヅケ,づけ,685,685,437,-8.7482 -ヅケ,づけ,625,625,52,-9.2233 -ヅケ,漬け,1298,1298,487,-9.9153 -ヅケ,づけ,930,930,52,-11.1434 -ヅケイ,図形,1285,1285,304,-11.1860 -ヅケデ,付で,1298,149,17,-10.6416 -ヅケデ,付けで,1298,149,17,-11.2712 -ヅケル,づける,619,619,481,-9.2283 -ヅケル,づける,919,919,481,-12.1600 -ヅケロ,づけろ,623,623,481,-9.2037 -ヅタイ,伝い,1298,1298,220,-11.9412 -ヅマル,詰まる,772,772,379,-12.5480 -ヅミ,積み,1298,1298,270,-10.4018 -ヅミ,積み,1285,1285,270,-10.4018 -ヅメ,詰め,1298,1298,276,-10.2898 -ヅラ,づら,105,105,48,-4.9667 -ヅラ,ヅラ,1288,1288,56,-12.0967 -ヅライ,づらい,113,113,48,-5.4897 -ヅライ,辛い,19,19,48,-11.7161 -ヅラウ,づらう,125,125,48,-3.9798 -ヅラカレ,づらかれ,123,123,48,-3.9421 -ヅラキ,づらき,115,115,48,-3.9421 -ヅラク,づらく,129,129,48,-5.1507 -ヅラシ,づらし,117,117,48,-4.7865 -ヅリ,釣り,1298,1298,228,-10.1914 -ヅレ,連れ,1298,1298,427,-9.7319 -ヅレエ,づれえ,113,113,48,-5.4897 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_テ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_テ.csv deleted file mode 100644 index 0e81273..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_テ.csv +++ /dev/null @@ -1,50 +0,0 @@ -テイ,てい,307,930,17,-5.8308 -テイウ,ていう,171,171,327,-3.7709 -テイキョウ,提供,1283,1283,375,-7.4123 -テイク,ていく,307,992,17,-7.5930 -テイサ,呈さ,586,586,43,-7.6509 -テイシロ,呈しろ,588,588,43,-7.5715 -テイス,呈す,584,584,43,-7.5793 -テイスル,呈する,583,583,43,-7.5751 -テイタ,ていた,307,435,17,-6.4827 -テイテ,ていて,307,307,17,-7.6863 -テイド,程度,1298,1298,23,-6.6105 -テイナイ,ていない,307,473,17,-7.6534 -テイネイ,丁寧,1287,1287,66,-7.7090 -テイマス,ています,307,491,17,-6.7459 -テイル,ている,307,919,17,-5.6469 -テイルノ,ているの,307,1310,17,-7.4871 -テェ,てぇ,440,440,420,-4.4488 -テエ,てえ,440,440,54,-5.1545 -テオリ,ており,307,1197,17,-7.2762 -テカ,てか,555,555,437,-7.2922 -テカラ,てから,307,147,17,-7.6796 -テキ,てき,1011,1011,331,-4.7966 -テキ,てき,307,904,17,-6.6849 -テキシ,適し,735,735,390,-7.6451 -テキタ,てきた,307,435,17,-7.2992 -テキトウ,適当,1287,1287,169,-7.7016 -テキナ,的な,1299,454,17,-7.1168 -テク,てく,991,991,150,-4.7884 -テクダサイ,てください,307,1239,17,-7.1772 -テクル,てくる,307,897,17,-7.4581 -テクレ,てくれ,307,940,17,-7.0746 -テクレル,てくれる,307,933,17,-7.5487 -テケ,てけ,1003,1003,33,-5.1681 -テシマイ,てしまい,307,1273,17,-7.6492 -テシマウ,てしまう,307,1253,17,-7.4632 -テシマッタ,てしまった,307,435,17,-7.7699 -テタ,てた,307,435,17,-6.6927 -テテ,てて,307,307,17,-7.3913 -テナイ,てない,307,473,17,-7.1177 -テマス,てます,307,491,17,-6.9979 -テミ,てみ,307,930,17,-7.2116 -テモ,ても,307,262,17,-6.4044 -テル,てる,307,919,17,-4.3303 -テル,てる,919,919,17,-6.4773 -テルノ,てるの,307,1310,17,-7.7323 -テレビアサヒ,テレビ朝日,1292,1292,305,-7.5045 -テン,てん,273,273,331,-4.3716 -テンカイ,展開,1283,1283,182,-7.4417 -テンズ,転ず,593,593,43,-7.7073 -テンズル,転ずる,592,592,43,-7.7088 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_デ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_デ.csv deleted file mode 100644 index 6b2450c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_デ.csv +++ /dev/null @@ -1,50 +0,0 @@ -デアイ,出会い,832,832,51,-6.7564 -デアウ,出会う,817,817,51,-6.7128 -デアエ,出会え,826,826,51,-6.7071 -デアッタ,であった,458,435,17,-7.8402 -デアリ,であり,458,409,17,-7.7274 -デアル,である,458,403,17,-6.5747 -ディズニー,ディズニー,1292,1292,179,-7.8399 -ディーエム,DM,1288,1288,213,-8.1343 -デキ,でき,625,625,481,-4.3005 -デキ,出来,625,625,268,-5.7335 -デキ,出来,1285,1285,268,-5.7335 -デキナイ,できない,622,473,17,-7.6367 -デキル,できる,619,619,481,-4.0489 -デキル,出来る,619,619,471,-5.7150 -デキロ,できろ,623,623,481,-4.0243 -デキロ,出来ろ,623,623,471,-5.6904 -デケ,でけ,1003,1003,437,-5.5249 -デザイン,デザイン,1283,1283,242,-7.2222 -デシ,でし,466,466,17,-2.1485 -デシタ,でした,466,435,17,-6.8561 -デショウ,でしょう,463,506,17,-6.6185 -デショウカ,でしょうか,463,359,17,-6.9676 -デス,です,460,460,17,-1.8655 -デスカ,ですか,460,359,17,-6.6967 -デスカ,ですか,1292,1292,501,-7.3946 -デスカラ,ですから,460,297,17,-8.1968 -デスガ,ですが,460,299,17,-6.3556 -デスガ,ですが,555,555,501,-7.7554 -デスケド,ですけど,460,301,17,-7.7113 -デスネ,ですね,460,279,17,-6.5415 -デスヨ,ですよ,460,288,17,-6.5517 -デスヨネ,ですよね,460,279,17,-7.0238 -デテ,出て,625,307,17,-7.4289 -デノ,での,149,368,17,-7.4521 -デハ,では,149,261,17,-6.2880 -デハ,では,458,261,17,-6.9840 -デハ,では,555,555,268,-7.0051 -デハ,では,1285,1285,268,-7.8071 -デハナイ,ではない,458,473,17,-7.9257 -デビュー,デビュー,1283,1283,334,-7.7607 -デモ,でも,341,341,468,-2.6375 -デモ,でも,555,555,468,-4.6667 -デモ,でも,149,262,17,-6.8355 -デル,出る,619,619,471,-5.4366 -デル,でる,308,919,471,-5.5439 -デロ,出ろ,623,623,471,-5.4120 -デロ,でろ,623,623,471,-8.1816 -デンマーク,デンマーク,1294,1294,463,-7.7199 -デンワ,電話,1283,1283,445,-7.7368 -データ,データ,1285,1285,431,-8.0421 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ト.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ト.csv deleted file mode 100644 index 34c61a3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ト.csv +++ /dev/null @@ -1,50 +0,0 @@ -トイ,問い,812,812,43,-5.3680 -トイウ,という,173,173,468,-2.2416 -トイッタ,といった,174,174,307,-3.1457 -トイフ,といふ,175,175,495,-4.8323 -トウ,とう,449,449,331,-4.5954 -トウキョウ,東京,1293,1293,473,-5.4687 -トウショ,当初,1314,1314,356,-6.1708 -トウジ,当時,1314,1314,356,-5.2816 -トウジョウ,登場,1283,1283,322,-6.8334 -トウゼン,当然,1282,1282,468,-6.4801 -トエ,問え,808,808,43,-5.3680 -トオモイ,と思い,164,832,17,-6.5917 -トオモイマス,と思います,164,491,17,-6.7228 -トオモウ,と思う,164,817,17,-6.9211 -トカ,とか,364,364,17,-2.5396 -トカイウ,とかいう,177,177,420,-3.9732 -トキ,とき,1313,1313,282,-4.6845 -トク,とく,953,953,437,-6.5584 -トクニ,特に,1281,1281,468,-5.3671 -トクベツ,特別,1287,1287,169,-6.7243 -トコロ,ところ,1313,1313,282,-4.6437 -トシテ,として,179,179,356,-2.2226 -トシマシテ,としまして,181,181,501,-5.0122 -トチュウ,途中,1314,1314,282,-6.6246 -トツゼン,突然,1282,1282,161,-6.8160 -トテモ,とても,1282,1282,48,-5.4505 -トトモニ,とともに,182,182,282,-3.1486 -トトモニ,と共に,183,183,459,-3.2000 -トドキ,届き,689,689,471,-6.2162 -トドク,届く,679,679,471,-6.1756 -トドケ,届け,685,685,471,-6.1756 -トニカク,とにかく,1281,1281,17,-6.8536 -トビ,飛び,759,759,471,-5.8958 -トブ,飛ぶ,754,754,471,-5.8930 -トベ,飛べ,757,757,471,-5.8918 -トモ,とも,342,342,468,-3.2436 -トモ,とも,310,310,468,-3.7372 -トモナイ,伴い,832,832,282,-5.8134 -トモナウ,伴う,817,817,43,-6.0573 -トモナエ,伴え,826,826,43,-6.0516 -トリ,とり,1195,1195,258,-6.5744 -トリ,取り,788,788,481,-6.6463 -トリアエズ,とりあえず,1282,1282,17,-6.4983 -トリクミ,取り組み,767,767,154,-6.5945 -トリクム,取り組む,762,762,154,-6.5576 -トリクメ,取り組め,765,765,154,-6.5536 -トル,取る,772,772,481,-6.4787 -トル,とる,772,772,481,-6.9238 -トレ,取れ,784,784,481,-6.6350 -トンデモ,とんでも,1284,1284,268,-6.4118 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ド.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ド.csv deleted file mode 100644 index 9350f24..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ド.csv +++ /dev/null @@ -1,50 +0,0 @@ -ドイツ,ドイツ,1294,1294,240,-5.4605 -ドウ,どう,1282,1282,468,-4.6684 -ドウ,どう,1283,1283,468,-7.5143 -ドウイウ,どういう,1315,1315,17,-6.8754 -ドウカ,どうか,1281,1281,17,-8.1721 -ドウカ,どうか,1282,359,17,-8.3747 -ドウガ,動画,1285,1285,363,-7.6766 -ドウキ,同期,1314,1314,364,-7.9787 -ドウシテ,どうして,1281,1281,17,-7.2601 -ドウシテモ,どうしても,1281,1281,17,-7.1151 -ドウジツ,同日,1314,1314,380,-8.1135 -ドウジニ,同時に,1281,1281,282,-6.2881 -ドウセ,どうせ,1281,1281,17,-7.8915 -ドウゾ,どうぞ,1281,1281,420,-7.1723 -ドウドウ,堂々,1282,1282,17,-8.4251 -ドウニカ,どうにか,1281,1281,91,-8.0778 -ドウニュウ,導入,1283,1283,375,-7.4573 -ドウネン,同年,1314,1314,237,-5.8236 -ドウブツ,動物,1285,1285,499,-8.5320 -ドウモ,どうも,1281,1281,17,-7.9631 -ドウヤラ,どうやら,1281,1281,161,-8.2589 -ドウヨウ,同様,1287,1287,468,-6.0475 -ドオリ,通り,1298,1298,332,-7.2854 -ドキ,どき,978,978,80,-5.8654 -ドクショ,読書,1283,1283,364,-8.4428 -ドクジ,独自,1287,1287,356,-7.0662 -ドクトク,独特,1287,1287,307,-7.8343 -ドクリツ,独立,1283,1283,182,-7.7485 -ドコ,どこ,1306,1306,17,-5.6284 -ドコ,何処,1306,1306,17,-8.4363 -ドコロカ,どころか,312,312,282,-3.8946 -ドシ,どし,467,467,437,-4.4803 -ドス,どす,461,461,80,-4.6419 -ドチラ,どちら,1306,1306,468,-6.3372 -ドッチ,どっち,1306,1306,17,-7.0498 -ドナタ,どなた,1306,1306,420,-8.4439 -ドノ,どの,1315,1315,468,-5.7257 -ドメ,度目,1300,1300,282,-8.2976 -ドモ,ども,313,313,495,-4.3036 -ドヨウ,土曜,1314,1314,305,-8.3861 -ドヨウビ,土曜日,1314,1314,380,-8.0303 -ドラマ,ドラマ,1285,1285,322,-8.4813 -ドリ,どり,1195,1195,437,-8.4608 -ドリョク,努力,1283,1283,252,-7.9586 -ドル,ドル,1300,1300,354,-7.2747 -ドレ,どれ,1306,1306,468,-6.4845 -ドンドン,どんどん,1282,1282,48,-6.7184 -ドンナ,どんな,1315,1315,17,-5.7214 -ドンナニ,どんなに,1281,1281,17,-7.9596 -ドー,どー,1282,1282,80,-8.1158 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ナ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ナ.csv deleted file mode 100644 index b35c711..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ナ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ナァ,なぁ,275,275,420,-4.2969 -ナァ,なァ,278,278,420,-4.5703 -ナァー,なぁー,277,277,501,-4.2976 -ナア,なあ,275,275,17,-5.2398 -ナイ,ない,473,473,468,-1.8979 -ナイ,ない,482,482,468,-2.1746 -ナイ,ない,20,20,468,-3.4755 -ナイ,無い,384,384,481,-3.8294 -ナウ,なう,32,32,468,-2.1172 -ナウ,無う,32,32,481,-5.2979 -ナオ,なお,555,555,468,-5.0335 -ナオシ,直し,1056,1056,445,-4.0158 -ナオス,直す,1040,1040,481,-4.1216 -ナオセ,直せ,1052,1052,47,-4.1279 -ナカレ,なかれ,30,30,468,-2.1172 -ナカレ,無かれ,30,30,481,-5.2979 -ナガラ,ながら,314,314,282,-2.7301 -ナキ,なき,22,22,468,-2.1172 -ナキ,なき,474,474,495,-2.1849 -ナキ,無き,386,386,495,-4.1031 -ナキ,無き,22,22,481,-5.2979 -ナク,なく,36,36,468,-2.1850 -ナク,なく,481,481,468,-2.5033 -ナク,無く,400,400,43,-4.0412 -ナクッ,なくっ,481,481,17,-2.7253 -ナクッ,なくっ,36,36,17,-4.2673 -ナサイ,なさい,1237,1237,17,-3.6578 -ナサイ,なさい,1245,1245,17,-4.0137 -ナサル,なさる,1217,1217,495,-4.0151 -ナサレ,なされ,1233,1233,479,-4.0127 -ナシ,なし,24,24,468,-2.1172 -ナシ,なし,475,475,258,-2.1849 -ナゾ,なぞ,343,343,80,-4.7837 -ナド,など,344,344,442,-2.2760 -ナリ,なり,788,788,471,-3.2643 -ナリ,なり,1200,1200,471,-3.4259 -ナリ,なり,345,345,471,-3.6461 -ナリ,なり,530,530,471,-3.8457 -ナリ,なり,315,315,471,-4.2509 -ナリ,なり,365,365,471,-4.3256 -ナル,なる,772,772,471,-3.0967 -ナル,なる,1096,1096,471,-3.4967 -ナル,なる,532,532,471,-3.6390 -ナレ,なれ,784,784,471,-3.2530 -ナレ,なれ,536,536,47,-3.9420 -ナンカ,なんか,346,346,17,-3.2981 -ナンカ,なんか,2,2,17,-4.0239 -ナンゾ,なんぞ,347,347,420,-4.4399 -ナンテ,なんて,348,348,17,-2.9086 -ナー,なー,276,276,80,-3.3358 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ニ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ニ.csv deleted file mode 100644 index f8f73c7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ニ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ニアタッテ,にあたって,184,184,282,-3.8472 -ニアタッテ,に当たって,238,238,282,-4.2674 -ニアタリ,にあたり,185,185,356,-4.0117 -ニアタリ,に当たり,239,239,282,-4.7019 -ニアタル,にあたる,188,188,349,-3.7790 -ニアタル,に当たる,242,242,143,-4.1616 -ニオイテ,において,189,189,456,-2.8011 -ニオキマシテ,におきまして,190,190,153,-5.4404 -ニオケル,における,191,191,456,-2.9900 -ニカケ,にかけ,192,192,299,-4.3242 -ニカケテ,にかけて,193,193,143,-3.2739 -ニカンシ,に関し,220,220,214,-4.4346 -ニカンシテ,に関して,221,221,468,-3.2890 -ニカンシマシテ,に関しまして,222,222,501,-4.9826 -ニカンスル,に関する,224,224,456,-3.1712 -ニク,にく,105,105,48,-4.8589 -ニクイ,にくい,113,113,48,-4.5700 -ニクク,にくく,129,129,48,-4.7852 -ニサイシ,に際し,225,225,282,-4.2017 -ニサイシテ,に際して,226,226,282,-3.8575 -ニサイシマシテ,に際しまして,227,227,501,-5.5840 -ニシタガイ,に従い,228,228,282,-4.0751 -ニシタガウ,に従う,231,231,456,-4.7511 -ニシタガッテ,に従って,232,232,193,-3.9262 -ニタイシ,に対し,233,233,282,-3.3025 -ニタイシテ,に対して,234,234,216,-2.9602 -ニタイシテ,にたいして,195,195,43,-4.6973 -ニタイスル,に対する,237,237,43,-3.1376 -ニタイスル,にたいする,198,198,388,-5.0009 -ニッポン,日本,1294,1294,240,-3.5368 -ニツイテ,について,199,199,468,-2.6527 -ニツキ,につき,200,200,163,-4.0338 -ニツキマシテ,につきまして,201,201,501,-5.4922 -ニツケ,につけ,202,202,91,-4.7095 -ニツレ,につれ,203,203,356,-4.1146 -ニツレテ,につれて,204,204,356,-4.0359 -ニテ,にて,152,152,224,-3.0606 -ニトッテ,にとって,205,205,252,-3.0878 -ニトリ,にとり,206,206,43,-4.9555 -ニハ,には,151,261,17,-6.0799 -ニマツワル,にまつわる,209,209,460,-4.0449 -ニモ,にも,1289,1289,451,-6.4204 -ニャ,にゃ,326,326,420,-4.2779 -ニヨッテ,によって,210,210,468,-2.6690 -ニヨリ,により,211,211,43,-2.7172 -ニヨリマス,によります,213,213,501,-5.1748 -ニヨル,による,214,214,43,-2.7162 -ニワタッテ,にわたって,215,215,143,-3.7506 -ニワタリ,にわたり,216,216,143,-3.9296 -ニワタル,にわたる,219,219,143,-4.0017 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヌ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヌ.csv deleted file mode 100644 index 89bb7cc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヌ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ヌイ,ぬい,1291,1291,74,-9.2724 -ヌイ,縫い,832,832,471,-9.3321 -ヌイ,ぬい,832,832,74,-9.7214 -ヌウ,縫う,817,817,471,-9.2885 -ヌエ,縫え,826,826,471,-9.2828 -ヌカシ,抜かし,735,735,427,-9.7827 -ヌカス,抜かす,731,731,147,-9.8846 -ヌカセ,抜かせ,734,734,147,-9.8773 -ヌキ,抜き,982,982,63,-4.8746 -ヌキ,ぬき,982,982,437,-5.9821 -ヌキ,抜き,689,689,379,-7.2974 -ヌキ,抜き,1285,1285,63,-10.1946 -ヌキダシ,抜き出し,735,735,445,-10.1704 -ヌギ,脱ぎ,728,728,295,-6.9258 -ヌギ,ぬぎ,728,728,437,-9.8140 -ヌク,抜く,957,957,379,-4.7605 -ヌク,ぬく,957,957,17,-5.9455 -ヌク,抜く,679,679,379,-7.2568 -ヌク,貫く,695,695,481,-9.6663 -ヌク,ぬく,679,679,17,-10.2019 -ヌグ,脱ぐ,723,723,295,-6.9402 -ヌグ,ぬぐ,723,723,501,-9.8849 -ヌグイ,拭い,832,832,155,-9.9895 -ヌグウ,拭う,817,817,418,-10.1990 -ヌグエ,拭え,826,826,418,-10.1933 -ヌケ,抜け,685,685,379,-7.2567 -ヌケ,抜け,625,625,155,-7.8926 -ヌケ,ぬけ,685,685,17,-10.2018 -ヌケダシ,抜け出し,735,735,91,-8.5060 -ヌケダス,抜け出す,731,731,471,-8.5665 -ヌケダセ,抜け出せ,734,734,471,-8.5591 -ヌケテ,抜けて,625,307,17,-10.1349 -ヌケル,抜ける,619,619,471,-8.1350 -ヌケロ,抜けろ,623,623,471,-8.1104 -ヌゲ,脱げ,726,726,295,-6.8638 -ヌゲ,ぬげ,726,726,501,-9.8085 -ヌスミ,盗み,767,767,438,-8.0378 -ヌスム,盗む,762,762,438,-8.0009 -ヌスメ,盗め,765,765,438,-7.9969 -ヌマヅ,沼津,1293,1293,473,-9.9054 -ヌラシ,濡らし,735,735,155,-9.7988 -ヌラス,濡らす,731,731,379,-10.1039 -ヌラセ,濡らせ,734,734,379,-10.0965 -ヌリ,塗り,788,788,242,-8.7019 -ヌリ,塗り,1298,1298,242,-9.5829 -ヌル,塗る,772,772,379,-8.5794 -ヌレ,塗れ,784,784,379,-8.7357 -ヌレ,濡れ,625,625,155,-9.4448 -ヌレル,濡れる,619,619,379,-9.8335 -ヌレロ,濡れろ,623,623,379,-9.8089 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ネ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ネ.csv deleted file mode 100644 index dacd9f2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ネ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ネ〜,ね〜,20,20,468,-6.9924 -ネェ,ねぇ,469,469,420,-4.6298 -ネェ,ねぇ,279,279,420,-5.8764 -ネェ,ねぇ,20,20,420,-6.6456 -ネェ,ねェ,20,20,420,-7.0578 -ネェ,ねぇ,3,3,420,-8.3883 -ネエ,ねえ,20,20,468,-2.2298 -ネエ,ねえ,469,469,17,-4.6324 -ネエ,無え,20,20,481,-5.9716 -ネエ,ねえ,279,279,17,-7.2334 -ネエ,ねえ,3,3,17,-8.4862 -ネガイ,願い,832,832,438,-7.4059 -ネガイ,願い,1272,1272,252,-8.5427 -ネガウ,願う,817,817,438,-7.3623 -ネガエ,願え,826,826,438,-7.3566 -ネガティブ,ネガティブ,1287,1287,66,-8.3811 -ネタ,ネタ,1285,1285,451,-8.6575 -ネッ,ねっ,20,20,80,-6.8336 -ネッシ,熱し,735,735,487,-8.5668 -ネッシン,熱心,1287,1287,169,-8.4893 -ネット,ネット,1285,1285,305,-8.3097 -ネテ,寝て,625,307,17,-8.7014 -ネミイ,眠い,19,19,56,-8.5042 -ネミウ,眠う,31,31,56,-7.9189 -ネミカレ,眠かれ,29,29,56,-7.9113 -ネミキ,眠き,21,21,56,-7.9116 -ネミク,眠く,35,35,56,-7.9944 -ネミシ,眠し,23,23,56,-7.9188 -ネムイ,眠い,19,19,56,-8.5042 -ネムウ,眠う,31,31,56,-7.9189 -ネムカレ,眠かれ,29,29,56,-7.9113 -ネムキ,眠き,21,21,56,-7.9116 -ネムク,眠く,35,35,56,-7.9944 -ネムシ,眠し,23,23,56,-7.9188 -ネムル,眠る,772,772,212,-8.6643 -ネライ,狙い,832,832,438,-7.2695 -ネラウ,狙う,817,817,438,-7.2259 -ネラエ,狙え,826,826,438,-7.2202 -ネル,寝る,619,619,290,-6.6014 -ネロ,寝ろ,623,623,290,-6.5768 -ネン,ねん,281,281,331,-3.6938 -ネンカン,年間,1300,1300,299,-7.6348 -ネンカン,年間,1285,1285,299,-8.6784 -ネンセイ,年生,1300,1300,364,-8.6086 -ネンマツ,年末,1314,1314,380,-8.4598 -ネンレイ,年齢,1285,1285,42,-8.5469 -ネー,ねー,280,280,420,-3.4471 -ネー,ねー,469,469,420,-4.6236 -ネー,ねー,20,20,420,-6.6955 -ネーー,ねーー,469,469,420,-5.4647 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ノ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ノ.csv deleted file mode 100644 index e413f29..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ノ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ノゥ,のぅ,283,283,501,-6.4789 -ノウ,のう,283,283,437,-4.8228 -ノウ,のう,479,479,437,-5.0533 -ノォ,のぉ,283,283,501,-5.3839 -ノオ,のお,283,283,501,-5.5631 -ノカ,のか,1310,359,17,-6.6048 -ノガ,のが,1310,148,17,-6.7945 -ノコシ,残し,735,735,258,-5.7942 -ノコス,残す,731,731,481,-6.0421 -ノコセ,残せ,734,734,481,-6.0348 -ノコト,のこと,368,1310,17,-7.3022 -ノコリ,残り,788,788,471,-6.9273 -ノコル,残る,772,772,471,-6.7596 -ノコレ,残れ,784,784,471,-6.9160 -ノゾキ,除き,689,689,481,-6.0603 -ノゾク,除く,679,679,481,-6.0196 -ノゾケ,除け,685,685,481,-6.0196 -ノゾミ,望み,767,767,438,-6.5667 -ノゾム,望む,762,762,438,-6.5298 -ノゾム,臨む,762,762,471,-7.6575 -ノゾメ,望め,765,765,438,-6.5258 -ノゾメ,臨め,765,765,471,-7.6535 -ノタメ,のため,368,1313,17,-7.6618 -ノダ,のだ,1310,453,17,-7.4984 -ノチ,のち,1314,1314,237,-7.4108 -ノチ,のち,1313,1313,237,-7.6363 -ノデ,ので,316,316,48,-2.3278 -ノデ,ので,1310,458,17,-7.4844 -ノデス,のです,1310,460,17,-6.6862 -ノデスガ,のですが,1310,299,17,-7.0662 -ノナカ,の中,368,1313,17,-7.3356 -ノニ,のに,317,317,17,-2.7966 -ノハ,のは,1310,261,17,-6.3807 -ノバシ,伸ばし,735,735,258,-7.0606 -ノバス,伸ばす,731,731,481,-7.2142 -ノバセ,伸ばせ,734,734,481,-7.2069 -ノヒト,の人,368,1285,17,-7.5115 -ノベ,述べ,625,625,390,-6.8927 -ノベル,述べる,619,619,481,-7.3750 -ノベロ,述べろ,623,623,481,-7.3504 -ノホウ,の方,368,1310,17,-7.1199 -ノミ,のみ,349,349,283,-2.9182 -ノミ,飲み,767,767,290,-5.2088 -ノム,飲む,762,762,487,-5.3128 -ノメ,飲め,765,765,487,-5.3088 -ノモ,のも,1310,262,17,-7.4778 -ノヨウ,のよう,368,1312,17,-7.3829 -ノリ,乗り,788,788,471,-7.3159 -ノル,乗る,772,772,471,-7.1482 -ノレ,乗れ,784,784,471,-7.3046 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ハ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ハ.csv deleted file mode 100644 index adb4328..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ハ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ハイ,はい,3,3,437,-6.0930 -ハイリ,入り,788,788,471,-5.8382 -ハイル,入る,772,772,471,-5.6705 -ハイレ,入れ,784,784,471,-5.8269 -ハエエ,早え,19,19,471,-6.6716 -ハゲシ,激し,45,45,48,-6.4998 -ハゲシ,激し,39,39,48,-6.5746 -ハゲシカレ,激しかれ,48,48,48,-6.4823 -ハゲシキ,激しき,44,44,48,-6.4829 -ハゲシク,激しく,51,51,48,-6.6448 -ハゲシュウ,激しゅう,49,49,48,-6.4823 -ハコビ,運び,759,759,471,-6.2356 -ハコブ,運ぶ,754,754,471,-6.2328 -ハコベ,運べ,757,757,471,-6.2316 -ハジマル,始まる,772,772,471,-6.7046 -ハジメ,始め,930,930,258,-5.9534 -ハジメ,始め,625,625,258,-6.5669 -ハジメテ,初めて,1281,1281,356,-5.5862 -ハジメル,始める,919,919,438,-6.6672 -ハズ,恥ず,857,857,438,-4.8345 -ハズ,はず,1310,1310,282,-6.2989 -ハズカシカレ,恥ずかしかれ,48,48,17,-6.7110 -ハズカシキ,恥ずかしき,44,44,17,-6.7116 -ハズカシュウ,恥ずかしゅう,49,49,17,-6.7110 -ハタシ,果たし,735,735,258,-5.9405 -ハタス,果たす,731,731,258,-6.1322 -ハタセ,果たせ,734,734,258,-6.1248 -ハタラキ,働き,689,689,438,-5.6492 -ハタラキ,働き,1285,1285,42,-5.8522 -ハタラク,働く,679,679,438,-5.6086 -ハタラケ,働け,685,685,438,-5.6086 -ハッサ,発さ,586,586,481,-6.2597 -ハッシロ,発しろ,588,588,481,-6.1803 -ハッス,発す,584,584,481,-6.1881 -ハッスル,発する,583,583,481,-6.1839 -ハヅ,恥づ,856,856,501,-5.2039 -ハナシ,話し,735,735,427,-5.3842 -ハナス,話す,731,731,438,-5.5315 -ハナセ,話せ,734,734,438,-5.5242 -ハナチ,放ち,743,743,379,-6.4663 -ハナツ,放つ,738,738,379,-6.4682 -ハナテ,放て,741,741,379,-6.4404 -ハヤイ,早い,19,19,471,-6.6716 -ハヤウ,早う,31,31,471,-6.0863 -ハヤカレ,早かれ,29,29,471,-6.0788 -ハヤキ,早き,21,21,471,-6.0790 -ハヤク,早く,35,35,282,-5.8181 -ハヤシ,早し,23,23,471,-6.0863 -ハヤッ,早っ,11,11,471,-6.6785 -ハリ,はり,1195,1195,437,-6.3292 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_バ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_バ.csv deleted file mode 100644 index 2eaf4ba..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_バ.csv +++ /dev/null @@ -1,50 +0,0 @@ -バアイ,場合,1314,1314,468,-4.6867 -バアイハ,場合は,1314,261,17,-8.1414 -バイイ,ばいい,318,131,17,-8.3265 -バイイ,ばいい,318,37,17,-8.8957 -バイエルン,バイエルン,1293,1293,446,-9.0379 -バイキャク,売却,1283,1283,375,-8.9979 -バイシュウ,買収,1283,1283,181,-8.8950 -バイデン,バイデン,1289,1289,38,-8.8831 -バイト,バイト,1285,1285,283,-8.8446 -バカ,馬鹿,1287,1287,17,-7.6580 -バカ,バカ,560,560,17,-8.8943 -バカ,バカ,557,557,17,-8.9086 -バカ,バカ,1285,1285,17,-9.0232 -バカシ,ばかし,350,350,501,-5.3461 -バカリ,ばかり,351,351,282,-3.1561 -バクゼント,漠然と,1282,1282,287,-8.9519 -バクハツ,爆発,1283,1283,320,-8.7756 -バショ,場所,1285,1285,220,-7.2187 -バス,バス,1285,1285,109,-8.3657 -バタバタ,バタバタ,1281,1281,418,-9.1652 -バッカ,ばっか,352,352,420,-3.9321 -バッカリ,ばっかり,353,353,17,-3.7711 -バック,バック,1283,1283,64,-9.0802 -バッサ,罰さ,586,586,438,-8.4185 -バッシロ,罰しろ,588,588,438,-8.3391 -バッス,罰す,584,584,438,-8.3469 -バッスル,罰する,583,583,438,-8.3427 -バッセ,罰せ,586,586,52,-8.2423 -バッチリ,バッチリ,1282,1282,113,-9.2021 -バッハ,バッハ,1289,1289,416,-9.0183 -バナラナイ,ばならない,318,473,17,-9.0021 -バメン,場面,1285,1285,451,-8.8675 -バヤシ,早し,23,23,471,-8.5212 -バヨイ,ば良い,318,114,17,-9.0170 -バラバラ,バラバラ,1282,1282,282,-8.5764 -バランス,バランス,1285,1285,351,-9.0078 -バリバリ,バリバリ,1282,1282,51,-9.0472 -バルセロナ,バルセロナ,1293,1293,463,-9.1673 -バレ,バレ,625,625,427,-8.5203 -バレル,バレる,619,619,479,-8.7489 -バレロ,バレろ,623,623,479,-8.7243 -バレンタイン,バレンタイン,1290,1290,203,-8.5139 -バングミ,番組,1285,1285,305,-7.4807 -バンコク,バンコク,1293,1293,272,-9.1394 -バンゴウ,番号,1285,1285,445,-8.8330 -バンダイ,バンダイ,1292,1292,296,-8.8919 -バンド,バンド,1285,1285,196,-8.4887 -バンネン,晩年,1314,1314,356,-8.3035 -バンメ,番目,1300,1300,454,-8.4767 -バージョン,バージョン,1285,1285,24,-9.1187 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_パ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_パ.csv deleted file mode 100644 index aeb0925..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_パ.csv +++ /dev/null @@ -1,50 +0,0 @@ -パイオニア,パイオニア,1292,1292,168,-10.1480 -パイレーツ,パイレーツ,1289,1289,306,-10.2812 -パイロット,パイロット,1285,1285,413,-9.8867 -パウロ,パウロ,1291,1291,199,-9.7531 -パウンド,パウンド,1289,1289,250,-10.1610 -パキスタン,パキスタン,1294,1294,240,-8.4340 -パクット,パクッと,1281,1281,501,-9.5676 -パス,パス,1283,1283,211,-9.3419 -パスタ,パスタ,1285,1285,75,-10.1693 -パソコン,パソコン,1285,1285,363,-9.0956 -パターン,パターン,1285,1285,283,-8.9386 -パチ,パチ,1282,1282,244,-9.7356 -パチンコ,パチンコ,1285,1285,442,-10.3041 -パッ,パッ,1282,1282,149,-9.8018 -パック,パック,1300,1300,64,-9.7517 -パック,パック,1285,1285,64,-10.1518 -パッケージ,パッケージ,1285,1285,24,-9.6832 -パット,パッと,1281,1281,247,-9.0989 -パット,ぱっと,1281,1281,247,-10.3541 -パトリック,パトリック,1291,1291,255,-9.8853 -パナソニック,パナソニック,1292,1292,378,-8.6225 -パナソニック,Panasonic,1292,1292,274,-10.3269 -パナマ,パナマ,1294,1294,272,-9.3293 -パネル,パネル,1285,1285,284,-10.2350 -パパ,パパ,1285,1285,51,-9.4914 -パフォーマンス,パフォーマンス,1285,1285,451,-9.5639 -パプアニューギニア,パプアニューギニア,1294,1294,272,-10.2042 -パラ,パラ,1289,1289,226,-9.9505 -パラオ,パラオ,1293,1293,410,-9.9744 -パラグアイ,パラグアイ,1294,1294,272,-9.7236 -パラパラ,パラパラ,1281,1281,412,-10.2293 -パリ,パリ,1293,1293,463,-6.9978 -パリーグ,パ・リーグ,1292,1292,310,-9.1423 -パル,パル,1292,1292,149,-10.1879 -パレスチナ,パレスチナ,1293,1293,326,-8.9737 -パレルモ,パレルモ,1290,1290,463,-10.0781 -パワー,パワー,1285,1285,351,-9.3941 -パン,パン,1285,1285,75,-9.0394 -パン,ぱん,1289,1289,437,-9.6719 -パンクラス,パンクラス,1292,1292,141,-10.1470 -パンチ,パンチ,1283,1283,211,-10.1114 -パンツ,パンツ,1285,1285,295,-10.2092 -パンデミック,パンデミック,1289,1289,192,-9.3773 -パーセント,パーセント,1300,1300,221,-10.0482 -パーソナリティ,パーソナリティ,1285,1285,409,-10.2354 -パーツ,パーツ,1285,1285,95,-9.7117 -パーティ,パーティ,1283,1283,451,-9.9889 -パーティー,パーティー,1285,1285,451,-10.1561 -パート,パート,1285,1285,283,-9.4285 -パートナー,パートナー,1285,1285,334,-9.3654 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヒ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヒ.csv deleted file mode 100644 index 725b1da..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヒ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ヒカクテキ,比較的,1281,1281,351,-7.0932 -ヒキ,引き,689,689,438,-6.4092 -ヒキイ,低い,19,19,48,-6.8393 -ヒキイル,率いる,619,619,146,-7.5921 -ヒキイロ,率いろ,623,623,146,-7.5675 -ヒキオコス,引き起こす,731,731,43,-7.4886 -ヒキオコセ,引き起こせ,734,734,43,-7.4812 -ヒキツギ,引き継ぎ,728,728,481,-5.7823 -ヒキツグ,引き継ぐ,723,723,481,-5.7924 -ヒキツゲ,引き継げ,726,726,481,-5.7160 -ヒク,引く,679,679,438,-6.3686 -ヒクイ,低い,19,19,48,-6.8393 -ヒクウ,低う,31,31,48,-6.2540 -ヒクカレ,低かれ,29,29,48,-6.2464 -ヒクキ,低き,21,21,48,-6.2467 -ヒクク,低く,35,35,48,-6.3295 -ヒクシ,低し,23,23,48,-6.2539 -ヒケ,引け,685,685,438,-6.3685 -ヒジョウ,非常,1287,1287,351,-6.3764 -ヒッ,引っ,559,559,60,-7.1431 -ヒツヨウ,必要,1287,1287,169,-4.9541 -ヒトガ,人が,1285,148,17,-7.5911 -ヒトツ,ひとつ,1314,1314,468,-6.5650 -ヒトツ,一つ,1285,1285,468,-7.2687 -ヒトリ,1人,1288,1288,334,-7.3926 -ヒドウ,酷う,31,31,48,-7.5472 -ヒドカレ,酷かれ,29,29,48,-7.5396 -ヒドキ,酷き,21,21,48,-7.5399 -ヒドク,酷く,35,35,48,-7.6227 -ヒドシ,酷し,23,23,48,-7.5471 -ヒハン,批判,1283,1283,133,-7.5487 -ヒビ,日々,1314,1314,161,-6.8360 -ヒャクパーセント,100%,1289,1289,286,-7.2859 -ヒョウカ,評価,1283,1283,375,-7.1251 -ヒョウゲン,表現,1283,1283,307,-7.2497 -ヒョウシ,評し,735,735,390,-7.5539 -ヒョウジ,表示,1283,1283,375,-7.5971 -ヒラキ,開き,689,689,471,-6.1060 -ヒラク,開く,679,679,471,-6.0654 -ヒラケ,開け,685,685,471,-6.0654 -ヒレエ,広え,19,19,471,-7.2772 -ヒロイ,広い,19,19,471,-7.2772 -ヒロウ,広う,31,31,471,-6.6919 -ヒロカレ,広かれ,29,29,471,-6.6843 -ヒロガル,広がる,772,772,471,-7.5714 -ヒロキ,広き,21,21,471,-6.6846 -ヒロク,広く,35,35,356,-6.5078 -ヒロシ,広し,23,23,471,-6.6918 -ヒロシマ,広島,1293,1293,473,-7.6084 -ヒン,ひん,511,511,331,-4.6703 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ビ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ビ.csv deleted file mode 100644 index 5bc6545..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ビ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ビキ,引き,1298,1298,60,-9.3936 -ビク,引く,695,695,438,-9.3867 -ビクター,ビクター,1292,1292,353,-9.4624 -ビクターエンタテインメント,ビクターエンタテインメント,1292,1292,353,-9.9512 -ビジネス,ビジネス,1285,1285,378,-8.5565 -ビジュアル,ビジュアル,1287,1287,322,-9.0708 -ビジュツ,美術,1285,1285,84,-9.4779 -ビジュツカン,美術館,1285,1285,229,-9.7857 -ビジン,美人,1285,1285,127,-9.8701 -ビスマルク,ビスマルク,1290,1290,446,-9.2782 -ビゼン,備前,1293,1293,464,-10.0369 -ビックリ,びっくり,1283,1283,17,-8.5135 -ビックリ,ビックリ,1283,1283,420,-9.5542 -ビックリシ,びっくりし,1283,610,17,-9.2793 -ビックリシタ,びっくりした,1283,435,17,-9.9041 -ビッチュウ,備中,1293,1293,464,-10.1176 -ビット,ビット,1300,1300,45,-7.9344 -ビット,bit,1300,1300,431,-9.3146 -ビデオ,ビデオ,1285,1285,24,-9.6180 -ビビリ,ビビり,788,788,418,-9.7932 -ビビル,ビビる,772,772,113,-9.7224 -ビビレ,ビビれ,784,784,113,-9.8788 -ビミ,美味,1287,1287,75,-9.5679 -ビミョウ,微妙,1287,1287,169,-7.9222 -ビョウイン,病院,1285,1285,402,-8.1781 -ビョウインデ,病院で,1285,149,17,-10.0298 -ビョウインニ,病院に,1285,151,17,-9.6874 -ビョウキ,病気,1283,1283,46,-8.1403 -ビョウシャ,描写,1283,1283,322,-8.6106 -ビョウドウ,平等,1287,1287,456,-8.4067 -ビヨウ,美容,1285,1285,402,-9.6444 -ビラキ,開き,1298,1298,258,-8.5173 -ビラキ,開き,1285,1285,258,-8.5173 -ビリー,ビリー,1291,1291,25,-9.4334 -ビル,ビル,1285,1285,414,-9.2252 -ビル,ビル,1291,1291,414,-10.0946 -ビルマ,ビルマ,1294,1294,240,-8.8469 -ビワコ,琵琶湖,1293,1293,385,-9.2991 -ビン,ビン,1292,1292,149,-9.7123 -ビンカン,敏感,1287,1287,169,-9.0606 -ビンボウ,貧乏,1287,1287,66,-9.1710 -ビーガタ,B型,1289,1289,14,-8.7928 -ビージーエム,BGM,1288,1288,478,-9.2950 -ビーズ,B'z,1289,1289,478,-9.6433 -ビーティーエス,BTS,1289,1289,87,-9.6541 -ビートタケシ,ビートたけし,1289,1289,409,-10.0719 -ビートルズ,ビートルズ,1292,1292,196,-8.2911 -ビーピー,BP,1292,1292,9,-9.9747 -ビール,ビール,1285,1285,75,-9.3326 -ビーワイ,by,1288,1288,367,-9.2206 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ピ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ピ.csv deleted file mode 100644 index 7d757d2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ピ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ピア,ぴあ,1292,1292,244,-9.8712 -ピア,ピア,1292,1292,347,-10.5095 -ピアス,ピアス,1285,1285,295,-10.6076 -ピアニスト,ピアニスト,1285,1285,98,-10.6766 -ピアノ,ピアノ,1285,1285,132,-9.1230 -ピエール,ピエール,1289,1289,329,-9.9306 -ピカソ,ピカソ,1290,1290,84,-9.6666 -ピカチュウ,ピカチュウ,1289,1289,26,-9.6841 -ピカピカ,ピカピカ,1281,1281,295,-10.5092 -ピサ,ピサ,1293,1293,463,-10.7196 -ピザ,ピザ,1285,1285,442,-10.7119 -ピスタチオ,ピスタチオ,1289,1289,391,-10.2987 -ピタパ,PiTaPa,1292,1292,118,-9.9582 -ピッ,ピッ,1282,1282,64,-10.3367 -ピックアップ,ピックアップ,1283,1283,64,-9.8887 -ピッタリ,ぴったり,1281,1281,48,-8.9416 -ピッタリ,ピッタリ,1281,1281,451,-9.0975 -ピッタリ,ぴったり,1287,1287,48,-9.8940 -ピッツバーグ,ピッツバーグ,1293,1293,138,-10.2830 -ピノ,ぴの,1289,1289,501,-10.2120 -ピノ,ピノ,1289,1289,203,-10.7693 -ピュア,ピュア,1287,1287,66,-10.0341 -ピョン,ぴょん,1281,1281,80,-10.4157 -ピョンヤン,平壌,1293,1293,117,-9.8168 -ピヨ,ぴよ,1289,1289,501,-10.1523 -ピラー,ピラー,1292,1292,95,-10.2473 -ピリ,ピリ,1289,1289,93,-10.5489 -ピリカ,ピリカ,1289,1289,184,-10.7225 -ピリピリ,ピリピリ,1282,1282,418,-10.3465 -ピロゲル,広げる,619,619,481,-10.7166 -ピン,ピン,1282,1282,64,-8.5632 -ピン,ピン,1285,1285,64,-10.6866 -ピンク,ピンク,1285,1285,242,-9.7027 -ピンクノ,ピンクの,1285,368,17,-10.5979 -ピント,ピンと,1282,328,17,-10.7371 -ピンポイント,ピンポイント,1289,1289,320,-9.7413 -ピー,ぴー,1281,1281,80,-9.5887 -ピーアール,PR,1288,1288,363,-9.5875 -ピーエス,PS,1288,1288,213,-9.8321 -ピーエスピー,PSP,1289,1289,296,-9.6265 -ピーエー,PA,1288,1288,20,-10.5806 -ピーク,ピーク,1285,1285,143,-10.3151 -ピーケー,PK,1288,1288,211,-10.7805 -ピーシー,PC,1288,1288,431,-8.4201 -ピーター,ピーター,1291,1291,255,-9.0110 -ピーディーエフ,PDF,1288,1288,431,-10.4938 -ピート,ピート,1291,1291,25,-10.1808 -ピーブイ,PV,1288,1288,478,-8.7840 -ピープル,ピープル,1292,1292,203,-10.5834 -ピーマン,ピーマン,1285,1285,75,-10.6773 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_フ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_フ.csv deleted file mode 100644 index 911043c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_フ.csv +++ /dev/null @@ -1,50 +0,0 @@ -フアン,不安,1287,1287,48,-6.4847 -フウ,ふう,1311,1311,437,-6.1557 -フエ,増え,625,625,249,-6.4174 -フエル,増える,619,619,471,-6.7094 -フエロ,増えろ,623,623,471,-6.6848 -フォロー,フォロー,1283,1283,451,-7.3944 -フカイ,深い,19,19,307,-7.2476 -フカウ,深う,31,31,307,-6.6623 -フカカレ,深かれ,29,29,307,-6.6548 -フカキ,深き,21,21,307,-6.6550 -フカク,深く,35,35,307,-6.7287 -フカシ,深し,23,23,307,-6.6623 -フクオカ,福岡,1293,1293,473,-7.4273 -フクザツ,複雑,1287,1287,169,-7.4416 -フクミ,含み,767,767,481,-4.7257 -フクミ,含み,1285,1285,258,-4.9821 -フクム,含む,762,762,481,-4.6888 -フクメ,含め,765,765,481,-4.6848 -フクメ,含め,625,625,258,-6.7337 -フクメル,含める,619,619,481,-7.3619 -フクメロ,含めろ,623,623,481,-7.3373 -フケエ,深え,19,19,307,-7.2476 -フシギ,不思議,1287,1287,66,-7.2024 -フジテレビ,フジテレビ,1292,1292,305,-7.2323 -フセギ,防ぎ,728,728,43,-5.9717 -フセグ,防ぐ,723,723,43,-5.2692 -フタタビ,再び,1282,1282,282,-6.1779 -フタリ,2人,1288,1288,25,-7.2452 -フダン,普段,1314,1314,48,-6.8898 -フツウ,普通,1287,1287,468,-5.8582 -フミ,踏み,767,767,60,-7.3360 -フム,踏む,762,762,379,-7.3103 -フメ,踏め,765,765,379,-7.3063 -フメイ,不明,1287,1287,468,-7.1432 -フヤシ,増やし,735,735,258,-6.6056 -フヤス,増やす,731,731,481,-6.5336 -フヤセ,増やせ,734,734,481,-6.5262 -フランス,フランス,1294,1294,463,-5.4659 -フリイ,古い,19,19,94,-7.4320 -フリウ,古う,31,31,94,-6.8468 -フリカレ,古かれ,29,29,94,-6.8392 -フリキ,古き,21,21,94,-6.8394 -フリク,古く,35,35,94,-6.9223 -フリシ,古し,23,23,94,-6.8467 -フルイ,古い,19,19,94,-7.4320 -フルウ,古う,31,31,94,-6.8468 -フルカレ,古かれ,29,29,94,-6.8392 -フルキ,古き,21,21,94,-6.8394 -フルク,古く,35,35,94,-6.9223 -フルシ,古し,23,23,94,-6.8467 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ブ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ブ.csv deleted file mode 100644 index 1ffb791..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ブ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ブアチカレ,分厚かれ,29,29,60,-9.4433 -ブキ,武器,1285,1285,190,-8.7423 -ブキヨウ,不器用,1287,1287,66,-9.2866 -ブクミ,含み,1285,1285,258,-8.0590 -ブジ,無事,1287,1287,282,-7.3856 -ブタイ,舞台,1285,1285,322,-8.2820 -ブタイ,部隊,1285,1285,53,-8.3423 -ブチ,ぶち,559,559,437,-5.5223 -ブチ,ぶち,743,743,437,-8.0929 -ブッ,ぶっ,559,559,420,-4.4579 -ブッシツ,物質,1285,1285,355,-9.3387 -ブツ,ぶつ,738,738,331,-8.2145 -ブツカリ,ぶつかり,788,788,91,-9.3871 -ブツカル,ぶつかる,772,772,471,-9.3283 -ブツケ,ぶつけ,625,625,276,-9.1274 -ブツケル,ぶつける,619,619,379,-9.3250 -ブツケロ,ぶつけろ,623,623,379,-9.3004 -ブナン,無難,1287,1287,66,-9.1413 -ブブン,部分,1285,1285,284,-7.3728 -ブブンガ,部分が,1285,148,17,-9.4398 -ブモン,部門,1285,1285,378,-8.6495 -ブライアン,ブライアン,1291,1291,255,-8.8629 -ブラジル,ブラジル,1294,1294,240,-7.1582 -ブランディング,ブランディング,1292,1292,378,-8.4269 -ブランド,ブランド,1285,1285,274,-8.4921 -ブリ,ぶり,1298,1298,143,-7.5456 -ブル,ブル,1290,1290,149,-9.3389 -ブルガリア,ブルガリア,1294,1294,19,-8.1886 -ブルース,ブルース,1291,1291,196,-9.3008 -ブレ,ブレ,1289,1289,48,-9.3061 -ブレイク,ブレイク,1289,1289,478,-9.2456 -ブログ,ブログ,1288,1288,363,-8.0450 -ブロック,ブロック,1285,1285,283,-8.9476 -ブンカ,文化,1285,1285,88,-8.1503 -ブンカイ,分解,1283,1283,174,-9.1889 -ブンカツ,分割,1283,1283,375,-8.8374 -ブンカホウソウ,文化放送,1292,1292,305,-8.8983 -ブンガク,文学,1285,1285,323,-9.2672 -ブンキ,分岐,1283,1283,469,-9.2403 -ブンキュウ,文久,1293,1293,21,-9.1139 -ブンゲイシュンジュウ,文藝春秋,1292,1292,136,-8.1453 -ブンショ,文書,1285,1285,59,-9.2298 -ブンショウ,文章,1285,1285,59,-8.0260 -ブンセキ,分析,1283,1283,239,-8.0741 -ブンノ,分の,1300,1300,454,-8.4557 -ブンプ,分布,1283,1283,381,-8.6644 -ブンヤ,分野,1285,1285,239,-8.4486 -ブンリ,分離,1283,1283,375,-8.7293 -ブンルイ,分類,1283,1283,375,-7.6546 -ブンレツ,分裂,1283,1283,182,-9.3901 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_プ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_プ.csv deleted file mode 100644 index 0a16a90..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_プ.csv +++ /dev/null @@ -1,50 +0,0 @@ -プエルトリコ,プエルトリコ,1294,1294,272,-9.3652 -プサン,釜山,1293,1293,117,-9.4775 -プジョー,プジョー,1292,1292,168,-9.9444 -プチ,プチ,1289,1289,244,-9.4446 -プライド,PRIDE,1292,1292,250,-9.0935 -プライド,プライド,1285,1285,127,-10.3845 -プライベート,プライベート,1287,1287,324,-10.0217 -プライベート,プライベート,1285,1285,324,-10.1108 -プラス,プラス,1285,1285,315,-9.3401 -プラスチック,プラスチック,1285,1285,270,-10.4251 -プラットフォーム,プラットフォーム,1285,1285,315,-9.7207 -プラトン,プラトン,1289,1289,88,-9.5030 -プラハ,プラハ,1293,1293,463,-9.3221 -プラン,プラン,1285,1285,118,-9.5841 -プリキュア,プリキュア,1288,1288,26,-10.3757 -プリン,プリン,1285,1285,75,-10.0912 -プリンストンダイガク,プリンストン大学,1292,1292,314,-10.0392 -プリント,プリント,1283,1283,445,-10.1371 -プレ,プレ,1292,1292,203,-8.4646 -プレイ,プレイ,1288,1288,283,-8.4249 -プレイヤー,プレイヤー,1285,1285,283,-9.0361 -プレゼン,プレゼン,1283,1283,451,-10.1046 -プレゼント,プレゼント,1283,1283,445,-8.3150 -プレゼントシ,プレゼントし,1283,610,17,-10.5267 -プレー,プレー,1283,1283,198,-8.7294 -プレーオフ,プレーオフ,1285,1285,178,-10.4041 -プレート,プレート,1285,1285,304,-10.2662 -プロ,プロ,1285,1285,334,-8.4629 -プロイセン,プロイセン,1293,1293,446,-8.5889 -プロイリ,プロ入り,1288,1288,306,-9.9809 -プログラミング,プログラミング,1283,1283,431,-9.3572 -プログラム,プログラム,1283,1283,431,-8.3129 -プロジェクト,プロジェクト,1285,1285,294,-8.5470 -プロセス,プロセス,1285,1285,431,-9.5126 -プロダクト,プロダクト,1285,1285,431,-10.3314 -プロテスタント,プロテスタント,1288,1288,325,-9.9118 -プロデューサー,プロデューサー,1285,1285,324,-9.3763 -プロデュース,プロデュース,1283,1283,196,-9.2477 -プロノ,プロの,1285,368,17,-10.1126 -プロフ,プロフ,1288,1288,152,-10.3341 -プロフィール,プロフィール,1285,1285,363,-9.4120 -プロモーション,プロモーション,1285,1285,478,-10.4818 -プロヤキュウ,プロ野球,1288,1288,316,-9.2901 -プロヤキュウセンシュ,プロ野球選手,1288,1288,372,-9.6201 -プロレス,プロレス,1285,1285,141,-10.2516 -プロレスリングノア,プロレスリング・ノア,1292,1292,141,-10.5029 -プロヴァンス,プロヴァンス,1293,1293,34,-10.3856 -プー,ぷー,1281,1281,80,-10.3950 -プーサン,プーさん,1289,1289,415,-10.2287 -プール,プール,1285,1285,414,-10.1079 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヘ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヘ.csv deleted file mode 100644 index 57e19ec..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヘ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ヘイアンジダイ,平安時代,1288,1288,94,-9.4693 -ヘイキ,平気,1287,1287,17,-9.2587 -ヘイキン,平均,1283,1283,248,-7.8584 -ヘイコウ,並行,1283,1283,182,-9.1741 -ヘイサ,閉鎖,1283,1283,494,-8.9081 -ヘイジツ,平日,1314,1314,305,-7.5098 -ヘイセイ,平成,1288,1288,386,-9.5139 -ヘイセツ,併設,1283,1283,375,-9.4878 -ヘイホウキロメートル,平方キロメートル,1300,1300,221,-9.2308 -ヘイホウメートル,平方メートル,1300,1300,221,-8.8220 -ヘイワ,平和,1287,1287,388,-7.5493 -ヘェ,へぇ,3,3,244,-8.6890 -ヘエ,へえ,3,3,150,-9.3697 -ヘクタール,ヘクタール,1300,1300,221,-8.9442 -ヘコミ,凹み,767,767,304,-8.6078 -ヘコム,凹む,762,762,29,-8.6062 -ヘコメ,凹め,765,765,29,-8.6022 -ヘタ,下手,1287,1287,17,-7.8841 -ヘタクソ,下手くそ,1287,1287,66,-9.5049 -ヘッ,へっ,3,3,420,-9.1703 -ヘテ,経て,625,307,17,-9.2379 -ヘト,へと,154,164,17,-8.9467 -ヘノ,への,154,368,17,-7.4988 -ヘヘ,へへ,3,3,501,-9.2528 -ヘヤ,部屋,1285,1285,290,-8.0563 -ヘラシ,減らし,735,735,258,-7.2544 -ヘラス,減らす,731,731,43,-7.0832 -ヘラセ,減らせ,734,734,43,-7.0758 -ヘリ,減り,788,788,471,-7.8338 -ヘル,経る,619,619,481,-7.5513 -ヘル,減る,772,772,471,-7.6662 -ヘレ,減れ,784,784,471,-7.8225 -ヘロ,経ろ,623,623,481,-7.5267 -ヘン,へん,512,512,437,-4.0467 -ヘンカ,変化,1283,1283,182,-7.2531 -ヘンカン,変換,1283,1283,45,-8.8547 -ヘンコウ,変更,1283,1283,375,-6.9031 -ヘンシュウ,編集,1283,1283,59,-8.1559 -ヘンシュウシャ,編集者,1288,1288,201,-9.3908 -ヘンシュウブ,編集部,1289,1289,201,-8.1972 -ヘンシン,返信,1285,1285,445,-9.2279 -ヘンシン,変身,1283,1283,26,-9.4360 -ヘンジ,返事,1283,1283,17,-9.1614 -ヘンセイ,編成,1283,1283,375,-7.7215 -ヘンセン,変遷,1283,1283,182,-9.4560 -ヘンドウ,変動,1283,1283,182,-9.4606 -ヘンナ,変な,1287,454,17,-8.8605 -ヘンニュウ,編入,1283,1283,375,-8.9250 -ヘンリー,ヘンリー,1290,1290,255,-8.4977 -ヘー,へー,3,3,293,-8.8450 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ベ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ベ.csv deleted file mode 100644 index 45ab10b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ベ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ベイグン,米軍,1288,1288,53,-9.7059 -ベイコク,米国,1294,1294,181,-6.3393 -ベオグラード,ベオグラード,1293,1293,463,-10.1967 -ベキ,べき,539,539,468,-2.9960 -ベキカ,べきか,539,359,17,-9.8882 -ベキコト,べきこと,539,1310,17,-10.1425 -ベキダ,べきだ,539,453,17,-9.5231 -ベキダト,べきだと,539,164,17,-10.0565 -ベキデ,べきで,539,458,17,-9.7344 -ベキデス,べきです,539,460,17,-9.8972 -ベキデハ,べきでは,539,261,17,-10.2358 -ベク,べく,541,541,282,-3.2624 -ベシ,べし,538,538,495,-3.3088 -ベジータ,ベジータ,1289,1289,26,-10.0113 -ベスト,Best,1289,1289,367,-9.5347 -ベスト,ベスト,1285,1285,318,-9.6880 -ベスト,BEST,1289,1289,40,-9.7717 -ベタ,下手,1283,1283,17,-9.1923 -ベット,別途,1282,1282,118,-8.7427 -ベッド,ベッド,1285,1285,290,-9.6521 -ベップ,別府,1293,1293,473,-9.6420 -ベツニ,別に,1281,1281,468,-6.7859 -ベツニ,別に,1285,151,17,-9.5997 -ベツニ,べつに,1281,1281,486,-10.1919 -ベツノ,別の,1285,368,17,-8.6385 -ベツベツ,別々,1287,1287,468,-8.8420 -ベツメイ,別名,1285,1285,429,-10.0182 -ベトナム,ベトナム,1294,1294,240,-7.3643 -ベネズエラ,ベネズエラ,1294,1294,272,-8.9241 -ベネット,ベネット,1290,1290,255,-10.2068 -ベラルーシ,ベラルーシ,1294,1294,19,-9.2720 -ベル,ベル,1290,1290,149,-9.8943 -ベルギー,ベルギー,1294,1294,463,-7.6614 -ベルク,ベルク,1289,1289,463,-9.8578 -ベルリン,ベルリン,1293,1293,463,-8.0437 -ベン,ベン,1291,1291,255,-10.1023 -ベンキョウ,勉強,1283,1283,364,-7.2357 -ベンキョウシ,勉強し,1283,610,17,-9.1763 -ベンキョウシテ,勉強して,1283,307,17,-9.6853 -ベンキョウスル,勉強する,1283,599,17,-10.1919 -ベンキョウニ,勉強に,1283,151,17,-9.8467 -ベンキョウヲ,勉強を,1283,156,17,-10.0484 -ベンギジョウ,便宜上,1281,1281,327,-9.7493 -ベンゴシ,弁護士,1285,1285,38,-9.4047 -ベントウ,弁当,1285,1285,442,-9.4430 -ベントウバコ,弁当箱,1289,1289,270,-10.2025 -ベンリ,便利,1287,1287,169,-7.5690 -ベース,ベース,1285,1285,168,-8.5806 -ベース,BASE,1289,1289,40,-9.6323 -ベートーヴェン,ベートーヴェン,1290,1290,416,-8.8101 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ペ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ペ.csv deleted file mode 100644 index a9dc34c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ペ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ペア,ペア,1285,1285,7,-10.0915 -ペイジ,ペイジ,1289,1289,255,-10.7094 -ペイペイ,PayPay,1288,1288,501,-10.2581 -ペキン,北京,1293,1293,346,-8.3210 -ペキンオリンピック,北京オリンピック,1288,1288,428,-11.1319 -ペキンダイガク,北京大学,1293,1293,187,-11.2726 -ペコ,ぺこ,1289,1289,150,-11.3904 -ペソ,ペソ,1300,1300,163,-11.0698 -ペダル,ペダル,1285,1285,64,-11.3720 -ペット,ペット,1285,1285,499,-9.8288 -ペットショップ,ペットショップ,1288,1288,442,-11.3390 -ペットボトル,ペットボトル,1285,1285,75,-10.9801 -ペデストリアンデッキ,ペデストリアンデッキ,1293,1293,469,-10.7525 -ペトロ,ペトロ,1289,1289,199,-10.7400 -ペドロ,ペドロ,1289,1289,329,-10.4585 -ペナルティ,ペナルティ,1285,1285,283,-11.3754 -ペナン,ペナン,1293,1293,410,-11.1687 -ペラペラ,ペラペラ,1281,1281,418,-10.4085 -ペリー,ペリー,1290,1290,417,-10.0020 -ペルシア,ペルシア,1289,1289,359,-9.3722 -ペルシャ,ペルシャ,1293,1293,359,-10.2047 -ペルセウス,ペルセウス,1289,1289,222,-11.3620 -ペルソナ,ペルソナ,1292,1292,89,-9.7583 -ペルー,ペルー,1294,1294,272,-8.5861 -ペレ,ペレ,1290,1290,334,-10.2915 -ペレス,ペレス,1290,1290,62,-10.8460 -ペレット,ペレット,1289,1289,270,-10.9699 -ペロ,ペロ,1289,1289,462,-11.2541 -ペロペロ,ペロペロ,1281,1281,501,-10.9591 -ペロペロ,ぺろぺろ,1281,1281,501,-11.1267 -ペロリ,ペロリ,1292,1292,41,-11.0680 -ペン,ペン,1285,1285,64,-10.0408 -ペン,ぺん,1300,1300,80,-10.1388 -ペンギン,ペンギン,1285,1285,499,-11.2971 -ペンサコーラ,ペンサコーラ,1289,1289,138,-11.1852 -ペンシルベニア,ペンシルベニア,1293,1293,138,-10.1926 -ペンシルベニアシュウ,ペンシルベニア州,1288,1288,138,-10.7841 -ペンス,ペンス,1300,1300,454,-11.3278 -ペンテル,ぺんてる,1292,1292,105,-10.4978 -ペンネーム,ペンネーム,1285,1285,324,-10.9680 -ペー,ぺー,1281,1281,150,-10.9542 -ページ,ページ,1300,1300,445,-7.4138 -ページ,ページ,1285,1285,445,-8.7116 -ページニ,ページに,1285,151,17,-10.8641 -ページノ,ページの,1285,368,17,-11.1269 -ページヲ,ページを,1285,156,17,-10.6167 -ペース,ペース,1285,1285,63,-9.5206 -ペースデ,ペースで,1285,149,17,-10.1395 -ペーハー,pH,1288,1288,405,-11.0805 -ペーパー,ペーパー,1285,1285,139,-11.3267 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ホ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ホ.csv deleted file mode 100644 index 713baf0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ホ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ホウ,ほう,1310,1310,48,-6.3934 -ホウガ,方が,1310,148,17,-7.0293 -ホウコク,報告,1283,1283,375,-7.7018 -ホウソウ,放送,1283,1283,305,-6.5502 -ホウソウキョク,放送局,1292,1292,305,-7.8881 -ホウフ,豊富,1287,1287,169,-7.9426 -ホウホウ,方法,1285,1285,468,-7.3292 -ホカ,ほか,1314,1314,414,-5.9460 -ホシ,ほし,133,133,437,-3.9271 -ホシ,欲し,133,133,427,-4.0865 -ホシ,ほし,45,45,17,-5.1178 -ホシ,ほし,39,39,17,-5.1926 -ホシ,欲し,45,45,17,-5.2789 -ホシ,欲し,39,39,17,-5.3537 -ホシイ,ほしい,137,137,17,-3.5786 -ホシイ,欲しい,137,137,17,-3.7361 -ホシイ,欲しい,43,43,17,-5.9561 -ホシイ,ほしい,43,43,17,-7.4015 -ホシイ〜,欲しい〜,43,43,17,-6.8413 -ホシイッ,欲しいっ,43,43,17,-6.8219 -ホシイー,欲しいー,43,43,17,-6.8453 -ホシカレ,ほしかれ,48,48,17,-5.1004 -ホシカレ,欲しかれ,48,48,17,-5.2614 -ホシキ,ほしき,44,44,17,-5.1009 -ホシキ,欲しき,44,44,17,-5.2620 -ホシク,ほしく,145,145,247,-4.6321 -ホシク,欲しく,145,145,247,-4.6553 -ホシク,ほしく,51,51,17,-5.2628 -ホシク,欲しく,51,51,17,-5.4239 -ホシュウ,ほしゅう,49,49,17,-5.1004 -ホシュウ,欲しゅう,49,49,17,-5.2614 -ホソカレ,細かれ,29,29,333,-7.9904 -ホソキ,細き,21,21,333,-7.9907 -ホッカイドウ,北海道,1293,1293,397,-6.6702 -ホトンド,ほとんど,1281,1281,468,-5.8029 -ホド,ほど,354,354,48,-2.8635 -ホドコシ,施し,735,735,258,-7.5089 -ホドコス,施す,731,731,481,-7.6524 -ホドコセ,施せ,734,734,481,-7.6451 -ホボ,ほぼ,1281,1281,468,-6.0059 -ホメ,褒め,625,625,301,-7.9402 -ホラ,ほら,3,3,420,-7.3030 -ホンコン,香港,1293,1293,240,-7.5352 -ホンジツ,本日,1314,1314,244,-7.0533 -ホント,ほんと,3,3,80,-5.9021 -ホントウニ,本当に,1281,1281,17,-5.3073 -ホントウハ,本当は,1281,1281,17,-7.8209 -ホントニ,ほんとに,1281,1281,244,-7.0260 -ホンノ,ほんの,1315,1315,143,-7.9844 -ホンライ,本来,1314,1314,468,-6.9280 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ボ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ボ.csv deleted file mode 100644 index f241d1a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ボ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ボウエイ,防衛,1283,1283,53,-8.9587 -ボウエイショウ,防衛省,1289,1289,265,-9.6518 -ボウエイチョウ,防衛庁,1292,1292,265,-9.9217 -ボウエキ,貿易,1283,1283,79,-9.2355 -ボウガイ,妨害,1283,1283,133,-9.8097 -ボウギョ,防御,1283,1283,411,-9.1859 -ボウギョリツ,防御率,1288,1288,377,-9.6487 -ボウケン,冒険,1283,1283,212,-9.5339 -ボウシ,防止,1283,1283,174,-8.9744 -ボウダイ,膨大,1287,1287,169,-8.7612 -ボウトウ,冒頭,1285,1285,451,-9.4869 -ボウメイ,亡命,1283,1283,271,-9.7453 -ボウリョク,暴力,1285,1285,216,-9.6251 -ボク,ぼく,1306,1306,420,-6.9873 -ボク,ボク,1306,1306,51,-8.1149 -ボクガ,僕が,1306,148,17,-9.0044 -ボクニ,僕に,1306,151,17,-9.7833 -ボクノ,僕の,1306,368,17,-8.7359 -ボクハ,僕は,1306,261,17,-8.2325 -ボクハ,ぼくは,1306,261,17,-9.8556 -ボクモ,僕も,1306,262,17,-9.0592 -ボクラ,僕ら,1306,1306,17,-8.3311 -ボシュウ,募集,1283,1283,375,-8.1732 -ボシュウシ,募集し,1283,610,17,-9.8400 -ボシュウチュウ,募集中,1288,1288,479,-9.3049 -ボス,ボス,1285,1285,26,-9.8447 -ボストン,ボストン,1293,1293,138,-8.7529 -ボスニアヘルツェゴビナ,ボスニア・ヘルツェゴビナ,1294,1294,19,-9.6482 -ボタン,ボタン,1285,1285,283,-9.0466 -ボチボチ,ぼちぼち,1281,1281,501,-9.5912 -ボッカイ,渤海,1290,1290,135,-9.7166 -ボッサ,没さ,586,586,46,-7.8195 -ボッシ,没し,735,735,46,-8.2997 -ボッシロ,没しろ,588,588,46,-7.7401 -ボッス,没す,584,584,46,-7.7480 -ボッス,没す,731,731,46,-9.0996 -ボッスル,没する,583,583,46,-7.7438 -ボッセ,没せ,734,734,46,-9.0922 -ボッパツ,勃発,1283,1283,298,-9.3545 -ボツゴ,没後,1314,1314,323,-9.4590 -ボディ,ボディ,1285,1285,95,-9.8879 -ボブ,ボブ,1291,1291,255,-8.8708 -ボヘミア,ボヘミア,1293,1293,446,-9.9032 -ボリシェヴィキ,ボリシェヴィキ,1292,1292,326,-9.5945 -ボリビア,ボリビア,1294,1294,272,-9.1842 -ボル,ぼる,772,772,36,-9.9214 -ボン,ボン,1293,1293,149,-9.4708 -ボンヤリ,ぼんやり,1281,1281,471,-9.7984 -ボーイング,ボーイング,1292,1292,413,-9.1591 -ボール,ボール,1285,1285,211,-9.1961 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ポ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ポ.csv deleted file mode 100644 index 643bdfc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ポ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ポアロ,ポアロ,1289,1289,51,-10.7968 -ポイ,ぽい,66,66,80,-5.1908 -ポイ,ポイ,1281,1281,93,-10.3720 -ポイント,ポイント,1300,1300,283,-8.0003 -ポイント,ポイント,1285,1285,283,-8.2808 -ポイントガ,ポイントが,1285,148,17,-10.3674 -ポイントハ,ポイントは,1285,261,17,-10.4894 -ポイントヲ,ポイントを,1285,156,17,-10.4049 -ポウ,ぽう,84,84,331,-5.0820 -ポカポカ,ポカポカ,1281,1281,501,-10.6165 -ポカポカ,ぽかぽか,1281,1281,501,-10.6916 -ポキ,ぽき,69,69,80,-4.1754 -ポク,ぽく,90,90,150,-5.0951 -ポケット,ポケット,1285,1285,64,-10.3407 -ポケモン,ポケモン,1288,1288,26,-9.1260 -ポジション,ポジション,1285,1285,198,-9.2899 -ポジティブ,ポジティブ,1287,1287,66,-8.4638 -ポジティブナ,ポジティブな,1287,454,17,-10.7412 -ポスター,ポスター,1285,1285,445,-10.1550 -ポスト,ポスト,1285,1285,215,-10.1002 -ポチ,ぽち,1281,1281,54,-10.7993 -ポチット,ポチッと,1281,1281,501,-10.9291 -ポップ,POP,1289,1289,40,-9.9369 -ポップ,ポップ,1287,1287,412,-10.3933 -ポップ,ポップ,1285,1285,412,-10.7905 -ポテチ,ポテチ,1289,1289,501,-10.0044 -ポニーキャニオン,ポニーキャニオン,1292,1292,353,-9.5446 -ポピュラー,ポピュラー,1287,1287,169,-10.6438 -ポプラシャ,ポプラ社,1292,1292,136,-10.2012 -ポリゴン,ポリゴン,1289,1289,431,-10.5102 -ポリドール,ポリドール,1292,1292,353,-10.5219 -ポリネシア,ポリネシア,1293,1293,240,-10.5052 -ポルシェ,ポルシェ,1292,1292,168,-8.9762 -ポルトガル,ポルトガル,1294,1294,240,-7.6540 -ポロポロ,ポロポロ,1282,1282,501,-10.7469 -ポン,ぽん,1282,1282,437,-8.8727 -ポン,ポン,1289,1289,203,-9.2844 -ポンド,ポンド,1300,1300,221,-8.1033 -ポンポン,ポンポン,1281,1281,60,-10.9289 -ポー,ポー,1293,1293,255,-9.8786 -ポーズ,ポーズ,1283,1283,451,-9.7110 -ポーツマス,ポーツマス,1293,1293,138,-10.2939 -ポート,ポート,1285,1285,64,-10.7156 -ポートフォリオ,ポートフォリオ,1285,1285,286,-10.8852 -ポートランド,ポートランド,1292,1292,138,-9.3942 -ポーラ,ポーラ,1291,1291,25,-10.5921 -ポーランド,ポーランド,1294,1294,446,-7.1611 -ポール,ポール,1291,1291,255,-8.8008 -ポール,Paul,1289,1289,151,-10.1403 -ポールマッカートニー,ポール・マッカートニー,1289,1289,196,-10.4720 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_マ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_マ.csv deleted file mode 100644 index 00d46c3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_マ.csv +++ /dev/null @@ -1,50 +0,0 @@ -マァ,まぁ,3,3,420,-5.5918 -マア,まあ,1281,1281,420,-6.3591 -マイ,まい,513,513,437,-4.0304 -マイトシ,毎年,1314,1314,224,-7.1196 -マイニチ,毎日,1292,1292,290,-6.0281 -マイニチ,毎日,1314,1314,290,-6.1434 -マイリ,まいり,1201,1201,420,-4.2280 -マイリ,参り,1205,1205,32,-4.3253 -マイル,まいる,1097,1097,420,-4.5846 -マイル,参る,1101,1101,32,-4.6658 -マウ,まう,1252,1252,437,-5.6214 -マクリ,まくり,1195,1195,60,-3.9195 -マクル,まくる,1091,1091,451,-5.5286 -マクレ,まくれ,1169,1169,60,-3.9305 -マシ,まし,501,501,17,-2.0043 -マシ,まし,499,499,17,-2.1355 -マシタ,ました,501,435,17,-5.7646 -マジ,まじ,543,543,437,-3.9324 -マジキ,まじき,544,544,252,-4.2703 -マス,ます,491,491,17,-1.8643 -マスガ,ますが,491,299,17,-7.0677 -マズ,まず,1281,1281,282,-6.2019 -マズハ,まずは,555,555,282,-6.4205 -マセ,ませ,497,497,17,-2.1344 -マセン,ません,495,515,17,-6.3590 -マタ,また,555,555,468,-3.4936 -マタ,また,1282,1282,468,-6.3801 -マタハ,または,556,556,327,-4.1089 -マタハ,又は,556,556,455,-5.8352 -マダ,まだ,1282,1282,468,-5.0647 -マダマダ,まだまだ,1282,1282,48,-6.7629 -マチ,待ち,743,743,438,-5.2557 -マチガイ,間違い,1284,1284,468,-5.0633 -マッタク,全く,1282,1282,468,-5.7421 -マッタク,まったく,1282,1282,468,-6.9586 -マツ,待つ,738,738,438,-5.2576 -マテ,待て,741,741,438,-5.2298 -マデ,まで,355,355,143,-2.3294 -マトメ,まとめ,625,625,52,-7.0102 -マナビ,学び,759,759,481,-4.9071 -マナブ,学ぶ,754,754,481,-4.9043 -マナベ,学べ,757,757,481,-4.9031 -ママ,まま,1313,1313,282,-5.5051 -マモル,守る,772,772,438,-7.0651 -マワシ,回し,735,735,155,-7.0899 -マワセ,回せ,734,734,379,-7.1416 -マワリ,回り,1204,1204,60,-4.3967 -マワリ,まわり,1202,1202,60,-4.7090 -マワル,回る,1100,1100,471,-4.3272 -マワル,まわる,1098,1098,471,-4.6491 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ミ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ミ.csv deleted file mode 100644 index 8631194..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ミ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ミエ,見え,625,625,268,-6.3291 -ミエル,見える,619,619,471,-6.1397 -ミエロ,見えろ,623,623,471,-6.1151 -ミガク,磨く,679,679,379,-7.8764 -ミガケ,磨け,685,685,379,-7.8764 -ミジカイ,短い,19,19,471,-7.4823 -ミジカウ,短う,31,31,471,-6.8970 -ミジカカレ,短かれ,29,29,471,-6.8894 -ミジカキ,短き,21,21,471,-6.8897 -ミジカク,短く,35,35,471,-6.9725 -ミジカシ,短し,23,23,471,-6.8969 -ミジケエ,短え,19,19,471,-7.4823 -ミズカラ,自ら,1314,1314,252,-6.5828 -ミセ,見せ,625,625,258,-6.8171 -ミセル,見せる,619,619,438,-7.0518 -ミセロ,見せろ,623,623,438,-7.0272 -ミタイ,みたい,1311,1311,66,-2.8295 -ミタイナ,みたいな,1311,454,17,-7.4749 -ミタシ,満たし,735,735,481,-7.1590 -ミタス,満たす,731,731,481,-6.9085 -ミタセ,満たせ,734,734,481,-6.9011 -ミチビキ,導き,689,689,481,-7.4265 -ミチビク,導く,679,679,481,-7.3859 -ミチビケ,導け,685,685,481,-7.3859 -ミチユク,道行く,711,711,290,-6.1565 -ミツケ,見つけ,625,625,276,-7.1095 -ミツケル,見つける,619,619,438,-7.3663 -ミツケロ,見つけろ,623,623,438,-7.3417 -ミテ,見て,625,307,17,-7.0949 -ミトメ,認め,625,625,52,-6.9907 -ミトメル,認める,619,619,481,-6.9637 -ミトメロ,認めろ,623,623,481,-6.9391 -ミナオス,見直す,731,731,481,-7.9165 -ミナオセ,見直せ,734,734,481,-7.9092 -ミナサン,みなさん,1306,1306,17,-7.0321 -ミナシ,みなし,735,735,390,-7.8957 -ミナス,みなす,731,731,481,-7.7621 -ミナセ,みなせ,734,734,481,-7.7547 -ミル,見る,619,619,481,-4.8362 -ミル,みる,919,919,471,-5.2297 -ミル,みる,619,619,471,-6.9304 -ミル,観る,619,619,438,-7.4127 -ミレル,見れる,619,619,244,-7.8170 -ミレロ,見れろ,623,623,244,-7.7924 -ミロ,見ろ,623,623,481,-4.8116 -ミロ,みろ,926,926,17,-4.9723 -ミロ,みろ,623,623,471,-6.9058 -ミロ,観ろ,623,623,438,-7.3881 -ミンシュトウ,民主党,1292,1292,125,-7.3795 -ミンナ,みんな,1306,1306,17,-5.4329 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ム.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ム.csv deleted file mode 100644 index 42fac62..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ム.csv +++ /dev/null @@ -1,50 +0,0 @@ -ムカイ,向かい,832,832,271,-6.0448 -ムカウ,向かう,817,817,271,-6.0013 -ムカエ,向かえ,826,826,271,-5.9955 -ムカエ,迎え,625,625,258,-7.0279 -ムカエル,迎える,619,619,258,-7.2837 -ムカエロ,迎えろ,623,623,258,-7.2591 -ムカツキ,ムカつき,689,689,501,-8.5311 -ムカツク,ムカつく,679,679,501,-8.4905 -ムカツケ,ムカつけ,685,685,501,-8.4905 -ムカンケイ,無関係,1287,1287,468,-8.7001 -ムキ,向き,689,689,379,-7.2190 -ムキ,むき,689,689,4,-8.8047 -ムキアイ,向き合い,832,832,438,-7.3323 -ムキアウ,向き合う,817,817,438,-7.2888 -ムキアエ,向き合え,826,826,438,-7.2831 -ムク,向く,679,679,379,-7.1784 -ムク,むく,679,679,437,-8.8147 -ムケ,向け,1298,1298,442,-6.5857 -ムケ,向け,625,625,442,-6.9061 -ムケ,向け,685,685,379,-7.1784 -ムケル,向ける,619,619,471,-7.4746 -ムケロ,向けろ,623,623,471,-7.4500 -ムコウ,無効,1287,1287,455,-8.6841 -ムシ,無視,1283,1283,133,-8.3979 -ムシ,蒸し,735,735,75,-8.7853 -ムシロ,むしろ,1281,1281,468,-6.8309 -ムスコ,息子,1285,1285,97,-7.8995 -ムスビ,結び,759,759,481,-5.0397 -ムスビツキ,結びつき,689,689,43,-8.5220 -ムスビツク,結びつく,679,679,43,-8.4814 -ムスビツケ,結びつけ,685,685,43,-8.4814 -ムスブ,結ぶ,754,754,481,-5.0369 -ムスベ,結べ,757,757,481,-5.0357 -ムズカシ,難し,45,45,468,-5.0699 -ムズカシ,難し,39,39,468,-5.1447 -ムズカシイ,難しい,43,43,468,-5.3347 -ムズカシイ〜,難しい〜,43,43,468,-6.2488 -ムズカシイッ,難しいっ,43,43,468,-6.2455 -ムズカシカレ,難しかれ,48,48,468,-5.0524 -ムズカシキ,難しき,44,44,468,-5.0530 -ムズカシク,難しく,51,51,468,-5.2148 -ムズカシュウ,難しゅう,49,49,468,-5.0524 -ムダ,無駄,1287,1287,169,-7.3523 -ムチュウ,夢中,1287,1287,161,-8.5985 -ムラカミ,村上,1290,1290,344,-8.4157 -ムラダチ,群だち,844,844,501,-6.8219 -ムラダテ,群だて,843,843,501,-6.8219 -ムリ,無理,1287,1287,169,-6.0619 -ムリョウ,無料,1285,1285,118,-8.1614 -ムロマチジダイ,室町時代,1289,1289,464,-8.4815 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_メ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_メ.csv deleted file mode 100644 index 9502726..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_メ.csv +++ /dev/null @@ -1,50 +0,0 @@ -メイカク,明確,1287,1287,169,-7.2469 -メイショウ,名称,1285,1285,327,-8.0793 -メイジ,命じ,625,625,301,-8.2511 -メイジロ,命じろ,623,623,438,-8.5674 -メイズ,命ず,593,593,193,-6.3295 -メイズル,命ずる,592,592,193,-6.3309 -メイレイ,命令,1283,1283,411,-8.5056 -メイワク,迷惑,1287,1287,17,-7.4214 -メキ,めき,978,978,80,-5.0703 -メキシコ,メキシコ,1294,1294,272,-7.3797 -メク,めく,953,953,389,-4.9333 -メグリ,巡り,788,788,258,-8.4927 -メグル,巡る,772,772,258,-8.3251 -メグル,めぐる,772,772,43,-8.5314 -メグレ,巡れ,784,784,258,-8.4814 -メザシ,目指し,735,735,258,-5.9425 -メザス,目指す,731,731,258,-5.8595 -メザセ,目指せ,734,734,258,-5.8521 -メズラシ,珍し,45,45,468,-6.6940 -メズラシ,珍し,39,39,468,-6.7688 -メズラシイ,珍しい,43,43,468,-6.9588 -メズラシカレ,珍しかれ,48,48,468,-6.6765 -メズラシキ,珍しき,44,44,468,-6.6771 -メズラシク,珍しく,51,51,468,-6.8390 -メズラシュウ,珍しゅう,49,49,468,-6.6765 -メダチ,目立ち,743,743,471,-6.2423 -メダツ,目立つ,738,738,471,-6.2442 -メダテ,目立て,741,741,471,-6.2164 -メチャ,めちゃ,1281,1281,244,-7.8982 -メチャクチャ,めちゃくちゃ,1287,1287,17,-6.5083 -メチャメチャ,めちゃめちゃ,1287,1287,56,-8.2938 -メッチャ,めっちゃ,1281,1281,420,-6.2207 -メディア,メディア,1285,1285,363,-8.5777 -メルカリ,メルカリ,1292,1292,501,-7.4111 -メンサ,面さ,586,586,432,-7.4655 -メンシ,面し,735,735,432,-7.8742 -メンシロ,面しろ,588,588,432,-7.3861 -メンス,面す,584,584,432,-7.3939 -メンスル,面する,583,583,432,-7.3898 -メンタル,メンタル,1287,1287,154,-8.0561 -メンドウ,面倒,1287,1287,161,-7.5865 -メンドクサ,めんどくさ,11,11,501,-8.2421 -メンドクサウ,めんどくさう,31,31,501,-8.0969 -メンドクサカレ,めんどくさかれ,29,29,501,-8.0894 -メンドクサキ,めんどくさき,21,21,501,-8.0896 -メンドクサク,めんどくさく,35,35,501,-8.1724 -メンドクサシ,めんどくさし,23,23,501,-8.0969 -メンバー,メンバー,1285,1285,334,-7.7643 -メートル,メートル,1300,1300,221,-6.4214 -メール,メール,1283,1283,363,-8.3328 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_モ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_モ.csv deleted file mode 100644 index 5f035b1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_モ.csv +++ /dev/null @@ -1,50 +0,0 @@ -モウ,もう,1272,1272,468,-3.4032 -モウ,もう,1281,1281,468,-5.0581 -モウシワケ,申し訳,1284,1284,17,-5.6127 -モウスコシ,もう少し,1282,1282,48,-7.0899 -モシ,もし,1281,1281,468,-6.4644 -モシクハ,もしくは,556,556,327,-4.9616 -モタラシ,もたらし,735,735,258,-7.1704 -モタラス,もたらす,731,731,43,-6.9793 -モタラセ,もたらせ,734,734,43,-6.9720 -モチ,持ち,743,743,481,-3.4191 -モチ,もち,743,743,258,-5.5199 -モチイ,用い,625,625,52,-6.5084 -モチイル,用いる,619,619,481,-6.4882 -モチイロ,用いろ,623,623,481,-6.4636 -モチロン,もちろん,1281,1281,468,-6.0242 -モット,もっと,1281,1281,48,-5.8820 -モットモ,最も,1281,1281,356,-6.0710 -モツ,持つ,738,738,481,-3.4210 -モツ,もつ,738,738,481,-5.2001 -モツ,保つ,738,738,481,-6.4647 -モテ,持て,741,741,481,-3.3932 -モテ,もて,741,741,247,-5.5758 -モトサク,本作,1290,1290,322,-6.0962 -モトヅキ,基づき,689,689,456,-6.1874 -モトヅク,基づく,679,679,456,-6.1468 -モトヅケ,基づけ,685,685,456,-6.1467 -モトメ,求め,625,625,52,-6.7382 -モトメル,求める,619,619,43,-6.6417 -モトメロ,求めろ,623,623,43,-6.6171 -モトモト,元々,1282,1282,468,-6.7328 -モトモト,もともと,1282,1282,468,-6.9559 -モドシ,戻し,735,735,249,-7.0813 -モドス,戻す,731,731,481,-7.0397 -モドセ,戻せ,734,734,481,-7.0323 -モドリ,戻り,788,788,471,-7.0628 -モドル,戻る,772,772,471,-6.8952 -モドレ,戻れ,784,784,471,-7.0515 -モノ,もの,1310,1310,468,-3.9802 -モノノ,ものの,319,319,282,-3.1427 -モライ,もらい,1274,1274,445,-3.2108 -モライ,もらい,832,832,438,-7.0629 -モラウ,もらう,1254,1254,438,-3.2061 -モラウ,もらう,817,817,438,-7.0193 -モラエ,もらえ,1266,1266,268,-3.3456 -モラエ,もらえ,930,930,268,-7.0090 -モラエ,もらえ,826,826,438,-7.0136 -モラエル,もらえる,919,919,445,-6.8424 -モン,もん,285,285,437,-3.8884 -モン,もん,1310,1310,437,-6.5423 -モンダイ,問題,1284,1284,468,-3.2769 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヤ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヤ.csv deleted file mode 100644 index 2b837e3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヤ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ヤイナヤ,やいなや,321,321,282,-4.9942 -ヤクダチ,役立ち,743,743,43,-6.6761 -ヤクダツ,役立つ,738,738,43,-6.6780 -ヤクダテ,役立て,741,741,43,-6.6502 -ヤクニタチ,役に立ち,743,743,481,-6.7232 -ヤクニタツ,役に立つ,738,738,481,-6.7251 -ヤクニタテ,役に立て,741,741,481,-6.6973 -ヤサシ,優し,45,45,460,-5.9131 -ヤサシ,優し,39,39,460,-5.9879 -ヤサシイ,優しい,43,43,460,-6.1779 -ヤサシカレ,優しかれ,48,48,460,-5.8956 -ヤサシキ,優しき,44,44,460,-5.8962 -ヤサシク,優しく,51,51,460,-6.0581 -ヤサシュウ,優しゅう,49,49,460,-5.8956 -ヤシ,やし,502,502,437,-4.2696 -ヤシ,やし,500,500,437,-4.4617 -ヤシイ,やしい,19,19,48,-6.1280 -ヤス,やす,105,105,36,-3.6853 -ヤス,やす,492,492,36,-4.1461 -ヤス,やす,11,11,48,-5.6878 -ヤスイ,やすい,113,113,48,-3.4181 -ヤスウ,やすう,31,31,48,-5.5427 -ヤスカレ,やすかれ,29,29,48,-5.5352 -ヤスキ,やすき,21,21,48,-5.5354 -ヤスク,やすく,129,129,48,-3.4884 -ヤスク,やすく,35,35,48,-5.6182 -ヤスシ,やすし,117,117,36,-3.5617 -ヤスシ,やすし,23,23,48,-5.5427 -ヤスミ,休み,767,767,380,-6.3311 -ヤスム,休む,762,762,471,-6.3729 -ヤスメ,休め,765,765,471,-6.3689 -ヤッ,やっ,505,505,427,-3.4369 -ヤッテキ,やってき,570,570,427,-4.6298 -ヤッテキ,やって来,580,580,427,-6.4688 -ヤッテクル,やってくる,563,563,290,-4.5075 -ヤッテクル,やって来る,573,573,290,-6.3321 -ヤッパリ,やっぱり,1281,1281,17,-6.0476 -ヤツ,やつ,1306,1306,420,-5.9973 -ヤハリ,やはり,1281,1281,468,-6.5008 -ヤバカレ,やばかれ,29,29,420,-6.8209 -ヤラ,やら,367,367,208,-3.7110 -ヤラ,やら,287,287,208,-4.2079 -ヤラ,やら,356,356,208,-4.4090 -ヤリ,やり,1203,1203,17,-3.6406 -ヤリ,やり,788,788,17,-5.3974 -ヤル,やる,1099,1099,17,-3.5577 -ヤル,やる,772,772,17,-5.2305 -ヤレ,やれ,1177,1177,47,-3.6983 -ヤレ,やれ,784,784,17,-5.3868 -ヤン,やん,514,514,420,-3.4991 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ユ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ユ.csv deleted file mode 100644 index cbc0e66..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ユ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ユイ,ゆい,832,832,36,-7.6068 -ユイイツ,唯一,1285,1285,468,-8.4847 -ユウ,ゆう,817,817,36,-7.5632 -ユウイ,優位,1287,1287,351,-8.5508 -ユウガタ,夕方,1314,1314,380,-7.8215 -ユウコウ,有効,1287,1287,169,-7.5693 -ユウサ,有さ,586,586,481,-4.9796 -ユウシ,有し,735,735,390,-7.1029 -ユウシュウ,優秀,1287,1287,169,-7.7526 -ユウショウ,優勝,1283,1283,7,-7.3640 -ユウシロ,有しろ,588,588,481,-4.9002 -ユウジン,友人,1285,1285,25,-8.1159 -ユウス,有す,584,584,481,-4.9080 -ユウス,有す,731,731,481,-7.8831 -ユウスル,有する,583,583,481,-4.9038 -ユウセ,有せ,734,734,481,-7.8757 -ユウセン,優先,1283,1283,182,-8.2839 -ユウメイ,有名,1287,1287,66,-6.5461 -ユウリ,有利,1287,1287,169,-8.1150 -ユウリョク,有力,1287,1287,169,-7.8242 -ユエ,ゆえ,826,826,36,-7.5575 -ユエ,ゆえ,1298,1298,48,-8.5022 -ユエニ,故に,555,555,48,-8.2831 -ユエニ,ゆえに,555,555,287,-8.5680 -ユキ,ゆき,1027,1027,36,-4.0090 -ユキ,行き,1028,1028,271,-5.1819 -ユキ,行き,720,720,271,-5.5704 -ユキ,逝き,705,705,389,-5.7125 -ユキ,行き,1285,1285,271,-5.7579 -ユキ,行き,1298,1298,271,-5.7579 -ユク,ゆく,1019,1019,471,-3.7991 -ユク,ゆく,711,711,471,-4.7699 -ユク,行く,1020,1020,471,-5.0221 -ユク,逝く,695,695,389,-6.0829 -ユケ,ゆけ,1025,1025,247,-4.0969 -ユケ,逝け,701,701,389,-5.7125 -ユズル,譲る,772,772,481,-8.6710 -ユソウ,輸送,1283,1283,319,-8.1684 -ユタカ,豊か,1287,1287,66,-7.4711 -ユックリ,ゆっくり,1282,1282,48,-6.4690 -ユネスコ,ユネスコ,1292,1292,475,-8.6747 -ユライ,由来,1283,1283,375,-7.7017 -ユラギ,揺らぎ,728,728,43,-7.8122 -ユラグ,揺らぐ,723,723,43,-7.8224 -ユラゲ,揺らげ,726,726,43,-7.7460 -ユルシ,許し,735,735,427,-6.6719 -ユルス,許す,731,731,438,-6.6632 -ユルセ,許せ,734,734,438,-6.6558 -ユーゴスラビア,ユーゴスラビア,1294,1294,19,-8.6160 -ユーチューブ,YouTube,1288,1288,363,-8.3172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヨ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヨ.csv deleted file mode 100644 index fbd7567..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヨ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ヨ〜ク,よ〜く,35,35,48,-6.5921 -ヨイ,良い,114,114,48,-3.5243 -ヨイ,よい,114,114,48,-4.2982 -ヨイ,良い,19,19,48,-5.0931 -ヨゥ,よぅ,125,125,48,-6.5341 -ヨウ,よう,1312,1312,169,-2.2533 -ヨウ,良う,31,31,48,-4.5078 -ヨウ,よう,31,31,48,-6.1433 -ヨウサ,要さ,586,586,481,-6.1704 -ヨウシロ,要しろ,588,588,481,-6.0910 -ヨウス,要す,584,584,481,-6.0988 -ヨウスル,要する,583,583,481,-6.0946 -ヨォ,よぉ,11,11,48,-6.4757 -ヨカレ,良かれ,29,29,48,-4.5003 -ヨカレ,よかれ,29,29,48,-6.1358 -ヨキ,良き,116,116,127,-3.7598 -ヨキ,よき,116,116,252,-4.2187 -ヨキ,良き,21,21,48,-4.5005 -ヨキ,よき,21,21,48,-6.1360 -ヨク,良く,130,130,48,-3.7892 -ヨク,よく,130,130,48,-4.0736 -ヨク,良く,35,35,48,-4.5833 -ヨク,よく,1281,1281,48,-5.2105 -ヨク,よく,35,35,48,-6.2001 -ヨクッ,良くっ,35,35,48,-5.3619 -ヨクッ,よくっ,35,35,48,-6.5927 -ヨシ,良し,118,118,252,-3.7695 -ヨシ,よし,118,118,36,-4.1977 -ヨシ,良し,23,23,48,-4.5078 -ヨシ,よし,23,23,48,-6.1433 -ヨシッ,ヨシッ,23,23,48,-6.5179 -ヨネ,よね,288,279,17,-6.1206 -ヨビ,呼び,759,759,481,-3.8393 -ヨブ,呼ぶ,754,754,481,-3.8364 -ヨベ,呼べ,757,757,481,-3.8353 -ヨミ,読み,767,767,327,-4.3610 -ヨム,読む,762,762,481,-4.4213 -ヨメ,読め,765,765,481,-4.4173 -ヨリ,より,155,155,351,-2.5584 -ヨリ,より,1281,1281,351,-6.1486 -ヨリ,より,788,788,59,-6.4524 -ヨル,よる,772,772,59,-6.2848 -ヨレ,よれ,784,784,59,-6.4411 -ヨロコビ,喜び,759,759,252,-5.9577 -ヨロコブ,喜ぶ,754,754,161,-5.9653 -ヨロコベ,喜べ,757,757,161,-5.9641 -ヨロシク,よろしく,1281,1281,420,-6.2931 -ヨー,よー,289,289,420,-3.4413 -ヨー,ヨー,294,294,64,-4.9745 -ヨーロッパ,ヨーロッパ,1293,1293,240,-6.3191 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ラ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ラ.csv deleted file mode 100644 index e7e9836..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ラ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ライゲツ,来月,1314,1314,193,-8.8747 -ライシュウ,来週,1314,1314,244,-8.1169 -ライター,ライター,1285,1285,324,-9.5768 -ライニチ,来日,1283,1283,271,-9.3775 -ライネン,来年,1314,1314,17,-7.9611 -ライフ,LIFE,1292,1292,40,-9.4154 -ライフ,Life,1289,1289,367,-9.4629 -ライブ,ライブ,1285,1285,172,-8.2005 -ライブ,LIVE,1288,1288,172,-9.6121 -ライレキ,来歴,1285,1285,59,-8.7884 -ライン,LINE,1289,1289,363,-6.6583 -ライン,ライン,1285,1285,64,-9.0209 -ラウンド,ラウンド,1300,1300,283,-9.0515 -ラオス,ラオス,1294,1294,240,-9.1056 -ラガ,らが,1298,148,17,-9.6143 -ラクセン,落選,1283,1283,125,-9.3300 -ラシ,らし,375,375,307,-3.4503 -ラシ,らし,387,387,307,-3.4618 -ラシイ,らしい,383,383,48,-3.1647 -ラシイデス,らしいです,383,460,17,-9.4739 -ラシキ,らしき,385,385,155,-3.4467 -ラシク,らしく,399,399,127,-3.7157 -ラシクッ,らしくっ,399,399,48,-4.0478 -ラジオ,ラジオ,1285,1285,305,-8.7690 -ラジオホウソウ,ラジオ放送,1292,1292,305,-9.0980 -ラジュラ,ラジュラ,1291,1291,501,-8.6703 -ラッキー,ラッキー,1287,1287,51,-8.9530 -ラッシャイ,らっしゃい,1246,1246,420,-4.5021 -ラッシャイ,らっしゃい,1238,1238,420,-4.6018 -ラッシャル,らっしゃる,1218,1218,54,-4.3454 -ラッシャル,らっしゃる,1091,1091,54,-7.9210 -ラトビア,ラトビア,1294,1294,19,-9.5045 -ラバウル,ラバウル,1293,1293,37,-9.2627 -ラフ,ラフ,1287,1287,64,-9.3581 -ラブ,Love,1289,1289,367,-9.1178 -ラヘン,らへん,1298,1298,501,-9.5838 -ラレ,られ,876,876,356,-3.7371 -ラレタ,られた,876,435,17,-7.8755 -ラレテ,られて,876,307,17,-7.7370 -ラレテイ,られてい,876,930,17,-9.1699 -ラレテイタ,られていた,876,435,17,-9.5950 -ラレテイル,られている,876,919,17,-8.5687 -ラレナイ,られない,873,473,17,-8.1243 -ラレマス,られます,876,491,17,-9.0981 -ラレル,られる,870,870,471,-3.6838 -ラレルコト,られること,870,1310,17,-9.5619 -ラレルノ,られるの,870,1310,17,-9.2999 -ラレルヨウ,られるよう,870,1312,17,-9.3565 -ランキング,ランキング,1285,1285,318,-9.0808 -ラーメン,ラーメン,1285,1285,442,-9.4861 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_リ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_リ.csv deleted file mode 100644 index fffc33a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_リ.csv +++ /dev/null @@ -1,50 +0,0 @@ -リア,リア,1291,1291,64,-8.4736 -リアル,リアル,1288,1288,66,-8.6523 -リアル,リアル,1287,1287,66,-8.9002 -リエキ,利益,1285,1285,79,-9.0091 -リカイ,理解,1283,1283,287,-7.0515 -リカイシ,理解し,1283,610,17,-8.8700 -リコン,離婚,1283,1283,46,-8.5808 -リスク,リスク,1285,1285,351,-8.9923 -リスペクト,リスペクト,1289,1289,412,-8.9826 -リソウ,理想,1285,1285,287,-8.9857 -リチャード,リチャード,1291,1291,255,-8.6090 -リッケンミンシュトウ,立憲民主党,1292,1292,430,-8.4560 -リットル,リットル,1300,1300,221,-8.7284 -リッパ,立派,1287,1287,66,-8.2458 -リトアニア,リトアニア,1294,1294,446,-8.4809 -リフジン,理不尽,1287,1287,66,-8.9949 -リプ,リプ,1289,1289,113,-7.5595 -リプ,リプ,1288,1288,113,-8.5560 -リメイク,リメイク,1289,1289,322,-8.3700 -リャクシ,略し,735,735,327,-8.4156 -リャクショウ,略称,1283,1283,453,-8.8693 -リャクス,略す,731,731,327,-8.6599 -リャクセ,略せ,734,734,327,-8.6525 -リュウガク,留学,1283,1283,314,-8.9885 -リュウキュウ,琉球,1293,1293,135,-9.0726 -リュウキュウシンポウ,琉球新報,1292,1292,201,-8.9004 -リュウコウ,流行,1283,1283,356,-8.8985 -リュウツウ,流通,1283,1283,375,-9.0682 -リユウ,理由,1285,1285,282,-7.1846 -リョウイキ,領域,1285,1285,339,-8.9027 -リョウコウ,良好,1287,1287,169,-8.7041 -リョウサ,領さ,586,586,464,-8.8410 -リョウシロ,領しろ,588,588,464,-8.7616 -リョウシン,両親,1285,1285,97,-8.8514 -リョウス,領す,584,584,464,-8.7694 -リョウスル,領する,583,583,464,-8.7653 -リョウホウ,両方,1285,1285,468,-8.9376 -リョウリ,料理,1283,1283,75,-7.0733 -リョコウ,旅行,1283,1283,271,-8.2134 -リヨウ,利用,1283,1283,375,-6.5809 -リヨウシ,利用し,1283,610,17,-9.0506 -リヨウシャ,利用者,1288,1288,109,-8.9807 -リリース,リリース,1283,1283,478,-7.8126 -リロン,理論,1285,1285,88,-8.7422 -リン,リン,1291,1291,149,-8.2888 -リン,りん,1282,1282,437,-8.5072 -リンク,リンク,1283,1283,20,-8.2819 -リンセツ,隣接,1283,1283,18,-8.2465 -リー,リー,1290,1290,255,-8.3409 -リーグ,リーグ,1285,1285,372,-8.9431 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ル.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ル.csv deleted file mode 100644 index d6c5ab4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ル.csv +++ /dev/null @@ -1,50 +0,0 @@ -ルイ,ルイ,1291,1291,329,-8.5223 -ルイケイ,累計,1283,1283,318,-9.9961 -ルイサ,類さ,586,586,481,-8.0216 -ルイシロ,類しろ,588,588,481,-7.9422 -ルイジ,類似,1283,1283,375,-9.1083 -ルイジアナ,ルイジアナ,1293,1293,138,-10.5637 -ルイス,類す,584,584,481,-7.9500 -ルイス,ルイス,1291,1291,255,-9.3393 -ルイス,るいす,584,584,501,-10.0069 -ルイス,ルイス,1293,1293,255,-10.0450 -ルイスル,類する,583,583,481,-7.9459 -ルイダ,塁打,1283,1283,377,-9.4885 -ルゥ,るぅ,1289,1289,501,-9.6351 -ルゥト,るぅと,1289,1289,501,-9.3864 -ルカ,るか,1291,1291,420,-8.9241 -ルカ,ルカ,1291,1291,199,-9.0227 -ルクセンブルク,ルクセンブルク,1294,1294,19,-9.3563 -ルシ,るし,1283,1283,437,-10.2835 -ルシファー,ルシファー,1289,1289,429,-10.5087 -ルソー,ルソー,1289,1289,204,-10.2592 -ルター,ルター,1289,1289,199,-10.1860 -ルドルフ,ルドルフ,1289,1289,329,-9.8862 -ルナ,るな,1291,1291,437,-9.3848 -ルパンサンセイ,ルパン三世,1289,1289,415,-10.0016 -ルビー,ruby,1289,1289,395,-10.1912 -ルビー,ルビー,1291,1291,203,-10.4306 -ルビー,Ruby,1289,1289,77,-10.5398 -ルフィ,ルフィ,1289,1289,26,-9.4090 -ルマン,ル・マン,1293,1293,421,-10.4322 -ルミ,ルミ,1291,1291,370,-10.1550 -ルミ,るみ,1291,1291,36,-10.5673 -ルル,るる,550,550,495,-4.1727 -ルル,るる,1281,1281,495,-10.1291 -ルル,ルル,1289,1289,25,-10.3508 -ルワンダ,ルワンダ,1294,1294,326,-9.7208 -ルン,るん,1289,1289,80,-9.1371 -ルー,ルー,1290,1290,149,-9.1921 -ルーカス,ルーカス,1290,1290,255,-9.7205 -ルーク,ルーク,1289,1289,25,-9.7492 -ルーシー,ルーシー,1291,1291,25,-10.0861 -ルース,ルース,1291,1291,255,-9.8419 -ルーズベルト,ルーズベルト,1290,1290,38,-9.5030 -ルーティーン,ルーティーン,1289,1289,501,-10.4542 -ルート,ルート,1285,1285,469,-9.0275 -ルートヴィヒ,ルートヴィヒ,1289,1289,329,-9.8161 -ループ,ループ,1285,1285,45,-10.1805 -ルーマニア,ルーマニア,1294,1294,19,-8.1153 -ルーム,ルーム,1285,1285,414,-10.3409 -ルール,ルール,1285,1285,283,-8.4714 -ルールヲ,ルールを,1285,156,17,-10.2503 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_レ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_レ.csv deleted file mode 100644 index 8ca1000..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_レ.csv +++ /dev/null @@ -1,50 +0,0 @@ -レイ,レイ,1291,1291,25,-8.9951 -レイセイ,冷静,1287,1287,66,-8.1590 -レイワ,令和,1291,1291,501,-8.2848 -レオ,レオ,1291,1291,25,-8.8183 -レオ,レオ,1292,1292,25,-9.1709 -レキシ,歴史,1285,1285,356,-7.5023 -レゴ,レゴ,1292,1292,296,-9.0382 -レソウ,れそう,876,1301,17,-9.1598 -レタ,れた,876,435,17,-6.3748 -レタコト,れたこと,876,1310,17,-9.0684 -レタノ,れたの,876,1310,17,-8.9654 -レタリ,れたり,876,360,17,-9.1534 -レッサ,列さ,586,586,403,-8.2360 -レッシャ,列車,1285,1285,109,-8.3364 -レッシロ,列しろ,588,588,403,-8.1566 -レッス,列す,584,584,403,-8.1644 -レッスル,列する,583,583,403,-8.1602 -レッセ,列せ,586,586,52,-8.0094 -レテ,れて,876,307,17,-6.2446 -レテイ,れてい,876,930,17,-7.5959 -レテイタ,れていた,876,435,17,-8.0815 -レテイナイ,れていない,876,473,17,-9.1264 -レテイマス,れています,876,491,17,-8.6313 -レテイル,れている,876,919,17,-7.1109 -レテオリ,れており,876,1197,17,-8.8431 -レテモ,れても,876,262,17,-8.8496 -レテル,れてる,876,307,17,-8.0917 -レナイ,れない,873,473,17,-8.2426 -レバノン,レバノン,1294,1294,326,-9.0668 -レビュー,レビュー,1283,1283,318,-8.6064 -レベル,レベル,1285,1285,351,-7.8957 -レマシ,れまし,876,501,17,-8.3111 -レマシタ,れました,876,435,17,-8.3380 -レマス,れます,876,491,17,-8.2381 -レル,れる,870,870,468,-2.2380 -レルコト,れること,870,1310,17,-8.3745 -レルト,れると,870,309,17,-9.0538 -レルノ,れるの,870,1310,17,-8.4937 -レルヨウ,れるよう,870,1312,17,-8.8764 -レロ,れろ,874,874,468,-2.2332 -レン,レン,1291,1291,149,-9.0593 -レンアイ,恋愛,1283,1283,322,-8.3243 -レンケイ,連携,1283,1283,154,-8.7229 -レンゴウ,連合,1292,1292,131,-8.8689 -レンサイ,連載,1283,1283,136,-8.0082 -レンシュウ,練習,1283,1283,364,-7.8991 -レンゾク,連続,1283,1283,178,-7.8760 -レンポウセイフ,連邦政府,1292,1292,13,-8.7969 -レンラク,連絡,1283,1283,271,-7.3843 -レース,レース,1285,1285,63,-8.5930 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ロ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ロ.csv deleted file mode 100644 index 6991fc6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ロ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ロイター,ロイター,1292,1292,209,-9.7337 -ロウドウ,労働,1283,1283,42,-8.9735 -ロウドウシャ,労働者,1288,1288,42,-9.1410 -ロウドウトウ,労働党,1292,1292,430,-9.0070 -ロクイ,6位,1288,1288,318,-9.7631 -ロクオン,録音,1283,1283,478,-8.7297 -ロクガ,録画,1283,1283,20,-9.4078 -ロクガツ,6月,1288,1288,195,-7.6127 -ロクガツツイタチ,6月1日,1288,1288,195,-9.8659 -ロクゴウ,6号,1293,1293,332,-9.2843 -ロクジ,6時,1288,1288,380,-9.8582 -ロクニ,ろくに,1281,1281,268,-9.6941 -ロクニン,6人,1288,1288,387,-9.5176 -ロクネン,6年,1288,1288,299,-8.8891 -ロコツ,露骨,1287,1287,66,-9.8402 -ロゴ,ロゴ,1285,1285,242,-9.5947 -ロサンゼルス,ロサンゼルス,1293,1293,138,-8.2553 -ロシア,ロシア,1294,1294,240,-5.9396 -ロシュツ,露出,1283,1283,182,-9.7739 -ロス,ロス,1293,1293,149,-8.6762 -ロス,ロス,1290,1290,149,-9.8100 -ロセン,路線,1285,1285,469,-7.8792 -ロセンバス,路線バス,1288,1288,162,-9.5142 -ロッカイ,6回,1288,1288,134,-9.5895 -ロッキード,ロッキード,1292,1292,413,-9.9024 -ロック,ロック,1283,1283,412,-8.7224 -ロッテ,ロッテ,1292,1292,310,-8.2545 -ロッポンギ,六本木,1293,1293,2,-9.5059 -ロバート,ロバート,1291,1291,255,-8.5148 -ロビンソン,ロビンソン,1290,1290,255,-9.8701 -ロボット,ロボット,1285,1285,190,-9.4621 -ロム,ROM,1289,1289,431,-9.5832 -ロン,ロン,1291,1291,25,-8.7058 -ロンジ,論じ,625,625,52,-9.2234 -ロンジル,論じる,619,619,88,-9.4863 -ロンジロ,論じろ,623,623,88,-9.4617 -ロンズ,論ず,593,593,481,-7.0517 -ロンズル,論ずる,592,592,481,-7.0532 -ロンソウ,論争,1283,1283,216,-9.5425 -ロンドン,ロンドン,1293,1293,463,-7.2222 -ロンブン,論文,1285,1285,59,-9.2055 -ロー,ろー,1287,1287,80,-8.7111 -ロー,ロー,1290,1290,255,-8.9178 -ローズ,ローズ,1291,1291,255,-8.8208 -ローソン,ローソン,1290,1290,35,-8.5009 -ローマ,ローマ,1293,1293,446,-7.2728 -ローマテイコク,ローマ帝国,1294,1294,359,-8.5461 -ローラ,ローラ,1292,1292,25,-9.6349 -ローランド,ローランド,1292,1292,255,-9.8322 -ローレンス,ローレンス,1291,1291,255,-9.9133 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ワ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ワ.csv deleted file mode 100644 index 5c05dbe..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ワ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ワァ,わぁ,3,3,501,-7.5095 -ワイ,わい,292,292,437,-4.4485 -ワカイ,若い,19,19,127,-7.1511 -ワカウ,若う,31,31,127,-6.5658 -ワカカレ,若かれ,29,29,127,-6.5582 -ワカキ,若き,21,21,127,-6.5585 -ワカク,若く,35,35,127,-6.6413 -ワカシ,若し,23,23,127,-6.5657 -ワカリ,わかり,788,788,481,-5.7878 -ワカリ,分かり,788,788,390,-6.1981 -ワカル,わかる,772,772,481,-5.6202 -ワカル,分かる,772,772,481,-6.1317 -ワカレ,わかれ,784,784,481,-5.7765 -ワカレ,分かれ,784,784,481,-6.2881 -ワクワク,ワクワク,1282,1282,17,-7.4660 -ワケ,わけ,1310,1310,268,-5.7101 -ワケ,分け,1297,1297,52,-7.3863 -ワケエ,若え,19,19,127,-7.1511 -ワザワザ,わざわざ,1282,1282,445,-7.2806 -ワスレ,忘れ,625,625,301,-6.8348 -ワスレル,忘れる,619,619,438,-7.2243 -ワスレロ,忘れろ,623,623,438,-7.1997 -ワズカ,わずか,1282,1282,143,-6.9915 -ワタシ,わたし,1306,1306,17,-5.7645 -ワタシ,渡し,735,735,427,-7.0527 -ワタシノ,私の,1306,368,17,-7.3959 -ワタシハ,私は,1306,261,17,-6.9789 -ワタシモ,私も,1306,262,17,-7.3679 -ワタシャ,わたしゃ,1307,1307,501,-7.0008 -ワタス,渡す,731,731,438,-7.0224 -ワタセ,渡せ,734,734,438,-7.0150 -ワライ,笑い,832,832,460,-6.4965 -ワラウ,笑う,817,817,460,-6.4530 -ワラエ,笑え,826,826,460,-6.4473 -ワラワラ,笑笑,1292,1292,501,-6.4699 -ワリイ,悪い,19,19,48,-6.0182 -ワリウ,悪う,31,31,48,-5.4329 -ワリカレ,悪かれ,29,29,48,-5.4253 -ワリキ,悪き,21,21,48,-5.4256 -ワリク,悪く,35,35,48,-5.5084 -ワリシ,悪し,23,23,48,-5.4328 -ワルイ,悪い,19,19,48,-6.0182 -ワルイッ,悪いっ,19,19,48,-6.7853 -ワルウ,悪う,31,31,48,-5.4329 -ワルカレ,悪かれ,29,29,48,-5.4253 -ワルキ,悪き,21,21,48,-5.4256 -ワルク,悪く,35,35,48,-5.5084 -ワルシ,悪し,23,23,48,-5.4328 -ワルッ,悪っ,11,11,48,-6.3545 -ワー,わー,291,291,80,-6.4009 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヰ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヰ.csv deleted file mode 100644 index a39a675..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヰ.csv +++ /dev/null @@ -1,2 +0,0 @@ -ヰル,ゐる,619,619,17,-10.4138 -ヰロ,ゐろ,623,623,17,-10.3892 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヱ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヱ.csv deleted file mode 100644 index 9d52e8e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヱ.csv +++ /dev/null @@ -1 +0,0 @@ -ヱン,ゑん,1291,1291,74,-12.5845 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヲ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヲ.csv deleted file mode 100644 index 171d130..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヲ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ヲイレ,を入れ,156,625,17,-8.6275 -ヲイレテ,を入れて,156,307,17,-9.1034 -ヲウケ,を受け,156,625,17,-8.1889 -ヲウケタ,を受けた,156,435,17,-9.0497 -ヲウケテ,を受けて,156,307,17,-9.1555 -ヲオ,をお,156,560,17,-8.7289 -ヲオコナウ,を行う,156,819,17,-8.8468 -ヲオシエ,を教え,156,625,17,-8.7148 -ヲオシエテ,を教えて,156,307,17,-8.7691 -ヲカイテ,を書いて,156,307,17,-9.1825 -ヲカケ,をかけ,156,625,17,-8.9572 -ヲカンガエ,を考え,156,625,17,-8.6747 -ヲカンガエテ,を考えて,156,307,17,-9.0641 -ヲカンガエル,を考える,156,619,17,-9.1264 -ヲカンジ,を感じ,156,625,17,-8.7230 -ヲカンジル,を感じる,156,619,17,-9.1944 -ヲサ,をさ,156,605,17,-8.8473 -ヲサガシ,を探し,156,735,17,-9.2124 -ヲシ,をし,156,610,17,-6.9630 -ヲシタ,をした,156,435,17,-8.5088 -ヲシテ,をして,156,307,17,-7.3522 -ヲシテイ,をしてい,156,930,17,-8.6358 -ヲシテイル,をしている,156,919,17,-8.5716 -ヲシヨウ,を使用,156,1283,17,-9.0227 -ヲスル,をする,156,599,17,-7.7924 -ヲタベ,を食べ,156,625,17,-9.0144 -ヲダシ,を出し,156,735,17,-8.7452 -ヲチュウシン,を中心,156,1285,17,-9.0283 -ヲツウジテ,を通じて,253,253,356,-3.5251 -ヲツカウ,を使う,156,817,17,-9.0069 -ヲツカッテ,を使って,156,307,17,-8.6545 -ヲツクッテ,を作って,156,307,17,-8.9909 -ヲツクル,を作る,156,772,17,-8.8525 -ヲツケ,をつけ,156,625,17,-8.9731 -ヲトオシテ,を通して,250,250,356,-3.5756 -ヲハジメ,を始め,156,625,17,-9.1176 -ヲヘ,を経,156,625,17,-9.2012 -ヲミ,を見,156,625,17,-7.6312 -ヲミタ,を見た,156,435,17,-9.1183 -ヲミテ,を見て,156,307,17,-8.0503 -ヲミル,を見る,156,619,17,-8.5405 -ヲメグッテ,をめぐって,243,243,43,-4.1633 -ヲモチマシテ,をもちまして,247,247,501,-5.2105 -ヲモッテ,をもって,248,248,494,-3.8581 -ヲモッテ,を以て,249,249,193,-4.2414 -ヲモッテ,を持って,156,307,17,-8.2892 -ヲモツ,を持つ,156,738,17,-8.5519 -ヲヤッテ,をやって,156,307,17,-9.2019 -ヲヨンデ,を読んで,156,308,17,-9.2119 -ヲリヨウ,を利用,156,1283,17,-9.0512 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ン.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ン.csv deleted file mode 100644 index 4d0e1a2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ン.csv +++ /dev/null @@ -1,50 +0,0 @@ -ンカ,んか,515,359,17,-8.3532 -ンカ,んか,1310,359,17,-8.8489 -ンガ,んが,515,299,17,-8.0561 -ンケド,んけど,515,301,17,-9.5516 -ンシ,んし,515,304,17,-9.4119 -ンジャ,んじゃ,1310,308,17,-7.9376 -ンジャ,んじゃ,515,308,17,-8.4533 -ンジャ,んじゃ,1310,334,17,-9.2540 -ンジャナイ,んじゃない,1310,473,17,-8.1908 -ンジャナイ,んじゃない,515,473,17,-8.8927 -ンジャナイ,んじゃない,1310,20,17,-9.6442 -ンジャナイカ,んじゃないか,1310,359,17,-8.6392 -ンジャナイカ,んじゃないか,515,359,17,-9.3356 -ンダ,んだ,1310,453,17,-6.1571 -ンダカラ,んだから,1310,297,17,-8.4139 -ンダガ,んだが,1310,299,17,-8.9966 -ンダケド,んだけど,1310,301,17,-7.2612 -ンダト,んだと,1310,164,17,-8.9023 -ンダナ,んだな,1310,275,17,-8.8446 -ンダネ,んだね,1310,279,17,-8.9663 -ンダヨ,んだよ,1310,288,17,-7.1003 -ンダヨナ,んだよな,1310,275,17,-8.5051 -ンダヨナァ,んだよなぁ,1310,275,17,-9.3961 -ンダヨネ,んだよね,1310,279,17,-8.1800 -ンダロウ,んだろう,1310,506,17,-8.0203 -ンダロウナ,んだろうな,1310,275,17,-9.1436 -ンデ,んで,322,322,17,-3.3859 -ンデシ,んでし,515,466,17,-8.3093 -ンデシタ,んでした,515,435,17,-8.3168 -ンデショウ,んでしょう,1310,506,17,-8.4384 -ンデショウカ,んでしょうか,1310,359,17,-8.9948 -ンデショウネ,んでしょうね,1310,279,17,-9.5719 -ンデス,んです,1310,460,17,-6.4615 -ンデスカ,んですか,1310,359,17,-7.9114 -ンデスカネ,んですかね,1310,279,17,-9.2465 -ンデスガ,んですが,1310,299,17,-8.0108 -ンデスケド,んですけど,1310,301,17,-8.0426 -ンデスケドネ,んですけどね,1310,279,17,-9.5607 -ンデスネ,んですね,1310,279,17,-8.1888 -ンデスヨ,んですよ,1310,288,17,-7.6205 -ンデスヨネ,んですよね,1310,279,17,-8.1465 -ンネ,んね,515,279,17,-8.9008 -ンノ,んの,1310,368,17,-8.9185 -ンノデ,んので,515,316,17,-9.6425 -ンヤ,んや,1310,503,17,-8.9408 -ンヤケド,んやけど,1310,301,17,-9.6732 -ンヨ,んよ,515,288,17,-8.3847 -ンヨ,んよ,1310,288,17,-9.6470 -ンヨネ,んよね,515,279,17,-9.4258 -ンー,んー,3,3,501,-7.8367 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヴ.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヴ.csv deleted file mode 100644 index f03ec5f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/p_ヴ.csv +++ /dev/null @@ -1,50 +0,0 @@ -ヴァイ,ヴァイ,1290,1290,149,-10.0983 -ヴァイオリニスト,ヴァイオリニスト,1288,1288,98,-11.3182 -ヴァイオリン,ヴァイオリン,1285,1285,416,-10.5768 -ヴァイオリンキョウソウキョク,ヴァイオリン協奏曲,1288,1288,501,-11.7283 -ヴァイオレット,ヴァイオレット,1289,1289,25,-10.9398 -ヴァイキング,ヴァイキング,1288,1288,359,-11.7184 -ヴァイス,ヴァイス,1289,1289,25,-11.3050 -ヴァイラス,virus,1289,1289,5,-11.8070 -ヴァラール,ヴァラール,1289,1289,222,-11.5410 -ヴァルキリー,ヴァルキリー,1289,1289,89,-11.7694 -ヴァルター,ヴァルター,1289,1289,329,-11.3207 -ヴァルナ,ヴァルナ,1289,1289,408,-10.8056 -ヴァロ,ヴァロ,1289,1289,501,-11.1344 -ヴァロワ,ヴァロワ,1293,1293,492,-11.4111 -ヴァン,ヴァン,1289,1289,149,-10.7060 -ヴァンパイア,ヴァンパイア,1289,1289,212,-10.4948 -ヴァンフォーレコウフ,ヴァンフォーレ甲府,1292,1292,372,-10.7355 -ヴァンヘイレン,ヴァン・ヘイレン,1289,1289,196,-11.8100 -ヴァージョン,ヴァージョン,1288,1288,478,-11.2010 -ヴィエスイー,VSE,1289,1289,315,-11.8257 -ヴィエン,ヴィエン,1289,1289,501,-11.9070 -ヴィクトリア,ヴィクトリア,1289,1289,329,-9.3307 -ヴィクトリアス,ヴィクトリアス,1289,1289,230,-11.9594 -ヴィクトリー,ヴィクトリー,1289,1289,230,-11.4188 -ヴィクトル,ヴィクトル,1289,1289,329,-11.5642 -ヴィッカース,ヴィッカース,1292,1292,413,-10.7231 -ヴィラ,ヴィラ,1289,1289,130,-11.3908 -ヴィル,ヴィル,1289,1289,149,-10.9933 -ヴィンテージ,ヴィンテージ,1288,1288,168,-11.7895 -ヴィヴィアン,ヴィヴィアン,1289,1289,25,-11.2834 -ヴィーガン,ヴィーガン,1288,1288,257,-11.3768 -ヴィーナス,ヴィーナス,1289,1289,429,-10.7935 -ヴィーナス,Venus,1289,1289,367,-11.3900 -ヴェイン,ヴェイン,1289,1289,368,-11.9339 -ヴェストファーレン,ヴェストファーレン,1293,1293,463,-11.0589 -ヴェルサイユ,ヴェルサイユ,1293,1293,463,-10.9653 -ヴェルディ,ヴェルディ,1289,1289,416,-9.8496 -ヴェルディカワサキ,ヴェルディ川崎,1292,1292,372,-11.1575 -ヴォイス,Voice,1289,1289,367,-11.5442 -ヴォイス,VOICE,1289,1289,40,-11.6992 -ヴォイス,ヴォイス,1289,1289,203,-11.8022 -ヴォルテール,ヴォルテール,1290,1290,204,-10.8127 -ヴォルデモート,ヴォルデモート,1289,1289,459,-10.9035 -ヴォルフ,ヴォルフ,1289,1289,329,-11.0960 -ヴォルフガング,ヴォルフガング,1289,1289,329,-11.8985 -ヴォルフガングアマデウスモーツァルト,ヴォルフガング・アマデウス・モーツァルト,1289,1289,416,-11.4035 -ヴォーカル,ヴォーカル,1288,1288,196,-10.8686 -ヴォーグ,ヴォーグ,1289,1289,196,-11.4398 -ヴォーン,ヴォーン,1289,1289,255,-11.6212 -ヴンダー,ヴンダー,1289,1289,501,-11.9157 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_0.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_0.csv deleted file mode 100644 index 9484b4f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_0.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -マタ,また,555,555,468,-3.4936 -ワタシ,私,1306,1306,17,-3.6243 -コノ,この,1315,1315,468,-3.0084 -ソノ,その,1315,1315,468,-3.1000 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コレ,これ,1306,1306,468,-3.8073 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ソレ,それ,1306,1306,468,-3.8293 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -・,・,5,5,203,-2.7687 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -『,『,6,6,322,-3.4104 -ハタラキ,働き,1285,1285,42,-5.8522 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1.csv deleted file mode 100644 index 85b0291..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ウ,う,506,506,133,-2.2404 -ス,す,602,602,481,-2.2579 -ト,と,309,309,282,-2.2641 -ナド,など,344,344,442,-2.2760 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_10.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_10.csv deleted file mode 100644 index 145e1e6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_10.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -コノ,この,1315,1315,468,-3.0084 -トキ,時,1285,1285,282,-5.0461 -ソノ,その,1315,1315,468,-3.1000 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ワタシ,私,1306,1306,17,-3.6243 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -『,『,6,6,322,-3.4104 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_100.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_100.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_100.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1000.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1000.csv deleted file mode 100644 index d8f9adf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1000.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ナク,なく,481,481,468,-2.5033 -ラレ,られ,876,876,356,-3.7371 -ナクッ,なくっ,481,481,17,-2.7253 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -ナイ,ない,482,482,468,-2.1746 -セル,せる,870,870,43,-4.3284 -ナイヒト,ない人,473,1285,501,-5.9561 -ズ,ず,487,487,282,-2.5580 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -サセ,させ,876,876,282,-6.9554 -ナイノデ,ないので,473,316,17,-7.8177 -ザル,ざる,485,485,282,-3.6544 -ナイシ,ないし,473,304,17,-7.8919 -レテイル,れている,876,919,17,-7.1109 -ナイヨウ,ないよう,473,1312,17,-7.9497 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1001.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1001.csv deleted file mode 100644 index 1d9e1bc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1001.csv +++ /dev/null @@ -1,30 +0,0 @@ -ズ,ず,487,487,282,-2.5580 -ナイ,ない,473,473,468,-1.8979 -ナイ,ない,482,482,468,-2.1746 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -レ,れ,876,876,468,-2.0223 -ヌ,ぬ,484,484,17,-3.3915 -ナイヒト,ない人,473,1285,501,-5.9561 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -ズニ,ずに,487,151,17,-7.8897 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1002.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1002.csv deleted file mode 100644 index fd7aa5a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1002.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ラレル,られる,870,870,471,-3.6838 -セル,せる,870,870,43,-4.3284 -ズ,ず,487,487,282,-2.5580 -ナイ,ない,482,482,468,-2.1746 -ナイヒト,ない人,473,1285,501,-5.9561 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナ,な,468,468,287,-2.1830 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -レテイ,れてい,876,930,17,-7.5959 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ラレテ,られて,876,307,17,-7.7370 -ナキ,なき,474,474,495,-2.1849 -ザル,ざる,485,485,282,-3.6544 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1003.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1003.csv deleted file mode 100644 index 7f2e365..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1003.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -タ,た,435,435,282,-1.4167 -ホウ,方,1310,1310,48,-4.5756 -コト,事,1310,1310,282,-4.9393 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -メ,目,1310,1310,332,-5.6594 -ワケ,わけ,1310,1310,268,-5.7101 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -キ,気,1310,1310,48,-5.9822 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ト,と,164,164,282,-1.8068 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1004.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1004.csv deleted file mode 100644 index f5ffc32..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1004.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -」,」,7,7,121,-2.0554 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ソウ,そう,1301,1301,17,-2.6187 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1005.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1005.csv deleted file mode 100644 index 528d874..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1005.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -ト,と,164,164,282,-1.8068 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -』,』,7,7,136,-3.5069 -ン,ん,1310,1310,437,-3.5653 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -タ,多,1285,1285,351,-4.9124 -。,。,8,8,61,-1.3115 -フクミ,含み,1285,1285,258,-4.9821 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -トキ,時,1285,1285,282,-5.0461 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ホウ,方,1310,1310,48,-4.5756 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -モ,も,262,262,468,-1.7239 -ミ,見,1285,1285,52,-5.3943 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1006.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1006.csv deleted file mode 100644 index bef87fb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1006.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -」,」,7,7,121,-2.0554 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1007.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1007.csv deleted file mode 100644 index e5c0867..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1007.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -レ,れ,876,876,468,-2.0223 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1008.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1008.csv deleted file mode 100644 index 600876d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1008.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -テイル,ている,307,919,17,-5.6469 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タリ,たり,360,360,451,-2.5700 -テイ,てい,307,930,17,-5.8308 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -テモ,ても,307,262,17,-6.4044 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -テイタ,ていた,307,435,17,-6.4827 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1009.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1009.csv deleted file mode 100644 index 0619098..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1009.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -タ,た,435,435,282,-1.4167 -ト,と,150,150,282,-2.0125 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -レロ,れろ,874,874,468,-2.2332 -ス,す,602,602,481,-2.2579 -アリ,あり,409,409,249,-2.3509 -ヨリ,より,155,155,351,-2.5584 -オリ,おり,1197,1197,356,-2.6223 -ニツイテ,について,199,199,468,-2.6527 -ゴザイ,ござい,428,428,17,-2.6577 -ニヨッテ,によって,210,210,468,-2.6690 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_101.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_101.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_101.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1010.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1010.csv deleted file mode 100644 index ead2471..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1010.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -タリ,たり,360,360,451,-2.5700 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -タガ,たが,435,299,17,-6.8350 -テミ,てみ,307,930,17,-7.2116 -タン,たん,435,1310,17,-6.8934 -テオリ,ており,307,1197,17,-7.2762 -タコト,たこと,435,1310,17,-6.9351 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1011.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1011.csv deleted file mode 100644 index 5b6a0b0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1011.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -」,」,7,7,121,-2.0554 -モ,も,262,262,468,-1.7239 -マス,ます,491,491,17,-1.8643 -ナ,な,12,12,468,-2.1172 -ン,ん,1310,1310,437,-3.5653 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モノ,もの,1310,1310,468,-3.9802 -マシ,まし,501,501,17,-2.0043 -タ,多,1285,1285,351,-4.9124 -ナ,な,454,454,287,-1.8607 -フクミ,含み,1285,1285,258,-4.9821 -』,』,7,7,136,-3.5069 -ソウ,そう,1301,1301,17,-2.6187 -トキ,時,1285,1285,282,-5.0461 -ノ,の,368,368,408,-1.2458 -テル,てる,307,919,17,-4.3303 -。,。,8,8,61,-1.3115 -ホウ,方,1310,1310,48,-4.5756 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ズ,ず,487,487,282,-2.5580 -ガ,が,148,148,468,-1.4621 -タチ,立ち,1285,1285,356,-5.2862 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1012.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1012.csv deleted file mode 100644 index a943391..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1012.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -、,、,10,10,151,-1.2267 -タイ,たい,444,444,17,-2.4250 -マシ,まし,501,501,17,-2.0043 -ソウ,そう,1301,1301,17,-2.6187 -タイヒト,たい人,444,1285,17,-6.3754 -マスガ,ますが,491,299,17,-7.0677 -マスヨ,ますよ,491,288,17,-7.3568 -テ,て,307,307,356,-1.5059 -マスカ,ますか,491,359,17,-7.4921 -マシタ,ました,501,435,17,-5.7646 -タ,た,435,435,282,-1.4167 -マスネ,ますね,491,279,17,-7.6686 -ナガラ,ながら,314,314,282,-2.7301 -タク,たく,451,451,17,-3.0166 -マスヨネ,ますよね,491,279,17,-8.1272 -タイデス,たいです,444,460,17,-7.8752 -コト,こと,1310,1310,282,-2.6917 -タイト,たいと,444,164,17,-7.9701 -マスノデ,ますので,491,316,17,-8.3029 -ノ,の,1310,1310,408,-2.7847 -タクッ,たくっ,451,451,17,-3.2814 -マスヨウ,ますよう,491,1312,17,-8.3797 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -。,。,8,8,61,-1.3115 -マスシ,ますし,491,304,17,-8.5719 -マスヨウニ,ますように,491,329,17,-8.5732 -ナ,な,275,275,287,-2.5224 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1013.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1013.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1013.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1014.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1014.csv deleted file mode 100644 index 63d78ed..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1014.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -タイ,たい,444,444,17,-2.4250 -マシ,まし,501,501,17,-2.0043 -タク,たく,451,451,17,-3.0166 -ソウ,そう,1301,1301,17,-2.6187 -タクッ,たくっ,451,451,17,-3.2814 -テ,て,307,307,356,-1.5059 -タイヒト,たい人,444,1285,17,-6.3754 -マシタ,ました,501,435,17,-5.7646 -タ,た,439,439,282,-2.7177 -タ,た,435,435,282,-1.4167 -ナ,な,275,275,287,-2.5224 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コト,こと,1310,1310,282,-2.6917 -「,「,6,6,352,-2.0388 -ノ,の,1310,1310,408,-2.7847 -ヤスイ,やすい,113,113,48,-3.4181 -マスガ,ますが,491,299,17,-7.0677 -イ,い,930,930,356,-2.0866 -ナサイ,なさい,1237,1237,17,-3.6578 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -マスヨ,ますよ,491,288,17,-7.3568 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -マスカ,ますか,491,359,17,-7.4921 -トキ,時,1285,1285,282,-5.0461 -マスネ,ますね,491,279,17,-7.6686 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1015.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1015.csv deleted file mode 100644 index eb65802..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1015.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1016.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1016.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1016.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1017.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1017.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1017.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1018.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1018.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1018.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1019.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1019.csv deleted file mode 100644 index 3c8172a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1019.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -モノ,もの,1310,1310,468,-3.9802 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,299,299,468,-2.0560 -ホウ,方,1310,1310,48,-4.5756 -」,」,7,7,121,-2.0554 -ト,と,309,309,282,-2.2641 -ト,と,164,164,282,-1.8068 -タメ,ため,1313,1313,282,-3.3063 -ヨウ,よう,1312,1312,169,-2.2533 -タ,多,1285,1285,351,-4.9124 -コト,事,1310,1310,282,-4.9393 -トイウ,という,173,173,468,-2.2416 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -・,・,5,5,203,-2.7687 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -「,「,6,6,352,-2.0388 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_102.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_102.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_102.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1020.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1020.csv deleted file mode 100644 index 0203d87..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1020.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -カ,か,359,359,468,-1.9789 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ヨ,よ,288,288,17,-2.1474 -?,?,1317,1317,17,-2.1596 -ノ,の,368,368,408,-1.2458 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -ト,と,309,309,282,-2.2641 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -ン,ん,1310,1310,437,-3.5653 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1021.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1021.csv deleted file mode 100644 index d0b52d3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1021.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,309,309,282,-2.2641 -ト,と,164,164,282,-1.8068 -ウ,う,506,506,133,-2.2404 -トカ,とか,364,364,17,-2.5396 -ト,と,363,363,282,-2.1096 -テ,て,307,307,356,-1.5059 -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -デ,で,458,458,468,-1.9218 -サン,さん,1302,1302,420,-2.7569 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 - , ,9,9,44,-2.4705 -トオモイ,と思い,164,832,17,-6.5917 -ノ,の,368,368,408,-1.2458 -』,』,7,7,136,-3.5069 -。,。,8,8,61,-1.3115 -トオモイマス,と思います,164,491,17,-6.7228 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -トオモウ,と思う,164,817,17,-6.9211 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -モ,も,262,262,468,-1.7239 -フクミ,含み,1285,1285,258,-4.9821 -ウカ,うか,506,359,17,-6.6916 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1022.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1022.csv deleted file mode 100644 index dff7929..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1022.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1023.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1023.csv deleted file mode 100644 index 53571e0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1023.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ノ,の,368,368,408,-1.2458 -ラレ,られ,876,876,356,-3.7371 -ズ,ず,487,487,282,-2.5580 -バ,ば,318,318,282,-2.3431 -コノ,この,1315,1315,468,-3.0084 -ナイ,ない,482,482,468,-2.1746 -ソノ,その,1315,1315,468,-3.1000 -。,。,8,8,61,-1.3115 -セ,せ,876,876,258,-4.2710 -ワ,わ,291,291,36,-2.7424 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -テキ,的,1299,1299,169,-2.4842 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナカ,中,1314,1314,282,-4.2761 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1024.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1024.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1024.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1025.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1025.csv deleted file mode 100644 index 985ae70..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1025.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -」,」,7,7,121,-2.0554 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1026.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1026.csv deleted file mode 100644 index a87500a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1026.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1027.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1027.csv deleted file mode 100644 index 3735bf8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1027.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -タイ,たい,444,444,17,-2.4250 -マシ,まし,501,501,17,-2.0043 -テ,て,307,307,356,-1.5059 -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,164,164,282,-1.8068 -ソウ,そう,1301,1301,17,-2.6187 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -エミ,笑,1291,1291,389,-4.2993 -トキ,時,1285,1285,282,-5.0461 -タイヒト,たい人,444,1285,17,-6.3754 -コト,こと,1310,1310,282,-2.6917 - , ,9,9,44,-2.4705 -ナガラ,ながら,314,314,282,-2.7301 -マスガ,ますが,491,299,17,-7.0677 -デス,です,460,460,17,-1.8655 -ノ,の,1310,1310,408,-2.7847 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -『,『,6,6,322,-3.4104 -ノ,の,368,368,408,-1.2458 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1028.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1028.csv deleted file mode 100644 index 5596594..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1028.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タ,た,435,435,282,-1.4167 -タイ,たい,444,444,17,-2.4250 -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1029.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1029.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1029.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_103.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_103.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_103.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1030.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1030.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1030.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1031.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1031.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1031.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1032.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1032.csv deleted file mode 100644 index bf6b6e0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1032.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ト,と,309,309,282,-2.2641 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1033.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1033.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1033.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1034.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1034.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1034.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1035.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1035.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1035.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1036.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1036.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1036.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1037.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1037.csv deleted file mode 100644 index 6ad7935..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1037.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ト,と,309,309,282,-2.2641 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -モノ,もの,1310,1310,468,-3.9802 -ヨウ,よう,1312,1312,169,-2.2533 -ト,と,164,164,282,-1.8068 -ノ,の,368,368,408,-1.2458 -カラ,から,297,297,356,-2.3083 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ホウ,方,1310,1310,48,-4.5756 -ノデ,ので,316,316,48,-2.3278 -ガ,が,299,299,468,-2.0560 -カ,か,359,359,468,-1.9789 -ヨ,よ,288,288,17,-2.1474 -コト,事,1310,1310,282,-4.9393 -タメ,ため,1313,1313,282,-3.3063 -トイウ,という,173,173,468,-2.2416 -」,」,7,7,121,-2.0554 -タ,多,1285,1285,351,-4.9124 -・,・,5,5,203,-2.7687 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -シ,し,304,304,258,-2.5363 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1038.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1038.csv deleted file mode 100644 index df3e422..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1038.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -ン,ん,1310,1310,437,-3.5653 -ヨウ,よう,1312,1312,169,-2.2533 -」,」,7,7,121,-2.0554 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,309,309,282,-2.2641 -モノ,もの,1310,1310,468,-3.9802 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ト,と,164,164,282,-1.8068 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -ホド,ほど,354,354,48,-2.8635 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -トイウ,という,173,173,468,-2.2416 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -シ,私,1285,1285,17,-4.2442 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1039.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1039.csv deleted file mode 100644 index 61294fc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1039.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_104.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_104.csv deleted file mode 100644 index 5018183..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_104.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -テル,てる,307,919,17,-4.3303 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -テ,て,307,930,356,-4.8756 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1040.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1040.csv deleted file mode 100644 index 4b14090..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1040.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -。,。,8,8,61,-1.3115 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -モノ,もの,1310,1310,468,-3.9802 -カ,か,359,359,468,-1.9789 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ホウ,方,1310,1310,48,-4.5756 -トイウ,という,173,173,468,-2.2416 -ノ,の,368,368,408,-1.2458 -」,」,7,7,121,-2.0554 -タメ,ため,1313,1313,282,-3.3063 -ヨウ,よう,1312,1312,169,-2.2533 -コト,事,1310,1310,282,-4.9393 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -メ,目,1310,1310,332,-5.6594 -ワ,わ,291,291,36,-2.7424 -ワケ,わけ,1310,1310,268,-5.7101 -トキ,時,1313,1313,282,-4.1345 -ベキ,べき,539,539,468,-2.9960 -シカ,しか,257,257,268,-2.7748 -ナド,など,344,344,442,-2.2760 -タ,た,435,435,282,-1.4167 -ナカ,中,1313,1313,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -ガ,が,148,148,468,-1.4621 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1041.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1041.csv deleted file mode 100644 index 0dadba7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1041.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ウカ,うか,506,359,17,-6.6916 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ウト,うと,506,164,17,-7.3953 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1042.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1042.csv deleted file mode 100644 index 57f2d68..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1042.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1043.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1043.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1043.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1044.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1044.csv deleted file mode 100644 index 69a0d1d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1044.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -ウカ,うか,506,359,17,-6.6916 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1045.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1045.csv deleted file mode 100644 index 422980d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1045.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ナイ,ない,473,473,468,-1.8979 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -セル,せる,870,870,43,-4.3284 -ズ,ず,487,487,282,-2.5580 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナイ,ない,482,482,468,-2.1746 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -イ,い,930,930,356,-2.0866 -レテイ,れてい,876,930,17,-7.5959 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ダ,だ,453,453,471,-1.9457 -ラレテ,られて,876,307,17,-7.7370 -イル,いる,919,919,468,-1.9884 -。,。,8,8,61,-1.3115 -ナイヒト,ない人,473,1285,501,-5.9561 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ラレタ,られた,876,435,17,-7.8755 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1046.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1046.csv deleted file mode 100644 index 91e4b93..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1046.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ラレ,られ,876,876,356,-3.7371 -レル,れる,870,870,468,-2.2380 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -ナイ,ない,473,473,468,-1.8979 -セル,せる,870,870,43,-4.3284 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -ン,ん,515,515,437,-2.4192 -レテイ,れてい,876,930,17,-7.5959 -ラレテ,られて,876,307,17,-7.7370 -ラレタ,られた,876,435,17,-7.8755 -ナク,なく,481,481,468,-2.5033 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -ナクッ,なくっ,481,481,17,-2.7253 -レマス,れます,876,491,17,-8.2381 -ズ,ず,487,487,282,-2.5580 -、,、,10,10,151,-1.2267 -レマシ,れまし,876,501,17,-8.3111 -ノ,の,368,368,408,-1.2458 -レマシタ,れました,876,435,17,-8.3380 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1047.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1047.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1047.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1048.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1048.csv deleted file mode 100644 index e372eb6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1048.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1049.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1049.csv deleted file mode 100644 index c131a2d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1049.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_105.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_105.csv deleted file mode 100644 index e45148e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_105.csv +++ /dev/null @@ -1,30 +0,0 @@ -サ,さ,1304,1304,441,-2.8267 -ソウ,そう,1301,1301,17,-2.6187 -カタ,方,1304,1304,48,-4.2521 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -、,、,10,10,151,-1.2267 -ガ,が,299,299,468,-2.0560 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -ネエ,ねえ,20,20,468,-2.2298 -レロ,れろ,874,874,468,-2.2332 -ウ,う,506,506,133,-2.2404 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1050.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1050.csv deleted file mode 100644 index 10edd3e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1050.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1051.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1051.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1051.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1052.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1052.csv deleted file mode 100644 index f6ac7ad..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1052.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -」,」,7,7,121,-2.0554 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ヨ,よ,288,288,17,-2.1474 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1053.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1053.csv deleted file mode 100644 index 98e0ce6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1053.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -テル,てる,307,919,17,-4.3303 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -テ,て,307,930,356,-4.8756 -ソウ,そう,1301,1301,17,-2.6187 -タリ,たり,360,360,451,-2.5700 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -ナ,な,275,275,287,-2.5224 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -シ,私,1285,1285,17,-4.2442 -タコト,たこと,435,1310,17,-6.9351 -ナカ,中,1285,1285,282,-4.2761 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -・,・,5,5,203,-2.7687 -テイマス,ています,307,491,17,-6.7459 -タイ,たい,444,444,17,-2.4250 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -チャウ,ちゃう,307,1253,17,-6.9038 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1054.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1054.csv deleted file mode 100644 index b7ee48f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1054.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タイ,たい,444,444,17,-2.4250 -マシ,まし,501,501,17,-2.0043 -マス,ます,491,491,17,-1.8643 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テイマス,ています,307,491,17,-6.7459 -。,。,8,8,61,-1.3115 -チャウ,ちゃう,307,1253,17,-6.9038 -シ,し,610,610,258,-1.5936 -テマス,てます,307,491,17,-6.9979 -デ,で,149,149,468,-1.6148 -タガ,たが,435,299,17,-6.8350 -」,」,7,7,121,-2.0554 -ノ,の,368,368,408,-1.2458 -テクレ,てくれ,307,940,17,-7.0746 -タン,たん,435,1310,17,-6.8934 -モ,も,262,262,468,-1.7239 -テナイ,てない,307,473,17,-7.1177 -タコト,たこと,435,1310,17,-6.9351 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1055.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1055.csv deleted file mode 100644 index ef31e0f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1055.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -マスガ,ますが,491,299,17,-7.0677 -マスヨ,ますよ,491,288,17,-7.3568 -マスカ,ますか,491,359,17,-7.4921 -テ,て,307,307,356,-1.5059 -マスネ,ますね,491,279,17,-7.6686 -マスヨネ,ますよね,491,279,17,-8.1272 -マシタ,ました,501,435,17,-5.7646 -マスノデ,ますので,491,316,17,-8.3029 -マスヨウ,ますよう,491,1312,17,-8.3797 -マスシ,ますし,491,304,17,-8.5719 -マスヨウニ,ますように,491,329,17,-8.5732 -マスカラ,ますから,491,297,17,-8.7663 -マスケド,ますけど,491,301,17,-9.0375 -マスト,ますと,491,164,17,-9.1686 -タ,た,435,435,282,-1.4167 -マストサイワイ,ますと幸い,491,1287,17,-9.3147 -マストサイワイデス,ますと幸いです,491,460,17,-9.3202 -マスワ,ますわ,491,291,17,-9.4796 -マスデショウ,ますでしょう,491,506,17,-9.6750 -マスカラネ,ますからね,491,279,17,-9.6803 -マスデショウカ,ますでしょうか,491,359,17,-9.6845 -マスヨウニ,ますように,491,151,17,-9.7912 -マスカネ,ますかね,491,279,17,-10.0047 -、,、,10,10,151,-1.2267 -マスト,ますと,491,309,17,-10.1098 -ノ,の,368,368,408,-1.2458 -マシタガ,ましたが,501,299,17,-7.6859 -。,。,8,8,61,-1.3115 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1056.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1056.csv deleted file mode 100644 index f80cfef..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1056.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -テル,てる,307,919,17,-4.3303 -ヲ,を,156,156,356,-1.4175 -タイ,たい,444,444,17,-2.4250 -テ,て,307,930,356,-4.8756 -ニ,に,151,151,282,-1.3747 -。,。,8,8,61,-1.3115 -タリ,たり,360,360,451,-2.5700 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -シ,し,610,610,258,-1.5936 -ガ,が,148,148,468,-1.4621 -デス,です,460,460,17,-1.8655 -テイル,ている,307,919,17,-5.6469 -ト,と,164,164,282,-1.8068 -モ,も,262,262,468,-1.7239 -テイ,てい,307,930,17,-5.8308 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -・,・,5,5,203,-2.7687 -テイマス,ています,307,491,17,-6.7459 -デ,で,458,458,468,-1.9218 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1057.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1057.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1057.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1058.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1058.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1058.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1059.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1059.csv deleted file mode 100644 index 4f229eb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1059.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ヨウ,よう,1312,1312,169,-2.2533 -ト,と,309,309,282,-2.2641 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -ホウ,方,1310,1310,48,-4.5756 -トイウ,という,173,173,468,-2.2416 -ガ,が,299,299,468,-2.0560 -タメ,ため,1313,1313,282,-3.3063 -コト,事,1310,1310,282,-4.9393 -カ,か,359,359,468,-1.9789 -タ,多,1285,1285,351,-4.9124 -モ,も,262,262,468,-1.7239 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -「,「,6,6,352,-2.0388 -ナド,など,344,344,442,-2.2760 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_106.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_106.csv deleted file mode 100644 index 02cce83..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_106.csv +++ /dev/null @@ -1,30 +0,0 @@ -サ,さ,1304,1304,441,-2.8267 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -カタ,方,1304,1304,48,-4.2521 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -ン,ん,1310,1310,437,-3.5653 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -モノ,もの,1310,1310,468,-3.9802 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ホウ,方,1310,1310,48,-4.5756 -ムラ,村,1285,1285,489,-5.7051 -タメ,ため,1313,1313,282,-3.3063 -キョウ,強,1285,1285,351,-5.7181 -デス,です,460,460,17,-1.8655 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1060.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1060.csv deleted file mode 100644 index f704fe5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1060.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ハ,は,261,261,468,-1.3731 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -イク,行く,696,696,471,-3.0023 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ウカ,うか,506,359,17,-6.6916 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1061.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1061.csv deleted file mode 100644 index 0148d4f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1061.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ナイ,ない,473,473,468,-1.8979 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ズ,ず,487,487,282,-2.5580 -サ,さ,605,605,441,-1.9359 -レル,れる,870,870,468,-2.2380 -ナイ,ない,482,482,468,-2.1746 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -サセ,させ,876,876,282,-6.9554 -ラレル,られる,870,870,471,-3.6838 -レテイル,れている,876,919,17,-7.1109 -ナイヒト,ない人,473,1285,501,-5.9561 -セテ,せて,876,307,17,-7.2476 -ナ,な,454,454,287,-1.8607 -レテイ,れてい,876,930,17,-7.5959 -、,、,10,10,151,-1.2267 -バ,ば,318,318,282,-2.3431 -ノ,の,368,368,408,-1.2458 -セル,せる,870,870,43,-4.3284 -。,。,8,8,61,-1.3115 -ラレテ,られて,876,307,17,-7.7370 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -イ,い,930,930,356,-2.0866 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1062.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1062.csv deleted file mode 100644 index d0736e7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1062.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -」,」,7,7,121,-2.0554 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1063.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1063.csv deleted file mode 100644 index a98f523..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1063.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,308,308,468,-2.9431 -ジャ,じゃ,308,261,247,-3.4000 -ダ,だ,436,436,471,-2.7366 -デ,で,308,930,468,-4.9557 -ダ,だ,453,453,471,-1.9457 -デル,でる,308,919,471,-5.5439 -。,。,8,8,61,-1.3115 -ダリ,だり,308,1203,60,-6.3455 -ノ,の,368,368,408,-1.2458 -テ,て,307,307,356,-1.5059 -デ,で,458,458,468,-1.9218 -、,、,10,10,151,-1.2267 -ダケ,だけ,338,338,468,-2.4590 -ジャナイ,じゃない,308,473,17,-7.1727 -カ,か,359,359,468,-1.9789 -デ,で,149,149,468,-1.6148 -クライ,くらい,331,331,48,-2.8137 -カラ,から,297,297,356,-2.3083 -ジャナイ,じゃない,308,20,17,-7.5891 -コト,こと,1310,1310,282,-2.6917 -ジャウ,じゃう,308,1253,418,-7.7444 -・,・,5,5,203,-2.7687 -ノ,の,1310,1310,408,-2.7847 -ハ,は,261,261,468,-1.3731 -ヨ,よ,288,288,17,-2.1474 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ワ,わ,291,291,36,-2.7424 -シ,し,610,610,258,-1.5936 -ジャナイカ,じゃないか,308,359,17,-8.0018 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1064.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1064.csv deleted file mode 100644 index b8ceab9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1064.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -ノ,の,368,368,408,-1.2458 -ヲ,を,156,156,356,-1.4175 -ナガラ,ながら,314,314,282,-2.7301 -タイ,たい,444,444,17,-2.4250 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -ガ,が,299,299,468,-2.0560 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -タ,た,435,435,282,-1.4167 -タ,多,1285,1285,351,-4.9124 -タク,たく,451,451,17,-3.0166 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タクッ,たくっ,451,451,17,-3.2814 -ト,と,164,164,282,-1.8068 -タチ,立ち,1285,1285,356,-5.2862 -デス,です,460,460,17,-1.8655 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1065.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1065.csv deleted file mode 100644 index 7649bd0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1065.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -ノ,の,368,368,408,-1.2458 -ナイ,ない,473,473,468,-1.8979 -マス,ます,491,491,17,-1.8643 -ン,ん,515,515,437,-2.4192 -ヤ,や,366,366,43,-2.1479 -ニ,に,151,151,282,-1.3747 -ズ,ず,487,487,282,-2.5580 -ッテ,って,167,167,17,-2.3603 -デ,で,308,308,468,-2.9431 -ナ,な,12,12,468,-2.1172 -カ,か,359,359,468,-1.9789 -マシ,まし,501,501,17,-2.0043 -ハ,は,261,261,468,-1.3731 -テル,てる,307,919,17,-4.3303 -デ,で,458,458,468,-1.9218 -ジャ,じゃ,308,261,247,-3.4000 -ガ,が,299,299,468,-2.0560 -モ,も,262,262,468,-1.7239 -、,、,10,10,151,-1.2267 -テ,て,307,930,356,-4.8756 -。,。,8,8,61,-1.3115 -ナガラ,ながら,314,314,282,-2.7301 -ダケ,だけ,338,338,468,-2.4590 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -オ,お,560,560,437,-3.5014 -ト,と,309,309,282,-2.2641 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1066.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1066.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1066.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1067.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1067.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1067.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1068.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1068.csv deleted file mode 100644 index d08668f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1068.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -バ,ば,318,318,282,-2.3431 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1069.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1069.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1069.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_107.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_107.csv deleted file mode 100644 index eb65802..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_107.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1070.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1070.csv deleted file mode 100644 index 98a4fdc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1070.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -デ,で,308,308,468,-2.9431 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1071.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1071.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1071.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1072.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1072.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1072.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1073.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1073.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1073.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1074.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1074.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1074.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1075.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1075.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1075.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1076.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1076.csv deleted file mode 100644 index 10a0d8a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1076.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -バ,ば,318,318,282,-2.3431 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1077.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1077.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1077.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1078.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1078.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1078.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1079.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1079.csv deleted file mode 100644 index 69624a3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1079.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,309,309,282,-2.2641 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_108.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_108.csv deleted file mode 100644 index aee5363..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_108.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1080.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1080.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1080.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1081.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1081.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1081.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1082.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1082.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1082.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1083.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1083.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1083.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1084.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1084.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1084.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1085.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1085.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1085.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1086.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1086.csv deleted file mode 100644 index e62f955..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1086.csv +++ /dev/null @@ -1,30 +0,0 @@ -イイ,いい,37,37,17,-2.6886 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1087.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1087.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1087.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1088.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1088.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1088.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1089.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1089.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1089.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_109.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_109.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_109.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1090.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1090.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1090.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1091.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1091.csv deleted file mode 100644 index 8f6026b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1091.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -ン,ん,1310,1310,437,-3.5653 -ヨ,よ,288,288,17,-2.1474 -ワ,わ,291,291,36,-2.7424 -シ,し,610,610,258,-1.5936 -モノ,もの,1310,1310,468,-3.9802 -・,・,5,5,203,-2.7687 -カラ,から,297,297,356,-2.3083 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -デ,で,458,458,468,-1.9218 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1092.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1092.csv deleted file mode 100644 index 343dc81..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1092.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ノデ,ので,316,316,48,-2.3278 -モノ,もの,1310,1310,468,-3.9802 -カラ,から,297,297,356,-2.3083 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -、,、,10,10,151,-1.2267 -ナカ,中,1285,1285,282,-4.2761 -ケド,けど,301,301,17,-2.4058 -ホウ,方,1310,1310,48,-4.5756 -ヨ,よ,288,288,17,-2.1474 -ガ,が,299,299,468,-2.0560 -コト,事,1310,1310,282,-4.9393 -カ,か,359,359,468,-1.9789 -ヨウ,よう,1312,1312,169,-2.2533 -タ,多,1285,1285,351,-4.9124 -ノ,の,368,368,408,-1.2458 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ダケ,だけ,338,338,468,-2.4590 -タメ,ため,1313,1313,282,-3.3063 -タチ,立ち,1285,1285,356,-5.2862 -」,」,7,7,121,-2.0554 -カズ,数,1285,1285,387,-5.3011 -ト,と,309,309,282,-2.2641 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1093.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1093.csv deleted file mode 100644 index 6c30e30..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1093.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ヨ,よ,288,288,17,-2.1474 -ガ,が,299,299,468,-2.0560 -ワ,わ,291,291,36,-2.7424 -」,」,7,7,121,-2.0554 -ナ,な,275,275,287,-2.5224 -ゾ,ぞ,270,270,420,-3.2548 -デ,で,458,458,468,-1.9218 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -シ,私,1285,1285,17,-4.2442 -ノ,の,368,368,408,-1.2458 -ナカ,中,1285,1285,282,-4.2761 -タメ,ため,1313,1313,282,-3.3063 -ダケ,だけ,338,338,468,-2.4590 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -…,…,5,5,184,-3.3301 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -』,』,7,7,136,-3.5069 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1094.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1094.csv deleted file mode 100644 index c7a6130..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1094.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ガ,が,299,299,468,-2.0560 -」,」,7,7,121,-2.0554 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -ヨウ,よう,1312,1312,169,-2.2533 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ン,ん,1310,1310,437,-3.5653 -トキ,時,1285,1285,282,-5.0461 -ニ,に,151,151,282,-1.3747 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -』,』,7,7,136,-3.5069 -モノ,もの,1310,1310,468,-3.9802 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ノ,の,368,368,408,-1.2458 -アソビ,遊び,1285,1285,290,-5.5478 -シ,し,610,610,258,-1.5936 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1095.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1095.csv deleted file mode 100644 index be63632..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1095.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -モノ,もの,1310,1310,468,-3.9802 -マデ,まで,355,355,143,-2.3294 -ノ,の,368,368,408,-1.2458 -ホウ,方,1310,1310,48,-4.5756 -コト,事,1310,1310,282,-4.9393 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -カ,か,359,359,468,-1.9789 -ッテ,って,167,167,17,-2.3603 -メ,目,1310,1310,332,-5.6594 -ワケ,わけ,1310,1310,268,-5.7101 -タメ,ため,1313,1313,282,-3.3063 -ヨ,よ,288,288,17,-2.1474 -トイウ,という,173,173,468,-2.2416 -ダケ,だけ,338,338,468,-2.4590 -キ,気,1310,1310,48,-5.9822 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ハ,は,261,261,468,-1.3731 -トキ,時,1285,1285,282,-5.0461 -ニ,に,151,151,282,-1.3747 -ンダ,んだ,1310,453,17,-6.1571 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1096.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1096.csv deleted file mode 100644 index 02c0910..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1096.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,458,458,468,-1.9218 -ワ,わ,291,291,36,-2.7424 -」,」,7,7,121,-2.0554 -ワタシ,私,1306,1306,17,-3.6243 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -ヨ,よ,288,288,17,-2.1474 -ナ,な,454,454,287,-1.8607 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ナニ,何,1306,1306,468,-4.3760 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ネ,ね,279,279,47,-2.1699 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1097.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1097.csv deleted file mode 100644 index c6010d7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1097.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -・,・,5,5,203,-2.7687 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -…,…,5,5,184,-3.3301 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1098.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1098.csv deleted file mode 100644 index ff76d68..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1098.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,309,309,282,-2.2641 -ヨウ,よう,1312,1312,169,-2.2533 -ホウ,方,1310,1310,48,-4.5756 -「,「,6,6,352,-2.0388 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -」,」,7,7,121,-2.0554 -テ,て,307,307,356,-1.5059 -ノ,の,368,368,408,-1.2458 -タ,多,1285,1285,351,-4.9124 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ガ,が,299,299,468,-2.0560 -フクミ,含み,1285,1285,258,-4.9821 -コト,事,1310,1310,282,-4.9393 -タメ,ため,1313,1313,282,-3.3063 -トキ,時,1285,1285,282,-5.0461 -モ,も,262,262,468,-1.7239 -トイウ,という,173,173,468,-2.2416 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1099.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1099.csv deleted file mode 100644 index fe7470b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1099.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -ヨ,よ,288,288,17,-2.1474 -デ,で,149,149,468,-1.6148 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -」,」,7,7,121,-2.0554 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -カラ,から,297,297,356,-2.3083 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_11.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_11.csv deleted file mode 100644 index 14c77f9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_11.csv +++ /dev/null @@ -1,30 +0,0 @@ -イ,い,930,930,356,-2.0866 -サ,さ,1304,1304,441,-2.8267 -イル,いる,919,919,468,-1.9884 -ソウ,そう,1301,1301,17,-2.6187 -カタ,方,1304,1304,48,-4.2521 -。,。,8,8,61,-1.3115 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -、,、,10,10,151,-1.2267 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナキ,なき,474,474,495,-2.1849 -・,・,5,5,203,-2.7687 -アレ,あれ,407,407,47,-2.4311 -テ,て,307,307,356,-1.5059 -キ,き,904,904,356,-2.5861 -ミ,み,930,930,52,-4.5938 -タ,た,435,435,282,-1.4167 -シマウ,しまう,1253,1253,282,-2.7195 -タシ,たし,446,446,437,-2.7251 -ジャ,じゃ,334,334,247,-2.7478 -コト,こと,1310,1310,282,-2.6917 -オコナウ,行う,819,819,481,-2.8270 -…,…,5,5,184,-3.3301 -オコナイ,行い,834,834,258,-2.8926 -ノ,の,1310,1310,408,-2.7847 -シマエ,しまえ,1265,1265,47,-2.9108 -ズ,ず,486,486,282,-2.9232 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_110.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_110.csv deleted file mode 100644 index 61294fc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_110.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1100.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1100.csv deleted file mode 100644 index 1aca988..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1100.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -ヨウ,よう,1312,1312,169,-2.2533 -ノ,の,368,368,408,-1.2458 -ホウ,方,1310,1310,48,-4.5756 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,299,299,468,-2.0560 -コト,事,1310,1310,282,-4.9393 -ナド,など,344,344,442,-2.2760 -ダケ,だけ,338,338,468,-2.4590 -ニ,に,151,151,282,-1.3747 -ケド,けど,301,301,17,-2.4058 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -タメ,ため,1313,1313,282,-3.3063 -メ,目,1310,1310,332,-5.6594 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ワケ,わけ,1310,1310,268,-5.7101 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1101.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1101.csv deleted file mode 100644 index 1d089ae..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1101.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1102.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1102.csv deleted file mode 100644 index 4611405..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1102.csv +++ /dev/null @@ -1,30 +0,0 @@ -マデ,まで,355,355,143,-2.3294 -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ノ,の,368,368,408,-1.2458 -タメ,ため,1313,1313,282,-3.3063 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ダケ,だけ,338,338,468,-2.4590 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -」,」,7,7,121,-2.0554 -トキ,時,1313,1313,282,-4.1345 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モノ,もの,1310,1310,468,-3.9802 -ナカ,中,1313,1313,282,-4.2761 -ヨ,よ,288,288,17,-2.1474 -ッテ,って,167,167,17,-2.3603 -トコロ,ところ,1313,1313,282,-4.6437 -・,・,5,5,203,-2.7687 -トキ,とき,1313,1313,282,-4.6845 -ワ,わ,291,291,36,-2.7424 -ガ,が,299,299,468,-2.0560 -タ,た,435,435,282,-1.4167 -イジョウ,以上,1313,1313,387,-4.8100 -ホウ,方,1310,1310,48,-4.5756 -ガ,が,148,148,468,-1.4621 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1103.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1103.csv deleted file mode 100644 index 0e29ee6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1103.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ニ,に,151,151,282,-1.3747 -マデ,まで,355,355,143,-2.3294 -、,、,10,10,151,-1.2267 -ホウ,方,1310,1310,48,-4.5756 -ノ,の,368,368,408,-1.2458 -」,」,7,7,121,-2.0554 -コト,事,1310,1310,282,-4.9393 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -カ,か,359,359,468,-1.9789 -ヨウ,よう,1312,1312,169,-2.2533 -ト,と,164,164,282,-1.8068 -タメ,ため,1313,1313,282,-3.3063 -トイウ,という,173,173,468,-2.2416 -シカ,しか,257,257,268,-2.7748 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1104.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1104.csv deleted file mode 100644 index 7ba6735..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1104.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ネン,ねん,281,281,331,-3.6938 -ノ,の,1310,1310,408,-2.7847 -ナ,な,275,275,287,-2.5224 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ヨ,よ,288,288,17,-2.1474 -ノ,の,368,368,408,-1.2458 -ホウ,方,1310,1310,48,-4.5756 -ノ,の,282,282,408,-2.8118 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -コト,事,1310,1310,282,-4.9393 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -カ,か,359,359,468,-1.9789 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1105.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1105.csv deleted file mode 100644 index 8ee143e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1105.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ノ,の,282,282,408,-2.8118 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ナ,な,454,454,287,-1.8607 -ヨ,よ,288,288,17,-2.1474 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -ダケ,だけ,338,338,468,-2.4590 -デ,で,458,458,468,-1.9218 -」,」,7,7,121,-2.0554 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -、,、,10,10,151,-1.2267 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1106.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1106.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1106.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1107.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1107.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1107.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1108.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1108.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1108.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1109.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1109.csv deleted file mode 100644 index f260bc7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1109.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヨ,よ,288,288,17,-2.1474 -デ,で,308,308,468,-2.9431 -ジャ,じゃ,308,261,247,-3.4000 -?,?,1317,1317,17,-2.1596 -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -デ,で,308,930,468,-4.9557 -ノ,の,368,368,408,-1.2458 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -デル,でる,308,919,471,-5.5439 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -・,・,5,5,203,-2.7687 -ナ,な,275,275,287,-2.5224 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_111.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_111.csv deleted file mode 100644 index d293d21..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_111.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -モウ,もう,1281,1281,468,-5.0581 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1110.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1110.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1110.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1111.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1111.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1111.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1112.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1112.csv deleted file mode 100644 index 6eae4e2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1112.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,275,275,287,-2.5224 -ネ,ね,279,279,47,-2.1699 -シ,し,610,610,258,-1.5936 -ナァ,なぁ,275,275,420,-4.2969 -サン,さん,1302,1302,420,-2.7569 -コト,こと,1310,1310,282,-2.6917 -ゼ,ぜ,269,269,52,-3.4496 -ノ,の,1310,1310,408,-2.7847 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ナ,な,454,454,287,-1.8607 -ナサイ,なさい,1237,1237,17,-3.6578 -ゾ,ぞ,270,270,420,-3.2548 -ネー,ねー,280,280,420,-3.4471 -ナア,なあ,275,275,17,-5.2398 -ナク,なく,36,36,468,-2.1850 -ス,す,879,879,481,-4.4955 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -「,「,6,6,352,-2.0388 -ン,ん,1310,1310,437,-3.5653 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ナキ,なき,22,22,468,-2.1172 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -チャン,ちゃん,1302,1302,51,-4.1693 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1113.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1113.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1113.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1114.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1114.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1114.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1115.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1115.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1115.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1116.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1116.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1116.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1117.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1117.csv deleted file mode 100644 index ac15814..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1117.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -コノ,この,1315,1315,468,-3.0084 -ソノ,その,1315,1315,468,-3.1000 -ン,ん,1310,1310,437,-3.5653 -。,。,8,8,61,-1.3115 -サン,さん,1302,1302,420,-2.7569 -アリガトウ,ありがとう,3,3,244,-3.6808 -タ,た,435,435,282,-1.4167 -モノ,もの,1310,1310,468,-3.9802 -デ,で,458,458,468,-1.9218 -ダ,だ,453,453,471,-1.9457 -」,」,7,7,121,-2.0554 -オ,お,560,560,437,-3.5014 -ハ,は,261,261,468,-1.3731 -バ,ば,318,318,282,-2.3431 -オナジ,同じ,1315,1315,468,-4.5628 -ホウ,方,1310,1310,48,-4.5756 -ナ,な,454,454,287,-1.8607 -ソンナ,そんな,1315,1315,161,-4.6627 -タメ,ため,1313,1313,282,-3.3063 -モ,も,262,262,468,-1.7239 -?,?,1317,1317,17,-2.1596 -ナ,な,275,275,287,-2.5224 -コト,事,1310,1310,282,-4.9393 -ト,と,164,164,282,-1.8068 -ニ,に,151,151,282,-1.3747 -・,・,5,5,203,-2.7687 -ゴ,ご,560,560,78,-4.1942 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1118.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1118.csv deleted file mode 100644 index 14e9bdd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1118.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -マシ,まし,501,501,17,-2.0043 -ト,と,164,164,282,-1.8068 -・,・,5,5,203,-2.7687 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,309,309,282,-2.2641 -マス,ます,491,491,17,-1.8643 -サン,さん,1302,1302,420,-2.7569 -ガ,が,148,148,468,-1.4621 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -デス,です,460,460,17,-1.8655 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -デ,で,458,458,468,-1.9218 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1119.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1119.csv deleted file mode 100644 index 1b1f5f1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1119.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -ガ,が,148,148,468,-1.4621 -ニ,に,151,151,282,-1.3747 -」,」,7,7,121,-2.0554 -ワ,わ,291,291,36,-2.7424 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -デ,で,458,458,468,-1.9218 -ネ,ね,279,279,47,-2.1699 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -。,。,8,8,61,-1.3115 -ツ,つ,370,370,437,-3.3939 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -カ,か,359,359,468,-1.9789 -デス,です,460,460,17,-1.8655 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_112.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_112.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_112.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1120.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1120.csv deleted file mode 100644 index c00b561..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1120.csv +++ /dev/null @@ -1,30 +0,0 @@ -カ,か,359,359,468,-1.9789 -デシ,でし,466,466,17,-2.1485 -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ナ,な,454,454,287,-1.8607 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -・,・,5,5,203,-2.7687 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -…,…,5,5,184,-3.3301 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1121.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1121.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1121.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1122.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1122.csv deleted file mode 100644 index 7bda3ea..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1122.csv +++ /dev/null @@ -1,30 +0,0 @@ -イル,いる,919,919,468,-1.9884 -テ,て,307,307,356,-1.5059 -イ,い,930,930,356,-2.0866 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ズ,ず,487,487,282,-2.5580 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1123.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1123.csv deleted file mode 100644 index 81c65ba..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1123.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1124.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1124.csv deleted file mode 100644 index 0bf240a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1124.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -シ,し,517,517,258,-3.6249 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1125.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1125.csv deleted file mode 100644 index c1c8bc6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1125.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,458,458,468,-1.9218 -シ,し,610,610,258,-1.5936 -ナンカ,なんか,2,2,17,-4.0239 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -エ,え,2,2,99,-4.2861 -ヤス,やす,105,105,36,-3.6853 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1126.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1126.csv deleted file mode 100644 index 6fc23b8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1126.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,454,454,287,-1.8607 -デ,で,458,458,468,-1.9218 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1127.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1127.csv deleted file mode 100644 index d695cb6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1127.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1128.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1128.csv deleted file mode 100644 index 1c14153..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1128.csv +++ /dev/null @@ -1,30 +0,0 @@ -レル,れる,870,870,468,-2.2380 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -タ,た,435,435,282,-1.4167 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1129.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1129.csv deleted file mode 100644 index 7aadd9c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1129.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_113.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_113.csv deleted file mode 100644 index c7d3c33..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_113.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -ン,ん,1310,1310,437,-3.5653 -ヨウ,よう,1312,1312,169,-2.2533 -ノデ,ので,316,316,48,-2.3278 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モノ,もの,1310,1310,468,-3.9802 -カラ,から,297,297,356,-2.3083 -トイウ,という,173,173,468,-2.2416 -カ,か,359,359,468,-1.9789 -」,」,7,7,121,-2.0554 -シ,し,304,304,258,-2.5363 -タ,多,1285,1285,351,-4.9124 -ヨ,よ,288,288,17,-2.1474 -フクミ,含み,1285,1285,258,-4.9821 -ホウ,方,1310,1310,48,-4.5756 -ガ,が,299,299,468,-2.0560 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -コト,事,1310,1310,282,-4.9393 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ケド,けど,301,301,17,-2.4058 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1130.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1130.csv deleted file mode 100644 index 07f649b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1130.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 -ノ,の,368,368,408,-1.2458 -・,・,5,5,203,-2.7687 -デ,で,458,458,468,-1.9218 -ニ,に,151,151,282,-1.3747 -テ,て,307,307,356,-1.5059 -イ,い,930,930,356,-2.0866 -ダ,だ,453,453,471,-1.9457 -タ,た,435,435,282,-1.4167 -デス,です,460,460,17,-1.8655 -…,…,5,5,184,-3.3301 -サン,さん,1302,1302,420,-2.7569 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -』,』,7,7,136,-3.5069 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -ハ,は,261,261,468,-1.3731 -ナイ,ない,473,473,468,-1.8979 -モ,も,262,262,468,-1.7239 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ト,と,164,164,282,-1.8068 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1131.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1131.csv deleted file mode 100644 index 894655f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1131.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1132.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1132.csv deleted file mode 100644 index 46564c9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1132.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -シ,し,517,517,258,-3.6249 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1133.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1133.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1133.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1134.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1134.csv deleted file mode 100644 index 5c6c517..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1134.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1135.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1135.csv deleted file mode 100644 index 2c70bf5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1135.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1136.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1136.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1136.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1137.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1137.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1137.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1138.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1138.csv deleted file mode 100644 index 7f40931..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1138.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -?,?,1317,1317,17,-2.1596 -レ,れ,876,876,468,-2.0223 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1139.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1139.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1139.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_114.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_114.csv deleted file mode 100644 index 86ada60..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_114.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,164,164,282,-1.8068 -コト,こと,1310,1310,282,-2.6917 -デス,です,460,460,17,-1.8655 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -カ,か,359,359,468,-1.9789 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -ホウ,方,1310,1310,48,-4.5756 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -コト,事,1310,1310,282,-4.9393 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -ヨ,よ,288,288,17,-2.1474 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1140.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1140.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1140.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1141.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1141.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1141.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1142.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1142.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1142.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1143.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1143.csv deleted file mode 100644 index f80f1a0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1143.csv +++ /dev/null @@ -1,30 +0,0 @@ -ン,ん,515,515,437,-2.4192 -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -、,、,10,10,151,-1.2267 -ズ,ず,487,487,282,-2.5580 -タ,た,435,435,282,-1.4167 -ナク,なく,481,481,468,-2.5033 -」,」,7,7,121,-2.0554 -ナイ,ない,482,482,468,-2.1746 -イ,い,930,930,356,-2.0866 -ナクッ,なくっ,481,481,17,-2.7253 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ノ,の,368,368,408,-1.2458 -ト,と,164,164,282,-1.8068 -エミ,笑,1291,1291,389,-4.2993 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -テ,て,307,307,356,-1.5059 -セ,せ,876,876,258,-4.2710 -ナ,な,468,468,287,-2.1830 -デキ,でき,625,625,481,-4.3005 -デス,です,460,460,17,-1.8655 -ナ,な,454,454,287,-1.8607 -ン,ん,1310,1310,437,-3.5653 -タ,多,1285,1285,351,-4.9124 -ミ,見,625,625,52,-4.5511 -デ,で,149,149,468,-1.6148 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1144.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1144.csv deleted file mode 100644 index f57ee31..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1144.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -タ,た,435,435,282,-1.4167 -ヌ,ぬ,484,484,17,-3.3915 -ズ,ず,487,487,282,-2.5580 -イ,い,930,930,356,-2.0866 -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1145.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1145.csv deleted file mode 100644 index b11e021..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1145.csv +++ /dev/null @@ -1,30 +0,0 @@ -ズ,ず,487,487,282,-2.5580 -ズニ,ずに,487,151,17,-7.8897 -ヌ,ぬ,484,484,17,-3.3915 -ナイ,ない,473,473,468,-1.8979 -ズモウシワケ,ず申し訳,487,1284,17,-10.6360 -ン,ん,515,515,437,-2.4192 -ズトモ,ずとも,487,310,17,-10.7824 -ズニイ,ずにい,487,625,17,-10.7904 -ズノ,ずの,487,368,17,-10.9252 -ズモウシワケゴザイ,ず申し訳ござい,487,428,17,-10.9741 -ズニハ,ずには,487,261,17,-11.0026 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1146.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1146.csv deleted file mode 100644 index 5d1a1ae..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1146.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ズ,ず,487,487,282,-2.5580 -ン,ん,515,515,437,-2.4192 -ナイ,ない,482,482,468,-2.1746 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ナク,なく,481,481,468,-2.5033 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナクッ,なくっ,481,481,17,-2.7253 -ナイヒト,ない人,473,1285,501,-5.9561 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1147.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1147.csv deleted file mode 100644 index 68a6190..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1147.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ズ,ず,487,487,282,-2.5580 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -レ,れ,876,876,468,-2.0223 -ノ,の,368,368,408,-1.2458 -ナイヒト,ない人,473,1285,501,-5.9561 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -ナイ,ない,482,482,468,-2.1746 -デ,で,458,458,468,-1.9218 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -イ,い,930,930,356,-2.0866 -ヌ,ぬ,484,484,17,-3.3915 -ナ,な,468,468,287,-2.1830 -・,・,5,5,203,-2.7687 -ナイデス,ないです,473,460,17,-7.2367 -ラレ,られ,876,876,356,-3.7371 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -…,…,5,5,184,-3.3301 -セ,せ,876,876,258,-4.2710 -ナイノデ,ないので,473,316,17,-7.8177 -レル,れる,870,870,468,-2.2380 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1148.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1148.csv deleted file mode 100644 index a67ef2f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1148.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ズ,ず,487,487,282,-2.5580 -ナク,なく,481,481,468,-2.5033 -ナイヒト,ない人,473,1285,501,-5.9561 -ナクッ,なくっ,481,481,17,-2.7253 -ヌ,ぬ,484,484,17,-3.3915 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ン,ん,515,515,437,-2.4192 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイノデ,ないので,473,316,17,-7.8177 -ナイシ,ないし,473,304,17,-7.8919 -ナイヨウ,ないよう,473,1312,17,-7.9497 -ナイコト,ないこと,473,1310,17,-8.1142 -ナインダ,ないんだ,473,453,17,-8.2222 -ナイデスカ,ないですか,473,359,17,-8.2266 -ナイ,ない,482,482,468,-2.1746 -ナイヨ,ないよ,473,288,17,-8.2684 -ナイノ,ないの,473,282,17,-8.2774 -ナイデショウ,ないでしょう,473,506,17,-8.4052 -ナイカナ,ないかな,473,275,17,-8.4854 -ナイカト,ないかと,473,164,17,-8.5228 -ナインデス,ないんです,473,460,17,-8.5765 -ナイノニ,ないのに,473,317,17,-8.6436 -ナイヨウニ,ないように,473,329,17,-8.6970 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1149.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1149.csv deleted file mode 100644 index 6c7ed9a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1149.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_115.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_115.csv deleted file mode 100644 index 912e1f0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_115.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヲ,を,156,156,356,-1.4175 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -コノ,この,1315,1315,468,-3.0084 -ソノ,その,1315,1315,468,-3.1000 -モ,も,262,262,468,-1.7239 -モノ,もの,1310,1310,468,-3.9802 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -タ,多,1285,1285,351,-4.9124 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1150.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1150.csv deleted file mode 100644 index e82367c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1150.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ナク,なく,481,481,468,-2.5033 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナクッ,なくっ,481,481,17,-2.7253 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1151.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1151.csv deleted file mode 100644 index 1d1ddf5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1151.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -イ,い,930,930,356,-2.0866 -、,、,10,10,151,-1.2267 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -イル,いる,919,919,468,-1.9884 -ズ,ず,487,487,282,-2.5580 -デス,です,460,460,17,-1.8655 -モウ,もう,1272,1272,468,-3.4032 -コノ,この,1315,1315,468,-3.0084 -ナ,な,454,454,287,-1.8607 -レ,れ,876,876,468,-2.0223 -ソノ,その,1315,1315,468,-3.1000 -ダ,だ,453,453,471,-1.9457 -ヌ,ぬ,484,484,17,-3.3915 -ナイ,ない,482,482,468,-2.1746 -マジ,まじ,543,543,437,-3.9324 -デキ,でき,625,625,481,-4.3005 -ナ,な,468,468,287,-2.1830 -ヤ,や,503,503,43,-3.1411 -ナイヒト,ない人,473,1285,501,-5.9561 -ミ,見,625,625,52,-4.5511 -ミ,み,930,930,52,-4.5938 -デ,で,458,458,468,-1.9218 -オナジ,同じ,1315,1315,468,-4.5628 -イ,い,625,625,356,-4.9123 -「,「,6,6,352,-2.0388 -デキル,できる,619,619,481,-4.0489 -ソンナ,そんな,1315,1315,161,-4.6627 -ノ,の,368,368,408,-1.2458 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1152.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1152.csv deleted file mode 100644 index 54f48d3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1152.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1153.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1153.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1153.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1154.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1154.csv deleted file mode 100644 index e994ffa..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1154.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ズ,ず,487,487,282,-2.5580 -ナイ,ない,482,482,468,-2.1746 -ナ,な,468,468,287,-2.1830 -ナイヒト,ない人,473,1285,501,-5.9561 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ヌ,ぬ,484,484,17,-3.3915 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1155.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1155.csv deleted file mode 100644 index a5db26b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1155.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ズ,ず,487,487,282,-2.5580 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -レ,れ,876,876,468,-2.0223 -ナイ,ない,482,482,468,-2.1746 -ン,ん,515,515,437,-2.4192 -ナイヒト,ない人,473,1285,501,-5.9561 -ナ,な,468,468,287,-2.1830 -ラレ,られ,876,876,356,-3.7371 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ナイデス,ないです,473,460,17,-7.2367 -。,。,8,8,61,-1.3115 -ナイカ,ないか,473,359,17,-7.2908 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -セ,せ,876,876,258,-4.2710 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1156.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1156.csv deleted file mode 100644 index b449cac..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1156.csv +++ /dev/null @@ -1,30 +0,0 @@ -?,?,1317,1317,17,-2.1596 -、,、,10,10,151,-1.2267 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ノ,の,368,368,408,-1.2458 -ネン,ねん,281,281,331,-3.6938 -ン,ん,1310,1310,437,-3.5653 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -」,」,7,7,121,-2.0554 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モノ,もの,1310,1310,468,-3.9802 -モ,も,262,262,468,-1.7239 -・,・,5,5,203,-2.7687 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1157.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1157.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1157.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1158.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1158.csv deleted file mode 100644 index f2b2e22..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1158.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -『,『,6,6,322,-3.4104 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1159.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1159.csv deleted file mode 100644 index 9c69f33..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1159.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_116.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_116.csv deleted file mode 100644 index 14a2ce5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_116.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -・,・,5,5,203,-2.7687 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1160.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1160.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1160.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1161.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1161.csv deleted file mode 100644 index 2936a2a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1161.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1162.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1162.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1162.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1163.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1163.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1163.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1164.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1164.csv deleted file mode 100644 index 9a2ec2e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1164.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1165.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1165.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1165.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1166.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1166.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1166.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1167.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1167.csv deleted file mode 100644 index 9a2ec2e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1167.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1168.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1168.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1168.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1169.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1169.csv deleted file mode 100644 index 5cee8ca..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1169.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -、,、,10,10,151,-1.2267 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_117.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_117.csv deleted file mode 100644 index 2bffb12..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_117.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -テ,て,307,307,356,-1.5059 -ト,と,164,164,282,-1.8068 -タ,た,435,435,282,-1.4167 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -』,』,7,7,136,-3.5069 -ハ,は,261,261,468,-1.3731 -・,・,5,5,203,-2.7687 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -ノ,の,368,368,408,-1.2458 -ネ,ね,279,279,47,-2.1699 -フクミ,含み,1285,1285,258,-4.9821 -モ,も,262,262,468,-1.7239 -トキ,時,1285,1285,282,-5.0461 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ガ,が,148,148,468,-1.4621 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1170.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1170.csv deleted file mode 100644 index 30b8ea2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1170.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1171.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1171.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1171.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1172.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1172.csv deleted file mode 100644 index d695cb6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1172.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1173.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1173.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1173.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1174.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1174.csv deleted file mode 100644 index e8ad163..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1174.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ズ,ず,487,487,282,-2.5580 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1175.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1175.csv deleted file mode 100644 index 4601918..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1175.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1176.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1176.csv deleted file mode 100644 index d695cb6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1176.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1177.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1177.csv deleted file mode 100644 index 610f0c0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1177.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヨ,よ,288,288,17,-2.1474 -タ,た,435,435,282,-1.4167 -シ,し,610,610,258,-1.5936 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1178.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1178.csv deleted file mode 100644 index 31f66b7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1178.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1179.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1179.csv deleted file mode 100644 index 5e1a017..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1179.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -」,」,7,7,121,-2.0554 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_118.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_118.csv deleted file mode 100644 index e23681f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_118.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -ヨ,よ,288,288,17,-2.1474 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1180.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1180.csv deleted file mode 100644 index 12e5b56..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1180.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -ナイ,ない,473,473,468,-1.8979 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -マス,ます,491,491,17,-1.8643 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1181.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1181.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1181.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1182.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1182.csv deleted file mode 100644 index f1760b0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1182.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -デ,で,149,149,468,-1.6148 -テモ,ても,307,262,17,-6.4044 -マス,ます,491,491,17,-1.8643 -テイタ,ていた,307,435,17,-6.4827 -タリ,たり,360,360,451,-2.5700 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -、,、,10,10,151,-1.2267 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -テイマス,ています,307,491,17,-6.7459 -マセ,ませ,497,497,17,-2.1344 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1183.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1183.csv deleted file mode 100644 index 0caf383..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1183.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -タリ,たり,360,360,451,-2.5700 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テイ,てい,307,930,17,-5.8308 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -テモ,ても,307,262,17,-6.4044 -タカラ,たから,435,297,17,-7.2365 -テイタ,ていた,307,435,17,-6.4827 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -チャウ,ちゃう,307,1253,17,-6.9038 -タホウ,た方,435,1310,17,-7.7160 -テマス,てます,307,491,17,-6.9979 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1184.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1184.csv deleted file mode 100644 index f875549..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1184.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -ハ,は,261,261,468,-1.3731 -ト,と,164,164,282,-1.8068 -テル,てる,307,919,17,-4.3303 -カ,か,359,359,468,-1.9789 -テ,て,307,930,356,-4.8756 -、,、,10,10,151,-1.2267 -ケ,け,267,267,437,-3.6854 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ト,と,309,309,282,-2.2641 -ニ,に,151,151,282,-1.3747 -テイル,ている,307,919,17,-5.6469 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テイ,てい,307,930,17,-5.8308 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -デキ,でき,625,625,481,-4.3005 -オエエ,多え,19,19,481,-4.9407 -オオイ,多い,19,19,481,-4.9407 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1185.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1185.csv deleted file mode 100644 index eb61001..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1185.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タリ,たり,360,360,451,-2.5700 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -タカラ,たから,435,297,17,-7.2365 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1186.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1186.csv deleted file mode 100644 index 8cf2728..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1186.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -タガ,たが,435,299,17,-6.8350 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -タケド,たけど,435,301,17,-7.1281 -テクレル,てくれる,307,933,17,-7.5487 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1187.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1187.csv deleted file mode 100644 index 902642d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1187.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -ノ,の,368,368,408,-1.2458 -テ,て,307,930,356,-4.8756 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1188.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1188.csv deleted file mode 100644 index 3c59450..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1188.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1189.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1189.csv deleted file mode 100644 index 494daaf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1189.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_119.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_119.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_119.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1190.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1190.csv deleted file mode 100644 index 3d4f5ef..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1190.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -ト,と,164,164,282,-1.8068 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -テイル,ている,307,919,17,-5.6469 -マス,ます,491,491,17,-1.8643 -テイ,てい,307,930,17,-5.8308 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1191.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1191.csv deleted file mode 100644 index b2e7877..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1191.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -タノ,たの,435,1310,17,-6.5362 -テクダサイ,てください,307,1239,17,-7.1772 -タヒト,た人,435,1285,17,-6.5473 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -タガ,たが,435,299,17,-6.8350 -テイルノ,ているの,307,1310,17,-7.4871 -タン,たん,435,1310,17,-6.8934 -テクレル,てくれる,307,933,17,-7.5487 -タコト,たこと,435,1310,17,-6.9351 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1192.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1192.csv deleted file mode 100644 index 494daaf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1192.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1193.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1193.csv deleted file mode 100644 index fcc45b9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1193.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -テモ,ても,307,262,17,-6.4044 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -テイタ,ていた,307,435,17,-6.4827 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タカラ,たから,435,297,17,-7.2365 -チャウ,ちゃう,307,1253,17,-6.9038 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -タンダ,たんだ,435,453,17,-7.5585 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -タトキ,た時,435,1313,17,-7.6509 -テミ,てみ,307,930,17,-7.2116 -タホウ,た方,435,1310,17,-7.7160 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1194.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1194.csv deleted file mode 100644 index f5ad88d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1194.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -タリ,たり,360,360,451,-2.5700 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -タガ,たが,435,299,17,-6.8350 -テミ,てみ,307,930,17,-7.2116 -タン,たん,435,1310,17,-6.8934 -テオリ,ており,307,1197,17,-7.2762 -タコト,たこと,435,1310,17,-6.9351 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1195.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1195.csv deleted file mode 100644 index a827c3b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1195.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -デ,で,458,458,468,-1.9218 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ナ,な,454,454,287,-1.8607 -ダ,だ,453,453,471,-1.9457 -」,」,7,7,121,-2.0554 -タイ,たい,444,444,17,-2.4250 -デシ,でし,466,466,17,-2.1485 -・,・,5,5,203,-2.7687 -ニ,に,151,151,282,-1.3747 -デ,で,308,308,468,-2.9431 -シ,し,610,610,258,-1.5936 -ヲ,を,156,156,356,-1.4175 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ジャ,じゃ,308,261,247,-3.4000 -…,…,5,5,184,-3.3301 -ハ,は,261,261,468,-1.3731 -イ,い,930,930,356,-2.0866 -ナイ,ない,473,473,468,-1.8979 -ヨ,よ,288,288,17,-2.1474 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1196.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1196.csv deleted file mode 100644 index fc30cd0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1196.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -ガ,が,148,148,468,-1.4621 -デ,で,458,458,468,-1.9218 -ノ,の,368,368,408,-1.2458 -マシタ,ました,501,435,17,-5.7646 -ナ,な,454,454,287,-1.8607 -ガ,が,299,299,468,-2.0560 -ダ,だ,453,453,471,-1.9457 -マスガ,ますが,491,299,17,-7.0677 -マスヨ,ますよ,491,288,17,-7.3568 -マスカ,ますか,491,359,17,-7.4921 -ニ,に,151,151,282,-1.3747 -デシ,でし,466,466,17,-2.1485 -ト,と,164,164,282,-1.8068 -マスネ,ますね,491,279,17,-7.6686 -テ,て,307,307,356,-1.5059 -シ,私,1285,1285,17,-4.2442 -・,・,5,5,203,-2.7687 -ナカ,中,1285,1285,282,-4.2761 -マスヨネ,ますよね,491,279,17,-8.1272 -マスノデ,ますので,491,316,17,-8.3029 -「,「,6,6,352,-2.0388 -マスヨウ,ますよう,491,1312,17,-8.3797 -マセン,ません,495,515,17,-6.3590 -…,…,5,5,184,-3.3301 -マシタガ,ましたが,501,299,17,-7.6859 -タ,た,435,435,282,-1.4167 -タ,多,1285,1285,351,-4.9124 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1197.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1197.csv deleted file mode 100644 index c813079..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1197.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -マスガ,ますが,491,299,17,-7.0677 -。,。,8,8,61,-1.3115 -マスヨ,ますよ,491,288,17,-7.3568 -マスカ,ますか,491,359,17,-7.4921 -マスネ,ますね,491,279,17,-7.6686 -タ,多,1285,1285,351,-4.9124 -『,『,6,6,322,-3.4104 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -マシタ,ました,501,435,17,-5.7646 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -マスヨネ,ますよね,491,279,17,-8.1272 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -マスノデ,ますので,491,316,17,-8.3029 -アソビ,遊び,1285,1285,290,-5.5478 -コノ,この,1315,1315,468,-3.0084 -マスヨウ,ますよう,491,1312,17,-8.3797 -ソノ,その,1315,1315,468,-3.1000 -メ,目,1285,1285,332,-5.6594 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1198.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1198.csv deleted file mode 100644 index 3475d01..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1198.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -ヲ,を,156,156,356,-1.4175 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -トシテ,として,179,179,356,-2.2226 -マス,ます,491,491,17,-1.8643 -ト,と,164,164,282,-1.8068 -デ,で,458,458,468,-1.9218 -ソウ,そう,1301,1301,17,-2.6187 -。,。,8,8,61,-1.3115 -タイ,たい,444,444,17,-2.4250 -」,」,7,7,121,-2.0554 -イ,い,930,930,356,-2.0866 -シ,私,1285,1285,17,-4.2442 -ナガラ,ながら,314,314,282,-2.7301 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,454,454,287,-1.8607 -マシタ,ました,501,435,17,-5.7646 -デス,です,460,460,17,-1.8655 -「,「,6,6,352,-2.0388 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -カラ,から,297,297,356,-2.3083 -ヤスイ,やすい,113,113,48,-3.4181 -タク,たく,451,451,17,-3.0166 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1199.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1199.csv deleted file mode 100644 index 5c7509b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1199.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -マス,ます,491,491,17,-1.8643 -デ,で,458,458,468,-1.9218 -タイ,たい,444,444,17,-2.4250 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -イ,い,930,930,356,-2.0866 -ナ,な,454,454,287,-1.8607 -マシタ,ました,501,435,17,-5.7646 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -デ,で,308,308,468,-2.9431 -ソウ,そう,1301,1301,17,-2.6187 -ノ,の,368,368,408,-1.2458 -タ,多,1285,1285,351,-4.9124 -ナガラ,ながら,314,314,282,-2.7301 -フクミ,含み,1285,1285,258,-4.9821 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -トキ,時,1285,1285,282,-5.0461 -ガ,が,148,148,468,-1.4621 -…,…,5,5,184,-3.3301 -』,』,7,7,136,-3.5069 -シ,し,610,610,258,-1.5936 -ジャ,じゃ,308,261,247,-3.4000 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_12.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_12.csv deleted file mode 100644 index 4e337af..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_12.csv +++ /dev/null @@ -1,30 +0,0 @@ -サ,さ,1304,1304,441,-2.8267 -カタ,方,1304,1304,48,-4.2521 -イ,い,930,930,356,-2.0866 -ソウ,そう,1301,1301,17,-2.6187 -タ,た,435,435,282,-1.4167 -レル,れる,870,870,468,-2.2380 -ップリ,っぷり,1304,1304,127,-7.6806 -イル,いる,919,919,468,-1.9884 -サソウ,さそう,1304,1301,17,-8.3185 -サン,さん,1302,1302,420,-2.7569 -サヲ,さを,1304,156,17,-8.5179 -ミ,み,1304,1304,52,-8.5558 -モ,も,262,262,468,-1.7239 -コト,こと,1310,1310,282,-2.6917 -サガ,さが,1304,148,17,-8.7172 -ノ,の,1310,1310,408,-2.7847 -ラレル,られる,870,870,471,-3.6838 -サニ,さに,1304,151,17,-9.0406 -ミ,み,930,930,52,-4.5938 -タテ,たて,1304,1304,276,-9.1841 -サハ,さは,1304,261,17,-9.3020 -セル,せる,870,870,43,-4.3284 -ノ,の,282,282,408,-2.8118 -ダケ,だけ,338,338,468,-2.4590 -サソウダ,さそうだ,1304,453,17,-9.5294 -カタガ,方が,1304,148,17,-9.5315 -ン,ん,1310,1310,437,-3.5653 -サト,さと,1304,363,17,-9.5456 -スギ,すぎ,930,930,268,-5.1245 -カタヲ,方を,1304,156,17,-9.5945 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_120.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_120.csv deleted file mode 100644 index 4df9375..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_120.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1200.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1200.csv deleted file mode 100644 index 9c564bc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1200.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -、,、,10,10,151,-1.2267 -マセン,ません,495,515,17,-6.3590 -タイ,たい,444,444,17,-2.4250 -。,。,8,8,61,-1.3115 -ナガラ,ながら,314,314,282,-2.7301 -マセンガ,ませんが,495,299,17,-8.1033 -」,」,7,7,121,-2.0554 -マセンデシ,ませんでし,495,466,17,-8.3240 -マセンデシタ,ませんでした,495,435,17,-8.3291 -マシタ,ました,501,435,17,-5.7646 -ニ,に,151,151,282,-1.3747 -マセンカ,ませんか,495,359,17,-8.4089 -サン,さん,1302,1302,420,-2.7569 -デ,で,458,458,468,-1.9218 -テキ,的,1299,1299,169,-2.4842 -タク,たく,451,451,17,-3.0166 -マセンヨ,ませんよ,495,288,17,-9.0296 -マセンネ,ませんね,495,279,17,-9.0514 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タクッ,たくっ,451,451,17,-3.2814 -ネ,ね,279,279,47,-2.1699 -テ,て,307,307,356,-1.5059 -ヤ,や,366,366,43,-2.1479 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1201.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1201.csv deleted file mode 100644 index acb7b53..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1201.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -マシタ,ました,501,435,17,-5.7646 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マスガ,ますが,491,299,17,-7.0677 -」,」,7,7,121,-2.0554 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -マスヨ,ますよ,491,288,17,-7.3568 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1202.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1202.csv deleted file mode 100644 index 6feb1b8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1202.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -イ,い,930,930,356,-2.0866 -ナガラ,ながら,314,314,282,-2.7301 -」,」,7,7,121,-2.0554 -ソウ,そう,1301,1301,17,-2.6187 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1203.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1203.csv deleted file mode 100644 index d686aaa..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1203.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -デ,で,458,458,468,-1.9218 -スル,する,599,599,481,-1.9113 -タイ,たい,444,444,17,-2.4250 -ト,と,309,309,282,-2.2641 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -テ,て,307,307,356,-1.5059 -ト,と,164,164,282,-1.8068 -トカ,とか,364,364,17,-2.5396 -ハ,は,261,261,468,-1.3731 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -タ,た,435,435,282,-1.4167 -ネ,ね,279,279,47,-2.1699 -ナド,など,344,344,442,-2.2760 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タク,たく,451,451,17,-3.0166 -シテ,して,610,307,17,-5.1358 -イ,い,930,930,356,-2.0866 -タクッ,たくっ,451,451,17,-3.2814 -・,・,5,5,203,-2.7687 -デキ,でき,625,625,481,-4.3005 -タ,多,1285,1285,351,-4.9124 -ナ,な,275,275,287,-2.5224 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1204.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1204.csv deleted file mode 100644 index a0732ba..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1204.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -デ,で,458,458,468,-1.9218 -ナガラ,ながら,314,314,282,-2.7301 -」,」,7,7,121,-2.0554 -タク,たく,451,451,17,-3.0166 -タクッ,たくっ,451,451,17,-3.2814 -イ,い,930,930,356,-2.0866 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -マシタ,ました,501,435,17,-5.7646 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -』,』,7,7,136,-3.5069 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -モ,も,262,262,468,-1.7239 -フクミ,含み,1285,1285,258,-4.9821 -タイヒト,たい人,444,1285,17,-6.3754 -ト,と,164,164,282,-1.8068 -トキ,時,1285,1285,282,-5.0461 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1205.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1205.csv deleted file mode 100644 index 885ff38..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1205.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -マシタ,ました,501,435,17,-5.7646 -マスガ,ますが,491,299,17,-7.0677 -ハ,は,261,261,468,-1.3731 -ト,と,164,164,282,-1.8068 -マスヨ,ますよ,491,288,17,-7.3568 -ヲ,を,156,156,356,-1.4175 -マスカ,ますか,491,359,17,-7.4921 -ガ,が,148,148,468,-1.4621 -マスネ,ますね,491,279,17,-7.6686 -ノ,の,368,368,408,-1.2458 -テ,て,307,307,356,-1.5059 -」,」,7,7,121,-2.0554 -マスヨネ,ますよね,491,279,17,-8.1272 -マシタガ,ましたが,501,299,17,-7.6859 -マスノデ,ますので,491,316,17,-8.3029 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -マスヨウ,ますよう,491,1312,17,-8.3797 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -マスシ,ますし,491,304,17,-8.5719 -マスヨウニ,ますように,491,329,17,-8.5732 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マスカラ,ますから,491,297,17,-8.7663 -マショウ,ましょう,493,506,17,-7.6695 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1206.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1206.csv deleted file mode 100644 index 799c87f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1206.csv +++ /dev/null @@ -1,30 +0,0 @@ -マシ,まし,501,501,17,-2.0043 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -デ,で,458,458,468,-1.9218 -ダ,だ,453,453,471,-1.9457 -ナ,な,454,454,287,-1.8607 -ヲ,を,156,156,356,-1.4175 -マス,ます,491,491,17,-1.8643 -ガ,が,148,148,468,-1.4621 -タ,た,435,435,282,-1.4167 -シ,し,610,610,258,-1.5936 -トイウ,という,173,173,468,-2.2416 -カ,か,359,359,468,-1.9789 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ノ,の,368,368,408,-1.2458 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -デ,で,308,308,468,-2.9431 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1207.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1207.csv deleted file mode 100644 index a19e904..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1207.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -マス,ます,491,491,17,-1.8643 -タイ,たい,444,444,17,-2.4250 -デ,で,458,458,468,-1.9218 -シ,私,1285,1285,17,-4.2442 -」,」,7,7,121,-2.0554 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -タク,たく,451,451,17,-3.0166 -タ,多,1285,1285,351,-4.9124 -ナ,な,454,454,287,-1.8607 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タクッ,たくっ,451,451,17,-3.2814 -マシタ,ました,501,435,17,-5.7646 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ナガラ,ながら,314,314,282,-2.7301 -「,「,6,6,352,-2.0388 -メ,目,1285,1285,332,-5.6594 -タメ,ため,1313,1313,282,-3.3063 -ムラ,村,1285,1285,489,-5.7051 -ソウ,そう,1301,1301,17,-2.6187 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1208.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1208.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1208.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1209.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1209.csv deleted file mode 100644 index e67052a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1209.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_121.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_121.csv deleted file mode 100644 index 8d16b28..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_121.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ナ,な,275,275,287,-2.5224 -ネ,ね,279,279,47,-2.1699 -「,「,6,6,352,-2.0388 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ッテ,って,167,167,17,-2.3603 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナァ,なぁ,275,275,420,-4.2969 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1210.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1210.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1210.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1211.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1211.csv deleted file mode 100644 index 0fb33df..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1211.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -バイイ,ばいい,318,131,17,-8.3265 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1212.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1212.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1212.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1213.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1213.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1213.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1214.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1214.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1214.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1215.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1215.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1215.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1216.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1216.csv deleted file mode 100644 index a397527..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1216.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -。,。,8,8,61,-1.3115 -モノ,もの,1310,1310,468,-3.9802 -ト,と,164,164,282,-1.8068 -ヨウ,よう,1312,1312,169,-2.2533 -ノデ,ので,316,316,48,-2.3278 -ホウ,方,1310,1310,48,-4.5756 -、,、,10,10,151,-1.2267 -コト,事,1310,1310,282,-4.9393 -カ,か,359,359,468,-1.9789 -・,・,5,5,203,-2.7687 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -カラ,から,297,297,356,-2.3083 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -メ,目,1310,1310,332,-5.6594 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -シ,私,1285,1285,17,-4.2442 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1217.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1217.csv deleted file mode 100644 index f2a55af..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1217.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ナ,な,275,275,287,-2.5224 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ン,ん,1310,1310,437,-3.5653 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1218.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1218.csv deleted file mode 100644 index 860f56c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1218.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -ト,と,164,164,282,-1.8068 -モノ,もの,1310,1310,468,-3.9802 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -モ,も,262,262,468,-1.7239 -ヨウ,よう,1312,1312,169,-2.2533 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -ノデ,ので,316,316,48,-2.3278 -サ,さ,605,605,441,-1.9359 -ホウ,方,1310,1310,48,-4.5756 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1219.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1219.csv deleted file mode 100644 index aec2835..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1219.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,309,309,282,-2.2641 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ホウ,方,1310,1310,48,-4.5756 -。,。,8,8,61,-1.3115 -コト,事,1310,1310,282,-4.9393 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノデ,ので,316,316,48,-2.3278 -、,、,10,10,151,-1.2267 -サ,さ,1304,1304,441,-2.8267 -ヨウ,よう,1312,1312,169,-2.2533 -メ,目,1310,1310,332,-5.6594 -ノ,の,368,368,408,-1.2458 -ワケ,わけ,1310,1310,268,-5.7101 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -キ,気,1310,1310,48,-5.9822 -カラ,から,297,297,356,-2.3083 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ンダ,んだ,1310,453,17,-6.1571 -ダケ,だけ,338,338,468,-2.4590 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_122.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_122.csv deleted file mode 100644 index 23f7afc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_122.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヌ,ぬ,484,484,17,-3.3915 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1220.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1220.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1220.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1221.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1221.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1221.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1222.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1222.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1222.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1223.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1223.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1223.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1224.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1224.csv deleted file mode 100644 index 5ba524d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1224.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナイヒト,ない人,473,1285,501,-5.9561 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1225.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1225.csv deleted file mode 100644 index ea641b2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1225.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1226.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1226.csv deleted file mode 100644 index aa86b45..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1226.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -ナイヒト,ない人,473,1285,501,-5.9561 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1227.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1227.csv deleted file mode 100644 index d81c467..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1227.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ナイ,ない,482,482,468,-2.1746 -ナイヒト,ない人,473,1285,501,-5.9561 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ヌ,ぬ,484,484,17,-3.3915 -ズ,ず,487,487,282,-2.5580 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1228.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1228.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1228.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1229.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1229.csv deleted file mode 100644 index 0a38c40..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1229.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ナ,な,275,275,287,-2.5224 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -ト,と,164,164,282,-1.8068 -ニ,に,151,151,282,-1.3747 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -・,・,5,5,203,-2.7687 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナァ,なぁ,275,275,420,-4.2969 -アリガトウ,ありがとう,3,3,244,-3.6808 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -」,」,7,7,121,-2.0554 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_123.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_123.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_123.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1230.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1230.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1230.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1231.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1231.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1231.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1232.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1232.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1232.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1233.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1233.csv deleted file mode 100644 index 0ebac14..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1233.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -・,・,5,5,203,-2.7687 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1234.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1234.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1234.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1235.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1235.csv deleted file mode 100644 index 2c79413..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1235.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -・,・,5,5,203,-2.7687 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1236.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1236.csv deleted file mode 100644 index cf3dd7b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1236.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -・,・,5,5,203,-2.7687 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1237.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1237.csv deleted file mode 100644 index 46c9b69..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1237.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -」,」,7,7,121,-2.0554 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -ヨ,よ,288,288,17,-2.1474 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1238.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1238.csv deleted file mode 100644 index 2449802..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1238.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -。,。,8,8,61,-1.3115 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1239.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1239.csv deleted file mode 100644 index 6777be2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1239.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -シ,し,610,610,258,-1.5936 -マス,ます,491,491,17,-1.8643 -ネ,ね,279,279,47,-2.1699 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_124.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_124.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_124.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1240.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1240.csv deleted file mode 100644 index e7e1a25..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1240.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -テイル,ている,307,919,17,-5.6469 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -、,、,10,10,151,-1.2267 -テイ,てい,307,930,17,-5.8308 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -タガ,たが,435,299,17,-6.8350 -ガ,が,148,148,468,-1.4621 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タケド,たけど,435,301,17,-7.1281 -モ,も,262,262,468,-1.7239 -タノデ,たので,435,316,17,-7.1379 -ト,と,164,164,282,-1.8068 -テモ,ても,307,262,17,-6.4044 -タカラ,たから,435,297,17,-7.2365 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1241.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1241.csv deleted file mode 100644 index 494daaf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1241.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1242.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1242.csv deleted file mode 100644 index 73ec247..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1242.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -レ,れ,876,876,468,-2.0223 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -シ,し,610,610,258,-1.5936 -タコト,たこと,435,1310,17,-6.9351 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -テモ,ても,307,262,17,-6.4044 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -ト,と,164,164,282,-1.8068 -テイタ,ていた,307,435,17,-6.4827 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1243.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1243.csv deleted file mode 100644 index 8fadd67..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1243.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タリ,たり,360,360,451,-2.5700 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タガ,たが,435,299,17,-6.8350 -チャウ,ちゃう,307,1253,17,-6.9038 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -タカラ,たから,435,297,17,-7.2365 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -タト,たと,435,164,17,-7.3867 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1244.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1244.csv deleted file mode 100644 index f16716b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1244.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -マシタ,ました,501,435,17,-5.7646 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -マスガ,ますが,491,299,17,-7.0677 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -マスヨ,ますよ,491,288,17,-7.3568 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -マセ,ませ,497,497,17,-2.1344 -マスカ,ますか,491,359,17,-7.4921 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -マスネ,ますね,491,279,17,-7.6686 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1245.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1245.csv deleted file mode 100644 index b3d35ff..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1245.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ッテ,って,167,167,17,-2.3603 -マシ,まし,499,499,17,-2.1355 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,501,501,17,-2.0043 -マス,ます,491,491,17,-1.8643 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -トイウ,という,173,173,468,-2.2416 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1246.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1246.csv deleted file mode 100644 index 54bdb8c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1246.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,501,501,17,-2.0043 -、,、,10,10,151,-1.2267 -マシ,まし,499,499,17,-2.1355 -ナ,な,275,275,287,-2.5224 -マシタ,ました,501,435,17,-5.7646 -マスガ,ますが,491,299,17,-7.0677 -マスヨ,ますよ,491,288,17,-7.3568 -ノ,の,368,368,408,-1.2458 -ダ,だ,453,453,471,-1.9457 -ッテ,って,167,167,17,-2.3603 -。,。,8,8,61,-1.3115 -マスカ,ますか,491,359,17,-7.4921 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ヨ,よ,288,288,17,-2.1474 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -マスネ,ますね,491,279,17,-7.6686 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -デキ,でき,625,625,481,-4.3005 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1247.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1247.csv deleted file mode 100644 index 82fe013..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1247.csv +++ /dev/null @@ -1,30 +0,0 @@ -マセ,ませ,497,497,17,-2.1344 -マシ,まし,501,501,17,-2.0043 -マス,ます,491,491,17,-1.8643 -マシ,まし,499,499,17,-2.1355 -デス,です,460,460,17,-1.8655 -ナ,な,454,454,287,-1.8607 -テ,て,307,307,356,-1.5059 -ワタシ,私,1306,1306,17,-3.6243 -デ,で,458,458,468,-1.9218 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -エミ,笑,1291,1291,389,-4.2993 -マシタ,ました,501,435,17,-5.7646 -ネエ,ねえ,20,20,468,-2.2298 -ナニ,何,1306,1306,468,-4.3760 -ミタイ,みたい,1311,1311,66,-2.8295 -ダ,だ,453,453,471,-1.9457 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -テキ,的,1299,1299,169,-2.4842 -ナカ,中,1314,1314,282,-4.2761 -ボク,僕,1306,1306,17,-5.1386 -ココ,ここ,1306,1306,468,-5.1573 -カレ,彼,1306,1306,25,-5.1723 -イ,い,930,930,356,-2.0866 -コチラ,こちら,1306,1306,468,-5.2456 -ダレ,誰,1306,1306,17,-5.2817 -ソコ,そこ,1306,1306,290,-5.3090 -イマ,今,1314,1314,468,-4.6147 -タ,た,435,435,282,-1.4167 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1248.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1248.csv deleted file mode 100644 index a5b1907..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1248.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ヨ,よ,288,288,17,-2.1474 -ト,と,164,164,282,-1.8068 -ッテ,って,167,167,17,-2.3603 -ノ,の,368,368,408,-1.2458 -トイウ,という,173,173,468,-2.2416 -トカ,とか,364,364,17,-2.5396 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -バイイ,ばいい,318,131,17,-8.3265 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -キ,き,516,516,356,-3.5399 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ト,と,309,309,282,-2.2641 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1249.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1249.csv deleted file mode 100644 index f4bdbad..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1249.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ト,と,164,164,282,-1.8068 -ヨ,よ,288,288,17,-2.1474 -テ,て,307,307,356,-1.5059 -ッテ,って,167,167,17,-2.3603 -ト,と,309,309,282,-2.2641 -トイウ,という,173,173,468,-2.2416 -タ,た,435,435,282,-1.4167 -マス,ます,491,491,17,-1.8643 -バイイ,ばいい,318,131,17,-8.3265 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ナイ,ない,473,473,468,-1.8979 -トカ,とか,364,364,17,-2.5396 -バイイノ,ばいいの,318,1310,17,-9.4603 -ネエ,ねえ,20,20,468,-2.2298 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -ル,る,547,547,495,-3.7188 -、,、,10,10,151,-1.2267 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -。,。,8,8,61,-1.3115 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_125.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_125.csv deleted file mode 100644 index 393598c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_125.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -…,…,5,5,184,-3.3301 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1250.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1250.csv deleted file mode 100644 index 06496fc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1250.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -バ,ば,318,318,282,-2.3431 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テモ,ても,307,262,17,-6.4044 -ガ,が,148,148,468,-1.4621 -テイタ,ていた,307,435,17,-6.4827 -シ,し,610,610,258,-1.5936 -ナ,な,12,12,468,-2.1172 -デ,で,149,149,468,-1.6148 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ヨ,よ,288,288,17,-2.1474 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -チャウ,ちゃう,307,1253,17,-6.9038 -サ,さ,605,605,441,-1.9359 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1251.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1251.csv deleted file mode 100644 index 0886f3e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1251.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -バ,ば,318,318,282,-2.3431 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -タリ,たり,360,360,451,-2.5700 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ハ,は,261,261,468,-1.3731 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -テイル,ている,307,919,17,-5.6469 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1252.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1252.csv deleted file mode 100644 index 5064120..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1252.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ヨ,よ,288,288,17,-2.1474 -ノ,の,1310,1310,408,-2.7847 -カラ,から,297,297,356,-2.3083 -ン,ん,1310,1310,437,-3.5653 -・,・,5,5,203,-2.7687 -ノ,の,368,368,408,-1.2458 -ト,と,309,309,282,-2.2641 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -モノ,もの,1310,1310,468,-3.9802 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -…,…,5,5,184,-3.3301 -ネ,ね,279,279,47,-2.1699 -ケド,けど,301,301,17,-2.4058 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -シ,し,304,304,258,-2.5363 -ノデ,ので,316,316,48,-2.3278 -カラ,から,147,147,356,-1.9960 -ワ,わ,291,291,36,-2.7424 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1253.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1253.csv deleted file mode 100644 index 33c9ba0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1253.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -ヨ,よ,288,288,17,-2.1474 -モノ,もの,1310,1310,468,-3.9802 -カラ,から,297,297,356,-2.3083 -、,、,10,10,151,-1.2267 -ノデ,ので,316,316,48,-2.3278 -・,・,5,5,203,-2.7687 -ホウ,方,1310,1310,48,-4.5756 -ト,と,164,164,282,-1.8068 -ノ,の,368,368,408,-1.2458 -コト,事,1310,1310,282,-4.9393 -トイウ,という,173,173,468,-2.2416 -ヨウ,よう,1312,1312,169,-2.2533 -…,…,5,5,184,-3.3301 -カモ,かも,330,330,252,-2.7352 -デ,で,149,149,468,-1.6148 -ケド,けど,301,301,17,-2.4058 -シ,私,1285,1285,17,-4.2442 -シ,し,304,304,258,-2.5363 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -カ,か,359,359,468,-1.9789 -ネ,ね,279,279,47,-2.1699 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1254.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1254.csv deleted file mode 100644 index 9a1df7a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1254.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ト,と,309,309,282,-2.2641 -ネ,ね,279,279,47,-2.1699 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -タメ,ため,1313,1313,282,-3.3063 -ヨウ,よう,1312,1312,169,-2.2533 -カ,か,359,359,468,-1.9789 -ホウ,方,1310,1310,48,-4.5756 -ノ,の,368,368,408,-1.2458 -」,」,7,7,121,-2.0554 -コト,事,1310,1310,282,-4.9393 -トイウ,という,173,173,468,-2.2416 -シカ,しか,257,257,268,-2.7748 -トキ,時,1313,1313,282,-4.1345 -タ,た,435,435,282,-1.4167 -ナカ,中,1313,1313,282,-4.2761 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -ヨ,よ,288,288,17,-2.1474 -メ,目,1310,1310,332,-5.6594 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -ワケ,わけ,1310,1310,268,-5.7101 -ナカ,中,1285,1285,282,-4.2761 -トコロ,ところ,1313,1313,282,-4.6437 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1255.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1255.csv deleted file mode 100644 index 21fc95c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1255.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -ヨウ,よう,1312,1312,169,-2.2533 -モノ,もの,1310,1310,468,-3.9802 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,299,299,468,-2.0560 -ノ,の,368,368,408,-1.2458 -」,」,7,7,121,-2.0554 -トイウ,という,173,173,468,-2.2416 -ホウ,方,1310,1310,48,-4.5756 -タ,多,1285,1285,351,-4.9124 -コト,事,1310,1310,282,-4.9393 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -「,「,6,6,352,-2.0388 -タメ,ため,1313,1313,282,-3.3063 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ト,と,309,309,282,-2.2641 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1310,1310,332,-5.6594 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1256.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1256.csv deleted file mode 100644 index 1b0c63b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1256.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1257.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1257.csv deleted file mode 100644 index f0281fe..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1257.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -ナ,な,454,454,287,-1.8607 -・,・,5,5,203,-2.7687 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1258.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1258.csv deleted file mode 100644 index 6b50b74..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1258.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ウカ,うか,506,359,17,-6.6916 -カ,か,359,359,468,-1.9789 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1259.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1259.csv deleted file mode 100644 index 9e208d0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1259.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -タ,た,435,435,282,-1.4167 -ウカ,うか,506,359,17,-6.6916 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -?,?,1317,1317,17,-2.1596 -テ,て,307,307,356,-1.5059 -…,…,5,5,184,-3.3301 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -ウト,うと,506,164,17,-7.3953 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_126.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_126.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_126.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1260.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1260.csv deleted file mode 100644 index 367036b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1260.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1261.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1261.csv deleted file mode 100644 index 29ced8e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1261.csv +++ /dev/null @@ -1,30 +0,0 @@ -イ,い,930,930,356,-2.0866 -ナイ,ない,473,473,468,-1.8979 -ミ,み,930,930,52,-4.5938 -レ,れ,876,876,468,-2.0223 -スギ,すぎ,930,930,268,-5.1245 -ツヅケ,続け,930,930,258,-5.8731 -ハジメ,始め,930,930,258,-5.9534 -ナイ,ない,482,482,468,-2.1746 -イタ,いた,930,435,17,-6.4448 -イケ,いけ,930,930,268,-6.4471 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -アゲ,あげ,930,930,52,-6.6301 -イマス,います,930,491,17,-6.7152 -ズ,ず,487,487,282,-2.5580 -ナイヒト,ない人,473,1285,501,-5.9561 -スギ,過ぎ,930,930,268,-6.9328 -モラエ,もらえ,930,930,268,-7.0090 -セ,せ,876,876,258,-4.2710 -テ,て,930,930,356,-7.3088 -ヌ,ぬ,484,484,17,-3.3915 -イテ,いて,930,307,17,-7.6391 -アゲ,上げ,930,930,258,-7.7639 -スギテ,すぎて,930,307,17,-7.8396 -チャ,ちゃ,930,261,80,-7.8396 -カケ,かけ,930,930,301,-7.8914 -ナク,なく,481,481,468,-2.5033 -エ,得,930,930,52,-7.9037 -ラレル,られる,870,870,471,-3.6838 -イマシ,いまし,930,501,17,-7.9254 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1262.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1262.csv deleted file mode 100644 index 04159cf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1262.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ン,ん,515,515,437,-2.4192 -ネ,ね,279,279,47,-2.1699 -ナイヒト,ない人,473,1285,501,-5.9561 -ナ,な,468,468,287,-2.1830 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -モ,も,262,262,468,-1.7239 -ズ,ず,487,487,282,-2.5580 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1263.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1263.csv deleted file mode 100644 index 559ef53..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1263.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ナイ,ない,473,473,468,-1.8979 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -レル,れる,870,870,468,-2.2380 -ナク,なく,481,481,468,-2.5033 -ズ,ず,487,487,282,-2.5580 -ナクッ,なくっ,481,481,17,-2.7253 -ラレル,られる,870,870,471,-3.6838 -レテ,れて,876,307,17,-6.2446 -ナイヒト,ない人,473,1285,501,-5.9561 -ナイ,ない,482,482,468,-2.1746 -レタ,れた,876,435,17,-6.3748 -テ,て,307,307,356,-1.5059 -セル,せる,870,870,43,-4.3284 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -ナ,な,454,454,287,-1.8607 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ナ,な,468,468,287,-2.1830 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ナイデス,ないです,473,460,17,-7.2367 -レテイ,れてい,876,930,17,-7.5959 -ナイカ,ないか,473,359,17,-7.2908 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1264.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1264.csv deleted file mode 100644 index a375244..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1264.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -キ,き,516,516,356,-3.5399 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1265.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1265.csv deleted file mode 100644 index 381968c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1265.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -。,。,8,8,61,-1.3115 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1266.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1266.csv deleted file mode 100644 index 4489686..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1266.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -」,」,7,7,121,-2.0554 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1267.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1267.csv deleted file mode 100644 index 8f403b1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1267.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1268.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1268.csv deleted file mode 100644 index f5d8019..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1268.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -テモ,ても,307,262,17,-6.4044 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -テイタ,ていた,307,435,17,-6.4827 -タケド,たけど,435,301,17,-7.1281 -テキ,てき,307,904,17,-6.6849 -タノデ,たので,435,316,17,-7.1379 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タカラ,たから,435,297,17,-7.2365 -チャウ,ちゃう,307,1253,17,-6.9038 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -タンダ,たんだ,435,453,17,-7.5585 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -タトキ,た時,435,1313,17,-7.6509 -テミ,てみ,307,930,17,-7.2116 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1269.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1269.csv deleted file mode 100644 index 73375c4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1269.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -テモ,ても,307,262,17,-6.4044 -タト,たと,435,164,17,-7.3867 -テイタ,ていた,307,435,17,-6.4827 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -タトキ,た時,435,1313,17,-7.6509 -テイマス,ています,307,491,17,-6.7459 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -チャウ,ちゃう,307,1253,17,-6.9038 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_127.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_127.csv deleted file mode 100644 index f920ff5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_127.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1270.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1270.csv deleted file mode 100644 index 5ec12ad..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1270.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -タガ,たが,435,299,17,-6.8350 -テクダサイ,てください,307,1239,17,-7.1772 -タン,たん,435,1310,17,-6.8934 -テミ,てみ,307,930,17,-7.2116 -タコト,たこと,435,1310,17,-6.9351 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1271.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1271.csv deleted file mode 100644 index b407b7c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1271.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -テクレル,てくれる,307,933,17,-7.5487 -テイク,ていく,307,992,17,-7.5930 -テシマイ,てしまい,307,1273,17,-7.6492 -テイナイ,ていない,307,473,17,-7.6534 -テカラ,てから,307,147,17,-7.6796 -テイテ,ていて,307,307,17,-7.6863 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1272.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1272.csv deleted file mode 100644 index af72508..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1272.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -イチ,一,1295,1295,134,-3.3833 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -テ,て,307,307,356,-1.5059 -タメ,ため,1313,1313,282,-3.3063 -ネ,ね,279,279,47,-2.1699 -ヲ,を,156,156,356,-1.4175 -・,・,5,5,203,-2.7687 -ガ,が,148,148,468,-1.4621 -デキ,でき,625,625,481,-4.3005 -デ,で,149,149,468,-1.6148 -ワタシ,私,1306,1306,17,-3.6243 -ニ,二,1295,1295,134,-4.2425 -コノ,この,1315,1315,468,-3.0084 -ソウ,そう,1282,1282,17,-4.0423 -タ,多,1285,1285,351,-4.9124 -ソノ,その,1315,1315,468,-3.1000 -ミ,見,625,625,52,-4.5511 -フクミ,含み,1285,1285,258,-4.9821 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -トキ,時,1285,1285,282,-5.0461 -。,。,8,8,61,-1.3115 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1273.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1273.csv deleted file mode 100644 index ef4ef0b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1273.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -、,、,10,10,151,-1.2267 -ソウ,そう,1301,1301,17,-2.6187 -マシタ,ました,501,435,17,-5.7646 -。,。,8,8,61,-1.3115 -テキ,的,1299,1299,169,-2.4842 -タイ,たい,444,444,17,-2.4250 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ス,す,602,602,481,-2.2579 -モンダイ,問題,1284,1284,468,-3.2769 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1274.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1274.csv deleted file mode 100644 index 6c8d184..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1274.csv +++ /dev/null @@ -1,30 +0,0 @@ -マシ,まし,501,501,17,-2.0043 -、,、,10,10,151,-1.2267 -タイ,たい,444,444,17,-2.4250 -マス,ます,491,491,17,-1.8643 -ニ,に,151,151,282,-1.3747 -ナガラ,ながら,314,314,282,-2.7301 -マシタ,ました,501,435,17,-5.7646 -タ,た,435,435,282,-1.4167 -タク,たく,451,451,17,-3.0166 -タクッ,たくっ,451,451,17,-3.2814 -タイヒト,たい人,444,1285,17,-6.3754 -ヤスイ,やすい,113,113,48,-3.4181 -ナ,な,275,275,287,-2.5224 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -マシタガ,ましたが,501,299,17,-7.6859 -「,「,6,6,352,-2.0388 -ツツ,つつ,306,306,356,-3.2088 -タイデス,たいです,444,460,17,-7.8752 -タ,多,1285,1285,351,-4.9124 -タ,た,439,439,282,-2.7177 -タイト,たいと,444,164,17,-7.9701 -ヤスク,やすく,129,129,48,-3.4884 -フクミ,含み,1285,1285,258,-4.9821 -マスガ,ますが,491,299,17,-7.0677 -トキ,時,1285,1285,282,-5.0461 -イ,い,930,930,356,-2.0866 -ニクイ,にくい,113,113,48,-4.5700 -タチ,立ち,1285,1285,356,-5.2862 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1275.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1275.csv deleted file mode 100644 index 001d8f6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1275.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ナガラ,ながら,314,314,282,-2.7301 -タイ,たい,444,444,17,-2.4250 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -デ,で,458,458,468,-1.9218 -デス,です,460,460,17,-1.8655 -テ,て,307,307,356,-1.5059 -ノ,の,368,368,408,-1.2458 -イ,い,930,930,356,-2.0866 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ナ,な,454,454,287,-1.8607 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,308,308,468,-2.9431 -「,「,6,6,352,-2.0388 -・,・,5,5,203,-2.7687 -タク,たく,451,451,17,-3.0166 -モ,も,262,262,468,-1.7239 -』,』,7,7,136,-3.5069 -シ,し,610,610,258,-1.5936 -トカ,とか,364,364,17,-2.5396 -タ,多,1285,1285,351,-4.9124 -ト,と,164,164,282,-1.8068 -ミタイ,みたい,1311,1311,66,-2.8295 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1276.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1276.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1276.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1277.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1277.csv deleted file mode 100644 index 2013c90..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1277.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -コト,こと,1310,1310,282,-2.6917 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1278.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1278.csv deleted file mode 100644 index 9a2ec2e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1278.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1279.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1279.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1279.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_128.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_128.csv deleted file mode 100644 index aded9b1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_128.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 -タトキ,たとき,435,1313,17,-8.2266 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1280.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1280.csv deleted file mode 100644 index 188c1be..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1280.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1281.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1281.csv deleted file mode 100644 index 1ba69dc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1281.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -シ,し,610,610,258,-1.5936 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -トキ,時,1285,1285,282,-5.0461 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -マセ,ませ,497,497,17,-2.1344 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -コノ,この,1315,1315,468,-3.0084 -タチ,立ち,1285,1285,356,-5.2862 -ト,と,309,309,282,-2.2641 -カズ,数,1285,1285,387,-5.3011 -ソノ,その,1315,1315,468,-3.1000 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -アリ,あり,409,409,249,-2.3509 -アル,ある,772,772,481,-2.9588 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1282.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1282.csv deleted file mode 100644 index 83b20f0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1282.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -シ,し,610,610,258,-1.5936 -ハ,は,261,261,468,-1.3731 -ナ,な,454,454,287,-1.8607 -ダ,だ,453,453,471,-1.9457 -ニ,に,329,329,282,-2.1199 -カ,か,359,359,468,-1.9789 -デス,です,460,460,17,-1.8655 -モ,も,262,262,468,-1.7239 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,328,328,282,-2.9686 -デ,で,458,458,468,-1.9218 -。,。,8,8,61,-1.3115 -アル,ある,772,772,481,-2.9588 -タ,多,1285,1285,351,-4.9124 -スル,する,599,599,481,-1.9113 -ナル,なる,772,772,471,-3.0967 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -デモ,でも,341,341,468,-2.6375 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ト,と,150,150,282,-2.0125 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1283.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1283.csv deleted file mode 100644 index 3c5b460..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1283.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,し,610,610,258,-1.5936 -ヲ,を,156,156,356,-1.4175 -ノ,の,368,368,408,-1.2458 -サ,さ,605,605,441,-1.9359 -スル,する,599,599,481,-1.9113 -ガ,が,148,148,468,-1.4621 -ニ,に,151,151,282,-1.3747 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -シテ,して,610,307,17,-5.1358 -デス,です,460,460,17,-1.8655 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,150,150,282,-2.0125 -ヤ,や,366,366,43,-2.1479 -ト,と,363,363,282,-2.1096 -デ,で,458,458,468,-1.9218 -・,・,5,5,203,-2.7687 -ダ,だ,453,453,471,-1.9457 -シタ,した,610,435,17,-5.8065 -カラ,から,147,147,356,-1.9960 -ゴ,後,1305,1305,282,-3.3643 -テキ,的,1299,1299,169,-2.4842 -タ,多,1285,1285,351,-4.9124 -ナド,など,344,344,442,-2.2760 -ナ,な,454,454,287,-1.8607 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1284.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1284.csv deleted file mode 100644 index 30aa87f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1284.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ガ,が,148,148,468,-1.4621 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -ニ,に,151,151,282,-1.3747 -ノ,の,368,368,408,-1.2458 -デ,で,149,149,468,-1.6148 -ナク,なく,481,481,468,-2.5033 -モ,も,262,262,468,-1.7239 -ナクッ,なくっ,481,481,17,-2.7253 -デス,です,460,460,17,-1.8655 -、,、,10,10,151,-1.2267 -ゴザイ,ござい,428,428,17,-2.6577 -ダ,だ,453,453,471,-1.9457 -ト,と,150,150,282,-2.0125 -ナ,な,454,454,287,-1.8607 -。,。,8,8,61,-1.3115 -デ,で,458,458,468,-1.9218 -アリ,あり,788,788,481,-3.1265 -カラ,から,147,147,356,-1.9960 -ナリ,なり,788,788,471,-3.2643 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -ヤ,や,366,366,43,-2.1479 -トシテ,として,179,179,356,-2.2226 -ニツイテ,について,199,199,468,-2.6527 -ナド,など,344,344,442,-2.2760 -ナシ,なし,475,475,258,-2.1849 -ノ,の,153,153,408,-2.5621 -カ,化,1297,1297,375,-2.9872 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1285.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1285.csv deleted file mode 100644 index d941258..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1285.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ヲ,を,156,156,356,-1.4175 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -ハ,は,261,261,468,-1.3731 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -デ,で,458,458,468,-1.9218 -」,」,7,7,121,-2.0554 -カラ,から,147,147,356,-1.9960 -ダ,だ,453,453,471,-1.9457 -ト,と,363,363,282,-2.1096 -デス,です,460,460,17,-1.8655 -ヤ,や,366,366,43,-2.1479 -・,・,5,5,203,-2.7687 -シ,私,1285,1285,17,-4.2442 -トシテ,として,179,179,356,-2.2226 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,454,454,287,-1.8607 -シ,し,610,610,258,-1.5936 -「,「,6,6,352,-2.0388 -…,…,5,5,184,-3.3301 -テキ,的,1299,1299,169,-2.4842 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ト,と,164,164,282,-1.8068 -ナド,など,344,344,442,-2.2760 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1286.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1286.csv deleted file mode 100644 index 9074f87..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1286.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -『,『,6,6,322,-3.4104 -【,【,6,6,473,-5.2474 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -“,“,6,6,299,-6.0920 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -《,《,6,6,416,-6.4975 -ノ,の,368,368,408,-1.2458 -ス,す,602,602,481,-2.2579 -タチ,立ち,1285,1285,356,-5.2862 -ワタシ,私,1306,1306,17,-3.6243 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -〈,〈,6,6,389,-7.0936 -デキ,出来,1285,1285,268,-5.7335 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1287.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1287.csv deleted file mode 100644 index 55bd33a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1287.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,454,454,287,-1.8607 -ニ,に,329,329,282,-2.1199 -ニ,に,151,151,282,-1.3747 -デ,で,458,458,468,-1.9218 -デス,です,460,460,17,-1.8655 -ノ,の,368,368,408,-1.2458 -ダ,だ,453,453,471,-1.9457 -ガ,が,148,148,468,-1.4621 -。,。,8,8,61,-1.3115 -ヲ,を,156,156,356,-1.4175 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ト,と,150,150,282,-2.0125 -カ,か,359,359,468,-1.9789 -シ,し,610,610,258,-1.5936 -」,」,7,7,121,-2.0554 -・,・,5,5,203,-2.7687 -ナイ,ない,473,473,468,-1.8979 -デシ,でし,466,466,17,-2.1485 -!,!,1318,1318,244,-1.9828 -ジャ,じゃ,334,334,247,-2.7478 -ガ,が,299,299,468,-2.0560 -ナカレ,なかれ,30,30,468,-2.1172 -シ,私,1285,1285,17,-4.2442 -アル,ある,403,403,481,-2.1570 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,468,468,287,-2.1830 -ナシ,なし,475,475,258,-2.1849 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1288.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1288.csv deleted file mode 100644 index a19ddb6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1288.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -デ,で,458,458,468,-1.9218 -・,・,5,5,203,-2.7687 -ト,と,363,363,282,-2.1096 -シ,私,1285,1285,17,-4.2442 -ヤ,や,366,366,43,-2.1479 -ナカ,中,1285,1285,282,-4.2761 -』,』,7,7,136,-3.5069 -シ,し,610,610,258,-1.5936 -「,「,6,6,352,-2.0388 -ト,と,164,164,282,-1.8068 -デス,です,460,460,17,-1.8655 -トシテ,として,179,179,356,-2.2226 -ナド,など,344,344,442,-2.2760 -…,…,5,5,184,-3.3301 -マデ,まで,355,355,143,-2.3294 -ダ,だ,453,453,471,-1.9457 -タ,多,1285,1285,351,-4.9124 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1289.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1289.csv deleted file mode 100644 index f66a7a0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1289.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -ヲ,を,156,156,356,-1.4175 -ニ,に,151,151,282,-1.3747 -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -ト,と,363,363,282,-2.1096 -サン,さん,1302,1302,420,-2.7569 -ト,と,164,164,282,-1.8068 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -ヤ,や,366,366,43,-2.1479 -カラ,から,147,147,356,-1.9960 -…,…,5,5,184,-3.3301 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,150,150,282,-2.0125 -』,』,7,7,136,-3.5069 -!,!,1318,1318,244,-1.9828 -ガ,が,299,299,468,-2.0560 -ナド,など,344,344,442,-2.2760 -チャン,ちゃん,1302,1302,51,-4.1693 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_129.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_129.csv deleted file mode 100644 index 3db4406..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_129.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -アル,ある,772,772,481,-2.9588 -スル,する,599,599,481,-1.9113 -ナル,なる,772,772,471,-3.0967 -シ,し,610,610,258,-1.5936 -アリ,あり,788,788,481,-3.1265 -ナリ,なり,788,788,471,-3.2643 -テル,てる,307,919,17,-4.3303 -ハ,は,261,261,468,-1.3731 -ヤル,やる,772,772,17,-5.2305 -テ,て,307,930,356,-4.8756 -ナイ,ない,473,473,468,-1.8979 -ワカル,わかる,772,772,481,-5.6202 -ツクル,作る,772,772,481,-5.6347 -シル,知る,772,772,438,-5.6604 -ハイル,入る,772,772,471,-5.6705 -モ,も,262,262,468,-1.7239 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -キリ,切り,788,788,379,-5.3631 -ヤリ,やり,788,788,17,-5.3974 -デキ,でき,625,625,481,-4.3005 -ワカル,分かる,772,772,481,-6.1317 -テイル,ている,307,919,17,-5.6469 -イリ,いり,788,788,468,-5.6221 -サ,さ,605,605,441,-1.9359 -クリ,くり,788,788,471,-5.6253 -セリ,せり,788,788,43,-5.6425 -カワル,変わる,772,772,471,-6.2425 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1290.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1290.csv deleted file mode 100644 index ff0a948..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1290.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -サン,さん,1302,1302,420,-2.7569 -エミ,笑,1291,1291,389,-4.2993 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -・,・,5,5,203,-2.7687 -ト,と,150,150,282,-2.0125 -」,」,7,7,121,-2.0554 -ト,と,363,363,282,-2.1096 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -チャン,ちゃん,1302,1302,51,-4.1693 -フクミ,含み,1285,1285,258,-4.9821 -デ,で,149,149,468,-1.6148 -トキ,時,1285,1285,282,-5.0461 -カラ,から,147,147,356,-1.9960 -…,…,5,5,184,-3.3301 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -クン,くん,1302,1302,244,-4.6195 -。,。,8,8,61,-1.3115 -ミ,見,1285,1285,52,-5.3943 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1291.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1291.csv deleted file mode 100644 index 90253ab..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1291.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -サン,さん,1302,1302,420,-2.7569 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -・,・,5,5,203,-2.7687 -」,」,7,7,121,-2.0554 -…,…,5,5,184,-3.3301 -。,。,8,8,61,-1.3115 -「,「,6,6,352,-2.0388 -ト,と,363,363,282,-2.1096 -チャン,ちゃん,1302,1302,51,-4.1693 -モ,も,262,262,468,-1.7239 -ト,と,150,150,282,-2.0125 -シ,私,1285,1285,17,-4.2442 -〜,〜,5,5,244,-4.0997 -ナカ,中,1285,1285,282,-4.2761 -クン,くん,1302,1302,244,-4.6195 -サマ,様,1302,1302,66,-5.0333 -』,』,7,7,136,-3.5069 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -!,!,1318,1318,244,-1.9828 -シ,氏,1302,1302,464,-5.2915 -トキ,時,1285,1285,282,-5.0461 -デ,で,458,458,468,-1.9218 -ト,と,164,164,282,-1.8068 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1292.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1292.csv deleted file mode 100644 index 6af0916..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1292.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ハ,は,261,261,468,-1.3731 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -デ,で,149,149,468,-1.6148 -ヲ,を,156,156,356,-1.4175 -」,」,7,7,121,-2.0554 -ト,と,150,150,282,-2.0125 -カラ,から,147,147,356,-1.9960 -・,・,5,5,203,-2.7687 -ト,と,363,363,282,-2.1096 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -ヤ,や,366,366,43,-2.1479 -…,…,5,5,184,-3.3301 -タ,多,1285,1285,351,-4.9124 -ヘ,へ,154,154,282,-2.4384 -フクミ,含み,1285,1285,258,-4.9821 -ナド,など,344,344,442,-2.2760 -トキ,時,1285,1285,282,-5.0461 -』,』,7,7,136,-3.5069 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -サン,さん,1302,1302,420,-2.7569 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1293.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1293.csv deleted file mode 100644 index 78f7a33..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1293.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -ヲ,を,156,156,356,-1.4175 -ハ,は,261,261,468,-1.3731 -ガ,が,148,148,468,-1.4621 -カラ,から,147,147,356,-1.9960 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -・,・,5,5,203,-2.7687 -ト,と,363,363,282,-2.1096 -」,」,7,7,121,-2.0554 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -…,…,5,5,184,-3.3301 -ヘ,へ,154,154,282,-2.4384 -トキ,時,1285,1285,282,-5.0461 -ト,と,150,150,282,-2.0125 -。,。,8,8,61,-1.3115 -ヤ,や,366,366,43,-2.1479 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -マデ,まで,355,355,143,-2.3294 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1294.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1294.csv deleted file mode 100644 index 3077a12..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1294.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -デ,で,149,149,468,-1.6148 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ガ,が,148,148,468,-1.4621 -ヲ,を,156,156,356,-1.4175 -カラ,から,147,147,356,-1.9960 -シ,私,1285,1285,17,-4.2442 -・,・,5,5,203,-2.7687 -ナカ,中,1285,1285,282,-4.2761 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ヤ,や,366,366,43,-2.1479 -ヘ,へ,154,154,282,-2.4384 -…,…,5,5,184,-3.3301 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -モ,も,262,262,468,-1.7239 -ナド,など,344,344,442,-2.2760 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -〜,〜,5,5,244,-4.0997 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1295.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1295.csv deleted file mode 100644 index f960967..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1295.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニン,人,1300,1300,408,-4.3785 -ノ,の,368,368,408,-1.2458 -イチ,一,1295,1295,134,-3.3833 -メイ,名,1300,1300,454,-5.2609 -ネン,年,1300,1300,143,-5.4207 -ニチ,日,1300,1300,380,-5.4308 -カゲツ,ヶ月,1300,1300,454,-5.4901 -ド,度,1300,1300,351,-5.5593 -カイ,回,1300,1300,143,-5.7100 -シュウ,州,1300,1300,272,-5.7511 -エン,円,1300,1300,354,-5.9406 -ニ,二,1295,1295,134,-4.2425 -リョウ,両,1300,1300,454,-6.1596 -ニ,に,151,151,282,-1.3747 -ジョウ,条,1300,1300,86,-6.2553 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -セン,戦,1300,1300,178,-6.3044 -ダイ,台,1300,1300,221,-6.3717 -メートル,メートル,1300,1300,221,-6.4214 -セキ,隻,1300,1300,454,-6.4386 -キ,機,1300,1300,413,-6.4405 -タテ,立て,1300,1300,52,-6.4478 -サク,作,1300,1300,424,-6.4589 -コ,個,1300,1300,454,-6.4718 -サツ,冊,1300,1300,454,-6.4760 -メン,面,1300,1300,351,-6.4940 -マイ,枚,1300,1300,454,-6.5685 -マン,万,1295,1295,354,-4.7177 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1296.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1296.csv deleted file mode 100644 index 222eeff..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1296.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ニッポン,日本,1294,1294,240,-3.5368 -ヲ,を,156,156,356,-1.4175 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -、,、,10,10,151,-1.2267 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ハ,は,261,261,468,-1.3731 -アソビ,遊び,1285,1285,290,-5.5478 -ガ,が,148,148,468,-1.4621 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -アメリカ,アメリカ,1294,1294,240,-4.8964 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1297.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1297.csv deleted file mode 100644 index 48b59f5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1297.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,し,610,610,258,-1.5936 -サ,さ,605,605,441,-1.9359 -スル,する,599,599,481,-1.9113 -ヲ,を,156,156,356,-1.4175 -ノ,の,368,368,408,-1.2458 -ガ,が,148,148,468,-1.4621 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -ト,と,363,363,282,-2.1096 -シテ,して,610,307,17,-5.1358 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -」,」,7,7,121,-2.0554 -シタ,した,610,435,17,-5.8065 -ヤ,や,366,366,43,-2.1479 -ナド,など,344,344,442,-2.2760 -デ,で,458,458,468,-1.9218 -・,・,5,5,203,-2.7687 -サレ,され,605,876,17,-6.0438 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,164,164,282,-1.8068 -デス,です,460,460,17,-1.8655 -シテイル,している,610,919,17,-6.7223 -…,…,5,5,184,-3.3301 -ダ,だ,453,453,471,-1.9457 -シマス,します,610,491,17,-6.8098 -』,』,7,7,136,-3.5069 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1298.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1298.csv deleted file mode 100644 index 8791735..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1298.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ハ,は,261,261,468,-1.3731 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ト,と,150,150,282,-2.0125 -モ,も,262,262,468,-1.7239 -デ,で,458,458,468,-1.9218 -ト,と,363,363,282,-2.1096 -カラ,から,147,147,356,-1.9960 -トシテ,として,179,179,356,-2.2226 -ヤ,や,366,366,43,-2.1479 -ダ,だ,453,453,471,-1.9457 -デス,です,460,460,17,-1.8655 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -・,・,5,5,203,-2.7687 -』,』,7,7,136,-3.5069 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -ナド,など,344,344,442,-2.2760 -シ,し,610,610,258,-1.5936 -ヘ,へ,154,154,282,-2.4384 -…,…,5,5,184,-3.3301 -タ,多,1285,1285,351,-4.9124 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1299.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1299.csv deleted file mode 100644 index 344f0a5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1299.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,454,454,287,-1.8607 -ニ,に,329,329,282,-2.1199 -ニ,に,151,151,282,-1.3747 -デ,で,458,458,468,-1.9218 -ダ,だ,453,453,471,-1.9457 -ノ,の,368,368,408,-1.2458 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,164,164,282,-1.8068 -ナン,なん,454,1310,17,-6.7011 -ナノ,なの,454,1310,17,-6.8954 -ナノデ,なので,454,316,17,-7.0670 -タ,多,1285,1285,351,-4.9124 -・,・,5,5,203,-2.7687 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ナンダ,なんだ,454,453,17,-7.4103 -ナンデス,なんです,454,460,17,-7.4886 -」,」,7,7,121,-2.0554 -タチ,立ち,1285,1285,356,-5.2862 -ガ,が,148,148,468,-1.4621 -カズ,数,1285,1285,387,-5.3011 -デシ,でし,466,466,17,-2.1485 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ハ,は,261,261,468,-1.3731 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_13.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_13.csv deleted file mode 100644 index 8642f69..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_13.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -バイイ,ばいい,318,131,17,-8.3265 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -バイイノ,ばいいの,318,1310,17,-9.4603 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -バトオモイ,ばと思い,318,832,17,-10.0809 -バイイノカ,ばいいのか,318,359,17,-10.0964 -バイイ,ばいい,318,19,17,-10.1547 -バイイカ,ばいいか,318,359,17,-10.1567 -ド,ど,311,311,437,-3.7861 -バイイノニ,ばいいのに,318,317,17,-10.1854 -バトオモイマス,ばと思います,318,491,17,-10.1899 -バダイジョウブ,ば大丈夫,318,1287,17,-10.2066 -バヨカッタ,ば良かった,318,435,17,-10.2350 -バイインダ,ばいいんだ,318,453,17,-10.2552 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_130.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_130.csv deleted file mode 100644 index 19b8017..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_130.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -ネ,ね,279,279,47,-2.1699 -テ,て,307,307,356,-1.5059 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -アリ,あり,788,788,481,-3.1265 -デキル,できる,619,619,481,-4.0489 -ナリ,なり,788,788,471,-3.2643 -モ,も,262,262,468,-1.7239 -デキ,でき,625,625,481,-4.3005 -ハ,は,261,261,468,-1.3731 -ミ,見,625,625,52,-4.5511 -イル,いる,619,619,468,-4.6741 -ミル,見る,619,619,481,-4.8362 -シ,し,610,610,258,-1.5936 -イ,い,625,625,356,-4.9123 -「,「,6,6,352,-2.0388 -カンガエ,考え,625,625,52,-5.1086 -デ,出,625,625,249,-5.1376 -カンガエル,考える,619,619,481,-5.2419 -デル,出る,619,619,471,-5.4366 -ウケ,受け,625,625,258,-5.4817 -シ,私,1285,1285,17,-4.2442 -タベ,食べ,625,625,276,-5.5939 -ナカ,中,1285,1285,282,-4.2761 -デキル,出来る,619,619,471,-5.7150 -デキ,出来,625,625,268,-5.7335 -カンジ,感じ,625,625,301,-5.7380 -タベル,食べる,619,619,487,-5.7854 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1300.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1300.csv deleted file mode 100644 index 4960aff..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1300.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -ハ,は,261,261,468,-1.3731 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -デ,で,458,458,468,-1.9218 -カ,か,359,359,468,-1.9789 -ト,と,164,164,282,-1.8068 -カラ,から,147,147,356,-1.9960 -デス,です,460,460,17,-1.8655 -」,」,7,7,121,-2.0554 -ト,と,150,150,282,-2.0125 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -・,・,5,5,203,-2.7687 -ト,と,363,363,282,-2.1096 -ダ,だ,453,453,471,-1.9457 -タメ,ため,1313,1313,282,-3.3063 -ダケ,だけ,338,338,468,-2.4590 -マデ,まで,355,355,143,-2.3294 -「,「,6,6,352,-2.0388 -シャ,者,1298,1298,42,-4.9865 -ゴ,後,1305,1305,282,-3.3643 -…,…,5,5,184,-3.3301 -トシテ,として,179,179,356,-2.2226 -タ,多,1285,1285,351,-4.9124 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1301.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1301.csv deleted file mode 100644 index 0405626..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1301.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,454,454,287,-1.8607 -ダ,だ,453,453,471,-1.9457 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -デ,で,458,458,468,-1.9218 -ニ,に,329,329,282,-2.1199 -・,・,5,5,203,-2.7687 -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -…,…,5,5,184,-3.3301 -マシ,まし,501,501,17,-2.0043 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ト,と,309,309,282,-2.2641 -カラ,から,297,297,356,-2.3083 -アリ,あり,409,409,249,-2.3509 -シ,し,304,304,258,-2.5363 -キ,き,904,904,356,-2.5861 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1302.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1302.csv deleted file mode 100644 index 6f144ae..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1302.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -モ,も,262,262,468,-1.7239 -ヲ,を,156,156,356,-1.4175 -ト,と,150,150,282,-2.0125 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -ナイ,ない,473,473,468,-1.8979 -デス,です,460,460,17,-1.8655 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ガ,が,299,299,468,-2.0560 -カラ,から,147,147,356,-1.9960 -ト,と,363,363,282,-2.1096 -デ,で,149,149,468,-1.6148 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ダ,だ,453,453,471,-1.9457 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1303.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1303.csv deleted file mode 100644 index a20812e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1303.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -デ,で,149,149,468,-1.6148 -ガ,が,148,148,468,-1.4621 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -」,」,7,7,121,-2.0554 -デ,で,458,458,468,-1.9218 -。,。,8,8,61,-1.3115 -カラ,から,147,147,356,-1.9960 -ナカ,中,1293,1293,282,-4.2761 -・,・,5,5,203,-2.7687 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヘ,へ,154,154,282,-2.4384 -…,…,5,5,184,-3.3301 -チュウゴク,中国,1293,1293,240,-5.2351 -マエ,前,1293,1293,282,-5.2420 -トシテ,として,179,179,356,-2.2226 -ナド,など,344,344,442,-2.2760 -』,』,7,7,136,-3.5069 -モ,も,262,262,468,-1.7239 -トウキョウ,東京,1293,1293,473,-5.4687 -ヤ,や,366,366,43,-2.1479 -タ,多,1285,1285,351,-4.9124 -マデ,まで,355,355,143,-2.3294 -フクミ,含み,1285,1285,258,-4.9821 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1304.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1304.csv deleted file mode 100644 index 6986b64..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1304.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ニ,に,151,151,282,-1.3747 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ソウ,そう,1301,1301,17,-2.6187 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,363,363,282,-2.1096 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ヤ,や,366,366,43,-2.1479 -カラ,から,147,147,356,-1.9960 -ダ,だ,453,453,471,-1.9457 -デス,です,460,460,17,-1.8655 -・,・,5,5,203,-2.7687 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デ,で,458,458,468,-1.9218 -コト,こと,1310,1310,282,-2.6917 -ナド,など,344,344,442,-2.2760 -ナイ,ない,473,473,468,-1.8979 -…,…,5,5,184,-3.3301 -ノ,の,1310,1310,408,-2.7847 -トカ,とか,364,364,17,-2.5396 -!,!,1318,1318,244,-1.9828 -』,』,7,7,136,-3.5069 -シ,し,610,610,258,-1.5936 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1305.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1305.csv deleted file mode 100644 index 38eefb1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1305.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -デ,で,149,149,468,-1.6148 -カラ,から,147,147,356,-1.9960 -モ,も,262,262,468,-1.7239 -デ,で,458,458,468,-1.9218 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -ヲ,を,156,156,356,-1.4175 -ナイ,ない,473,473,468,-1.8979 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -レ,れ,876,876,468,-2.0223 -ガ,が,148,148,468,-1.4621 -ガ,が,299,299,468,-2.0560 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -マデ,まで,355,355,143,-2.3294 -レロ,れろ,874,874,468,-2.2332 -ト,と,309,309,282,-2.2641 -カラ,から,297,297,356,-2.3083 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1306.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1306.csv deleted file mode 100644 index f8cf82b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1306.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -ガ,が,148,148,468,-1.4621 -ニ,に,151,151,282,-1.3747 -モ,も,262,262,468,-1.7239 -ヲ,を,156,156,356,-1.4175 -カ,か,359,359,468,-1.9789 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -マデ,まで,355,355,143,-2.3294 -カラ,から,147,147,356,-1.9960 -ダ,だ,453,453,471,-1.9457 -ト,と,150,150,282,-2.0125 -デス,です,460,460,17,-1.8655 -デモ,でも,341,341,468,-2.6375 -。,。,8,8,61,-1.3115 -ダケ,だけ,338,338,468,-2.4590 -ナ,な,454,454,287,-1.8607 -?,?,1317,1317,17,-2.1596 -ッテ,って,167,167,17,-2.3603 -ヨリ,より,155,155,351,-2.5584 -シ,し,610,610,258,-1.5936 -ノ,の,153,153,408,-2.5621 -ナイ,ない,473,473,468,-1.8979 -!,!,1318,1318,244,-1.9828 -タメ,ため,1313,1313,282,-3.3063 -ガ,が,299,299,468,-2.0560 -デ,で,458,458,468,-1.9218 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1307.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1307.csv deleted file mode 100644 index 94822c2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1307.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ソウ,そう,1301,1301,17,-2.6187 -アル,ある,772,772,481,-2.9588 -ネエ,ねえ,20,20,468,-2.2298 -ノ,の,368,368,408,-1.2458 -ナル,なる,772,772,471,-3.0967 -・,・,5,5,203,-2.7687 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ネ,ね,279,279,47,-2.1699 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -「,「,6,6,352,-2.0388 -テ,て,307,307,356,-1.5059 -」,」,7,7,121,-2.0554 -…,…,5,5,184,-3.3301 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -マス,ます,491,491,17,-1.8643 -デキル,できる,619,619,481,-4.0489 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ナ,な,454,454,287,-1.8607 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1308.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1308.csv deleted file mode 100644 index 3f2fe74..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1308.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -クダサイ,ください,797,797,17,-3.7361 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -イラッシャイ,いらっしゃい,797,797,420,-5.2528 -・,・,5,5,203,-2.7687 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -クダサイ,ください,1239,1239,17,-3.0904 -レロ,れろ,874,874,468,-2.2332 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1309.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1309.csv deleted file mode 100644 index 97e193d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1309.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -ダ,だ,453,453,471,-1.9457 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -ナ,な,454,454,287,-1.8607 -ハ,は,261,261,468,-1.3731 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -デスガ,ですが,460,299,17,-6.3556 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -デスネ,ですね,460,279,17,-6.5415 -デスヨ,ですよ,460,288,17,-6.5517 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -カ,か,359,359,468,-1.9789 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -デスカ,ですか,460,359,17,-6.6967 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_131.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_131.csv deleted file mode 100644 index 106c1e7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_131.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,164,164,282,-1.8068 -デス,です,460,460,17,-1.8655 -カ,か,359,359,468,-1.9789 -ヨ,よ,288,288,17,-2.1474 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -カラ,から,297,297,356,-2.3083 -?,?,1317,1317,17,-2.1596 -ケド,けど,301,301,17,-2.4058 -」,」,7,7,121,-2.0554 -ノニ,のに,317,317,17,-2.7966 -コト,こと,1310,1310,282,-2.6917 -シ,し,304,304,258,-2.5363 -ノ,の,1310,1310,408,-2.7847 -ダケ,だけ,338,338,468,-2.4590 -タ,た,435,435,282,-1.4167 -ノ,の,282,282,408,-2.8118 -ノデ,ので,316,316,48,-2.3278 -ナ,な,275,275,287,-2.5224 -ッテ,って,167,167,17,-2.3603 -ナイ,ない,473,473,468,-1.8979 -トイウ,という,173,173,468,-2.2416 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1310.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1310.csv deleted file mode 100644 index 3ccdbf1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1310.csv +++ /dev/null @@ -1,30 +0,0 @@ -ガ,が,148,148,468,-1.4621 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -デス,です,460,460,17,-1.8655 -ダ,だ,453,453,471,-1.9457 -ニ,に,151,151,282,-1.3747 -デ,で,458,458,468,-1.9218 -モ,も,262,262,468,-1.7239 -カ,か,359,359,468,-1.9789 -デ,で,149,149,468,-1.6148 -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -カラ,から,147,147,356,-1.9960 -ナ,な,454,454,287,-1.8607 -ト,と,150,150,282,-2.0125 -ト,と,164,164,282,-1.8068 -デ,で,308,308,468,-2.9431 -ト,と,363,363,282,-2.1096 -」,」,7,7,121,-2.0554 -ジャ,じゃ,308,261,247,-3.4000 -ヤ,や,366,366,43,-2.1479 -ネエ,ねえ,20,20,468,-2.2298 -カモ,かも,330,330,252,-2.7352 -ネ,ね,279,279,47,-2.1699 -ッテ,って,167,167,17,-2.3603 -ヨ,よ,288,288,17,-2.1474 -ナド,など,344,344,442,-2.2760 -ナク,なく,36,36,468,-2.1850 -ガアル,がある,148,772,17,-6.6664 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1311.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1311.csv deleted file mode 100644 index d2e62cd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1311.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ニ,に,329,329,282,-2.1199 -ニ,に,151,151,282,-1.3747 -ダ,だ,453,453,471,-1.9457 -デ,で,458,458,468,-1.9218 -。,。,8,8,61,-1.3115 -ナ,な,275,275,287,-2.5224 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -シロ,しろ,608,608,437,-1.9456 -ノ,の,368,368,408,-1.2458 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -レ,れ,876,876,468,-2.0223 -ナン,なん,454,1310,17,-6.7011 -ガ,が,299,299,468,-2.0560 -、,、,10,10,151,-1.2267 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ウ,う,506,506,133,-2.2404 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1312.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1312.csv deleted file mode 100644 index 6c7bbe0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1312.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -ナ,な,454,454,287,-1.8607 -ニ,に,329,329,282,-2.1199 -デス,です,460,460,17,-1.8655 -デ,で,458,458,468,-1.9218 -、,、,10,10,151,-1.2267 -ダ,だ,453,453,471,-1.9457 -ニハ,には,151,261,17,-6.0799 -ナン,なん,454,1310,17,-6.7011 -デ,で,149,149,468,-1.6148 -デシ,でし,466,466,17,-2.1485 -ナノ,なの,454,1310,17,-6.8954 -ニシ,にし,151,610,17,-6.6512 -ニナル,になる,151,772,17,-6.7609 -。,。,8,8,61,-1.3115 -ナノデ,なので,454,316,17,-7.0670 -ニモ,にも,151,262,17,-6.8506 -ニナッテ,になって,151,307,17,-6.9588 -ニナリ,になり,151,788,17,-6.9945 -ニシテ,にして,151,307,17,-7.0820 -ナンダ,なんだ,454,453,17,-7.4103 -ナンデス,なんです,454,460,17,-7.4886 -ニナッタ,になった,151,435,17,-7.3258 -ヲ,を,156,156,356,-1.4175 -ナコト,なこと,454,1310,17,-7.8659 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ナノニ,なのに,454,317,17,-7.9771 -ナモノ,なもの,454,1310,17,-7.9935 -ニアル,にある,151,772,17,-7.7503 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1313.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1313.csv deleted file mode 100644 index 2f4c9b6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1313.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -デ,で,149,149,468,-1.6148 -ハ,は,261,261,468,-1.3731 -ガ,が,148,148,468,-1.4621 -ヲ,を,156,156,356,-1.4175 -モ,も,262,262,468,-1.7239 -カラ,から,147,147,356,-1.9960 -デ,で,458,458,468,-1.9218 -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -ダ,だ,453,453,471,-1.9457 -「,「,6,6,352,-2.0388 -ニハ,には,151,261,17,-6.0799 -ト,と,164,164,282,-1.8068 -デモ,でも,341,341,468,-2.6375 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,454,454,287,-1.8607 -ニシ,にし,151,610,17,-6.6512 -」,」,7,7,121,-2.0554 -カ,か,359,359,468,-1.9789 -マデ,まで,355,355,143,-2.3294 -ト,と,150,150,282,-2.0125 -ニナル,になる,151,772,17,-6.7609 -ダケ,だけ,338,338,468,-2.4590 -ニモ,にも,151,262,17,-6.8506 -タ,多,1285,1285,351,-4.9124 -ニナッテ,になって,151,307,17,-6.9588 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1314.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1314.csv deleted file mode 100644 index a04d8b5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1314.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -モ,も,262,262,468,-1.7239 -ガ,が,148,148,468,-1.4621 -ヲ,を,156,156,356,-1.4175 -デ,で,149,149,468,-1.6148 -カラ,から,147,147,356,-1.9960 -マデ,まで,355,355,143,-2.3294 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -ダ,だ,453,453,471,-1.9457 -シ,私,1285,1285,17,-4.2442 -デス,です,460,460,17,-1.8655 -ナカ,中,1285,1285,282,-4.2761 -デ,で,458,458,468,-1.9218 -「,「,6,6,352,-2.0388 -デモ,でも,341,341,468,-2.6375 -トシテ,として,179,179,356,-2.2226 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ナ,な,454,454,287,-1.8607 -トキ,時,1285,1285,282,-5.0461 -ト,と,363,363,282,-2.1096 -」,」,7,7,121,-2.0554 -ト,と,164,164,282,-1.8068 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -・,・,5,5,203,-2.7687 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1315.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1315.csv deleted file mode 100644 index aaefe58..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1315.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -タメ,ため,1313,1313,282,-3.3063 -ヨウ,よう,1312,1312,169,-2.2533 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ン,ん,1310,1310,437,-3.5653 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -トキ,時,1313,1313,282,-4.1345 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ナカ,中,1313,1313,282,-4.2761 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -モノ,もの,1310,1310,468,-3.9802 -ハタラキ,働き,1285,1285,42,-5.8522 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1316.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1316.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1316.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1317.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1317.csv deleted file mode 100644 index 5c707de..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1317.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -?,?,1317,1317,17,-2.1596 -!,!,1318,1318,244,-1.9828 -ガ,が,299,299,468,-2.0560 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ト,と,164,164,282,-1.8068 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -。,。,8,8,61,-1.3115 -ト,と,309,309,282,-2.2641 -アリ,あり,409,409,249,-2.3509 -タイ,たい,444,444,17,-2.4250 -アレ,あれ,407,407,47,-2.4311 -ナク,なく,481,481,468,-2.5033 -シ,し,304,304,258,-2.5363 -』,』,7,7,136,-3.5069 -キ,き,904,904,356,-2.5861 -ッテ,って,167,167,17,-2.3603 -ゴザイ,ござい,428,428,17,-2.6577 -シマウ,しまう,1253,1253,282,-2.7195 -タキ,たき,445,445,437,-2.7248 -タシ,たし,446,446,437,-2.7251 -ナクッ,なくっ,481,481,17,-2.7253 -ダ,だ,436,436,471,-2.7366 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1318.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1318.csv deleted file mode 100644 index 358f99a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_1318.csv +++ /dev/null @@ -1,30 +0,0 @@ -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ガ,が,299,299,468,-2.0560 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ト,と,309,309,282,-2.2641 -アリ,あり,409,409,249,-2.3509 -アレ,あれ,407,407,47,-2.4311 -シ,し,304,304,258,-2.5363 -キ,き,904,904,356,-2.5861 -オリ,おり,1197,1197,356,-2.6223 -ニヨリ,により,211,211,43,-2.7172 -シマウ,しまう,1253,1253,282,-2.7195 -タキ,たき,445,445,437,-2.7248 -タシ,たし,446,446,437,-2.7251 -ダ,だ,436,436,471,-2.7366 -クレ,くれ,940,940,17,-2.7401 -イク,いく,992,992,356,-2.7538 -シマイ,しまい,1273,1273,282,-2.7822 -ノ,の,282,282,408,-2.8118 -オコナウ,行う,819,819,481,-2.8270 -クレル,くれる,933,933,17,-2.8295 -イキ,いき,1012,1012,356,-2.8437 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_132.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_132.csv deleted file mode 100644 index e43341d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_132.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -テイウ,ていう,171,171,327,-3.7709 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テル,てる,307,919,17,-4.3303 -カ,か,359,359,468,-1.9789 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_133.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_133.csv deleted file mode 100644 index a5c4161..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_133.csv +++ /dev/null @@ -1,30 +0,0 @@ -・,・,5,5,203,-2.7687 -ソウ,そう,1301,1301,17,-2.6187 -…,…,5,5,184,-3.3301 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -コト,こと,1310,1310,282,-2.6917 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -〜,〜,5,5,244,-4.0997 -ノ,の,1310,1310,408,-2.7847 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -デス,です,460,460,17,-1.8655 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -タ,多,1285,1285,351,-4.9124 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_134.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_134.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_134.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_135.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_135.csv deleted file mode 100644 index d6ebf6e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_135.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シ,私,1285,1285,17,-4.2442 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ナカ,中,1285,1285,282,-4.2761 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_136.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_136.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_136.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_137.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_137.csv deleted file mode 100644 index 92b85fb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_137.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -コト,こと,1310,1310,282,-2.6917 -」,」,7,7,121,-2.0554 -ノ,の,1310,1310,408,-2.7847 -ナ,な,275,275,287,-2.5224 -・,・,5,5,203,-2.7687 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ヨ,よ,288,288,17,-2.1474 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_138.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_138.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_138.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_139.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_139.csv deleted file mode 100644 index 1f71dcc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_139.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -』,』,7,7,136,-3.5069 -・,・,5,5,203,-2.7687 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -…,…,5,5,184,-3.3301 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_14.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_14.csv deleted file mode 100644 index d43448d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_14.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ハ,は,261,261,468,-1.3731 -バイイ,ばいい,318,131,17,-8.3265 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -バイイノ,ばいいの,318,1310,17,-9.4603 -。,。,8,8,61,-1.3115 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -シ,し,610,610,258,-1.5936 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -デ,で,149,149,468,-1.6148 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -バトオモイ,ばと思い,318,832,17,-10.0809 -タ,た,435,435,282,-1.4167 -バイイノカ,ばいいのか,318,359,17,-10.0964 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_140.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_140.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_140.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_141.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_141.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_141.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_142.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_142.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_142.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_143.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_143.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_143.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_144.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_144.csv deleted file mode 100644 index 24f4f9b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_144.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タリ,たり,360,360,451,-2.5700 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_145.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_145.csv deleted file mode 100644 index 733a29f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_145.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -テ,て,307,307,356,-1.5059 -ハ,は,261,261,468,-1.3731 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -テル,てる,307,919,17,-4.3303 -ナイヒト,ない人,473,1285,501,-5.9561 -モ,も,262,262,468,-1.7239 -アリ,あり,788,788,481,-3.1265 -テ,て,307,930,356,-4.8756 -ナリ,なり,788,788,471,-3.2643 -ナク,なく,481,481,468,-2.5033 -、,、,10,10,151,-1.2267 -ナクッ,なくっ,481,481,17,-2.7253 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナ,な,12,12,468,-2.1172 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイ,無い,384,384,481,-3.8294 -テモ,ても,307,262,17,-6.4044 -ヤル,やる,772,772,17,-5.2305 -ナイノデ,ないので,473,316,17,-7.8177 -テイタ,ていた,307,435,17,-6.4827 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_146.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_146.csv deleted file mode 100644 index 0cd313b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_146.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -ト,と,164,164,282,-1.8068 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -コト,こと,1310,1310,282,-2.6917 -ナ,な,454,454,287,-1.8607 -ナイ,ない,473,473,468,-1.8979 -ノ,の,1310,1310,408,-2.7847 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_147.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_147.csv deleted file mode 100644 index 83c0e96..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_147.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -シ,し,610,610,258,-1.5936 -トキ,時,1285,1285,282,-5.0461 -アル,ある,772,772,481,-2.9588 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -。,。,8,8,61,-1.3115 -キリ,切り,1285,1285,60,-5.3631 -ナル,なる,772,772,471,-3.0967 -ナ,名,1285,1285,454,-5.3730 -『,『,6,6,322,-3.4104 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -デ,で,458,458,468,-1.9218 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -ダ,だ,453,453,471,-1.9457 -シュウ,州,1285,1285,272,-5.7511 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_148.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_148.csv deleted file mode 100644 index 34196bf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_148.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -アリ,あり,788,788,481,-3.1265 -ネエ,ねえ,20,20,468,-2.2298 -「,「,6,6,352,-2.0388 -ナリ,なり,788,788,471,-3.2643 -シ,し,610,610,258,-1.5936 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -デキ,でき,625,625,481,-4.3005 -イイ,いい,37,37,17,-2.6886 -スル,する,599,599,481,-1.9113 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -デキル,できる,619,619,481,-4.0489 -ミ,見,625,625,52,-4.5511 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -スキ,好き,1287,1287,66,-4.8632 -ナイ,ない,20,20,468,-3.4755 -メ,目,1285,1285,332,-5.6594 -ヒツヨウ,必要,1287,1287,169,-4.9541 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_149.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_149.csv deleted file mode 100644 index c30d3b0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_149.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -モ,も,262,262,468,-1.7239 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -。,。,8,8,61,-1.3115 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -アル,ある,772,772,481,-2.9588 -『,『,6,6,322,-3.4104 -デキ,でき,625,625,481,-4.3005 -ハタラキ,働き,1285,1285,42,-5.8522 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_15.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_15.csv deleted file mode 100644 index 8a229c5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_15.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イイ,いい,37,37,17,-2.6886 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -シ,私,1285,1285,17,-4.2442 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ナカ,中,1285,1285,282,-4.2761 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_150.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_150.csv deleted file mode 100644 index 054bb7a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_150.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -シ,し,610,610,258,-1.5936 -ハ,は,261,261,468,-1.3731 -スル,する,599,599,481,-1.9113 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -サ,さ,605,605,441,-1.9359 -アリ,あり,788,788,481,-3.1265 -ナリ,なり,788,788,471,-3.2643 -コノ,この,1315,1315,468,-3.0084 -ソノ,その,1315,1315,468,-3.1000 -ヤル,やる,772,772,17,-5.2305 -デ,で,149,149,468,-1.6148 -オモウ,思う,817,817,17,-3.0926 -オナジ,同じ,1315,1315,468,-4.5628 -シテ,して,610,307,17,-5.1358 -ソンナ,そんな,1315,1315,161,-4.6627 -モ,も,262,262,468,-1.7239 -オモイ,思い,832,832,17,-3.0179 -ワカル,わかる,772,772,481,-5.6202 -ツクル,作る,772,772,481,-5.6347 -シル,知る,772,772,438,-5.6604 -ハイル,入る,772,772,471,-5.6705 -シゴト,仕事,1283,1283,290,-6.0556 -ナッテ,なって,786,307,17,-6.4699 -キリ,切り,788,788,379,-5.3631 -ヤリ,やり,788,788,17,-5.3974 -ハナシ,話,1283,1283,451,-6.1231 -ソンザイ,存在,1283,1283,182,-6.1817 -ヲ,を,156,156,356,-1.4175 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_151.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_151.csv deleted file mode 100644 index 2c26889..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_151.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -モ,も,262,262,468,-1.7239 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -アリ,あり,788,788,481,-3.1265 -ナカ,中,1285,1285,282,-4.2761 -ナリ,なり,788,788,471,-3.2643 -スル,する,599,599,481,-1.9113 -タ,多,1285,1285,351,-4.9124 -デキ,でき,625,625,481,-4.3005 -。,。,8,8,61,-1.3115 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ミ,見,625,625,52,-4.5511 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -シゴト,仕事,1283,1283,290,-6.0556 -サ,さ,605,605,441,-1.9359 -イ,い,625,625,356,-4.9123 -アソビ,遊び,1285,1285,290,-5.5478 -ハナシ,話,1283,1283,451,-6.1231 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_152.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_152.csv deleted file mode 100644 index 77bcb91..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_152.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -オ,お,560,560,437,-3.5014 -『,『,6,6,322,-3.4104 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ゴ,ご,560,560,78,-4.1942 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -シゴト,仕事,1283,1283,290,-6.0556 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ハナシ,話,1283,1283,451,-6.1231 -アソビ,遊び,1285,1285,290,-5.5478 -ソンザイ,存在,1283,1283,182,-6.1817 -シヨウ,使用,1283,1283,375,-6.2192 -メ,目,1285,1285,332,-5.6594 -ノ,の,368,368,408,-1.2458 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_153.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_153.csv deleted file mode 100644 index 034de37..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_153.csv +++ /dev/null @@ -1,30 +0,0 @@ -ネエ,ねえ,20,20,468,-2.2298 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -ナイ,ない,20,20,468,-3.4755 -オエエ,多え,19,19,481,-4.9407 -オオイ,多い,19,19,481,-4.9407 -ヨイ,良い,19,19,48,-5.0931 -クレエ,くれえ,19,19,48,-5.2394 -ヤル,やる,772,772,17,-5.2305 -エエ,良え,19,19,48,-5.3016 -イイ,いい,37,37,17,-2.6886 -イウ,言う,818,818,481,-2.9646 -デキル,できる,619,619,481,-4.0489 -タカイ,高い,19,19,351,-5.6450 -タケエ,高え,19,19,351,-5.6450 -ワカル,わかる,772,772,481,-5.6202 -ツクル,作る,772,772,481,-5.6347 -オモウ,思う,817,817,17,-3.0926 -シル,知る,772,772,438,-5.6604 -ハイル,入る,772,772,471,-5.6705 -オオイッ,多いっ,19,19,481,-5.7351 -オオイー,多いい,19,19,481,-5.7358 -イウ,いう,818,818,471,-3.2986 -イイ,いい,19,19,17,-5.8433 -ツエエ,強え,19,19,43,-5.9426 -ツヨイ,強い,19,19,43,-5.9426 -ナイ,無い,20,20,481,-5.4105 -ワリイ,悪い,19,19,48,-6.0182 -ワルイ,悪い,19,19,48,-6.0182 -モツ,持つ,738,738,481,-3.4210 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_154.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_154.csv deleted file mode 100644 index bd52fcf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_154.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -モ,も,262,262,468,-1.7239 -アル,ある,772,772,481,-2.9588 -オモウ,思う,817,817,17,-3.0926 -・,・,5,5,203,-2.7687 -ナル,なる,772,772,471,-3.0967 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -イク,行く,696,696,471,-3.0023 -ヘ,へ,154,154,282,-2.4384 -シゴト,仕事,1283,1283,290,-6.0556 -ノホウ,の方,368,1310,17,-7.1199 -ハナシ,話,1283,1283,451,-6.1231 -マス,ます,491,491,17,-1.8643 -アリ,あり,788,788,481,-3.1265 -…,…,5,5,184,-3.3301 -ナイ,ない,473,473,468,-1.8979 -ソンザイ,存在,1283,1283,182,-6.1817 -シロ,しろ,608,608,437,-1.9456 -シヨウ,使用,1283,1283,375,-6.2192 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ノコト,のこと,368,1310,17,-7.3022 -マシ,まし,501,501,17,-2.0043 -ナリ,なり,788,788,471,-3.2643 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_155.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_155.csv deleted file mode 100644 index a37e117..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_155.csv +++ /dev/null @@ -1,30 +0,0 @@ -モ,も,262,262,468,-1.7239 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -「,「,6,6,352,-2.0388 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ノ,の,368,368,408,-1.2458 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -オ,お,560,560,437,-3.5014 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -『,『,6,6,322,-3.4104 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -カ,か,359,359,468,-1.9789 -ハタラキ,働き,1285,1285,42,-5.8522 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_156.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_156.csv deleted file mode 100644 index 24de656..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_156.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,し,610,610,258,-1.5936 -、,、,10,10,151,-1.2267 -デキ,でき,625,625,481,-4.3005 -ミ,見,625,625,52,-4.5511 -スル,する,599,599,481,-1.9113 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -アル,ある,772,772,481,-2.9588 -イ,い,625,625,356,-4.9123 -デキル,できる,619,619,481,-4.0489 -ナル,なる,772,772,471,-3.0967 -カンガエ,考え,625,625,52,-5.1086 -デ,出,625,625,249,-5.1376 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -ウケ,受け,625,625,258,-5.4817 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -シゴト,仕事,1283,1283,290,-6.0556 -イル,いる,619,619,468,-4.6741 -タベ,食べ,625,625,276,-5.5939 -オモウ,思う,817,817,17,-3.0926 -ハナシ,話,1283,1283,451,-6.1231 -アリ,あり,788,788,481,-3.1265 -ソンザイ,存在,1283,1283,182,-6.1817 -デキ,出来,625,625,268,-5.7335 -カンジ,感じ,625,625,301,-5.7380 -シヨウ,使用,1283,1283,375,-6.2192 -ミル,見る,619,619,481,-4.8362 -タチ,立ち,1285,1285,356,-5.2862 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_157.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_157.csv deleted file mode 100644 index 2427138..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_157.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -デ,で,458,458,468,-1.9218 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_158.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_158.csv deleted file mode 100644 index c4479d7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_158.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -・,・,5,5,203,-2.7687 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -シ,し,610,610,258,-1.5936 -…,…,5,5,184,-3.3301 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -サ,さ,605,605,441,-1.9359 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -〜,〜,5,5,244,-4.0997 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -スル,する,599,599,481,-1.9113 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -ガ,が,148,148,468,-1.4621 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_159.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_159.csv deleted file mode 100644 index dd8f5a9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_159.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -…,…,5,5,184,-3.3301 -タ,た,435,435,282,-1.4167 -「,「,6,6,352,-2.0388 -ガ,が,148,148,468,-1.4621 -オ,お,560,560,437,-3.5014 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_16.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_16.csv deleted file mode 100644 index 96ca664..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_16.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,275,275,287,-2.5224 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -ワタシ,私,1306,1306,17,-3.6243 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ナイ,ない,482,482,468,-2.1746 -タ,多,1285,1285,351,-4.9124 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_160.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_160.csv deleted file mode 100644 index 9f9e93e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_160.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -タ,多,1285,1285,351,-4.9124 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -フクミ,含み,1285,1285,258,-4.9821 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_161.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_161.csv deleted file mode 100644 index 2f7d59f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_161.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -オ,お,560,560,437,-3.5014 -、,、,10,10,151,-1.2267 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ノ,の,368,368,408,-1.2458 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ゴ,ご,560,560,78,-4.1942 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ハ,は,261,261,468,-1.3731 -ナカ,中,1290,1290,282,-4.2761 -シゴト,仕事,1283,1283,290,-6.0556 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_162.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_162.csv deleted file mode 100644 index 9600a47..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_162.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -、,、,10,10,151,-1.2267 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ノ,の,368,368,408,-1.2458 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ハ,は,261,261,468,-1.3731 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -オ,お,560,560,437,-3.5014 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -エミ,笑,1291,1291,389,-4.2993 -ハタラキ,働き,1285,1285,42,-5.8522 -。,。,8,8,61,-1.3115 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_163.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_163.csv deleted file mode 100644 index eae0efa..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_163.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -・,・,5,5,203,-2.7687 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_164.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_164.csv deleted file mode 100644 index e8757b4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_164.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -シ,し,610,610,258,-1.5936 -モ,も,262,262,468,-1.7239 -ノ,の,368,368,408,-1.2458 -オモイ,思い,832,832,17,-3.0179 -、,、,10,10,151,-1.2267 -サ,さ,605,605,441,-1.9359 -イウ,言う,818,818,481,-2.9646 -オモウ,思う,817,817,17,-3.0926 -。,。,8,8,61,-1.3115 -イウ,いう,818,818,471,-3.2986 -スル,する,599,599,481,-1.9113 -ツカイ,使い,832,832,481,-4.5840 -「,「,6,6,352,-2.0388 -チガイ,違い,832,832,471,-4.8376 -デキ,でき,625,625,481,-4.3005 -カ,か,359,359,468,-1.9789 -ツカウ,使う,817,817,481,-4.5404 -イイ,言い,833,833,17,-2.9432 -ミ,見,625,625,52,-4.5511 -チガウ,違う,817,817,471,-4.7941 -カイ,買い,832,832,438,-5.3101 -アル,ある,772,772,481,-2.9588 -イ,い,625,625,356,-4.9123 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -デキル,できる,619,619,481,-4.0489 -ナル,なる,772,772,471,-3.0967 -カンガエ,考え,625,625,52,-5.1086 -デ,出,625,625,249,-5.1376 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_165.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_165.csv deleted file mode 100644 index 25b59d5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_165.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -エミ,笑,1291,1291,389,-4.2993 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ン,ん,1310,1310,437,-3.5653 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_166.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_166.csv deleted file mode 100644 index 81a7e8d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_166.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ノ,の,368,368,408,-1.2458 -モノ,もの,1310,1310,468,-3.9802 -カ,か,359,359,468,-1.9789 -、,、,10,10,151,-1.2267 -ホウ,方,1310,1310,48,-4.5756 -コト,事,1310,1310,282,-4.9393 -ネン,ねん,281,281,331,-3.6938 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -。,。,8,8,61,-1.3115 -ナカ,中,1285,1285,282,-4.2761 -テ,て,307,307,356,-1.5059 -メ,目,1310,1310,332,-5.6594 -ワケ,わけ,1310,1310,268,-5.7101 -ハ,は,261,261,468,-1.3731 -ト,と,164,164,282,-1.8068 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ワタシ,私,1306,1306,17,-3.6243 -タ,多,1285,1285,351,-4.9124 -ノ,の,282,282,408,-2.8118 -キ,気,1310,1310,48,-5.9822 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -フクミ,含み,1285,1285,258,-4.9821 -コレ,これ,1306,1306,468,-3.8073 -トキ,時,1285,1285,282,-5.0461 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_167.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_167.csv deleted file mode 100644 index 4404f50..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_167.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -コト,こと,1310,1310,282,-2.6917 -。,。,8,8,61,-1.3115 -ノ,の,1310,1310,408,-2.7847 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ン,ん,1310,1310,437,-3.5653 -イウ,言う,818,818,481,-2.9646 -モノ,もの,1310,1310,468,-3.9802 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -イウ,いう,818,818,471,-3.2986 -トキ,時,1285,1285,282,-5.0461 -アル,ある,772,772,481,-2.9588 -ワタシ,私,1306,1306,17,-3.6243 -オモウ,思う,817,817,17,-3.0926 -ナル,なる,772,772,471,-3.0967 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コノ,この,1315,1315,468,-3.0084 -キリ,切り,1285,1285,60,-5.3631 -コレ,これ,1306,1306,468,-3.8073 -ナ,名,1285,1285,454,-5.3730 -ソレ,それ,1306,1306,468,-3.8293 -ミ,見,1285,1285,52,-5.3943 -ソノ,その,1315,1315,468,-3.1000 -ホウ,方,1310,1310,48,-4.5756 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -・,・,5,5,203,-2.7687 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_168.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_168.csv deleted file mode 100644 index 751bc67..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_168.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -カ,か,359,359,468,-1.9789 -ノ,の,368,368,408,-1.2458 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ホウ,方,1310,1310,48,-4.5756 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コト,事,1310,1310,282,-4.9393 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -ネ,ね,279,279,47,-2.1699 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_169.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_169.csv deleted file mode 100644 index 40ab284..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_169.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ホウ,方,1310,1310,48,-4.5756 -コト,事,1310,1310,282,-4.9393 -メ,目,1310,1310,332,-5.6594 -ワケ,わけ,1310,1310,268,-5.7101 -。,。,8,8,61,-1.3115 -キ,気,1310,1310,48,-5.9822 -、,、,10,10,151,-1.2267 -ンダ,んだ,1310,453,17,-6.1571 -ニ,に,151,151,282,-1.3747 -ハズ,はず,1310,1310,282,-6.2989 -ノハ,のは,1310,261,17,-6.3807 -ホウ,ほう,1310,1310,48,-6.3934 -キ,機,1310,1310,413,-6.4405 -ンデス,んです,1310,460,17,-6.4615 -モノ,者,1310,1310,42,-6.5342 -モン,もん,1310,1310,437,-6.5423 -ノカ,のか,1310,359,17,-6.6048 -ノデス,のです,1310,460,17,-6.6862 -コトガ,ことが,1310,148,17,-6.6986 -ンデ,んで,322,322,17,-3.3859 -テン,点,1310,1310,468,-6.7317 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノガ,のが,1310,148,17,-6.7945 -ニ,に,329,329,282,-2.1199 -ハ,は,261,261,468,-1.3731 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_17.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_17.csv deleted file mode 100644 index 2e1091c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_17.csv +++ /dev/null @@ -1,30 +0,0 @@ -ワ,わ,291,291,36,-2.7424 -、,、,10,10,151,-1.2267 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ノ,の,368,368,408,-1.2458 -ン,ん,1310,1310,437,-3.5653 -ン,ん,515,515,437,-2.4192 -・,・,5,5,203,-2.7687 -デス,です,460,460,17,-1.8655 -ダ,だ,453,453,471,-1.9457 -モノ,もの,1310,1310,468,-3.9802 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,148,148,468,-1.4621 -?,?,1317,1317,17,-2.1596 -テ,て,307,307,356,-1.5059 -イイ,いい,37,37,17,-2.6886 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -…,…,5,5,184,-3.3301 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_170.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_170.csv deleted file mode 100644 index 06af473..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_170.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -アル,ある,772,772,481,-2.9588 -ン,ん,1310,1310,437,-3.5653 -タ,多,1285,1285,351,-4.9124 -ナル,なる,772,772,471,-3.0967 -フクミ,含み,1285,1285,258,-4.9821 -タ,た,435,435,282,-1.4167 -ノ,の,368,368,408,-1.2458 -トキ,時,1285,1285,282,-5.0461 -・,・,5,5,203,-2.7687 -テ,て,307,307,356,-1.5059 -イウ,言う,818,818,481,-2.9646 -モノ,もの,1310,1310,468,-3.9802 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -「,「,6,6,352,-2.0388 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ナイ,ない,473,473,468,-1.8979 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_171.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_171.csv deleted file mode 100644 index 5635810..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_171.csv +++ /dev/null @@ -1,30 +0,0 @@ -カ,か,359,359,468,-1.9789 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -ホウ,方,1310,1310,48,-4.5756 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コト,事,1310,1310,282,-4.9393 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ノ,の,368,368,408,-1.2458 -メ,目,1310,1310,332,-5.6594 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ワケ,わけ,1310,1310,268,-5.7101 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ネ,ね,279,279,47,-2.1699 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -キ,気,1310,1310,48,-5.9822 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_172.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_172.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_172.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_173.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_173.csv deleted file mode 100644 index 666028f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_173.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -タ,多,1285,1285,351,-4.9124 -ホウ,方,1310,1310,48,-4.5756 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -カ,か,359,359,468,-1.9789 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コト,事,1310,1310,282,-4.9393 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_174.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_174.csv deleted file mode 100644 index b034838..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_174.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -コト,こと,1310,1310,282,-2.6917 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ノ,の,1310,1310,408,-2.7847 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ヨウ,よう,1312,1312,169,-2.2533 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -「,「,6,6,352,-2.0388 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ン,ん,1310,1310,437,-3.5653 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_175.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_175.csv deleted file mode 100644 index c2e4bde..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_175.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ン,ん,1310,1310,437,-3.5653 -シ,私,1285,1285,17,-4.2442 -モノ,もの,1310,1310,468,-3.9802 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -モ,も,262,262,468,-1.7239 -ヨウ,よう,1312,1312,169,-2.2533 -ホウ,方,1310,1310,48,-4.5756 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コト,事,1310,1310,282,-4.9393 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ノ,の,368,368,408,-1.2458 -アソビ,遊び,1285,1285,290,-5.5478 -ニ,に,151,151,282,-1.3747 -メ,目,1285,1285,332,-5.6594 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ムラ,村,1285,1285,489,-5.7051 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_176.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_176.csv deleted file mode 100644 index 8c525db..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_176.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヨ,よ,288,288,17,-2.1474 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_177.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_177.csv deleted file mode 100644 index 8c9f606..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_177.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -ン,ん,1310,1310,437,-3.5653 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -モノ,もの,1310,1310,468,-3.9802 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ワタシ,私,1306,1306,17,-3.6243 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ホウ,方,1310,1310,48,-4.5756 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_178.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_178.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_178.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_179.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_179.csv deleted file mode 100644 index 1a8166d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_179.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -『,『,6,6,322,-3.4104 -トキ,時,1285,1285,282,-5.0461 -シゴト,仕事,1283,1283,290,-6.0556 -ハナシ,話,1283,1283,451,-6.1231 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ソンザイ,存在,1283,1283,182,-6.1817 -シヨウ,使用,1283,1283,375,-6.2192 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -サンカ,参加,1283,1283,271,-6.4058 -イミ,意味,1283,1283,327,-6.4065 -カンケイ,関係,1283,1283,468,-6.4114 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ホウソウ,放送,1283,1283,305,-6.5502 -カツドウ,活動,1283,1283,324,-6.5714 -ムラ,村,1285,1285,489,-5.7051 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_18.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_18.csv deleted file mode 100644 index 70f8c38..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_18.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ダ,だ,453,453,471,-1.9457 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -ネ,ね,279,279,47,-2.1699 -シ,私,1285,1285,17,-4.2442 -マス,ます,491,491,17,-1.8643 -ナカ,中,1285,1285,282,-4.2761 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -・,・,5,5,203,-2.7687 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_180.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_180.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_180.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_181.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_181.csv deleted file mode 100644 index 07687e0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_181.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_182.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_182.csv deleted file mode 100644 index 37c7f02..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_182.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -『,『,6,6,322,-3.4104 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ニッポン,日本,1294,1294,240,-3.5368 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ナカ,中,1293,1293,282,-4.2761 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -コノ,この,1315,1315,468,-3.0084 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_183.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_183.csv deleted file mode 100644 index f4bda07..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_183.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -『,『,6,6,322,-3.4104 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -ニッポン,日本,1294,1294,240,-3.5368 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ナカ,中,1293,1293,282,-4.2761 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -。,。,8,8,61,-1.3115 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_184.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_184.csv deleted file mode 100644 index 3974894..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_184.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -モ,も,262,262,468,-1.7239 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -「,「,6,6,352,-2.0388 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -シ,私,1285,1285,17,-4.2442 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_185.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_185.csv deleted file mode 100644 index 26049fd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_185.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_186.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_186.csv deleted file mode 100644 index c7ea4ed..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_186.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_187.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_187.csv deleted file mode 100644 index ab7feba..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_187.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ネ,ね,279,279,47,-2.1699 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -』,』,7,7,136,-3.5069 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_188.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_188.csv deleted file mode 100644 index 8ed8e4c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_188.csv +++ /dev/null @@ -1,30 +0,0 @@ -「,「,6,6,352,-2.0388 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -『,『,6,6,322,-3.4104 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ダイ,第,558,558,454,-2.9246 -ナカ,中,1290,1290,282,-4.2761 -ツカイ,使い,1285,1285,379,-6.1093 -ナカ,中,1293,1293,282,-4.2761 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_189.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_189.csv deleted file mode 100644 index 294407f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_189.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -『,『,6,6,322,-3.4104 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -コノ,この,1315,1315,468,-3.0084 -メ,目,1285,1285,332,-5.6594 -ソノ,その,1315,1315,468,-3.1000 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -デ,で,458,458,468,-1.9218 -ハタラキ,働き,1285,1285,42,-5.8522 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_19.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_19.csv deleted file mode 100644 index 15650df..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_19.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -ン,ん,1310,1310,437,-3.5653 -テ,て,307,307,356,-1.5059 -シ,私,1285,1285,17,-4.2442 -ヨ,よ,288,288,17,-2.1474 -ナカ,中,1285,1285,282,-4.2761 -シロ,しろ,608,608,437,-1.9456 -モノ,もの,1310,1310,468,-3.9802 -!,!,1318,1318,244,-1.9828 -ナカレ,なかれ,30,30,468,-2.1172 -マシ,まし,499,499,17,-2.1355 -カラ,から,297,297,356,-2.3083 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ノデ,ので,316,316,48,-2.3278 -ナ,な,275,275,287,-2.5224 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -・,・,5,5,203,-2.7687 -トキ,時,1285,1285,282,-5.0461 -タメ,ため,1313,1313,282,-3.3063 -」,」,7,7,121,-2.0554 -ホウ,方,1310,1310,48,-4.5756 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_190.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_190.csv deleted file mode 100644 index bd749aa..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_190.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_191.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_191.csv deleted file mode 100644 index 0958b02..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_191.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -「,「,6,6,352,-2.0388 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -『,『,6,6,322,-3.4104 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -セン,戦,1285,1285,178,-6.3044 -ダイジ,大事,1285,1285,66,-6.3275 -マト,的,1285,1285,169,-6.4148 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_192.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_192.csv deleted file mode 100644 index 8ef3269..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_192.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -タ,多,1285,1285,351,-4.9124 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -フクミ,含み,1285,1285,258,-4.9821 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_193.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_193.csv deleted file mode 100644 index f13f6c5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_193.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -ガ,が,148,148,468,-1.4621 -フクミ,含み,1285,1285,258,-4.9821 -ニッポン,日本,1294,1294,240,-3.5368 -トキ,時,1285,1285,282,-5.0461 -『,『,6,6,322,-3.4104 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ナカ,中,1293,1293,282,-4.2761 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -ダイ,第,558,558,454,-2.9246 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -シゴト,仕事,1283,1283,290,-6.0556 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_194.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_194.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_194.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_195.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_195.csv deleted file mode 100644 index 0efa6c5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_195.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -『,『,6,6,322,-3.4104 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コノ,この,1315,1315,468,-3.0084 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ソノ,その,1315,1315,468,-3.1000 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ワタシ,私,1306,1306,17,-3.6243 -。,。,8,8,61,-1.3115 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -コレ,これ,1306,1306,468,-3.8073 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_196.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_196.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_196.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_197.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_197.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_197.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_198.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_198.csv deleted file mode 100644 index c0c477c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_198.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -タ,多,1285,1285,351,-4.9124 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -タチ,立ち,1285,1285,356,-5.2862 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カズ,数,1285,1285,387,-5.3011 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_199.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_199.csv deleted file mode 100644 index 70fd833..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_199.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -『,『,6,6,322,-3.4104 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -デキ,でき,625,625,481,-4.3005 -ミ,見,625,625,52,-4.5511 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -』,』,7,7,136,-3.5069 -トキ,時,1285,1285,282,-5.0461 -シゴト,仕事,1283,1283,290,-6.0556 -ハナシ,話,1283,1283,451,-6.1231 -デキル,できる,619,619,481,-4.0489 -ヲ,を,156,156,356,-1.4175 -イ,い,625,625,356,-4.9123 -ソンザイ,存在,1283,1283,182,-6.1817 -アル,ある,772,772,481,-2.9588 -ハナイ,はない,261,473,17,-7.2816 -シヨウ,使用,1283,1283,375,-6.2192 -タチ,立ち,1285,1285,356,-5.2862 -オ,お,560,560,437,-3.5014 -カズ,数,1285,1285,387,-5.3011 -ナル,なる,772,772,471,-3.0967 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_2.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_2.csv deleted file mode 100644 index 5738e9c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_2.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ガ,が,299,299,468,-2.0560 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -?,?,1317,1317,17,-2.1596 -ケド,けど,301,301,17,-2.4058 -アレ,あれ,407,407,47,-2.4311 -・,・,5,5,203,-2.7687 -シマウ,しまう,1253,1253,282,-2.7195 -タシ,たし,446,446,437,-2.7251 -クレ,くれ,940,940,17,-2.7401 -ジャ,じゃ,334,334,247,-2.7478 -シマイ,しまい,1273,1273,282,-2.7822 -ニオイテ,において,189,189,456,-2.8011 -シ,私,1285,1285,17,-4.2442 -オコナウ,行う,819,819,481,-2.8270 -クレル,くれる,933,933,17,-2.8295 -イキ,いき,1012,1012,356,-2.8437 -ナカ,中,1285,1285,282,-4.2761 -オコナイ,行い,834,834,258,-2.8926 -シマエ,しまえ,1265,1265,47,-2.9108 -クル,くる,897,897,471,-2.9268 -イイ,いい,131,131,17,-2.9419 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_20.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_20.csv deleted file mode 100644 index 1400082..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_20.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -デス,です,460,460,17,-1.8655 -、,、,10,10,151,-1.2267 -ヨ,よ,288,288,17,-2.1474 -ン,ん,1310,1310,437,-3.5653 -カラ,から,297,297,356,-2.3083 -モノ,もの,1310,1310,468,-3.9802 -ガ,が,299,299,468,-2.0560 -」,」,7,7,121,-2.0554 -カ,か,359,359,468,-1.9789 -ノデ,ので,316,316,48,-2.3278 -ガ,が,148,148,468,-1.4621 -ホウ,方,1310,1310,48,-4.5756 -ケド,けど,301,301,17,-2.4058 -テ,て,307,307,356,-1.5059 -シ,し,304,304,258,-2.5363 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -コト,事,1310,1310,282,-4.9393 -レ,れ,876,876,468,-2.0223 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヨウ,よう,1312,1312,169,-2.2533 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_200.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_200.csv deleted file mode 100644 index 4102f61..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_200.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -イチ,一,1295,1295,134,-3.3833 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ダイ,第,558,558,454,-2.9246 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ニ,二,1295,1295,134,-4.2425 -『,『,6,6,322,-3.4104 -ツカイ,使い,1285,1285,379,-6.1093 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_201.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_201.csv deleted file mode 100644 index 07687e0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_201.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_202.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_202.csv deleted file mode 100644 index 18e5c59..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_202.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -コト,こと,1310,1310,282,-2.6917 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ノ,の,1310,1310,408,-2.7847 -『,『,6,6,322,-3.4104 -ツカイ,使い,1285,1285,379,-6.1093 -ノ,の,368,368,408,-1.2458 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_203.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_203.csv deleted file mode 100644 index f999856..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_203.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -「,「,6,6,352,-2.0388 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_204.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_204.csv deleted file mode 100644 index cb5cff8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_204.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -「,「,6,6,352,-2.0388 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ト,と,164,164,282,-1.8068 -トキ,時,1285,1285,282,-5.0461 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_205.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_205.csv deleted file mode 100644 index ca40d0c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_205.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コノ,この,1315,1315,468,-3.0084 -タ,多,1285,1285,351,-4.9124 -ソノ,その,1315,1315,468,-3.1000 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -スキ,好き,1287,1287,66,-4.8632 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ヒツヨウ,必要,1287,1287,169,-4.9541 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -『,『,6,6,322,-3.4104 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ワタシ,私,1306,1306,17,-3.6243 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_206.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_206.csv deleted file mode 100644 index 7084155..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_206.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ハ,は,261,261,468,-1.3731 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -ガ,が,148,148,468,-1.4621 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -タ,多,1285,1285,351,-4.9124 -テ,て,307,307,356,-1.5059 -フクミ,含み,1285,1285,258,-4.9821 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -『,『,6,6,322,-3.4104 -トキ,時,1285,1285,282,-5.0461 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナシ,なし,24,24,468,-2.1172 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_207.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_207.csv deleted file mode 100644 index 07687e0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_207.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_208.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_208.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_208.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_209.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_209.csv deleted file mode 100644 index a07b051..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_209.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コト,こと,1310,1310,282,-2.6917 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ノ,の,1310,1310,408,-2.7847 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -、,、,10,10,151,-1.2267 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -「,「,6,6,352,-2.0388 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ン,ん,1310,1310,437,-3.5653 -ツカイ,使い,1285,1285,379,-6.1093 -セン,戦,1285,1285,178,-6.3044 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_21.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_21.csv deleted file mode 100644 index 4a92171..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_21.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -ダ,だ,453,453,471,-1.9457 -・,・,5,5,203,-2.7687 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -コト,こと,1310,1310,282,-2.6917 -レ,れ,876,876,468,-2.0223 -ノ,の,1310,1310,408,-2.7847 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -タ,多,1285,1285,351,-4.9124 -タメ,ため,1313,1313,282,-3.3063 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナク,なく,36,36,468,-2.1850 -フクミ,含み,1285,1285,258,-4.9821 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_210.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_210.csv deleted file mode 100644 index 248c26f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_210.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -アル,ある,772,772,481,-2.9588 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ナル,なる,772,772,471,-3.0967 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -シゴト,仕事,1283,1283,290,-6.0556 -ハナシ,話,1283,1283,451,-6.1231 -ハタラキ,働き,1285,1285,42,-5.8522 -コノ,この,1315,1315,468,-3.0084 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_211.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_211.csv deleted file mode 100644 index 7ad6a4f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_211.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -『,『,6,6,322,-3.4104 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -シゴト,仕事,1283,1283,290,-6.0556 -ハナシ,話,1283,1283,451,-6.1231 -ツカイ,使い,1285,1285,379,-6.1093 -ソンザイ,存在,1283,1283,182,-6.1817 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_212.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_212.csv deleted file mode 100644 index 07687e0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_212.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_213.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_213.csv deleted file mode 100644 index f33eb0e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_213.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_214.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_214.csv deleted file mode 100644 index bc47a9b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_214.csv +++ /dev/null @@ -1,30 +0,0 @@ -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ン,ん,1310,1310,437,-3.5653 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -『,『,6,6,322,-3.4104 -モノ,もの,1310,1310,468,-3.9802 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_215.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_215.csv deleted file mode 100644 index 9eb5a49..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_215.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ノ,の,368,368,408,-1.2458 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -コノ,この,1315,1315,468,-3.0084 -シゴト,仕事,1283,1283,290,-6.0556 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ハナシ,話,1283,1283,451,-6.1231 -ケン,県,1285,1285,349,-5.7723 -ソノ,その,1315,1315,468,-3.1000 -ソンザイ,存在,1283,1283,182,-6.1817 -ハタラキ,働き,1285,1285,42,-5.8522 -シヨウ,使用,1283,1283,375,-6.2192 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_216.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_216.csv deleted file mode 100644 index f1827b1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_216.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ニッポン,日本,1294,1294,240,-3.5368 -ハタラキ,働き,1285,1285,42,-5.8522 -シゴト,仕事,1283,1283,290,-6.0556 -ゲン,現,1285,1285,309,-5.9095 -ハナシ,話,1283,1283,451,-6.1231 -サマ,様,1285,1285,66,-5.9406 -『,『,6,6,322,-3.4104 -コノ,この,1315,1315,468,-3.0084 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_217.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_217.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_217.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_218.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_218.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_218.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_219.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_219.csv deleted file mode 100644 index 93e98ed..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_219.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コト,こと,1310,1310,282,-2.6917 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ノ,の,1310,1310,408,-2.7847 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -ン,ん,1310,1310,437,-3.5653 -シゴト,仕事,1283,1283,290,-6.0556 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_22.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_22.csv deleted file mode 100644 index 0dcf8f9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_22.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -ガ,が,148,148,468,-1.4621 -ナカ,中,1285,1285,282,-4.2761 -ヲ,を,156,156,356,-1.4175 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ヨウ,よう,1312,1312,169,-2.2533 -タチ,立ち,1285,1285,356,-5.2862 -ハ,は,261,261,468,-1.3731 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -、,、,10,10,151,-1.2267 -メ,目,1285,1285,332,-5.6594 -ン,ん,1310,1310,437,-3.5653 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -モ,も,262,262,468,-1.7239 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_220.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_220.csv deleted file mode 100644 index 195db1c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_220.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -『,『,6,6,322,-3.4104 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_221.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_221.csv deleted file mode 100644 index 2dd855c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_221.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -ノ,の,368,368,408,-1.2458 -「,「,6,6,352,-2.0388 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ハナイ,はない,261,473,17,-7.2816 -『,『,6,6,322,-3.4104 -ハナイ,はない,261,20,17,-7.6404 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ハアリ,はあり,261,788,17,-7.8446 -ハナク,はなく,261,481,17,-7.8505 -ダケ,だけ,338,338,468,-2.4590 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ワタシ,私,1306,1306,17,-3.6243 -ミ,見,1285,1285,52,-5.3943 -ハアル,はある,261,772,17,-8.1513 -ジブン,自分,1285,1285,161,-5.4686 -ハナニ,は何,261,1306,17,-8.2092 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -コレ,これ,1306,1306,468,-3.8073 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_222.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_222.csv deleted file mode 100644 index 714e3c2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_222.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_223.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_223.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_223.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_224.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_224.csv deleted file mode 100644 index c523e2d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_224.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ン,ん,1310,1310,437,-3.5653 -ツカイ,使い,1285,1285,379,-6.1093 -、,、,10,10,151,-1.2267 -セン,戦,1285,1285,178,-6.3044 -ダイジ,大事,1285,1285,66,-6.3275 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_225.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_225.csv deleted file mode 100644 index 61e299b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_225.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -『,『,6,6,322,-3.4104 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -オ,お,560,560,437,-3.5014 -コノ,この,1315,1315,468,-3.0084 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ソノ,その,1315,1315,468,-3.1000 -ツカイ,使い,1285,1285,379,-6.1093 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_226.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_226.csv deleted file mode 100644 index b47a5e2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_226.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -『,『,6,6,322,-3.4104 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -コノ,この,1315,1315,468,-3.0084 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_227.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_227.csv deleted file mode 100644 index c7ea4ed..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_227.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_228.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_228.csv deleted file mode 100644 index 5c510ee..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_228.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -『,『,6,6,322,-3.4104 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -テ,て,307,307,356,-1.5059 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -シ,し,610,610,258,-1.5936 -ハタラキ,働き,1285,1285,42,-5.8522 -デ,で,149,149,468,-1.6148 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_229.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_229.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_229.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_23.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_23.csv deleted file mode 100644 index 8089462..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_23.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -テ,て,307,307,356,-1.5059 -!,!,1318,1318,244,-1.9828 -レ,れ,876,876,468,-2.0223 -ノ,の,368,368,408,-1.2458 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ノデ,ので,316,316,48,-2.3278 -アリ,あり,409,409,249,-2.3509 -デス,です,460,460,17,-1.8655 -アレ,あれ,407,407,47,-2.4311 -ヲ,を,156,156,356,-1.4175 -」,」,7,7,121,-2.0554 -タ,た,435,435,282,-1.4167 -ニ,に,151,151,282,-1.3747 -ノ,の,153,153,408,-2.5621 -キ,き,904,904,356,-2.5861 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_230.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_230.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_230.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_231.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_231.csv deleted file mode 100644 index 571118b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_231.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シカ,しか,257,257,268,-2.7748 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_232.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_232.csv deleted file mode 100644 index cfe7b75..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_232.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -タ,た,435,435,282,-1.4167 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -テ,て,307,307,356,-1.5059 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -シ,し,610,610,258,-1.5936 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ト,と,164,164,282,-1.8068 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ナイ,ない,473,473,468,-1.8979 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_233.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_233.csv deleted file mode 100644 index feae17a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_233.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -『,『,6,6,322,-3.4104 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,た,435,435,282,-1.4167 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -フクミ,含み,1285,1285,258,-4.9821 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -トキ,時,1285,1285,282,-5.0461 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_234.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_234.csv deleted file mode 100644 index f03dca5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_234.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -『,『,6,6,322,-3.4104 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -コノ,この,1315,1315,468,-3.0084 -アソビ,遊び,1285,1285,290,-5.5478 -ソノ,その,1315,1315,468,-3.1000 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_235.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_235.csv deleted file mode 100644 index c7ea4ed..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_235.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_236.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_236.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_236.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_237.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_237.csv deleted file mode 100644 index 2a305a4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_237.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -シゴト,仕事,1283,1283,290,-6.0556 -ツカイ,使い,1285,1285,379,-6.1093 -ハナシ,話,1283,1283,451,-6.1231 -ソンザイ,存在,1283,1283,182,-6.1817 -シヨウ,使用,1283,1283,375,-6.2192 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_238.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_238.csv deleted file mode 100644 index 0fb4062..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_238.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -モ,も,262,262,468,-1.7239 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -シ,し,610,610,258,-1.5936 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -デ,で,149,149,468,-1.6148 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -コノ,この,1315,1315,468,-3.0084 -アソビ,遊び,1285,1285,290,-5.5478 -ト,と,164,164,282,-1.8068 -『,『,6,6,322,-3.4104 -ソノ,その,1315,1315,468,-3.1000 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_239.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_239.csv deleted file mode 100644 index 28013ed..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_239.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ニ,に,151,151,282,-1.3747 -『,『,6,6,322,-3.4104 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ミ,見,1285,1285,52,-5.3943 -ガ,が,148,148,468,-1.4621 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -テ,て,307,307,356,-1.5059 -アソビ,遊び,1285,1285,290,-5.5478 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -メ,目,1285,1285,332,-5.6594 -モ,も,262,262,468,-1.7239 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_24.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_24.csv deleted file mode 100644 index 94390c6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_24.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -。,。,8,8,61,-1.3115 -デ,で,458,458,468,-1.9218 -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -デス,です,460,460,17,-1.8655 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -ダ,だ,453,453,471,-1.9457 -ハ,は,261,261,468,-1.3731 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナク,なく,36,36,468,-2.1850 -レロ,れろ,874,874,468,-2.2332 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_240.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_240.csv deleted file mode 100644 index 6ff55b5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_240.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_241.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_241.csv deleted file mode 100644 index 80f8d03..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_241.csv +++ /dev/null @@ -1,30 +0,0 @@ -・,・,5,5,203,-2.7687 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヨウ,よう,1312,1312,169,-2.2533 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -…,…,5,5,184,-3.3301 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_242.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_242.csv deleted file mode 100644 index f031596..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_242.csv +++ /dev/null @@ -1,30 +0,0 @@ -「,「,6,6,352,-2.0388 -、,、,10,10,151,-1.2267 -『,『,6,6,322,-3.4104 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ダイ,第,558,558,454,-2.9246 -ナカ,中,1290,1290,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -モ,も,262,262,468,-1.7239 -フクミ,含み,1285,1285,258,-4.9821 -ナカ,中,1314,1314,282,-4.2761 -ナカ,中,1293,1293,282,-4.2761 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -イマ,今,1314,1314,468,-4.6147 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -バアイ,場合,1314,1314,468,-4.6867 -オ,お,560,560,437,-3.5014 -コト,こと,1310,1310,282,-2.6917 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ヤク,約,558,558,387,-3.9126 -マエ,前,1314,1314,282,-4.7655 -【,【,6,6,473,-5.2474 -アソビ,遊び,1285,1285,290,-5.5478 -ノ,の,1310,1310,408,-2.7847 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_243.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_243.csv deleted file mode 100644 index 03b3500..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_243.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モ,も,262,262,468,-1.7239 -」,」,7,7,121,-2.0554 -タ,多,1285,1285,351,-4.9124 -「,「,6,6,352,-2.0388 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ニッポン,日本,1294,1294,240,-3.5368 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ニ,に,151,151,282,-1.3747 -ナ,名,1285,1285,454,-5.3730 -オモウ,思う,817,817,17,-3.0926 -ミ,見,1285,1285,52,-5.3943 -ガ,が,148,148,468,-1.4621 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -テ,て,307,307,356,-1.5059 -アソビ,遊び,1285,1285,290,-5.5478 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_244.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_244.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_244.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_245.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_245.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_245.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_246.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_246.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_246.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_247.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_247.csv deleted file mode 100644 index 7075f35..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_247.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_248.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_248.csv deleted file mode 100644 index 9e5c016..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_248.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シゴト,仕事,1283,1283,290,-6.0556 -ハナシ,話,1283,1283,451,-6.1231 -ソンザイ,存在,1283,1283,182,-6.1817 -シヨウ,使用,1283,1283,375,-6.2192 -サンカ,参加,1283,1283,271,-6.4058 -イミ,意味,1283,1283,327,-6.4065 -カンケイ,関係,1283,1283,468,-6.4114 -ホウソウ,放送,1283,1283,305,-6.5502 -カツドウ,活動,1283,1283,324,-6.5714 -「,「,6,6,352,-2.0388 -リヨウ,利用,1283,1283,375,-6.5809 -オネガイ,お願い,1283,1283,17,-6.6855 -ハッピョウ,発表,1283,1283,375,-6.7282 -エイキョウ,影響,1283,1283,356,-6.7775 -カイサイ,開催,1283,1283,224,-6.7877 -カイハツ,開発,1283,1283,375,-6.7889 -ショウカイ,紹介,1283,1283,375,-6.8245 -ケンキュウ,研究,1283,1283,239,-6.8305 -トウジョウ,登場,1283,1283,322,-6.8334 -ハツバイ,発売,1283,1283,24,-6.8412 -カイシ,開始,1283,1283,494,-6.8434 -ヘンコウ,変更,1283,1283,375,-6.9031 -ケイケン,経験,1283,1283,334,-6.9054 -キロク,記録,1283,1283,318,-6.9176 -セイカツ,生活,1283,1283,42,-6.9220 -コウニュウ,購入,1283,1283,375,-6.9649 -セッチ,設置,1283,1283,375,-6.9862 -タイオウ,対応,1283,1283,375,-6.9865 -セッテイ,設定,1283,1283,375,-7.0152 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_249.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_249.csv deleted file mode 100644 index 3afed76..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_249.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -『,『,6,6,322,-3.4104 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -スル,する,599,599,481,-1.9113 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -シゴト,仕事,1283,1283,290,-6.0556 -ハタラキ,働き,1285,1285,42,-5.8522 -ハナシ,話,1283,1283,451,-6.1231 -ゲン,現,1285,1285,309,-5.9095 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_25.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_25.csv deleted file mode 100644 index d145c67..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_25.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -ウカ,うか,506,359,17,-6.6916 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ウト,うと,506,164,17,-7.3953 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_250.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_250.csv deleted file mode 100644 index fb8cf4b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_250.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -モ,も,262,262,468,-1.7239 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ハ,は,261,261,468,-1.3731 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -コノ,この,1315,1315,468,-3.0084 -ケン,県,1285,1285,349,-5.7723 -『,『,6,6,322,-3.4104 -ソノ,その,1315,1315,468,-3.1000 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_251.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_251.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_251.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_252.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_252.csv deleted file mode 100644 index 3862d89..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_252.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -ニッポン,日本,1294,1294,240,-3.5368 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_253.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_253.csv deleted file mode 100644 index d9537cd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_253.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -モ,も,262,262,468,-1.7239 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -ニ,に,151,151,282,-1.3747 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -『,『,6,6,322,-3.4104 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ニッポン,日本,1294,1294,240,-3.5368 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_254.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_254.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_254.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_255.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_255.csv deleted file mode 100644 index cbbcd0a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_255.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -デス,です,460,460,17,-1.8655 -ダ,だ,453,453,471,-1.9457 -マス,ます,491,491,17,-1.8643 -シ,私,1285,1285,17,-4.2442 -「,「,6,6,352,-2.0388 -ナカ,中,1285,1285,282,-4.2761 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -。,。,8,8,61,-1.3115 -ガ,が,299,299,468,-2.0560 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -アリガトウ,ありがとう,3,3,244,-3.6808 -トシテ,として,179,179,356,-2.2226 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_256.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_256.csv deleted file mode 100644 index a06194c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_256.csv +++ /dev/null @@ -1,30 +0,0 @@ -モ,も,262,262,468,-1.7239 -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -アル,ある,772,772,481,-2.9588 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナル,なる,772,772,471,-3.0967 -「,「,6,6,352,-2.0388 -ネエ,ねえ,20,20,468,-2.2298 -スル,する,599,599,481,-1.9113 -デキ,でき,625,625,481,-4.3005 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ミ,見,625,625,52,-4.5511 -トキ,時,1285,1285,282,-5.0461 -アリ,あり,788,788,481,-3.1265 -サ,さ,605,605,441,-1.9359 -ナリ,なり,788,788,471,-3.2643 -。,。,8,8,61,-1.3115 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -イ,い,625,625,356,-4.9123 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -デキル,できる,619,619,481,-4.0489 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -コノ,この,1315,1315,468,-3.0084 -アソビ,遊び,1285,1285,290,-5.5478 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_257.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_257.csv deleted file mode 100644 index 2c81a91..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_257.csv +++ /dev/null @@ -1,30 +0,0 @@ -ネエ,ねえ,20,20,468,-2.2298 -ナイ,ない,20,20,468,-3.4755 -ナク,なく,36,36,468,-2.1850 -シ,し,610,610,258,-1.5936 -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -アリ,あり,788,788,481,-3.1265 -ナイ,無い,20,20,481,-5.4105 -ナリ,なり,788,788,471,-3.2643 -デキ,でき,625,625,481,-4.3005 -ネエ,無え,20,20,481,-5.9716 -ミ,見,625,625,52,-4.5511 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -イ,い,625,625,356,-4.9123 -カンガエ,考え,625,625,52,-5.1086 -デ,出,625,625,249,-5.1376 -ネェ,ねぇ,20,20,420,-6.6456 -タ,多,1285,1285,351,-4.9124 -ネー,ねー,20,20,420,-6.6955 -フクミ,含み,1285,1285,258,-4.9821 -イイ,言い,833,833,17,-2.9432 -トキ,時,1285,1285,282,-5.0461 -ネッ,ねっ,20,20,80,-6.8336 -ナクッ,なくっ,36,36,17,-4.2673 -ナ,な,12,12,468,-2.1172 -ウケ,受け,625,625,258,-5.4817 -・,・,5,5,203,-2.7687 -ネ〜,ね〜,20,20,468,-6.9924 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_258.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_258.csv deleted file mode 100644 index 72c83a1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_258.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -ネエ,ねえ,20,20,468,-2.2298 -シ,し,610,610,258,-1.5936 -ナイ,ない,20,20,468,-3.4755 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナク,なく,36,36,468,-2.1850 -サ,さ,605,605,441,-1.9359 -デキ,でき,625,625,481,-4.3005 -アリ,あり,788,788,481,-3.1265 -ミ,見,625,625,52,-4.5511 -ナリ,なり,788,788,471,-3.2643 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -イ,い,625,625,356,-4.9123 -アリ,あり,409,409,249,-2.3509 -スル,する,599,599,481,-1.9113 -カンガエ,考え,625,625,52,-5.1086 -デ,出,625,625,249,-5.1376 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -デキル,できる,619,619,481,-4.0489 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -スキ,好き,1287,1287,66,-4.8632 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_259.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_259.csv deleted file mode 100644 index 815d78a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_259.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -、,、,10,10,151,-1.2267 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ネ,ね,279,279,47,-2.1699 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -トイウ,という,173,173,468,-2.2416 -レル,れる,870,870,468,-2.2380 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_26.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_26.csv deleted file mode 100644 index fe73a2c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_26.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -ウカ,うか,506,359,17,-6.6916 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -ウト,うと,506,164,17,-7.3953 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_260.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_260.csv deleted file mode 100644 index 08df1cb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_260.csv +++ /dev/null @@ -1,30 +0,0 @@ -ネエ,ねえ,20,20,468,-2.2298 -ナイ,ない,20,20,468,-3.4755 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ナイ,無い,20,20,481,-5.4105 -ワ,わ,291,291,36,-2.7424 -ネエ,無え,20,20,481,-5.9716 -ナイ,ない,482,482,468,-2.1746 -ネン,ねん,281,281,331,-3.6938 -ナイ,ない,473,473,468,-1.8979 -ネェ,ねぇ,20,20,420,-6.6456 -ネー,ねー,20,20,420,-6.6955 -ネッ,ねっ,20,20,80,-6.8336 -ナ,な,275,275,287,-2.5224 -ネ〜,ね〜,20,20,468,-6.9924 -ノ,の,368,368,408,-1.2458 -ネェ,ねェ,20,20,420,-7.0578 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -?,?,1317,1317,17,-2.1596 -テ,て,307,307,356,-1.5059 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_261.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_261.csv deleted file mode 100644 index cd43955..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_261.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -ナイ,ない,473,473,468,-1.8979 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ネエ,ねえ,20,20,468,-2.2298 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -『,『,6,6,322,-3.4104 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -コノ,この,1315,1315,468,-3.0084 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ナク,なく,481,481,468,-2.5033 -ソノ,その,1315,1315,468,-3.1000 -アソビ,遊び,1285,1285,290,-5.5478 -ワタシ,私,1306,1306,17,-3.6243 -メ,目,1285,1285,332,-5.6594 -ナイ,ない,20,20,468,-3.4755 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -ナクッ,なくっ,481,481,17,-2.7253 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -コレ,これ,1306,1306,468,-3.8073 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_262.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_262.csv deleted file mode 100644 index 0830b94..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_262.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -ネエ,ねえ,20,20,468,-2.2298 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -アリ,あり,788,788,481,-3.1265 -ナリ,なり,788,788,471,-3.2643 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コノ,この,1315,1315,468,-3.0084 -ナク,なく,36,36,468,-2.1850 -ソノ,その,1315,1315,468,-3.1000 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -デキ,でき,625,625,481,-4.3005 -ナイ,ない,20,20,468,-3.4755 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ミ,見,625,625,52,-4.5511 -メ,目,1285,1285,332,-5.6594 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_263.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_263.csv deleted file mode 100644 index 26def43..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_263.csv +++ /dev/null @@ -1,30 +0,0 @@ -ダ,だ,453,453,471,-1.9457 -ネエ,ねえ,20,20,468,-2.2298 -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -ガル,がる,886,886,17,-3.7189 -ナイ,ない,20,20,468,-3.4755 -ナク,なく,36,36,468,-2.1850 -モウ,もう,1281,1281,468,-5.0581 -・,・,5,5,203,-2.7687 -ヨク,よく,1281,1281,48,-5.2105 -ホントウニ,本当に,1281,1281,17,-5.3073 -トクニ,特に,1281,1281,468,-5.3671 -デス,です,460,460,17,-1.8655 -イツモ,いつも,1281,1281,17,-5.5810 -ハジメテ,初めて,1281,1281,356,-5.5862 -…,…,5,5,184,-3.3301 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ホトンド,ほとんど,1281,1281,468,-5.8029 -オモウ,思う,817,817,17,-3.0926 -デキル,できる,619,619,481,-4.0489 -モット,もっと,1281,1281,48,-5.8820 -テ,て,307,307,356,-1.5059 -ズット,ずっと,1281,1281,48,-5.9159 -ヤル,やる,772,772,17,-5.2305 -ナンカ,なんか,2,2,17,-4.0239 -ホボ,ほぼ,1281,1281,468,-6.0059 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_264.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_264.csv deleted file mode 100644 index aad28b1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_264.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -・,・,5,5,203,-2.7687 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -?,?,1317,1317,17,-2.1596 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_265.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_265.csv deleted file mode 100644 index 91e57db..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_265.csv +++ /dev/null @@ -1,30 +0,0 @@ -?,?,1317,1317,17,-2.1596 -、,、,10,10,151,-1.2267 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_266.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_266.csv deleted file mode 100644 index 74e7a33..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_266.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -?,?,1317,1317,17,-2.1596 -・,・,5,5,203,-2.7687 -、,、,10,10,151,-1.2267 -…,…,5,5,184,-3.3301 -ネ,ね,279,279,47,-2.1699 -ノ,の,368,368,408,-1.2458 -」,」,7,7,121,-2.0554 -〜,〜,5,5,244,-4.0997 -ト,と,164,164,282,-1.8068 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_267.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_267.csv deleted file mode 100644 index 764c6b8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_267.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -サ,さ,605,605,441,-1.9359 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -ウ,う,506,506,133,-2.2404 -ス,す,602,602,481,-2.2579 -ト,と,309,309,282,-2.2641 -カラ,から,297,297,356,-2.3083 -アリ,あり,409,409,249,-2.3509 -タイ,たい,444,444,17,-2.4250 -アレ,あれ,407,407,47,-2.4311 -ト,と,164,164,282,-1.8068 -ナク,なく,481,481,468,-2.5033 -ノ,の,368,368,408,-1.2458 -?,?,1317,1317,17,-2.1596 -シ,し,304,304,258,-2.5363 -ズ,ず,487,487,282,-2.5580 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_268.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_268.csv deleted file mode 100644 index 5fe9b22..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_268.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ヲ,を,156,156,356,-1.4175 -・,・,5,5,203,-2.7687 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -…,…,5,5,184,-3.3301 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -トシテ,として,179,179,356,-2.2226 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_269.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_269.csv deleted file mode 100644 index 9406090..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_269.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -ト,と,309,309,282,-2.2641 -カラ,から,297,297,356,-2.3083 -ノデ,ので,316,316,48,-2.3278 -マデ,まで,355,355,143,-2.3294 -アリ,あり,409,409,249,-2.3509 -アレ,あれ,407,407,47,-2.4311 -ナク,なく,481,481,468,-2.5033 -シ,し,304,304,258,-2.5363 -ヨリ,より,155,155,351,-2.5584 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_27.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_27.csv deleted file mode 100644 index 0f0d329..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_27.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ヌ,ぬ,484,484,17,-3.3915 -。,。,8,8,61,-1.3115 -ネ,ね,279,279,47,-2.1699 -ノ,の,368,368,408,-1.2458 -ズ,ず,487,487,282,-2.5580 -デス,です,460,460,17,-1.8655 -ハ,は,261,261,468,-1.3731 -ン,ん,515,515,437,-2.4192 -モ,も,262,262,468,-1.7239 -ナ,な,275,275,287,-2.5224 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -カ,か,359,359,468,-1.9789 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ッテ,って,167,167,17,-2.3603 -ダ,だ,453,453,471,-1.9457 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -デ,で,149,149,468,-1.6148 -サ,さ,1304,1304,441,-2.8267 -トキ,時,1285,1285,282,-5.0461 -ナイ,ない,473,473,468,-1.8979 -・,・,5,5,203,-2.7687 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -マス,ます,491,491,17,-1.8643 -タチ,立ち,1285,1285,356,-5.2862 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_270.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_270.csv deleted file mode 100644 index 1cdf95d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_270.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_271.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_271.csv deleted file mode 100644 index 23b712e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_271.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -…,…,5,5,184,-3.3301 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_272.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_272.csv deleted file mode 100644 index bca5650..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_272.csv +++ /dev/null @@ -1,30 +0,0 @@ -?,?,1317,1317,17,-2.1596 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -・,・,5,5,203,-2.7687 -カ,か,359,359,468,-1.9789 -…,…,5,5,184,-3.3301 -ナ,な,454,454,287,-1.8607 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ナ,な,275,275,287,-2.5224 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -ウ,う,506,506,133,-2.2404 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_273.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_273.csv deleted file mode 100644 index cc3cf08..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_273.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -・,・,5,5,203,-2.7687 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_274.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_274.csv deleted file mode 100644 index f310440..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_274.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_275.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_275.csv deleted file mode 100644 index f2e3df9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_275.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -・,・,5,5,203,-2.7687 -?,?,1317,1317,17,-2.1596 -…,…,5,5,184,-3.3301 -」,」,7,7,121,-2.0554 -〜,〜,5,5,244,-4.0997 -ッテ,って,167,167,17,-2.3603 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -ナカレ,なかれ,30,30,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -ウ,う,506,506,133,-2.2404 -ト,と,309,309,282,-2.2641 -ヨ,よ,288,288,17,-2.1474 -タイ,たい,444,444,17,-2.4250 -アレ,あれ,407,407,47,-2.4311 -ナク,なく,481,481,468,-2.5033 -シ,し,304,304,258,-2.5363 -キ,き,904,904,356,-2.5861 -オリ,おり,1197,1197,356,-2.6223 -ゴザイ,ござい,428,428,17,-2.6577 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_276.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_276.csv deleted file mode 100644 index c5c30f0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_276.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -ッテ,って,167,167,17,-2.3603 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -レロ,れろ,874,874,468,-2.2332 -ヨウ,よう,1312,1312,169,-2.2533 -ス,す,602,602,481,-2.2579 -ト,と,309,309,282,-2.2641 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_277.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_277.csv deleted file mode 100644 index 92106a8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_277.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 -ヤ,や,366,366,43,-2.1479 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_278.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_278.csv deleted file mode 100644 index 47c0077..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_278.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -・,・,5,5,203,-2.7687 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_279.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_279.csv deleted file mode 100644 index b87466f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_279.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -…,…,5,5,184,-3.3301 -レロ,れろ,874,874,468,-2.2332 -ト,と,309,309,282,-2.2641 -カラ,から,297,297,356,-2.3083 -アリ,あり,409,409,249,-2.3509 -タイ,たい,444,444,17,-2.4250 -アレ,あれ,407,407,47,-2.4311 -ナク,なく,481,481,468,-2.5033 -シ,し,304,304,258,-2.5363 -?,?,1317,1317,17,-2.1596 -キ,き,904,904,356,-2.5861 -オリ,おり,1197,1197,356,-2.6223 -ゴザイ,ござい,428,428,17,-2.6577 -ニヨリ,により,211,211,43,-2.7172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_28.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_28.csv deleted file mode 100644 index a10ee99..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_28.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_280.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_280.csv deleted file mode 100644 index c1323d5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_280.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_281.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_281.csv deleted file mode 100644 index 2a58f48..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_281.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -ノ,の,368,368,408,-1.2458 -トシテ,として,179,179,356,-2.2226 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_282.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_282.csv deleted file mode 100644 index abb77a1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_282.csv +++ /dev/null @@ -1,30 +0,0 @@ -?,?,1317,1317,17,-2.1596 -。,。,8,8,61,-1.3115 -ヨ,よ,288,288,17,-2.1474 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -、,、,10,10,151,-1.2267 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ダ,だ,453,453,471,-1.9457 -ネ,ね,279,279,47,-2.1699 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_283.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_283.csv deleted file mode 100644 index af33550..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_283.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -・,・,5,5,203,-2.7687 -…,…,5,5,184,-3.3301 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -?,?,1317,1317,17,-2.1596 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_284.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_284.csv deleted file mode 100644 index d0fd6b9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_284.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -。,。,8,8,61,-1.3115 -ナイ,ない,473,473,468,-1.8979 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -・,・,5,5,203,-2.7687 -レロ,れろ,874,874,468,-2.2332 -ウ,う,506,506,133,-2.2404 -シ,私,1285,1285,17,-4.2442 -ト,と,309,309,282,-2.2641 -ナカ,中,1285,1285,282,-4.2761 -カラ,から,297,297,356,-2.3083 -アリ,あり,409,409,249,-2.3509 -ヲ,を,156,156,356,-1.4175 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_285.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_285.csv deleted file mode 100644 index d962d88..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_285.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_286.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_286.csv deleted file mode 100644 index df8b4a6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_286.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ト,と,164,164,282,-1.8068 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -・,・,5,5,203,-2.7687 -」,」,7,7,121,-2.0554 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_287.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_287.csv deleted file mode 100644 index f6147fe..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_287.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -・,・,5,5,203,-2.7687 -デ,で,458,458,468,-1.9218 -…,…,5,5,184,-3.3301 -〜,〜,5,5,244,-4.0997 -ト,と,164,164,282,-1.8068 -?,?,1317,1317,17,-2.1596 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -ナク,なく,36,36,468,-2.1850 -ナイ,ない,473,473,468,-1.8979 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -ッテ,って,167,167,17,-2.3603 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ノ,の,368,368,408,-1.2458 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_288.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_288.csv deleted file mode 100644 index 5233e79..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_288.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ネ,ね,279,279,47,-2.1699 -ナイ,ない,473,473,468,-1.8979 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -、,、,10,10,151,-1.2267 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ト,と,309,309,282,-2.2641 -・,・,5,5,203,-2.7687 -タイ,たい,444,444,17,-2.4250 -アレ,あれ,407,407,47,-2.4311 -ナク,なく,481,481,468,-2.5033 -シ,し,304,304,258,-2.5363 -キ,き,904,904,356,-2.5861 -オリ,おり,1197,1197,356,-2.6223 -ナ,な,275,275,287,-2.5224 -ニヨッテ,によって,210,210,468,-2.6690 -ニヨル,による,214,214,43,-2.7162 -シマウ,しまう,1253,1253,282,-2.7195 -タキ,たき,445,445,437,-2.7248 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_289.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_289.csv deleted file mode 100644 index fe26ff5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_289.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ヨウ,よう,1312,1312,169,-2.2533 -ト,と,309,309,282,-2.2641 -カラ,から,297,297,356,-2.3083 -ノデ,ので,316,316,48,-2.3278 -マデ,まで,355,355,143,-2.3294 -バ,ば,318,318,282,-2.3431 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_29.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_29.csv deleted file mode 100644 index 3f5aeea..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_29.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -オオカレ,多かれ,29,29,481,-4.3478 -ヨカレ,良かれ,29,29,48,-4.5003 -クラカレ,くらかれ,29,29,48,-4.6465 -タカカレ,高かれ,29,29,351,-5.0521 -ツヨカレ,強かれ,29,29,43,-5.3497 -「,「,6,6,352,-2.0388 -ワリカレ,悪かれ,29,29,48,-5.4253 -ワルカレ,悪かれ,29,29,48,-5.4253 -ヤスカレ,やすかれ,29,29,48,-5.5352 -スゴカレ,すごかれ,29,29,17,-5.5973 -スクナカレ,少なかれ,29,29,471,-5.8153 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -オモシロカレ,面白かれ,29,29,17,-5.9315 -コノ,この,1315,1315,468,-3.0084 -チカカレ,近かれ,29,29,471,-6.0051 -。,。,8,8,61,-1.3115 -ナガカレ,長かれ,29,29,471,-6.0705 -ソノ,その,1315,1315,468,-3.1000 -ハヤカレ,早かれ,29,29,471,-6.0788 -ヨカレ,よかれ,29,29,48,-6.1358 -コワカレ,怖かれ,29,29,17,-6.2075 -ヒクカレ,低かれ,29,29,48,-6.2464 -ツラカレ,辛かれ,29,29,48,-6.4639 -スゴカレ,凄かれ,29,29,17,-6.4977 -チイサカレ,小さかれ,29,29,471,-6.5022 -ワカカレ,若かれ,29,29,127,-6.5582 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_290.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_290.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_290.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_291.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_291.csv deleted file mode 100644 index 7ddaa4f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_291.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -・,・,5,5,203,-2.7687 -ヨ,よ,288,288,17,-2.1474 -…,…,5,5,184,-3.3301 -ネ,ね,279,279,47,-2.1699 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -ト,と,309,309,282,-2.2641 -ノデ,ので,316,316,48,-2.3278 -タイ,たい,444,444,17,-2.4250 -アレ,あれ,407,407,47,-2.4311 -ナク,なく,481,481,468,-2.5033 -シ,し,304,304,258,-2.5363 -〜,〜,5,5,244,-4.0997 -キ,き,904,904,356,-2.5861 -ソウ,そう,1301,1301,17,-2.6187 -」,」,7,7,121,-2.0554 -ニヨッテ,によって,210,210,468,-2.6690 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_292.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_292.csv deleted file mode 100644 index 919e7f0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_292.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_293.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_293.csv deleted file mode 100644 index 874aa06..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_293.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -?,?,1317,1317,17,-2.1596 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -・,・,5,5,203,-2.7687 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_294.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_294.csv deleted file mode 100644 index 3493dd0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_294.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -シ,私,1285,1285,17,-4.2442 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_295.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_295.csv deleted file mode 100644 index c5abf6a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_295.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -、,、,10,10,151,-1.2267 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_296.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_296.csv deleted file mode 100644 index 7e19e7a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_296.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コノ,この,1315,1315,468,-3.0084 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ソノ,その,1315,1315,468,-3.1000 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ナカ,中,1293,1293,282,-4.2761 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -オ,お,560,560,437,-3.5014 -ツカイ,使い,1285,1285,379,-6.1093 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_297.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_297.csv deleted file mode 100644 index 7debd0f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_297.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ネ,ね,279,279,47,-2.1699 -デス,です,460,460,17,-1.8655 -ダ,だ,453,453,471,-1.9457 -ト,と,164,164,282,-1.8068 -デ,で,458,458,468,-1.9218 -ナ,な,275,275,287,-2.5224 -シ,私,1285,1285,17,-4.2442 -」,」,7,7,121,-2.0554 -ナカ,中,1285,1285,282,-4.2761 -・,・,5,5,203,-2.7687 -ナイ,ない,473,473,468,-1.8979 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -カ,か,359,359,468,-1.9789 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ッテ,って,167,167,17,-2.3603 -ウ,う,506,506,133,-2.2404 -ト,と,309,309,282,-2.2641 -…,…,5,5,184,-3.3301 -ワタシ,私,1306,1306,17,-3.6243 -タ,多,1285,1285,351,-4.9124 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_298.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_298.csv deleted file mode 100644 index 2d7bcf2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_298.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -「,「,6,6,352,-2.0388 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コノ,この,1315,1315,468,-3.0084 -キリ,切り,1285,1285,60,-5.3631 -ワタシ,私,1306,1306,17,-3.6243 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ソノ,その,1315,1315,468,-3.1000 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -アソビ,遊び,1285,1285,290,-5.5478 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -メ,目,1285,1285,332,-5.6594 -アル,ある,772,772,481,-2.9588 -テ,て,307,307,356,-1.5059 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_299.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_299.csv deleted file mode 100644 index 2141150..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_299.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -…,…,5,5,184,-3.3301 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -〜,〜,5,5,244,-4.0997 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -?,?,1317,1317,17,-2.1596 -ワタシ,私,1306,1306,17,-3.6243 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ナイ,ない,473,473,468,-1.8979 -コレ,これ,1306,1306,468,-3.8073 -!,!,1318,1318,244,-1.9828 -ソレ,それ,1306,1306,468,-3.8293 -ト,と,150,150,282,-2.0125 -ネ,ね,279,279,47,-2.1699 -ガ,が,299,299,468,-2.0560 -コノ,この,1315,1315,468,-3.0084 -タチ,立ち,1285,1285,356,-5.2862 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -カズ,数,1285,1285,387,-5.3011 -マセ,ませ,497,497,17,-2.1344 -ソノ,その,1315,1315,468,-3.1000 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_3.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_3.csv deleted file mode 100644 index 95aef89..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_3.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ゴザイ,ござい,428,428,17,-2.6577 -。,。,8,8,61,-1.3115 -!,!,1318,1318,244,-1.9828 -ナカレ,なかれ,30,30,468,-2.1172 -アル,ある,403,403,481,-2.1570 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -・,・,5,5,203,-2.7687 -アレ,あれ,407,407,47,-2.4311 -キ,き,904,904,356,-2.5861 -オリ,おり,1197,1197,356,-2.6223 -シマウ,しまう,1253,1253,282,-2.7195 -イク,いく,992,992,356,-2.7538 -シマイ,しまい,1273,1273,282,-2.7822 -ニオイテ,において,189,189,456,-2.8011 -オコナウ,行う,819,819,481,-2.8270 -クレル,くれる,933,933,17,-2.8295 -イキ,いき,1012,1012,356,-2.8437 -オコナイ,行い,834,834,258,-2.8926 -シマエ,しまえ,1265,1265,47,-2.9108 -ズ,ず,486,486,282,-2.9232 -…,…,5,5,184,-3.3301 -オコナエ,行え,828,828,268,-2.9473 -ト,と,328,328,282,-2.9686 -オル,おる,1093,1093,437,-2.9728 -クレ,くれ,937,937,17,-2.9953 -ベキ,べき,539,539,468,-2.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_30.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_30.csv deleted file mode 100644 index 694c31b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_30.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -』,』,7,7,136,-3.5069 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_300.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_300.csv deleted file mode 100644 index 276392b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_300.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -…,…,5,5,184,-3.3301 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_301.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_301.csv deleted file mode 100644 index 3eb86f8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_301.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ネ,ね,279,279,47,-2.1699 -・,・,5,5,203,-2.7687 -…,…,5,5,184,-3.3301 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,275,275,287,-2.5224 -マス,ます,491,491,17,-1.8643 -ワタシ,私,1306,1306,17,-3.6243 -ナイ,ない,473,473,468,-1.8979 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -〜,〜,5,5,244,-4.0997 -コレ,これ,1306,1306,468,-3.8073 -ガ,が,299,299,468,-2.0560 -タ,多,1285,1285,351,-4.9124 -ソレ,それ,1306,1306,468,-3.8293 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -フクミ,含み,1285,1285,258,-4.9821 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -「,「,6,6,352,-2.0388 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -トキ,時,1285,1285,282,-5.0461 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_302.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_302.csv deleted file mode 100644 index d2b48ca..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_302.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -ネ,ね,279,279,47,-2.1699 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -…,…,5,5,184,-3.3301 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_303.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_303.csv deleted file mode 100644 index 241d75a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_303.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -。,。,8,8,61,-1.3115 -マタ,また,555,555,468,-3.4936 -ニ,に,151,151,282,-1.3747 -ナ,な,275,275,287,-2.5224 -ニ,に,329,329,282,-2.1199 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -シカシ,しかし,555,555,282,-4.3940 -ソシテ,そして,555,555,282,-4.4117 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -タ,多,1285,1285,351,-4.9124 -デ,で,149,149,468,-1.6148 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -デモ,でも,555,555,468,-4.6667 -ノ,の,368,368,408,-1.2458 -・,・,5,5,203,-2.7687 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_304.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_304.csv deleted file mode 100644 index d927ef7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_304.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -ネ,ね,279,279,47,-2.1699 -タ,た,435,435,282,-1.4167 -…,…,5,5,184,-3.3301 -ナイ,ない,473,473,468,-1.8979 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ナ,な,275,275,287,-2.5224 -ガ,が,299,299,468,-2.0560 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ウ,う,506,506,133,-2.2404 -ト,と,309,309,282,-2.2641 -カラ,から,297,297,356,-2.3083 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_305.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_305.csv deleted file mode 100644 index f096390..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_305.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -イイ,いい,37,37,17,-2.6886 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナカ,中,1314,1314,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -・,・,5,5,203,-2.7687 -トキ,時,1285,1285,282,-5.0461 -イマ,今,1314,1314,468,-4.6147 -ノ,の,368,368,408,-1.2458 -バアイ,場合,1314,1314,468,-4.6867 -マエ,前,1314,1314,282,-4.7655 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -コノ,この,1315,1315,468,-3.0084 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -キョウ,今日,1314,1314,356,-4.9086 -ソノ,その,1315,1315,468,-3.1000 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ゲンザイ,現在,1314,1314,480,-4.9503 -ジカン,時間,1314,1314,317,-5.0003 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_306.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_306.csv deleted file mode 100644 index a0c4154..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_306.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -。,。,8,8,61,-1.3115 -アリ,あり,788,788,481,-3.1265 -ナリ,なり,788,788,471,-3.2643 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヤル,やる,772,772,17,-5.2305 -ノ,の,368,368,408,-1.2458 -タ,多,1285,1285,351,-4.9124 -ワカル,わかる,772,772,481,-5.6202 -ツクル,作る,772,772,481,-5.6347 -シル,知る,772,772,438,-5.6604 -フクミ,含み,1285,1285,258,-4.9821 -ハイル,入る,772,772,471,-5.6705 -トキ,時,1285,1285,282,-5.0461 -・,・,5,5,203,-2.7687 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ワカル,分かる,772,772,481,-6.1317 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -カワル,変わる,772,772,471,-6.2425 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_307.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_307.csv deleted file mode 100644 index d1650c6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_307.csv +++ /dev/null @@ -1,30 +0,0 @@ -イル,いる,919,919,468,-1.9884 -、,、,10,10,151,-1.2267 -イ,い,930,930,356,-2.0866 -モ,も,262,262,468,-1.7239 -マス,ます,491,491,17,-1.8643 -キ,き,904,904,356,-2.5861 -オリ,おり,1197,1197,356,-2.6223 -ハ,は,261,261,468,-1.3731 -ミ,み,930,930,52,-4.5938 -カラ,から,147,147,356,-1.9960 -ミル,みる,919,919,471,-5.2297 -クレ,くれ,940,940,17,-2.7401 -クレル,くれる,919,919,17,-5.3621 -。,。,8,8,61,-1.3115 -スギル,すぎる,919,919,48,-5.4433 -スギ,すぎ,930,930,268,-5.1245 -クダサイ,ください,1239,1239,17,-3.0904 -シ,私,1285,1285,17,-4.2442 -シマウ,しまう,1253,1253,282,-2.7195 -ナカ,中,1285,1285,282,-4.2761 -イク,いく,992,992,356,-2.7538 -「,「,6,6,352,-2.0388 -クル,くる,897,897,471,-2.9268 -ノ,の,368,368,408,-1.2458 -シマイ,しまい,1273,1273,282,-2.7822 -クレル,くれる,933,933,17,-2.8295 -ネ,ね,279,279,47,-2.1699 -タ,多,1285,1285,351,-4.9124 -ツヅケ,続け,930,930,258,-5.8731 -ツヅケル,続ける,919,919,438,-6.2644 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_308.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_308.csv deleted file mode 100644 index 93d7199..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_308.csv +++ /dev/null @@ -1,30 +0,0 @@ -イル,いる,919,919,468,-1.9884 -イ,い,930,930,356,-2.0866 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -キ,き,904,904,356,-2.5861 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -クレ,くれ,940,940,17,-2.7401 -テ,て,307,307,356,-1.5059 -ミ,み,930,930,52,-4.5938 -デ,で,149,149,468,-1.6148 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -オリ,おり,1197,1197,356,-2.6223 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -シ,私,1285,1285,17,-4.2442 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -イク,いく,992,992,356,-2.7538 -ナカ,中,1285,1285,282,-4.2761 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_309.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_309.csv deleted file mode 100644 index 0e6c19a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_309.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -・,・,5,5,203,-2.7687 -タチ,立ち,1285,1285,356,-5.2862 -ノ,の,368,368,408,-1.2458 -カズ,数,1285,1285,387,-5.3011 -『,『,6,6,322,-3.4104 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -コノ,この,1315,1315,468,-3.0084 -ミ,見,1285,1285,52,-5.3943 -ハ,は,261,261,468,-1.3731 -ソノ,その,1315,1315,468,-3.1000 -ジブン,自分,1285,1285,161,-5.4686 -ソウ,そう,1282,1282,17,-4.0423 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -イイ,いい,37,37,17,-2.6886 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_31.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_31.csv deleted file mode 100644 index 5499e7f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_31.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -・,・,5,5,203,-2.7687 -マス,ます,491,491,17,-1.8643 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -ゴザイ,ござい,428,428,17,-2.6577 -レ,れ,876,876,468,-2.0223 -…,…,5,5,184,-3.3301 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ス,す,602,602,481,-2.2579 -アレ,あれ,407,407,47,-2.4311 -タリ,たり,360,360,451,-2.5700 -キ,き,904,904,356,-2.5861 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_310.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_310.csv deleted file mode 100644 index e9e2110..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_310.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ナク,なく,36,36,468,-2.1850 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -シ,私,1285,1285,17,-4.2442 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_311.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_311.csv deleted file mode 100644 index c2ec390..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_311.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -」,」,7,7,121,-2.0554 -・,・,5,5,203,-2.7687 -ガ,が,148,148,468,-1.4621 -ネエ,ねえ,20,20,468,-2.2298 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -ハ,は,261,261,468,-1.3731 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -…,…,5,5,184,-3.3301 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -ス,す,602,602,481,-2.2579 -ト,と,309,309,282,-2.2641 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_312.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_312.csv deleted file mode 100644 index 1921392..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_312.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -ワタシ,私,1306,1306,17,-3.6243 -・,・,5,5,203,-2.7687 -『,『,6,6,322,-3.4104 -セン,戦,1285,1285,178,-6.3044 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_313.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_313.csv deleted file mode 100644 index 9eb11fb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_313.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -デス,です,460,460,17,-1.8655 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_314.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_314.csv deleted file mode 100644 index 9cfda59..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_314.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -。,。,8,8,61,-1.3115 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -『,『,6,6,322,-3.4104 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ニ,に,329,329,282,-2.1199 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -デキ,でき,625,625,481,-4.3005 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_315.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_315.csv deleted file mode 100644 index ce5dcb7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_315.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -「,「,6,6,352,-2.0388 -スル,する,599,599,481,-1.9113 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -『,『,6,6,322,-3.4104 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -モ,も,262,262,468,-1.7239 -トキ,時,1285,1285,282,-5.0461 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_316.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_316.csv deleted file mode 100644 index 84540fd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_316.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -・,・,5,5,203,-2.7687 -「,「,6,6,352,-2.0388 -ハ,は,261,261,468,-1.3731 -…,…,5,5,184,-3.3301 -タ,た,435,435,282,-1.4167 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ワタシ,私,1306,1306,17,-3.6243 -トキ,時,1285,1285,282,-5.0461 -デ,で,149,149,468,-1.6148 -コノ,この,1315,1315,468,-3.0084 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -タチ,立ち,1285,1285,356,-5.2862 -ソノ,その,1315,1315,468,-3.1000 -カズ,数,1285,1285,387,-5.3011 -ナ,な,454,454,287,-1.8607 -ソウ,そう,1282,1282,17,-4.0423 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ナイ,ない,473,473,468,-1.8979 -ミ,見,1285,1285,52,-5.3943 -!,!,1318,1318,244,-1.9828 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_317.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_317.csv deleted file mode 100644 index f316776..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_317.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -テ,て,307,307,356,-1.5059 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -…,…,5,5,184,-3.3301 -ネ,ね,279,279,47,-2.1699 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -ナ,な,275,275,287,-2.5224 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_318.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_318.csv deleted file mode 100644 index 2f7d006..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_318.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イイ,いい,131,131,17,-2.9419 -イイ,いい,37,37,17,-2.6886 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -。,。,8,8,61,-1.3115 -ヨイ,良い,114,114,48,-3.5243 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -・,・,5,5,203,-2.7687 -ワタシ,私,1306,1306,17,-3.6243 -コノ,この,1315,1315,468,-3.0084 -アル,ある,772,772,481,-2.9588 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -キリ,切り,1285,1285,60,-5.3631 -ソノ,その,1315,1315,468,-3.1000 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ナル,なる,772,772,471,-3.0967 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ヨイ,よい,114,114,48,-4.2982 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_319.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_319.csv deleted file mode 100644 index 61ba2c6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_319.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -。,。,8,8,61,-1.3115 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -コノ,この,1315,1315,468,-3.0084 -ナカ,中,1314,1314,282,-4.2761 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ソノ,その,1315,1315,468,-3.1000 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -『,『,6,6,322,-3.4104 -ハタラキ,働き,1285,1285,42,-5.8522 -・,・,5,5,203,-2.7687 -ゲン,現,1285,1285,309,-5.9095 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_32.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_32.csv deleted file mode 100644 index 966d558..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_32.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -・,・,5,5,203,-2.7687 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -、,、,10,10,151,-1.2267 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_320.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_320.csv deleted file mode 100644 index 7b5f224..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_320.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ダ,だ,453,453,471,-1.9457 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -・,・,5,5,203,-2.7687 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_321.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_321.csv deleted file mode 100644 index f2dd44e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_321.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ノ,の,368,368,408,-1.2458 -オ,お,560,560,437,-3.5014 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ガ,が,148,148,468,-1.4621 -『,『,6,6,322,-3.4104 -テ,て,307,307,356,-1.5059 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ワタシ,私,1306,1306,17,-3.6243 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -モ,も,262,262,468,-1.7239 -コレ,これ,1306,1306,468,-3.8073 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_322.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_322.csv deleted file mode 100644 index 9520a9f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_322.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -シ,私,1285,1285,17,-4.2442 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ナカ,中,1285,1285,282,-4.2761 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ネ,ね,279,279,47,-2.1699 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_323.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_323.csv deleted file mode 100644 index 866f60f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_323.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -』,』,7,7,136,-3.5069 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モウ,もう,1281,1281,468,-5.0581 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ヨク,よく,1281,1281,48,-5.2105 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,多,1285,1285,351,-4.9124 -ソウ,そう,1282,1282,17,-4.0423 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -フクミ,含み,1285,1285,258,-4.9821 -ホントウニ,本当に,1281,1281,17,-5.3073 -ガ,が,148,148,468,-1.4621 -】,】,7,7,244,-5.2511 -テ,て,307,307,356,-1.5059 -トクニ,特に,1281,1281,468,-5.3671 -トキ,時,1285,1285,282,-5.0461 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -”,”,7,7,461,-5.4174 -モ,も,262,262,468,-1.7239 -イツモ,いつも,1281,1281,17,-5.5810 -ハジメテ,初めて,1281,1281,356,-5.5862 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_324.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_324.csv deleted file mode 100644 index dfbcbef..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_324.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -シ,し,610,610,258,-1.5936 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_325.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_325.csv deleted file mode 100644 index 1005eeb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_325.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -・,・,5,5,203,-2.7687 -…,…,5,5,184,-3.3301 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ネ,ね,279,279,47,-2.1699 -」,」,7,7,121,-2.0554 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -〜,〜,5,5,244,-4.0997 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,164,164,282,-1.8068 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_326.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_326.csv deleted file mode 100644 index caad2d8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_326.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -サ,さ,605,605,441,-1.9359 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ノ,の,368,368,408,-1.2458 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ハ,は,261,261,468,-1.3731 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 -ネ,ね,279,279,47,-2.1699 -ナイ,ない,482,482,468,-2.1746 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_327.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_327.csv deleted file mode 100644 index 4cd8dab..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_327.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -ト,と,164,164,282,-1.8068 -フクミ,含み,1285,1285,258,-4.9821 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -トキ,時,1285,1285,282,-5.0461 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_328.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_328.csv deleted file mode 100644 index 41626cb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_328.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -デキ,でき,625,625,481,-4.3005 -。,。,8,8,61,-1.3115 -トキ,時,1285,1285,282,-5.0461 -「,「,6,6,352,-2.0388 -ミ,見,625,625,52,-4.5511 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -アル,ある,772,772,481,-2.9588 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ナル,なる,772,772,471,-3.0967 -アソビ,遊び,1285,1285,290,-5.5478 -イ,い,625,625,356,-4.9123 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -アリ,あり,788,788,481,-3.1265 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_329.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_329.csv deleted file mode 100644 index 45c689a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_329.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -。,。,8,8,61,-1.3115 -デキ,でき,625,625,481,-4.3005 -ハ,は,261,261,468,-1.3731 -・,・,5,5,203,-2.7687 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -シ,し,610,610,258,-1.5936 -ナ,名,1285,1285,454,-5.3730 -ミ,見,625,625,52,-4.5511 -ミ,見,1285,1285,52,-5.3943 -デキル,できる,619,619,481,-4.0489 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -モ,も,262,262,468,-1.7239 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -スル,する,599,599,481,-1.9113 -ムラ,村,1285,1285,489,-5.7051 -サ,さ,605,605,441,-1.9359 -キョウ,強,1285,1285,351,-5.7181 -シロ,しろ,608,608,437,-1.9456 -デキ,出来,1285,1285,268,-5.7335 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_33.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_33.csv deleted file mode 100644 index 9351278..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_33.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -、,、,10,10,151,-1.2267 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -テ,て,307,307,356,-1.5059 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_330.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_330.csv deleted file mode 100644 index 9ab00d3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_330.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -ダ,だ,453,453,471,-1.9457 -デキ,でき,625,625,481,-4.3005 -・,・,5,5,203,-2.7687 -、,、,10,10,151,-1.2267 -ネ,ね,279,279,47,-2.1699 -ミ,見,625,625,52,-4.5511 -?,?,1317,1317,17,-2.1596 -ナイ,ない,473,473,468,-1.8979 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -イ,い,625,625,356,-4.9123 -ガ,が,299,299,468,-2.0560 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -ト,と,164,164,282,-1.8068 -…,…,5,5,184,-3.3301 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_331.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_331.csv deleted file mode 100644 index 3f0421b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_331.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ハ,は,261,261,468,-1.3731 -デ,で,458,458,468,-1.9218 -デス,です,460,460,17,-1.8655 -、,、,10,10,151,-1.2267 -ダ,だ,453,453,471,-1.9457 -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -マデ,まで,355,355,143,-2.3294 -ナ,な,454,454,287,-1.8607 -カ,か,359,359,468,-1.9789 -シカ,しか,257,257,268,-2.7748 -カラ,から,297,297,356,-2.3083 -シ,し,610,610,258,-1.5936 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -アル,ある,772,772,481,-2.9588 -ヲ,を,156,156,356,-1.4175 -デシ,でし,466,466,17,-2.1485 -ナル,なる,772,772,471,-3.0967 -?,?,1317,1317,17,-2.1596 -デ,で,308,308,468,-2.9431 -ト,と,164,164,282,-1.8068 -タ,多,1285,1285,351,-4.9124 -ジャ,じゃ,308,261,247,-3.4000 -フクミ,含み,1285,1285,258,-4.9821 -アリ,あり,788,788,481,-3.1265 -トキ,時,1285,1285,282,-5.0461 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_332.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_332.csv deleted file mode 100644 index 74b0d01..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_332.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -デ,で,149,149,468,-1.6148 -ハ,は,261,261,468,-1.3731 -デス,です,460,460,17,-1.8655 -、,、,10,10,151,-1.2267 -ダ,だ,453,453,471,-1.9457 -ガ,が,148,148,468,-1.4621 -。,。,8,8,61,-1.3115 -カラ,から,147,147,356,-1.9960 -デ,で,458,458,468,-1.9218 -シカ,しか,257,257,268,-2.7748 -マデ,まで,355,355,143,-2.3294 -カ,か,359,359,468,-1.9789 -ナ,な,454,454,287,-1.8607 -シ,し,610,610,258,-1.5936 -ヲ,を,156,156,356,-1.4175 -アル,ある,772,772,481,-2.9588 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -デ,で,308,308,468,-2.9431 -ナル,なる,772,772,471,-3.0967 -デシ,でし,466,466,17,-2.1485 -?,?,1317,1317,17,-2.1596 -ト,と,164,164,282,-1.8068 -ジャ,じゃ,308,261,247,-3.4000 -スル,する,599,599,481,-1.9113 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -アリ,あり,788,788,481,-3.1265 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_333.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_333.csv deleted file mode 100644 index fa5c5ee..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_333.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ダ,だ,453,453,471,-1.9457 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -カ,か,359,359,468,-1.9789 -シ,し,610,610,258,-1.5936 -ベ,べ,284,284,437,-3.7547 -アル,ある,772,772,481,-2.9588 -テ,て,307,307,356,-1.5059 -「,「,6,6,352,-2.0388 -ナル,なる,772,772,471,-3.0967 -オ,お,560,560,437,-3.5014 -ト,と,164,164,282,-1.8068 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ハ,は,261,261,468,-1.3731 -ヤ,や,366,366,43,-2.1479 -タチ,立ち,1285,1285,356,-5.2862 -コノ,この,1315,1315,468,-3.0084 -カズ,数,1285,1285,387,-5.3011 -ネ,ね,279,279,47,-2.1699 -・,・,5,5,203,-2.7687 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ソノ,その,1315,1315,468,-3.1000 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_334.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_334.csv deleted file mode 100644 index 833cbbb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_334.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -。,。,8,8,61,-1.3115 -ネ,ね,279,279,47,-2.1699 -シロ,しろ,608,608,437,-1.9456 -ナイヒト,ない人,473,1285,501,-5.9561 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -・,・,5,5,203,-2.7687 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -イロ,いろ,926,926,437,-2.1782 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -ネエ,ねえ,20,20,468,-2.2298 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ス,す,602,602,481,-2.2579 -ト,と,309,309,282,-2.2641 -ノデ,ので,316,316,48,-2.3278 -ン,ん,515,515,437,-2.4192 -タイ,たい,444,444,17,-2.4250 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_335.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_335.csv deleted file mode 100644 index 7beb39e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_335.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -ネエ,ねえ,20,20,468,-2.2298 -ノ,の,368,368,408,-1.2458 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ナイ,ない,20,20,468,-3.4755 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -マス,ます,491,491,17,-1.8643 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_336.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_336.csv deleted file mode 100644 index bae3c8e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_336.csv +++ /dev/null @@ -1,30 +0,0 @@ -ネエ,ねえ,20,20,468,-2.2298 -ナイ,ない,473,473,468,-1.8979 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナイ,ない,20,20,468,-3.4755 -…,…,5,5,184,-3.3301 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_337.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_337.csv deleted file mode 100644 index 53aa3d9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_337.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -デ,で,458,458,468,-1.9218 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -デス,です,460,460,17,-1.8655 -ト,と,164,164,282,-1.8068 -ダ,だ,453,453,471,-1.9457 -デキ,でき,625,625,481,-4.3005 -タ,多,1285,1285,351,-4.9124 -アル,ある,772,772,481,-2.9588 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ミ,見,625,625,52,-4.5511 -ダイ,第,558,558,454,-2.9246 -ナル,なる,772,772,471,-3.0967 -ハ,は,261,261,468,-1.3731 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -イ,い,625,625,356,-4.9123 -アリ,あり,788,788,481,-3.1265 -ジブン,自分,1285,1285,161,-5.4686 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_338.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_338.csv deleted file mode 100644 index 638c8e3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_338.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,149,149,468,-1.6148 -デ,で,458,458,468,-1.9218 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -ダ,だ,453,453,471,-1.9457 -デス,です,460,460,17,-1.8655 -ヲ,を,156,156,356,-1.4175 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -、,、,10,10,151,-1.2267 -デ,で,308,308,468,-2.9431 -デモ,でも,341,341,468,-2.6375 -ジャ,じゃ,308,261,247,-3.4000 -シ,し,610,610,258,-1.5936 -」,」,7,7,121,-2.0554 -カ,か,359,359,468,-1.9789 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -?,?,1317,1317,17,-2.1596 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -デシ,でし,466,466,17,-2.1485 -デ,で,308,930,468,-4.9557 -ガ,が,299,299,468,-2.0560 -・,・,5,5,203,-2.7687 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_339.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_339.csv deleted file mode 100644 index d5781a3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_339.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ウ,う,506,506,133,-2.2404 -ス,す,602,602,481,-2.2579 -ト,と,309,309,282,-2.2641 -マデ,まで,355,355,143,-2.3294 -タイ,たい,444,444,17,-2.4250 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_34.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_34.csv deleted file mode 100644 index aec910a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_34.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タリ,たり,360,360,451,-2.5700 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_340.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_340.csv deleted file mode 100644 index 3c74778..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_340.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -ハ,は,261,261,468,-1.3731 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -シ,し,610,610,258,-1.5936 -フクミ,含み,1285,1285,258,-4.9821 -「,「,6,6,352,-2.0388 -トキ,時,1285,1285,282,-5.0461 -・,・,5,5,203,-2.7687 -コノ,この,1315,1315,468,-3.0084 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ソノ,その,1315,1315,468,-3.1000 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ニ,に,151,151,282,-1.3747 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -スル,する,599,599,481,-1.9113 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -アル,ある,772,772,481,-2.9588 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -ナ,な,454,454,287,-1.8607 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_341.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_341.csv deleted file mode 100644 index e098979..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_341.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イイ,いい,37,37,17,-2.6886 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナイ,ない,473,473,468,-1.8979 -シ,し,610,610,258,-1.5936 -デキル,できる,619,619,481,-4.0489 -タ,多,1285,1285,351,-4.9124 -イイ,言い,833,833,17,-2.9432 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -スキ,好き,1287,1287,66,-4.8632 -ヒツヨウ,必要,1287,1287,169,-4.9541 -「,「,6,6,352,-2.0388 -ネ,ね,279,279,47,-2.1699 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -オモイ,思い,832,832,17,-3.0179 -キリ,切り,1285,1285,60,-5.3631 -コノ,この,1315,1315,468,-3.0084 -ナ,名,1285,1285,454,-5.3730 -イル,いる,619,619,468,-4.6741 -ミ,見,1285,1285,52,-5.3943 -ソノ,その,1315,1315,468,-3.1000 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -スル,する,599,599,481,-1.9113 -。,。,8,8,61,-1.3115 -ワタシ,私,1306,1306,17,-3.6243 -アソビ,遊び,1285,1285,290,-5.5478 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_342.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_342.csv deleted file mode 100644 index 5ea5835..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_342.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -サ,さ,605,605,441,-1.9359 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ノ,の,368,368,408,-1.2458 -コノ,この,1315,1315,468,-3.0084 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -ソノ,その,1315,1315,468,-3.1000 -サマ,様,1285,1285,66,-5.9406 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_343.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_343.csv deleted file mode 100644 index 263a1fb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_343.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ノ,の,368,368,408,-1.2458 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -?,?,1317,1317,17,-2.1596 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_344.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_344.csv deleted file mode 100644 index d881bbd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_344.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -ニ,に,151,151,282,-1.3747 -ハ,は,261,261,468,-1.3731 -ト,と,164,164,282,-1.8068 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -カラ,から,147,147,356,-1.9960 -デ,で,458,458,468,-1.9218 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナド,など,344,344,442,-2.2760 -ニヨリ,により,211,211,43,-2.7172 -タ,多,1285,1285,351,-4.9124 -トイウ,という,173,173,468,-2.2416 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ニヨッテ,によって,210,210,468,-2.6690 -ヘ,へ,154,154,282,-2.4384 -デス,です,460,460,17,-1.8655 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ニヨル,による,214,214,43,-2.7162 -ミ,見,1285,1285,52,-5.3943 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_345.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_345.csv deleted file mode 100644 index f1891c9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_345.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -ノ,の,368,368,408,-1.2458 -ヲ,を,156,156,356,-1.4175 -デ,で,149,149,468,-1.6148 -ガ,が,148,148,468,-1.4621 -ト,と,164,164,282,-1.8068 -タ,た,435,435,282,-1.4167 -ニハ,には,151,261,17,-6.0799 -テ,て,307,307,356,-1.5059 -シ,私,1285,1285,17,-4.2442 -シ,し,610,610,258,-1.5936 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -デ,で,458,458,468,-1.9218 -ニシ,にし,151,610,17,-6.6512 -レ,れ,876,876,468,-2.0223 -・,・,5,5,203,-2.7687 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_346.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_346.csv deleted file mode 100644 index 4f8e3a3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_346.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -モ,も,262,262,468,-1.7239 -ニ,に,151,151,282,-1.3747 -ノ,の,368,368,408,-1.2458 -シ,し,610,610,258,-1.5936 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -デ,で,308,308,468,-2.9431 -デ,で,458,458,468,-1.9218 -ジャ,じゃ,308,261,247,-3.4000 -ト,と,164,164,282,-1.8068 -スル,する,599,599,481,-1.9113 -ヨリ,より,155,155,351,-2.5584 -ナイ,ない,473,473,468,-1.8979 -ダ,だ,453,453,471,-1.9457 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,275,275,287,-2.5224 -アル,ある,772,772,481,-2.9588 -・,・,5,5,203,-2.7687 -ネエ,ねえ,20,20,468,-2.2298 -?,?,1317,1317,17,-2.1596 -ナル,なる,772,772,471,-3.0967 -デキ,でき,625,625,481,-4.3005 -ミ,見,625,625,52,-4.5511 -ネ,ね,279,279,47,-2.1699 -…,…,5,5,184,-3.3301 -タ,多,1285,1285,351,-4.9124 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_347.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_347.csv deleted file mode 100644 index 68a7016..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_347.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -ヤ,や,366,366,43,-2.1479 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -?,?,1317,1317,17,-2.1596 -ノ,の,368,368,408,-1.2458 -シ,し,610,610,258,-1.5936 -ト,と,164,164,282,-1.8068 -ヤ,や,503,503,43,-3.1411 -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,た,435,435,282,-1.4167 -ヨリ,より,155,155,351,-2.5584 -テ,て,307,307,356,-1.5059 -デ,で,458,458,468,-1.9218 -ネエ,ねえ,20,20,468,-2.2298 -アル,ある,772,772,481,-2.9588 -・,・,5,5,203,-2.7687 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナル,なる,772,772,471,-3.0967 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_348.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_348.csv deleted file mode 100644 index 3fb0a3f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_348.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ネエ,ねえ,20,20,468,-2.2298 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -シ,私,1285,1285,17,-4.2442 -シ,し,610,610,258,-1.5936 -ナカ,中,1285,1285,282,-4.2761 -・,・,5,5,203,-2.7687 -ン,ん,1310,1310,437,-3.5653 -タ,多,1285,1285,351,-4.9124 -…,…,5,5,184,-3.3301 -フクミ,含み,1285,1285,258,-4.9821 -シロ,しろ,608,608,437,-1.9456 -ナイ,ない,20,20,468,-3.4755 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -トキ,時,1285,1285,282,-5.0461 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -モノ,もの,1310,1310,468,-3.9802 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_349.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_349.csv deleted file mode 100644 index 8002818..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_349.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -デ,で,458,458,468,-1.9218 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -デス,です,460,460,17,-1.8655 -ハ,は,261,261,468,-1.3731 -ダ,だ,453,453,471,-1.9457 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -カラ,から,147,147,356,-1.9960 -ヤ,や,366,366,43,-2.1479 -トイウ,という,173,173,468,-2.2416 -デシ,でし,466,466,17,-2.1485 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ガ,が,299,299,468,-2.0560 -タ,多,1285,1285,351,-4.9124 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_35.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_35.csv deleted file mode 100644 index 24782fb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_35.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -ナイ,ない,473,473,468,-1.8979 -シ,し,610,610,258,-1.5936 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -アリ,あり,788,788,481,-3.1265 -ハ,は,261,261,468,-1.3731 -ナリ,なり,788,788,471,-3.2643 -スル,する,599,599,481,-1.9113 -テル,てる,307,919,17,-4.3303 -モ,も,262,262,468,-1.7239 -ニ,に,151,151,282,-1.3747 -サ,さ,605,605,441,-1.9359 -テ,て,307,930,356,-4.8756 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -デキ,でき,625,625,481,-4.3005 -ミ,見,625,625,52,-4.5511 -テイル,ている,307,919,17,-5.6469 -タ,多,1285,1285,351,-4.9124 -ナク,なく,481,481,468,-2.5033 -フクミ,含み,1285,1285,258,-4.9821 -デキル,できる,619,619,481,-4.0489 -ヤル,やる,772,772,17,-5.2305 -トキ,時,1285,1285,282,-5.0461 -テイ,てい,307,930,17,-5.8308 -イ,い,625,625,356,-4.9123 -ナクッ,なくっ,481,481,17,-2.7253 -ネ,ね,279,279,47,-2.1699 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_350.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_350.csv deleted file mode 100644 index d1f5f68..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_350.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 - , ,9,9,44,-2.4705 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -モ,も,262,262,468,-1.7239 -フクミ,含み,1285,1285,258,-4.9821 -ト,と,164,164,282,-1.8068 -トキ,時,1285,1285,282,-5.0461 -デ,で,308,308,468,-2.9431 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_351.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_351.csv deleted file mode 100644 index 0871c85..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_351.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -デ,で,458,458,468,-1.9218 -ニ,に,151,151,282,-1.3747 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -ダ,だ,453,453,471,-1.9457 -ガ,が,148,148,468,-1.4621 -ヲ,を,156,156,356,-1.4175 -ナ,な,454,454,287,-1.8607 -シ,し,610,610,258,-1.5936 -ハ,は,261,261,468,-1.3731 -カ,か,359,359,468,-1.9789 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -デシ,でし,466,466,17,-2.1485 -デ,で,308,308,468,-2.9431 -ジャ,じゃ,308,261,247,-3.4000 -スル,する,599,599,481,-1.9113 -ト,と,164,164,282,-1.8068 -・,・,5,5,203,-2.7687 -イ,い,930,930,356,-2.0866 -デキ,でき,625,625,481,-4.3005 -ミ,見,625,625,52,-4.5511 -…,…,5,5,184,-3.3301 -」,」,7,7,121,-2.0554 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -サ,さ,605,605,441,-1.9359 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_352.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_352.csv deleted file mode 100644 index e2672e8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_352.csv +++ /dev/null @@ -1,30 +0,0 @@ -ダ,だ,453,453,471,-1.9457 -デ,で,149,149,468,-1.6148 -シ,し,610,610,258,-1.5936 -ノ,の,368,368,408,-1.2458 -デ,で,458,458,468,-1.9218 -ナ,な,454,454,287,-1.8607 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -デス,です,460,460,17,-1.8655 -デ,で,308,308,468,-2.9431 -ジャ,じゃ,308,261,247,-3.4000 -、,、,10,10,151,-1.2267 -デキ,でき,625,625,481,-4.3005 -スル,する,599,599,481,-1.9113 -ミ,見,625,625,52,-4.5511 -タ,た,435,435,282,-1.4167 -ハ,は,261,261,468,-1.3731 -ワタシ,私,1306,1306,17,-3.6243 -イ,い,625,625,356,-4.9123 -マス,ます,491,491,17,-1.8643 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -ナイ,ない,473,473,468,-1.8979 -・,・,5,5,203,-2.7687 -シロ,しろ,608,608,437,-1.9456 -カンガエ,考え,625,625,52,-5.1086 -デ,出,625,625,249,-5.1376 -ヤ,や,503,503,43,-3.1411 -ヨ,よ,288,288,17,-2.1474 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_353.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_353.csv deleted file mode 100644 index 39e5c79..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_353.csv +++ /dev/null @@ -1,30 +0,0 @@ -ダ,だ,453,453,471,-1.9457 -ハ,は,261,261,468,-1.3731 -デ,で,149,149,468,-1.6148 -ノ,の,368,368,408,-1.2458 -シ,し,610,610,258,-1.5936 -ニ,に,151,151,282,-1.3747 -デ,で,458,458,468,-1.9218 -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -ナ,な,454,454,287,-1.8607 -、,、,10,10,151,-1.2267 -デ,で,308,308,468,-2.9431 -タ,た,435,435,282,-1.4167 -ジャ,じゃ,308,261,247,-3.4000 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -・,・,5,5,203,-2.7687 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ガ,が,148,148,468,-1.4621 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -デキ,でき,625,625,481,-4.3005 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -スル,する,599,599,481,-1.9113 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_354.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_354.csv deleted file mode 100644 index 2dc1f2b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_354.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -デ,で,458,458,468,-1.9218 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -デス,です,460,460,17,-1.8655 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヲ,を,156,156,356,-1.4175 -タ,多,1285,1285,351,-4.9124 -ト,と,164,164,282,-1.8068 -フクミ,含み,1285,1285,258,-4.9821 -アル,ある,772,772,481,-2.9588 -トキ,時,1285,1285,282,-5.0461 -ナル,なる,772,772,471,-3.0967 -ダ,だ,453,453,471,-1.9457 -ホド,ほど,354,354,48,-2.8635 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -シ,し,610,610,258,-1.5936 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -モ,も,262,262,468,-1.7239 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_355.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_355.csv deleted file mode 100644 index b00e66f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_355.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -ガ,が,148,148,468,-1.4621 -ヲ,を,156,156,356,-1.4175 -。,。,8,8,61,-1.3115 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -アル,ある,772,772,481,-2.9588 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ナル,なる,772,772,471,-3.0967 -ト,と,164,164,282,-1.8068 -デキ,でき,625,625,481,-4.3005 -デ,で,458,458,468,-1.9218 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ナカ,中,1314,1314,282,-4.2761 -デス,です,460,460,17,-1.8655 -ミ,見,625,625,52,-4.5511 -ジブン,自分,1285,1285,161,-5.4686 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_356.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_356.csv deleted file mode 100644 index a07e7f8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_356.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヲ,を,156,156,356,-1.4175 -デ,で,149,149,468,-1.6148 -ノ,の,368,368,408,-1.2458 -デ,で,458,458,468,-1.9218 -ガ,が,148,148,468,-1.4621 -デス,です,460,460,17,-1.8655 -ニ,に,151,151,282,-1.3747 -ダ,だ,453,453,471,-1.9457 -ト,と,164,164,282,-1.8068 -ハ,は,261,261,468,-1.3731 -デハ,では,149,261,17,-6.2880 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -ネ,ね,279,279,47,-2.1699 -デモ,でも,149,262,17,-6.8355 -ヲシ,をし,156,610,17,-6.9630 -、,、,10,10,151,-1.2267 -デモ,でも,341,341,468,-2.6375 -カ,か,359,359,468,-1.9789 -。,。,8,8,61,-1.3115 -デ,で,308,308,468,-2.9431 -タ,た,435,435,282,-1.4167 -デノ,での,149,368,17,-7.4521 -ヲシテ,をして,156,307,17,-7.3522 -シ,し,610,610,258,-1.5936 -モ,も,262,262,468,-1.7239 -ナイ,ない,482,482,468,-2.1746 -デアル,である,458,403,17,-6.5747 -デキ,でき,625,625,481,-4.3005 -ジャ,じゃ,308,261,247,-3.4000 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_357.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_357.csv deleted file mode 100644 index 87d00b9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_357.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -デ,で,149,149,468,-1.6148 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -デ,で,458,458,468,-1.9218 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -ヲ,を,156,156,356,-1.4175 -ト,と,164,164,282,-1.8068 -シ,し,610,610,258,-1.5936 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シカ,しか,257,257,268,-2.7748 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -モ,も,262,262,468,-1.7239 -デ,で,308,308,468,-2.9431 -アリ,あり,788,788,481,-3.1265 -ナカ,中,1314,1314,282,-4.2761 -デシ,でし,466,466,17,-2.1485 -ナリ,なり,788,788,471,-3.2643 -デキ,でき,625,625,481,-4.3005 -ダ,だ,453,453,471,-1.9457 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -イマ,今,1314,1314,468,-4.6147 -ミ,見,625,625,52,-4.5511 -ジャ,じゃ,308,261,247,-3.4000 -トキ,時,1285,1285,282,-5.0461 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_358.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_358.csv deleted file mode 100644 index e91a146..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_358.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -ガ,が,148,148,468,-1.4621 -デス,です,460,460,17,-1.8655 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -デ,で,458,458,468,-1.9218 -ヲ,を,156,156,356,-1.4175 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ダ,だ,453,453,471,-1.9457 -・,・,5,5,203,-2.7687 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -アル,ある,772,772,481,-2.9588 -ナ,な,454,454,287,-1.8607 -ツイッター,Twitter,1292,1292,363,-5.7484 -ナル,なる,772,772,471,-3.0967 -シ,し,610,610,258,-1.5936 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -タ,多,1285,1285,351,-4.9124 -…,…,5,5,184,-3.3301 -シロ,しろ,608,608,437,-1.9456 -フクミ,含み,1285,1285,258,-4.9821 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_359.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_359.csv deleted file mode 100644 index e688d9c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_359.csv +++ /dev/null @@ -1,30 +0,0 @@ -?,?,1317,1317,17,-2.1596 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ナ,な,275,275,287,-2.5224 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -ネ,ね,279,279,47,-2.1699 -ニ,に,151,151,282,-1.3747 -・,・,5,5,203,-2.7687 -!,!,1318,1318,244,-1.9828 -ガ,が,148,148,468,-1.4621 -ガ,が,299,299,468,-2.0560 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -」,」,7,7,121,-2.0554 -ト,と,309,309,282,-2.2641 -カラ,から,297,297,356,-2.3083 -ナァ,なぁ,275,275,420,-4.2969 -デ,で,149,149,468,-1.6148 -アレ,あれ,407,407,47,-2.4311 -…,…,5,5,184,-3.3301 -シ,し,304,304,258,-2.5363 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_36.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_36.csv deleted file mode 100644 index 0d83bea..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_36.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -ナイ,ない,473,473,468,-1.8979 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -テ,て,307,930,356,-4.8756 -シ,私,1285,1285,17,-4.2442 -「,「,6,6,352,-2.0388 -ナカ,中,1285,1285,282,-4.2761 -テイル,ている,307,919,17,-5.6469 -ハ,は,261,261,468,-1.3731 -テイ,てい,307,930,17,-5.8308 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -テモ,ても,307,262,17,-6.4044 -タチ,立ち,1285,1285,356,-5.2862 -テイタ,ていた,307,435,17,-6.4827 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ネ,ね,279,279,47,-2.1699 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アル,ある,772,772,481,-2.9588 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -アソビ,遊び,1285,1285,290,-5.5478 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_360.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_360.csv deleted file mode 100644 index adbb49a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_360.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -スル,する,599,599,481,-1.9113 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -ハ,は,261,261,468,-1.3731 -ト,と,164,164,282,-1.8068 -シテ,して,610,307,17,-5.1358 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -・,・,5,5,203,-2.7687 -ノ,の,368,368,408,-1.2458 -シタ,した,610,435,17,-5.8065 -トカ,とか,364,364,17,-2.5396 -…,…,5,5,184,-3.3301 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ガ,が,148,148,468,-1.4621 -ヲ,を,156,156,356,-1.4175 -ナド,など,344,344,442,-2.2760 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -「,「,6,6,352,-2.0388 -アソビ,遊び,1285,1285,290,-5.5478 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_361.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_361.csv deleted file mode 100644 index 38f9e97..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_361.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -『,『,6,6,322,-3.4104 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ワタシ,私,1306,1306,17,-3.6243 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -シ,し,610,610,258,-1.5936 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_362.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_362.csv deleted file mode 100644 index e8b54a4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_362.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,し,610,610,258,-1.5936 -、,、,10,10,151,-1.2267 -スル,する,599,599,481,-1.9113 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -デ,で,149,149,468,-1.6148 -デ,で,458,458,468,-1.9218 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -ナ,な,454,454,287,-1.8607 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -・,・,5,5,203,-2.7687 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_363.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_363.csv deleted file mode 100644 index df3b22f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_363.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -「,「,6,6,352,-2.0388 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -セン,戦,1285,1285,178,-6.3044 -ダイジ,大事,1285,1285,66,-6.3275 -マト,的,1285,1285,169,-6.4148 -ヲ,を,156,156,356,-1.4175 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_364.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_364.csv deleted file mode 100644 index 2669536..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_364.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -モ,も,262,262,468,-1.7239 -デ,で,149,149,468,-1.6148 -ガ,が,148,148,468,-1.4621 -「,「,6,6,352,-2.0388 -シ,し,610,610,258,-1.5936 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヲ,を,156,156,356,-1.4175 -デ,で,458,458,468,-1.9218 -?,?,1317,1317,17,-2.1596 -コノ,この,1315,1315,468,-3.0084 -タ,多,1285,1285,351,-4.9124 -ソノ,その,1315,1315,468,-3.1000 -。,。,8,8,61,-1.3115 -フクミ,含み,1285,1285,258,-4.9821 -・,・,5,5,203,-2.7687 -トキ,時,1285,1285,282,-5.0461 -ダ,だ,453,453,471,-1.9457 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -『,『,6,6,322,-3.4104 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_365.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_365.csv deleted file mode 100644 index 973f324..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_365.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,し,610,610,258,-1.5936 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ワタシ,私,1306,1306,17,-3.6243 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シテ,して,610,307,17,-5.1358 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_366.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_366.csv deleted file mode 100644 index 799a580..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_366.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -『,『,6,6,322,-3.4104 -セン,戦,1285,1285,178,-6.3044 -ダイジ,大事,1285,1285,66,-6.3275 -マト,的,1285,1285,169,-6.4148 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_367.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_367.csv deleted file mode 100644 index 2cb85e5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_367.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -ノ,の,368,368,408,-1.2458 -ヲ,を,156,156,356,-1.4175 -ニ,に,151,151,282,-1.3747 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -モ,も,262,262,468,-1.7239 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -シ,し,610,610,258,-1.5936 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ナク,なく,36,36,468,-2.1850 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -サ,さ,605,605,441,-1.9359 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_368.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_368.csv deleted file mode 100644 index a3e5992..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_368.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -コト,こと,1310,1310,282,-2.6917 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ノ,の,1310,1310,408,-2.7847 -アソビ,遊び,1285,1285,290,-5.5478 -「,「,6,6,352,-2.0388 -メ,目,1285,1285,332,-5.6594 -タメ,ため,1313,1313,282,-3.3063 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ヨウ,よう,1312,1312,169,-2.2533 -ツカイ,使い,1285,1285,379,-6.1093 -セン,戦,1285,1285,178,-6.3044 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_369.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_369.csv deleted file mode 100644 index 10a0d8a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_369.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -バ,ば,318,318,282,-2.3431 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_37.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_37.csv deleted file mode 100644 index 8e15d5d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_37.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -デス,です,460,460,17,-1.8655 -ト,と,164,164,282,-1.8068 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -。,。,8,8,61,-1.3115 -ナ,な,275,275,287,-2.5224 -カ,か,359,359,468,-1.9789 -ヨ,よ,288,288,17,-2.1474 -シ,私,1285,1285,17,-4.2442 -ホウ,方,1310,1310,48,-4.5756 -ナカ,中,1285,1285,282,-4.2761 -コト,事,1310,1310,282,-4.9393 -カラ,から,297,297,356,-2.3083 -ケド,けど,301,301,17,-2.4058 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タ,た,435,435,282,-1.4167 -シ,し,610,610,258,-1.5936 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -メ,目,1310,1310,332,-5.6594 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ワケ,わけ,1310,1310,268,-5.7101 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_370.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_370.csv deleted file mode 100644 index a056791..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_370.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -カラ,から,297,297,356,-2.3083 -カ,か,359,359,468,-1.9789 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -タメ,ため,1313,1313,282,-3.3063 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナ,な,275,275,287,-2.5224 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -ワ,わ,291,291,36,-2.7424 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ト,と,150,150,282,-2.0125 -ダ,だ,453,453,471,-1.9457 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_371.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_371.csv deleted file mode 100644 index aa6820d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_371.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -シ,私,1285,1285,17,-4.2442 -ヨウ,よう,1312,1312,169,-2.2533 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -ン,ん,1310,1310,437,-3.5653 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -バ,ば,318,318,282,-2.3431 -ノ,の,368,368,408,-1.2458 -トキ,時,1285,1285,282,-5.0461 -モノ,もの,1310,1310,468,-3.9802 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -タチ,立ち,1285,1285,356,-5.2862 -テ,て,307,307,356,-1.5059 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -シ,し,610,610,258,-1.5936 -ミ,見,1285,1285,52,-5.3943 -デ,で,149,149,468,-1.6148 -ワ,わ,291,291,36,-2.7424 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_372.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_372.csv deleted file mode 100644 index a4556e9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_372.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ジ,じ,507,507,331,-3.5475 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_373.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_373.csv deleted file mode 100644 index dbedcfb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_373.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_374.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_374.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_374.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_375.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_375.csv deleted file mode 100644 index fe1a3e0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_375.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -サ,さ,1304,1304,441,-2.8267 -タ,た,435,435,282,-1.4167 -サ,さ,268,268,441,-3.2958 -カタ,方,1304,1304,48,-4.2521 -。,。,8,8,61,-1.3115 -テル,てる,307,919,17,-4.3303 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -テ,て,307,930,356,-4.8756 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,多,1285,1285,351,-4.9124 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -イル,いる,919,919,468,-1.9884 -・,・,5,5,203,-2.7687 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -デキ,でき,625,625,481,-4.3005 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -キリ,切り,1285,1285,60,-5.3631 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_376.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_376.csv deleted file mode 100644 index 7a3f15b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_376.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_377.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_377.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_377.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_378.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_378.csv deleted file mode 100644 index 1de9c04..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_378.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -バイイ,ばいい,318,131,17,-8.3265 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_379.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_379.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_379.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_38.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_38.csv deleted file mode 100644 index dabcbfa..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_38.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -テル,てる,307,919,17,-4.3303 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_380.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_380.csv deleted file mode 100644 index 61294fc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_380.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_381.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_381.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_381.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_382.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_382.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_382.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_383.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_383.csv deleted file mode 100644 index b177a9c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_383.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -ノデ,ので,316,316,48,-2.3278 -ヨ,よ,288,288,17,-2.1474 -コト,こと,1310,1310,282,-2.6917 -、,、,10,10,151,-1.2267 -ノ,の,1310,1310,408,-2.7847 -カラ,から,297,297,356,-2.3083 -ケド,けど,301,301,17,-2.4058 -ガ,が,299,299,468,-2.0560 -ト,と,164,164,282,-1.8068 -・,・,5,5,203,-2.7687 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -」,」,7,7,121,-2.0554 -ン,ん,1310,1310,437,-3.5653 -ネ,ね,279,279,47,-2.1699 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -…,…,5,5,184,-3.3301 -シロ,しろ,608,608,437,-1.9456 -シ,し,304,304,258,-2.5363 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_384.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_384.csv deleted file mode 100644 index af45d88..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_384.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -ト,と,164,164,282,-1.8068 -。,。,8,8,61,-1.3115 -カラ,から,297,297,356,-2.3083 -カ,か,359,359,468,-1.9789 -コト,こと,1310,1310,282,-2.6917 -、,、,10,10,151,-1.2267 -ノ,の,1310,1310,408,-2.7847 -ノデ,ので,316,316,48,-2.3278 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -?,?,1317,1317,17,-2.1596 -ケド,けど,301,301,17,-2.4058 -ノ,の,368,368,408,-1.2458 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -」,」,7,7,121,-2.0554 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ン,ん,1310,1310,437,-3.5653 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_385.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_385.csv deleted file mode 100644 index 709a141..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_385.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ホウ,方,1310,1310,48,-4.5756 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -コト,事,1310,1310,282,-4.9393 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_386.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_386.csv deleted file mode 100644 index 6e4b936..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_386.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヲ,を,156,156,356,-1.4175 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヨウ,よう,1312,1312,169,-2.2533 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -タ,多,1285,1285,351,-4.9124 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -フクミ,含み,1285,1285,258,-4.9821 -ガ,が,299,299,468,-2.0560 -トキ,時,1285,1285,282,-5.0461 -モ,も,262,262,468,-1.7239 -コト,こと,1310,1310,282,-2.6917 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ノ,の,1310,1310,408,-2.7847 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -タチ,立ち,1285,1285,356,-5.2862 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_387.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_387.csv deleted file mode 100644 index 0c3a199..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_387.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -ヨ,よ,288,288,17,-2.1474 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -テイル,ている,307,919,17,-5.6469 -タノ,たの,435,1310,17,-6.5362 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タヒト,た人,435,1285,17,-6.5473 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テイ,てい,307,930,17,-5.8308 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タガ,たが,435,299,17,-6.8350 -モ,も,262,262,468,-1.7239 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -タイ,たい,444,444,17,-2.4250 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_388.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_388.csv deleted file mode 100644 index cdb45c7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_388.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -デ,で,458,458,468,-1.9218 -デシ,でし,466,466,17,-2.1485 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_389.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_389.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_389.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_39.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_39.csv deleted file mode 100644 index 5188396..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_39.csv +++ /dev/null @@ -1,30 +0,0 @@ -ソウ,そう,1301,1301,17,-2.6187 -サ,さ,1304,1304,441,-2.8267 -イ,い,930,930,356,-2.0866 -イル,いる,919,919,468,-1.9884 -カタ,方,1304,1304,48,-4.2521 -テ,て,307,307,356,-1.5059 -ノ,の,368,368,408,-1.2458 -ミ,み,930,930,52,-4.5938 -ゴ,後,1305,1305,282,-3.3643 -スギ,すぎ,930,930,268,-5.1245 -ハ,は,261,261,468,-1.3731 -コト,こと,1310,1310,282,-2.6917 -ミル,みる,919,919,471,-5.2297 -シ,私,1285,1285,17,-4.2442 -ノ,の,1310,1310,408,-2.7847 -ナカ,中,1285,1285,282,-4.2761 -クレル,くれる,919,919,17,-5.3621 -チュウ,中,1305,1305,282,-3.8428 -スギル,すぎる,919,919,48,-5.4433 -シロ,しろ,608,608,437,-1.9456 -ミタイ,みたい,1311,1311,66,-2.8295 -デス,です,460,460,17,-1.8655 -タ,た,435,435,282,-1.4167 -!,!,1318,1318,244,-1.9828 -ツヅケ,続け,930,930,258,-5.8731 -ト,と,150,150,282,-2.0125 -ハジメ,始め,930,930,258,-5.9534 -ジ,時,1305,1305,282,-4.3307 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_390.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_390.csv deleted file mode 100644 index 1b0c63b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_390.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_391.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_391.csv deleted file mode 100644 index 447d089..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_391.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヌ,ぬ,510,510,17,-4.2677 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_392.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_392.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_392.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_393.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_393.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_393.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_394.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_394.csv deleted file mode 100644 index 2936a2a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_394.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_395.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_395.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_395.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_396.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_396.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_396.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_397.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_397.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_397.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_398.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_398.csv deleted file mode 100644 index 89905bd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_398.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -タカラ,たから,435,297,17,-7.2365 -ガ,が,148,148,468,-1.4621 -タト,たと,435,164,17,-7.3867 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タヨ,たよ,435,288,17,-7.4214 -モ,も,262,262,468,-1.7239 -タンダ,たんだ,435,453,17,-7.5585 -ト,と,164,164,282,-1.8068 -タトキ,た時,435,1313,17,-7.6509 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_399.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_399.csv deleted file mode 100644 index cf682e7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_399.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -。,。,8,8,61,-1.3115 -テル,てる,307,919,17,-4.3303 -「,「,6,6,352,-2.0388 -テ,て,307,930,356,-4.8756 -」,」,7,7,121,-2.0554 -・,・,5,5,203,-2.7687 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナイ,ない,473,473,468,-1.8979 -アル,ある,772,772,481,-2.9588 -シ,し,610,610,258,-1.5936 -テイル,ている,307,919,17,-5.6469 -ナル,なる,772,772,471,-3.0967 -モ,も,262,262,468,-1.7239 -『,『,6,6,322,-3.4104 -…,…,5,5,184,-3.3301 -テイ,てい,307,930,17,-5.8308 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -アリ,あり,788,788,481,-3.1265 -デキル,できる,619,619,481,-4.0489 -トキ,時,1285,1285,282,-5.0461 -タ,た,435,435,282,-1.4167 -ナリ,なり,788,788,471,-3.2643 -ハ,は,261,261,468,-1.3731 -デキ,でき,625,625,481,-4.3005 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_4.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_4.csv deleted file mode 100644 index 80fc3e7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_4.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 -ヲ,を,156,156,356,-1.4175 -・,・,5,5,203,-2.7687 -ガ,が,148,148,468,-1.4621 -…,…,5,5,184,-3.3301 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -デ,で,149,149,468,-1.6148 -ト,と,363,363,282,-2.1096 -』,』,7,7,136,-3.5069 -タ,多,1285,1285,351,-4.9124 -〜,〜,5,5,244,-4.0997 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -デ,で,458,458,468,-1.9218 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ト,と,164,164,282,-1.8068 -ナ,名,1285,1285,454,-5.3730 -。,。,8,8,61,-1.3115 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_40.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_40.csv deleted file mode 100644 index c84f72c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_40.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -バイイ,ばいい,318,131,17,-8.3265 -バイイ,ばいい,318,37,17,-8.8957 -。,。,8,8,61,-1.3115 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -バイイノ,ばいいの,318,1310,17,-9.4603 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -、,、,10,10,151,-1.2267 -バトオモイ,ばと思い,318,832,17,-10.0809 -ノ,の,368,368,408,-1.2458 -バイイノカ,ばいいのか,318,359,17,-10.0964 -バイイ,ばいい,318,19,17,-10.1547 -バイイカ,ばいいか,318,359,17,-10.1567 -バイイノニ,ばいいのに,318,317,17,-10.1854 -バトオモイマス,ばと思います,318,491,17,-10.1899 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_400.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_400.csv deleted file mode 100644 index b7aa658..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_400.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -アル,ある,772,772,481,-2.9588 -「,「,6,6,352,-2.0388 -ナル,なる,772,772,471,-3.0967 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -アリ,あり,788,788,481,-3.1265 -ナリ,なり,788,788,471,-3.2643 -…,…,5,5,184,-3.3301 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -テル,てる,307,919,17,-4.3303 -ト,と,164,164,282,-1.8068 -ニ,に,151,151,282,-1.3747 -『,『,6,6,322,-3.4104 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -?,?,1317,1317,17,-2.1596 -デキ,でき,625,625,481,-4.3005 -タ,多,1285,1285,351,-4.9124 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -フクミ,含み,1285,1285,258,-4.9821 -〜,〜,5,5,244,-4.0997 -トキ,時,1285,1285,282,-5.0461 -テ,て,307,930,356,-4.8756 -ミ,見,625,625,52,-4.5511 -。,。,8,8,61,-1.3115 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_401.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_401.csv deleted file mode 100644 index 35c5230..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_401.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ド,ど,311,311,437,-3.7861 -バイイ,ばいい,318,131,17,-8.3265 -ハ,は,261,261,468,-1.3731 -バイイ,ばいい,318,37,17,-8.8957 -ト,と,164,164,282,-1.8068 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -デ,で,308,308,468,-2.9431 -ヨ,よ,288,288,17,-2.1474 -バイイノ,ばいいの,318,1310,17,-9.4603 -ニ,に,151,151,282,-1.3747 -バイイン,ばいいん,318,1310,17,-9.6003 -ジャ,じゃ,308,261,247,-3.4000 -バト,ばと,318,164,17,-9.6212 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -バトオモイ,ばと思い,318,832,17,-10.0809 -バイイノカ,ばいいのか,318,359,17,-10.0964 -バイイ,ばいい,318,19,17,-10.1547 -バイイカ,ばいいか,318,359,17,-10.1567 -バイイノニ,ばいいのに,318,317,17,-10.1854 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_402.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_402.csv deleted file mode 100644 index dcd1129..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_402.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -シ,私,1285,1285,17,-4.2442 -デ,で,149,149,468,-1.6148 -ナカ,中,1285,1285,282,-4.2761 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -イイ,いい,37,37,17,-2.6886 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_403.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_403.csv deleted file mode 100644 index 9ab85a4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_403.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -ガ,が,299,299,468,-2.0560 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -「,「,6,6,352,-2.0388 -、,、,10,10,151,-1.2267 -ン,ん,1310,1310,437,-3.5653 -」,」,7,7,121,-2.0554 -モノ,もの,1310,1310,468,-3.9802 -トイウ,という,173,173,468,-2.2416 -タメ,ため,1313,1313,282,-3.3063 -カ,か,359,359,468,-1.9789 -『,『,6,6,322,-3.4104 -ホウ,方,1310,1310,48,-4.5756 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -コト,事,1310,1310,282,-4.9393 -カラ,から,297,297,356,-2.3083 -トキ,時,1313,1313,282,-4.1345 -』,』,7,7,136,-3.5069 -トシテ,として,179,179,356,-2.2226 -タ,多,1285,1285,351,-4.9124 -ナカ,中,1313,1313,282,-4.2761 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ナカ,中,1293,1293,282,-4.2761 -タチ,立ち,1285,1285,356,-5.2862 -メ,目,1310,1310,332,-5.6594 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_404.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_404.csv deleted file mode 100644 index 9b4ded9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_404.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダケ,だけ,338,338,468,-2.4590 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -・,・,5,5,203,-2.7687 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_405.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_405.csv deleted file mode 100644 index d9d0fe2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_405.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ウカ,うか,506,359,17,-6.6916 -ウト,うと,506,164,17,-7.3953 -ウネ,うね,506,279,17,-8.1285 -ウトシ,うとし,506,610,17,-8.3143 -ウト,うと,506,150,17,-8.5291 -ウナ,うな,506,275,17,-8.6345 -ウガ,うが,506,299,17,-8.6743 -ウカナ,うかな,506,275,17,-8.7244 -ウトスル,うとする,506,599,17,-8.7261 -ウケド,うけど,506,301,17,-8.9179 -ウトオモッテ,うと思って,506,307,17,-9.0501 -ウトオモイ,うと思い,506,832,17,-9.0952 -ウトシテ,うとして,506,307,17,-9.1055 -ウシ,うし,506,304,17,-9.1437 -ウトシタ,うとした,506,435,17,-9.2647 -ウトオモイマス,うと思います,506,491,17,-9.3008 -ウカト,うかと,506,164,17,-9.4781 -ウカラ,うから,506,297,17,-9.5665 -ウトオモウ,うと思う,506,817,17,-9.6225 -ウトシテ,うとして,506,179,17,-9.7061 -ウトイウ,うという,506,173,17,-9.7298 -ウヨ,うよ,506,288,17,-9.7306 -ウトオモッタ,うと思った,506,435,17,-9.7563 -ウッテ,うって,506,167,17,-9.7775 -ウト,うと,506,309,17,-9.8071 -ウナァ,うなぁ,506,275,17,-9.9664 -ウナト,うなと,506,164,17,-10.0450 -ウトシテル,うとしてる,506,307,17,-10.0565 -ウゼ,うぜ,506,269,17,-10.0768 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_406.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_406.csv deleted file mode 100644 index fde301f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_406.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -タ,た,435,435,282,-1.4167 -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -コト,こと,1310,1310,282,-2.6917 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ノ,の,1310,1310,408,-2.7847 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -バイイ,ばいい,318,131,17,-8.3265 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_407.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_407.csv deleted file mode 100644 index 5ddd656..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_407.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_408.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_408.csv deleted file mode 100644 index 720b37d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_408.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -テイル,ている,307,919,17,-5.6469 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -テイ,てい,307,930,17,-5.8308 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_409.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_409.csv deleted file mode 100644 index 87bc86e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_409.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -ナガラ,ながら,314,314,282,-2.7301 -デス,です,460,460,17,-1.8655 -「,「,6,6,352,-2.0388 -ダ,だ,453,453,471,-1.9457 -タイ,たい,444,444,17,-2.4250 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -マシ,まし,501,501,17,-2.0043 -タ,多,1285,1285,351,-4.9124 -『,『,6,6,322,-3.4104 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -。,。,8,8,61,-1.3115 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_41.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_41.csv deleted file mode 100644 index 43c8e4e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_41.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イイ,いい,37,37,17,-2.6886 -ワタシ,私,1306,1306,17,-3.6243 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナニ,何,1306,1306,468,-4.3760 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -タ,多,1285,1285,351,-4.9124 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -フクミ,含み,1285,1285,258,-4.9821 -デキ,でき,625,625,481,-4.3005 -マタ,また,555,555,468,-3.4936 -オモウ,思う,817,817,17,-3.0926 -トキ,時,1285,1285,282,-5.0461 -モ,も,262,262,468,-1.7239 -ボク,僕,1306,1306,17,-5.1386 -ココ,ここ,1306,1306,468,-5.1573 -カレ,彼,1306,1306,25,-5.1723 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_410.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_410.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_410.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_411.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_411.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_411.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_412.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_412.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_412.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_413.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_413.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_413.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_414.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_414.csv deleted file mode 100644 index da84f48..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_414.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ヨ,よ,288,288,17,-2.1474 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -・,・,5,5,203,-2.7687 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_415.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_415.csv deleted file mode 100644 index 6eb9a73..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_415.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ヨ,よ,288,288,17,-2.1474 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_416.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_416.csv deleted file mode 100644 index 1b0c63b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_416.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_417.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_417.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_417.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_418.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_418.csv deleted file mode 100644 index 5634f85..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_418.csv +++ /dev/null @@ -1,30 +0,0 @@ -ン,ん,515,515,437,-2.4192 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_419.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_419.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_419.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_42.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_42.csv deleted file mode 100644 index 7904bfc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_42.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_420.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_420.csv deleted file mode 100644 index 91f7264..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_420.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,し,610,610,258,-1.5936 -ス,す,602,602,481,-2.2579 -オ,お,560,560,437,-3.5014 -ゴ,ご,560,560,78,-4.1942 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,560,560,351,-4.9124 -ダイ,大,560,560,454,-5.0378 -ドウ,同,560,560,468,-5.0450 -カズ,数,560,560,387,-5.3011 -ゼン,全,560,560,424,-5.3050 -タ,多,1285,1285,351,-4.9124 -カク,各,560,560,468,-5.3380 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -モト,元,560,560,14,-5.5313 -。,。,8,8,61,-1.3115 -シン,新,560,560,356,-5.5760 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -キュウ,旧,560,560,489,-5.6169 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ホン,本,560,560,468,-5.6868 -タチ,立ち,1285,1285,356,-5.2862 -ガ,が,148,148,468,-1.4621 -カズ,数,1285,1285,387,-5.3011 -ゲン,現,560,560,309,-5.7141 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_421.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_421.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_421.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_422.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_422.csv deleted file mode 100644 index 3507746..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_422.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -デス,です,460,460,17,-1.8655 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,458,458,468,-1.9218 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -ナ,な,454,454,287,-1.8607 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_423.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_423.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_423.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_424.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_424.csv deleted file mode 100644 index 392665a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_424.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ナンカ,なんか,2,2,17,-4.0239 -エ,え,2,2,99,-4.2861 -ア,あ,2,2,437,-4.6692 -マ,ま,2,2,36,-4.8369 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -」,」,7,7,121,-2.0554 -アノ,あの,2,2,17,-5.6028 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ト,と,2,2,282,-5.6291 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -アー,あー,2,2,80,-5.8438 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -トキ,時,1285,1285,282,-5.0461 -ナイ,ない,473,473,468,-1.8979 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_425.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_425.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_425.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_426.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_426.csv deleted file mode 100644 index 3c70241..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_426.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_427.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_427.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_427.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_428.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_428.csv deleted file mode 100644 index 96bdb9c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_428.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -マスガ,ますが,491,299,17,-7.0677 -マスヨ,ますよ,491,288,17,-7.3568 -マスカ,ますか,491,359,17,-7.4921 -マシタ,ました,501,435,17,-5.7646 -マスネ,ますね,491,279,17,-7.6686 -マスヨネ,ますよね,491,279,17,-8.1272 -マスノデ,ますので,491,316,17,-8.3029 -マスヨウ,ますよう,491,1312,17,-8.3797 -マスシ,ますし,491,304,17,-8.5719 -マスヨウニ,ますように,491,329,17,-8.5732 -マスカラ,ますから,491,297,17,-8.7663 -マスケド,ますけど,491,301,17,-9.0375 -マスト,ますと,491,164,17,-9.1686 -ナンカ,なんか,2,2,17,-4.0239 -マストサイワイ,ますと幸い,491,1287,17,-9.3147 -マストサイワイデス,ますと幸いです,491,460,17,-9.3202 -マシタガ,ましたが,501,299,17,-7.6859 -マセン,ません,495,515,17,-6.3590 -マスワ,ますわ,491,291,17,-9.4796 -エ,え,2,2,99,-4.2861 -マスデショウ,ますでしょう,491,506,17,-9.6750 -マスカラネ,ますからね,491,279,17,-9.6803 -マスデショウカ,ますでしょうか,491,359,17,-9.6845 -マスヨウニ,ますように,491,151,17,-9.7912 -ア,あ,2,2,437,-4.6692 -マスカネ,ますかね,491,279,17,-10.0047 -マ,ま,2,2,36,-4.8369 -マスト,ますと,491,309,17,-10.1098 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_429.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_429.csv deleted file mode 100644 index 941d5f6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_429.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -マスガ,ますが,491,299,17,-7.0677 -マスヨ,ますよ,491,288,17,-7.3568 -マスカ,ますか,491,359,17,-7.4921 -マスネ,ますね,491,279,17,-7.6686 -マシタ,ました,501,435,17,-5.7646 -マスヨネ,ますよね,491,279,17,-8.1272 -マスノデ,ますので,491,316,17,-8.3029 -マスヨウ,ますよう,491,1312,17,-8.3797 -マスシ,ますし,491,304,17,-8.5719 -マスヨウニ,ますように,491,329,17,-8.5732 -マセン,ません,495,515,17,-6.3590 -マスカラ,ますから,491,297,17,-8.7663 -マスケド,ますけど,491,301,17,-9.0375 -マスト,ますと,491,164,17,-9.1686 -マストサイワイ,ますと幸い,491,1287,17,-9.3147 -マストサイワイデス,ますと幸いです,491,460,17,-9.3202 -マスワ,ますわ,491,291,17,-9.4796 -ナンカ,なんか,2,2,17,-4.0239 -マスデショウ,ますでしょう,491,506,17,-9.6750 -マスカラネ,ますからね,491,279,17,-9.6803 -マスデショウカ,ますでしょうか,491,359,17,-9.6845 -マスヨウニ,ますように,491,151,17,-9.7912 -、,、,10,10,151,-1.2267 -エ,え,2,2,99,-4.2861 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_43.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_43.csv deleted file mode 100644 index 55ba258..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_43.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -ン,ん,1310,1310,437,-3.5653 -ヨ,よ,288,288,17,-2.1474 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -・,・,5,5,203,-2.7687 -モノ,もの,1310,1310,468,-3.9802 -ナカレ,なかれ,30,30,468,-2.1172 -テ,て,307,307,356,-1.5059 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ナ,な,275,275,287,-2.5224 -カラ,から,297,297,356,-2.3083 -タ,多,1285,1285,351,-4.9124 -」,」,7,7,121,-2.0554 -ノ,の,153,153,408,-2.5621 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_430.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_430.csv deleted file mode 100644 index 9f752fa..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_430.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ネ,ね,279,279,47,-2.1699 -ヨ,よ,288,288,17,-2.1474 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ナ,な,275,275,287,-2.5224 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ガ,が,299,299,468,-2.0560 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_431.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_431.csv deleted file mode 100644 index 7e2b531..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_431.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -?,?,1317,1317,17,-2.1596 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -カ,か,359,359,468,-1.9789 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -・,・,5,5,203,-2.7687 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_432.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_432.csv deleted file mode 100644 index 91fd021..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_432.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -、,、,10,10,151,-1.2267 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_433.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_433.csv deleted file mode 100644 index 9e9e7ee..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_433.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -イイ,いい,37,37,17,-2.6886 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -。,。,8,8,61,-1.3115 -ワタシ,私,1306,1306,17,-3.6243 -ト,と,164,164,282,-1.8068 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コノ,この,1315,1315,468,-3.0084 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ソノ,その,1315,1315,468,-3.1000 -ミ,見,1285,1285,52,-5.3943 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -・,・,5,5,203,-2.7687 -ソウ,そう,1282,1282,17,-4.0423 -『,『,6,6,322,-3.4104 -アソビ,遊び,1285,1285,290,-5.5478 -?,?,1317,1317,17,-2.1596 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_434.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_434.csv deleted file mode 100644 index f8a89d9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_434.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -イイ,いい,37,37,17,-2.6886 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ソウ,そう,1282,1282,17,-4.0423 -ワタシ,私,1306,1306,17,-3.6243 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -?,?,1317,1317,17,-2.1596 -ミ,見,1285,1285,52,-5.3943 -コレ,これ,1306,1306,468,-3.8073 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ソレ,それ,1306,1306,468,-3.8293 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -『,『,6,6,322,-3.4104 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -アル,ある,772,772,481,-2.9588 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_435.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_435.csv deleted file mode 100644 index ffe99fe..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_435.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ガ,が,299,299,468,-2.0560 -ト,と,164,164,282,-1.8068 -ン,ん,1310,1310,437,-3.5653 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -モノ,もの,1310,1310,468,-3.9802 -タメ,ため,1313,1313,282,-3.3063 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シロ,しろ,608,608,437,-1.9456 -ノデ,ので,316,316,48,-2.3278 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ケド,けど,301,301,17,-2.4058 -ホウ,方,1310,1310,48,-4.5756 -・,・,5,5,203,-2.7687 -カラ,から,297,297,356,-2.3083 -ナカレ,なかれ,30,30,468,-2.1172 -アル,ある,403,403,481,-2.1570 -「,「,6,6,352,-2.0388 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -ヨ,よ,288,288,17,-2.1474 -レル,れる,870,870,468,-2.2380 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_436.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_436.csv deleted file mode 100644 index c2d62a7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_436.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,164,164,282,-1.8068 -ガ,が,299,299,468,-2.0560 -シ,私,1285,1285,17,-4.2442 -モノ,もの,1310,1310,468,-3.9802 -ナカ,中,1285,1285,282,-4.2761 -タメ,ため,1313,1313,282,-3.3063 -、,、,10,10,151,-1.2267 -ヨ,よ,288,288,17,-2.1474 -ホウ,方,1310,1310,48,-4.5756 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ケド,けど,301,301,17,-2.4058 -「,「,6,6,352,-2.0388 -トキ,時,1313,1313,282,-4.1345 -コト,事,1310,1310,282,-4.9393 -ガ,が,148,148,468,-1.4621 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ナカ,中,1313,1313,282,-4.2761 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -カラ,から,297,297,356,-2.3083 -ミ,見,1285,1285,52,-5.3943 -カ,か,359,359,468,-1.9789 -ジブン,自分,1285,1285,161,-5.4686 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_437.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_437.csv deleted file mode 100644 index ba4ef08..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_437.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -カ,か,359,359,468,-1.9789 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ノ,の,368,368,408,-1.2458 -サン,さん,1302,1302,420,-2.7569 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -?,?,1317,1317,17,-2.1596 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_438.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_438.csv deleted file mode 100644 index 161b9e1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_438.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_439.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_439.csv deleted file mode 100644 index 5e585d4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_439.csv +++ /dev/null @@ -1,30 +0,0 @@ -ガル,がる,886,886,17,-3.7189 -イル,いる,919,919,468,-1.9884 -ガリ,がり,894,894,17,-3.7756 -・,・,5,5,203,-2.7687 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -イ,い,930,930,356,-2.0866 -…,…,5,5,184,-3.3301 -アリ,あり,788,788,481,-3.1265 -サ,さ,1304,1304,441,-2.8267 -ナリ,なり,788,788,471,-3.2643 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -デキ,でき,625,625,481,-4.3005 -〜,〜,5,5,244,-4.0997 -ソウ,そう,1301,1301,17,-2.6187 -ミル,みる,919,919,471,-5.2297 -ミ,見,625,625,52,-4.5511 -クレル,くれる,919,919,17,-5.3621 -ガカル,がかる,886,886,501,-7.9539 -ガカル,掛る,886,886,460,-7.9627 -ガカル,掛かる,886,886,471,-7.9638 -スギル,すぎる,919,919,48,-5.4433 -ヨム,読む,762,762,481,-4.4213 -コム,込む,762,762,379,-4.5739 -イ,い,625,625,356,-4.9123 -フクム,含む,762,762,481,-4.6888 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_44.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_44.csv deleted file mode 100644 index a66f0ab..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_44.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -コト,こと,1310,1310,282,-2.6917 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ノ,の,1310,1310,408,-2.7847 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -カ,か,359,359,468,-1.9789 -、,、,10,10,151,-1.2267 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ン,ん,1310,1310,437,-3.5653 -ヲ,を,156,156,356,-1.4175 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_440.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_440.csv deleted file mode 100644 index 34de306..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_440.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -・,・,5,5,203,-2.7687 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -ナ,な,275,275,287,-2.5224 -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -…,…,5,5,184,-3.3301 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_441.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_441.csv deleted file mode 100644 index 18a3e10..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_441.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ハ,は,261,261,468,-1.3731 -バイイ,ばいい,318,131,17,-8.3265 -バイイ,ばいい,318,37,17,-8.8957 -ト,と,164,164,282,-1.8068 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -バイイノ,ばいいの,318,1310,17,-9.4603 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_442.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_442.csv deleted file mode 100644 index a90f01f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_442.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -デ,で,149,149,468,-1.6148 -トキ,時,1285,1285,282,-5.0461 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -タチ,立ち,1285,1285,356,-5.2862 -ナイ,ない,473,473,468,-1.8979 -カズ,数,1285,1285,387,-5.3011 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -キリ,切り,1285,1285,60,-5.3631 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_443.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_443.csv deleted file mode 100644 index 3d0e892..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_443.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -スキ,好き,1287,1287,66,-4.8632 -オモエ,思え,826,826,17,-3.0869 -ワ,わ,291,291,36,-2.7424 -ヒツヨウ,必要,1287,1287,169,-4.9541 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -アレ,あれ,784,784,481,-3.1152 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ワタシ,私,1306,1306,17,-3.6243 -アソビ,遊び,1285,1285,290,-5.5478 -ナレ,なれ,784,784,471,-3.2530 -ナイ,ない,473,473,468,-1.8979 -メ,目,1285,1285,332,-5.6594 -コレ,これ,1306,1306,468,-3.8073 -ノ,の,368,368,408,-1.2458 -カノウ,可能,1287,1287,169,-5.3740 -ソレ,それ,1306,1306,468,-3.8293 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_444.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_444.csv deleted file mode 100644 index b2131e2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_444.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,164,164,282,-1.8068 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -、,、,10,10,151,-1.2267 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -ス,す,602,602,481,-2.2579 -ト,と,309,309,282,-2.2641 -」,」,7,7,121,-2.0554 -ン,ん,1310,1310,437,-3.5653 -アレ,あれ,407,407,47,-2.4311 -ナク,なく,481,481,468,-2.5033 -ノ,の,153,153,408,-2.5621 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_445.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_445.csv deleted file mode 100644 index bf8954c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_445.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -ナ,な,275,275,287,-2.5224 -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -カ,か,359,359,468,-1.9789 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -ヲ,を,156,156,356,-1.4175 -デス,です,460,460,17,-1.8655 -モ,も,262,262,468,-1.7239 -ガ,が,299,299,468,-2.0560 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -ナァ,なぁ,275,275,420,-4.2969 -コト,こと,1310,1310,282,-2.6917 -フクミ,含み,1285,1285,258,-4.9821 -ト,と,164,164,282,-1.8068 -トキ,時,1285,1285,282,-5.0461 -ノ,の,1310,1310,408,-2.7847 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ガ,が,148,148,468,-1.4621 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_446.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_446.csv deleted file mode 100644 index 1ad8346..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_446.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ガ,が,299,299,468,-2.0560 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -」,」,7,7,121,-2.0554 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_447.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_447.csv deleted file mode 100644 index 1b0c63b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_447.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_448.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_448.csv deleted file mode 100644 index 0e0465d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_448.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_449.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_449.csv deleted file mode 100644 index 877f867..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_449.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ナイ,ない,473,473,468,-1.8979 -ゴザイ,ござい,428,428,17,-2.6577 -ヨウ,よう,1312,1312,169,-2.2533 -テ,て,307,307,356,-1.5059 -コト,こと,1310,1310,282,-2.6917 -」,」,7,7,121,-2.0554 -ノ,の,1310,1310,408,-2.7847 -ヨ,よ,288,288,17,-2.1474 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -・,・,5,5,203,-2.7687 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -シ,私,1285,1285,17,-4.2442 -タ,た,435,435,282,-1.4167 -ナカ,中,1285,1285,282,-4.2761 -ン,ん,1310,1310,437,-3.5653 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_45.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_45.csv deleted file mode 100644 index 882d83c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_45.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -トイウ,という,173,173,468,-2.2416 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_450.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_450.csv deleted file mode 100644 index 02d4146..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_450.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タリ,たり,360,360,451,-2.5700 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_451.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_451.csv deleted file mode 100644 index ddfaa72..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_451.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -テ,て,307,307,356,-1.5059 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -ハ,は,261,261,468,-1.3731 -アリ,あり,788,788,481,-3.1265 -モ,も,262,262,468,-1.7239 -、,、,10,10,151,-1.2267 -ナリ,なり,788,788,471,-3.2643 -テル,てる,307,919,17,-4.3303 -ナク,なく,481,481,468,-2.5033 -テ,て,307,930,356,-4.8756 -ナイヒト,ない人,473,1285,501,-5.9561 -ナクッ,なくっ,481,481,17,-2.7253 -ヤル,やる,772,772,17,-5.2305 -オモイ,思い,832,832,17,-3.0179 -ワカル,わかる,772,772,481,-5.6202 -ツクル,作る,772,772,481,-5.6347 -テイル,ている,307,919,17,-5.6469 -シル,知る,772,772,438,-5.6604 -ハイル,入る,772,772,471,-5.6705 -テイ,てい,307,930,17,-5.8308 -ネ,ね,279,279,47,-2.1699 -ワカル,分かる,772,772,481,-6.1317 -カワル,変わる,772,772,471,-6.2425 -キリ,切り,788,788,379,-5.3631 -コトナル,異なる,772,772,468,-6.2830 -ヨル,よる,772,772,59,-6.2848 -ヤリ,やり,788,788,17,-5.3974 -ナイデス,ないです,473,460,17,-7.2367 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_452.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_452.csv deleted file mode 100644 index 372146b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_452.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -バ,ば,318,318,282,-2.3431 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -ワタシ,私,1306,1306,17,-3.6243 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -。,。,8,8,61,-1.3115 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -コノ,この,1315,1315,468,-3.0084 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ソノ,その,1315,1315,468,-3.1000 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -イイ,いい,37,37,17,-2.6886 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ソウ,そう,1282,1282,17,-4.0423 -メ,目,1285,1285,332,-5.6594 -ナニ,何,1306,1306,468,-4.3760 -アル,ある,772,772,481,-2.9588 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_453.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_453.csv deleted file mode 100644 index 62b42f1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_453.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヨ,よ,288,288,17,-2.1474 -ト,と,164,164,282,-1.8068 -。,。,8,8,61,-1.3115 -カラ,から,297,297,356,-2.3083 -ケド,けど,301,301,17,-2.4058 -ガ,が,299,299,468,-2.0560 -ナ,な,275,275,287,-2.5224 -ガ,が,148,148,468,-1.4621 -ネ,ね,279,279,47,-2.1699 -、,、,10,10,151,-1.2267 -シ,し,304,304,258,-2.5363 -ト,と,309,309,282,-2.2641 -ナ,な,454,454,287,-1.8607 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -ヤ,や,366,366,43,-2.1479 -ナイ,ない,482,482,468,-2.1746 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_454.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_454.csv deleted file mode 100644 index 00a3be6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_454.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ノデ,ので,316,316,48,-2.3278 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モノ,もの,1310,1310,468,-3.9802 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ホウ,方,1310,1310,48,-4.5756 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コト,事,1310,1310,282,-4.9393 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -、,、,10,10,151,-1.2267 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ノニ,のに,317,317,17,-2.7966 -ハタラキ,働き,1285,1285,42,-5.8522 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_455.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_455.csv deleted file mode 100644 index a4492af..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_455.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -、,、,10,10,151,-1.2267 -イ,い,930,930,356,-2.0866 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -?,?,1317,1317,17,-2.1596 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ノデ,ので,316,316,48,-2.3278 -タイ,たい,444,444,17,-2.4250 -ズ,ず,487,487,282,-2.5580 -ヨリ,より,155,155,351,-2.5584 -キ,き,904,904,356,-2.5861 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_456.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_456.csv deleted file mode 100644 index 607a873..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_456.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ハ,は,261,261,468,-1.3731 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_457.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_457.csv deleted file mode 100644 index f920ff5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_457.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_458.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_458.csv deleted file mode 100644 index f722307..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_458.csv +++ /dev/null @@ -1,30 +0,0 @@ -アル,ある,403,403,481,-2.1570 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -アリ,あり,409,409,249,-2.3509 -モ,も,262,262,468,-1.7239 -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -イイ,いい,131,131,17,-2.9419 -。,。,8,8,61,-1.3115 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ゴザイ,ござい,428,428,17,-2.6577 -・,・,5,5,203,-2.7687 -アレ,あれ,407,407,47,-2.4311 -ネ,ね,279,279,47,-2.1699 -タ,た,435,435,282,-1.4167 -ヨイ,良い,114,114,48,-3.5243 -ノ,の,368,368,408,-1.2458 -タ,多,1285,1285,351,-4.9124 -テ,て,307,307,356,-1.5059 -シカ,しか,257,257,268,-2.7748 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -…,…,5,5,184,-3.3301 -スキ,好き,1287,1287,66,-4.8632 -ハナイ,はない,261,473,17,-7.2816 -シ,し,610,610,258,-1.5936 -スラ,すら,258,258,48,-3.3843 -タチ,立ち,1285,1285,356,-5.2862 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_459.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_459.csv deleted file mode 100644 index 1ccdd1f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_459.csv +++ /dev/null @@ -1,30 +0,0 @@ -ネ,ね,279,279,47,-2.1699 -。,。,8,8,61,-1.3115 -ヨ,よ,288,288,17,-2.1474 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -カ,か,359,359,468,-1.9789 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_46.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_46.csv deleted file mode 100644 index 9652450..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_46.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_460.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_460.csv deleted file mode 100644 index 1aa235f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_460.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ガ,が,299,299,468,-2.0560 -カ,か,359,359,468,-1.9789 -ヨ,よ,288,288,17,-2.1474 -ネ,ね,279,279,47,-2.1699 -ガ,が,148,148,468,-1.4621 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -ヤ,や,366,366,43,-2.1479 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -・,・,5,5,203,-2.7687 -ナク,なく,481,481,468,-2.5033 -タリ,たり,360,360,451,-2.5700 -キ,き,904,904,356,-2.5861 -オリ,おり,1197,1197,356,-2.6223 -ニツイテ,について,199,199,468,-2.6527 -ニヨッテ,によって,210,210,468,-2.6690 -ニヨル,による,214,214,43,-2.7162 -ニヨリ,により,211,211,43,-2.7172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_461.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_461.csv deleted file mode 100644 index 48b9063..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_461.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -カ,か,359,359,468,-1.9789 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -ナ,な,275,275,287,-2.5224 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ケ,け,267,267,437,-3.6854 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -…,…,5,5,184,-3.3301 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_462.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_462.csv deleted file mode 100644 index 736b3db..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_462.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_463.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_463.csv deleted file mode 100644 index a7f3ef4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_463.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -?,?,1317,1317,17,-2.1596 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -スル,する,599,599,481,-1.9113 -ウカ,うか,506,359,17,-6.6916 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_464.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_464.csv deleted file mode 100644 index 1b0c63b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_464.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_465.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_465.csv deleted file mode 100644 index e74873c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_465.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -。,。,8,8,61,-1.3115 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_466.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_466.csv deleted file mode 100644 index 48cfd02..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_466.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_467.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_467.csv deleted file mode 100644 index 3d44a05..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_467.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -ヨ,よ,288,288,17,-2.1474 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -テル,てる,307,919,17,-4.3303 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -テ,て,307,930,356,-4.8756 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -」,」,7,7,121,-2.0554 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -マス,ます,491,491,17,-1.8643 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_468.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_468.csv deleted file mode 100644 index dc68c32..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_468.csv +++ /dev/null @@ -1,30 +0,0 @@ -サ,さ,1304,1304,441,-2.8267 -カタ,方,1304,1304,48,-4.2521 -イ,い,930,930,356,-2.0866 -イル,いる,919,919,468,-1.9884 -ソウ,そう,1309,1309,17,-3.4742 -ヨ,よ,288,288,17,-2.1474 -ソウ,そう,1282,1282,17,-4.0423 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ドウ,どう,1282,1282,468,-4.6684 -ノ,の,282,282,408,-2.8118 -・,・,5,5,203,-2.7687 -デス,です,460,460,17,-1.8655 -シ,私,1285,1285,17,-4.2442 -スコシ,少し,1282,1282,48,-5.0192 -ナカ,中,1285,1285,282,-4.2761 -ネエ,ねえ,20,20,468,-2.2298 -サラニ,さらに,1282,1282,282,-5.0421 -マダ,まだ,1282,1282,468,-5.0647 -ソ,そ,1309,1309,437,-4.9400 -ン,ん,515,515,437,-2.4192 -ン,ん,1310,1310,437,-3.5653 -チョット,ちょっと,1282,1282,17,-5.2102 -アリガトウ,ありがとう,3,3,244,-3.6808 -ジッサイ,実際,1282,1282,468,-5.3171 -、,、,10,10,151,-1.2267 -アレ,あれ,784,784,481,-3.1152 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_469.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_469.csv deleted file mode 100644 index 5da1f89..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_469.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヨ,よ,288,288,17,-2.1474 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -マス,ます,491,491,17,-1.8643 -。,。,8,8,61,-1.3115 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ス,す,602,602,481,-2.2579 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_47.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_47.csv deleted file mode 100644 index 7b79666..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_47.csv +++ /dev/null @@ -1,30 +0,0 @@ -ズ,ず,487,487,282,-2.5580 -ヌ,ぬ,484,484,17,-3.3915 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ザル,ざる,485,485,282,-3.6544 -ン,ん,515,515,437,-2.4192 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -モノ,もの,1310,1310,468,-3.9802 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_470.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_470.csv deleted file mode 100644 index dc0deba..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_470.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -バイイ,ばいい,318,131,17,-8.3265 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ハ,は,261,261,468,-1.3731 -バイイノ,ばいいの,318,1310,17,-9.4603 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -バトオモイ,ばと思い,318,832,17,-10.0809 -バイイノカ,ばいいのか,318,359,17,-10.0964 -バイイ,ばいい,318,19,17,-10.1547 -バイイカ,ばいいか,318,359,17,-10.1567 -バイイノニ,ばいいのに,318,317,17,-10.1854 -バトオモイマス,ばと思います,318,491,17,-10.1899 -バダイジョウブ,ば大丈夫,318,1287,17,-10.2066 -バヨカッタ,ば良かった,318,435,17,-10.2350 -バイインダ,ばいいんだ,318,453,17,-10.2552 -バナリ,ばなり,318,1200,17,-10.3847 -バイイデスカ,ばいいですか,318,359,17,-10.3963 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_471.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_471.csv deleted file mode 100644 index 20cb1eb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_471.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -イイ,いい,37,37,17,-2.6886 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_472.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_472.csv deleted file mode 100644 index 2b5b598..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_472.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -ダ,だ,453,453,471,-1.9457 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ウ,う,506,506,133,-2.2404 -ス,す,602,602,481,-2.2579 -・,・,5,5,203,-2.7687 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_473.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_473.csv deleted file mode 100644 index fdab76c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_473.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -デス,です,460,460,17,-1.8655 -ノ,の,1310,1310,408,-2.7847 -カ,か,359,359,468,-1.9789 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -ト,と,309,309,282,-2.2641 -ン,ん,1310,1310,437,-3.5653 -カラ,から,297,297,356,-2.3083 -ヨウ,よう,1312,1312,169,-2.2533 -ケド,けど,301,301,17,-2.4058 -ノデ,ので,316,316,48,-2.3278 -モノ,もの,1310,1310,468,-3.9802 -」,」,7,7,121,-2.0554 -ガ,が,148,148,468,-1.4621 -?,?,1317,1317,17,-2.1596 -シ,し,304,304,258,-2.5363 -デ,で,149,149,468,-1.6148 -ヨ,よ,288,288,17,-2.1474 -ガ,が,299,299,468,-2.0560 -ホウ,方,1310,1310,48,-4.5756 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -シ,私,1285,1285,17,-4.2442 -トイウ,という,173,173,468,-2.2416 -タメ,ため,1313,1313,282,-3.3063 -ナカ,中,1285,1285,282,-4.2761 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_474.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_474.csv deleted file mode 100644 index 299ba77..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_474.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヤ,や,366,366,43,-2.1479 -ヨウ,よう,1312,1312,169,-2.2533 -テ,て,307,307,356,-1.5059 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -ガ,が,299,299,468,-2.0560 -ナ,な,275,275,287,-2.5224 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ノ,の,368,368,408,-1.2458 -サン,さん,1302,1302,420,-2.7569 -」,」,7,7,121,-2.0554 -ニ,に,151,151,282,-1.3747 -ソウ,そう,1282,1282,17,-4.0423 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タ,た,435,435,282,-1.4167 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -カ,か,359,359,468,-1.9789 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ン,ん,1310,1310,437,-3.5653 -「,「,6,6,352,-2.0388 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_475.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_475.csv deleted file mode 100644 index bd4eb1c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_475.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_476.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_476.csv deleted file mode 100644 index 1bf61a0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_476.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -カ,か,359,359,468,-1.9789 -ウカ,うか,506,359,17,-6.6916 -ウト,うと,506,164,17,-7.3953 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ウネ,うね,506,279,17,-8.1285 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_477.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_477.csv deleted file mode 100644 index 9072e66..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_477.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ネ,ね,279,279,47,-2.1699 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_478.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_478.csv deleted file mode 100644 index 8bfedf0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_478.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -』,』,7,7,136,-3.5069 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_479.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_479.csv deleted file mode 100644 index 77c95ae..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_479.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -ガ,が,299,299,468,-2.0560 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -コト,こと,1310,1310,282,-2.6917 -モ,も,262,262,468,-1.7239 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -…,…,5,5,184,-3.3301 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -タ,多,1285,1285,351,-4.9124 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_48.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_48.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_48.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_480.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_480.csv deleted file mode 100644 index f920ff5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_480.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_481.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_481.csv deleted file mode 100644 index f5ed19f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_481.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -テ,て,307,930,356,-4.8756 -アリ,あり,788,788,481,-3.1265 -「,「,6,6,352,-2.0388 -ナリ,なり,788,788,471,-3.2643 -テイル,ている,307,919,17,-5.6469 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -テイ,てい,307,930,17,-5.8308 -モ,も,262,262,468,-1.7239 -ハ,は,261,261,468,-1.3731 -テモ,ても,307,262,17,-6.4044 -タ,多,1285,1285,351,-4.9124 -テイタ,ていた,307,435,17,-6.4827 -フクミ,含み,1285,1285,258,-4.9821 -『,『,6,6,322,-3.4104 -トキ,時,1285,1285,282,-5.0461 -ヤル,やる,772,772,17,-5.2305 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -チャウ,ちゃう,307,1253,17,-6.9038 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_482.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_482.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_482.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_483.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_483.csv deleted file mode 100644 index 838fa57..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_483.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -コノ,この,1315,1315,468,-3.0084 -ソノ,その,1315,1315,468,-3.1000 -コト,こと,1310,1310,282,-2.6917 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -ノ,の,1310,1310,408,-2.7847 -ハ,は,261,261,468,-1.3731 -テ,て,307,307,356,-1.5059 -・,・,5,5,203,-2.7687 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -?,?,1317,1317,17,-2.1596 -ヲ,を,156,156,356,-1.4175 -…,…,5,5,184,-3.3301 -ン,ん,1310,1310,437,-3.5653 -シ,し,610,610,258,-1.5936 -サン,さん,1302,1302,420,-2.7569 -」,」,7,7,121,-2.0554 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タ,た,435,435,282,-1.4167 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -モノ,もの,1310,1310,468,-3.9802 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_484.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_484.csv deleted file mode 100644 index 162aa30..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_484.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ヨウ,よう,1312,1312,169,-2.2533 -シ,私,1285,1285,17,-4.2442 -」,」,7,7,121,-2.0554 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,148,148,468,-1.4621 -ト,と,164,164,282,-1.8068 -ン,ん,1310,1310,437,-3.5653 -タメ,ため,1313,1313,282,-3.3063 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -タ,多,1285,1285,351,-4.9124 -ハ,は,261,261,468,-1.3731 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -フクミ,含み,1285,1285,258,-4.9821 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -モノ,もの,1310,1310,468,-3.9802 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_485.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_485.csv deleted file mode 100644 index 638e852..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_485.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヲ,を,156,156,356,-1.4175 -ニ,に,151,151,282,-1.3747 -コト,こと,1310,1310,282,-2.6917 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,1310,1310,408,-2.7847 -ヲシ,をし,156,610,17,-6.9630 -、,、,10,10,151,-1.2267 -タ,多,1285,1285,351,-4.9124 -ガ,が,148,148,468,-1.4621 -フクミ,含み,1285,1285,258,-4.9821 -ハ,は,261,261,468,-1.3731 -トキ,時,1285,1285,282,-5.0461 -ン,ん,1310,1310,437,-3.5653 -ヲシテ,をして,156,307,17,-7.3522 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -」,」,7,7,121,-2.0554 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ノ,の,368,368,408,-1.2458 -ミ,見,1285,1285,52,-5.3943 -ヲミ,を見,156,625,17,-7.6312 -ト,と,363,363,282,-2.1096 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -モノ,もの,1310,1310,468,-3.9802 -アソビ,遊び,1285,1285,290,-5.5478 -ヲスル,をする,156,599,17,-7.7924 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_486.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_486.csv deleted file mode 100644 index 152dd6a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_486.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -デス,です,460,460,17,-1.8655 -デ,で,458,458,468,-1.9218 -ナ,な,454,454,287,-1.8607 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -「,「,6,6,352,-2.0388 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_487.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_487.csv deleted file mode 100644 index f986384..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_487.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -・,・,5,5,203,-2.7687 -シ,し,610,610,258,-1.5936 -」,」,7,7,121,-2.0554 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ニハ,には,151,261,17,-6.0799 -…,…,5,5,184,-3.3301 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -デス,です,460,460,17,-1.8655 -ニシ,にし,151,610,17,-6.6512 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -ニナル,になる,151,772,17,-6.7609 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_488.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_488.csv deleted file mode 100644 index ad9da30..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_488.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -シ,し,517,517,258,-3.6249 -マシ,まし,501,501,17,-2.0043 -ハ,は,261,261,468,-1.3731 -キ,き,516,516,356,-3.5399 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_489.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_489.csv deleted file mode 100644 index eb65802..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_489.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_49.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_49.csv deleted file mode 100644 index f0b21d5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_49.csv +++ /dev/null @@ -1,30 +0,0 @@ -ゴザイ,ござい,428,428,17,-2.6577 -ニ,に,151,151,282,-1.3747 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ナイ,ない,473,473,468,-1.8979 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -デス,です,460,460,17,-1.8655 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_490.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_490.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_490.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_491.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_491.csv deleted file mode 100644 index 2881cdc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_491.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -ガ,が,299,299,468,-2.0560 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -・,・,5,5,203,-2.7687 -カ,か,359,359,468,-1.9789 -ヨ,よ,288,288,17,-2.1474 -ナク,なく,481,481,468,-2.5033 -ノ,の,153,153,408,-2.5621 -タリ,たり,360,360,451,-2.5700 -キ,き,904,904,356,-2.5861 -オリ,おり,1197,1197,356,-2.6223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_492.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_492.csv deleted file mode 100644 index 5e9dd7d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_492.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -サ,さ,268,268,441,-3.2958 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_493.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_493.csv deleted file mode 100644 index 6564fb7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_493.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -・,・,5,5,203,-2.7687 -ナイ,ない,482,482,468,-2.1746 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_494.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_494.csv deleted file mode 100644 index a0f29d8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_494.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_495.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_495.csv deleted file mode 100644 index 6dae9b5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_495.csv +++ /dev/null @@ -1,30 +0,0 @@ -ン,ん,515,515,437,-2.4192 -ンガ,んが,515,299,17,-8.0561 -ンデシ,んでし,515,466,17,-8.3093 -ンデシタ,んでした,515,435,17,-8.3168 -ンカ,んか,515,359,17,-8.3532 -ンヨ,んよ,515,288,17,-8.3847 -ンジャ,んじゃ,515,308,17,-8.4533 -ンジャナイ,んじゃない,515,473,17,-8.8927 -ンネ,んね,515,279,17,-8.9008 -ンジャナイカ,んじゃないか,515,359,17,-9.3356 -ンシ,んし,515,304,17,-9.4119 -ンヨネ,んよね,515,279,17,-9.4258 -ンケド,んけど,515,301,17,-9.5516 -ンノデ,んので,515,316,17,-9.6425 -ンナ,んな,515,275,17,-9.6845 -ンカラ,んから,515,297,17,-9.7131 -ンワ,んわ,515,291,17,-9.7727 -ウ,う,506,506,133,-2.2404 -ニ,に,151,151,282,-1.3747 -ンノ,んの,515,1310,17,-9.9439 -ンジャナイ,んじゃない,515,20,17,-10.1204 -ンデシタガ,んでしたが,515,299,17,-10.1415 -ント,んと,515,164,17,-10.1429 -デ,で,149,149,468,-1.6148 -ンノ,んの,515,282,17,-10.2361 -モ,も,262,262,468,-1.7239 -ンヨナ,んよな,515,275,17,-10.2928 -ンカッタ,んかった,515,11,17,-10.3841 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_496.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_496.csv deleted file mode 100644 index ecb75f4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_496.csv +++ /dev/null @@ -1,30 +0,0 @@ -ン,ん,515,515,437,-2.4192 -ヤ,や,366,366,43,-2.1479 -ヤ,や,503,503,43,-3.1411 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_497.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_497.csv deleted file mode 100644 index febf4a8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_497.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -タ,た,435,435,282,-1.4167 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -…,…,5,5,184,-3.3301 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_498.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_498.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_498.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_499.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_499.csv deleted file mode 100644 index 9f3b3c8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_499.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -・,・,5,5,203,-2.7687 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_5.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_5.csv deleted file mode 100644 index bb86275..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_5.csv +++ /dev/null @@ -1,30 +0,0 @@ -・,・,5,5,203,-2.7687 -。,。,8,8,61,-1.3115 -…,…,5,5,184,-3.3301 -〜,〜,5,5,244,-4.0997 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ガ,が,299,299,468,-2.0560 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナカレ,なかれ,30,30,468,-2.1172 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ト,と,309,309,282,-2.2641 -アリ,あり,409,409,249,-2.3509 -アレ,あれ,407,407,47,-2.4311 -シ,し,304,304,258,-2.5363 -キ,き,904,904,356,-2.5861 -」,」,7,7,121,-2.0554 -シマウ,しまう,1253,1253,282,-2.7195 -タキ,たき,445,445,437,-2.7248 -タシ,たし,446,446,437,-2.7251 -クレ,くれ,940,940,17,-2.7401 -タ,多,1285,1285,351,-4.9124 -イク,いく,992,992,356,-2.7538 -シマイ,しまい,1273,1273,282,-2.7822 -ノ,の,282,282,408,-2.8118 -フクミ,含み,1285,1285,258,-4.9821 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_50.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_50.csv deleted file mode 100644 index f920ff5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_50.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_500.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_500.csv deleted file mode 100644 index 69b0968..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_500.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -…,…,5,5,184,-3.3301 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -ナ,な,275,275,287,-2.5224 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ノ,の,368,368,408,-1.2458 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_501.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_501.csv deleted file mode 100644 index 48cfd02..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_501.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -タネ,たね,435,279,17,-7.9527 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -タノニ,たのに,435,317,17,-8.0426 -タノデスガ,たのですが,435,299,17,-8.0564 -タヨウ,たよう,435,1312,17,-8.0723 -タコトガ,たことが,435,148,17,-8.1698 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_502.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_502.csv deleted file mode 100644 index 86c7c9d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_502.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -ネ,ね,279,279,47,-2.1699 -ナ,な,275,275,287,-2.5224 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -ヲ,を,156,156,356,-1.4175 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -・,・,5,5,203,-2.7687 -デ,で,149,149,468,-1.6148 -ネエ,ねえ,20,20,468,-2.2298 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -タ,多,1285,1285,351,-4.9124 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_503.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_503.csv deleted file mode 100644 index 5cba2bd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_503.csv +++ /dev/null @@ -1,30 +0,0 @@ -ケド,けど,301,301,17,-2.4058 -。,。,8,8,61,-1.3115 -ナ,な,275,275,287,-2.5224 -ネ,ね,279,279,47,-2.1699 -カラ,から,297,297,356,-2.3083 -ト,と,164,164,282,-1.8068 -ワ,わ,291,291,36,-2.7424 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -デ,で,274,274,468,-3.8354 -ナァ,なぁ,275,275,420,-4.2969 -ダ,だ,453,453,471,-1.9457 -バ,ば,318,318,282,-2.3431 -ネン,ねん,281,281,331,-3.6938 -ケレド,けれど,301,301,17,-5.0179 -ゾ,ぞ,270,270,420,-3.2548 -ヨ,よ,288,288,17,-2.1474 -テ,て,307,307,356,-1.5059 -』,』,7,7,136,-3.5069 -カ,か,359,359,468,-1.9789 -ノニ,のに,317,317,17,-2.7966 -ナア,なあ,275,275,17,-5.2398 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -ト,と,309,309,282,-2.2641 -ナ,な,454,454,287,-1.8607 -ハ,は,261,261,468,-1.3731 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_504.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_504.csv deleted file mode 100644 index 0197227..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_504.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -?,?,1317,1317,17,-2.1596 -ナ,な,275,275,287,-2.5224 -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_505.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_505.csv deleted file mode 100644 index ce52365..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_505.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_506.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_506.csv deleted file mode 100644 index 6e639a0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_506.csv +++ /dev/null @@ -1,30 +0,0 @@ -カ,か,359,359,468,-1.9789 -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -ト,と,150,150,282,-2.0125 -ネ,ね,279,279,47,-2.1699 -、,、,10,10,151,-1.2267 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イ,い,930,930,356,-2.0866 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ナ,な,275,275,287,-2.5224 -」,」,7,7,121,-2.0554 -タリ,たり,360,360,451,-2.5700 -キ,き,904,904,356,-2.5861 -?,?,1317,1317,17,-2.1596 -・,・,5,5,203,-2.7687 -オリ,おり,1197,1197,356,-2.6223 -シマウ,しまう,1253,1253,282,-2.7195 -ダ,だ,436,436,471,-2.7366 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_507.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_507.csv deleted file mode 100644 index fb7e004..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_507.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -カ,か,359,359,468,-1.9789 -」,」,7,7,121,-2.0554 -ト,と,164,164,282,-1.8068 -ハ,は,261,261,468,-1.3731 -デ,で,458,458,468,-1.9218 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,299,299,468,-2.0560 -ヲ,を,156,156,356,-1.4175 -・,・,5,5,203,-2.7687 -ニ,に,151,151,282,-1.3747 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -』,』,7,7,136,-3.5069 -ナンカ,なんか,2,2,17,-4.0239 -タチ,立ち,1285,1285,356,-5.2862 -…,…,5,5,184,-3.3301 -カズ,数,1285,1285,387,-5.3011 -ワ,わ,291,291,36,-2.7424 -スル,する,599,599,481,-1.9113 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -デ,で,149,149,468,-1.6148 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_508.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_508.csv deleted file mode 100644 index 33fcd63..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_508.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -、,、,10,10,151,-1.2267 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_509.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_509.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_509.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_51.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_51.csv deleted file mode 100644 index 41cbe5a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_51.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ナイ,ない,473,473,468,-1.8979 -シ,し,610,610,258,-1.5936 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -アリ,あり,788,788,481,-3.1265 -テル,てる,307,919,17,-4.3303 -ナリ,なり,788,788,471,-3.2643 -モ,も,262,262,468,-1.7239 -テ,て,307,930,356,-4.8756 -スル,する,599,599,481,-1.9113 -デス,です,460,460,17,-1.8655 -デキ,でき,625,625,481,-4.3005 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ネ,ね,279,279,47,-2.1699 -ナク,なく,481,481,468,-2.5033 -ミ,見,625,625,52,-4.5511 -テイル,ている,307,919,17,-5.6469 -ナクッ,なくっ,481,481,17,-2.7253 -デキル,できる,619,619,481,-4.0489 -テイ,てい,307,930,17,-5.8308 -サ,さ,605,605,441,-1.9359 -ヤル,やる,772,772,17,-5.2305 -イ,い,625,625,356,-4.9123 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -シゴト,仕事,1283,1283,290,-6.0556 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_510.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_510.csv deleted file mode 100644 index 1721a8b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_510.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -カ,か,359,359,468,-1.9789 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -・,・,5,5,203,-2.7687 -、,、,10,10,151,-1.2267 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_511.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_511.csv deleted file mode 100644 index 13569cf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_511.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -?,?,1317,1317,17,-2.1596 -カ,か,359,359,468,-1.9789 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -カラ,から,297,297,356,-2.3083 -」,」,7,7,121,-2.0554 -コト,こと,1310,1310,282,-2.6917 -・,・,5,5,203,-2.7687 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ノ,の,1310,1310,408,-2.7847 -モ,も,262,262,468,-1.7239 -シ,し,304,304,258,-2.5363 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ヨ,よ,288,288,17,-2.1474 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_512.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_512.csv deleted file mode 100644 index 4d37f60..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_512.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -カ,か,359,359,468,-1.9789 -シ,し,610,610,258,-1.5936 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -ケド,けど,301,301,17,-2.4058 -ワ,わ,291,291,36,-2.7424 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -コト,こと,1310,1310,282,-2.6917 -ナイ,ない,473,473,468,-1.8979 -カラ,から,297,297,356,-2.3083 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ヨ,よ,288,288,17,-2.1474 -!,!,1318,1318,244,-1.9828 -ノ,の,1310,1310,408,-2.7847 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ナ,な,275,275,287,-2.5224 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_513.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_513.csv deleted file mode 100644 index 66b0664..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_513.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -シ,し,304,304,258,-2.5363 -ガ,が,299,299,468,-2.0560 -カ,か,359,359,468,-1.9789 -」,」,7,7,121,-2.0554 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_514.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_514.csv deleted file mode 100644 index 6d56941..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_514.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -、,、,10,10,151,-1.2267 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -マデ,まで,355,355,143,-2.3294 -アリ,あり,409,409,249,-2.3509 -タイ,たい,444,444,17,-2.4250 -・,・,5,5,203,-2.7687 -ナク,なく,481,481,468,-2.5033 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_515.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_515.csv deleted file mode 100644 index f769e31..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_515.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ガ,が,299,299,468,-2.0560 -カ,か,359,359,468,-1.9789 -デシ,でし,466,466,17,-2.1485 -ヨ,よ,288,288,17,-2.1474 -ネ,ね,279,279,47,-2.1699 -、,、,10,10,151,-1.2267 -デ,で,308,308,468,-2.9431 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -・,・,5,5,203,-2.7687 -ト,と,363,363,282,-2.1096 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マシ,まし,499,499,17,-2.1355 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ジャ,じゃ,308,261,247,-3.4000 -シ,し,304,304,258,-2.5363 -?,?,1317,1317,17,-2.1596 -タリ,たり,360,360,451,-2.5700 -キ,き,904,904,356,-2.5861 -…,…,5,5,184,-3.3301 -ノデ,ので,316,316,48,-2.3278 -ソウ,そう,1301,1301,17,-2.6187 -オリ,おり,1197,1197,356,-2.6223 -ケド,けど,301,301,17,-2.4058 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_516.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_516.csv deleted file mode 100644 index 5c19b05..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_516.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ヤ,や,366,366,43,-2.1479 -ヲ,を,156,156,356,-1.4175 -ヤ,や,320,320,43,-3.8662 -ト,と,164,164,282,-1.8068 -ガ,が,148,148,468,-1.4621 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -カ,か,359,359,468,-1.9789 -ニ,に,151,151,282,-1.3747 -・,・,5,5,203,-2.7687 -デ,で,149,149,468,-1.6148 -デ,で,458,458,468,-1.9218 -』,』,7,7,136,-3.5069 -サン,さん,1302,1302,420,-2.7569 -ヨ,よ,288,288,17,-2.1474 -コト,こと,1310,1310,282,-2.6917 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -ナ,な,275,275,287,-2.5224 -シロ,しろ,608,608,437,-1.9456 -ノ,の,1310,1310,408,-2.7847 -テ,て,307,307,356,-1.5059 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_517.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_517.csv deleted file mode 100644 index 46b9f2e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_517.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -デ,で,458,458,468,-1.9218 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -。,。,8,8,61,-1.3115 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -セン,戦,1285,1285,178,-6.3044 -ダイジ,大事,1285,1285,66,-6.3275 -マト,的,1285,1285,169,-6.4148 -コト,こと,1310,1310,282,-2.6917 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_518.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_518.csv deleted file mode 100644 index e4a0de0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_518.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_519.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_519.csv deleted file mode 100644 index cbc89d2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_519.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -』,』,7,7,136,-3.5069 -、,、,10,10,151,-1.2267 -デス,です,460,460,17,-1.8655 -・,・,5,5,203,-2.7687 -ト,と,164,164,282,-1.8068 -】,】,7,7,244,-5.2511 - , ,9,9,44,-2.4705 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -”,”,7,7,461,-5.4174 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -…,…,5,5,184,-3.3301 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_52.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_52.csv deleted file mode 100644 index 10db4ff..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_52.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ト,と,363,363,282,-2.1096 -ト,と,164,164,282,-1.8068 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -ヨ,よ,288,288,17,-2.1474 -レロ,れろ,874,874,468,-2.2332 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_520.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_520.csv deleted file mode 100644 index b3bf16c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_520.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ヨウ,よう,1312,1312,169,-2.2533 -コト,こと,1310,1310,282,-2.6917 -、,、,10,10,151,-1.2267 -ノ,の,1310,1310,408,-2.7847 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -カ,か,359,359,468,-1.9789 -』,』,7,7,136,-3.5069 -ン,ん,1310,1310,437,-3.5653 -タメ,ため,1313,1313,282,-3.3063 -ワ,わ,291,291,36,-2.7424 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ヨ,よ,288,288,17,-2.1474 -モノ,もの,1310,1310,468,-3.9802 -ガ,が,299,299,468,-2.0560 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_521.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_521.csv deleted file mode 100644 index 1f3d3b2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_521.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_522.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_522.csv deleted file mode 100644 index 94f6cb4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_522.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_523.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_523.csv deleted file mode 100644 index 8bca6b2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_523.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -デ,で,458,458,468,-1.9218 -ガ,が,299,299,468,-2.0560 -ノ,の,368,368,408,-1.2458 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -ヲ,を,156,156,356,-1.4175 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -コト,こと,1310,1310,282,-2.6917 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,1310,1310,408,-2.7847 -」,」,7,7,121,-2.0554 -デ,で,308,308,468,-2.9431 -「,「,6,6,352,-2.0388 -デシ,でし,466,466,17,-2.1485 -タ,多,1285,1285,351,-4.9124 -ト,と,164,164,282,-1.8068 -フクミ,含み,1285,1285,258,-4.9821 -ジャ,じゃ,308,261,247,-3.4000 -トキ,時,1285,1285,282,-5.0461 -ン,ん,1310,1310,437,-3.5653 -デ,で,149,149,468,-1.6148 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_524.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_524.csv deleted file mode 100644 index eee609c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_524.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -デ,で,458,458,468,-1.9218 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -ガ,が,299,299,468,-2.0560 -ガ,が,148,148,468,-1.4621 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コト,こと,1310,1310,282,-2.6917 -モ,も,262,262,468,-1.7239 -ノ,の,1310,1310,408,-2.7847 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -、,、,10,10,151,-1.2267 -ヲ,を,156,156,356,-1.4175 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -デ,で,308,308,468,-2.9431 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ン,ん,1310,1310,437,-3.5653 -アソビ,遊び,1285,1285,290,-5.5478 -」,」,7,7,121,-2.0554 -メ,目,1285,1285,332,-5.6594 -ト,と,164,164,282,-1.8068 -ムラ,村,1285,1285,489,-5.7051 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_525.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_525.csv deleted file mode 100644 index a43f244..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_525.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -デ,で,458,458,468,-1.9218 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -ニ,に,151,151,282,-1.3747 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -『,『,6,6,322,-3.4104 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ノ,の,368,368,408,-1.2458 -アリ,あり,788,788,481,-3.1265 -デキ,でき,625,625,481,-4.3005 -メ,目,1285,1285,332,-5.6594 -』,』,7,7,136,-3.5069 -アル,ある,772,772,481,-2.9588 -ハ,は,261,261,468,-1.3731 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -ナリ,なり,788,788,471,-3.2643 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_526.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_526.csv deleted file mode 100644 index 239d8e2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_526.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -アル,ある,772,772,481,-2.9588 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ナル,なる,772,772,471,-3.0967 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アリ,あり,788,788,481,-3.1265 -アソビ,遊び,1285,1285,290,-5.5478 -ナリ,なり,788,788,471,-3.2643 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -デス,です,460,460,17,-1.8655 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_527.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_527.csv deleted file mode 100644 index 790f336..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_527.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ガ,が,299,299,468,-2.0560 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_528.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_528.csv deleted file mode 100644 index b2fcf63..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_528.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -バ,ば,318,318,282,-2.3431 -ド,ど,311,311,437,-3.7861 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ドモ,ども,313,313,495,-4.3036 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_529.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_529.csv deleted file mode 100644 index 85bf43a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_529.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ト,と,164,164,282,-1.8068 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -。,。,8,8,61,-1.3115 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_53.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_53.csv deleted file mode 100644 index dce6d1b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_53.csv +++ /dev/null @@ -1,30 +0,0 @@ -マシ,まし,501,501,17,-2.0043 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -マス,ます,491,491,17,-1.8643 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -アリ,あり,788,788,481,-3.1265 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ナリ,なり,788,788,471,-3.2643 -アソビ,遊び,1285,1285,290,-5.5478 -ノ,の,368,368,408,-1.2458 -メ,目,1285,1285,332,-5.6594 -。,。,8,8,61,-1.3115 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -タ,た,435,435,282,-1.4167 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_530.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_530.csv deleted file mode 100644 index 5f83880..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_530.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -』,』,7,7,136,-3.5069 -ト,と,164,164,282,-1.8068 -デス,です,460,460,17,-1.8655 -タ,た,435,435,282,-1.4167 -】,】,7,7,244,-5.2511 -、,、,10,10,151,-1.2267 -”,”,7,7,461,-5.4174 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヨ,よ,288,288,17,-2.1474 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ダ,だ,453,453,471,-1.9457 -モ,も,262,262,468,-1.7239 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -・,・,5,5,203,-2.7687 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_531.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_531.csv deleted file mode 100644 index bdc4e9d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_531.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -コト,こと,1310,1310,282,-2.6917 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,1310,1310,408,-2.7847 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ン,ん,1310,1310,437,-3.5653 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -モノ,もの,1310,1310,468,-3.9802 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -、,、,10,10,151,-1.2267 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -カ,か,359,359,468,-1.9789 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_532.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_532.csv deleted file mode 100644 index 91b7b85..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_532.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -コト,こと,1310,1310,282,-2.6917 -ハタラキ,働き,1285,1285,42,-5.8522 -ノ,の,1310,1310,408,-2.7847 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -セン,戦,1285,1285,178,-6.3044 -ダイジ,大事,1285,1285,66,-6.3275 -マト,的,1285,1285,169,-6.4148 -キ,機,1285,1285,413,-6.4405 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_533.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_533.csv deleted file mode 100644 index 28df702..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_533.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -レル,れる,870,870,468,-2.2380 -ン,ん,515,515,437,-2.4192 -デキ,でき,625,625,481,-4.3005 -ミ,見,625,625,52,-4.5511 -ノ,の,368,368,408,-1.2458 -イ,い,625,625,356,-4.9123 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ラレル,られる,870,870,471,-3.6838 -「,「,6,6,352,-2.0388 -ガ,が,148,148,468,-1.4621 -カンガエ,考え,625,625,52,-5.1086 -テ,て,307,307,356,-1.5059 -デ,出,625,625,249,-5.1376 -タ,た,435,435,282,-1.4167 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -オ,お,560,560,437,-3.5014 -ウケ,受け,625,625,258,-5.4817 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -タベ,食べ,625,625,276,-5.5939 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_534.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_534.csv deleted file mode 100644 index e6838fc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_534.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_535.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_535.csv deleted file mode 100644 index 9e07df7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_535.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_536.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_536.csv deleted file mode 100644 index 9ed2b06..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_536.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -』,』,7,7,136,-3.5069 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_537.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_537.csv deleted file mode 100644 index b707222..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_537.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_538.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_538.csv deleted file mode 100644 index 91b07b3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_538.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -ト,と,164,164,282,-1.8068 -デ,で,149,149,468,-1.6148 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ネ,ね,279,279,47,-2.1699 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_539.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_539.csv deleted file mode 100644 index 2184bc2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_539.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,458,458,468,-1.9218 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ト,と,164,164,282,-1.8068 -ノ,の,1310,1310,408,-2.7847 -ハ,は,261,261,468,-1.3731 -ナ,な,454,454,287,-1.8607 -」,」,7,7,121,-2.0554 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モノ,もの,1310,1310,468,-3.9802 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トイウ,という,173,173,468,-2.2416 -トキ,時,1285,1285,282,-5.0461 -デ,で,308,308,468,-2.9431 -ホウ,方,1310,1310,48,-4.5756 -デ,で,149,149,468,-1.6148 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -マス,ます,491,491,17,-1.8643 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ナイ,ない,473,473,468,-1.8979 -ミ,見,1285,1285,52,-5.3943 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_54.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_54.csv deleted file mode 100644 index fab102b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_54.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -サ,さ,1304,1304,441,-2.8267 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -ワ,わ,291,291,36,-2.7424 -ガ,が,148,148,468,-1.4621 -サン,さん,1302,1302,420,-2.7569 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -レ,れ,876,876,468,-2.0223 -カタ,方,1304,1304,48,-4.2521 -。,。,8,8,61,-1.3115 -ヲ,を,156,156,356,-1.4175 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ソウ,そう,1301,1301,17,-2.6187 -」,」,7,7,121,-2.0554 -シ,し,610,610,258,-1.5936 -ヤ,や,366,366,43,-2.1479 -モ,も,262,262,468,-1.7239 -・,・,5,5,203,-2.7687 -ヤ,や,503,503,43,-3.1411 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -タ,多,1285,1285,351,-4.9124 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -フクミ,含み,1285,1285,258,-4.9821 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_540.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_540.csv deleted file mode 100644 index 8961989..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_540.csv +++ /dev/null @@ -1,30 +0,0 @@ -ズ,ず,487,487,282,-2.5580 -ザル,ざる,485,485,282,-3.6544 -ズ,ず,486,486,282,-2.9232 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -タ,多,1285,1285,351,-4.9124 -テ,て,307,307,356,-1.5059 -フクミ,含み,1285,1285,258,-4.9821 -シ,し,610,610,258,-1.5936 -トキ,時,1285,1285,282,-5.0461 -デ,で,149,149,468,-1.6148 -ズニ,ずに,487,151,17,-7.8897 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -タチ,立ち,1285,1285,356,-5.2862 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -カズ,数,1285,1285,387,-5.3011 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_541.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_541.csv deleted file mode 100644 index 56fb1ec..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_541.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -モ,も,262,262,468,-1.7239 -シ,私,1285,1285,17,-4.2442 -「,「,6,6,352,-2.0388 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -『,『,6,6,322,-3.4104 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -コト,こと,1310,1310,282,-2.6917 -ハタラキ,働き,1285,1285,42,-5.8522 -ノ,の,1310,1310,408,-2.7847 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_542.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_542.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_542.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_543.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_543.csv deleted file mode 100644 index 9c54ab1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_543.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,458,458,468,-1.9218 -カ,か,359,359,468,-1.9789 -デ,で,149,149,468,-1.6148 -?,?,1317,1317,17,-2.1596 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -シ,し,610,610,258,-1.5936 -デ,で,308,308,468,-2.9431 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -。,。,8,8,61,-1.3115 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_544.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_544.csv deleted file mode 100644 index e4d5025..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_544.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モ,も,262,262,468,-1.7239 -ン,ん,1310,1310,437,-3.5653 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -」,」,7,7,121,-2.0554 -トキ,時,1285,1285,282,-5.0461 -モノ,もの,1310,1310,468,-3.9802 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -デス,です,460,460,17,-1.8655 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -テ,て,307,307,356,-1.5059 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ノ,の,368,368,408,-1.2458 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_545.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_545.csv deleted file mode 100644 index 2260279..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_545.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_546.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_546.csv deleted file mode 100644 index be9f31b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_546.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -ニ,に,151,151,282,-1.3747 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -マス,ます,491,491,17,-1.8643 -ヲ,を,156,156,356,-1.4175 -ハ,は,261,261,468,-1.3731 -ガ,が,148,148,468,-1.4621 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -デス,です,460,460,17,-1.8655 -・,・,5,5,203,-2.7687 -デ,で,458,458,468,-1.9218 -タイ,たい,444,444,17,-2.4250 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -ダ,だ,453,453,471,-1.9457 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -モ,も,262,262,468,-1.7239 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_547.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_547.csv deleted file mode 100644 index b14d813..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_547.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -ヨウ,よう,1312,1312,169,-2.2533 -サン,さん,1302,1302,420,-2.7569 -ヲ,を,156,156,356,-1.4175 -ノ,の,368,368,408,-1.2458 -ン,ん,1310,1310,437,-3.5653 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ハ,は,261,261,468,-1.3731 -トキ,時,1285,1285,282,-5.0461 -モ,も,262,262,468,-1.7239 -モノ,もの,1310,1310,468,-3.9802 -ト,と,164,164,282,-1.8068 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -タメ,ため,1313,1313,282,-3.3063 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -。,。,8,8,61,-1.3115 -アソビ,遊び,1285,1285,290,-5.5478 -デ,で,458,458,468,-1.9218 -メ,目,1285,1285,332,-5.6594 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_548.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_548.csv deleted file mode 100644 index eb65802..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_548.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_549.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_549.csv deleted file mode 100644 index 68bc7a9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_549.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -ノ,の,368,368,408,-1.2458 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -コト,こと,1310,1310,282,-2.6917 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -・,・,5,5,203,-2.7687 -レ,れ,876,876,468,-2.0223 -ノ,の,1310,1310,408,-2.7847 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_55.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_55.csv deleted file mode 100644 index 0d12edb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_55.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ホウ,方,1310,1310,48,-4.5756 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -コト,事,1310,1310,282,-4.9393 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_550.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_550.csv deleted file mode 100644 index 6dadb89..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_550.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ニ,に,151,151,282,-1.3747 -ン,ん,1310,1310,437,-3.5653 -ハ,は,261,261,468,-1.3731 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -」,」,7,7,121,-2.0554 -ナカ,中,1285,1285,282,-4.2761 -モノ,もの,1310,1310,468,-3.9802 -シ,し,610,610,258,-1.5936 -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -ヨウ,よう,1312,1312,169,-2.2533 -ヲ,を,156,156,356,-1.4175 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -サン,さん,1302,1302,420,-2.7569 -フクミ,含み,1285,1285,258,-4.9821 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ホウ,方,1310,1310,48,-4.5756 -ナイ,ない,473,473,468,-1.8979 -・,・,5,5,203,-2.7687 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -トキ,時,1285,1285,282,-5.0461 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_551.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_551.csv deleted file mode 100644 index 2d10dd8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_551.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -ノ,の,368,368,408,-1.2458 -バ,ば,318,318,282,-2.3431 -ニ,に,151,151,282,-1.3747 -。,。,8,8,61,-1.3115 -デ,で,458,458,468,-1.9218 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -」,」,7,7,121,-2.0554 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ト,と,164,164,282,-1.8068 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_552.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_552.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_552.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_553.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_553.csv deleted file mode 100644 index 2936a2a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_553.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_554.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_554.csv deleted file mode 100644 index 5c8c99b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_554.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -デス,です,460,460,17,-1.8655 -バ,ば,318,318,282,-2.3431 -ダ,だ,453,453,471,-1.9457 -タ,た,435,435,282,-1.4167 -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -・,・,5,5,203,-2.7687 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_555.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_555.csv deleted file mode 100644 index cdea817..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_555.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -デ,で,149,149,468,-1.6148 -コノ,この,1315,1315,468,-3.0084 -タ,多,1285,1285,351,-4.9124 -ソノ,その,1315,1315,468,-3.1000 -ワタシ,私,1306,1306,17,-3.6243 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -ナニ,何,1306,1306,468,-4.3760 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -『,『,6,6,322,-3.4104 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_556.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_556.csv deleted file mode 100644 index 2d62c4e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_556.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -「,「,6,6,352,-2.0388 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -コノ,この,1315,1315,468,-3.0084 -アソビ,遊び,1285,1285,290,-5.5478 -ソノ,その,1315,1315,468,-3.1000 -『,『,6,6,322,-3.4104 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -オ,お,560,560,437,-3.5014 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_557.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_557.csv deleted file mode 100644 index 16b10e1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_557.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -マス,ます,491,491,17,-1.8643 -タ,多,1285,1285,351,-4.9124 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -フクミ,含み,1285,1285,258,-4.9821 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -トキ,時,1285,1285,282,-5.0461 -レ,れ,876,876,468,-2.0223 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_558.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_558.csv deleted file mode 100644 index 3ff7294..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_558.csv +++ /dev/null @@ -1,30 +0,0 @@ -イチ,一,1295,1295,134,-3.3833 -ニ,二,1295,1295,134,-4.2425 -マン,万,1295,1295,354,-4.7177 -スウ,数,1295,1295,387,-4.7847 -サン,三,1295,1295,134,-4.8146 -ナン,何,1295,1295,468,-4.9790 -ジュウ,十,1295,1295,395,-5.2142 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヨン,四,1295,1295,134,-5.7295 -カッコ,(),1288,1288,335,-6.9143 -カノウセイ,可能性,1288,1288,468,-6.9478 -ゴ,五,1295,1295,134,-5.8112 -ムスメ,娘,1288,1288,97,-7.0018 -シガツ,4月,1288,1288,195,-7.1473 -セン,千,1295,1295,387,-5.9864 -サンガツ,3月,1288,1288,195,-7.1995 -・,・,1295,1295,203,-6.0206 -フタリ,2人,1288,1288,25,-7.2452 -マイナスイチ,-1,1288,1288,501,-7.2714 -ヒャク,百,1295,1295,395,-6.1133 -ニセンナナネン,2007年,1288,1288,237,-7.2951 -ジャナクテ,じゃなくて,1288,1288,420,-7.3281 -ニセンロクネン,2006年,1288,1288,237,-7.3366 -ニセンハチネン,2008年,1288,1288,237,-7.3490 -ツイタチ,1日,1288,1288,317,-7.3547 -オメガ,ω,1288,1288,447,-7.3838 -ヒトリ,1人,1288,1288,334,-7.3926 -ジュウガツ,10月,1288,1288,195,-7.4396 -ニセンゴネン,2005年,1288,1288,237,-7.4635 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_559.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_559.csv deleted file mode 100644 index 61a1c50..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_559.csv +++ /dev/null @@ -1,30 +0,0 @@ -デキ,でき,625,625,481,-4.3005 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ミ,見,625,625,52,-4.5511 -アリ,あり,788,788,481,-3.1265 -アル,ある,772,772,481,-2.9588 -ナリ,なり,788,788,471,-3.2643 -イ,い,625,625,356,-4.9123 -ナル,なる,772,772,471,-3.0967 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -カンガエ,考え,625,625,52,-5.1086 -トキ,時,1285,1285,282,-5.0461 -デ,出,625,625,249,-5.1376 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ウケ,受け,625,625,258,-5.4817 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -タ,た,435,435,282,-1.4167 -オ,お,560,560,437,-3.5014 -デキル,できる,619,619,481,-4.0489 -タベ,食べ,625,625,276,-5.5939 -アソビ,遊び,1285,1285,290,-5.5478 -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_56.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_56.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_56.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_560.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_560.csv deleted file mode 100644 index ab6f90d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_560.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -サマ,様,1285,1285,66,-5.9406 -ツカイ,使い,1285,1285,379,-6.1093 -、,、,10,10,151,-1.2267 -・,・,5,5,203,-2.7687 -セン,戦,1285,1285,178,-6.3044 -ダイジ,大事,1285,1285,66,-6.3275 -マト,的,1285,1285,169,-6.4148 -キ,機,1285,1285,413,-6.4405 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_561.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_561.csv deleted file mode 100644 index 60a9698..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_561.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -タリ,たり,360,360,451,-2.5700 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ト,と,164,164,282,-1.8068 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_562.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_562.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_562.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_563.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_563.csv deleted file mode 100644 index 777f6bb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_563.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -カ,か,359,359,468,-1.9789 -ヨ,よ,288,288,17,-2.1474 -モノ,もの,1310,1310,468,-3.9802 -カラ,から,297,297,356,-2.3083 -、,、,10,10,151,-1.2267 -ヨウ,よう,1312,1312,169,-2.2533 -ガ,が,148,148,468,-1.4621 -ホウ,方,1310,1310,48,-4.5756 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ノデ,ので,316,316,48,-2.3278 -マデ,まで,355,355,143,-2.3294 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -コト,事,1310,1310,282,-4.9393 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_564.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_564.csv deleted file mode 100644 index b3edbcc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_564.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ネ,ね,279,279,47,-2.1699 -アリガトウ,ありがとう,3,3,244,-3.6808 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -。,。,8,8,61,-1.3115 -ナ,な,275,275,287,-2.5224 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ダ,だ,453,453,471,-1.9457 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -コト,こと,1310,1310,282,-2.6917 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ノ,の,1310,1310,408,-2.7847 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_565.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_565.csv deleted file mode 100644 index 1d8f6f3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_565.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -」,」,7,7,121,-2.0554 -タ,た,435,435,282,-1.4167 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -シ,し,610,610,258,-1.5936 -…,…,5,5,184,-3.3301 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -』,』,7,7,136,-3.5069 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ガ,が,299,299,468,-2.0560 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_566.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_566.csv deleted file mode 100644 index 9a9fea4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_566.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ン,ん,515,515,437,-2.4192 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_567.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_567.csv deleted file mode 100644 index f788915..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_567.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -タ,た,435,435,282,-1.4167 -レ,れ,876,876,468,-2.0223 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -レル,れる,870,870,468,-2.2380 -ズ,ず,487,487,282,-2.5580 -ラレ,られ,876,876,356,-3.7371 -ン,ん,515,515,437,-2.4192 -ナイ,ない,482,482,468,-2.1746 -セ,せ,876,876,258,-4.2710 -ウ,う,506,506,133,-2.2404 -ナイヒト,ない人,473,1285,501,-5.9561 -バ,ば,318,318,282,-2.3431 -デス,です,460,460,17,-1.8655 -ツ,つ,370,370,437,-3.3939 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ラレル,られる,870,870,471,-3.6838 -ジ,じ,507,507,331,-3.5475 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナ,な,468,468,287,-2.1830 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_568.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_568.csv deleted file mode 100644 index aa392f7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_568.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_569.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_569.csv deleted file mode 100644 index 8d45fd5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_569.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,し,304,304,258,-2.5363 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_57.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_57.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_57.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_570.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_570.csv deleted file mode 100644 index 47edec5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_570.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -マシ,まし,501,501,17,-2.0043 -マス,ます,491,491,17,-1.8643 -テル,てる,307,919,17,-4.3303 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -ヲ,を,156,156,356,-1.4175 -ノ,の,368,368,408,-1.2458 -ソウ,そう,1301,1301,17,-2.6187 -テモ,ても,307,262,17,-6.4044 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テイタ,ていた,307,435,17,-6.4827 -サ,さ,1304,1304,441,-2.8267 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タガ,たが,435,299,17,-6.8350 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -チャウ,ちゃう,307,1253,17,-6.9038 -タイ,たい,444,444,17,-2.4250 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_571.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_571.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_571.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_572.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_572.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_572.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_573.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_573.csv deleted file mode 100644 index ed59690..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_573.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -カ,か,359,359,468,-1.9789 -モノ,もの,1310,1310,468,-3.9802 -ヨウ,よう,1312,1312,169,-2.2533 -マデ,まで,355,355,143,-2.3294 -カラ,から,297,297,356,-2.3083 -ホウ,方,1310,1310,48,-4.5756 -ヨ,よ,288,288,17,-2.1474 -、,、,10,10,151,-1.2267 -ノデ,ので,316,316,48,-2.3278 -コト,事,1310,1310,282,-4.9393 -タメ,ため,1313,1313,282,-3.3063 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ン,ん,515,515,437,-2.4192 -」,」,7,7,121,-2.0554 -ナ,な,275,275,287,-2.5224 -ッテ,って,167,167,17,-2.3603 -カモ,かも,330,330,252,-2.7352 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -メ,目,1310,1310,332,-5.6594 -ワケ,わけ,1310,1310,268,-5.7101 -シ,し,304,304,258,-2.5363 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_574.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_574.csv deleted file mode 100644 index 7860fb7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_574.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,275,275,287,-2.5224 -ノ,の,368,368,408,-1.2458 -ナァ,なぁ,275,275,420,-4.2969 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ノ,の,282,282,408,-2.8118 -デ,で,308,308,468,-2.9431 -ナア,なあ,275,275,17,-5.2398 -ジャ,じゃ,308,261,247,-3.4000 -ン,ん,1310,1310,437,-3.5653 -ト,と,164,164,282,-1.8068 -テ,て,307,307,356,-1.5059 -モノ,もの,1310,1310,468,-3.9802 -シ,し,304,304,258,-2.5363 -カラ,から,297,297,356,-2.3083 -ホウ,方,1310,1310,48,-4.5756 -ヨ,よ,288,288,17,-2.1474 -、,、,10,10,151,-1.2267 -ケド,けど,301,301,17,-2.4058 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -コト,事,1310,1310,282,-4.9393 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,308,930,468,-4.9557 -ヨウ,よう,1312,1312,169,-2.2533 -シ,し,610,610,258,-1.5936 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_575.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_575.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_575.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_576.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_576.csv deleted file mode 100644 index 6d5137e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_576.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ウカ,うか,506,359,17,-6.6916 -、,、,10,10,151,-1.2267 -ウト,うと,506,164,17,-7.3953 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ウネ,うね,506,279,17,-8.1285 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_577.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_577.csv deleted file mode 100644 index 44ddac3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_577.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ナイ,ない,482,482,468,-2.1746 -ズ,ず,487,487,282,-2.5580 -レル,れる,870,870,468,-2.2380 -ナイヒト,ない人,473,1285,501,-5.9561 -レ,れ,876,876,468,-2.0223 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ラレル,られる,870,870,471,-3.6838 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ン,ん,515,515,437,-2.4192 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイノデ,ないので,473,316,17,-7.8177 -ナイシ,ないし,473,304,17,-7.8919 -ナイヨウ,ないよう,473,1312,17,-7.9497 -セル,せる,870,870,43,-4.3284 -ラレ,られ,876,876,356,-3.7371 -ナイコト,ないこと,473,1310,17,-8.1142 -ナインダ,ないんだ,473,453,17,-8.2222 -ナイデスカ,ないですか,473,359,17,-8.2266 -ナイヨ,ないよ,473,288,17,-8.2684 -ナイノ,ないの,473,282,17,-8.2774 -ナイデショウ,ないでしょう,473,506,17,-8.4052 -ナイカナ,ないかな,473,275,17,-8.4854 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_578.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_578.csv deleted file mode 100644 index 76eebed..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_578.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ヨ,よ,288,288,17,-2.1474 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_579.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_579.csv deleted file mode 100644 index a9df642..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_579.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -?,?,1317,1317,17,-2.1596 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_58.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_58.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_58.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_580.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_580.csv deleted file mode 100644 index b7f86e2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_580.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -マシ,まし,501,501,17,-2.0043 -マス,ます,491,491,17,-1.8643 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タリ,たり,360,360,451,-2.5700 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -タガ,たが,435,299,17,-6.8350 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -タン,たん,435,1310,17,-6.8934 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_581.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_581.csv deleted file mode 100644 index 9809333..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_581.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ド,ど,311,311,437,-3.7861 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_582.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_582.csv deleted file mode 100644 index d97a3df..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_582.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -イイ,いい,37,37,17,-2.6886 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_583.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_583.csv deleted file mode 100644 index 0b0bf42..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_583.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,164,164,282,-1.8068 -モノ,もの,1310,1310,468,-3.9802 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -ガ,が,299,299,468,-2.0560 -ヨウ,よう,1312,1312,169,-2.2533 -ホウ,方,1310,1310,48,-4.5756 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ト,と,309,309,282,-2.2641 -コト,事,1310,1310,282,-4.9393 -」,」,7,7,121,-2.0554 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ケド,けど,301,301,17,-2.4058 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -タメ,ため,1313,1313,282,-3.3063 -カ,か,359,359,468,-1.9789 -アソビ,遊び,1285,1285,290,-5.5478 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_584.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_584.csv deleted file mode 100644 index 8cb9d4f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_584.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ン,ん,515,515,437,-2.4192 -タ,た,435,435,282,-1.4167 -」,」,7,7,121,-2.0554 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -ヨ,よ,288,288,17,-2.1474 -コト,こと,1310,1310,282,-2.6917 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -ノ,の,1310,1310,408,-2.7847 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_585.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_585.csv deleted file mode 100644 index fc5ed7e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_585.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -・,・,5,5,203,-2.7687 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_586.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_586.csv deleted file mode 100644 index f92a57e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_586.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ン,ん,515,515,437,-2.4192 -ラレル,られる,870,870,471,-3.6838 -ズ,ず,487,487,282,-2.5580 -セル,せる,870,870,43,-4.3284 -ノ,の,368,368,408,-1.2458 -ガ,が,148,148,468,-1.4621 -イ,い,930,930,356,-2.0866 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -ニ,に,151,151,282,-1.3747 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナイ,ない,473,473,468,-1.8979 -ヲ,を,156,156,356,-1.4175 -・,・,5,5,203,-2.7687 -コト,こと,1310,1310,282,-2.6917 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -ノ,の,1310,1310,408,-2.7847 -サセ,させ,876,876,282,-6.9554 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -モ,も,262,262,468,-1.7239 -サン,さん,1302,1302,420,-2.7569 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_587.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_587.csv deleted file mode 100644 index 19a39a6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_587.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ナイ,ない,482,482,468,-2.1746 -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -イル,いる,919,919,468,-1.9884 -イ,い,930,930,356,-2.0866 -マス,ます,491,491,17,-1.8643 -ン,ん,515,515,437,-2.4192 -ナイヒト,ない人,473,1285,501,-5.9561 -レ,れ,876,876,468,-2.0223 -ナガラ,ながら,314,314,282,-2.7301 -テル,てる,307,919,17,-4.3303 -ナ,な,468,468,287,-2.1830 -ミ,み,930,930,52,-4.5938 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -テ,て,307,930,356,-4.8756 -スギ,すぎ,930,930,268,-5.1245 -ミル,みる,919,919,471,-5.2297 -」,」,7,7,121,-2.0554 -ヲ,を,156,156,356,-1.4175 -タイ,たい,444,444,17,-2.4250 -クレル,くれる,919,919,17,-5.3621 -スギル,すぎる,919,919,48,-5.4433 -ナイデス,ないです,473,460,17,-7.2367 -デ,で,458,458,468,-1.9218 -ナイカ,ないか,473,359,17,-7.2908 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_588.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_588.csv deleted file mode 100644 index 81562ec..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_588.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヨ,よ,288,288,17,-2.1474 -タ,た,435,435,282,-1.4167 -サン,さん,1302,1302,420,-2.7569 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_589.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_589.csv deleted file mode 100644 index f8adf28..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_589.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_59.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_59.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_59.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_590.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_590.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_590.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_591.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_591.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_591.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_592.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_592.csv deleted file mode 100644 index 7932dc7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_592.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ニ,に,151,151,282,-1.3747 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,299,299,468,-2.0560 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ホウ,方,1310,1310,48,-4.5756 -」,」,7,7,121,-2.0554 -ヨウ,よう,1312,1312,169,-2.2533 -コト,事,1310,1310,282,-4.9393 -タメ,ため,1313,1313,282,-3.3063 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ト,と,309,309,282,-2.2641 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -トイウ,という,173,173,468,-2.2416 -アソビ,遊び,1285,1285,290,-5.5478 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_593.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_593.csv deleted file mode 100644 index 31ca58c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_593.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ベキ,べき,539,539,468,-2.9960 -ニ,に,151,151,282,-1.3747 -』,』,7,7,136,-3.5069 -ノ,の,368,368,408,-1.2458 -ト,と,164,164,282,-1.8068 -イ,い,930,930,356,-2.0866 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -】,】,7,7,244,-5.2511 -デ,で,149,149,468,-1.6148 -ベシ,べし,538,538,495,-3.3088 -カ,か,359,359,468,-1.9789 -”,”,7,7,461,-5.4174 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_594.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_594.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_594.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_595.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_595.csv deleted file mode 100644 index 6b5a98e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_595.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ン,ん,515,515,437,-2.4192 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -ズ,ず,487,487,282,-2.5580 -セル,せる,870,870,43,-4.3284 -イ,い,930,930,356,-2.0866 -レテ,れて,876,307,17,-6.2446 -ヌ,ぬ,484,484,17,-3.3915 -レタ,れた,876,435,17,-6.3748 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -ザル,ざる,485,485,282,-3.6544 -レテイ,れてい,876,930,17,-7.5959 -ラレテ,られて,876,307,17,-7.7370 -ラレタ,られた,876,435,17,-7.8755 -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -レテイタ,れていた,876,435,17,-8.0815 -ノ,の,368,368,408,-1.2458 -レテル,れてる,876,307,17,-8.0917 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -レマス,れます,876,491,17,-8.2381 -ヲ,を,156,156,356,-1.4175 -サセル,させる,870,870,438,-6.9686 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_596.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_596.csv deleted file mode 100644 index 3625eb4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_596.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ト,と,164,164,282,-1.8068 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -』,』,7,7,136,-3.5069 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_597.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_597.csv deleted file mode 100644 index d7c5dab..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_597.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -バイイ,ばいい,318,131,17,-8.3265 -バイイ,ばいい,318,37,17,-8.8957 -ハ,は,261,261,468,-1.3731 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -バイイノ,ばいいの,318,1310,17,-9.4603 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -バトオモイ,ばと思い,318,832,17,-10.0809 -バイイノカ,ばいいのか,318,359,17,-10.0964 -バイイ,ばいい,318,19,17,-10.1547 -バイイカ,ばいいか,318,359,17,-10.1567 -バイイノニ,ばいいのに,318,317,17,-10.1854 -バトオモイマス,ばと思います,318,491,17,-10.1899 -バダイジョウブ,ば大丈夫,318,1287,17,-10.2066 -バヨカッタ,ば良かった,318,435,17,-10.2350 -バイインダ,ばいいんだ,318,453,17,-10.2552 -バナリ,ばなり,318,1200,17,-10.3847 -バイイデスカ,ばいいですか,318,359,17,-10.3963 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_598.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_598.csv deleted file mode 100644 index f8f9a2a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_598.csv +++ /dev/null @@ -1,30 +0,0 @@ -イイ,いい,37,37,17,-2.6886 -、,、,10,10,151,-1.2267 -イイ,いい,131,131,17,-2.9419 -ヨイ,良い,114,114,48,-3.5243 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヨイ,よい,114,114,48,-4.2982 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -「,「,6,6,352,-2.0388 -ナンカ,なんか,2,2,17,-4.0239 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -フクミ,含み,1285,1285,258,-4.9821 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_599.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_599.csv deleted file mode 100644 index 2477be1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_599.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -モノ,もの,1310,1310,468,-3.9802 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -ヨウ,よう,1312,1312,169,-2.2533 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -タメ,ため,1313,1313,282,-3.3063 -ホウ,方,1310,1310,48,-4.5756 -ガ,が,299,299,468,-2.0560 -ニ,に,151,151,282,-1.3747 -カ,か,359,359,468,-1.9789 -コト,事,1310,1310,282,-4.9393 -ナド,など,344,344,442,-2.2760 -タ,多,1285,1285,351,-4.9124 -トイウ,という,173,173,468,-2.2416 -フクミ,含み,1285,1285,258,-4.9821 -「,「,6,6,352,-2.0388 -トキ,時,1285,1285,282,-5.0461 -」,」,7,7,121,-2.0554 -トキ,時,1313,1313,282,-4.1345 -ナカ,中,1313,1313,282,-4.2761 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -モ,も,262,262,468,-1.7239 -キリ,切り,1285,1285,60,-5.3631 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_6.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_6.csv deleted file mode 100644 index 98ea076..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_6.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ワタシ,私,1306,1306,17,-3.6243 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 -ケン,県,1285,1285,349,-5.7723 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -ハタラキ,働き,1285,1285,42,-5.8522 -ゲン,現,1285,1285,309,-5.9095 -コノ,この,1315,1315,468,-3.0084 -サマ,様,1285,1285,66,-5.9406 -ソノ,その,1315,1315,468,-3.1000 -ツカイ,使い,1285,1285,379,-6.1093 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_60.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_60.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_60.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_600.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_600.csv deleted file mode 100644 index ac71dc3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_600.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,275,275,287,-2.5224 -ノ,の,368,368,408,-1.2458 -ノ,の,282,282,408,-2.8118 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ナァ,なぁ,275,275,420,-4.2969 -ン,ん,1310,1310,437,-3.5653 -ナア,なあ,275,275,17,-5.2398 -モノ,もの,1310,1310,468,-3.9802 -シャ,者,1298,1298,42,-4.9865 -マエ,前,1298,1298,282,-5.2420 -タチ,たち,1298,1298,252,-5.3419 -キリ,切り,1298,1298,60,-5.3631 -ホウ,方,1310,1310,48,-4.5756 -トウ,等,1298,1298,486,-5.4565 -ラ,ら,1298,1298,344,-5.5475 -メ,目,1298,1298,332,-5.5838 -ナイ,内,1298,1298,397,-5.6065 -ヨウ,用,1298,1298,319,-5.6263 -ネン,ねん,281,281,331,-3.6938 -キョウ,強,1298,1298,351,-5.7181 -オ,お,560,560,437,-3.5014 -ユキ,行き,1298,1298,271,-5.7579 -ケイ,系,1298,1298,340,-5.7712 -ガワ,側,1298,1298,468,-5.7751 -コト,事,1310,1310,282,-4.9393 -セイ,性,1298,1298,351,-5.8347 -カ,家,1298,1298,97,-5.8385 -ガタ,型,1298,1298,213,-5.8624 -ゲン,現,1298,1298,309,-5.9095 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_601.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_601.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_601.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_602.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_602.csv deleted file mode 100644 index 4f46ecf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_602.csv +++ /dev/null @@ -1,30 +0,0 @@ -ベキ,べき,539,539,468,-2.9960 -ヨ,よ,288,288,17,-2.1474 -。,。,8,8,61,-1.3115 -ベク,べく,541,541,282,-3.2624 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -ケド,けど,301,301,17,-2.4058 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,275,275,287,-2.5224 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -ネエ,ねえ,20,20,468,-2.2298 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ウ,う,506,506,133,-2.2404 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_603.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_603.csv deleted file mode 100644 index e205038..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_603.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ヲ,を,156,156,356,-1.4175 -デ,で,149,149,468,-1.6148 -ウカ,うか,506,359,17,-6.6916 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -・,・,5,5,203,-2.7687 -カ,か,359,359,468,-1.9789 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -、,、,10,10,151,-1.2267 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_604.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_604.csv deleted file mode 100644 index 9743b21..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_604.csv +++ /dev/null @@ -1,30 +0,0 @@ -ズ,ず,487,487,282,-2.5580 -ン,ん,515,515,437,-2.4192 -ザル,ざる,485,485,282,-3.6544 -シ,し,610,610,258,-1.5936 -タ,た,435,435,282,-1.4167 -ト,と,164,164,282,-1.8068 -ヤ,や,503,503,43,-3.1411 -ナイ,ない,473,473,468,-1.8979 -ヌ,ぬ,484,484,17,-3.3915 -ノ,の,368,368,408,-1.2458 -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ズニ,ずに,487,151,17,-7.8897 -ニ,に,151,151,282,-1.3747 -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -・,・,5,5,203,-2.7687 -ナ,な,468,468,287,-2.1830 -ナ,な,275,275,287,-2.5224 -バ,ば,318,318,282,-2.3431 -ナ,な,454,454,287,-1.8607 -デ,で,149,149,468,-1.6148 -ガ,が,148,148,468,-1.4621 -シ,私,1285,1285,17,-4.2442 -…,…,5,5,184,-3.3301 -ナカ,中,1285,1285,282,-4.2761 -シロ,しろ,608,608,437,-1.9456 -ハ,は,261,261,468,-1.3731 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_605.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_605.csv deleted file mode 100644 index 4d351b6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_605.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -セル,せる,870,870,43,-4.3284 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -レテイ,れてい,876,930,17,-7.5959 -ラレテ,られて,876,307,17,-7.7370 -ラレタ,られた,876,435,17,-7.8755 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -レマス,れます,876,491,17,-8.2381 -サセル,させる,870,870,438,-6.9686 -レマシ,れまし,876,501,17,-8.3111 -レマシタ,れました,876,435,17,-8.3380 -ラレテイル,られている,876,919,17,-8.5687 -セテイタダキ,せていただき,876,981,17,-8.6086 -レテイマス,れています,876,491,17,-8.6313 -セタ,せた,876,435,17,-8.6753 -レテオリ,れており,876,1197,17,-8.8431 -レテモ,れても,876,262,17,-8.8496 -セテイタダキ,せて頂き,876,981,17,-8.9141 -レタノ,れたの,876,1310,17,-8.9654 -レタコト,れたこと,876,1310,17,-9.0684 -セテイタダキマス,せていただきます,876,491,17,-9.0939 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_606.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_606.csv deleted file mode 100644 index b4b14d5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_606.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナイ,ない,482,482,468,-2.1746 -ナクッ,なくっ,481,481,17,-2.7253 -ナイヒト,ない人,473,1285,501,-5.9561 -ナ,な,468,468,287,-2.1830 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ヌ,ぬ,484,484,17,-3.3915 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ズ,ず,487,487,282,-2.5580 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイノデ,ないので,473,316,17,-7.8177 -ナイシ,ないし,473,304,17,-7.8919 -ナイヨウ,ないよう,473,1312,17,-7.9497 -ナキ,なき,474,474,495,-2.1849 -ナイコト,ないこと,473,1310,17,-8.1142 -ナインダ,ないんだ,473,453,17,-8.2222 -ナイデスカ,ないですか,473,359,17,-8.2266 -ナイヨ,ないよ,473,288,17,-8.2684 -ナイノ,ないの,473,282,17,-8.2774 -ナイデショウ,ないでしょう,473,506,17,-8.4052 -ナイカナ,ないかな,473,275,17,-8.4854 -ン,ん,515,515,437,-2.4192 -ナイカト,ないかと,473,164,17,-8.5228 -ナインデス,ないんです,473,460,17,-8.5765 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_607.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_607.csv deleted file mode 100644 index 966e30d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_607.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_608.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_608.csv deleted file mode 100644 index 52ceb60..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_608.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ヨ,よ,288,288,17,-2.1474 -ト,と,164,164,282,-1.8068 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -」,」,7,7,121,-2.0554 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -ネエ,ねえ,20,20,468,-2.2298 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ス,す,602,602,481,-2.2579 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_609.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_609.csv deleted file mode 100644 index 03024ab..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_609.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -ノ,の,368,368,408,-1.2458 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 -ヤ,や,366,366,43,-2.1479 -』,』,7,7,136,-3.5069 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_61.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_61.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_61.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_610.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_610.csv deleted file mode 100644 index 889c80f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_610.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -テル,てる,307,919,17,-4.3303 -マス,ます,491,491,17,-1.8643 -テ,て,307,930,356,-4.8756 -マシ,まし,501,501,17,-2.0043 -テイル,ている,307,919,17,-5.6469 -タイ,たい,444,444,17,-2.4250 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -タリ,たり,360,360,451,-2.5700 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -イ,い,930,930,356,-2.0866 -チャウ,ちゃう,307,1253,17,-6.9038 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -タガ,たが,435,299,17,-6.8350 -テミ,てみ,307,930,17,-7.2116 -ナガラ,ながら,314,314,282,-2.7301 -タン,たん,435,1310,17,-6.8934 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_611.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_611.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_611.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_612.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_612.csv deleted file mode 100644 index b47e566..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_612.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_613.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_613.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_613.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_614.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_614.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_614.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_615.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_615.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_615.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_616.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_616.csv deleted file mode 100644 index 5c2da48..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_616.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_617.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_617.csv deleted file mode 100644 index 48fa2ff..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_617.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -ン,ん,515,515,437,-2.4192 -バイイ,ばいい,318,131,17,-8.3265 -ナ,な,275,275,287,-2.5224 -ハ,は,261,261,468,-1.3731 -ナ,な,12,12,468,-2.1172 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -タリ,たり,360,360,451,-2.5700 -ネ,ね,279,279,47,-2.1699 -バイイノ,ばいいの,318,1310,17,-9.4603 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -テル,てる,307,919,17,-4.3303 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -バトオモイ,ばと思い,318,832,17,-10.0809 -バイイノカ,ばいいのか,318,359,17,-10.0964 -バイイ,ばいい,318,19,17,-10.1547 -バイイカ,ばいいか,318,359,17,-10.1567 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_618.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_618.csv deleted file mode 100644 index 52c55bf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_618.csv +++ /dev/null @@ -1,30 +0,0 @@ -イイ,いい,37,37,17,-2.6886 -、,、,10,10,151,-1.2267 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -イイ,いい,131,131,17,-2.9419 -ワタシ,私,1306,1306,17,-3.6243 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -ヨイ,良い,114,114,48,-3.5243 -ナンカ,なんか,2,2,17,-4.0239 -ナニ,何,1306,1306,468,-4.3760 -・,・,5,5,203,-2.7687 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -エ,え,2,2,99,-4.2861 -トキ,時,1285,1285,282,-5.0461 -オエエ,多え,19,19,481,-4.9407 -オオイ,多い,19,19,481,-4.9407 -ヨイ,よい,114,114,48,-4.2982 -ヨイ,良い,19,19,48,-5.0931 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ヤル,やる,772,772,17,-5.2305 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -クレエ,くれえ,19,19,48,-5.2394 -ア,あ,2,2,437,-4.6692 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_619.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_619.csv deleted file mode 100644 index a6beaa2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_619.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -ヨウ,よう,1312,1312,169,-2.2533 -ト,と,164,164,282,-1.8068 -モノ,もの,1310,1310,468,-3.9802 -カ,か,359,359,468,-1.9789 -、,、,10,10,151,-1.2267 -ホウ,方,1310,1310,48,-4.5756 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タメ,ため,1313,1313,282,-3.3063 -コト,事,1310,1310,282,-4.9393 -ガ,が,299,299,468,-2.0560 -」,」,7,7,121,-2.0554 -カラ,から,297,297,356,-2.3083 -ニ,に,151,151,282,-1.3747 -タ,多,1285,1285,351,-4.9124 -トイウ,という,173,173,468,-2.2416 -ノデ,ので,316,316,48,-2.3278 -ヨ,よ,288,288,17,-2.1474 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ダケ,だけ,338,338,468,-2.4590 -メ,目,1310,1310,332,-5.6594 -トキ,時,1313,1313,282,-4.1345 -ワケ,わけ,1310,1310,268,-5.7101 -タチ,立ち,1285,1285,356,-5.2862 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_62.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_62.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_62.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_620.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_620.csv deleted file mode 100644 index dcf45f3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_620.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,275,275,287,-2.5224 -ノ,の,368,368,408,-1.2458 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -。,。,8,8,61,-1.3115 -デ,で,308,308,468,-2.9431 -ン,ん,1310,1310,437,-3.5653 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -ジャ,じゃ,308,261,247,-3.4000 -ナァ,なぁ,275,275,420,-4.2969 -モノ,もの,1310,1310,468,-3.9802 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -サン,さん,1302,1302,420,-2.7569 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ケド,けど,301,301,17,-2.4058 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_621.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_621.csv deleted file mode 100644 index 535f3a3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_621.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ウカ,うか,506,359,17,-6.6916 -ウト,うと,506,164,17,-7.3953 -タ,た,435,435,282,-1.4167 -ウネ,うね,506,279,17,-8.1285 -ン,ん,515,515,437,-2.4192 -ウトシ,うとし,506,610,17,-8.3143 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ウト,うと,506,150,17,-8.5291 -。,。,8,8,61,-1.3115 -ウナ,うな,506,275,17,-8.6345 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ウガ,うが,506,299,17,-8.6743 -ヲ,を,156,156,356,-1.4175 -ウカナ,うかな,506,275,17,-8.7244 -ウトスル,うとする,506,599,17,-8.7261 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ウケド,うけど,506,301,17,-8.9179 -モ,も,262,262,468,-1.7239 -ウトオモッテ,うと思って,506,307,17,-9.0501 -ト,と,164,164,282,-1.8068 -ウトオモイ,うと思い,506,832,17,-9.0952 -ウトシテ,うとして,506,307,17,-9.1055 -ウシ,うし,506,304,17,-9.1437 -スル,する,599,599,481,-1.9113 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_622.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_622.csv deleted file mode 100644 index 98a1576..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_622.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -ナク,なく,481,481,468,-2.5033 -ズ,ず,487,487,282,-2.5580 -ラレル,られる,870,870,471,-3.6838 -セ,せ,876,876,258,-4.2710 -ナクッ,なくっ,481,481,17,-2.7253 -セル,せる,870,870,43,-4.3284 -ナイヒト,ない人,473,1285,501,-5.9561 -ナイ,ない,482,482,468,-2.1746 -ン,ん,515,515,437,-2.4192 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナイデス,ないです,473,460,17,-7.2367 -サセ,させ,876,876,282,-6.9554 -ナイカ,ないか,473,359,17,-7.2908 -レテイル,れている,876,919,17,-7.1109 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -セテ,せて,876,307,17,-7.2476 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイノデ,ないので,473,316,17,-7.8177 -ナ,な,468,468,287,-2.1830 -サセル,させる,870,870,438,-6.9686 -レテイ,れてい,876,930,17,-7.5959 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_623.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_623.csv deleted file mode 100644 index 853dbf7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_623.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ヨ,よ,288,288,17,-2.1474 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -ト,と,164,164,282,-1.8068 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -、,、,10,10,151,-1.2267 -ナイ,ない,482,482,468,-2.1746 -ナ,な,468,468,287,-2.1830 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -ネエ,ねえ,20,20,468,-2.2298 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ス,す,602,602,481,-2.2579 -」,」,7,7,121,-2.0554 -ノデ,ので,316,316,48,-2.3278 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_624.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_624.csv deleted file mode 100644 index 1db22d4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_624.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -、,、,10,10,151,-1.2267 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_625.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_625.csv deleted file mode 100644 index c612c38..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_625.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -マシ,まし,501,501,17,-2.0043 -テイル,ている,307,919,17,-5.6469 -タイ,たい,444,444,17,-2.4250 -テイ,てい,307,930,17,-5.8308 -ニ,に,151,151,282,-1.3747 -イ,い,930,930,356,-2.0866 -ソウ,そう,1301,1301,17,-2.6187 -テモ,ても,307,262,17,-6.4044 -タリ,たり,360,360,451,-2.5700 -テイタ,ていた,307,435,17,-6.4827 -ノ,の,368,368,408,-1.2458 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -シ,し,610,610,258,-1.5936 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -ナガラ,ながら,314,314,282,-2.7301 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -ガ,が,148,148,468,-1.4621 -タノ,たの,435,1310,17,-6.5362 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_626.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_626.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_626.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_627.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_627.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_627.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_628.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_628.csv deleted file mode 100644 index e18eb65..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_628.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -。,。,8,8,61,-1.3115 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -ホウ,方,1310,1310,48,-4.5756 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ヨウ,よう,1312,1312,169,-2.2533 -トキ,時,1285,1285,282,-5.0461 -コト,事,1310,1310,282,-4.9393 -タチ,立ち,1285,1285,356,-5.2862 -カ,か,359,359,468,-1.9789 -カラ,から,297,297,356,-2.3083 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -メ,目,1285,1285,332,-5.6594 -ト,と,309,309,282,-2.2641 -ノデ,ので,316,316,48,-2.3278 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_629.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_629.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_629.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_63.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_63.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_63.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_630.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_630.csv deleted file mode 100644 index f058497..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_630.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ズ,ず,487,487,282,-2.5580 -ン,ん,515,515,437,-2.4192 -ナ,な,468,468,287,-2.1830 -ナイヒト,ない人,473,1285,501,-5.9561 -レ,れ,876,876,468,-2.0223 -ナイ,ない,482,482,468,-2.1746 -ヌ,ぬ,484,484,17,-3.3915 -ナイデス,ないです,473,460,17,-7.2367 -マイ,まい,513,513,437,-4.0304 -ヘン,へん,512,512,437,-4.0467 -ナイカ,ないか,473,359,17,-7.2908 -ナカッタ,なかった,480,435,17,-6.9392 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ナイン,ないん,473,1310,17,-7.6099 -ガ,が,148,148,468,-1.4621 -ナイト,ないと,473,164,17,-7.6415 -ネー,ねー,469,469,420,-4.6236 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ネェ,ねぇ,469,469,420,-4.6298 -ネエ,ねえ,469,469,17,-4.6324 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_631.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_631.csv deleted file mode 100644 index 57e84be..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_631.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_632.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_632.csv deleted file mode 100644 index 4b36abf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_632.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -ト,と,164,164,282,-1.8068 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_633.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_633.csv deleted file mode 100644 index 1205ee6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_633.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -「,「,6,6,352,-2.0388 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_634.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_634.csv deleted file mode 100644 index 8e6aed8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_634.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_635.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_635.csv deleted file mode 100644 index ce67013..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_635.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タリ,たり,360,360,451,-2.5700 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -」,」,7,7,121,-2.0554 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ネ,ね,279,279,47,-2.1699 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_636.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_636.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_636.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_637.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_637.csv deleted file mode 100644 index bc47728..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_637.csv +++ /dev/null @@ -1,30 +0,0 @@ -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -テ,て,307,307,356,-1.5059 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -サ,さ,1304,1304,441,-2.8267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -サン,さん,1302,1302,420,-2.7569 -ガ,が,299,299,468,-2.0560 -ン,ん,1310,1310,437,-3.5653 -レ,れ,876,876,468,-2.0223 -タ,多,1285,1285,351,-4.9124 -、,、,10,10,151,-1.2267 -フクミ,含み,1285,1285,258,-4.9821 -」,」,7,7,121,-2.0554 -トキ,時,1285,1285,282,-5.0461 -ット,っと,163,163,80,-3.8182 -モノ,もの,1310,1310,468,-3.9802 -ヲ,を,156,156,356,-1.4175 -ト,と,164,164,282,-1.8068 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_638.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_638.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_638.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_639.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_639.csv deleted file mode 100644 index 4299001..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_639.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_64.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_64.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_64.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_640.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_640.csv deleted file mode 100644 index e00c9f5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_640.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -コト,こと,1310,1310,282,-2.6917 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_641.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_641.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_641.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_642.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_642.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_642.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_643.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_643.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_643.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_644.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_644.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_644.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_645.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_645.csv deleted file mode 100644 index de9823e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_645.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -』,』,7,7,136,-3.5069 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_646.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_646.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_646.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_647.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_647.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_647.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_648.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_648.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_648.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_649.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_649.csv deleted file mode 100644 index 2b01b64..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_649.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_65.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_65.csv deleted file mode 100644 index 2eac42b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_65.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -タ,多,1285,1285,351,-4.9124 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -フクミ,含み,1285,1285,258,-4.9821 -ガ,が,148,148,468,-1.4621 -トキ,時,1285,1285,282,-5.0461 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ト,と,164,164,282,-1.8068 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_650.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_650.csv deleted file mode 100644 index d7b9f8c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_650.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -モ,も,262,262,468,-1.7239 -カ,か,359,359,468,-1.9789 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -アル,ある,772,772,481,-2.9588 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シ,私,1285,1285,17,-4.2442 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ナカ,中,1285,1285,282,-4.2761 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ナル,なる,772,772,471,-3.0967 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_651.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_651.csv deleted file mode 100644 index 5d10056..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_651.csv +++ /dev/null @@ -1,30 +0,0 @@ -カ,か,359,359,468,-1.9789 -」,」,7,7,121,-2.0554 -ノ,の,368,368,408,-1.2458 -モ,も,262,262,468,-1.7239 -』,』,7,7,136,-3.5069 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -「,「,6,6,352,-2.0388 -タ,多,1285,1285,351,-4.9124 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コト,こと,1310,1310,282,-2.6917 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ノ,の,1310,1310,408,-2.7847 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_652.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_652.csv deleted file mode 100644 index 88d8613..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_652.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -サン,さん,1302,1302,420,-2.7569 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_653.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_653.csv deleted file mode 100644 index 10b6c87..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_653.csv +++ /dev/null @@ -1,30 +0,0 @@ -ン,ん,515,515,437,-2.4192 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ズ,ず,487,487,282,-2.5580 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ヌ,ぬ,484,484,17,-3.3915 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_654.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_654.csv deleted file mode 100644 index 9c69f33..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_654.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_655.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_655.csv deleted file mode 100644 index 1ab6f93..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_655.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -イ,い,930,930,356,-2.0866 -モ,も,262,262,468,-1.7239 -タ,た,435,435,282,-1.4167 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -サ,さ,1304,1304,441,-2.8267 -デ,で,149,149,468,-1.6148 -「,「,6,6,352,-2.0388 -・,・,5,5,203,-2.7687 -イル,いる,919,919,468,-1.9884 -シャ,者,1298,1298,42,-4.9865 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_656.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_656.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_656.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_657.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_657.csv deleted file mode 100644 index 2c70bf5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_657.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_658.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_658.csv deleted file mode 100644 index 593682f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_658.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_659.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_659.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_659.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_66.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_66.csv deleted file mode 100644 index 314cb20..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_66.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ノ,の,368,368,408,-1.2458 -ケド,けど,301,301,17,-2.4058 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ン,ん,1310,1310,437,-3.5653 -ノデ,ので,316,316,48,-2.3278 -ナ,な,275,275,287,-2.5224 -カラ,から,147,147,356,-1.9960 -ヨ,よ,288,288,17,-2.1474 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -シ,し,304,304,258,-2.5363 -モノ,もの,1310,1310,468,-3.9802 -?,?,1317,1317,17,-2.1596 -タ,多,1285,1285,351,-4.9124 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -フクミ,含み,1285,1285,258,-4.9821 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -トキ,時,1285,1285,282,-5.0461 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ネ,ね,279,279,47,-2.1699 -ト,と,150,150,282,-2.0125 -カラ,から,297,297,356,-2.3083 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_660.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_660.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_660.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_661.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_661.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_661.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_662.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_662.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_662.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_663.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_663.csv deleted file mode 100644 index 6774b72..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_663.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_664.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_664.csv deleted file mode 100644 index 593682f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_664.csv +++ /dev/null @@ -1,30 +0,0 @@ -ニ,に,151,151,282,-1.3747 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_665.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_665.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_665.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_666.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_666.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_666.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_667.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_667.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_667.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_668.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_668.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_668.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_669.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_669.csv deleted file mode 100644 index 4e25611..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_669.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -デ,で,308,308,468,-2.9431 -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ジャ,じゃ,308,261,247,-3.4000 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_67.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_67.csv deleted file mode 100644 index 44712c8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_67.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -デス,です,460,460,17,-1.8655 -ト,と,164,164,282,-1.8068 -タ,多,1285,1285,351,-4.9124 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -フクミ,含み,1285,1285,258,-4.9821 -テ,て,307,307,356,-1.5059 -トキ,時,1285,1285,282,-5.0461 -」,」,7,7,121,-2.0554 -シ,し,610,610,258,-1.5936 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_670.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_670.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_670.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_671.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_671.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_671.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_672.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_672.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_672.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_673.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_673.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_673.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_674.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_674.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_674.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_675.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_675.csv deleted file mode 100644 index 09a066e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_675.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -デ,で,308,308,468,-2.9431 -ジャ,じゃ,308,261,247,-3.4000 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -ル,る,547,547,495,-3.7188 -マス,ます,491,491,17,-1.8643 -デ,で,308,930,468,-4.9557 -ズ,ず,487,487,282,-2.5580 -デル,でる,308,919,471,-5.5439 -バイイ,ばいい,318,131,17,-8.3265 -ネエ,ねえ,20,20,468,-2.2298 -マシ,まし,501,501,17,-2.0043 -ダリ,だり,308,1203,60,-6.3455 -バイイ,ばいい,318,37,17,-8.8957 -ナイ,ない,473,473,468,-1.8979 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -テル,てる,307,919,17,-4.3303 -ナイ,ない,482,482,468,-2.1746 -バイイノ,ばいいの,318,1310,17,-9.4603 -テ,て,307,930,356,-4.8756 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -ジャナイ,じゃない,308,473,17,-7.1727 -ン,ん,515,515,437,-2.4192 -ナイ,ない,20,20,468,-3.4755 -レ,れ,876,876,468,-2.0223 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_676.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_676.csv deleted file mode 100644 index bdf79a0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_676.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ン,ん,515,515,437,-2.4192 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_677.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_677.csv deleted file mode 100644 index f5b0870..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_677.csv +++ /dev/null @@ -1,30 +0,0 @@ -ワ,わ,291,291,36,-2.7424 -ナイ,ない,473,473,468,-1.8979 -イイ,いい,37,37,17,-2.6886 -ン,ん,515,515,437,-2.4192 -、,、,10,10,151,-1.2267 -ネエ,ねえ,20,20,468,-2.2298 -ノ,の,368,368,408,-1.2458 -・,・,5,5,203,-2.7687 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ネ,ね,279,279,47,-2.1699 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -イイ,いい,131,131,17,-2.9419 -モ,も,262,262,468,-1.7239 -」,」,7,7,121,-2.0554 -ヨイ,良い,114,114,48,-3.5243 -ナ,な,454,454,287,-1.8607 -…,…,5,5,184,-3.3301 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -シ,私,1285,1285,17,-4.2442 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ナカ,中,1285,1285,282,-4.2761 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_678.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_678.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_678.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_679.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_679.csv deleted file mode 100644 index 8827317..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_679.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -、,、,10,10,151,-1.2267 -モノ,もの,1310,1310,468,-3.9802 -ヨウ,よう,1312,1312,169,-2.2533 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -ホウ,方,1310,1310,48,-4.5756 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -カ,か,359,359,468,-1.9789 -タメ,ため,1313,1313,282,-3.3063 -コト,事,1310,1310,282,-4.9393 -タ,多,1285,1285,351,-4.9124 -ニ,に,151,151,282,-1.3747 -ノデ,ので,316,316,48,-2.3278 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -「,「,6,6,352,-2.0388 -トイウ,という,173,173,468,-2.2416 -ガ,が,299,299,468,-2.0560 -ヨ,よ,288,288,17,-2.1474 -マデ,まで,355,355,143,-2.3294 -タチ,立ち,1285,1285,356,-5.2862 -カラ,から,297,297,356,-2.3083 -カズ,数,1285,1285,387,-5.3011 -ダケ,だけ,338,338,468,-2.4590 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_68.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_68.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_68.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_680.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_680.csv deleted file mode 100644 index c221a8c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_680.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ン,ん,515,515,437,-2.4192 -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ネエ,ねえ,20,20,468,-2.2298 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_681.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_681.csv deleted file mode 100644 index e021a30..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_681.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ン,ん,515,515,437,-2.4192 -ト,と,164,164,282,-1.8068 -サン,さん,1302,1302,420,-2.7569 -カ,か,359,359,468,-1.9789 -ダ,だ,453,453,471,-1.9457 -ウカ,うか,506,359,17,-6.6916 -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -」,」,7,7,121,-2.0554 -ニ,に,151,151,282,-1.3747 -ハ,は,261,261,468,-1.3731 -・,・,5,5,203,-2.7687 -イ,い,930,930,356,-2.0866 -デ,で,149,149,468,-1.6148 -ウト,うと,506,164,17,-7.3953 -モ,も,262,262,468,-1.7239 -チャン,ちゃん,1302,1302,51,-4.1693 -ガ,が,148,148,468,-1.4621 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ヨ,よ,288,288,17,-2.1474 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -デス,です,460,460,17,-1.8655 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_682.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_682.csv deleted file mode 100644 index 184fb3b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_682.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_683.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_683.csv deleted file mode 100644 index 59bf126..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_683.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ナイ,ない,473,473,468,-1.8979 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ン,ん,515,515,437,-2.4192 -ズ,ず,487,487,282,-2.5580 -ラレル,られる,870,870,471,-3.6838 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -セル,せる,870,870,43,-4.3284 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナイ,ない,482,482,468,-2.1746 -サセ,させ,876,876,282,-6.9554 -ナイヒト,ない人,473,1285,501,-5.9561 -、,、,10,10,151,-1.2267 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -レテイ,れてい,876,930,17,-7.5959 -ナ,な,468,468,287,-2.1830 -ラレテ,られて,876,307,17,-7.7370 -イ,い,930,930,356,-2.0866 -ラレタ,られた,876,435,17,-7.8755 -タ,た,435,435,282,-1.4167 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -レマス,れます,876,491,17,-8.2381 -ナイデス,ないです,473,460,17,-7.2367 -レマシ,れまし,876,501,17,-8.3111 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_684.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_684.csv deleted file mode 100644 index 9c2628f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_684.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_685.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_685.csv deleted file mode 100644 index b0e1d54..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_685.csv +++ /dev/null @@ -1,30 +0,0 @@ -シ,し,610,610,258,-1.5936 -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -」,」,7,7,121,-2.0554 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,164,164,282,-1.8068 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_686.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_686.csv deleted file mode 100644 index 324fdbf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_686.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_687.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_687.csv deleted file mode 100644 index 744b041..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_687.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タリ,たり,360,360,451,-2.5700 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -タノ,たの,435,1310,17,-6.5362 -テキタ,てきた,307,435,17,-7.2992 -タヒト,た人,435,1285,17,-6.5473 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -テクレル,てくれる,307,933,17,-7.5487 -テイク,ていく,307,992,17,-7.5930 -タガ,たが,435,299,17,-6.8350 -テシマイ,てしまい,307,1273,17,-7.6492 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_688.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_688.csv deleted file mode 100644 index 5c63c01..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_688.csv +++ /dev/null @@ -1,30 +0,0 @@ -ダ,だ,436,436,471,-2.7366 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_689.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_689.csv deleted file mode 100644 index d1a43f3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_689.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -イ,い,930,930,356,-2.0866 -ソウ,そう,1301,1301,17,-2.6187 -シ,し,610,610,258,-1.5936 -ニ,に,151,151,282,-1.3747 -ナガラ,ながら,314,314,282,-2.7301 -イル,いる,919,919,468,-1.9884 -ヲ,を,156,156,356,-1.4175 -ノ,の,368,368,408,-1.2458 -サ,さ,1304,1304,441,-2.8267 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -タク,たく,451,451,17,-3.0166 -ハ,は,261,261,468,-1.3731 -タクッ,たくっ,451,451,17,-3.2814 -ヤスイ,やすい,113,113,48,-3.4181 -モ,も,262,262,468,-1.7239 -ミ,み,930,930,52,-4.5938 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -テ,て,307,307,356,-1.5059 -「,「,6,6,352,-2.0388 -。,。,8,8,61,-1.3115 -マシタ,ました,501,435,17,-5.7646 -スギ,すぎ,930,930,268,-5.1245 -カタ,方,1304,1304,48,-4.2521 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_69.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_69.csv deleted file mode 100644 index edd1bc2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_69.csv +++ /dev/null @@ -1,30 +0,0 @@ -サン,さん,1302,1302,420,-2.7569 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -チャン,ちゃん,1302,1302,51,-4.1693 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ゴ,後,1305,1305,282,-3.3643 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -クン,くん,1302,1302,244,-4.6195 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ン,ん,1310,1310,437,-3.5653 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_690.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_690.csv deleted file mode 100644 index 55546b0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_690.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_691.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_691.csv deleted file mode 100644 index dc6a773..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_691.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -タ,た,435,435,282,-1.4167 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_692.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_692.csv deleted file mode 100644 index 1af7f24..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_692.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ッテ,って,167,167,17,-2.3603 -ニ,に,151,151,282,-1.3747 -ナ,な,12,12,468,-2.1172 -ン,ん,515,515,437,-2.4192 -バイイ,ばいい,318,131,17,-8.3265 -ノ,の,368,368,408,-1.2458 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -トカ,とか,364,364,17,-2.5396 -バイイノ,ばいいの,318,1310,17,-9.4603 -ハ,は,261,261,468,-1.3731 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -タリ,たり,360,360,451,-2.5700 -デ,で,308,308,468,-2.9431 -ナド,など,344,344,442,-2.2760 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -ガ,が,148,148,468,-1.4621 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -バトオモイ,ばと思い,318,832,17,-10.0809 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_693.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_693.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_693.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_694.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_694.csv deleted file mode 100644 index 4839d13..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_694.csv +++ /dev/null @@ -1,30 +0,0 @@ -イイ,いい,37,37,17,-2.6886 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ン,ん,515,515,437,-2.4192 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ワ,わ,291,291,36,-2.7424 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_695.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_695.csv deleted file mode 100644 index f1f1696..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_695.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ト,と,164,164,282,-1.8068 -カ,か,359,359,468,-1.9789 -ヨ,よ,288,288,17,-2.1474 -ホウ,方,1310,1310,48,-4.5756 -」,」,7,7,121,-2.0554 -カラ,から,297,297,356,-2.3083 -ト,と,309,309,282,-2.2641 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -コト,事,1310,1310,282,-4.9393 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -タメ,ため,1313,1313,282,-3.3063 -ガ,が,148,148,468,-1.4621 -ワ,わ,291,291,36,-2.7424 -ノデ,ので,316,316,48,-2.3278 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ニ,に,151,151,282,-1.3747 -ダケ,だけ,338,338,468,-2.4590 -モ,も,262,262,468,-1.7239 -ナ,な,275,275,287,-2.5224 -シ,私,1285,1285,17,-4.2442 -ナ,な,454,454,287,-1.8607 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_696.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_696.csv deleted file mode 100644 index 7ce26fb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_696.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -。,。,8,8,61,-1.3115 -モノ,もの,1310,1310,468,-3.9802 -カ,か,359,359,468,-1.9789 -ト,と,164,164,282,-1.8068 -ホウ,方,1310,1310,48,-4.5756 -ヨ,よ,288,288,17,-2.1474 -カラ,から,297,297,356,-2.3083 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -コト,事,1310,1310,282,-4.9393 -、,、,10,10,151,-1.2267 -ヨウ,よう,1312,1312,169,-2.2533 -タメ,ため,1313,1313,282,-3.3063 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -ノデ,ので,316,316,48,-2.3278 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ワ,わ,291,291,36,-2.7424 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_697.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_697.csv deleted file mode 100644 index 1b0c63b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_697.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_698.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_698.csv deleted file mode 100644 index 59a835e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_698.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ノ,の,368,368,408,-1.2458 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -。,。,8,8,61,-1.3115 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_699.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_699.csv deleted file mode 100644 index 5617bfc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_699.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ナイ,ない,473,473,468,-1.8979 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -ナイ,ない,482,482,468,-2.1746 -セ,せ,876,876,258,-4.2710 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ラレル,られる,870,870,471,-3.6838 -ン,ん,515,515,437,-2.4192 -ズ,ず,487,487,282,-2.5580 -セル,せる,870,870,43,-4.3284 -サ,さ,605,605,441,-1.9359 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -レテ,れて,876,307,17,-6.2446 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -レタ,れた,876,435,17,-6.3748 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_7.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_7.csv deleted file mode 100644 index cb5585a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_7.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,164,164,282,-1.8068 -ノ,の,368,368,408,-1.2458 -ヲ,を,156,156,356,-1.4175 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -ハ,は,261,261,468,-1.3731 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -「,「,6,6,352,-2.0388 -トイウ,という,173,173,468,-2.2416 -。,。,8,8,61,-1.3115 -ッテ,って,167,167,17,-2.3603 -ナド,など,344,344,442,-2.2760 -トシテ,として,179,179,356,-2.2226 -『,『,6,6,322,-3.4104 -デ,で,458,458,468,-1.9218 -ヤ,や,366,366,43,-2.1479 -モ,も,262,262,468,-1.7239 -カラ,から,147,147,356,-1.9960 -デス,です,460,460,17,-1.8655 -ダ,だ,453,453,471,-1.9457 -トカ,とか,364,364,17,-2.5396 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,454,454,287,-1.8607 -・,・,5,5,203,-2.7687 -ト,と,363,363,282,-2.1096 -シ,し,610,610,258,-1.5936 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_70.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_70.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_70.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_700.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_700.csv deleted file mode 100644 index bfef5b3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_700.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ズ,ず,487,487,282,-2.5580 -ン,ん,515,515,437,-2.4192 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ナイヒト,ない人,473,1285,501,-5.9561 -ナ,な,468,468,287,-2.1830 -ラレル,られる,870,870,471,-3.6838 -ナイ,ない,482,482,468,-2.1746 -セル,せる,870,870,43,-4.3284 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナキ,なき,474,474,495,-2.1849 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイノデ,ないので,473,316,17,-7.8177 -ナイシ,ないし,473,304,17,-7.8919 -レテ,れて,876,307,17,-6.2446 -ナイヨウ,ないよう,473,1312,17,-7.9497 -レタ,れた,876,435,17,-6.3748 -ナイコト,ないこと,473,1310,17,-8.1142 -ナインダ,ないんだ,473,453,17,-8.2222 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_701.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_701.csv deleted file mode 100644 index 6ee6dba..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_701.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -ソウ,そう,1301,1301,17,-2.6187 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_702.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_702.csv deleted file mode 100644 index bfbb013..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_702.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -ヨ,よ,288,288,17,-2.1474 -ト,と,164,164,282,-1.8068 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_703.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_703.csv deleted file mode 100644 index d50027e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_703.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タリ,たり,360,360,451,-2.5700 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -テクレル,てくれる,307,933,17,-7.5487 -テイク,ていく,307,992,17,-7.5930 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_704.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_704.csv deleted file mode 100644 index 14a3585..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_704.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -テクレル,てくれる,307,933,17,-7.5487 -タガ,たが,435,299,17,-6.8350 -テイク,ていく,307,992,17,-7.5930 -タン,たん,435,1310,17,-6.8934 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_705.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_705.csv deleted file mode 100644 index 46a8596..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_705.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -タイ,たい,444,444,17,-2.4250 -、,、,10,10,151,-1.2267 -ソウ,そう,1301,1301,17,-2.6187 -ニ,に,151,151,282,-1.3747 -マシ,まし,501,501,17,-2.0043 -ハ,は,261,261,468,-1.3731 -タク,たく,451,451,17,-3.0166 -テ,て,307,307,356,-1.5059 -タクッ,たくっ,451,451,17,-3.2814 -ガ,が,148,148,468,-1.4621 -サ,さ,1304,1304,441,-2.8267 -デス,です,460,460,17,-1.8655 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -タ,た,439,439,282,-2.7177 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -タイヒト,たい人,444,1285,17,-6.3754 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -テキ,的,1299,1299,169,-2.4842 -ト,と,164,164,282,-1.8068 -ヤスイ,やすい,113,113,48,-3.4181 -ナ,な,275,275,287,-2.5224 -ナ,な,454,454,287,-1.8607 -マスガ,ますが,491,299,17,-7.0677 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_706.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_706.csv deleted file mode 100644 index d2428bb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_706.csv +++ /dev/null @@ -1,30 +0,0 @@ -タイ,たい,444,444,17,-2.4250 -マス,ます,491,491,17,-1.8643 -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -タク,たく,451,451,17,-3.0166 -タクッ,たくっ,451,451,17,-3.2814 -ソウ,そう,1301,1301,17,-2.6187 -イ,い,930,930,356,-2.0866 -タ,た,439,439,282,-2.7177 -タイヒト,たい人,444,1285,17,-6.3754 -テ,て,307,307,356,-1.5059 -ヤスイ,やすい,113,113,48,-3.4181 -サ,さ,1304,1304,441,-2.8267 -マシタ,ました,501,435,17,-5.7646 -テキ,的,1299,1299,169,-2.4842 -シ,私,1285,1285,17,-4.2442 -イル,いる,919,919,468,-1.9884 -ナカ,中,1285,1285,282,-4.2761 -タ,た,435,435,282,-1.4167 -マスガ,ますが,491,299,17,-7.0677 -ナ,な,275,275,287,-2.5224 -ニクイ,にくい,113,113,48,-4.5700 -「,「,6,6,352,-2.0388 -タイデス,たいです,444,460,17,-7.8752 -ナガラ,ながら,314,314,282,-2.7301 -タ,多,1285,1285,351,-4.9124 -マスヨ,ますよ,491,288,17,-7.3568 -タイト,たいと,444,164,17,-7.9701 -ナサイ,なさい,1237,1237,17,-3.6578 -シャ,者,1298,1298,42,-4.9865 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_707.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_707.csv deleted file mode 100644 index eb65802..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_707.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_708.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_708.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_708.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_709.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_709.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_709.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_71.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_71.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_71.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_710.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_710.csv deleted file mode 100644 index 57f7619..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_710.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_711.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_711.csv deleted file mode 100644 index d20de39..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_711.csv +++ /dev/null @@ -1,30 +0,0 @@ -マデ,まで,355,355,143,-2.3294 -シ,私,1285,1285,17,-4.2442 -コト,こと,1310,1310,282,-2.6917 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,1310,1310,408,-2.7847 -タ,多,1285,1285,351,-4.9124 -、,、,10,10,151,-1.2267 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ン,ん,1310,1310,437,-3.5653 -デ,で,149,149,468,-1.6148 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -」,」,7,7,121,-2.0554 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -アソビ,遊び,1285,1285,290,-5.5478 -モノ,もの,1310,1310,468,-3.9802 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_712.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_712.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_712.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_713.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_713.csv deleted file mode 100644 index ad32c75..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_713.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,164,164,282,-1.8068 -ノ,の,368,368,408,-1.2458 -サン,さん,1302,1302,420,-2.7569 -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -ト,と,363,363,282,-2.1096 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -トカ,とか,364,364,17,-2.5396 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ガ,が,148,148,468,-1.4621 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_714.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_714.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_714.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_715.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_715.csv deleted file mode 100644 index 89ab84f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_715.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ナイ,ない,473,473,468,-1.8979 -ズ,ず,487,487,282,-2.5580 -レル,れる,870,870,468,-2.2380 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ラレル,られる,870,870,471,-3.6838 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナイヒト,ない人,473,1285,501,-5.9561 -モ,も,262,262,468,-1.7239 -ヌ,ぬ,484,484,17,-3.3915 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナクテ,なくて,481,307,17,-7.3048 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_716.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_716.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_716.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_717.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_717.csv deleted file mode 100644 index 2c70bf5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_717.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_718.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_718.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_718.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_719.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_719.csv deleted file mode 100644 index b56fdae..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_719.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -」,」,7,7,121,-2.0554 -ノ,の,368,368,408,-1.2458 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -テル,てる,307,919,17,-4.3303 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_72.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_72.csv deleted file mode 100644 index beeb99b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_72.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -カ,か,359,359,468,-1.9789 -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -サン,さん,1302,1302,420,-2.7569 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -テル,てる,307,919,17,-4.3303 -モ,も,262,262,468,-1.7239 -タイ,たい,444,444,17,-2.4250 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_720.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_720.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_720.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_721.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_721.csv deleted file mode 100644 index 241bc68..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_721.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -ナイ,ない,473,473,468,-1.8979 -タ,た,435,435,282,-1.4167 -デ,で,308,308,468,-2.9431 -ル,る,547,547,495,-3.7188 -マス,ます,491,491,17,-1.8643 -ジャ,じゃ,308,261,247,-3.4000 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -バイイ,ばいい,318,131,17,-8.3265 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ル,る,549,549,495,-3.8586 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,308,930,468,-4.9557 -テル,てる,307,919,17,-4.3303 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -バイイ,ばいい,318,37,17,-8.8957 -ト,と,164,164,282,-1.8068 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_722.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_722.csv deleted file mode 100644 index 9a83d7b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_722.csv +++ /dev/null @@ -1,30 +0,0 @@ -ン,ん,515,515,437,-2.4192 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_723.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_723.csv deleted file mode 100644 index 82b729b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_723.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -タメ,ため,1313,1313,282,-3.3063 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -モノ,もの,1310,1310,468,-3.9802 -ヨウ,よう,1312,1312,169,-2.2533 -トキ,時,1313,1313,282,-4.1345 -」,」,7,7,121,-2.0554 -ト,と,309,309,282,-2.2641 -ホウ,方,1310,1310,48,-4.5756 -ナカ,中,1313,1313,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -ト,と,164,164,282,-1.8068 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コト,事,1310,1310,282,-4.9393 -トコロ,ところ,1313,1313,282,-4.6437 -タチ,立ち,1285,1285,356,-5.2862 -トキ,とき,1313,1313,282,-4.6845 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -イジョウ,以上,1313,1313,387,-4.8100 -トイウ,という,173,173,468,-2.2416 -ジブン,自分,1285,1285,161,-5.4686 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_724.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_724.csv deleted file mode 100644 index a8fb097..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_724.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ノ,の,368,368,408,-1.2458 -ン,ん,515,515,437,-2.4192 -タ,た,435,435,282,-1.4167 -マス,ます,491,491,17,-1.8643 -デ,で,308,308,468,-2.9431 -「,「,6,6,352,-2.0388 -テ,て,307,307,356,-1.5059 -ウカ,うか,506,359,17,-6.6916 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -コト,こと,1310,1310,282,-2.6917 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -サン,さん,1302,1302,420,-2.7569 -ジャ,じゃ,308,261,247,-3.4000 -ナイ,ない,473,473,468,-1.8979 -ノ,の,1310,1310,408,-2.7847 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_725.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_725.csv deleted file mode 100644 index 005f062..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_725.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -ナイ,ない,473,473,468,-1.8979 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -セル,せる,870,870,43,-4.3284 -ズ,ず,487,487,282,-2.5580 -ナク,なく,481,481,468,-2.5033 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナクッ,なくっ,481,481,17,-2.7253 -サセ,させ,876,876,282,-6.9554 -ナイ,ない,482,482,468,-2.1746 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -レテイ,れてい,876,930,17,-7.5959 -サ,さ,605,605,441,-1.9359 -ラレテ,られて,876,307,17,-7.7370 -ン,ん,515,515,437,-2.4192 -ラレタ,られた,876,435,17,-7.8755 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -ナイヒト,ない人,473,1285,501,-5.9561 -ナ,な,468,468,287,-2.1830 -レマス,れます,876,491,17,-8.2381 -ワ,わ,291,291,36,-2.7424 -レマシ,れまし,876,501,17,-8.3111 -サセル,させる,870,870,438,-6.9686 -レマシタ,れました,876,435,17,-8.3380 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_726.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_726.csv deleted file mode 100644 index e4615fb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_726.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -。,。,8,8,61,-1.3115 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_727.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_727.csv deleted file mode 100644 index 412aab4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_727.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,308,308,468,-2.9431 -ジャ,じゃ,308,261,247,-3.4000 -ダ,だ,436,436,471,-2.7366 -デ,で,308,930,468,-4.9557 -デル,でる,308,919,471,-5.5439 -ダリ,だり,308,1203,60,-6.3455 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -ジャナイ,じゃない,308,473,17,-7.1727 -ジャナイ,じゃない,308,20,17,-7.5891 -ジャウ,じゃう,308,1253,418,-7.7444 -ノ,の,368,368,408,-1.2458 -ジャナイカ,じゃないか,308,359,17,-8.0018 -ジャイ,じゃい,308,1273,418,-8.1370 -マス,ます,491,491,17,-1.8643 -デイル,でいる,308,919,17,-8.2652 -デイ,でい,308,930,17,-8.3517 -ジャナイデス,じゃないです,308,460,17,-8.6012 -ジャナイヨ,じゃないよ,308,288,17,-8.7634 -ジャナイデスカ,じゃないですか,308,359,17,-8.8105 -デイタ,でいた,308,435,17,-8.9807 -ジャナイカナ,じゃないかな,308,275,17,-9.0393 -。,。,8,8,61,-1.3115 -デクダサイ,でください,308,1239,17,-9.0591 -デモ,でも,308,262,17,-9.1000 -デタ,でた,308,435,17,-9.1571 -デキ,でき,308,904,17,-9.1931 -ジャネエ,じゃねえ,308,20,17,-9.2002 -ドリ,どり,308,1195,437,-9.2279 -ジャネェ,じゃねぇ,308,20,17,-9.2351 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_728.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_728.csv deleted file mode 100644 index 57a59a3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_728.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -タイ,たい,444,444,17,-2.4250 -マス,ます,491,491,17,-1.8643 -ノ,の,368,368,408,-1.2458 -イ,い,930,930,356,-2.0866 -マシ,まし,501,501,17,-2.0043 -サ,さ,1304,1304,441,-2.8267 -タ,た,435,435,282,-1.4167 -ニ,に,151,151,282,-1.3747 -ナガラ,ながら,314,314,282,-2.7301 -イル,いる,919,919,468,-1.9884 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -デ,で,308,308,468,-2.9431 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -サン,さん,1302,1302,420,-2.7569 -「,「,6,6,352,-2.0388 -ジャ,じゃ,308,261,247,-3.4000 -カタ,方,1304,1304,48,-4.2521 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -イチ,一,1295,1295,134,-3.3833 -フクミ,含み,1285,1285,258,-4.9821 -ツツ,つつ,306,306,356,-3.2088 -トキ,時,1285,1285,282,-5.0461 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_729.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_729.csv deleted file mode 100644 index 65905f9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_729.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -ン,ん,515,515,437,-2.4192 -ナイ,ない,473,473,468,-1.8979 -マス,ます,491,491,17,-1.8643 -バイイ,ばいい,318,131,17,-8.3265 -デ,で,308,308,468,-2.9431 -バイイ,ばいい,318,37,17,-8.8957 -ッテ,って,167,167,17,-2.3603 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ジャ,じゃ,308,261,247,-3.4000 -レ,れ,876,876,468,-2.0223 -ル,る,547,547,495,-3.7188 -バイイノ,ばいいの,318,1310,17,-9.4603 -テル,てる,307,919,17,-4.3303 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -トカ,とか,364,364,17,-2.5396 -ド,ど,311,311,437,-3.7861 -ル,る,549,549,495,-3.8586 -ズ,ず,487,487,282,-2.5580 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_73.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_73.csv deleted file mode 100644 index 324fdbf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_73.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_730.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_730.csv deleted file mode 100644 index fbf049b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_730.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -ニ,に,151,151,282,-1.3747 -ハ,は,261,261,468,-1.3731 -イ,い,930,930,356,-2.0866 -ン,ん,515,515,437,-2.4192 -シ,し,610,610,258,-1.5936 -ガ,が,148,148,468,-1.4621 -。,。,8,8,61,-1.3115 -カ,か,359,359,468,-1.9789 -・,・,5,5,203,-2.7687 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -シ,私,1285,1285,17,-4.2442 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ナカ,中,1285,1285,282,-4.2761 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -サン,さん,1302,1302,420,-2.7569 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_731.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_731.csv deleted file mode 100644 index e0ca7f1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_731.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -ヨウ,よう,1312,1312,169,-2.2533 -ホウ,方,1310,1310,48,-4.5756 -シ,私,1285,1285,17,-4.2442 -タメ,ため,1313,1313,282,-3.3063 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -」,」,7,7,121,-2.0554 -ト,と,164,164,282,-1.8068 -カ,か,359,359,468,-1.9789 -コト,事,1310,1310,282,-4.9393 -ガ,が,299,299,468,-2.0560 -トイウ,という,173,173,468,-2.2416 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -トキ,時,1313,1313,282,-4.1345 -「,「,6,6,352,-2.0388 -ナカ,中,1313,1313,282,-4.2761 -メ,目,1310,1310,332,-5.6594 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ナド,など,344,344,442,-2.2760 -ダケ,だけ,338,338,468,-2.4590 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_732.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_732.csv deleted file mode 100644 index cda71c1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_732.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -カ,か,359,359,468,-1.9789 -ン,ん,515,515,437,-2.4192 -ウカ,うか,506,359,17,-6.6916 -。,。,8,8,61,-1.3115 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -ネエ,ねえ,20,20,468,-2.2298 -レロ,れろ,874,874,468,-2.2332 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_733.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_733.csv deleted file mode 100644 index 7d5d95b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_733.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -ナイ,ない,473,473,468,-1.8979 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -セル,せる,870,870,43,-4.3284 -ン,ん,515,515,437,-2.4192 -ズ,ず,487,487,282,-2.5580 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナイ,ない,482,482,468,-2.1746 -ナク,なく,481,481,468,-2.5033 -サセ,させ,876,876,282,-6.9554 -ナクッ,なくっ,481,481,17,-2.7253 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -イ,い,930,930,356,-2.0866 -レテイ,れてい,876,930,17,-7.5959 -ラレテ,られて,876,307,17,-7.7370 -ラレタ,られた,876,435,17,-7.8755 -ナイヒト,ない人,473,1285,501,-5.9561 -レテイタ,れていた,876,435,17,-8.0815 -サセル,させる,870,870,438,-6.9686 -レテル,れてる,876,307,17,-8.0917 -レマス,れます,876,491,17,-8.2381 -レマシ,れまし,876,501,17,-8.3111 -レマシタ,れました,876,435,17,-8.3380 -ラレテイル,られている,876,919,17,-8.5687 -セテイタダキ,せていただき,876,981,17,-8.6086 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_734.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_734.csv deleted file mode 100644 index 38ffe3a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_734.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -」,」,7,7,121,-2.0554 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -ス,す,602,602,481,-2.2579 -ト,と,309,309,282,-2.2641 -カラ,から,297,297,356,-2.3083 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_735.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_735.csv deleted file mode 100644 index 5588db7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_735.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -テル,てる,307,919,17,-4.3303 -マス,ます,491,491,17,-1.8643 -テ,て,307,930,356,-4.8756 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -テイル,ている,307,919,17,-5.6469 -ガ,が,148,148,468,-1.4621 -テイ,てい,307,930,17,-5.8308 -ヲ,を,156,156,356,-1.4175 -タリ,たり,360,360,451,-2.5700 -イ,い,930,930,356,-2.0866 -ハ,は,261,261,468,-1.3731 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -ナガラ,ながら,314,314,282,-2.7301 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -イル,いる,919,919,468,-1.9884 -テクレ,てくれ,307,940,17,-7.0746 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -サ,さ,1304,1304,441,-2.8267 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_736.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_736.csv deleted file mode 100644 index 43e16ac..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_736.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -ド,ど,311,311,437,-3.7861 -バイイ,ばいい,318,131,17,-8.3265 -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ドモ,ども,313,313,495,-4.3036 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ズ,ず,487,487,282,-2.5580 -デ,で,308,308,468,-2.9431 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -バイイ,ばいい,318,37,17,-8.8957 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ナ,な,454,454,287,-1.8607 -スル,する,599,599,481,-1.9113 -ジャ,じゃ,308,261,247,-3.4000 -デ,で,458,458,468,-1.9218 -タ,た,435,435,282,-1.4167 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_737.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_737.csv deleted file mode 100644 index 69ff32b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_737.csv +++ /dev/null @@ -1,30 +0,0 @@ -ン,ん,515,515,437,-2.4192 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ノ,の,368,368,408,-1.2458 -ホウ,方,1310,1310,48,-4.5756 -ハ,は,261,261,468,-1.3731 -、,、,10,10,151,-1.2267 -コト,事,1310,1310,282,-4.9393 -サン,さん,1302,1302,420,-2.7569 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -ニ,に,151,151,282,-1.3747 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ガ,が,148,148,468,-1.4621 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -メ,目,1310,1310,332,-5.6594 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ワケ,わけ,1310,1310,268,-5.7101 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_738.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_738.csv deleted file mode 100644 index 28e3ed4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_738.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ヨウ,よう,1312,1312,169,-2.2533 -モノ,もの,1310,1310,468,-3.9802 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ト,と,309,309,282,-2.2641 -ガ,が,299,299,468,-2.0560 -ホウ,方,1310,1310,48,-4.5756 -タ,多,1285,1285,351,-4.9124 -カ,か,359,359,468,-1.9789 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ニ,に,151,151,282,-1.3747 -」,」,7,7,121,-2.0554 -タメ,ため,1313,1313,282,-3.3063 -コト,事,1310,1310,282,-4.9393 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -トイウ,という,173,173,468,-2.2416 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_739.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_739.csv deleted file mode 100644 index 938f979..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_739.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ン,ん,515,515,437,-2.4192 -テ,て,307,307,356,-1.5059 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ウカ,うか,506,359,17,-6.6916 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ヨ,よ,288,288,17,-2.1474 -ウト,うと,506,164,17,-7.3953 -デス,です,460,460,17,-1.8655 -バ,ば,318,318,282,-2.3431 -ト,と,164,164,282,-1.8068 -シ,し,610,610,258,-1.5936 -ウネ,うね,506,279,17,-8.1285 -カ,か,359,359,468,-1.9789 -』,』,7,7,136,-3.5069 -ハ,は,261,261,468,-1.3731 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -ウトシ,うとし,506,610,17,-8.3143 -サン,さん,1302,1302,420,-2.7569 -コノ,この,1315,1315,468,-3.0084 -ナ,な,454,454,287,-1.8607 -ウト,うと,506,150,17,-8.5291 -ソノ,その,1315,1315,468,-3.1000 -モ,も,262,262,468,-1.7239 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_74.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_74.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_74.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_740.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_740.csv deleted file mode 100644 index 1fb8381..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_740.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ズ,ず,487,487,282,-2.5580 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -ン,ん,515,515,437,-2.4192 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -セル,せる,870,870,43,-4.3284 -ナイヒト,ない人,473,1285,501,-5.9561 -レテ,れて,876,307,17,-6.2446 -ナイ,ない,482,482,468,-2.1746 -レタ,れた,876,435,17,-6.3748 -ナ,な,468,468,287,-2.1830 -サセ,させ,876,876,282,-6.9554 -ナイデス,ないです,473,460,17,-7.2367 -レテイル,れている,876,919,17,-7.1109 -ナイカ,ないか,473,359,17,-7.2908 -セテ,せて,876,307,17,-7.2476 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ヌ,ぬ,484,484,17,-3.3915 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -レテイ,れてい,876,930,17,-7.5959 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_741.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_741.csv deleted file mode 100644 index 0715c28..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_741.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ヨ,よ,288,288,17,-2.1474 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_742.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_742.csv deleted file mode 100644 index a41bd75..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_742.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -テクレル,てくれる,307,933,17,-7.5487 -テイク,ていく,307,992,17,-7.5930 -テシマイ,てしまい,307,1273,17,-7.6492 -テイナイ,ていない,307,473,17,-7.6534 -タリ,たり,360,360,451,-2.5700 -テカラ,てから,307,147,17,-7.6796 -テイテ,ていて,307,307,17,-7.6863 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_743.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_743.csv deleted file mode 100644 index 6e73cec..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_743.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イ,い,930,930,356,-2.0866 -マス,ます,491,491,17,-1.8643 -ノ,の,368,368,408,-1.2458 -マシ,まし,501,501,17,-2.0043 -イル,いる,919,919,468,-1.9884 -タイ,たい,444,444,17,-2.4250 -シ,し,610,610,258,-1.5936 -ヲ,を,156,156,356,-1.4175 -ナガラ,ながら,314,314,282,-2.7301 -ニ,に,151,151,282,-1.3747 -デス,です,460,460,17,-1.8655 -ミ,み,930,930,52,-4.5938 -ガ,が,148,148,468,-1.4621 -ソウ,そう,1301,1301,17,-2.6187 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -サ,さ,1304,1304,441,-2.8267 -テ,て,307,307,356,-1.5059 -スギ,すぎ,930,930,268,-5.1245 -ハ,は,261,261,468,-1.3731 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -スル,する,599,599,481,-1.9113 -トキ,時,1285,1285,282,-5.0461 -ヤスイ,やすい,113,113,48,-3.4181 -ツツ,つつ,306,306,356,-3.2088 -タク,たく,451,451,17,-3.0166 -タ,た,435,435,282,-1.4167 -デ,で,308,308,468,-2.9431 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_744.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_744.csv deleted file mode 100644 index 44774d9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_744.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -デ,で,308,308,468,-2.9431 -ジャ,じゃ,308,261,247,-3.4000 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -バイイ,ばいい,318,131,17,-8.3265 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_745.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_745.csv deleted file mode 100644 index b82b210..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_745.csv +++ /dev/null @@ -1,30 +0,0 @@ -イ,い,930,930,356,-2.0866 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_746.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_746.csv deleted file mode 100644 index 968c361..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_746.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -マデ,まで,355,355,143,-2.3294 -ホド,ほど,354,354,48,-2.8635 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -カ,か,359,359,468,-1.9789 -モノ,もの,1310,1310,468,-3.9802 -ト,と,309,309,282,-2.2641 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ホウ,方,1310,1310,48,-4.5756 -カラ,から,297,297,356,-2.3083 -コト,事,1310,1310,282,-4.9393 -ン,ん,515,515,437,-2.4192 -ヨ,よ,288,288,17,-2.1474 -タメ,ため,1313,1313,282,-3.3063 -ガ,が,148,148,468,-1.4621 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -カモ,かも,330,330,252,-2.7352 -ナ,な,275,275,287,-2.5224 -ッテ,って,167,167,17,-2.3603 -トイウ,という,173,173,468,-2.2416 -ワ,わ,291,291,36,-2.7424 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -メ,目,1310,1310,332,-5.6594 -ヨウ,よう,1312,1312,169,-2.2533 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_747.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_747.csv deleted file mode 100644 index cb25080..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_747.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -デス,です,460,460,17,-1.8655 -タ,た,435,435,282,-1.4167 -ハ,は,261,261,468,-1.3731 -モ,も,262,262,468,-1.7239 -ダ,だ,436,436,471,-2.7366 -カ,か,359,359,468,-1.9789 -テ,て,307,307,356,-1.5059 -ナイ,ない,473,473,468,-1.8979 -イ,い,930,930,356,-2.0866 -ト,と,164,164,282,-1.8068 -ウカ,うか,506,359,17,-6.6916 -ヨ,よ,288,288,17,-2.1474 -ダ,だ,453,453,471,-1.9457 -ン,ん,515,515,437,-2.4192 -キ,き,516,516,356,-3.5399 -、,、,10,10,151,-1.2267 -ジ,じ,507,507,331,-3.5475 -ネ,ね,279,279,47,-2.1699 -ウト,うと,506,164,17,-7.3953 -タイ,たい,444,444,17,-2.4250 -ト,と,309,309,282,-2.2641 -ヤ,や,503,503,43,-3.1411 -ツ,つ,370,370,437,-3.3939 -ウネ,うね,506,279,17,-8.1285 -デ,で,458,458,468,-1.9218 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ウトシ,うとし,506,610,17,-8.3143 -ニ,に,151,151,282,-1.3747 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_748.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_748.csv deleted file mode 100644 index 1cd9382..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_748.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -ナイ,ない,482,482,468,-2.1746 -ズ,ず,487,487,282,-2.5580 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -ン,ん,515,515,437,-2.4192 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -セ,せ,876,876,258,-4.2710 -ナイヒト,ない人,473,1285,501,-5.9561 -ラレル,られる,870,870,471,-3.6838 -ナ,な,468,468,287,-2.1830 -イ,い,930,930,356,-2.0866 -セル,せる,870,870,43,-4.3284 -バ,ば,318,318,282,-2.3431 -ガ,が,148,148,468,-1.4621 -タ,た,435,435,282,-1.4167 -レテ,れて,876,307,17,-6.2446 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -レタ,れた,876,435,17,-6.3748 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -サン,さん,1302,1302,420,-2.7569 -ナイン,ないん,473,1310,17,-7.6099 -ネー,ねー,469,469,420,-4.6236 -ナイト,ないと,473,164,17,-7.6415 -ネェ,ねぇ,469,469,420,-4.6298 -ネエ,ねえ,469,469,17,-4.6324 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_749.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_749.csv deleted file mode 100644 index 69d1d19..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_749.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -」,」,7,7,121,-2.0554 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -。,。,8,8,61,-1.3115 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_75.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_75.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_75.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_750.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_750.csv deleted file mode 100644 index da9c8ef..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_750.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,308,308,468,-2.9431 -ダ,だ,436,436,471,-2.7366 -ジャ,じゃ,308,261,247,-3.4000 -デ,で,308,930,468,-4.9557 -デル,でる,308,919,471,-5.5439 -ダリ,だり,308,1203,60,-6.3455 -ジャナイ,じゃない,308,473,17,-7.1727 -ジャナイ,じゃない,308,20,17,-7.5891 -ジャウ,じゃう,308,1253,418,-7.7444 -テ,て,307,307,356,-1.5059 -ジャナイカ,じゃないか,308,359,17,-8.0018 -ジャイ,じゃい,308,1273,418,-8.1370 -デイル,でいる,308,919,17,-8.2652 -デイ,でい,308,930,17,-8.3517 -ジャナイデス,じゃないです,308,460,17,-8.6012 -ジャナイヨ,じゃないよ,308,288,17,-8.7634 -ジャナイデスカ,じゃないですか,308,359,17,-8.8105 -デイタ,でいた,308,435,17,-8.9807 -ジャナイカナ,じゃないかな,308,275,17,-9.0393 -デクダサイ,でください,308,1239,17,-9.0591 -デモ,でも,308,262,17,-9.1000 -デタ,でた,308,435,17,-9.1571 -デキ,でき,308,904,17,-9.1931 -ジャネエ,じゃねえ,308,20,17,-9.2002 -ドリ,どり,308,1195,437,-9.2279 -ジャネェ,じゃねぇ,308,20,17,-9.2351 -ジャナイノ,じゃないの,308,282,17,-9.2579 -ジャナイカト,じゃないかと,308,164,17,-9.2859 -ジャナイン,じゃないん,308,1310,17,-9.2882 -デクレ,でくれ,308,940,17,-9.2952 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_751.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_751.csv deleted file mode 100644 index 12de54a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_751.csv +++ /dev/null @@ -1,30 +0,0 @@ -タイ,たい,444,444,17,-2.4250 -ソウ,そう,1301,1301,17,-2.6187 -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -タ,た,435,435,282,-1.4167 -マシ,まし,501,501,17,-2.0043 -タク,たく,451,451,17,-3.0166 -タクッ,たくっ,451,451,17,-3.2814 -サ,さ,1304,1304,441,-2.8267 -ニ,に,151,151,282,-1.3747 -テ,て,307,307,356,-1.5059 -イ,い,930,930,356,-2.0866 -カタ,方,1304,1304,48,-4.2521 -タイヒト,たい人,444,1285,17,-6.3754 -タ,た,439,439,282,-2.7177 -イル,いる,919,919,468,-1.9884 -アル,ある,772,772,481,-2.9588 -サン,さん,1302,1302,420,-2.7569 -ヲ,を,156,156,356,-1.4175 -ナル,なる,772,772,471,-3.0967 -ヨウ,よう,1312,1312,169,-2.2533 -ガ,が,148,148,468,-1.4621 -ユク,ゆく,1019,1019,471,-3.7991 -シ,し,610,610,258,-1.5936 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -ヤスイ,やすい,113,113,48,-3.4181 -ソ,そ,1301,1301,437,-7.5636 -マシタ,ました,501,435,17,-5.7646 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_752.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_752.csv deleted file mode 100644 index d149b60..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_752.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -バイイ,ばいい,318,131,17,-8.3265 -ナイ,ない,473,473,468,-1.8979 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ッテ,って,167,167,17,-2.3603 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,308,308,468,-2.9431 -バイイノ,ばいいの,318,1310,17,-9.4603 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_753.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_753.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_753.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_754.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_754.csv deleted file mode 100644 index 2e2e607..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_754.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -モノ,もの,1310,1310,468,-3.9802 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヨウ,よう,1312,1312,169,-2.2533 -ホウ,方,1310,1310,48,-4.5756 -ト,と,164,164,282,-1.8068 -ト,と,309,309,282,-2.2641 -カ,か,359,359,468,-1.9789 -タ,多,1285,1285,351,-4.9124 -コト,事,1310,1310,282,-4.9393 -フクミ,含み,1285,1285,258,-4.9821 -ニ,に,151,151,282,-1.3747 -トキ,時,1285,1285,282,-5.0461 -タメ,ため,1313,1313,282,-3.3063 -ガ,が,299,299,468,-2.0560 -」,」,7,7,121,-2.0554 -「,「,6,6,352,-2.0388 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ネ,ね,279,279,47,-2.1699 -ミ,見,1285,1285,52,-5.3943 -ガ,が,148,148,468,-1.4621 -ジブン,自分,1285,1285,161,-5.4686 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_755.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_755.csv deleted file mode 100644 index 13bc1a0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_755.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_756.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_756.csv deleted file mode 100644 index 5e7e360..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_756.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレル,られる,870,870,471,-3.6838 -ラレ,られ,876,876,356,-3.7371 -セル,せる,870,870,43,-4.3284 -セ,せ,876,876,258,-4.2710 -ナイ,ない,473,473,468,-1.8979 -ズ,ず,487,487,282,-2.5580 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -サセル,させる,870,870,438,-6.9686 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -ナク,なく,481,481,468,-2.5033 -セテ,せて,876,307,17,-7.2476 -ナクッ,なくっ,481,481,17,-2.7253 -レテイ,れてい,876,930,17,-7.5959 -ラレテ,られて,876,307,17,-7.7370 -ン,ん,515,515,437,-2.4192 -ラレタ,られた,876,435,17,-7.8755 -ナイ,ない,482,482,468,-2.1746 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -レマス,れます,876,491,17,-8.2381 -レルコト,れること,870,1310,17,-8.3745 -レマシ,れまし,876,501,17,-8.3111 -レマシタ,れました,876,435,17,-8.3380 -レルノ,れるの,870,1310,17,-8.4937 -ナイヒト,ない人,473,1285,501,-5.9561 -ラレテイル,られている,876,919,17,-8.5687 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_757.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_757.csv deleted file mode 100644 index daed2a3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_757.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ト,と,164,164,282,-1.8068 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -」,」,7,7,121,-2.0554 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_758.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_758.csv deleted file mode 100644 index 90974b2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_758.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,308,308,468,-2.9431 -ジャ,じゃ,308,261,247,-3.4000 -ダ,だ,436,436,471,-2.7366 -デ,で,308,930,468,-4.9557 -デル,でる,308,919,471,-5.5439 -ダリ,だり,308,1203,60,-6.3455 -ジャナイ,じゃない,308,473,17,-7.1727 -テ,て,307,307,356,-1.5059 -ジャナイ,じゃない,308,20,17,-7.5891 -ジャウ,じゃう,308,1253,418,-7.7444 -ジャナイカ,じゃないか,308,359,17,-8.0018 -ジャイ,じゃい,308,1273,418,-8.1370 -デイル,でいる,308,919,17,-8.2652 -デイ,でい,308,930,17,-8.3517 -ジャナイデス,じゃないです,308,460,17,-8.6012 -ジャナイヨ,じゃないよ,308,288,17,-8.7634 -ジャナイデスカ,じゃないですか,308,359,17,-8.8105 -デイタ,でいた,308,435,17,-8.9807 -タ,た,435,435,282,-1.4167 -ジャナイカナ,じゃないかな,308,275,17,-9.0393 -、,、,10,10,151,-1.2267 -デクダサイ,でください,308,1239,17,-9.0591 -デモ,でも,308,262,17,-9.1000 -デタ,でた,308,435,17,-9.1571 -デキ,でき,308,904,17,-9.1931 -ジャネエ,じゃねえ,308,20,17,-9.2002 -ドリ,どり,308,1195,437,-9.2279 -ジャネェ,じゃねぇ,308,20,17,-9.2351 -ジャナイノ,じゃないの,308,282,17,-9.2579 -ガ,が,148,148,468,-1.4621 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_759.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_759.csv deleted file mode 100644 index 591064b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_759.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -ニ,に,151,151,282,-1.3747 -イ,い,930,930,356,-2.0866 -ソウ,そう,1301,1301,17,-2.6187 -ナガラ,ながら,314,314,282,-2.7301 -タ,た,435,435,282,-1.4167 -シ,し,610,610,258,-1.5936 -イル,いる,919,919,468,-1.9884 -ヤスイ,やすい,113,113,48,-3.4181 -ガ,が,148,148,468,-1.4621 -ノ,の,368,368,408,-1.2458 -サ,さ,1304,1304,441,-2.8267 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -タク,たく,451,451,17,-3.0166 -「,「,6,6,352,-2.0388 -テ,て,307,307,356,-1.5059 -タクッ,たくっ,451,451,17,-3.2814 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -スル,する,599,599,481,-1.9113 -モ,も,262,262,468,-1.7239 -デ,で,308,308,468,-2.9431 -ニクイ,にくい,113,113,48,-4.5700 -。,。,8,8,61,-1.3115 -ジャ,じゃ,308,261,247,-3.4000 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_76.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_76.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_76.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_760.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_760.csv deleted file mode 100644 index 1a1ce59..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_760.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ノ,の,368,368,408,-1.2458 -テ,て,307,307,356,-1.5059 -ル,る,547,547,495,-3.7188 -ナイ,ない,473,473,468,-1.8979 -ニ,に,151,151,282,-1.3747 -デ,で,308,308,468,-2.9431 -タ,た,435,435,282,-1.4167 -マス,ます,491,491,17,-1.8643 -ジャ,じゃ,308,261,247,-3.4000 -ッテ,って,167,167,17,-2.3603 -デス,です,460,460,17,-1.8655 -ダ,だ,453,453,471,-1.9457 -バイイ,ばいい,318,131,17,-8.3265 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ナガラ,ながら,314,314,282,-2.7301 -ル,る,549,549,495,-3.8586 -テル,てる,307,919,17,-4.3303 -ナ,な,454,454,287,-1.8607 -ナ,な,275,275,287,-2.5224 -デ,で,308,930,468,-4.9557 -、,、,10,10,151,-1.2267 -バイイノ,ばいいの,318,1310,17,-9.4603 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -バイイン,ばいいん,318,1310,17,-9.6003 -ヲ,を,156,156,356,-1.4175 -バト,ばと,318,164,17,-9.6212 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_761.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_761.csv deleted file mode 100644 index 26e8b20..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_761.csv +++ /dev/null @@ -1,30 +0,0 @@ -・,・,5,5,203,-2.7687 -ノ,の,368,368,408,-1.2458 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -、,、,10,10,151,-1.2267 -…,…,5,5,184,-3.3301 -モ,も,262,262,468,-1.7239 -イ,い,930,930,356,-2.0866 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_762.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_762.csv deleted file mode 100644 index 3652706..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_762.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -ト,と,309,309,282,-2.2641 -モノ,もの,1310,1310,468,-3.9802 -ヨウ,よう,1312,1312,169,-2.2533 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ホウ,方,1310,1310,48,-4.5756 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -タメ,ため,1313,1313,282,-3.3063 -コト,事,1310,1310,282,-4.9393 -タ,多,1285,1285,351,-4.9124 -カ,か,359,359,468,-1.9789 -ニ,に,151,151,282,-1.3747 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -カラ,から,297,297,356,-2.3083 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -トイウ,という,173,173,468,-2.2416 -ヨ,よ,288,288,17,-2.1474 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_763.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_763.csv deleted file mode 100644 index 0577bae..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_763.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ン,ん,515,515,437,-2.4192 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ウカ,うか,506,359,17,-6.6916 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -・,・,5,5,203,-2.7687 -カ,か,359,359,468,-1.9789 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 -ネエ,ねえ,20,20,468,-2.2298 -レロ,れろ,874,874,468,-2.2332 -トイウ,という,173,173,468,-2.2416 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_764.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_764.csv deleted file mode 100644 index eacadf6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_764.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ナイ,ない,473,473,468,-1.8979 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -セル,せる,870,870,43,-4.3284 -ズ,ず,487,487,282,-2.5580 -ナク,なく,481,481,468,-2.5033 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナクッ,なくっ,481,481,17,-2.7253 -ナイ,ない,482,482,468,-2.1746 -ン,ん,515,515,437,-2.4192 -サセ,させ,876,876,282,-6.9554 -サ,さ,605,605,441,-1.9359 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -ノ,の,368,368,408,-1.2458 -レテイ,れてい,876,930,17,-7.5959 -ナイヒト,ない人,473,1285,501,-5.9561 -タ,た,435,435,282,-1.4167 -ラレテ,られて,876,307,17,-7.7370 -ラレタ,られた,876,435,17,-7.8755 -サセル,させる,870,870,438,-6.9686 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -ガ,が,148,148,468,-1.4621 -ヌ,ぬ,484,484,17,-3.3915 -レマス,れます,876,491,17,-8.2381 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_765.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_765.csv deleted file mode 100644 index e86616a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_765.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ヨ,よ,288,288,17,-2.1474 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ニ,に,151,151,282,-1.3747 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -レル,れる,870,870,468,-2.2380 -ス,す,602,602,481,-2.2579 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_766.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_766.csv deleted file mode 100644 index 2f8e9d4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_766.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,308,308,468,-2.9431 -ジャ,じゃ,308,261,247,-3.4000 -ダ,だ,436,436,471,-2.7366 -デ,で,308,930,468,-4.9557 -デル,でる,308,919,471,-5.5439 -ダリ,だり,308,1203,60,-6.3455 -テ,て,307,307,356,-1.5059 -ジャナイ,じゃない,308,473,17,-7.1727 -タ,た,435,435,282,-1.4167 -ジャナイ,じゃない,308,20,17,-7.5891 -ジャウ,じゃう,308,1253,418,-7.7444 -ジャナイカ,じゃないか,308,359,17,-8.0018 -ジャイ,じゃい,308,1273,418,-8.1370 -、,、,10,10,151,-1.2267 -デイル,でいる,308,919,17,-8.2652 -デイ,でい,308,930,17,-8.3517 -デス,です,460,460,17,-1.8655 -ノ,の,368,368,408,-1.2458 -ケド,けど,301,301,17,-2.4058 -ジャナイデス,じゃないです,308,460,17,-8.6012 -ジャナイヨ,じゃないよ,308,288,17,-8.7634 -ジャナイデスカ,じゃないですか,308,359,17,-8.8105 -ガ,が,299,299,468,-2.0560 -デイタ,でいた,308,435,17,-8.9807 -ジャナイカナ,じゃないかな,308,275,17,-9.0393 -デクダサイ,でください,308,1239,17,-9.0591 -デモ,でも,308,262,17,-9.1000 -デタ,でた,308,435,17,-9.1571 -デキ,でき,308,904,17,-9.1931 -ジャネエ,じゃねえ,308,20,17,-9.2002 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_767.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_767.csv deleted file mode 100644 index 4b4f47c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_767.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -ニ,に,151,151,282,-1.3747 -イ,い,930,930,356,-2.0866 -タイ,たい,444,444,17,-2.4250 -マシ,まし,501,501,17,-2.0043 -シ,し,610,610,258,-1.5936 -ガ,が,148,148,468,-1.4621 -イル,いる,919,919,468,-1.9884 -ナガラ,ながら,314,314,282,-2.7301 -ノ,の,368,368,408,-1.2458 -デス,です,460,460,17,-1.8655 -ヲ,を,156,156,356,-1.4175 -タ,た,435,435,282,-1.4167 -ハ,は,261,261,468,-1.3731 -サ,さ,1304,1304,441,-2.8267 -ヤスイ,やすい,113,113,48,-3.4181 -ソウ,そう,1301,1301,17,-2.6187 -タク,たく,451,451,17,-3.0166 -モ,も,262,262,468,-1.7239 -デ,で,308,308,468,-2.9431 -クダサイ,ください,1239,1239,17,-3.0904 -デ,で,149,149,468,-1.6148 -タクッ,たくっ,451,451,17,-3.2814 -ミ,み,930,930,52,-4.5938 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -スル,する,599,599,481,-1.9113 -「,「,6,6,352,-2.0388 -ジャ,じゃ,308,261,247,-3.4000 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_768.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_768.csv deleted file mode 100644 index 2bd69e9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_768.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -ナイ,ない,473,473,468,-1.8979 -マス,ます,491,491,17,-1.8643 -バイイ,ばいい,318,131,17,-8.3265 -デ,で,308,308,468,-2.9431 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ジャ,じゃ,308,261,247,-3.4000 -バイイノ,ばいいの,318,1310,17,-9.4603 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -ズ,ず,487,487,282,-2.5580 -マシ,まし,501,501,17,-2.0043 -ド,ど,311,311,437,-3.7861 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -テル,てる,307,919,17,-4.3303 -リ,り,546,546,437,-3.6325 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -バトオモイ,ばと思い,318,832,17,-10.0809 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_769.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_769.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_769.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_77.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_77.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_77.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_770.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_770.csv deleted file mode 100644 index d2656e9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_770.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イイ,いい,37,37,17,-2.6886 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ト,と,164,164,282,-1.8068 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_771.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_771.csv deleted file mode 100644 index 075cb85..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_771.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -イイ,いい,37,37,17,-2.6886 -。,。,8,8,61,-1.3115 -アル,ある,772,772,481,-2.9588 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ナル,なる,772,772,471,-3.0967 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -デキ,でき,625,625,481,-4.3005 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_772.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_772.csv deleted file mode 100644 index 25eeb66..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_772.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -ト,と,309,309,282,-2.2641 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -モノ,もの,1310,1310,468,-3.9802 -ガ,が,299,299,468,-2.0560 -カ,か,359,359,468,-1.9789 -ヨウ,よう,1312,1312,169,-2.2533 -ノデ,ので,316,316,48,-2.3278 -カラ,から,297,297,356,-2.3083 -ホウ,方,1310,1310,48,-4.5756 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヨ,よ,288,288,17,-2.1474 -タメ,ため,1313,1313,282,-3.3063 -コト,事,1310,1310,282,-4.9393 -」,」,7,7,121,-2.0554 -ケド,けど,301,301,17,-2.4058 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -トイウ,という,173,173,468,-2.2416 -フクミ,含み,1285,1285,258,-4.9821 -マデ,まで,355,355,143,-2.3294 -ニ,に,151,151,282,-1.3747 -トキ,時,1285,1285,282,-5.0461 -シ,し,304,304,258,-2.5363 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_773.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_773.csv deleted file mode 100644 index bd29241..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_773.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ベキ,べき,539,539,468,-2.9960 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -トイウ,という,173,173,468,-2.2416 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -オモウ,思う,817,817,17,-3.0926 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_774.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_774.csv deleted file mode 100644 index 437afe2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_774.csv +++ /dev/null @@ -1,30 +0,0 @@ -デ,で,308,308,468,-2.9431 -ヨ,よ,288,288,17,-2.1474 -ジャ,じゃ,308,261,247,-3.4000 -サン,さん,1302,1302,420,-2.7569 -ノ,の,368,368,408,-1.2458 -コト,こと,1310,1310,282,-2.6917 -ナ,な,275,275,287,-2.5224 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -デ,で,308,930,468,-4.9557 -ハ,は,261,261,468,-1.3731 -ネ,ね,279,279,47,-2.1699 -ダ,だ,453,453,471,-1.9457 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ン,ん,1310,1310,437,-3.5653 -ト,と,164,164,282,-1.8068 -デル,でる,308,919,471,-5.5439 -モ,も,262,262,468,-1.7239 -ニ,に,151,151,282,-1.3747 -チャン,ちゃん,1302,1302,51,-4.1693 -モノ,もの,1310,1310,468,-3.9802 -ヨウ,よう,1312,1312,169,-2.2533 -ナク,なく,36,36,468,-2.1850 -タ,多,1285,1285,351,-4.9124 -ノ,の,282,282,408,-2.8118 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -クン,くん,1302,1302,244,-4.6195 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_775.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_775.csv deleted file mode 100644 index c1a2db9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_775.csv +++ /dev/null @@ -1,30 +0,0 @@ -シャ,者,1298,1298,42,-4.9865 -マエ,前,1298,1298,282,-5.2420 -タチ,たち,1298,1298,252,-5.3419 -キリ,切り,1298,1298,60,-5.3631 -トウ,等,1298,1298,486,-5.4565 -オ,お,560,560,437,-3.5014 -サン,さん,1302,1302,420,-2.7569 -ラ,ら,1298,1298,344,-5.5475 -、,、,10,10,151,-1.2267 -メ,目,1298,1298,332,-5.5838 -ノ,の,368,368,408,-1.2458 -ナイ,内,1298,1298,397,-5.6065 -ヨウ,用,1298,1298,319,-5.6263 -コト,こと,1310,1310,282,-2.6917 -。,。,8,8,61,-1.3115 -キョウ,強,1298,1298,351,-5.7181 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ノ,の,1310,1310,408,-2.7847 -ユキ,行き,1298,1298,271,-5.7579 -ケイ,系,1298,1298,340,-5.7712 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガワ,側,1298,1298,468,-5.7751 -ガ,が,148,148,468,-1.4621 -セイ,性,1298,1298,351,-5.8347 -カ,家,1298,1298,97,-5.8385 -ガタ,型,1298,1298,213,-5.8624 -テ,て,307,307,356,-1.5059 -ゲン,現,1298,1298,309,-5.9095 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_776.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_776.csv deleted file mode 100644 index ba19488..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_776.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ガ,が,148,148,468,-1.4621 -ヲ,を,156,156,356,-1.4175 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -シ,し,610,610,258,-1.5936 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -・,・,5,5,203,-2.7687 -レル,れる,870,870,468,-2.2380 -モ,も,262,262,468,-1.7239 -トキ,時,1285,1285,282,-5.0461 -イ,い,930,930,356,-2.0866 -!,!,1318,1318,244,-1.9828 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -デ,で,458,458,468,-1.9218 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -アル,ある,403,403,481,-2.1570 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_777.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_777.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_777.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_778.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_778.csv deleted file mode 100644 index f047127..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_778.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -タ,た,435,435,282,-1.4167 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -・,・,5,5,203,-2.7687 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -マデ,まで,355,355,143,-2.3294 -アリ,あり,409,409,249,-2.3509 -アレ,あれ,407,407,47,-2.4311 -ダケ,だけ,338,338,468,-2.4590 -ナク,なく,481,481,468,-2.5033 -ヨリ,より,155,155,351,-2.5584 -ノ,の,153,153,408,-2.5621 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_779.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_779.csv deleted file mode 100644 index dbee2eb..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_779.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -サン,さん,1302,1302,420,-2.7569 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ウ,う,506,506,133,-2.2404 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_78.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_78.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_78.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_780.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_780.csv deleted file mode 100644 index 9ba6fcf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_780.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ズ,ず,487,487,282,-2.5580 -ラレ,られ,876,876,356,-3.7371 -ン,ん,515,515,437,-2.4192 -セ,せ,876,876,258,-4.2710 -ナク,なく,481,481,468,-2.5033 -ラレル,られる,870,870,471,-3.6838 -ナクッ,なくっ,481,481,17,-2.7253 -セル,せる,870,870,43,-4.3284 -ナイヒト,ない人,473,1285,501,-5.9561 -ナイ,ない,482,482,468,-2.1746 -レテ,れて,876,307,17,-6.2446 -ナ,な,468,468,287,-2.1830 -レタ,れた,876,435,17,-6.3748 -ヌ,ぬ,484,484,17,-3.3915 -サ,さ,605,605,441,-1.9359 -サセ,させ,876,876,282,-6.9554 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -レテイル,れている,876,919,17,-7.1109 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -セテ,せて,876,307,17,-7.2476 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイノデ,ないので,473,316,17,-7.8177 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_781.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_781.csv deleted file mode 100644 index 5f338cd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_781.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ナイ,ない,473,473,468,-1.8979 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -イ,い,930,930,356,-2.0866 -ン,ん,515,515,437,-2.4192 -レル,れる,870,870,468,-2.2380 -モ,も,262,262,468,-1.7239 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ウ,う,506,506,133,-2.2404 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナク,なく,481,481,468,-2.5033 -ナイヒト,ない人,473,1285,501,-5.9561 -ナ,な,454,454,287,-1.8607 -レテ,れて,876,307,17,-6.2446 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_782.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_782.csv deleted file mode 100644 index e33e0c0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_782.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 -ヤ,や,366,366,43,-2.1479 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_783.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_783.csv deleted file mode 100644 index 7ae4661..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_783.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イ,い,930,930,356,-2.0866 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -・,・,5,5,203,-2.7687 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_784.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_784.csv deleted file mode 100644 index e2efb43..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_784.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -?,?,1317,1317,17,-2.1596 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -レロ,れろ,874,874,468,-2.2332 -ウ,う,506,506,133,-2.2404 -ス,す,602,602,481,-2.2579 -ト,と,309,309,282,-2.2641 -」,」,7,7,121,-2.0554 -カラ,から,297,297,356,-2.3083 -ノデ,ので,316,316,48,-2.3278 -バ,ば,318,318,282,-2.3431 -アリ,あり,409,409,249,-2.3509 -ケド,けど,301,301,17,-2.4058 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_785.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_785.csv deleted file mode 100644 index 106e037..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_785.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -」,」,7,7,121,-2.0554 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -・,・,5,5,203,-2.7687 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_786.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_786.csv deleted file mode 100644 index 7b0bf5f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_786.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タリ,たり,360,360,451,-2.5700 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -タガ,たが,435,299,17,-6.8350 -テオリ,ており,307,1197,17,-7.2762 -タン,たん,435,1310,17,-6.8934 -テキタ,てきた,307,435,17,-7.2992 -タコト,たこと,435,1310,17,-6.9351 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -タケド,たけど,435,301,17,-7.1281 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_787.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_787.csv deleted file mode 100644 index 2a9763e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_787.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_788.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_788.csv deleted file mode 100644 index f39e331..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_788.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -イ,い,930,930,356,-2.0866 -ソウ,そう,1301,1301,17,-2.6187 -ニ,に,151,151,282,-1.3747 -ノ,の,368,368,408,-1.2458 -イル,いる,919,919,468,-1.9884 -ガ,が,148,148,468,-1.4621 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -。,。,8,8,61,-1.3115 -ヤスイ,やすい,113,113,48,-3.4181 -ナガラ,ながら,314,314,282,-2.7301 -タク,たく,451,451,17,-3.0166 -デ,で,458,458,468,-1.9218 -サ,さ,1304,1304,441,-2.8267 -デス,です,460,460,17,-1.8655 -シ,私,1285,1285,17,-4.2442 -タクッ,たくっ,451,451,17,-3.2814 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -「,「,6,6,352,-2.0388 -マシタ,ました,501,435,17,-5.7646 -モ,も,262,262,468,-1.7239 -ダ,だ,453,453,471,-1.9457 -ミ,み,930,930,52,-4.5938 -マスガ,ますが,491,299,17,-7.0677 -ヤスク,やすく,129,129,48,-3.4884 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_789.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_789.csv deleted file mode 100644 index 15350c1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_789.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イ,い,930,930,356,-2.0866 -イル,いる,919,919,468,-1.9884 -デキル,できる,619,619,481,-4.0489 -デキ,でき,625,625,481,-4.3005 -マス,ます,491,491,17,-1.8643 -ミ,見,625,625,52,-4.5511 -イル,いる,619,619,468,-4.6741 -イ,い,625,625,356,-4.9123 -ミ,み,930,930,52,-4.5938 -ミル,見る,619,619,481,-4.8362 -カンガエ,考え,625,625,52,-5.1086 -デ,出,625,625,249,-5.1376 -ノ,の,368,368,408,-1.2458 -カンガエル,考える,619,619,481,-5.2419 -スギ,すぎ,930,930,268,-5.1245 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ウケ,受け,625,625,258,-5.4817 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -タベ,食べ,625,625,276,-5.5939 -デル,出る,619,619,471,-5.4366 -ガ,が,148,148,468,-1.4621 -ン,ん,515,515,437,-2.4192 -ダス,出す,731,731,481,-5.1014 -デキ,出来,625,625,268,-5.7335 -カンジ,感じ,625,625,301,-5.7380 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_79.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_79.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_79.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_790.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_790.csv deleted file mode 100644 index 46b6d0a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_790.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -バイイ,ばいい,318,131,17,-8.3265 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -バイイ,ばいい,318,37,17,-8.8957 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_791.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_791.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_791.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_792.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_792.csv deleted file mode 100644 index 6df6676..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_792.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -ヨウ,よう,1312,1312,169,-2.2533 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -モノ,もの,1310,1310,468,-3.9802 -。,。,8,8,61,-1.3115 -ノデ,ので,316,316,48,-2.3278 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -カ,か,359,359,468,-1.9789 -ホウ,方,1310,1310,48,-4.5756 -カモ,かも,330,330,252,-2.7352 -タメ,ため,1313,1313,282,-3.3063 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -コト,事,1310,1310,282,-4.9393 -トキ,時,1285,1285,282,-5.0461 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -、,、,10,10,151,-1.2267 -ミ,見,1285,1285,52,-5.3943 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -」,」,7,7,121,-2.0554 -カラ,から,297,297,356,-2.3083 -アソビ,遊び,1285,1285,290,-5.5478 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_793.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_793.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_793.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_794.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_794.csv deleted file mode 100644 index 66a7389..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_794.csv +++ /dev/null @@ -1,30 +0,0 @@ -ズ,ず,487,487,282,-2.5580 -ナイ,ない,473,473,468,-1.8979 -ナイ,ない,482,482,468,-2.1746 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ヌ,ぬ,484,484,17,-3.3915 -ン,ん,515,515,437,-2.4192 -レル,れる,870,870,468,-2.2380 -ナイヒト,ない人,473,1285,501,-5.9561 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_795.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_795.csv deleted file mode 100644 index 34869ce..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_795.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -モ,も,262,262,468,-1.7239 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ハ,は,261,261,468,-1.3731 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -アリガトウ,ありがとう,3,3,244,-3.6808 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_796.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_796.csv deleted file mode 100644 index 54a01ef..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_796.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -…,…,5,5,184,-3.3301 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_797.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_797.csv deleted file mode 100644 index 8c890f5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_797.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -…,…,5,5,184,-3.3301 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_798.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_798.csv deleted file mode 100644 index 33ac21a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_798.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -タリ,たり,360,360,451,-2.5700 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -テクレル,てくれる,307,933,17,-7.5487 -タガ,たが,435,299,17,-6.8350 -テイク,ていく,307,992,17,-7.5930 -タン,たん,435,1310,17,-6.8934 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_799.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_799.csv deleted file mode 100644 index e01d073..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_799.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -マセ,ませ,497,497,17,-2.1344 -、,、,10,10,151,-1.2267 -マシタ,ました,501,435,17,-5.7646 -マスガ,ますが,491,299,17,-7.0677 -。,。,8,8,61,-1.3115 -マスヨ,ますよ,491,288,17,-7.3568 -マスカ,ますか,491,359,17,-7.4921 -ネ,ね,279,279,47,-2.1699 -マスネ,ますね,491,279,17,-7.6686 -ト,と,164,164,282,-1.8068 -ナイ,ない,473,473,468,-1.8979 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -シ,私,1285,1285,17,-4.2442 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -ナカ,中,1285,1285,282,-4.2761 -マスヨネ,ますよね,491,279,17,-8.1272 -ナ,な,12,12,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_8.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_8.csv deleted file mode 100644 index f914935..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_8.csv +++ /dev/null @@ -1,30 +0,0 @@ -マタ,また,555,555,468,-3.4936 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コノ,この,1315,1315,468,-3.0084 -ソノ,その,1315,1315,468,-3.1000 -「,「,6,6,352,-2.0388 -。,。,8,8,61,-1.3115 -ワタシ,私,1306,1306,17,-3.6243 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -コレ,これ,1306,1306,468,-3.8073 -トキ,時,1285,1285,282,-5.0461 -ソレ,それ,1306,1306,468,-3.8293 -シカシ,しかし,555,555,282,-4.3940 -ソシテ,そして,555,555,282,-4.4117 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -デモ,でも,555,555,468,-4.6667 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -」,」,7,7,121,-2.0554 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 -ナニ,何,1306,1306,468,-4.3760 -ナカ,中,1314,1314,282,-4.2761 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_80.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_80.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_80.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_800.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_800.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_800.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_801.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_801.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_801.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_802.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_802.csv deleted file mode 100644 index fbebbe5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_802.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -オ,お,560,560,437,-3.5014 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ゴ,ご,560,560,78,-4.1942 -」,」,7,7,121,-2.0554 -ン,ん,1310,1310,437,-3.5653 -ヨウ,よう,1312,1312,169,-2.2533 -、,、,10,10,151,-1.2267 -タ,多,560,560,351,-4.9124 -ダイ,大,560,560,454,-5.0378 -ドウ,同,560,560,468,-5.0450 -モノ,もの,1310,1310,468,-3.9802 -カズ,数,560,560,387,-5.3011 -ゼン,全,560,560,424,-5.3050 -カク,各,560,560,468,-5.3380 -モト,元,560,560,14,-5.5313 -シン,新,560,560,356,-5.5760 -キュウ,旧,560,560,489,-5.6169 -ホン,本,560,560,468,-5.6868 -シ,私,1285,1285,17,-4.2442 -ゲン,現,560,560,309,-5.7141 -ナカ,中,1285,1285,282,-4.2761 -ホウ,方,1310,1310,48,-4.5756 -タメ,ため,1313,1313,282,-3.3063 -ハツ,初,560,560,334,-5.9127 -サイ,再,560,560,282,-5.9186 -ノ,の,368,368,408,-1.2458 -タ,他,560,560,468,-6.0835 -コト,事,1310,1310,282,-4.9393 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_803.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_803.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_803.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_804.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_804.csv deleted file mode 100644 index f749e6f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_804.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_805.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_805.csv deleted file mode 100644 index e293717..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_805.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -テル,てる,307,919,17,-4.3303 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -テ,て,307,930,356,-4.8756 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_806.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_806.csv deleted file mode 100644 index 8785d78..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_806.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_807.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_807.csv deleted file mode 100644 index b7bea1a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_807.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -、,、,10,10,151,-1.2267 -テモ,ても,307,262,17,-6.4044 -。,。,8,8,61,-1.3115 -テイタ,ていた,307,435,17,-6.4827 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -テイマス,ています,307,491,17,-6.7459 -モ,も,262,262,468,-1.7239 -チャウ,ちゃう,307,1253,17,-6.9038 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -テマス,てます,307,491,17,-6.9979 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_808.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_808.csv deleted file mode 100644 index 57f7619..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_808.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_809.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_809.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_809.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_81.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_81.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_81.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_810.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_810.csv deleted file mode 100644 index 1549f19..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_810.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -デ,で,308,308,468,-2.9431 -テル,てる,307,919,17,-4.3303 -ノ,の,368,368,408,-1.2458 -ジャ,じゃ,308,261,247,-3.4000 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -ケド,けど,301,301,17,-2.4058 -デ,で,308,930,468,-4.9557 -オ,お,560,560,437,-3.5014 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -ガ,が,299,299,468,-2.0560 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -ダ,だ,436,436,471,-2.7366 -デル,でる,308,919,471,-5.5439 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -モ,も,262,262,468,-1.7239 -ゴ,ご,560,560,78,-4.1942 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_811.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_811.csv deleted file mode 100644 index 4fb3922..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_811.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -テクレル,てくれる,307,933,17,-7.5487 -テイク,ていく,307,992,17,-7.5930 -テシマイ,てしまい,307,1273,17,-7.6492 -テイナイ,ていない,307,473,17,-7.6534 -テカラ,てから,307,147,17,-7.6796 -テイテ,ていて,307,307,17,-7.6863 -テルノ,てるの,307,1310,17,-7.7323 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_812.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_812.csv deleted file mode 100644 index 014b451..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_812.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -ノ,の,368,368,408,-1.2458 -テル,てる,307,919,17,-4.3303 -マス,ます,491,491,17,-1.8643 -タイ,たい,444,444,17,-2.4250 -ハ,は,261,261,468,-1.3731 -テ,て,307,930,356,-4.8756 -シ,し,610,610,258,-1.5936 -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -オ,お,560,560,437,-3.5014 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -テイル,ている,307,919,17,-5.6469 -ト,と,164,164,282,-1.8068 -ナガラ,ながら,314,314,282,-2.7301 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -テイ,てい,307,930,17,-5.8308 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_813.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_813.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_813.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_814.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_814.csv deleted file mode 100644 index 50b06dc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_814.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ニ,に,151,151,282,-1.3747 -テ,て,307,307,356,-1.5059 -デ,で,308,308,468,-2.9431 -ヨ,よ,288,288,17,-2.1474 -ッテ,って,167,167,17,-2.3603 -ナガラ,ながら,314,314,282,-2.7301 -ジャ,じゃ,308,261,247,-3.4000 -カラ,から,297,297,356,-2.3083 -ズ,ず,487,487,282,-2.5580 -バイイ,ばいい,318,131,17,-8.3265 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ハ,は,261,261,468,-1.3731 -ト,と,309,309,282,-2.2641 -テル,てる,307,919,17,-4.3303 -マス,ます,491,491,17,-1.8643 -ツツ,つつ,306,306,356,-3.2088 -ガ,が,299,299,468,-2.0560 -バイイノ,ばいいの,318,1310,17,-9.4603 -デ,で,308,930,468,-4.9557 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -ド,ど,311,311,437,-3.7861 -テ,て,307,930,356,-4.8756 -ナ,な,275,275,287,-2.5224 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ネ,ね,279,279,47,-2.1699 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_815.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_815.csv deleted file mode 100644 index 9e7ed87..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_815.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ド,ど,311,311,437,-3.7861 -バイイ,ばいい,318,131,17,-8.3265 -ドモ,ども,313,313,495,-4.3036 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ハ,は,261,261,468,-1.3731 -バイイノ,ばいいの,318,1310,17,-9.4603 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -ヨ,よ,288,288,17,-2.1474 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -ト,と,309,309,282,-2.2641 -バトオモイ,ばと思い,318,832,17,-10.0809 -バイイノカ,ばいいのか,318,359,17,-10.0964 -バイイ,ばいい,318,19,17,-10.1547 -バイイカ,ばいいか,318,359,17,-10.1567 -バイイノニ,ばいいのに,318,317,17,-10.1854 -バトオモイマス,ばと思います,318,491,17,-10.1899 -バダイジョウブ,ば大丈夫,318,1287,17,-10.2066 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_816.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_816.csv deleted file mode 100644 index ab09f7f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_816.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_817.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_817.csv deleted file mode 100644 index 0fa2c02..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_817.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ト,と,309,309,282,-2.2641 -、,、,10,10,151,-1.2267 -ケド,けど,301,301,17,-2.4058 -ヨ,よ,288,288,17,-2.1474 -ト,と,164,164,282,-1.8068 -ヨウ,よう,1312,1312,169,-2.2533 -ホウ,方,1310,1310,48,-4.5756 -ノデ,ので,316,316,48,-2.3278 -カ,か,359,359,468,-1.9789 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コト,事,1310,1310,282,-4.9393 -ガ,が,148,148,468,-1.4621 -ガ,が,299,299,468,-2.0560 -カラ,から,297,297,356,-2.3083 -」,」,7,7,121,-2.0554 -タメ,ため,1313,1313,282,-3.3063 -シ,し,304,304,258,-2.5363 -タ,多,1285,1285,351,-4.9124 -ニ,に,151,151,282,-1.3747 -シロ,しろ,608,608,437,-1.9456 -フクミ,含み,1285,1285,258,-4.9821 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -トキ,時,1285,1285,282,-5.0461 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_818.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_818.csv deleted file mode 100644 index 3435a7a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_818.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -カ,か,359,359,468,-1.9789 -コト,こと,1310,1310,282,-2.6917 -ト,と,309,309,282,-2.2641 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ヨリ,より,155,155,351,-2.5584 -モノ,もの,1310,1310,468,-3.9802 -ホウ,方,1310,1310,48,-4.5756 -ケド,けど,301,301,17,-2.4058 -ガ,が,299,299,468,-2.0560 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ダケ,だけ,338,338,468,-2.4590 -ノデ,ので,316,316,48,-2.3278 -コト,事,1310,1310,282,-4.9393 -「,「,6,6,352,-2.0388 -ニ,に,151,151,282,-1.3747 -カラ,から,297,297,356,-2.3083 -、,、,10,10,151,-1.2267 -ヨウ,よう,1312,1312,169,-2.2533 -ナ,な,275,275,287,-2.5224 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -メ,目,1310,1310,332,-5.6594 -ワケ,わけ,1310,1310,268,-5.7101 -タメ,ため,1313,1313,282,-3.3063 -ベキ,べき,539,539,468,-2.9960 -タチ,立ち,1285,1285,356,-5.2862 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_819.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_819.csv deleted file mode 100644 index 201974e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_819.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ヨウ,よう,1312,1312,169,-2.2533 -ト,と,164,164,282,-1.8068 -ホウ,方,1310,1310,48,-4.5756 -タメ,ため,1313,1313,282,-3.3063 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,299,299,468,-2.0560 -ナド,など,344,344,442,-2.2760 -「,「,6,6,352,-2.0388 -コト,事,1310,1310,282,-4.9393 -ニ,に,151,151,282,-1.3747 -ト,と,309,309,282,-2.2641 -タ,多,1285,1285,351,-4.9124 -トキ,時,1313,1313,282,-4.1345 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -トイウ,という,173,173,468,-2.2416 -ナカ,中,1313,1313,282,-4.2761 -メ,目,1310,1310,332,-5.6594 -ワケ,わけ,1310,1310,268,-5.7101 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -カ,か,359,359,468,-1.9789 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_82.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_82.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_82.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_820.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_820.csv deleted file mode 100644 index 210ab72..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_820.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -カ,か,359,359,468,-1.9789 -、,、,10,10,151,-1.2267 -デ,で,149,149,468,-1.6148 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -。,。,8,8,61,-1.3115 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -」,」,7,7,121,-2.0554 -レロ,れろ,874,874,468,-2.2332 -ス,す,602,602,481,-2.2579 -ノデ,ので,316,316,48,-2.3278 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_821.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_821.csv deleted file mode 100644 index 271c3f9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_821.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ン,ん,515,515,437,-2.4192 -ウカ,うか,506,359,17,-6.6916 -デ,で,149,149,468,-1.6148 -タ,た,435,435,282,-1.4167 -サン,さん,1302,1302,420,-2.7569 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ト,と,150,150,282,-2.0125 -・,・,5,5,203,-2.7687 -イ,い,930,930,356,-2.0866 -「,「,6,6,352,-2.0388 -ウト,うと,506,164,17,-7.3953 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_822.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_822.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_822.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_823.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_823.csv deleted file mode 100644 index 8453c9a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_823.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ナイ,ない,473,473,468,-1.8979 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -ズ,ず,487,487,282,-2.5580 -セル,せる,870,870,43,-4.3284 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ン,ん,515,515,437,-2.4192 -ナイ,ない,482,482,468,-2.1746 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ナイヒト,ない人,473,1285,501,-5.9561 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -ナ,な,468,468,287,-2.1830 -タ,た,435,435,282,-1.4167 -レテイ,れてい,876,930,17,-7.5959 -サセル,させる,870,870,438,-6.9686 -ヌ,ぬ,484,484,17,-3.3915 -ラレテ,られて,876,307,17,-7.7370 -ラレタ,られた,876,435,17,-7.8755 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -ナイデス,ないです,473,460,17,-7.2367 -レマス,れます,876,491,17,-8.2381 -ナイカ,ないか,473,359,17,-7.2908 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_824.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_824.csv deleted file mode 100644 index 2ac8f10..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_824.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ナイ,ない,473,473,468,-1.8979 -ラレル,られる,870,870,471,-3.6838 -セル,せる,870,870,43,-4.3284 -レテ,れて,876,307,17,-6.2446 -ナイ,ない,482,482,468,-2.1746 -レタ,れた,876,435,17,-6.3748 -ズ,ず,487,487,282,-2.5580 -ン,ん,515,515,437,-2.4192 -ナク,なく,481,481,468,-2.5033 -サセ,させ,876,876,282,-6.9554 -ナクッ,なくっ,481,481,17,-2.7253 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -レテイ,れてい,876,930,17,-7.5959 -ラレテ,られて,876,307,17,-7.7370 -ラレタ,られた,876,435,17,-7.8755 -サセル,させる,870,870,438,-6.9686 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -レマス,れます,876,491,17,-8.2381 -レマシ,れまし,876,501,17,-8.3111 -レマシタ,れました,876,435,17,-8.3380 -ナイヒト,ない人,473,1285,501,-5.9561 -ラレテイル,られている,876,919,17,-8.5687 -セテイタダキ,せていただき,876,981,17,-8.6086 -レテイマス,れています,876,491,17,-8.6313 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_825.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_825.csv deleted file mode 100644 index 4ead265..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_825.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -ナイ,ない,473,473,468,-1.8979 -セル,せる,870,870,43,-4.3284 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -ズ,ず,487,487,282,-2.5580 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -レテイ,れてい,876,930,17,-7.5959 -ラレテ,られて,876,307,17,-7.7370 -ラレタ,られた,876,435,17,-7.8755 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -レマス,れます,876,491,17,-8.2381 -サセル,させる,870,870,438,-6.9686 -レマシ,れまし,876,501,17,-8.3111 -レマシタ,れました,876,435,17,-8.3380 -ラレテイル,られている,876,919,17,-8.5687 -セテイタダキ,せていただき,876,981,17,-8.6086 -ナク,なく,481,481,468,-2.5033 -レテイマス,れています,876,491,17,-8.6313 -セタ,せた,876,435,17,-8.6753 -レテオリ,れており,876,1197,17,-8.8431 -レテモ,れても,876,262,17,-8.8496 -ナクッ,なくっ,481,481,17,-2.7253 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_826.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_826.csv deleted file mode 100644 index b090431..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_826.csv +++ /dev/null @@ -1,30 +0,0 @@ -ガ,が,148,148,468,-1.4621 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -」,」,7,7,121,-2.0554 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -ト,と,164,164,282,-1.8068 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -トシテ,として,179,179,356,-2.2226 -レロ,れろ,874,874,468,-2.2332 -ウ,う,506,506,133,-2.2404 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_827.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_827.csv deleted file mode 100644 index a9c1dda..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_827.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -」,」,7,7,121,-2.0554 -シ,し,610,610,258,-1.5936 -シ,私,1285,1285,17,-4.2442 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -ナカ,中,1285,1285,282,-4.2761 -モ,も,262,262,468,-1.7239 -「,「,6,6,352,-2.0388 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -コノ,この,1315,1315,468,-3.0084 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -ソノ,その,1315,1315,468,-3.1000 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_828.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_828.csv deleted file mode 100644 index 25e95a2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_828.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -ネエ,ねえ,20,20,468,-2.2298 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ノ,の,368,368,408,-1.2458 -マス,ます,491,491,17,-1.8643 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -』,』,7,7,136,-3.5069 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ナイ,ない,20,20,468,-3.4755 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_829.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_829.csv deleted file mode 100644 index b930611..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_829.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -タリ,たり,360,360,451,-2.5700 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テクレル,てくれる,307,933,17,-7.5487 -テイク,ていく,307,992,17,-7.5930 -テシマイ,てしまい,307,1273,17,-7.6492 -テイナイ,ていない,307,473,17,-7.6534 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_83.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_83.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_83.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_830.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_830.csv deleted file mode 100644 index bab6720..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_830.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -イル,いる,919,919,468,-1.9884 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -ミル,みる,919,919,471,-5.2297 -タリ,たり,360,360,451,-2.5700 -テマス,てます,307,491,17,-6.9979 -クレル,くれる,919,919,17,-5.3621 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -スギル,すぎる,919,919,48,-5.4433 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -イ,い,930,930,356,-2.0866 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -テクレル,てくれる,307,933,17,-7.5487 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_831.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_831.csv deleted file mode 100644 index 8f1490f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_831.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タリ,たり,360,360,451,-2.5700 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -タガ,たが,435,299,17,-6.8350 -テクレ,てくれ,307,940,17,-7.0746 -タン,たん,435,1310,17,-6.8934 -テナイ,てない,307,473,17,-7.1177 -タコト,たこと,435,1310,17,-6.9351 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -タカラ,たから,435,297,17,-7.2365 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_832.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_832.csv deleted file mode 100644 index fa3cad0..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_832.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -イ,い,930,930,356,-2.0866 -ニ,に,151,151,282,-1.3747 -ナガラ,ながら,314,314,282,-2.7301 -イル,いる,919,919,468,-1.9884 -ソウ,そう,1301,1301,17,-2.6187 -ノ,の,368,368,408,-1.2458 -デ,で,308,308,468,-2.9431 -マスガ,ますが,491,299,17,-7.0677 -タク,たく,451,451,17,-3.0166 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -サ,さ,1304,1304,441,-2.8267 -ツツ,つつ,306,306,356,-3.2088 -マスヨ,ますよ,491,288,17,-7.3568 -タクッ,たくっ,451,451,17,-3.2814 -ジャ,じゃ,308,261,247,-3.4000 -ガ,が,148,148,468,-1.4621 -シ,私,1285,1285,17,-4.2442 -マスカ,ますか,491,359,17,-7.4921 -ヤスイ,やすい,113,113,48,-3.4181 -ナカ,中,1285,1285,282,-4.2761 -マスネ,ますね,491,279,17,-7.6686 -ミ,み,930,930,52,-4.5938 -「,「,6,6,352,-2.0388 -ハ,は,261,261,468,-1.3731 -マシタ,ました,501,435,17,-5.7646 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_833.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_833.csv deleted file mode 100644 index 433dd3e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_833.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -タイ,たい,444,444,17,-2.4250 -デス,です,460,460,17,-1.8655 -マシ,まし,501,501,17,-2.0043 -ナガラ,ながら,314,314,282,-2.7301 -イ,い,930,930,356,-2.0866 -ニ,に,151,151,282,-1.3747 -イル,いる,919,919,468,-1.9884 -タク,たく,451,451,17,-3.0166 -ソウ,そう,1301,1301,17,-2.6187 -タ,た,435,435,282,-1.4167 -タクッ,たくっ,451,451,17,-3.2814 -ツツ,つつ,306,306,356,-3.2088 -ケド,けど,301,301,17,-2.4058 -ナ,な,275,275,287,-2.5224 -ヤスイ,やすい,113,113,48,-3.4181 -」,」,7,7,121,-2.0554 -デ,で,308,308,468,-2.9431 -シ,し,517,517,258,-3.6249 -サ,さ,1304,1304,441,-2.8267 -ミ,み,930,930,52,-4.5938 -ジャ,じゃ,308,261,247,-3.4000 -ダシ,出し,1053,1053,258,-4.1710 -テ,て,307,307,356,-1.5059 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_834.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_834.csv deleted file mode 100644 index cb04f84..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_834.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -ナガラ,ながら,314,314,282,-2.7301 -「,「,6,6,352,-2.0388 -イ,い,930,930,356,-2.0866 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ツツ,つつ,306,306,356,-3.2088 -イル,いる,919,919,468,-1.9884 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -タ,多,1285,1285,351,-4.9124 -モ,も,262,262,468,-1.7239 -フクミ,含み,1285,1285,258,-4.9821 -ト,と,164,164,282,-1.8068 -トキ,時,1285,1285,282,-5.0461 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_835.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_835.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_835.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_836.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_836.csv deleted file mode 100644 index 60975e1..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_836.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -スキ,好き,1287,1287,66,-4.8632 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ヒツヨウ,必要,1287,1287,169,-4.9541 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -シ,私,1285,1285,17,-4.2442 -デ,で,149,149,468,-1.6148 -ナカ,中,1285,1285,282,-4.2761 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -カノウ,可能,1287,1287,169,-5.3740 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_837.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_837.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_837.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_838.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_838.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_838.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_839.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_839.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_839.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_84.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_84.csv deleted file mode 100644 index d8df0d4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_84.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ヲ,を,156,156,356,-1.4175 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -シ,私,1285,1285,17,-4.2442 -デ,で,149,149,468,-1.6148 -ナカ,中,1285,1285,282,-4.2761 -ガ,が,148,148,468,-1.4621 -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_840.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_840.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_840.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_841.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_841.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_841.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_842.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_842.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_842.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_843.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_843.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_843.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_844.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_844.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_844.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_845.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_845.csv deleted file mode 100644 index e8e0c68..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_845.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -ドモ,ども,313,313,495,-4.3036 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -リ,り,546,546,437,-3.6325 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_846.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_846.csv deleted file mode 100644 index 714ce52..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_846.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -、,、,10,10,151,-1.2267 -ノ,の,1310,1310,408,-2.7847 -」,」,7,7,121,-2.0554 -ニ,に,151,151,282,-1.3747 -ン,ん,1310,1310,437,-3.5653 -テ,て,307,307,356,-1.5059 -モノ,もの,1310,1310,468,-3.9802 -』,』,7,7,136,-3.5069 -シ,私,1285,1285,17,-4.2442 -ト,と,309,309,282,-2.2641 -ナカ,中,1285,1285,282,-4.2761 -ホウ,方,1310,1310,48,-4.5756 -ヨウ,よう,1312,1312,169,-2.2533 -・,・,5,5,203,-2.7687 -ベキ,べき,539,539,468,-2.9960 -ハ,は,261,261,468,-1.3731 -ヨ,よ,288,288,17,-2.1474 -タメ,ため,1313,1313,282,-3.3063 -コト,事,1310,1310,282,-4.9393 -ガ,が,299,299,468,-2.0560 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ワ,わ,291,291,36,-2.7424 -トキ,時,1285,1285,282,-5.0461 -ヲ,を,156,156,356,-1.4175 -…,…,5,5,184,-3.3301 -ト,と,164,164,282,-1.8068 - , ,9,9,44,-2.4705 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_847.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_847.csv deleted file mode 100644 index c37ad4e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_847.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ナイ,ない,473,473,468,-1.8979 -レル,れる,870,870,468,-2.2380 -ン,ん,515,515,437,-2.4192 -ズ,ず,487,487,282,-2.5580 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -バ,ば,318,318,282,-2.3431 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -タ,た,435,435,282,-1.4167 -ラレ,られ,876,876,356,-3.7371 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_848.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_848.csv deleted file mode 100644 index 38c7cd8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_848.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ヌ,ぬ,510,510,17,-4.2677 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_849.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_849.csv deleted file mode 100644 index ebcb9f2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_849.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -マス,ます,491,491,17,-1.8643 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -マシ,まし,501,501,17,-2.0043 -イ,い,930,930,356,-2.0866 -モ,も,262,262,468,-1.7239 -タ,た,435,435,282,-1.4167 -サ,さ,1304,1304,441,-2.8267 -ワ,わ,291,291,36,-2.7424 -ガ,が,148,148,468,-1.4621 -』,』,7,7,136,-3.5069 -テル,てる,307,919,17,-4.3303 -シ,し,610,610,258,-1.5936 -シ,し,517,517,258,-3.6249 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -タイ,たい,444,444,17,-2.4250 -イル,いる,919,919,468,-1.9884 -テ,て,307,930,356,-4.8756 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_85.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_85.csv deleted file mode 100644 index 37a7b43..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_85.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ノ,の,368,368,408,-1.2458 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_850.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_850.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_850.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_851.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_851.csv deleted file mode 100644 index 8685d36..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_851.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -レ,れ,876,876,468,-2.0223 -ネ,ね,279,279,47,-2.1699 -」,」,7,7,121,-2.0554 -ホウ,方,1310,1310,48,-4.5756 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -コト,事,1310,1310,282,-4.9393 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -シ,私,1285,1285,17,-4.2442 -ガ,が,299,299,468,-2.0560 -サン,さん,1302,1302,420,-2.7569 -ナカ,中,1285,1285,282,-4.2761 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_852.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_852.csv deleted file mode 100644 index 1033037..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_852.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -レ,れ,876,876,468,-2.0223 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -ノ,の,368,368,408,-1.2458 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ン,ん,515,515,437,-2.4192 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_853.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_853.csv deleted file mode 100644 index eaf605c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_853.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ヨ,よ,288,288,17,-2.1474 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ホウ,方,1310,1310,48,-4.5756 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_854.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_854.csv deleted file mode 100644 index 6134b39..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_854.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -タイ,たい,444,444,17,-2.4250 -シ,し,610,610,258,-1.5936 -アル,ある,772,772,481,-2.9588 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -イル,いる,919,919,468,-1.9884 -ナル,なる,772,772,471,-3.0967 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -サ,さ,1304,1304,441,-2.8267 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_855.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_855.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_855.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_856.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_856.csv deleted file mode 100644 index 9729c62..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_856.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -カ,か,359,359,468,-1.9789 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_857.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_857.csv deleted file mode 100644 index 35c1c72..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_857.csv +++ /dev/null @@ -1,30 +0,0 @@ -ベキ,べき,539,539,468,-2.9960 -カ,か,359,359,468,-1.9789 -イ,い,930,930,356,-2.0866 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -・,・,5,5,203,-2.7687 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -イル,いる,919,919,468,-1.9884 -テ,て,307,307,356,-1.5059 -ミ,み,930,930,52,-4.5938 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -…,…,5,5,184,-3.3301 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_858.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_858.csv deleted file mode 100644 index e4503c9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_858.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ン,ん,1310,1310,437,-3.5653 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -モノ,もの,1310,1310,468,-3.9802 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_859.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_859.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_859.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_86.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_86.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_86.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_860.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_860.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_860.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_861.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_861.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_861.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_862.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_862.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_862.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_863.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_863.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_863.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_864.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_864.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_864.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_865.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_865.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_865.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_866.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_866.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_866.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_867.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_867.csv deleted file mode 100644 index 5e1b0ce..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_867.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_868.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_868.csv deleted file mode 100644 index 874bb7a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_868.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -ニ,に,151,151,282,-1.3747 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヨ,よ,288,288,17,-2.1474 -ヤ,や,366,366,43,-2.1479 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_869.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_869.csv deleted file mode 100644 index 9c2fdc4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_869.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イイ,いい,37,37,17,-2.6886 -イイ,いい,131,131,17,-2.9419 -」,」,7,7,121,-2.0554 -ワタシ,私,1306,1306,17,-3.6243 -「,「,6,6,352,-2.0388 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -シ,私,1285,1285,17,-4.2442 - , ,9,9,44,-2.4705 -ナカ,中,1285,1285,282,-4.2761 -コノ,この,1315,1315,468,-3.0084 -ナニ,何,1306,1306,468,-4.3760 -ノ,の,368,368,408,-1.2458 -ソノ,その,1315,1315,468,-3.1000 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ソウ,そう,1301,1301,17,-2.6187 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_87.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_87.csv deleted file mode 100644 index 8d3d0f2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_87.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 -タノハ,たのは,435,261,17,-7.8083 -タンデス,たんです,435,460,17,-7.8112 -タモノ,たもの,435,1310,17,-7.8531 -タデス,たです,435,460,17,-7.8821 -タワ,たわ,435,291,17,-7.8942 -タホウガ,た方が,435,148,17,-7.9483 -、,、,10,10,151,-1.2267 -タネ,たね,435,279,17,-7.9527 -ノ,の,368,368,408,-1.2458 -タノカ,たのか,435,359,17,-7.9850 -タシ,たし,435,304,17,-7.9933 -。,。,8,8,61,-1.3115 -タノニ,たのに,435,317,17,-8.0426 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_870.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_870.csv deleted file mode 100644 index 37ef077..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_870.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ヨウ,よう,1312,1312,169,-2.2533 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ガ,が,299,299,468,-2.0560 -ト,と,309,309,282,-2.2641 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ホウ,方,1310,1310,48,-4.5756 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コト,事,1310,1310,282,-4.9393 -カ,か,359,359,468,-1.9789 -タメ,ため,1313,1313,282,-3.3063 -タ,多,1285,1285,351,-4.9124 -「,「,6,6,352,-2.0388 -フクミ,含み,1285,1285,258,-4.9821 -ナド,など,344,344,442,-2.2760 -トキ,時,1285,1285,282,-5.0461 -ニ,に,151,151,282,-1.3747 -トイウ,という,173,173,468,-2.2416 -ノ,の,368,368,408,-1.2458 -タチ,立ち,1285,1285,356,-5.2862 -メ,目,1310,1310,332,-5.6594 -カズ,数,1285,1285,387,-5.3011 -」,」,7,7,121,-2.0554 -ワケ,わけ,1310,1310,268,-5.7101 -キリ,切り,1285,1285,60,-5.3631 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_871.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_871.csv deleted file mode 100644 index bbe1f6f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_871.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ヨウ,よう,1312,1312,169,-2.2533 -ケド,けど,301,301,17,-2.4058 -ホウ,方,1310,1310,48,-4.5756 -タ,た,435,435,282,-1.4167 -タイ,たい,444,444,17,-2.4250 -デ,で,308,308,468,-2.9431 -コト,事,1310,1310,282,-4.9393 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ジャ,じゃ,308,261,247,-3.4000 -オオ,多,11,11,481,-4.5005 -ヨ,良,11,11,48,-4.5591 -クラ,くら,11,11,48,-4.7992 -タ,多,1285,1285,351,-4.9124 -メ,目,1310,1310,332,-5.6594 -フクミ,含み,1285,1285,258,-4.9821 -ワケ,わけ,1310,1310,268,-5.7101 -ノ,の,368,368,408,-1.2458 -トキ,時,1285,1285,282,-5.0461 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -タメ,ため,1313,1313,282,-3.3063 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_872.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_872.csv deleted file mode 100644 index 70eddff..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_872.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ウカ,うか,506,359,17,-6.6916 -ウト,うと,506,164,17,-7.3953 -ウネ,うね,506,279,17,-8.1285 -ウトシ,うとし,506,610,17,-8.3143 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ウト,うと,506,150,17,-8.5291 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ウナ,うな,506,275,17,-8.6345 -テ,て,307,307,356,-1.5059 -ウガ,うが,506,299,17,-8.6743 -ウカナ,うかな,506,275,17,-8.7244 -ウトスル,うとする,506,599,17,-8.7261 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ウケド,うけど,506,301,17,-8.9179 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ウトオモッテ,うと思って,506,307,17,-9.0501 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_873.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_873.csv deleted file mode 100644 index d99ee7c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_873.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ズ,ず,487,487,282,-2.5580 -ナク,なく,481,481,468,-2.5033 -レ,れ,876,876,468,-2.0223 -ナクッ,なくっ,481,481,17,-2.7253 -レル,れる,870,870,468,-2.2380 -ナイヒト,ない人,473,1285,501,-5.9561 -ラレ,られ,876,876,356,-3.7371 -ナイ,ない,482,482,468,-2.1746 -ン,ん,515,515,437,-2.4192 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -セル,せる,870,870,43,-4.3284 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナ,な,468,468,287,-2.1830 -ナイノデ,ないので,473,316,17,-7.8177 -ナイシ,ないし,473,304,17,-7.8919 -ナイヨウ,ないよう,473,1312,17,-7.9497 -ナイコト,ないこと,473,1310,17,-8.1142 -ヌ,ぬ,484,484,17,-3.3915 -ナインダ,ないんだ,473,453,17,-8.2222 -ナイデスカ,ないですか,473,359,17,-8.2266 -ナイヨ,ないよ,473,288,17,-8.2684 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_874.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_874.csv deleted file mode 100644 index c76df3e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_874.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ヨ,よ,288,288,17,-2.1474 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ネ,ね,279,279,47,-2.1699 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_875.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_875.csv deleted file mode 100644 index 88aeb84..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_875.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -」,」,7,7,121,-2.0554 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_876.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_876.csv deleted file mode 100644 index 11f5cf8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_876.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -タリ,たり,360,360,451,-2.5700 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タガ,たが,435,299,17,-6.8350 -チャウ,ちゃう,307,1253,17,-6.9038 -タン,たん,435,1310,17,-6.8934 -イ,い,930,930,356,-2.0866 -タコト,たこと,435,1310,17,-6.9351 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -タイ,たい,444,444,17,-2.4250 -テナイ,てない,307,473,17,-7.1177 -ソウ,そう,1301,1301,17,-2.6187 -テクダサイ,てください,307,1239,17,-7.1772 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_877.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_877.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_877.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_878.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_878.csv deleted file mode 100644 index ef9a7bf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_878.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ガ,が,148,148,468,-1.4621 -・,・,5,5,203,-2.7687 -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -ナ,な,454,454,287,-1.8607 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -ト,と,150,150,282,-2.0125 -ガ,が,299,299,468,-2.0560 -…,…,5,5,184,-3.3301 -ハ,は,261,261,468,-1.3731 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -テ,て,307,307,356,-1.5059 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_879.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_879.csv deleted file mode 100644 index 325c40b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_879.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_88.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_88.csv deleted file mode 100644 index a2ade33..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_88.csv +++ /dev/null @@ -1,30 +0,0 @@ -タリ,たり,360,360,451,-2.5700 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_880.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_880.csv deleted file mode 100644 index d7f0d76..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_880.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -ウ,う,506,506,133,-2.2404 -テ,て,307,307,356,-1.5059 -ネ,ね,279,279,47,-2.1699 -イル,いる,919,919,468,-1.9884 -イ,い,930,930,356,-2.0866 -レ,れ,876,876,468,-2.0223 -デ,で,308,308,468,-2.9431 -ジ,じ,507,507,331,-3.5475 -ン,ん,515,515,437,-2.4192 -ノ,の,368,368,408,-1.2458 -ジャ,じゃ,308,261,247,-3.4000 -。,。,8,8,61,-1.3115 -ソウ,そう,1282,1282,17,-4.0423 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -コト,こと,1310,1310,282,-2.6917 -ガ,が,148,148,468,-1.4621 -ナイ,ない,473,473,468,-1.8979 -ノ,の,1310,1310,408,-2.7847 -カァ,かぁ,264,264,80,-4.3217 -テル,てる,307,919,17,-4.3303 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ヤン,やん,514,514,420,-3.4991 -ト,と,164,164,282,-1.8068 -カー,かー,264,264,80,-4.6175 -ナ,な,454,454,287,-1.8607 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_881.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_881.csv deleted file mode 100644 index 58fa348..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_881.csv +++ /dev/null @@ -1,30 +0,0 @@ -レ,れ,876,876,468,-2.0223 -ラレ,られ,876,876,356,-3.7371 -レル,れる,870,870,468,-2.2380 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -ナイ,ない,473,473,468,-1.8979 -ン,ん,515,515,437,-2.4192 -ズ,ず,487,487,282,-2.5580 -セル,せる,870,870,43,-4.3284 -レテ,れて,876,307,17,-6.2446 -レタ,れた,876,435,17,-6.3748 -テ,て,307,307,356,-1.5059 -イ,い,930,930,356,-2.0866 -サセ,させ,876,876,282,-6.9554 -レテイル,れている,876,919,17,-7.1109 -セテ,せて,876,307,17,-7.2476 -レテイ,れてい,876,930,17,-7.5959 -ラレテ,られて,876,307,17,-7.7370 -タ,た,435,435,282,-1.4167 -ラレタ,られた,876,435,17,-7.8755 -レテイタ,れていた,876,435,17,-8.0815 -レテル,れてる,876,307,17,-8.0917 -ナイ,ない,482,482,468,-2.1746 -レマス,れます,876,491,17,-8.2381 -レマシ,れまし,876,501,17,-8.3111 -レマシタ,れました,876,435,17,-8.3380 -オ,お,560,560,437,-3.5014 -イル,いる,919,919,468,-1.9884 -オリ,おり,1197,1197,356,-2.6223 -ラレテイル,られている,876,919,17,-8.5687 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_882.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_882.csv deleted file mode 100644 index 2936a2a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_882.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_883.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_883.csv deleted file mode 100644 index 218d592..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_883.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -、,、,10,10,151,-1.2267 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -マシ,まし,501,501,17,-2.0043 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -テオリ,ており,307,1197,17,-7.2762 -テキタ,てきた,307,435,17,-7.2992 -タ,た,435,435,282,-1.4167 -ノ,の,368,368,408,-1.2458 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -イ,い,930,930,356,-2.0866 -テクレル,てくれる,307,933,17,-7.5487 -テイク,ていく,307,992,17,-7.5930 -テシマイ,てしまい,307,1273,17,-7.6492 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_884.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_884.csv deleted file mode 100644 index bd52cd4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_884.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_885.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_885.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_885.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_886.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_886.csv deleted file mode 100644 index b59ab81..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_886.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -モノ,もの,1310,1310,468,-3.9802 -ナカ,中,1285,1285,282,-4.2761 -カラ,から,297,297,356,-2.3083 -ヨウ,よう,1312,1312,169,-2.2533 -デ,で,149,149,468,-1.6148 -ホウ,方,1310,1310,48,-4.5756 -ト,と,164,164,282,-1.8068 -」,」,7,7,121,-2.0554 -ノデ,ので,316,316,48,-2.3278 -タ,多,1285,1285,351,-4.9124 -ノ,の,368,368,408,-1.2458 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -マシ,まし,501,501,17,-2.0043 -・,・,5,5,203,-2.7687 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -コト,事,1310,1310,282,-4.9393 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_887.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_887.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_887.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_888.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_888.csv deleted file mode 100644 index 5885f83..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_888.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -ワ,わ,291,291,36,-2.7424 -レル,れる,870,870,468,-2.2380 -タメ,ため,1313,1313,282,-3.3063 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ズ,ず,487,487,282,-2.5580 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -モ,も,262,262,468,-1.7239 -ラレル,られる,870,870,471,-3.6838 -ト,と,164,164,282,-1.8068 -デ,で,308,308,468,-2.9431 -テル,てる,307,919,17,-4.3303 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -トキ,時,1313,1313,282,-4.1345 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_889.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_889.csv deleted file mode 100644 index 50444e6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_889.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_89.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_89.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_89.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_890.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_890.csv deleted file mode 100644 index 0102c06..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_890.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -レル,れる,870,870,468,-2.2380 -ラレ,られ,876,876,356,-3.7371 -ズ,ず,487,487,282,-2.5580 -セ,せ,876,876,258,-4.2710 -ラレル,られる,870,870,471,-3.6838 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ナイ,ない,482,482,468,-2.1746 -セル,せる,870,870,43,-4.3284 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ナイヒト,ない人,473,1285,501,-5.9561 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -レテ,れて,876,307,17,-6.2446 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_891.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_891.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_891.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_892.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_892.csv deleted file mode 100644 index 6cbff5a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_892.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_893.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_893.csv deleted file mode 100644 index 17df057..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_893.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -ソウ,そう,1282,1282,17,-4.0423 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -テイル,ている,307,919,17,-5.6469 -モ,も,262,262,468,-1.7239 -ドウ,どう,1282,1282,468,-4.6684 -ナ,な,454,454,287,-1.8607 -テイ,てい,307,930,17,-5.8308 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -タリ,たり,360,360,451,-2.5700 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_894.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_894.csv deleted file mode 100644 index f8f2cbe..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_894.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -ナ,な,454,454,287,-1.8607 -ノ,の,368,368,408,-1.2458 -デ,で,458,458,468,-1.9218 -マシ,まし,501,501,17,-2.0043 -ダ,だ,453,453,471,-1.9457 -」,」,7,7,121,-2.0554 -イ,い,930,930,356,-2.0866 -。,。,8,8,61,-1.3115 -シャ,者,1298,1298,42,-4.9865 -デス,です,460,460,17,-1.8655 -ナガラ,ながら,314,314,282,-2.7301 -ハ,は,261,261,468,-1.3731 -マエ,前,1298,1298,282,-5.2420 -ソウ,そう,1301,1301,17,-2.6187 -タチ,たち,1298,1298,252,-5.3419 -キリ,切り,1298,1298,60,-5.3631 -トウ,等,1298,1298,486,-5.4565 -ラ,ら,1298,1298,344,-5.5475 -メ,目,1298,1298,332,-5.5838 -ナイ,内,1298,1298,397,-5.6065 -ヨウ,用,1298,1298,319,-5.6263 -ニ,に,151,151,282,-1.3747 -キョウ,強,1298,1298,351,-5.7181 -ユキ,行き,1298,1298,271,-5.7579 -ケイ,系,1298,1298,340,-5.7712 -ガワ,側,1298,1298,468,-5.7751 -セイ,性,1298,1298,351,-5.8347 -カ,家,1298,1298,97,-5.8385 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_895.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_895.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_895.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_896.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_896.csv deleted file mode 100644 index 627b5be..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_896.csv +++ /dev/null @@ -1,30 +0,0 @@ -イイ,いい,37,37,17,-2.6886 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_897.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_897.csv deleted file mode 100644 index 9158ffd..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_897.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -ト,と,164,164,282,-1.8068 -モノ,もの,1310,1310,468,-3.9802 -カラ,から,297,297,356,-2.3083 -、,、,10,10,151,-1.2267 -ノデ,ので,316,316,48,-2.3278 -ヨウ,よう,1312,1312,169,-2.2533 -ノ,の,368,368,408,-1.2458 -ヨ,よ,288,288,17,-2.1474 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ホウ,方,1310,1310,48,-4.5756 -カ,か,359,359,468,-1.9789 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -シ,し,304,304,258,-2.5363 -コト,事,1310,1310,282,-4.9393 -タ,多,1285,1285,351,-4.9124 -・,・,5,5,203,-2.7687 -ワ,わ,291,291,36,-2.7424 -」,」,7,7,121,-2.0554 -ネ,ね,279,279,47,-2.1699 -フクミ,含み,1285,1285,258,-4.9821 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_898.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_898.csv deleted file mode 100644 index 2444824..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_898.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,275,275,287,-2.5224 -ネ,ね,279,279,47,-2.1699 -ナァ,なぁ,275,275,420,-4.2969 -ノ,の,282,282,408,-2.8118 -ハ,は,261,261,468,-1.3731 -ナア,なあ,275,275,17,-5.2398 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ヨ,よ,288,288,17,-2.1474 -カ,か,359,359,468,-1.9789 -テ,て,307,307,356,-1.5059 -ネン,ねん,281,281,331,-3.6938 -ト,と,309,309,282,-2.2641 -ネェ,ねぇ,279,279,420,-5.8764 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ダケ,だけ,338,338,468,-2.4590 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ヤ,や,366,366,43,-2.1479 -ガ,が,148,148,468,-1.4621 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ッテ,って,167,167,17,-2.3603 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_899.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_899.csv deleted file mode 100644 index 053884d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_899.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -。,。,8,8,61,-1.3115 -テル,てる,307,919,17,-4.3303 -マス,ます,491,491,17,-1.8643 -ネ,ね,279,279,47,-2.1699 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -テ,て,307,930,356,-4.8756 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_9.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_9.csv deleted file mode 100644 index 46abe69..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_9.csv +++ /dev/null @@ -1,30 +0,0 @@ - , ,9,9,44,-2.4705 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -「,「,6,6,352,-2.0388 -・,・,5,5,203,-2.7687 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -ワタシ,私,1306,1306,17,-3.6243 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -コレ,これ,1306,1306,468,-3.8073 -キリ,切り,1285,1285,60,-5.3631 -ソレ,それ,1306,1306,468,-3.8293 -ナ,名,1285,1285,454,-5.3730 -…,…,5,5,184,-3.3301 -ミ,見,1285,1285,52,-5.3943 -コノ,この,1315,1315,468,-3.0084 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -ト,と,164,164,282,-1.8068 -アソビ,遊び,1285,1285,290,-5.5478 -ソノ,その,1315,1315,468,-3.1000 -マタ,また,555,555,468,-3.4936 -メ,目,1285,1285,332,-5.6594 -ムラ,村,1285,1285,489,-5.7051 -キョウ,強,1285,1285,351,-5.7181 -デキ,出来,1285,1285,268,-5.7335 -シュウ,州,1285,1285,272,-5.7511 -ユキ,行き,1285,1285,271,-5.7579 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_90.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_90.csv deleted file mode 100644 index 1bb5735..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_90.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -ナイ,ない,473,473,468,-1.8979 -シ,し,610,610,258,-1.5936 -、,、,10,10,151,-1.2267 -ハ,は,261,261,468,-1.3731 -テル,てる,307,919,17,-4.3303 -アル,ある,772,772,481,-2.9588 -モ,も,262,262,468,-1.7239 -ナル,なる,772,772,471,-3.0967 -テ,て,307,930,356,-4.8756 -・,・,5,5,203,-2.7687 -アリ,あり,788,788,481,-3.1265 -スル,する,599,599,481,-1.9113 -ナリ,なり,788,788,471,-3.2643 -…,…,5,5,184,-3.3301 -テイル,ている,307,919,17,-5.6469 -デキル,できる,619,619,481,-4.0489 -テイ,てい,307,930,17,-5.8308 -。,。,8,8,61,-1.3115 -ナク,なく,481,481,468,-2.5033 -「,「,6,6,352,-2.0388 -デキ,でき,625,625,481,-4.3005 -ネ,ね,279,279,47,-2.1699 -ナクッ,なくっ,481,481,17,-2.7253 -ミ,見,625,625,52,-4.5511 -〜,〜,5,5,244,-4.0997 -イル,いる,619,619,468,-4.6741 -」,」,7,7,121,-2.0554 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_900.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_900.csv deleted file mode 100644 index 1b0c63b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_900.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_901.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_901.csv deleted file mode 100644 index f2cd8fa..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_901.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -レル,れる,870,870,468,-2.2380 -ナイ,ない,482,482,468,-2.1746 -ラレ,られ,876,876,356,-3.7371 -ノ,の,368,368,408,-1.2458 -ズ,ず,487,487,282,-2.5580 -セ,せ,876,876,258,-4.2710 -ナイヒト,ない人,473,1285,501,-5.9561 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -タ,た,435,435,282,-1.4167 -。,。,8,8,61,-1.3115 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ラレル,られる,870,870,471,-3.6838 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_902.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_902.csv deleted file mode 100644 index 63f469a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_902.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヨ,よ,288,288,17,-2.1474 -シ,し,610,610,258,-1.5936 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -」,」,7,7,121,-2.0554 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ネ,ね,279,279,47,-2.1699 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 -ナク,なく,36,36,468,-2.1850 -トシテ,として,179,179,356,-2.2226 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_903.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_903.csv deleted file mode 100644 index b3ccfe5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_903.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -モ,も,262,262,468,-1.7239 -カ,か,359,359,468,-1.9789 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_904.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_904.csv deleted file mode 100644 index 57b0895..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_904.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -マシ,まし,501,501,17,-2.0043 -マス,ます,491,491,17,-1.8643 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -タリ,たり,360,360,451,-2.5700 -ソウ,そう,1301,1301,17,-2.6187 -テイル,ている,307,919,17,-5.6469 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テイ,てい,307,930,17,-5.8308 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -マシタ,ました,501,435,17,-5.7646 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -タンダ,たんだ,435,453,17,-7.5585 -テイマス,ています,307,491,17,-6.7459 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -チャウ,ちゃう,307,1253,17,-6.9038 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_905.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_905.csv deleted file mode 100644 index 4dd8fa6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_905.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -ナ,な,12,12,468,-2.1172 -ナ,な,275,275,287,-2.5224 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_906.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_906.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_906.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_907.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_907.csv deleted file mode 100644 index 8db2861..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_907.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -モノ,もの,1310,1310,468,-3.9802 -ノデ,ので,316,316,48,-2.3278 -ヨウ,よう,1312,1312,169,-2.2533 -カラ,から,297,297,356,-2.3083 -ホウ,方,1310,1310,48,-4.5756 -カ,か,359,359,468,-1.9789 -ヨ,よ,288,288,17,-2.1474 -、,、,10,10,151,-1.2267 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コト,事,1310,1310,282,-4.9393 -ノ,の,368,368,408,-1.2458 -ガ,が,299,299,468,-2.0560 -ネ,ね,279,279,47,-2.1699 -」,」,7,7,121,-2.0554 -マデ,まで,355,355,143,-2.3294 -タ,多,1285,1285,351,-4.9124 -ガ,が,148,148,468,-1.4621 -タメ,ため,1313,1313,282,-3.3063 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -シ,し,304,304,258,-2.5363 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_908.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_908.csv deleted file mode 100644 index 846a737..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_908.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナ,な,275,275,287,-2.5224 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ヨ,よ,288,288,17,-2.1474 -ナァ,なぁ,275,275,420,-4.2969 -テ,て,307,307,356,-1.5059 -ワ,わ,291,291,36,-2.7424 -ン,ん,1310,1310,437,-3.5653 -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ノ,の,282,282,408,-2.8118 -ガ,が,148,148,468,-1.4621 -デ,で,308,308,468,-2.9431 -モノ,もの,1310,1310,468,-3.9802 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ノデ,ので,316,316,48,-2.3278 -ナア,なあ,275,275,17,-5.2398 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -シ,し,304,304,258,-2.5363 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_909.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_909.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_909.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_91.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_91.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_91.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_910.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_910.csv deleted file mode 100644 index 91a20e2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_910.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ウカ,うか,506,359,17,-6.6916 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_911.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_911.csv deleted file mode 100644 index 5d866ab..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_911.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ナイ,ない,482,482,468,-2.1746 -ズ,ず,487,487,282,-2.5580 -ナイヒト,ない人,473,1285,501,-5.9561 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイノデ,ないので,473,316,17,-7.8177 -ナイシ,ないし,473,304,17,-7.8919 -ナカッタ,なかった,480,435,17,-6.9392 -ナイヨウ,ないよう,473,1312,17,-7.9497 -ナイコト,ないこと,473,1310,17,-8.1142 -ナインダ,ないんだ,473,453,17,-8.2222 -ナイデスカ,ないですか,473,359,17,-8.2266 -ナイヨ,ないよ,473,288,17,-8.2684 -ナイノ,ないの,473,282,17,-8.2774 -ナイデショウ,ないでしょう,473,506,17,-8.4052 -ナイカナ,ないかな,473,275,17,-8.4854 -ナイカト,ないかと,473,164,17,-8.5228 -ナインデス,ないんです,473,460,17,-8.5765 -ナイノニ,ないのに,473,317,17,-8.6436 -ナイヨウニ,ないように,473,329,17,-8.6970 -ナイデショウカ,ないでしょうか,473,359,17,-8.7078 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_912.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_912.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_912.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_913.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_913.csv deleted file mode 100644 index a11a2ae..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_913.csv +++ /dev/null @@ -1,30 +0,0 @@ -・,・,5,5,203,-2.7687 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -…,…,5,5,184,-3.3301 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_914.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_914.csv deleted file mode 100644 index 8c41d11..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_914.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -マシ,まし,501,501,17,-2.0043 -マス,ます,491,491,17,-1.8643 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -タリ,たり,360,360,451,-2.5700 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -タコト,たこと,435,1310,17,-6.9351 -テイマス,ています,307,491,17,-6.7459 -マシタ,ました,501,435,17,-5.7646 -チャウ,ちゃう,307,1253,17,-6.9038 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -テマス,てます,307,491,17,-6.9979 -タカラ,たから,435,297,17,-7.2365 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -タト,たと,435,164,17,-7.3867 -テクダサイ,てください,307,1239,17,-7.1772 -タヨ,たよ,435,288,17,-7.4214 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_915.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_915.csv deleted file mode 100644 index 2b338a5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_915.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -バイイ,ばいい,318,131,17,-8.3265 -タ,た,435,435,282,-1.4167 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ハ,は,261,261,468,-1.3731 -テル,てる,307,919,17,-4.3303 -。,。,8,8,61,-1.3115 -バイイノ,ばいいの,318,1310,17,-9.4603 -バイイン,ばいいん,318,1310,17,-9.6003 -テ,て,307,930,356,-4.8756 -バト,ばと,318,164,17,-9.6212 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -ニ,に,151,151,282,-1.3747 -バトオモイ,ばと思い,318,832,17,-10.0809 -バイイノカ,ばいいのか,318,359,17,-10.0964 -バイイ,ばいい,318,19,17,-10.1547 -バイイカ,ばいいか,318,359,17,-10.1567 -バイイノニ,ばいいのに,318,317,17,-10.1854 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_916.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_916.csv deleted file mode 100644 index 0e5fdb4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_916.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_917.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_917.csv deleted file mode 100644 index eb490d9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_917.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イイ,いい,37,37,17,-2.6886 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ワタシ,私,1306,1306,17,-3.6243 -ト,と,164,164,282,-1.8068 -シ,私,1285,1285,17,-4.2442 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -アル,ある,772,772,481,-2.9588 -ナカ,中,1285,1285,282,-4.2761 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -コレ,これ,1306,1306,468,-3.8073 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ソレ,それ,1306,1306,468,-3.8293 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_918.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_918.csv deleted file mode 100644 index ac9714b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_918.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -』,』,7,7,136,-3.5069 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -コト,こと,1310,1310,282,-2.6917 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_919.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_919.csv deleted file mode 100644 index 636f248..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_919.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ト,と,164,164,282,-1.8068 -モノ,もの,1310,1310,468,-3.9802 -ガ,が,299,299,468,-2.0560 -カラ,から,297,297,356,-2.3083 -ト,と,309,309,282,-2.2641 -、,、,10,10,151,-1.2267 -ノデ,ので,316,316,48,-2.3278 -ホウ,方,1310,1310,48,-4.5756 -ヨ,よ,288,288,17,-2.1474 -カ,か,359,359,468,-1.9789 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヨウ,よう,1312,1312,169,-2.2533 -コト,事,1310,1310,282,-4.9393 -ケド,けど,301,301,17,-2.4058 -タメ,ため,1313,1313,282,-3.3063 -」,」,7,7,121,-2.0554 -ガ,が,148,148,468,-1.4621 -ダケ,だけ,338,338,468,-2.4590 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -・,・,5,5,203,-2.7687 -トキ,時,1285,1285,282,-5.0461 -シ,し,304,304,258,-2.5363 -ノ,の,368,368,408,-1.2458 -トイウ,という,173,173,468,-2.2416 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_92.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_92.csv deleted file mode 100644 index e0539e6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_92.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -ハ,は,261,261,468,-1.3731 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ミタイ,みたい,1311,1311,66,-2.8295 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ダ,だ,453,453,471,-1.9457 -。,。,8,8,61,-1.3115 -タ,多,1285,1285,351,-4.9124 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -フクミ,含み,1285,1285,258,-4.9821 -ガ,が,148,148,468,-1.4621 -トキ,時,1285,1285,282,-5.0461 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -ト,と,164,164,282,-1.8068 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_920.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_920.csv deleted file mode 100644 index d0dfb52..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_920.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -、,、,10,10,151,-1.2267 -タ,た,435,435,282,-1.4167 -ト,と,309,309,282,-2.2641 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -サン,さん,1302,1302,420,-2.7569 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ノ,の,368,368,408,-1.2458 -ン,ん,1310,1310,437,-3.5653 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_921.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_921.csv deleted file mode 100644 index 5884438..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_921.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -ノ,の,282,282,408,-2.8118 -モノ,もの,1310,1310,468,-3.9802 -?,?,1317,1317,17,-2.1596 -デ,で,308,308,468,-2.9431 -ホウ,方,1310,1310,48,-4.5756 -ナ,な,275,275,287,-2.5224 -、,、,10,10,151,-1.2267 -ジャ,じゃ,308,261,247,-3.4000 -コト,事,1310,1310,282,-4.9393 -ガ,が,148,148,468,-1.4621 -ジャン,じゃん,508,508,80,-3.4019 -ノニ,のに,317,317,17,-2.7966 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -テ,て,307,307,356,-1.5059 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ヨ,よ,288,288,17,-2.1474 -メ,目,1310,1310,332,-5.6594 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ワケ,わけ,1310,1310,268,-5.7101 -ケド,けど,301,301,17,-2.4058 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_922.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_922.csv deleted file mode 100644 index a7f6e49..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_922.csv +++ /dev/null @@ -1,30 +0,0 @@ -ズ,ず,487,487,282,-2.5580 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_923.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_923.csv deleted file mode 100644 index 2dda5f7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_923.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -」,」,7,7,121,-2.0554 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -ヤ,や,366,366,43,-2.1479 -デシ,でし,466,466,17,-2.1485 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_924.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_924.csv deleted file mode 100644 index 450a6a5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_924.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ン,ん,515,515,437,-2.4192 -デス,です,460,460,17,-1.8655 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ウカ,うか,506,359,17,-6.6916 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_925.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_925.csv deleted file mode 100644 index dea69e3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_925.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ナイヒト,ない人,473,1285,501,-5.9561 -ン,ん,515,515,437,-2.4192 -レル,れる,870,870,468,-2.2380 -レ,れ,876,876,468,-2.0223 -ズ,ず,487,487,282,-2.5580 -ナイ,ない,482,482,468,-2.1746 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイノデ,ないので,473,316,17,-7.8177 -ナイシ,ないし,473,304,17,-7.8919 -ナイヨウ,ないよう,473,1312,17,-7.9497 -ラレル,られる,870,870,471,-3.6838 -ナイコト,ないこと,473,1310,17,-8.1142 -ナインダ,ないんだ,473,453,17,-8.2222 -ナイデスカ,ないですか,473,359,17,-8.2266 -ナイヨ,ないよ,473,288,17,-8.2684 -ナイノ,ないの,473,282,17,-8.2774 -ラレ,られ,876,876,356,-3.7371 -ナイデショウ,ないでしょう,473,506,17,-8.4052 -ナイカナ,ないかな,473,275,17,-8.4854 -ナイカト,ないかと,473,164,17,-8.5228 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_926.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_926.csv deleted file mode 100644 index 915fb0d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_926.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ヨ,よ,288,288,17,-2.1474 -ガ,が,148,148,468,-1.4621 -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -デシ,でし,466,466,17,-2.1485 -アル,ある,403,403,481,-2.1570 -ナイ,ない,482,482,468,-2.1746 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_927.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_927.csv deleted file mode 100644 index ec0950d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_927.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -デ,で,308,308,468,-2.9431 -ヨ,よ,288,288,17,-2.1474 -イ,い,930,930,356,-2.0866 -ジャ,じゃ,308,261,247,-3.4000 -ワ,わ,291,291,36,-2.7424 -ト,と,164,164,282,-1.8068 -ウ,う,506,506,133,-2.2404 -ク,く,993,993,331,-3.6465 -オ,お,560,560,437,-3.5014 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -レ,れ,876,876,468,-2.0223 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -・,・,5,5,203,-2.7687 -シ,し,517,517,258,-3.6249 -モ,も,262,262,468,-1.7239 -ナ,な,275,275,287,-2.5224 -テル,てる,307,919,17,-4.3303 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ゴ,ご,560,560,78,-4.1942 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_928.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_928.csv deleted file mode 100644 index a54fac5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_928.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -モ,も,262,262,468,-1.7239 -カ,か,359,359,468,-1.9789 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -・,・,5,5,203,-2.7687 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ネ,ね,279,279,47,-2.1699 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_929.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_929.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_929.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_93.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_93.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_93.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_930.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_930.csv deleted file mode 100644 index 7d30dba..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_930.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -テル,てる,307,919,17,-4.3303 -、,、,10,10,151,-1.2267 -テ,て,307,930,356,-4.8756 -タイ,たい,444,444,17,-2.4250 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テイル,ている,307,919,17,-5.6469 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -タコト,たこと,435,1310,17,-6.9351 -テイ,てい,307,930,17,-5.8308 -タリ,たり,360,360,451,-2.5700 -タケド,たけど,435,301,17,-7.1281 -タノデ,たので,435,316,17,-7.1379 -タカラ,たから,435,297,17,-7.2365 -ネ,ね,279,279,47,-2.1699 -クダサイ,ください,1239,1239,17,-3.0904 -タト,たと,435,164,17,-7.3867 -タヨ,たよ,435,288,17,-7.4214 -タンダ,たんだ,435,453,17,-7.5585 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -タトキ,た時,435,1313,17,-7.6509 -タホウ,た方,435,1310,17,-7.7160 -タカ,たか,435,359,17,-7.7906 -タノデス,たのです,435,460,17,-7.7938 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_931.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_931.csv deleted file mode 100644 index 809b2e2..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_931.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -バイイ,ばいい,318,131,17,-8.3265 -テ,て,307,307,356,-1.5059 -バイイ,ばいい,318,37,17,-8.8957 -バナラナイ,ばならない,318,473,17,-9.0021 -バヨイ,ば良い,318,114,17,-9.0170 -ハ,は,261,261,468,-1.3731 -タ,た,435,435,282,-1.4167 -バイイノ,ばいいの,318,1310,17,-9.4603 -バイイン,ばいいん,318,1310,17,-9.6003 -バト,ばと,318,164,17,-9.6212 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -バサイワイ,ば幸い,318,1287,17,-9.9453 -バヨカッタ,ばよかった,318,435,17,-9.9486 -ニ,に,151,151,282,-1.3747 -バイイデス,ばいいです,318,460,17,-9.9501 -バサイワイデス,ば幸いです,318,460,17,-9.9804 -ヲ,を,156,156,356,-1.4175 -バイイト,ばいいと,318,164,17,-10.0034 -バヨイ,ばよい,318,114,17,-10.0180 -バオシエ,ば教え,318,625,17,-10.0356 -ガ,が,148,148,468,-1.4621 -バオシエテ,ば教えて,318,307,17,-10.0406 -バイケナイ,ばいけない,318,473,17,-10.0441 -バヨイノ,ば良いの,318,1310,17,-10.0451 -バトオモイ,ばと思い,318,832,17,-10.0809 -バイイノカ,ばいいのか,318,359,17,-10.0964 -バイイ,ばいい,318,19,17,-10.1547 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_932.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_932.csv deleted file mode 100644 index 9b70e23..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_932.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -イイ,いい,37,37,17,-2.6886 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ワタシ,私,1306,1306,17,-3.6243 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -コレ,これ,1306,1306,468,-3.8073 -ソレ,それ,1306,1306,468,-3.8293 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_933.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_933.csv deleted file mode 100644 index 0391bb4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_933.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -ン,ん,1310,1310,437,-3.5653 -ト,と,309,309,282,-2.2641 -モノ,もの,1310,1310,468,-3.9802 -カ,か,359,359,468,-1.9789 -シ,私,1285,1285,17,-4.2442 -、,、,10,10,151,-1.2267 -ナカ,中,1285,1285,282,-4.2761 -カラ,から,297,297,356,-2.3083 -ヨウ,よう,1312,1312,169,-2.2533 -ホウ,方,1310,1310,48,-4.5756 -ノデ,ので,316,316,48,-2.3278 -タ,多,1285,1285,351,-4.9124 -ヨ,よ,288,288,17,-2.1474 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コト,事,1310,1310,282,-4.9393 -ノ,の,368,368,408,-1.2458 -シ,し,304,304,258,-2.5363 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -?,?,1317,1317,17,-2.1596 -キリ,切り,1285,1285,60,-5.3631 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ダケ,だけ,338,338,468,-2.4590 -ッテ,って,167,167,17,-2.3603 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_934.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_934.csv deleted file mode 100644 index 0cc294d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_934.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ウカ,うか,506,359,17,-6.6916 -デス,です,460,460,17,-1.8655 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ン,ん,515,515,437,-2.4192 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ウト,うと,506,164,17,-7.3953 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_935.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_935.csv deleted file mode 100644 index 1a12b8a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_935.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ズ,ず,487,487,282,-2.5580 -ナイヒト,ない人,473,1285,501,-5.9561 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -ナイ,ない,482,482,468,-2.1746 -ナイノデ,ないので,473,316,17,-7.8177 -ナイシ,ないし,473,304,17,-7.8919 -ナイヨウ,ないよう,473,1312,17,-7.9497 -ナイコト,ないこと,473,1310,17,-8.1142 -ナインダ,ないんだ,473,453,17,-8.2222 -ナイデスカ,ないですか,473,359,17,-8.2266 -ナイヨ,ないよ,473,288,17,-8.2684 -ナイノ,ないの,473,282,17,-8.2774 -ナイデショウ,ないでしょう,473,506,17,-8.4052 -ナイカナ,ないかな,473,275,17,-8.4854 -ナイカト,ないかと,473,164,17,-8.5228 -ナインデス,ないんです,473,460,17,-8.5765 -ナイノニ,ないのに,473,317,17,-8.6436 -ナイヨウニ,ないように,473,329,17,-8.6970 -ナイデショウカ,ないでしょうか,473,359,17,-8.7078 -ナイノカ,ないのか,473,359,17,-8.7631 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_936.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_936.csv deleted file mode 100644 index 169232e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_936.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -デス,です,460,460,17,-1.8655 -ノ,の,368,368,408,-1.2458 -ダ,だ,453,453,471,-1.9457 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -コト,こと,1310,1310,282,-2.6917 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ト,と,164,164,282,-1.8068 -ノ,の,1310,1310,408,-2.7847 -モ,も,262,262,468,-1.7239 -。,。,8,8,61,-1.3115 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -アリガトウ,ありがとう,3,3,244,-3.6808 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -・,・,5,5,203,-2.7687 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_937.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_937.csv deleted file mode 100644 index f520ec7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_937.csv +++ /dev/null @@ -1,30 +0,0 @@ -ト,と,164,164,282,-1.8068 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -トオモイ,と思い,164,832,17,-6.5917 -トオモイマス,と思います,164,491,17,-6.7228 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -、,、,10,10,151,-1.2267 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -トオモウ,と思う,164,817,17,-6.9211 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_938.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_938.csv deleted file mode 100644 index a87500a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_938.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_939.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_939.csv deleted file mode 100644 index f749e6f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_939.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_94.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_94.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_94.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_940.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_940.csv deleted file mode 100644 index 0850a62..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_940.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -テル,てる,307,919,17,-4.3303 -、,、,10,10,151,-1.2267 -ヨ,よ,288,288,17,-2.1474 -テ,て,307,930,356,-4.8756 -」,」,7,7,121,-2.0554 -タリ,たり,360,360,451,-2.5700 -ナイ,ない,473,473,468,-1.8979 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -テイル,ている,307,919,17,-5.6469 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 -ソウ,そう,1301,1301,17,-2.6187 -ナイ,ない,482,482,468,-2.1746 -イロ,いろ,926,926,437,-2.1782 -ナ,な,468,468,287,-2.1830 -ナキ,なき,474,474,495,-2.1849 -ナシ,なし,475,475,258,-2.1849 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_941.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_941.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_941.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_942.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_942.csv deleted file mode 100644 index 041ae0d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_942.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ト,と,164,164,282,-1.8068 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -モノ,もの,1310,1310,468,-3.9802 -ガ,が,299,299,468,-2.0560 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -トイウ,という,173,173,468,-2.2416 -」,」,7,7,121,-2.0554 -ヨウ,よう,1312,1312,169,-2.2533 -ホウ,方,1310,1310,48,-4.5756 -タ,多,1285,1285,351,-4.9124 -タメ,ため,1313,1313,282,-3.3063 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -コト,事,1310,1310,282,-4.9393 -タチ,立ち,1285,1285,356,-5.2862 -カズ,数,1285,1285,387,-5.3011 -キリ,切り,1285,1285,60,-5.3631 -カラ,から,297,297,356,-2.3083 -カ,か,359,359,468,-1.9789 -ナ,名,1285,1285,454,-5.3730 -ミ,見,1285,1285,52,-5.3943 -ノデ,ので,316,316,48,-2.3278 -ジブン,自分,1285,1285,161,-5.4686 -ヒト,人,1285,1285,408,-5.4734 -アソビ,遊び,1285,1285,290,-5.5478 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_943.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_943.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_943.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_944.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_944.csv deleted file mode 100644 index 06c496e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_944.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_945.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_945.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_945.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_946.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_946.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_946.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_947.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_947.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_947.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_948.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_948.csv deleted file mode 100644 index d41216f..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_948.csv +++ /dev/null @@ -1,30 +0,0 @@ -イイ,いい,37,37,17,-2.6886 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -アル,ある,772,772,481,-2.9588 -ナル,なる,772,772,471,-3.0967 -イイ,いい,131,131,17,-2.9419 -オエエ,多え,19,19,481,-4.9407 -オオイ,多い,19,19,481,-4.9407 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -ヨイ,良い,19,19,48,-5.0931 -クレエ,くれえ,19,19,48,-5.2394 -「,「,6,6,352,-2.0388 -エエ,良え,19,19,48,-5.3016 -ワ,わ,291,291,36,-2.7424 -モンダイ,問題,1284,1284,468,-3.2769 -ソウ,そう,1282,1282,17,-4.0423 -タカイ,高い,19,19,351,-5.6450 -タケエ,高え,19,19,351,-5.6450 -タ,多,1285,1285,351,-4.9124 -フクミ,含み,1285,1285,258,-4.9821 -オオイッ,多いっ,19,19,481,-5.7351 -オオイー,多いい,19,19,481,-5.7358 -トキ,時,1285,1285,282,-5.0461 -・,・,5,5,203,-2.7687 -イイ,いい,19,19,17,-5.8433 -ヨイ,良い,114,114,48,-3.5243 -ワタシ,私,1306,1306,17,-3.6243 -ノ,の,368,368,408,-1.2458 -ナンカ,なんか,2,2,17,-4.0239 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_949.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_949.csv deleted file mode 100644 index ac7e617..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_949.csv +++ /dev/null @@ -1,30 +0,0 @@ -ワ,わ,291,291,36,-2.7424 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -イイ,いい,37,37,17,-2.6886 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_95.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_95.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_95.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_950.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_950.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_950.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_951.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_951.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_951.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_952.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_952.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_952.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_953.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_953.csv deleted file mode 100644 index 1015c45..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_953.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -ネ,ね,279,279,47,-2.1699 -カ,か,359,359,468,-1.9789 -ワ,わ,291,291,36,-2.7424 -ト,と,309,309,282,-2.2641 -ン,ん,1310,1310,437,-3.5653 -デ,で,149,149,468,-1.6148 -テ,て,307,307,356,-1.5059 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -、,、,10,10,151,-1.2267 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -モノ,もの,1310,1310,468,-3.9802 -ケド,けど,301,301,17,-2.4058 -ヨ,よ,288,288,17,-2.1474 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_954.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_954.csv deleted file mode 100644 index bbf70ae..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_954.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -ト,と,309,309,282,-2.2641 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ベキ,べき,539,539,468,-2.9960 -ネ,ね,279,279,47,-2.1699 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -カ,か,359,359,468,-1.9789 -ホウ,方,1310,1310,48,-4.5756 -コト,事,1310,1310,282,-4.9393 -ガ,が,299,299,468,-2.0560 -ヨ,よ,288,288,17,-2.1474 -」,」,7,7,121,-2.0554 -ヨウ,よう,1312,1312,169,-2.2533 -ニ,に,151,151,282,-1.3747 -ダケ,だけ,338,338,468,-2.4590 -トイウ,という,173,173,468,-2.2416 -ガ,が,148,148,468,-1.4621 -カラ,から,297,297,356,-2.3083 -メ,目,1310,1310,332,-5.6594 -ケド,けど,301,301,17,-2.4058 -ワケ,わけ,1310,1310,268,-5.7101 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ワ,わ,291,291,36,-2.7424 -ノデ,ので,316,316,48,-2.3278 -キ,気,1310,1310,48,-5.9822 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_955.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_955.csv deleted file mode 100644 index d6cabe3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_955.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -コト,こと,1310,1310,282,-2.6917 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -ノ,の,1310,1310,408,-2.7847 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ヨウ,よう,1312,1312,169,-2.2533 -」,」,7,7,121,-2.0554 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_956.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_956.csv deleted file mode 100644 index a4915e9..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_956.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ホウ,方,1310,1310,48,-4.5756 -ト,と,309,309,282,-2.2641 -コト,事,1310,1310,282,-4.9393 -メ,目,1310,1310,332,-5.6594 -ワケ,わけ,1310,1310,268,-5.7101 -ヨウ,よう,1312,1312,169,-2.2533 -タメ,ため,1313,1313,282,-3.3063 -カ,か,359,359,468,-1.9789 -キ,気,1310,1310,48,-5.9822 -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ンダ,んだ,1310,453,17,-6.1571 -ハズ,はず,1310,1310,282,-6.2989 -ノデ,ので,316,316,48,-2.3278 -ノハ,のは,1310,261,17,-6.3807 -ホウ,ほう,1310,1310,48,-6.3934 -キ,機,1310,1310,413,-6.4405 -ンデス,んです,1310,460,17,-6.4615 -ニ,に,151,151,282,-1.3747 -ト,と,164,164,282,-1.8068 -モノ,者,1310,1310,42,-6.5342 -モン,もん,1310,1310,437,-6.5423 -トイウ,という,173,173,468,-2.2416 -シ,私,1285,1285,17,-4.2442 -ノカ,のか,1310,359,17,-6.6048 -ナカ,中,1285,1285,282,-4.2761 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_957.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_957.csv deleted file mode 100644 index 99d0ff7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_957.csv +++ /dev/null @@ -1,30 +0,0 @@ -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -。,。,8,8,61,-1.3115 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -、,、,10,10,151,-1.2267 -ホウ,方,1310,1310,48,-4.5756 -ト,と,309,309,282,-2.2641 -」,」,7,7,121,-2.0554 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -コト,事,1310,1310,282,-4.9393 -トイウ,という,173,173,468,-2.2416 -ニ,に,151,151,282,-1.3747 -ノ,の,368,368,408,-1.2458 -タメ,ため,1313,1313,282,-3.3063 -ト,と,164,164,282,-1.8068 -タ,多,1285,1285,351,-4.9124 -ハ,は,261,261,468,-1.3731 -フクミ,含み,1285,1285,258,-4.9821 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -トキ,時,1285,1285,282,-5.0461 -テ,て,307,307,356,-1.5059 -カ,か,359,359,468,-1.9789 -シ,し,610,610,258,-1.5936 -シカ,しか,257,257,268,-2.7748 -デ,で,149,149,468,-1.6148 -メ,目,1310,1310,332,-5.6594 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_958.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_958.csv deleted file mode 100644 index e5c0d20..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_958.csv +++ /dev/null @@ -1,30 +0,0 @@ -ダ,だ,453,453,471,-1.9457 -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -デ,で,458,458,468,-1.9218 -ハ,は,261,261,468,-1.3731 -アル,ある,403,403,481,-2.1570 -ノ,の,368,368,408,-1.2458 -ナ,な,454,454,287,-1.8607 -モ,も,262,262,468,-1.7239 -ヲ,を,156,156,356,-1.4175 -シ,し,610,610,258,-1.5936 -ナイ,ない,473,473,468,-1.8979 -・,・,5,5,203,-2.7687 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -マデ,まで,355,355,143,-2.3294 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -デ,で,308,308,468,-2.9431 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_959.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_959.csv deleted file mode 100644 index 9153d80..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_959.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -。,。,8,8,61,-1.3115 -ウカ,うか,506,359,17,-6.6916 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -ウト,うと,506,164,17,-7.3953 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -・,・,5,5,203,-2.7687 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_96.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_96.csv deleted file mode 100644 index 8285c45..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_96.csv +++ /dev/null @@ -1,30 +0,0 @@ -デス,です,460,460,17,-1.8655 -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -・,・,5,5,203,-2.7687 -ノ,の,1310,1310,408,-2.7847 -?,?,1317,1317,17,-2.1596 -ノ,の,368,368,408,-1.2458 -ケド,けど,301,301,17,-2.4058 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -…,…,5,5,184,-3.3301 -ン,ん,1310,1310,437,-3.5653 -、,、,10,10,151,-1.2267 -カラ,から,147,147,356,-1.9960 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,多,1285,1285,351,-4.9124 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ヨ,よ,288,288,17,-2.1474 -ガ,が,148,148,468,-1.4621 -フクミ,含み,1285,1285,258,-4.9821 -テ,て,307,307,356,-1.5059 -トキ,時,1285,1285,282,-5.0461 -モノ,もの,1310,1310,468,-3.9802 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -カラ,から,297,297,356,-2.3083 -〜,〜,5,5,244,-4.0997 -モ,も,262,262,468,-1.7239 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_960.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_960.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_960.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_961.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_961.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_961.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_962.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_962.csv deleted file mode 100644 index da5731c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_962.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -タ,た,435,435,282,-1.4167 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ヨウ,よう,1312,1312,169,-2.2533 -サン,さん,1302,1302,420,-2.7569 -ヲ,を,156,156,356,-1.4175 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -」,」,7,7,121,-2.0554 -ハ,は,261,261,468,-1.3731 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_963.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_963.csv deleted file mode 100644 index b64fc0b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_963.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -デ,で,308,308,468,-2.9431 -デス,です,460,460,17,-1.8655 -コノ,この,1315,1315,468,-3.0084 -ダ,だ,453,453,471,-1.9457 -ソノ,その,1315,1315,468,-3.1000 -ジャ,じゃ,308,261,247,-3.4000 -ナ,な,454,454,287,-1.8607 -ハ,は,261,261,468,-1.3731 -イウ,言う,818,818,481,-2.9646 -デキ,でき,625,625,481,-4.3005 -イウ,いう,818,818,471,-3.2986 -ミ,見,625,625,52,-4.5511 -オナジ,同じ,1315,1315,468,-4.5628 -ナク,なく,481,481,468,-2.5033 -カ,か,359,359,468,-1.9789 -ソンナ,そんな,1315,1315,161,-4.6627 -ネ,ね,279,279,47,-2.1699 -デ,で,308,930,468,-4.9557 -ナクッ,なくっ,481,481,17,-2.7253 -イ,い,625,625,356,-4.9123 -ソウ,そう,1282,1282,17,-4.0423 -イ,い,930,930,356,-2.0866 -アル,ある,772,772,481,-2.9588 -モウ,もう,1272,1272,468,-3.4032 -ナイヒト,ない人,473,1285,501,-5.9561 -カンガエ,考え,625,625,52,-5.1086 -デ,出,625,625,249,-5.1376 -ナル,なる,772,772,471,-3.0967 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_964.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_964.csv deleted file mode 100644 index eaf1976..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_964.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ナイヒト,ない人,473,1285,501,-5.9561 -レ,れ,876,876,468,-2.0223 -タ,た,435,435,282,-1.4167 -、,、,10,10,151,-1.2267 -ナイ,ない,482,482,468,-2.1746 -ナイデス,ないです,473,460,17,-7.2367 -ナイカ,ないか,473,359,17,-7.2908 -ナイノ,ないの,473,1310,17,-7.4397 -ナイト,ないと,473,309,17,-7.4458 -」,」,7,7,121,-2.0554 -ナイン,ないん,473,1310,17,-7.6099 -ナイト,ないと,473,164,17,-7.6415 -ノ,の,368,368,408,-1.2458 -ナイケド,ないけど,473,301,17,-7.6827 -ナイカラ,ないから,473,297,17,-7.6872 -。,。,8,8,61,-1.3115 -ト,と,164,164,282,-1.8068 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ナキ,なき,474,474,495,-2.1849 -ナイノデ,ないので,473,316,17,-7.8177 -ヲ,を,156,156,356,-1.4175 -シ,私,1285,1285,17,-4.2442 -ダ,だ,453,453,471,-1.9457 -ナイシ,ないし,473,304,17,-7.8919 -ナカ,中,1285,1285,282,-4.2761 -ナイヨウ,ないよう,473,1312,17,-7.9497 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_965.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_965.csv deleted file mode 100644 index 5809362..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_965.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -ナイヒト,ない人,473,1285,501,-5.9561 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_966.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_966.csv deleted file mode 100644 index d0c3699..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_966.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -ナク,なく,481,481,468,-2.5033 -ナクッ,なくっ,481,481,17,-2.7253 -ナイヒト,ない人,473,1285,501,-5.9561 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -ナイデス,ないです,473,460,17,-7.2367 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_967.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_967.csv deleted file mode 100644 index 7c96a1e..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_967.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_968.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_968.csv deleted file mode 100644 index 01493d3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_968.csv +++ /dev/null @@ -1,30 +0,0 @@ -ヨ,よ,288,288,17,-2.1474 -。,。,8,8,61,-1.3115 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_969.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_969.csv deleted file mode 100644 index e0b57f3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_969.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ヨ,よ,288,288,17,-2.1474 -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -」,」,7,7,121,-2.0554 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_97.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_97.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_97.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_970.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_970.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_970.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_971.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_971.csv deleted file mode 100644 index 61294fc..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_971.csv +++ /dev/null @@ -1,30 +0,0 @@ -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -、,、,10,10,151,-1.2267 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_972.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_972.csv deleted file mode 100644 index b40ad88..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_972.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 -。,。,8,8,61,-1.3115 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -』,』,7,7,136,-3.5069 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_973.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_973.csv deleted file mode 100644 index 9b9bce3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_973.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -ウ,う,506,506,133,-2.2404 -テ,て,307,930,356,-4.8756 -デス,です,460,460,17,-1.8655 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -マス,ます,491,491,17,-1.8643 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -ツ,つ,370,370,437,-3.3939 -テミ,てみ,307,930,17,-7.2116 -タノ,たの,435,1310,17,-6.5362 -テオリ,ており,307,1197,17,-7.2762 -タヒト,た人,435,1285,17,-6.5473 -テキタ,てきた,307,435,17,-7.2992 -ノ,の,368,368,408,-1.2458 -デ,で,308,308,468,-2.9431 -テテ,てて,307,307,17,-7.3913 -コト,こと,1310,1310,282,-2.6917 -テクル,てくる,307,897,17,-7.4581 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_974.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_974.csv deleted file mode 100644 index ff3b428..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_974.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -デ,で,308,308,468,-2.9431 -テモ,ても,307,262,17,-6.4044 -ジャ,じゃ,308,261,247,-3.4000 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -タリ,たり,360,360,451,-2.5700 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 -タガ,たが,435,299,17,-6.8350 -テオリ,ており,307,1197,17,-7.2762 -タン,たん,435,1310,17,-6.8934 -テキタ,てきた,307,435,17,-7.2992 -タコト,たこと,435,1310,17,-6.9351 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_975.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_975.csv deleted file mode 100644 index 6817706..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_975.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -テイマス,ています,307,491,17,-6.7459 -。,。,8,8,61,-1.3115 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -チャウ,ちゃう,307,1253,17,-6.9038 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -テナイ,てない,307,473,17,-7.1177 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -テクダサイ,てください,307,1239,17,-7.1772 -テミ,てみ,307,930,17,-7.2116 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_976.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_976.csv deleted file mode 100644 index 6d571ee..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_976.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -テイマス,ています,307,491,17,-6.7459 -タノ,たの,435,1310,17,-6.5362 -チャウ,ちゃう,307,1253,17,-6.9038 -タヒト,た人,435,1285,17,-6.5473 -テマス,てます,307,491,17,-6.9979 -テクレ,てくれ,307,940,17,-7.0746 -テナイ,てない,307,473,17,-7.1177 -テクダサイ,てください,307,1239,17,-7.1772 -タガ,たが,435,299,17,-6.8350 -テミ,てみ,307,930,17,-7.2116 -タン,たん,435,1310,17,-6.8934 -テオリ,ており,307,1197,17,-7.2762 -タコト,たこと,435,1310,17,-6.9351 -テキタ,てきた,307,435,17,-7.2992 -テテ,てて,307,307,17,-7.3913 -テクル,てくる,307,897,17,-7.4581 -テシマウ,てしまう,307,1253,17,-7.4632 -テイルノ,ているの,307,1310,17,-7.4871 -タリ,たり,360,360,451,-2.5700 -タケド,たけど,435,301,17,-7.1281 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_977.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_977.csv deleted file mode 100644 index d02af7b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_977.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -テル,てる,307,919,17,-4.3303 -ハ,は,261,261,468,-1.3731 -テ,て,307,930,356,-4.8756 -デシ,でし,466,466,17,-2.1485 -ノ,の,368,368,408,-1.2458 -ヲ,を,156,156,356,-1.4175 -ガ,が,299,299,468,-2.0560 -テイル,ている,307,919,17,-5.6469 -テイ,てい,307,930,17,-5.8308 -デス,です,460,460,17,-1.8655 -ニ,に,151,151,282,-1.3747 -ト,と,164,164,282,-1.8068 -、,、,10,10,151,-1.2267 -」,」,7,7,121,-2.0554 -タノ,たの,435,1310,17,-6.5362 -タヒト,た人,435,1285,17,-6.5473 -テモ,ても,307,262,17,-6.4044 -テイタ,ていた,307,435,17,-6.4827 -タガ,たが,435,299,17,-6.8350 -タン,たん,435,1310,17,-6.8934 -テキ,てき,307,904,17,-6.6849 -テタ,てた,307,435,17,-6.6927 -タコト,たこと,435,1310,17,-6.9351 -テイマス,ています,307,491,17,-6.7459 -チャウ,ちゃう,307,1253,17,-6.9038 -タケド,たけど,435,301,17,-7.1281 -。,。,8,8,61,-1.3115 -タノデ,たので,435,316,17,-7.1379 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_978.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_978.csv deleted file mode 100644 index eb27080..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_978.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -タイ,たい,444,444,17,-2.4250 -ナ,な,454,454,287,-1.8607 -」,」,7,7,121,-2.0554 -ナ,な,275,275,287,-2.5224 -。,。,8,8,61,-1.3115 -デ,で,149,149,468,-1.6148 -ハ,は,261,261,468,-1.3731 -ナイ,ない,473,473,468,-1.8979 -ナガラ,ながら,314,314,282,-2.7301 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -ノ,の,368,368,408,-1.2458 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 -マシ,まし,499,499,17,-2.1355 -アル,ある,403,403,481,-2.1570 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_979.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_979.csv deleted file mode 100644 index 29c2b56..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_979.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -タイ,たい,444,444,17,-2.4250 -、,、,10,10,151,-1.2267 -マシ,まし,501,501,17,-2.0043 -ナガラ,ながら,314,314,282,-2.7301 -ノ,の,368,368,408,-1.2458 -タ,た,435,435,282,-1.4167 -タク,たく,451,451,17,-3.0166 -ナ,な,454,454,287,-1.8607 -マスガ,ますが,491,299,17,-7.0677 -タクッ,たくっ,451,451,17,-3.2814 -タイヒト,たい人,444,1285,17,-6.3754 -テ,て,307,307,356,-1.5059 -マスヨ,ますよ,491,288,17,-7.3568 -ナサイ,なさい,1237,1237,17,-3.6578 -マスカ,ますか,491,359,17,-7.4921 -マスネ,ますね,491,279,17,-7.6686 -ヲ,を,156,156,356,-1.4175 -マシタ,ました,501,435,17,-5.7646 -ナ,な,275,275,287,-2.5224 -マスヨネ,ますよね,491,279,17,-8.1272 -マスノデ,ますので,491,316,17,-8.3029 -マスヨウ,ますよう,491,1312,17,-8.3797 -マスシ,ますし,491,304,17,-8.5719 -マスヨウニ,ますように,491,329,17,-8.5732 -タイデス,たいです,444,460,17,-7.8752 -ニ,に,151,151,282,-1.3747 -タイト,たいと,444,164,17,-7.9701 -マスカラ,ますから,491,297,17,-8.7663 -」,」,7,7,121,-2.0554 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_98.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_98.csv deleted file mode 100644 index 9bb04d5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_98.csv +++ /dev/null @@ -1,30 +0,0 @@ -」,」,7,7,121,-2.0554 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -ダ,だ,453,453,471,-1.9457 -』,』,7,7,136,-3.5069 -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ナ,な,275,275,287,-2.5224 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -ガ,が,299,299,468,-2.0560 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_980.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_980.csv deleted file mode 100644 index 8b55986..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_980.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ヲ,を,156,156,356,-1.4175 -デ,で,458,458,468,-1.9218 -デス,です,460,460,17,-1.8655 -ナ,な,454,454,287,-1.8607 -ガ,が,148,148,468,-1.4621 -デシ,でし,466,466,17,-2.1485 -ハ,は,261,261,468,-1.3731 -ノ,の,368,368,408,-1.2458 -ガ,が,299,299,468,-2.0560 -マス,ます,491,491,17,-1.8643 -カラ,から,297,297,356,-2.3083 -タ,た,435,435,282,-1.4167 -コト,こと,1310,1310,282,-2.6917 -テ,て,307,307,356,-1.5059 -ノ,の,1310,1310,408,-2.7847 -ダ,だ,453,453,471,-1.9457 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ダッタ,だった,457,435,17,-6.5270 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_981.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_981.csv deleted file mode 100644 index 113dcf3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_981.csv +++ /dev/null @@ -1,30 +0,0 @@ -マス,ます,491,491,17,-1.8643 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -、,、,10,10,151,-1.2267 -アリガトウ,ありがとう,3,3,244,-3.6808 -タク,たく,451,451,17,-3.0166 -オハヨウ,おはよう,3,3,244,-4.9615 -タクッ,たくっ,451,451,17,-3.2814 -マシタ,ました,501,435,17,-5.7646 -ア,あ,3,3,437,-5.3660 -マァ,まぁ,3,3,420,-5.5918 -オツカレサマ,お疲れ様,3,3,244,-5.7343 -タイヒト,たい人,444,1285,17,-6.3754 -ホント,ほんと,3,3,80,-5.9021 -タ,た,435,435,282,-1.4167 -オメデトウ,おめでとう,3,3,244,-5.9893 -ハイ,はい,3,3,437,-6.0930 -ウン,うん,3,3,437,-6.1209 -ウ,う,3,3,133,-6.1570 -コンバンハ,こんばんは,3,3,420,-6.2078 -エ,え,3,3,99,-6.2141 -スミマセン,すみません,3,3,420,-6.2397 -マスガ,ますが,491,299,17,-7.0677 -コンニチハ,こんにちは,3,3,244,-6.2867 -ナルホド,なるほど,3,3,48,-6.3368 -アア,ああ,3,3,17,-6.4765 -ゴメンナサイ,ごめんなさい,3,3,420,-6.5153 -マスヨ,ますよ,491,288,17,-7.3568 -オハヨ,おはよ,3,3,501,-6.5748 -マ,ま,3,3,36,-6.6589 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_982.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_982.csv deleted file mode 100644 index aa54c08..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_982.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -マス,ます,491,491,17,-1.8643 -タ,た,435,435,282,-1.4167 -マシ,まし,501,501,17,-2.0043 -タイ,たい,444,444,17,-2.4250 -デ,で,458,458,468,-1.9218 -コノ,この,1315,1315,468,-3.0084 -ソノ,その,1315,1315,468,-3.1000 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ナガラ,ながら,314,314,282,-2.7301 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -タク,たく,451,451,17,-3.0166 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_983.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_983.csv deleted file mode 100644 index c33330c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_983.csv +++ /dev/null @@ -1,30 +0,0 @@ -タ,た,435,435,282,-1.4167 -テ,て,307,307,356,-1.5059 -デ,で,308,308,468,-2.9431 -ヘン,へん,512,512,437,-4.0467 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -マシ,まし,501,501,17,-2.0043 -。,。,8,8,61,-1.3115 -ジャ,じゃ,308,261,247,-3.4000 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -テル,てる,307,919,17,-4.3303 -バ,ば,318,318,282,-2.3431 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_984.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_984.csv deleted file mode 100644 index 7520475..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_984.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -ネ,ね,279,279,47,-2.1699 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 -」,」,7,7,121,-2.0554 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_985.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_985.csv deleted file mode 100644 index f48fb31..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_985.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -バ,ば,318,318,282,-2.3431 -ナイ,ない,473,473,468,-1.8979 -マス,ます,491,491,17,-1.8643 -タ,た,435,435,282,-1.4167 -テル,てる,307,919,17,-4.3303 -テ,て,307,930,356,-4.8756 -レ,れ,876,876,468,-2.0223 -ノ,の,368,368,408,-1.2458 -、,、,10,10,151,-1.2267 -レル,れる,870,870,468,-2.2380 -。,。,8,8,61,-1.3115 -ナイ,ない,482,482,468,-2.1746 -テイル,ている,307,919,17,-5.6469 -ニ,に,151,151,282,-1.3747 -ナ,な,275,275,287,-2.5224 -トカ,とか,364,364,17,-2.5396 -ガ,が,148,148,468,-1.4621 -テイ,てい,307,930,17,-5.8308 -デ,で,308,308,468,-2.9431 -ト,と,309,309,282,-2.2641 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ダ,だ,453,453,471,-1.9457 -モ,も,262,262,468,-1.7239 -ハ,は,261,261,468,-1.3731 -ト,と,164,164,282,-1.8068 -ナク,なく,481,481,468,-2.5033 -ヲ,を,156,156,356,-1.4175 -ナ,な,454,454,287,-1.8607 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_986.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_986.csv deleted file mode 100644 index c607198..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_986.csv +++ /dev/null @@ -1,30 +0,0 @@ -バ,ば,318,318,282,-2.3431 -テ,て,307,307,356,-1.5059 -ヨ,よ,288,288,17,-2.1474 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -ッテ,って,167,167,17,-2.3603 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -テル,てる,307,919,17,-4.3303 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_987.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_987.csv deleted file mode 100644 index 9713b63..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_987.csv +++ /dev/null @@ -1,30 +0,0 @@ -ワ,わ,291,291,36,-2.7424 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_988.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_988.csv deleted file mode 100644 index e582c39..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_988.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -イイ,いい,37,37,17,-2.6886 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_989.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_989.csv deleted file mode 100644 index e74be2a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_989.csv +++ /dev/null @@ -1,30 +0,0 @@ -ワ,わ,291,291,36,-2.7424 -・,・,5,5,203,-2.7687 -ハ,は,261,261,468,-1.3731 -…,…,5,5,184,-3.3301 -ヲ,を,156,156,356,-1.4175 -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -コト,こと,1310,1310,282,-2.6917 -シロ,しろ,608,608,437,-1.9456 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -ノ,の,1310,1310,408,-2.7847 -〜,〜,5,5,244,-4.0997 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_99.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_99.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_99.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_990.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_990.csv deleted file mode 100644 index c305544..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_990.csv +++ /dev/null @@ -1,30 +0,0 @@ -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_991.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_991.csv deleted file mode 100644 index 9c59db7..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_991.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -サ,さ,268,268,441,-3.2958 -ノ,の,368,368,408,-1.2458 -ン,ん,1310,1310,437,-3.5653 -ダ,だ,453,453,471,-1.9457 -シ,し,304,304,258,-2.5363 -モノ,もの,1310,1310,468,-3.9802 -ソウ,そう,1309,1309,17,-3.4742 -、,、,10,10,151,-1.2267 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -テル,てる,307,919,17,-4.3303 -デ,で,149,149,468,-1.6148 -ハ,は,261,261,468,-1.3731 -ホウ,方,1310,1310,48,-4.5756 -ト,と,164,164,282,-1.8068 -サ,さ,1304,1304,441,-2.8267 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_992.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_992.csv deleted file mode 100644 index 91b9261..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_992.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ト,と,309,309,282,-2.2641 -、,、,10,10,151,-1.2267 -ト,と,164,164,282,-1.8068 -ホウ,方,1310,1310,48,-4.5756 -カ,か,359,359,468,-1.9789 -タメ,ため,1313,1313,282,-3.3063 -トイウ,という,173,173,468,-2.2416 -ヨウ,よう,1312,1312,169,-2.2533 -コト,事,1310,1310,282,-4.9393 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -」,」,7,7,121,-2.0554 -ニ,に,151,151,282,-1.3747 -ノデ,ので,316,316,48,-2.3278 -ガ,が,299,299,468,-2.0560 -トキ,時,1313,1313,282,-4.1345 -ヨ,よ,288,288,17,-2.1474 -メ,目,1310,1310,332,-5.6594 -ナカ,中,1313,1313,282,-4.2761 -タ,多,1285,1285,351,-4.9124 -ワケ,わけ,1310,1310,268,-5.7101 -シカ,しか,257,257,268,-2.7748 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 -カラ,から,297,297,356,-2.3083 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_993.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_993.csv deleted file mode 100644 index 64edc60..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_993.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -、,、,10,10,151,-1.2267 -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ノ,の,368,368,408,-1.2458 -ヨ,よ,288,288,17,-2.1474 -ン,ん,1310,1310,437,-3.5653 -タ,た,435,435,282,-1.4167 -ガ,が,148,148,468,-1.4621 -シ,私,1285,1285,17,-4.2442 -ナカ,中,1285,1285,282,-4.2761 -シ,し,610,610,258,-1.5936 -ネ,ね,279,279,47,-2.1699 -」,」,7,7,121,-2.0554 -モノ,もの,1310,1310,468,-3.9802 -・,・,5,5,203,-2.7687 -カラ,から,297,297,356,-2.3083 -カ,か,359,359,468,-1.9789 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_994.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_994.csv deleted file mode 100644 index e688f0c..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_994.csv +++ /dev/null @@ -1,30 +0,0 @@ -。,。,8,8,61,-1.3115 -コト,こと,1310,1310,282,-2.6917 -ノ,の,1310,1310,408,-2.7847 -ン,ん,1310,1310,437,-3.5653 -モノ,もの,1310,1310,468,-3.9802 -ト,と,309,309,282,-2.2641 -ト,と,164,164,282,-1.8068 -カ,か,359,359,468,-1.9789 -ホウ,方,1310,1310,48,-4.5756 -、,、,10,10,151,-1.2267 -ヨウ,よう,1312,1312,169,-2.2533 -コト,事,1310,1310,282,-4.9393 -タメ,ため,1313,1313,282,-3.3063 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -カラ,から,297,297,356,-2.3083 -ナカ,中,1285,1285,282,-4.2761 -ニ,に,151,151,282,-1.3747 -ノデ,ので,316,316,48,-2.3278 -ヨ,よ,288,288,17,-2.1474 -トイウ,という,173,173,468,-2.2416 -」,」,7,7,121,-2.0554 -シカ,しか,257,257,268,-2.7748 -ガ,が,299,299,468,-2.0560 -メ,目,1310,1310,332,-5.6594 -ワケ,わけ,1310,1310,268,-5.7101 -タ,多,1285,1285,351,-4.9124 -トキ,時,1313,1313,282,-4.1345 -フクミ,含み,1285,1285,258,-4.9821 -トキ,時,1285,1285,282,-5.0461 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_995.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_995.csv deleted file mode 100644 index 3c27fc5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_995.csv +++ /dev/null @@ -1,30 +0,0 @@ -テ,て,307,307,356,-1.5059 -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ワ,わ,291,291,36,-2.7424 -ン,ん,515,515,437,-2.4192 -」,」,7,7,121,-2.0554 -ソウ,そう,1282,1282,17,-4.0423 -ノ,の,368,368,408,-1.2458 -シ,私,1285,1285,17,-4.2442 -。,。,8,8,61,-1.3115 -ナカ,中,1285,1285,282,-4.2761 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -バ,ば,318,318,282,-2.3431 -モ,も,262,262,468,-1.7239 -ドウ,どう,1282,1282,468,-4.6684 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_996.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_996.csv deleted file mode 100644 index 7e38ee3..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_996.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ノ,の,368,368,408,-1.2458 -ニ,に,151,151,282,-1.3747 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -。,。,8,8,61,-1.3115 -マス,ます,491,491,17,-1.8643 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -ウカ,うか,506,359,17,-6.6916 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -・,・,5,5,203,-2.7687 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -イ,い,930,930,356,-2.0866 -ト,と,363,363,282,-2.1096 -ナ,な,12,12,468,-2.1172 -ナウ,なう,32,32,468,-2.1172 -ナカレ,なかれ,30,30,468,-2.1172 -ナキ,なき,22,22,468,-2.1172 -ナシ,なし,24,24,468,-2.1172 -ニ,に,329,329,282,-2.1199 -マセ,ませ,497,497,17,-2.1344 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_997.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_997.csv deleted file mode 100644 index 1b0c63b..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_997.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_998.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_998.csv deleted file mode 100644 index 2898df4..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_998.csv +++ /dev/null @@ -1,30 +0,0 @@ -ウ,う,506,506,133,-2.2404 -ノ,の,368,368,408,-1.2458 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ウカ,うか,506,359,17,-6.6916 -ガ,が,148,148,468,-1.4621 -・,・,5,5,203,-2.7687 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -カ,か,359,359,468,-1.9789 -モ,も,262,262,468,-1.7239 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -ナイ,ない,473,473,468,-1.8979 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -!,!,1318,1318,244,-1.9828 -イル,いる,919,919,468,-1.9884 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 -レ,れ,876,876,468,-2.0223 -「,「,6,6,352,-2.0388 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_999.csv b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_999.csv deleted file mode 100644 index 227420d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/Dictionary/p/pc_999.csv +++ /dev/null @@ -1,30 +0,0 @@ -ナイ,ない,473,473,468,-1.8979 -レ,れ,876,876,468,-2.0223 -、,、,10,10,151,-1.2267 -ノ,の,368,368,408,-1.2458 -イル,いる,919,919,468,-1.9884 -。,。,8,8,61,-1.3115 -ハ,は,261,261,468,-1.3731 -ニ,に,151,151,282,-1.3747 -タ,た,435,435,282,-1.4167 -ヲ,を,156,156,356,-1.4175 -ガ,が,148,148,468,-1.4621 -テ,て,307,307,356,-1.5059 -シ,し,610,610,258,-1.5936 -デ,で,149,149,468,-1.6148 -ズ,ず,487,487,282,-2.5580 -モ,も,262,262,468,-1.7239 -ト,と,164,164,282,-1.8068 -ナ,な,454,454,287,-1.8607 -マス,ます,491,491,17,-1.8643 -デス,です,460,460,17,-1.8655 -スル,する,599,599,481,-1.9113 -デ,で,458,458,468,-1.9218 -サ,さ,605,605,441,-1.9359 -シロ,しろ,608,608,437,-1.9456 -ダ,だ,453,453,471,-1.9457 -カ,か,359,359,468,-1.9789 -!,!,1318,1318,244,-1.9828 -カラ,から,147,147,356,-1.9960 -マシ,まし,501,501,17,-2.0043 -ト,と,150,150,282,-2.0125 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E13.1.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E13.1.txt deleted file mode 100644 index 93c963a..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E13.1.txt +++ /dev/null @@ -1,1828 +0,0 @@ -😀️ えがお,かお,すまいる,にっこり,にっこりわらう,にっこり笑う,わらう,笑う,笑顔,顔 -😃️ えがお,かお,すまいる,わーい,笑顔,顔 -😄️ えがお,かお,すまいる,わーい,笑顔,顔 -😁️ えがお,かお,すまいる,にやっとわらう,にやっと笑う,わらい,わらう,笑う,笑顔,顔 -😆️ うれしい,えがお,かお,きゃー,すまいる,まんぞく,嬉しい,満足,笑顔,顔 -😅️ あせ,えがお,かお,すまいる,ひやあせ,ひやあせえがお,わーい,冷や汗,冷や汗笑顔,笑顔,顔 -🤣️ えがお,かお,すまいる,わらいころげる,わらう,笑い転げる,笑う,笑顔,顔 -😂️ うれしなき,えがお,かお,すまいる,なみだ,わらい,わらう,嬉し泣き,涙,笑う,笑顔,顔 -🙂️ えがお,かお,すまいる,ほほえみ,ほほえむ,微笑み,微笑む,笑顔,顔 -🙃️ かお,さかさま,さかさまのかお,さかさまの顔,顔 -😉️ うぃんく,ういんく,かお,顔 -😊️ えがお,かお,すまいる,にこにこ,ほおをあからめる,ほほえみ,ほほをあからめる,めをほそめる,微笑み,目を細める,頬を赤らめる,顔 -😇️ えがお,かお,すまいる,てんし,てんしのわ,てんしのわがついたえがお,天使,天使の輪,天使の輪がついた笑顔,笑顔,顔 -🥰️ えがお,かお,はーとのえがお,はーとの笑顔,むちゅう,めろめろ,らぶ,夢中,笑顔,顔 -😍️ えがお,かお,すまいる,はーと,めがはーとのえがお,らぶ,目がはーとの笑顔,笑顔,顔 -🤩️ えがお,かお,すまいる,ほし,めがほしのえがお,星,目が星の笑顔,笑顔,顔 -😘️ かお,きす,ちゅっ,なげきっす,はーと,投げきっす,顔 -😗️ かお,きす,ちゅっ,顔 -☺️️ えがお,かお,すまいりー,すまいる,ほっ -😚️ かお,きす,ちゅっ,めをとじる,目を閉じる,顔 -😙️ えがお,かお,きす,すまいる,ちゅっ,にっこりきす,笑顔,顔 -🥲️ うれしなみだのかお,かお,かんどう,じーん,なく,なみだ,嬉し涙の顔,感動,泣く,涙,顔 -😋️ うまい,えがお,おいしい,かお,すまいる,にこにこ,にこにこぺろり,笑顔,顔 -😛️ かお,した,したをだしたかお,べろ,べー,舌,舌を出した顔,顔 -😜️ あっかんべー,かお,した,じょうだん,じょーく,べー,冗談,舌,顔 -🤪️ おかしい,かお,じょーく,ふざけ,ふざけたかお,ふざけた顔,顔 -😝️ かお,した,べろ,べー,めをとじてべー,わーい,目を閉じてべー,舌,顔 -🤑️ おかねのかお,お金の顔,かお,した,べろ,べー,舌,顔 -🤗️ えがお,かお,すまいる,はぐ,笑顔,顔 -🤭️ えがお,かお,くすくす,くちにてをあてたかお,すまいる,ないしょ,内緒,口に手を当てた顔,笑顔,顔 -🤫️ かお,しずかに,しっ,しー,しーっ,だまれ,静かに,顔 -🤔️ うーん,かお,かんがえちゅう,かんがえる,かんがえるかお,考える,考える顔,考え中,顔 -🤐️ かお,くち,くちちゃっく,ちゃっく,口,口ちゃっく,顔 -🤨️ うたがい,おどろき,かお,まゆをあげたかお,疑い,眉を上げた顔,顔,驚き -😐️ かお,ぽーかーふぇいす,むひょうじょう -😑️ かお,むかんじょう,むひょうじょう,無感情,無表情,顔 -😶️ かお,くちなし,くちのないかお,だんまり,ちんもく,口なし,口のない顔,沈黙,顔 -😶‍🌫️️ うわのそら,かお,くも,くものなか,くものなかのかお,こっそり,ほうしんじょうたい,ぼんやり,むちゅう -😏️ うすわらいをするかお,かお,にやり,ふっ,薄笑いをする顔,顔 -😒️ かお,しらけ,しらけた,しらける,じとめ,じと目,顔 -🙄️ うえをみるかお,うわめ,かお,上を見る顔,上目,顔 -😬️ いー,かお,しかめがお,しかめっつら,しかめっ面,しかめつら,しかめ面,しかめ顔,顔 -😮‍💨️ あきらめ,あんしん,いきをはくかお,かお,こきゅう,ためいき,ため息,はぁ,ひとあんしん,ほっとした,安心,息を吐く顔,顔 -🤥️ うそつき,うそつきのかお,うそつきの顔,かお,ぴのきおのかお,ぴのきおの顔,嘘つき,顔 -😌️ あんしん,かお,ほっ,ほっとしたかお,ほっとした顔,安心,顔 -😔️ かお,しょぼーん,しょんぼり,顔 -😪️ かお,ねむい,ねむる,ねる,寝る,眠い,眠る,顔 -🤤️ かお,よだれ,よだれをたらしたかお,よだれを垂らした顔,顔 -😴️ zzz,かお,ねむい,ねむる,ねる,寝る,眠い,眠る,顔 -😷️ かお,かぜ,かふんしょう,びょうき,ますく,ますくがお,ますく顔,病気,花粉症,顔,風邪 -🤒️ かお,かぜ,たいおんけい,ねつがあるかお,ねつをはかる,びょうき,体温計,熱がある顔,熱を測る,病気,顔,風邪 -🤕️ かお,けが,けがしてるかお,けがしてる顔,ほうたい,ほうたいをまいたかお,包帯,包帯を巻いた顔,顔 -🤢️ かお,きもちわるい,ぐあいのわるいかお,はきけをもよおしているかお,びょうき,具合の悪い顔,吐き気を催している顔,気持ち悪い,病気,顔 -🤮️ おうとするかお,かお,きもちわるい,げろ,びょうき,嘔吐する顔,気持ち悪い,病気,顔 -🤧️ かお,かぜ,かふんしょう,くしゃみ,くしゃみするかお,くしゃみする顔,花粉症,顔,風邪 -🥵️ あかいかお,あせ,あついかお,あつさ,ねっちゅうしょう,はつねつ,暑い顔,暑さ,汗,熱中症,発熱,赤い顔 -🥶️ あおいかお,こごえ,さむいかお,さむさ,しもやけ,つらら,凍え,寒い顔,寒さ,青い顔 -🥴️ うつろなめ,うつろな目,ちゅうどく,ふらふらのかお,ふらふらの顔,べろんべろん,ほろよい,ほろ酔い,めまい,中毒 -😵️ かお,ふらふら,めまい,顔 -😵‍💫️ うずまき,かお,ぐるぐる,こまる,こんらん,ふらふら,めがぐるぐる,めがまわる,めまい,めをまわしたかお,渦巻き,目がぐるぐる,目が回る,目を回した顔 -🤯️ あたまばくはつ,おどろき,かお,しょっく,ばくはつ,ぼんっ,爆発,頭爆発,顔,驚き -🤠️ かうがーる,かうぼーい,かうぼーいのかお,かうぼーいの顔,かお,顔 -🥳️ おいわい,お祝い,ぱーてぃー,ぱーてぃーのかお,ぱーてぃーの顔,ふえ,ぼうし,帽子,笛 -🥸️ かお,かそう,ひげ,へんそう,へんそうしたかお,めがね,仮装,変装,変装した顔,顔 -😎️ えがお,かお,くーる,さんぐらすでえがお,さんぐらすで笑顔,すまいる,笑顔,顔 -🤓️ おたく,かお,まにあ,めがね,顔 -🧐️ かお,かためがね,かんがえる,めがね,ものくるをつけたかお,ものくるを付けた顔,片眼鏡,考える,顔 -😕️ かお,こんらん,こんわく,困惑,混乱,顔 -😟️ かお,しんぱい,なやむかお,心配,悩む顔,顔 -🙁️ かお,こまった,しかめっつら,しかめつら,しかめ面,すこしこまった,すこしこまったかお,困った,少し困った,少し困った顔,顔 -☹️️ かお,こまった,こまったかお,しかめっつら,しかめつら -😮️ かお,きょうかん,くちがひらいたかお,へー,共感,口が開いた顔,顔 -😯️ おどろき,かお,びっくり,びっくりがお,びっくり顔,ぽかーん,顔,驚き -😲️ おどろき,かお,きょうがく,びっくり,びっくりしたかお,びっくりした顔,顔,驚き,驚愕 -😳️ あかくなる,かお,せきめん,赤くなる,赤面,顔 -🥺️ うったえるようなかお,かお,こいぬのめ,こんがん,なさけ,ぴえん,子犬の目,情け,懇願,訴えるような顔,顔 -😦️ あきれがお,あきれ顔,かお,しかめがお,しかめっつら,しかめつら,しかめ面,しかめ顔,ふほんい,ふまん,不本意,不満,顔 -😧️ かお,くのう,くもん,苦悩,苦悶,顔 -😨️ あおざめ,かお,がーん,青ざめ,顔 -😰️ あおざめ,かお,ひやあせ,ひやあせあおざめ,冷や汗,冷や汗青ざめ,青ざめ,顔 -😥️ あせ,かお,こまった,どうしよう,困った,汗,顔 -😢️ かお,かなしい,なきがお,なく,なみだ,悲しい,泣き顔,泣く,涙,顔 -😭️ おおなき,かお,かなしい,ごうきゅう,なく,なみだ,号泣,大泣き,悲しい,泣く,涙,顔 -😱️ かお,がーん,きょうふ,さけび,しょっく,叫び,恐怖,顔 -😖️ かお,こんらん,こんわく,こんわくしたかお,困惑,困惑した顔,混乱,顔 -😣️ かお,がまん,我慢,顔 -😞️ かお,がっかり,がっくり,しつぼうしたかお,失望した顔,顔 -😓️ あせ,かお,きもをひやした,ひやあせ,冷や汗,肝を冷やした,顔 -😩️ あきらめ,かお,つかれ,疲れ,顔 -😫️ かお,げんかい,つかれ,つかれた,疲れ,疲れた,限界,顔 -🥱️ あくびしたかお,あくびした顔,かお,たいくつ,つかれ,ねむい,ふあー,ふあ~,疲れ,眠い,退屈,顔 -😤️ かお,かちほこったかお,とくいげ,はないき,ふんっ,勝ち誇った顔,得意気,顔,鼻息 -😡️ いかり,かお,かんかん,げきど,ふくれっつら,ふくれっ面,ぷんぷん,怒り,激怒,顔 -😠️ いかり,かお,ぷんぷん,怒り,顔 -🤬️ いかり,かお,ののしり,ののしる,怒り,顔 -😈️ あくま,えがお,かお,すまいる,でびる,わらったあくま,悪魔,笑った悪魔,笑顔,顔 -👿️ あくま,おこったあくま,かお,かんかん,げきど,でびる,怒った悪魔,悪魔,激怒,顔 -💀️ かお,がいこつ,し,すかる,どくろ,死,顔,骸骨 -☠️️ かお,がいこつ,すかる,どくろ,どくろとほね -💩️ うんこ,うんち,かお,顔 -🤡️ かお,ぴえろ,ぴえろのかお,ぴえろの顔,顔 -👹️ おに,おめん,お面,かお,なまはげ,ばけもの,化け物,鬼 -👺️ おめん,お面,かお,てんぐ,天狗 -👻️ おばけ,お化け,ごーすと,ゆうれい,ゆーれい,幽霊 -👽️ いせいじん,うちゅうじん,えいりあん,かお,ぐれい,ゆーふぉー,宇宙人,ufo -👾️ いせいじん,いんべーだー,うちゅうじん,えいりあん,かお,もんすたー,宇宙人,異星人 -🤖️ かお,ろぼっと,顔 -😺️ えがお,かお,すまいる,にっこりわらうねこ,にっこり笑う猫,ねこ,猫,笑顔,顔 -😸️ えがお,かお,すまいる,にやっとわらうねこ,にやっと笑う猫,ねこ,わらう,猫,笑う,笑顔,顔 -😹️ うれしなきするねこ,えがお,かお,すまいる,なみだ,ねこ,嬉し泣きする猫,涙,猫,笑顔,顔 -😻️ えがお,かお,すまいる,ねこ,はーと,めがはーとのねこ,猫,目がはーとの猫,笑顔,顔 -😼️ かお,にやり,にやりとするねこ,にやりとする猫,ねこ,ふっ,猫,顔 -😽️ かお,きす,ちゅっ,ねこ,ねこのきす,猫,猫のきす,顔 -🙀️ かお,がーん,しょっく,ぜつぼうするねこ,ねこ,びっくり,猫,絶望する猫,顔 -😿️ かお,かなしい,ないているねこ,なみだ,ねこ,悲しい,泣いている猫,涙,猫,顔 -😾️ かお,ねこ,ふきげん,ふきげんなねこ,ぷんぷん,不機嫌,不機嫌な猫,猫,顔 -🙈️ さる,さんざる,みざる,三猿,猿,見ざる -🙉️ きかざる,さる,さんざる,三猿,猿,聞かざる -🙊️ いわざる,さる,さんざる,三猿,猿,言わざる -💌️ こいぶみ,てがみ,はーと,ふうとう,らぶれたー,封筒,恋文,手紙 -💘️ きゅーぴっど,はーと,はーとにや,はーとに矢,はーとのや,や,矢 -💝️ はーと,はーとにりぼん,ばれんたいん,ばれんたいんでー,りぼん -💖️ きらきら,きらきらはーと,はーと,ぴかぴかはーと -💗️ おおきくなるはーと,ときめき,どきどき,はーと,大きくなるはーと -💓️ どきどき,どきどきするはーと,はーと -💞️ かいてんするはーと,かわいい,はーと,回転するはーと -💕️ 2つのはーと,はーと,ふたつのはーと,らぶ -💟️ はーと,はーとでこ,はーとでこれーしょん -❣️️ えくすくらめーしょんまーく,はーと,はーとのびっくり,びっくりまーく -💔️ しつれん,はーと,はーとぶれいく,わかれた,われたはーと,別れた,割れたはーと,失恋 -❤️‍🔥️ あい,せいなるしんぞう,ねつい,はーと,ひのついた,ふんき,ほのお,もえるはーと,やるき -❤️‍🩹️ かいふくちゅう,きずついた,けが,しょうしん,ちりょうちゅう,つらい,どうじょう,はーと,ほうたい,ほうたいをまいたはーと -❤️️ あかいはーと,くろはーと,はーと,はーとまーく -🧡️ おれんじのはーと,はーと -💛️ きいろのはーと,はーと,黄色のはーと -💚️ はーと,みどりのはーと,緑のはーと -💙️ あおいはーと,はーと,青いはーと -💜️ はーと,むらさきのはーと,紫のはーと -🤎️ ちゃいろいはーと,はーと,茶色いはーと -🖤️ くろいはーと,はーと,黒いはーと -🤍️ しろいはーと,はーと,白いはーと -💋️ きす,きすまーく,くちびる,ちゅっ,唇 -💯️ 100,100てん,100てんまんてん,100点,100点満点,ぜんもんせいかい,ひゃくてんまんてん,まんてん,全問正解,満点,100 -💢️ #,いかり,むかっ,怒り,# -💥️ しょうげき,しょうとつ,どんっ,衝撃,衝突 -💫️ くらくら,ほし,めがまわる,星,目が回る -💦️ あせ,あせあせ,汗 -💨️ いそぐ,いそげ,だっしゅ,はしる,急ぐ,急げ,走る -🕳️️ あな -💬️ かいわ,かいわのふきだし,せりふ,ふきだし,会話,会話の吹き出し,吹き出し -👁️‍🗨️️ ふきだし,ふきだしのめ,め,もくげき -🗨️️ かいわ,せりふ,ふきだし,ふきだしひだり -🗯️️ いかりのふきだし,ふきだし -💭️ かんがえごと,くもがたのふきだし,ふきだし,もくもく,吹き出し,考え事,雲形の吹き出し -💤️ zzz,いびき,ぐーぐー,ねる,寝る,zzz -👋️ さよなら,て,てをふる,ばいばい,手,手を振る 👋🏻,👋🏼,👋🏽,👋🏾,👋🏿 -🤚️ て,てのこう,手,手の甲 🤚🏻,🤚🏼,🤚🏽,🤚🏾,🤚🏿 -🖐️️ て,ぱー,ひらいたて -✋️ きょしゅ,て,てのひら,ぱー -🖖️ すぽっく,て,ばるかんじん,ばるかんのあいさつ,ばるかんの挨拶,ばるかん人,手 🖖🏻,🖖🏼,🖖🏽,🖖🏾,🖖🏿 -👌️ ok,okの手,おっけー,おーけー,おーけーのて,て,手,ok 👌🏻,👌🏼,👌🏽,👌🏾,👌🏿 -🤌️ うわむきにすぼめたて,じぇすちゃー,すぼめる,て,ゆび,上向きにすぼめた手,手,指 🤌🏻,🤌🏼,🤌🏽,🤌🏾,🤌🏿 -🤏️ すこしだけ,ちょっと,つまんでいるゆび,つまんでいる指,て,ゆび,少しだけ,手,指 🤏🏻,🤏🏼,🤏🏽,🤏🏾,🤏🏿 -✌️️ ちょき,て,ぴーす,ぶいさいん -🤞️ て,ゆび,ゆびをくろす,手,指,指をくろす 🤞🏻,🤞🏼,🤞🏽,🤞🏾,🤞🏿 -🤟️ あいしてる,あいらぶゆー,て,愛してる,手 🤟🏻,🤟🏼,🤟🏽,🤟🏾,🤟🏿 -🤘️ きつね,つののゆびさいん,て,手,角の指さいん 🤘🏻,🤘🏼,🤘🏽,🤘🏾,🤘🏿 -🤙️ て,でんわ,でんわのあいず,でんわのじぇすちゃー,手,電話,電話のじぇすちゃー,電話の合図 🤙🏻,🤙🏼,🤙🏽,🤙🏾,🤙🏿 -👈️ て,ひだり,ひだりゆびさし,やじるし,ゆびさし,ゆびさす,左 -👉️ て,みぎ,みぎゆびさし,やじるし,ゆびさし,ゆびさす,右 -👆️ うえ,て,てのこううえゆびさし,てのこうじょうゆびさし,やじるし,ゆびさし,ゆびさす,上 -🖕️ うえ,たてたなかゆび,て,なかゆび,ゆびさし,上,中指,手,指差し,立てた中指 🖕🏻,🖕🏼,🖕🏽,🖕🏾,🖕🏿 -👇️ した,したゆびさし,て,やじるし,ゆびさし,ゆびさす,下 -☝️️ うえ,うえゆびさし,て,ひとさしゆび,ゆびさし -👍️ ok,うえ,おっけー,おやゆび,おやゆびさいん,おーけー,ぐっど,さむあっぷ,さむずあっぷ,て -👎️ ng,えぬじー,さむずだうん,した,だめ,て,ぶーいんぐ,ぼつ,ng -✊️ ぐー,げんこつ,て -👊️ ぐー,げんこつ,て,ぱんち,手 👊🏻,👊🏼,👊🏽,👊🏾,👊🏿 -🤛️ こぶし,て,ぱんち,ひだり,ひだりむきのこぶし,左,左向きのこぶし,手 🤛🏻,🤛🏼,🤛🏽,🤛🏾,🤛🏿 -🤜️ こぶし,て,ぱんち,みぎ,みぎむきのこぶし,右,右向きのこぶし,手 🤜🏻,🤜🏼,🤜🏽,🤜🏾,🤜🏿 -👏️ て,はくしゅ,ぱちぱち,手,拍手 👏🏻,👏🏼,👏🏽,👏🏾,👏🏿 -🙌️ て,てをあげる,ばんざい,りょうて,両手,手,手を上げる 🙌🏻,🙌🏼,🙌🏽,🙌🏾,🙌🏿 -👐️ おっはー,て,てのひら,りょうてのひら,両手のひら,手,手のひら 👐🏻,👐🏼,👐🏽,👐🏾,👐🏿 -🤲️ いのり,て,てのひらをそろえたりょうて,りょうて,両手,手,手のひらを揃えた両手,祈り 🤲🏻,🤲🏼,🤲🏽,🤲🏾,🤲🏿 -🤝️ あくしゅ,ごうい,て,よろしく,合意,手,握手 🤝🏻,🤝🏼,🤝🏽,🤝🏾,🤝🏿,🫱🏻‍🫲🏼,🫱🏻‍🫲🏽,🫱🏻‍🫲🏾,🫱🏻‍🫲🏿,🫱🏼‍🫲🏻,🫱🏼‍🫲🏽,🫱🏼‍🫲🏾,🫱🏼‍🫲🏿,🫱🏽‍🫲🏻,🫱🏽‍🫲🏼,🫱🏽‍🫲🏾,🫱🏽‍🫲🏿,🫱🏾‍🫲🏻,🫱🏾‍🫲🏼,🫱🏾‍🫲🏽,🫱🏾‍🫲🏿,🫱🏿‍🫲🏻,🫱🏿‍🫲🏼,🫱🏿‍🫲🏽,🫱🏿‍🫲🏾 -🙏️ いのり,いのる,おねがい,お願い,がっしょう,ごめんなさい,りょうて,合掌,祈り,祈る 🙏🏻,🙏🏼,🙏🏽,🙏🏾,🙏🏿 -✍️️ かいているて,て,てがき,てでかく -💅️ つめ,ねいる,まにきゅあ,まにきゅあをぬるて,まにきゅあを塗る手,爪 💅🏻,💅🏼,💅🏽,💅🏾,💅🏿 -🤳️ じどり,じぶんどり,すまほ,せるふぃー,自分撮り,自撮り 🤳🏻,🤳🏼,🤳🏽,🤳🏾,🤳🏿 -💪️ きんとれ,きんにく,ちからこぶ,むきむき,力こぶ,筋とれ,筋肉 💪🏻,💪🏼,💪🏽,💪🏾,💪🏿 -🦾️ あくせしびりてぃ,うで,ぎしゅ,じんこうそうぐ,て,人工装具,手,義手,腕 -🦿️ あくせしびりてぃ,あし,ぎそく,じんこうそうぐ,人工装具,義足,脚,足 -🦵️ あし,きっく,脚,足 🦵🏻,🦵🏼,🦵🏽,🦵🏾,🦵🏿 -🦶️ あし,きっく,だんす,ふみつける,足,踏みつける 🦶🏻,🦶🏼,🦶🏽,🦶🏾,🦶🏿 -👂️ かお,からだ,みみ,耳 -🦻️ あくせしびりてぃ,ちょうかく,ほちょうきをつけたみみ,みみ,耳,聴覚,補聴器を付けた耳 🦻🏻,🦻🏼,🦻🏽,🦻🏾,🦻🏿 -👃️ かお,からだ,はな,鼻 👃🏻,👃🏼,👃🏽,👃🏾,👃🏿 -🧠️ あたま,ちしき,のう,のうみそ,知識,脳,脳みそ,頭 -🫀️ こどう,しんぞう,しんぱく,ぞうき,みゃく,心拍,心臓,脈,臓器,鼓動 -🫁️ こきゅう,ぞうき,はい,呼吸,肺,臓器 -🦷️ は,はいしゃ,歯,歯医者 -🦴️ こっかく,ほね,骨,骨格 -👀️ かお,からだ,め,りょうめ,両目,目 -👁️️ かため,ひとつめ,め -👅️ かお,した,べろ,べー,舌 -👄️ かお,きす,くち,くちびる,口,唇 -👶️ あかちゃん,あかんぼう,かお,べびー,赤ちゃん,赤ん坊,顔 👶🏻,👶🏼,👶🏽,👶🏾,👶🏿 -🧒️ かお,こども,子供,顔 🧒🏻,🧒🏼,🧒🏽,🧒🏾,🧒🏿 -👦️ おとこのこ,かお,こども,しょうねん,子供,少年,男の子,顔 👦🏻,👦🏼,👦🏽,👦🏾,👦🏿 -👧️ おんな,おんなのこ,かお,こども,しょうじょ,女,女の子,子供,少女,顔 👧🏻,👧🏼,👧🏽,👧🏾,👧🏿 -🧑️ おとな,かお,せいじん,大人,成人,顔 🧑🏻,🧑🏼,🧑🏽,🧑🏾,🧑🏿 -👱️ かお,きんぱつ,きんぱつのひと,ひと,ぶろんど,人,金髪,金髪の人,顔 👱🏻,👱🏼,👱🏽,👱🏾,👱🏿 -👨️ おとこ,おとな,かお,だんせい,大人,男,男性,顔 👨🏻,👨🏼,👨🏽,👨🏾,👨🏿 -🧔️ あごひげ,あごひげのだんせい,あごひげのひと,あごひげの人,かお,ひげ,ひげのはえたひと,ひと,人,顔 🧔🏻,🧔🏼,🧔🏽,🧔🏾,🧔🏿 -🧔‍♂️️ あごひげ,あごひげのだんせい,おとこ,かお,だんせい,ひげ,ひげのはえただんせい -🧔‍♀️️ あごひげ,あごひげのじょせい,おんな,かお,じょせい,ひげ,ひげのはえたじょせい -👨‍🦰️ あかげ,おとこ,おとな,かお,だんせい,大人,男,男性,男性: 赤毛,赤毛,顔 👨🏻‍🦰,👨🏼‍🦰,👨🏽‍🦰,👨🏾‍🦰,👨🏿‍🦰 -👨‍🦰️ おとこ,かお,大人,男,男性,男性: 赤毛,赤い髪,赤毛,赤髪,顔,髪 -👨‍🦱️ おとこ,おとな,かお,だんせい,まきげ,大人,巻き毛,男,男性,男性: 巻き毛,顔 👨🏻‍🦱,👨🏼‍🦱,👨🏽‍🦱,👨🏾‍🦱,👨🏿‍🦱 -👨‍🦱️ おとこ,かお,かーる,大人,巻き毛,男,男性,男性: 巻き毛,顔,髪 -👨‍🦳️ おとこ,おとな,かお,しらが,だんせい,大人,男,男性,男性: 白髪,白髪,顔 👨🏻‍🦳,👨🏼‍🦳,👨🏽‍🦳,👨🏾‍🦳,👨🏿‍🦳 -👨‍🦳️ おとこ,かお,大人,男,男性,男性: 白髪,白い髪,白髪,顔,髪 -👨‍🦲️ おとこ,おとな,かお,だんせい,はげあたま,はげ頭,大人,男,男性,男性: はげ頭,顔 👨🏻‍🦲,👨🏼‍🦲,👨🏽‍🦲,👨🏾‍🦲,👨🏿‍🦲 -👨‍🦲️ おとこ,かお,はげ,はげ頭,大人,男,男性,男性: はげ頭,脱毛,顔 -👩️ おとな,おんな,かお,じょせい,大人,女,女性,顔 👩🏻,👩🏼,👩🏽,👩🏾,👩🏿 -👩‍🦰️ あかげ,おとな,おんな,かお,じょせい,大人,女,女性,女性: 赤毛,赤毛,顔 👩🏻‍🦰,👩🏼‍🦰,👩🏽‍🦰,👩🏾‍🦰,👩🏿‍🦰 -👩‍🦰️ おんな,かお,大人,女,女性,女性: 赤毛,赤い髪,赤毛,赤髪,顔,髪 -🧑‍🦰️ あかげ,おとな,かお,せいじん,大人,大人: 赤毛,成人,赤毛,顔 🧑🏻‍🦰,🧑🏼‍🦰,🧑🏽‍🦰,🧑🏾‍🦰,🧑🏿‍🦰 -🧑‍🦰️ かお,大人,大人: 赤毛,成人,赤い髪,赤毛,赤髪,顔,髪 -👩‍🦱️ おとな,おんな,かお,じょせい,まきげ,大人,女,女性,女性: 巻き毛,巻き毛,顔 👩🏻‍🦱,👩🏼‍🦱,👩🏽‍🦱,👩🏾‍🦱,👩🏿‍🦱 -👩‍🦱️ おんな,かお,かーる,大人,女,女性,女性: 巻き毛,巻き毛,顔,髪 -🧑‍🦱️ おとな,かお,せいじん,まきげ,大人,大人: 巻き毛,巻き毛,成人,顔 🧑🏻‍🦱,🧑🏼‍🦱,🧑🏽‍🦱,🧑🏾‍🦱,🧑🏿‍🦱 -🧑‍🦱️ かお,かーる,大人,大人: 巻き毛,巻き毛,成人,顔,髪 -👩‍🦳️ おとな,おんな,かお,しらが,じょせい,大人,女,女性,女性: 白髪,白髪,顔 👩🏻‍🦳,👩🏼‍🦳,👩🏽‍🦳,👩🏾‍🦳,👩🏿‍🦳 -👩‍🦳️ おんな,かお,大人,女,女性,女性: 白髪,白い髪,白髪,顔,髪 -🧑‍🦳️ おとな,かお,しらが,せいじん,大人,大人: 白髪,成人,白髪,顔 🧑🏻‍🦳,🧑🏼‍🦳,🧑🏽‍🦳,🧑🏾‍🦳,🧑🏿‍🦳 -🧑‍🦳️ かお,大人,大人: 白髪,成人,白い髪,白髪,顔,髪 -👩‍🦲️ おとな,おんな,かお,じょせい,はげあたま,はげ頭,大人,女,女性,女性: はげ頭,顔 👩🏻‍🦲,👩🏼‍🦲,👩🏽‍🦲,👩🏾‍🦲,👩🏿‍🦲 -👩‍🦲️ おんな,かお,はげ,はげ頭,大人,女,女性,女性: はげ頭,脱毛,顔 -🧑‍🦲️ おとな,かお,せいじん,はげあたま,はげ頭,大人,大人: はげ頭,成人,顔 🧑🏻‍🦲,🧑🏼‍🦲,🧑🏽‍🦲,🧑🏾‍🦲,🧑🏿‍🦲 -🧑‍🦲️ かお,はげ,はげ頭,大人,大人: はげ頭,成人,脱毛,顔 -👱‍♀️️ おんな,きんぱつ,きんぱつのじょせい,じょせい,ぶろんど -👱‍♂️️ おとこ,きんぱつ,きんぱつのだんせい,だんせい,ぶろんど -🧓️ おとしより,お年寄り,かお,こうれいしゃ,ろうじん,老人,顔,高齢者 🧓🏻,🧓🏼,🧓🏽,🧓🏾,🧓🏿 -👴️ おじいさん,おとしより,お年寄り,かお,こうれいしゃ,だんせい,ろうじん,男性,老人,顔,高齢者 👴🏻,👴🏼,👴🏽,👴🏾,👴🏿 -👵️ おとしより,おばあさん,お年寄り,かお,こうれいしゃ,じょせい,ろうじん,女性,老人,顔,高齢者 👵🏻,👵🏼,👵🏽,👵🏾,👵🏿 -🙍️ きゃらくたー,しかめがお,しかめっつら,しかめっつらのひと,しかめっ面,しかめつら,しかめつらのひと,しかめ面,しかめ面の人,しかめ顔 🙍🏻,🙍🏼,🙍🏽,🙍🏾,🙍🏿 -🙍‍♂️️ おとこ,しかめがお,しかめっつら,しかめっつらのおとこ,しかめつらのおとこ,だんせい -🙍‍♀️️ おんな,しかめがお,しかめっつら,しかめっつらのおんな,しかめつらのおんな,じょせい -🙎️ きゃらくたー,ひと,ふきげん,ふきげんなひと,ぷんぷん,不機嫌,不機嫌な人,人 🙎🏻,🙎🏼,🙎🏽,🙎🏾,🙎🏿 -🙎‍♂️️ おとこ,だんせい,ふきげん,ふきげんなおとこ,ぷんぷん -🙎‍♀️️ おんな,じょせい,ふきげん,ふきげんなおんな,ぷんぷん -🙅️ ng,えぬじー,じぇすちゃー,だめ,だめのぽーずをするひと,だめのぽーずをする人,ばつ,ひと,人 🙅🏻,🙅🏼,🙅🏽,🙅🏾,🙅🏿 -🙅‍♂️️ ng,えぬじー,おとこ,じぇすちゃー,だめのぽーずをするおとこ,だんせい,ばつ -🙅‍♀️️ ng,えぬじー,おんな,じぇすちゃー,じょせい,だめのぽーずをするおんな,ばつ -🙆️ ok,okのぽーずをする人,おーけー,おーけーのぽーずをするひと,じぇすちゃー,ひと,まる,丸,人,ok 🙆🏻,🙆🏼,🙆🏽,🙆🏾,🙆🏿 -🙆‍♂️️ ok,おっけー,おーけー,おーけーのぽーずをするおとこ,じぇすちゃー,だんせい,まる -🙆‍♀️️ ok,おっけー,おーけー,おーけーのぽーずをするおんな,じぇすちゃー,じょせい,まる -💁️ あんない,あんないするひと,うけつけ,うけつけじょう,かお,受付,受付嬢,案内,案内する人,顔 💁🏻,💁🏼,💁🏽,💁🏾,💁🏿 -💁‍♂️️ あんない,あんないするおとこ,おとこ,じぇすちゃー,だんせい -💁‍♀️️ あんない,あんないするおんな,おんな,じぇすちゃー,じょせい -🙋️ きょしゅ,てをあげる,てをあげるじん,てをあげるひと,ひと,人,手を挙げる,手を挙げる人,挙手 🙋🏻,🙋🏼,🙋🏽,🙋🏾,🙋🏿 -🙋‍♂️️ おとこ,きょしゅ,だんせい,てをあげる,てをあげるおとこ -🙋‍♀️️ おんな,きょしゅ,じょせい,てをあげる,てをあげるおんな -🧏️ あくせしびりてぃ,きこえない,しょうがい,ちょうかく,ひと,みみのふじゆうなひと,人,耳の不自由な人,聞こえない,聴覚,障がい 🧏🏻,🧏🏼,🧏🏽,🧏🏾,🧏🏿 -🧏‍♂️️ あくせしびりてぃ,しょうがい,だんせい,ちょうかく,みみのふじゆうなだんせい -🧏‍♀️️ あくせしびりてぃ,しょうがい,じょせい,ちょうかく,みみのふじゆうなじょせい -🙇️ おじぎ,おじぎするひと,おじぎする人,ごめんなさい,どげざ,土下座 🙇🏻,🙇🏼,🙇🏽,🙇🏾,🙇🏿 -🙇‍♂️️ おじぎ,おじぎするおとこ,おとこ,ごめんなさい,だんせい,どげざ -🙇‍♀️️ おじぎ,おじぎするおんな,おんな,ごめんなさい,じょせい,どげざ -🤦️ あちゃー,じぇすちゃー,ひたいにて,ひたいにてをあてるひと,ひたいに手,ひたいに手をあてる人 🤦🏻,🤦🏼,🤦🏽,🤦🏾,🤦🏿 -🤦‍♂️️ あちゃー,おとこ,じぇすちゃー,だんせい,ひたいにて,ひたいにてをあてるおとこ -🤦‍♀️️ あちゃー,おんな,じぇすちゃー,じょせい,ひたいにて,ひたいにてをあてるおんな -🤷️ おてあげ,おてあげするひと,お手上げ,お手上げする人,じぇすちゃー 🤷🏻,🤷🏼,🤷🏽,🤷🏾,🤷🏿 -🤷‍♂️️ おてあげ,おてあげするおとこ,おとこ,じぇすちゃー,だんせい -🤷‍♀️️ おてあげ,おてあげするおんな,おんな,じぇすちゃー,じょせい -🧑‍⚕️️ いし,いしゃ,せらぴすと -👨‍⚕️️ いし,いしゃ,おとこ,だんせい,だんせいのいしゃ -👩‍⚕️️ いし,いしゃ,おんな,じょせい,じょせいのいしゃ -🧑‍🎓️ かくぼう,がくせい,そつぎょう,卒業,学生,角帽 🧑🏻‍🎓,🧑🏼‍🎓,🧑🏽‍🎓,🧑🏾‍🎓,🧑🏿‍🎓 -👨‍🎓️ おとこ,かくぼう,がくせい,そつぎょう,だんしがくせい,だんせい,卒業,学生,男,男子学生,男性,角帽 👨🏻‍🎓,👨🏼‍🎓,👨🏽‍🎓,👨🏾‍🎓,👨🏿‍🎓 -👩‍🎓️ おんな,かくぼう,がくせい,じょしがくせい,じょせい,そつぎょう,卒業,女,女子学生,女性,学生,角帽 👩🏻‍🎓,👩🏼‍🎓,👩🏽‍🎓,👩🏾‍🎓,👩🏿‍🎓 -🧑‍🏫️ きょうし,きょうじゅ,こうし,せんせい,たんにん,先生,担任,教師,教授,講師 🧑🏻‍🏫,🧑🏼‍🏫,🧑🏽‍🏫,🧑🏾‍🏫,🧑🏿‍🏫 -👨‍🏫️ おとこ,きょうし,きょうじゅ,せんせい,だんせい,だんせいのきょうし,先生,教師,教授,男,男性,男性の教師 👨🏻‍🏫,👨🏼‍🏫,👨🏽‍🏫,👨🏾‍🏫,👨🏿‍🏫 -👩‍🏫️ おんな,きょうし,きょうじゅ,じょせい,じょせいのきょうし,せんせい,先生,女,女性,女性の教師,教師,教授 👩🏻‍🏫,👩🏼‍🏫,👩🏽‍🏫,👩🏾‍🏫,👩🏿‍🏫 -🧑‍⚖️️ さいばん,さいばんかん -👨‍⚖️️ おとこ,さいばん,さいばんかん,だんせい,だんせいのさいばんかん -👩‍⚖️️ おんな,さいばん,さいばんかん,じょせい,じょせいのさいばんかん -🧑‍🌾️ がーでなー,のうか,のうぎょう,のうじょうぬし,農場主,農家,農業 🧑🏻‍🌾,🧑🏼‍🌾,🧑🏽‍🌾,🧑🏾‍🌾,🧑🏿‍🌾 -👨‍🌾️ おとこ,だんせい,のうか,のうかのだんせい,のうふ,男,男性,農夫,農家,農家の男性 👨🏻‍🌾,👨🏼‍🌾,👨🏽‍🌾,👨🏾‍🌾,👨🏿‍🌾 -👩‍🌾️ おんな,じょせい,のうか,のうかのじょせい,女,女性,農家,農家の女性 👩🏻‍🌾,👩🏼‍🌾,👩🏽‍🌾,👩🏾‍🌾,👩🏿‍🌾 -🧑‍🍳️ こっく,しぇふ,りょうり,料理 🧑🏻‍🍳,🧑🏼‍🍳,🧑🏽‍🍳,🧑🏾‍🍳,🧑🏿‍🍳 -👨‍🍳️ おとこ,こっく,しぇふ,だんせい,だんせいのこっく,りょうり,料理,男,男性,男性のこっく 👨🏻‍🍳,👨🏼‍🍳,👨🏽‍🍳,👨🏾‍🍳,👨🏿‍🍳 -👩‍🍳️ おんな,こっく,しぇふ,じょせい,じょせいのこっく,りょうり,女,女性,女性のこっく,料理 👩🏻‍🍳,👩🏼‍🍳,👩🏽‍🍳,👩🏾‍🍳,👩🏿‍🍳 -🧑‍🔧️ こうさく,さぎょういん,すぱな,せいびし,めかにっく,作業員,工作,整備士 🧑🏻‍🔧,🧑🏼‍🔧,🧑🏽‍🔧,🧑🏾‍🔧,🧑🏿‍🔧 -👨‍🔧️ おとこ,こうさく,すぱな,だんせい,だんせいのせいびし,めかにっく,工作,男,男性,男性の整備士 👨🏻‍🔧,👨🏼‍🔧,👨🏽‍🔧,👨🏾‍🔧,👨🏿‍🔧 -👩‍🔧️ おんな,こうさく,じょせい,じょせいのせいびし,すぱな,めかにっく,女,女性,女性の整備士,工作 👩🏻‍🔧,👩🏼‍🔧,👩🏽‍🔧,👩🏾‍🔧,👩🏿‍🔧 -🧑‍🏭️ こういん,こうじょう,ものづくり,ようせつこう,工員,工場,溶接工 🧑🏻‍🏭,🧑🏼‍🏭,🧑🏽‍🏭,🧑🏾‍🏭,🧑🏿‍🏭 -👨‍🏭️ おとこ,だんせい,だんせいのようせつこう,ようせつ,溶接,男,男性,男性の溶接工 👨🏻‍🏭,👨🏼‍🏭,👨🏽‍🏭,👨🏾‍🏭,👨🏿‍🏭 -👩‍🏭️ おんな,じょせい,じょせいのようせつこう,ようせつ,女,女性,女性の溶接工,溶接 👩🏻‍🏭,👩🏼‍🏭,👩🏽‍🏭,👩🏾‍🏭,👩🏿‍🏭 -🧑‍💼️ かいしゃいん,さらりーまん,びじねすぱーそん,会社員 🧑🏻‍💼,🧑🏼‍💼,🧑🏽‍💼,🧑🏾‍💼,🧑🏿‍💼 -👨‍💼️ かいしゃいん,さらりーまん,だんせい,だんせいかいしゃいん,びじねすぱーそん,びじねすまん,会社員,男性,男性会社員 👨🏻‍💼,👨🏼‍💼,👨🏽‍💼,👨🏾‍💼,👨🏿‍💼 -👩‍💼️ ol,おーえる,おーる,かいしゃいん,さらりーまん,じょせい,じょせいかいしゃいん,びじねすぱーそん,会社員,女性,女性会社員 👩🏻‍💼,👩🏼‍💼,👩🏽‍💼,👩🏾‍💼,👩🏿‍💼 -🧑‍🔬️ かがくしゃ,せいぶつがくしゃ,ぶつりがくしゃ,化学者,物理学者,生物学者,科学者 🧑🏻‍🔬,🧑🏼‍🔬,🧑🏽‍🔬,🧑🏾‍🔬,🧑🏿‍🔬 -👨‍🔬️ おとこ,かがくしゃ,だんせい,だんせいかがくしゃ,男,男性,男性科学者,科学者 👨🏻‍🔬,👨🏼‍🔬,👨🏽‍🔬,👨🏾‍🔬,👨🏿‍🔬 -👩‍🔬️ おんな,かがくしゃ,じょせい,じょせいかがくしゃ,女,女性,女性科学者,科学者 👩🏻‍🔬,👩🏼‍🔬,👩🏽‍🔬,👩🏾‍🔬,👩🏿‍🔬 -🧑‍💻️ かいはつしゃ,ぎじゅつしゃ,こんぴゅーた,ぱそこん,ぷろぐらま,技術者,開発者 🧑🏻‍💻,🧑🏼‍💻,🧑🏽‍💻,🧑🏾‍💻,🧑🏿‍💻 -👨‍💻️ かいはつしゃ,こんぴゅーた,だんせい,だんせいぎじゅつしゃ,でべろっぱ,ぱそこん,ぷろぐらま,男性,男性技術者,開発者 👨🏻‍💻,👨🏼‍💻,👨🏽‍💻,👨🏾‍💻,👨🏿‍💻 -👩‍💻️ かいはつしゃ,こんぴゅーた,じょせい,じょせいぎじゅつしゃ,でべろっぱ,ぱそこん,ぷろぐらま,女性,女性技術者,開発者 👩🏻‍💻,👩🏼‍💻,👩🏽‍💻,👩🏾‍💻,👩🏿‍💻 -🧑‍🎤️ あーてぃすと,かしゅ,しんがー,すたー,ろっかー,歌手 🧑🏻‍🎤,🧑🏼‍🎤,🧑🏽‍🎤,🧑🏾‍🎤,🧑🏿‍🎤 -👨‍🎤️ あーてぃすと,おとこ,かしゅ,しんがー,だんせい,だんせいかしゅ,歌手,男,男性,男性歌手 👨🏻‍🎤,👨🏼‍🎤,👨🏽‍🎤,👨🏾‍🎤,👨🏿‍🎤 -👩‍🎤️ あーてぃすと,おんな,かしゅ,しんがー,じょせい,じょせいかしゅ,女,女性,女性歌手,歌手 👩🏻‍🎤,👩🏼‍🎤,👩🏽‍🎤,👩🏾‍🎤,👩🏿‍🎤 -🧑‍🎨️ あーてぃすと,えかき,がか,げいじゅつか,画家,絵描き,芸術家 🧑🏻‍🎨,🧑🏼‍🎨,🧑🏽‍🎨,🧑🏾‍🎨,🧑🏿‍🎨 -👨‍🎨️ あーてぃすと,おとこ,がか,げいじゅつか,だんせい,だんせいのげいじゅつか,男,男性,男性の芸術家,画家,芸術家 👨🏻‍🎨,👨🏼‍🎨,👨🏽‍🎨,👨🏾‍🎨,👨🏿‍🎨 -👩‍🎨️ あーてぃすと,おんな,がか,げいじゅつか,じょせい,じょせいのげいじゅつか,女,女性,女性の芸術家,画家,芸術家 👩🏻‍🎨,👩🏼‍🎨,👩🏽‍🎨,👩🏾‍🎨,👩🏿‍🎨 -🧑‍✈️️ きちょう,そうじゅうし,ぱいろっと -👨‍✈️️ おとこ,そうじゅうし,だんせい,だんせいぱいろっと -👩‍✈️️ おんな,じょせい,じょせいぱいろっと,そうじゅうし -🧑‍🚀️ うちゅうひこうし,ろけっと,宇宙飛行士 🧑🏻‍🚀,🧑🏼‍🚀,🧑🏽‍🚀,🧑🏾‍🚀,🧑🏿‍🚀 -👨‍🚀️ うちゅうひこうし,おとこ,だんせい,だんせいうちゅうひこうし,宇宙飛行士,男,男性,男性宇宙飛行士 👨🏻‍🚀,👨🏼‍🚀,👨🏽‍🚀,👨🏾‍🚀,👨🏿‍🚀 -👩‍🚀️ うちゅうひこうし,おんな,じょせい,じょせいうちゅうひこうし,女,女性,女性宇宙飛行士,宇宙飛行士 👩🏻‍🚀,👩🏼‍🚀,👩🏽‍🚀,👩🏾‍🚀,👩🏿‍🚀 -🧑‍🚒️ きゅうじょたい,しょうぼうし,れすきゅー,救助隊,消防士 🧑🏻‍🚒,🧑🏼‍🚒,🧑🏽‍🚒,🧑🏾‍🚒,🧑🏿‍🚒 -👨‍🚒️ おとこ,しょうぼうし,だんせい,だんせいしょうぼうし,消防士,男,男性,男性消防士 👨🏻‍🚒,👨🏼‍🚒,👨🏽‍🚒,👨🏾‍🚒,👨🏿‍🚒 -👩‍🚒️ おんな,しょうぼうし,じょせい,じょせいしょうぼうし,女,女性,女性消防士,消防士 👩🏻‍🚒,👩🏼‍🚒,👩🏽‍🚒,👩🏾‍🚒,👩🏿‍🚒 -👮️ おまわりさん,お巡りさん,かお,けいかん,けいさつ,けいさつかん,ぽりす,警官,警察,警察官,顔 👮🏻,👮🏼,👮🏽,👮🏾,👮🏿 -👮‍♂️️ おまわりさん,けいかん,けいさつ,けいさつかん,だんせい,だんせいけいさつかん -👮‍♀️️ おまわりさん,けいかん,けいさつ,けいさつかん,じょせい,じょせいけいさつかん -🕵️️ すぱい,たんてい,むしめがね -🕵️‍♂️️ おとこ,たんてい,だんせい,だんせいのたんてい,むしめがね -🕵️‍♀️️ おんな,じょせい,じょせいのたんてい,たんてい,むしめがね -💂️ えいへい,かお,けいび,しゅえい,もんばん,守衛,衛兵,警備,門番 💂🏻,💂🏼,💂🏽,💂🏾,💂🏿 -💂‍♂️️ えいへい,けいび,しゅえい,だんせい,だんせいのえいへい,もんばん -💂‍♀️️ えいへい,けいび,しゅえい,じょせい,じょせいのえいへい,もんばん -🥷️ おんみつ,くさのもの,しのび,すぱい,にんじゃ,にんじゅつ,忍び,忍者,忍術,草の者,隠密 🥷🏻,🥷🏼,🥷🏽,🥷🏾,🥷🏿 -👷️ かお,かなづち,けんせつさぎょういん,こうじ,はんまー,へるめっと,工事,工事現場の人,建設作業員 👷🏻,👷🏼,👷🏽,👷🏾,👷🏿 -👷‍♂️️ けんせつさぎょういん,こうじ,だんせい,だんせいのけんせつさぎょういん,はんまー,へるめっと -👷‍♀️️ けんせつさぎょういん,こうじ,じょせい,じょせいのけんせつさぎょういん,はんまー,へるめっと -🤴️ おうじ,おとこ,だんせい,ぷりんす,王子,男,男性 🤴🏻,🤴🏼,🤴🏽,🤴🏾,🤴🏿 -👸️ おうじょ,おひめさま,おんな,お姫さま,お姫様,かお,くいーん,じょせい,ぷりんせす,女,女性,王女 👸🏻,👸🏼,👸🏽,👸🏾,👸🏿 -👳️ かお,たーばん,たーばんのひと,たーばんの人 👳🏻,👳🏼,👳🏽,👳🏾,👳🏿 -👳‍♂️️ おとこ,たーばん,たーばんのだんせい,だんせい -👳‍♀️️ おんな,じょせい,たーばん,たーばんのじょせい -👲️ おとこ,おわんぼう,おわん帽,おわん帽の人,かお,だんせい,ちゅうかぼうのだんせい,中華帽の男性,男,男性 👲🏻,👲🏼,👲🏽,👲🏾,👲🏿 -🧕️ おんな,じょせい,すかーふ,すかーふのじょせい,すかーふの女性,ひじゃぶ,べーる,女,女性 🧕🏻,🧕🏼,🧕🏽,🧕🏾,🧕🏿 -🤵️ おとこ,けっこん,たきしーど,たきしーどのひと,たきしーどの人,だんせい,はなむこ,結婚,花婿 🤵🏻,🤵🏼,🤵🏽,🤵🏾,🤵🏿 -🤵‍♂️️ おとこ,たきしーど,たきしーどのおとこ,たきしーどのだんせい,だんせい -🤵‍♀️️ おんな,じょせい,たきしーど,たきしーどのおんな,たきしーどのじょせい -👰️ おんな,かお,けっこん,じょせい,はなよめ,べーるのひと,べーるの人,結婚,花嫁,顔 👰🏻,👰🏼,👰🏽,👰🏾,👰🏿 -👰‍♂️️ おとこ,だんせい,べーる,べーるのだんせい -👰‍♀️️ おんな,じょせい,べーる,べーるのじょせい -🤰️ おんな,じょせい,にんしん,にんぷ,女,女性,妊娠,妊婦 🤰🏻,🤰🏼,🤰🏽,🤰🏾,🤰🏿 -🤱️ あかちゃん,おんな,じゅにゅう,じょせい,みるく,女,女性,授乳,赤ちゃん 🤱🏻,🤱🏼,🤱🏽,🤱🏾,🤱🏿 -👩‍🍼️ あかちゃん,おんな,じゅにゅう,じゅにゅうするじょせい,じょせい,女,女性,授乳,授乳する女性,赤ちゃん 👩🏻‍🍼,👩🏼‍🍼,👩🏽‍🍼,👩🏾‍🍼,👩🏿‍🍼 -👨‍🍼️ あかちゃん,おとこ,じゅにゅう,じゅにゅうするだんせい,だんせい,授乳,授乳する男性,男,男性,赤ちゃん 👨🏻‍🍼,👨🏼‍🍼,👨🏽‍🍼,👨🏾‍🍼,👨🏿‍🍼 -🧑‍🍼️ あかちゃん,じゅにゅう,じゅにゅうするひと,ひと,人,授乳,授乳する人,赤ちゃん 🧑🏻‍🍼,🧑🏼‍🍼,🧑🏽‍🍼,🧑🏾‍🍼,🧑🏿‍🍼 -👼️ えんじぇる,かお,てんし,天使,顔 👼🏻,👼🏼,👼🏽,👼🏾,👼🏿 -🎅️ かお,くりすます,さんた,さんたくろーす,顔 🎅🏻,🎅🏼,🎅🏽,🎅🏾,🎅🏿 -🤶️ おんな,くりすます,さんたくろーす,じょせい,じょせいのさんた,女,女性,女性のさんた 🤶🏻,🤶🏼,🤶🏽,🤶🏾,🤶🏿 -🧑‍🎄️ くりすます,さんたくろーす,さんたさん 🧑🏻‍🎄,🧑🏼‍🎄,🧑🏽‍🎄,🧑🏾‍🎄,🧑🏿‍🎄 -🦸️ すーぱーひーろー,ぜん,ちょうじん,ひろいん,ひーろー,善,超人 🦸🏻,🦸🏼,🦸🏽,🦸🏾,🦸🏿 -🦸‍♂️️ ぜん,だんせい,だんせいのすーぱーひーろー,ちょうじん,ひーろー -🦸‍♀️️ じょせい,じょせいのすーぱーひーろー,ぜん,ちょうじん,ひろいん,ひーろー -🦹️ あく,あくやく,ちょうじん,はんにん,わる,ゔぃらん,悪,悪役,犯人,超人 🦹🏻,🦹🏼,🦹🏽,🦹🏾,🦹🏿 -🦹‍♂️️ あく,だんせい,だんせいのあくやく,ちょうじん,はんにん,わる,ゔぃらん -🦹‍♀️️ あく,じょせい,じょせいのあくやく,ちょうじん,はんにん,わる,ゔぃらん -🧙️ まじょ,まほう,まほうつかい,魔女,魔法,魔法使い 🧙🏻,🧙🏼,🧙🏽,🧙🏾,🧙🏿 -🧙‍♂️️ おとこ,おとこのまほうつかい,だんせい,まほうつかい -🧙‍♀️️ おんな,おんなのまほうつかい,じょせい,まじょ,まほうつかい -🧚️ おべろん,でんせつ,ぱっく,まほう,ようせい,伝説,妖精,魔法 🧚🏻,🧚🏼,🧚🏽,🧚🏾,🧚🏿 -🧚‍♂️️ おとこ,おとこのようせい,だんせい,ようせい -🧚‍♀️️ おんな,おんなのようせい,じょせい,ようせい -🧛️ きゅうけつき,どらきゅら,ばんぱいあ,吸血鬼 🧛🏻,🧛🏼,🧛🏽,🧛🏾,🧛🏿 -🧛‍♂️️ おとこ,おとこのきゅうけつき,きゅうけつき,だんせい,どらきゅら,ばんぱいあ -🧛‍♀️️ おんな,おんなのきゅうけつき,きゅうけつき,じょせい,どらきゅら,ばんぱいあ -🧜️ にんぎょ,まーまん,まーめいど,人魚 🧜🏻,🧜🏼,🧜🏽,🧜🏾,🧜🏿 -🧜‍♂️️ おとこ,だんせい,にんぎょ,まーまん -🧜‍♀️️ おんな,じょせい,にんぎょ,まーめいど -🧝️ えるふ,こようせい,ようせい,妖精,小妖精 🧝🏻,🧝🏼,🧝🏽,🧝🏾,🧝🏿 -🧝‍♂️️ えるふ,おとこ,おとこのえるふ,だんせい -🧝‍♀️️ えるふ,おんな,おんなのえるふ,じょせい -🧞️ せいれい,まじん,精霊,魔神 -🧞‍♂️️ おとこ,おとこのせいれい,せいれい,だんせい,まじん -🧞‍♀️️ おんな,おんなのせいれい,じょせい,せいれい,まじん -🧟️ ぞんび,ほらー -🧟‍♂️️ おとこ,おとこのぞんび,ぞんび,だんせい,ほらー -🧟‍♀️️ おんな,おんなのぞんび,じょせい,ぞんび,ほらー -💆️ えすて,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのひと,ふぇいすまっさーじ中の人,まっさーじ 💆🏻,💆🏼,💆🏽,💆🏾,💆🏿 -💆‍♂️️ えすて,おとこ,だんせい,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのおとこ,まっさーじ -💆‍♀️️ えすて,おんな,じょせい,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのおんな,まっさーじ -💇️ さんぱつ,さんぱつされるひと,とこや,びよういん,びようしつ,へあかっと,床屋,散髪される人,美容室,美容院 💇🏻,💇🏼,💇🏽,💇🏾,💇🏿 -💇‍♂️️ さんぱつされるおとこ,だんせい,とこや,びよういん,びようしつ,へあかっと -💇‍♀️️ さんぱつされるおんな,じょせい,とこや,びよういん,びようしつ,へあかっと -🚶️ あるくひと,うぉーきんぐ,ほこう,ほこうしゃ,歩く人,歩行,歩行者 🚶🏻,🚶🏼,🚶🏽,🚶🏾,🚶🏿 -🚶‍♂️️ あるくおとこ,うぉーきんぐ,だんせい,ほこう,ほこうしゃ -🚶‍♀️️ あるくおんな,うぉーきんぐ,じょせい,ほこう,ほこうしゃ -🧍️ きりつ,たっている,たつひと,ひと,人,立っている,立つ人,起立 🧍🏻,🧍🏼,🧍🏽,🧍🏾,🧍🏿 -🧍‍♂️️ きりつ,たつおとこ,だんせい -🧍‍♀️️ きりつ,じょせい,たつおんな -🧎️ すわる,せいざするひと,ひざまずく,ひと,人,座る,正座する人 🧎🏻,🧎🏼,🧎🏽,🧎🏾,🧎🏿 -🧎‍♂️️ すわる,せいざするだんせい,だんせい,ひざまずく -🧎‍♀️️ じょせい,すわる,せいざするじょせい,ひざまずく -🧑‍🦯️ あくせしびりてぃ,しかく,しょうがい,つえをついたひと,め,杖をついた人,目,視覚,障がい 🧑🏻‍🦯,🧑🏼‍🦯,🧑🏽‍🦯,🧑🏾‍🦯,🧑🏿‍🦯 -👨‍🦯️ あくせしびりてぃ,しかく,しょうがい,だんせい,つえをついただんせい,め,杖をついた男性,男性,目,視覚,障がい 👨🏻‍🦯,👨🏼‍🦯,👨🏽‍🦯,👨🏾‍🦯,👨🏿‍🦯 -👩‍🦯️ あくせしびりてぃ,しかく,しょうがい,じょせい,つえをついたじょせい,め,女性,杖をついた女性,目,視覚,障がい 👩🏻‍🦯,👩🏼‍🦯,👩🏽‍🦯,👩🏾‍🦯,👩🏿‍🦯 -🧑‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,でんどうくるまいすのひと,車いす,障がい,電動車椅子の人 🧑🏻‍🦼,🧑🏼‍🦼,🧑🏽‍🦼,🧑🏾‍🦼,🧑🏿‍🦼 -👨‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,だんせい,でんどうくるまいすのだんせい,男性,車いす,障がい,電動車椅子の男性 👨🏻‍🦼,👨🏼‍🦼,👨🏽‍🦼,👨🏾‍🦼,👨🏿‍🦼 -👩‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,じょせい,でんどうくるまいすのじょせい,女性,車いす,障がい,電動車椅子の女性 👩🏻‍🦼,👩🏼‍🦼,👩🏽‍🦼,👩🏾‍🦼,👩🏿‍🦼 -🧑‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのひと,しょうがい,手動式車椅子の人,車いす,障がい 🧑🏻‍🦽,🧑🏼‍🦽,🧑🏽‍🦽,🧑🏾‍🦽,🧑🏿‍🦽 -👨‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのだんせい,しょうがい,だんせい,手動式車椅子の男性,男性,車いす,障がい 👨🏻‍🦽,👨🏼‍🦽,👨🏽‍🦽,👨🏾‍🦽,👨🏿‍🦽 -👩‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのじょせい,しょうがい,じょせい,女性,手動式車椅子の女性,車いす,障がい 👩🏻‍🦽,👩🏼‍🦽,👩🏽‍🦽,👩🏾‍🦽,👩🏿‍🦽 -🏃️ じょぎんぐ,すぽーつ,はしるひと,まらそん,らんなー,らんにんぐ,走る人 🏃🏻,🏃🏼,🏃🏽,🏃🏾,🏃🏿 -🏃‍♂️️ じょぎんぐ,だんせい,はしるおとこ,まらそん,らんなー,らんにんぐ -🏃‍♀️️ じょぎんぐ,じょせい,はしるおんな,まらそん,らんなー,らんにんぐ -💃️ おどりこ,おどるおんな,じょせい,だんさー,だんす,ふらめんこ,女性,踊り子,踊る女 💃🏻,💃🏼,💃🏽,💃🏾,💃🏿 -🕺️ おとこ,おどるおとこ,だんさー,だんす,だんせい,男,男性,踊る男 🕺🏻,🕺🏼,🕺🏽,🕺🏾,🕺🏿 -🕴️️ ういてるびじねすまん,おとこ,くうちゅうふゆう,すーつ,だんせい,びじねすまん -👯️ うさみみ,うさ耳,かお,だんさー,ばにー,ばにーがーる,ばにーぼーい,ぱーてぃー -👯‍♂️️ うさみみ,おとこ,だんさー,だんせい,ばにーぼーい,ぱーてぃー -👯‍♀️️ うさみみ,おんな,じょせい,だんさー,ばにーがーる,ぱーてぃー -🧖️ さうな,さうなにはいるひと,さうなに入る人 🧖🏻,🧖🏼,🧖🏽,🧖🏾,🧖🏿 -🧖‍♂️️ おとこ,さうな,さうなにはいるおとこ,だんせい -🧖‍♀️️ おんな,さうな,さうなにはいるおんな,じょせい -🧗️ とざん,やまのぼり,やまをのぼるひと,山を登る人,山登り,登山 🧗🏻,🧗🏼,🧗🏽,🧗🏾,🧗🏿 -🧗‍♂️️ おとこ,だんせい,とざん,やまのぼり,やまをのぼるおとこ -🧗‍♀️️ おんな,じょせい,とざん,やまのぼり,やまをのぼるおんな -🤺️ すぽーつ,ふぇんしんぐ,ふぇんしんぐをするひと,ふぇんしんぐをする人 -🏇️ きしゅ,けいば,じょうば,じょっきー,すぽーつ,乗馬,競馬,騎手 🏇🏻,🏇🏼,🏇🏽,🏇🏾,🏇🏿 -⛷️️ すきー,すきーやー,すとっく,すぽーつ -🏂️ すのぼ,すのーぼーだー,すのーぼーど,すぽーつ -🏌️️ ごるふ,ごるふぁー,ごるふをするひと,すぽーつ -🏌️‍♂️️ おとこ,ごるふ,ごるふぁー,ごるふをするおとこ,すぽーつ,だんせい -🏌️‍♀️️ おんな,ごるふ,ごるふぁー,ごるふをするおんな,じょせい,すぽーつ -🏄️ さーふぁー,さーふぃん,さーふぃんするひと,すぽーつ,なみのり -🏄‍♂️️ おとこ,さーふぁー,さーふぃんするおとこ,すぽーつ,だんせい,なみのり -🏄‍♀️️ おんな,さーふぁー,さーふぃんするおんな,じょせい,すぽーつ,なみのり -🚣️ かぬー,かやっく,すぽーつ,のりもの,ふね,ぼーとをこぐひと,ぼーとをこぐ人,乗り物,船 🚣🏻,🚣🏼,🚣🏽,🚣🏾,🚣🏿 -🚣‍♂️️ かぬー,かやっく,すぽーつ,だんせい,ふね,ぼーとをこぐおとこ -🚣‍♀️️ かぬー,かやっく,じょせい,すぽーつ,ふね,ぼーとをこぐおんな -🏊️ およぐひと,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ,水泳 -🏊‍♂️️ およぐおとこ,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ,だんせい -🏊‍♀️️ およぐおんな,じょせい,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ -⛹️️ きゅうぎ,すぽーつ,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするひと -⛹️‍♂️️ きゅうぎ,すぽーつ,だんせい,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするおとこ -⛹️‍♀️️ きゅうぎ,じょせい,すぽーつ,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするおんな -🏋️️ うぇいとりふてぃんぐ,じゅうりょうあげ,じゅうりょうあげをするひと,すぽーつ -🏋️‍♂️️ うぇいとりふてぃんぐ,おとこ,じゅうりょうあげをするおとこ,すぽーつ,だんせい -🏋️‍♀️️ うぇいとりふてぃんぐ,おんな,じゅうりょうあげをするおんな,じょせい,すぽーつ -🚴️ けいりん,さいくりんぐ,じてんしゃにのるじん,じてんしゃにのるひと,すぽーつ,ろーどばいく,ろーどれーす,競輪,自転車に乗る人 🚴🏻,🚴🏼,🚴🏽,🚴🏾,🚴🏿 -🚴‍♂️️ けいりん,さいくりんぐ,じてんしゃにのるおとこ,すぽーつ,だんせい,ろーどれーす -🚴‍♀️️ けいりん,さいくりんぐ,じてんしゃにのるおんな,じょせい,すぽーつ,ろーどれーす -🚵️ さいくりんぐ,じてんしゃ,すぽーつ,まうんてんばいく,まうんてんばいくにのるひと,まうんてんばいくに乗る人,自転車 🚵🏻,🚵🏼,🚵🏽,🚵🏾,🚵🏿 -🚵‍♂️️ おとこ,さいくりんぐ,じてんしゃ,すぽーつ,だんせい,まうんてんばいくにのるおとこ -🚵‍♀️️ おんな,さいくりんぐ,じてんしゃ,じょせい,すぽーつ,まうんてんばいくにのるおんな -🤸️ すぽーつ,そくてん,そくてんするひと,たいそう,体操,側転,側転する人 🤸🏻,🤸🏼,🤸🏽,🤸🏾,🤸🏿 -🤸‍♂️️ おとこ,すぽーつ,そくてん,そくてんするおとこ,たいそう,だんせい -🤸‍♀️️ おんな,じょせい,すぽーつ,そくてん,そくてんするおんな,たいそう -🤼️ すぽーつ,れすらー,れすりんぐ,れすりんぐするひと,れすりんぐする人,れすりんぐをするひと -🤼‍♂️️ おとこ,すぽーつ,だんせい,れすりんぐ,れすりんぐするおとこ,れすりんぐをするおとこ -🤼‍♀️️ おんな,じょせい,すぽーつ,れすりんぐ,れすりんぐするおんな,れすりんぐをするおんな -🤽️ きゅうぎ,すいきゅう,すいきゅうをするひと,すぽーつ,水球,水球をする人,球技 🤽🏻,🤽🏼,🤽🏽,🤽🏾,🤽🏿 -🤽‍♂️️ おとこ,きゅうぎ,すいきゅう,すいきゅうをするおとこ,すぽーつ,だんせい -🤽‍♀️️ おんな,きゅうぎ,じょせい,すいきゅう,すいきゅうをするおんな,すぽーつ -🤾️ きゅうぎ,すぽーつ,はんどぼーる,はんどぼーるをするひと,はんどぼーるをする人,球技 🤾🏻,🤾🏼,🤾🏽,🤾🏾,🤾🏿 -🤾‍♂️️ おとこ,きゅうぎ,すぽーつ,だんせい,はんどぼーる,はんどぼーるをするおとこ -🤾‍♀️️ おんな,きゅうぎ,じょせい,すぽーつ,はんどぼーる,はんどぼーるをするおんな -🤹️ じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするひと,じゃぐりんぐをする人,だいどうげい,大道芸 🤹🏻,🤹🏼,🤹🏽,🤹🏾,🤹🏿 -🤹‍♂️️ おとこ,じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするおとこ,だいどうげい,だんせい -🤹‍♀️️ おんな,じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするおんな,じょせい,だいどうげい -🧘️ めいそう,よが,よがのぽーずをするひと,よがのぽーずをする人,瞑想 🧘🏻,🧘🏼,🧘🏽,🧘🏾,🧘🏿 -🧘‍♂️️ おとこ,だんせい,めいそう,よが,よがのぽーずをするおとこ -🧘‍♀️️ おんな,じょせい,めいそう,よが,よがのぽーずをするおんな -🛀️ お風呂,ばすたぶ,ふろ,ふろにはいるじん,ふろにはいるひと,よくそう,浴槽,風呂,風呂に入る人 🛀🏻,🛀🏼,🛀🏽,🛀🏾,🛀🏿 -🛌️ ねる,べっど,べっどにねるひと,べっどに寝る人,ほてる,寝る 🛌🏻,🛌🏼,🛌🏽,🛌🏾,🛌🏿 -🧑‍🤝‍🧑️ かっぷる,こいびと,つなぐ,て,てをつなぐ,てをつなぐ2にん,てをつなぐふたり,ともだち,ひと,人,友達,恋人,手,手をつなぐ,手をつなぐ2人 🧑🏻‍🤝‍🧑🏻,🧑🏻‍🤝‍🧑🏼,🧑🏻‍🤝‍🧑🏽,🧑🏻‍🤝‍🧑🏾,🧑🏻‍🤝‍🧑🏿,🧑🏼‍🤝‍🧑🏻,🧑🏼‍🤝‍🧑🏼,🧑🏼‍🤝‍🧑🏽,🧑🏼‍🤝‍🧑🏾,🧑🏼‍🤝‍🧑🏿,🧑🏽‍🤝‍🧑🏻,🧑🏽‍🤝‍🧑🏼,🧑🏽‍🤝‍🧑🏽,🧑🏽‍🤝‍🧑🏾,🧑🏽‍🤝‍🧑🏿,🧑🏾‍🤝‍🧑🏻,🧑🏾‍🤝‍🧑🏼,🧑🏾‍🤝‍🧑🏽,🧑🏾‍🤝‍🧑🏾,🧑🏾‍🤝‍🧑🏿,🧑🏿‍🤝‍🧑🏻,🧑🏿‍🤝‍🧑🏼,🧑🏿‍🤝‍🧑🏽,🧑🏿‍🤝‍🧑🏾,🧑🏿‍🤝‍🧑🏿 -👭️ おんな,かっぷる,こいびと,てをつなぐじょせい,ともだち,どうせい,友達,同性,女,恋人,手をつなぐ女性 👭🏻,👭🏼,👭🏽,👭🏾,👭🏿,👩🏻‍🤝‍👩🏼,👩🏻‍🤝‍👩🏽,👩🏻‍🤝‍👩🏾,👩🏻‍🤝‍👩🏿,👩🏼‍🤝‍👩🏻,👩🏼‍🤝‍👩🏽,👩🏼‍🤝‍👩🏾,👩🏼‍🤝‍👩🏿,👩🏽‍🤝‍👩🏻,👩🏽‍🤝‍👩🏼,👩🏽‍🤝‍👩🏾,👩🏽‍🤝‍👩🏿,👩🏾‍🤝‍👩🏻,👩🏾‍🤝‍👩🏼,👩🏾‍🤝‍👩🏽,👩🏾‍🤝‍👩🏿,👩🏿‍🤝‍👩🏻,👩🏿‍🤝‍👩🏼,👩🏿‍🤝‍👩🏽,👩🏿‍🤝‍👩🏾 -👫️ いせい,かっぷる,こいびと,だんじょ,てをつなぐだんじょ,ともだち,ふたり,友達,恋人,手をつなぐ男女,男女,異性 👫🏻,👫🏼,👫🏽,👫🏾,👫🏿,👩🏻‍🤝‍👨🏼,👩🏻‍🤝‍👨🏽,👩🏻‍🤝‍👨🏾,👩🏻‍🤝‍👨🏿,👩🏼‍🤝‍👨🏻,👩🏼‍🤝‍👨🏽,👩🏼‍🤝‍👨🏾,👩🏼‍🤝‍👨🏿,👩🏽‍🤝‍👨🏻,👩🏽‍🤝‍👨🏼,👩🏽‍🤝‍👨🏾,👩🏽‍🤝‍👨🏿,👩🏾‍🤝‍👨🏻,👩🏾‍🤝‍👨🏼,👩🏾‍🤝‍👨🏽,👩🏾‍🤝‍👨🏿,👩🏿‍🤝‍👨🏻,👩🏿‍🤝‍👨🏼,👩🏿‍🤝‍👨🏽,👩🏿‍🤝‍👨🏾 -👬️ おとこ,かっぷる,こいびと,てをつなぐだんせい,ともだち,どうせい,友達,同性,恋人,手をつなぐ男性,男 👬🏻,👬🏼,👬🏽,👬🏾,👬🏿,👨🏻‍🤝‍👨🏼,👨🏻‍🤝‍👨🏽,👨🏻‍🤝‍👨🏾,👨🏻‍🤝‍👨🏿,👨🏼‍🤝‍👨🏻,👨🏼‍🤝‍👨🏽,👨🏼‍🤝‍👨🏾,👨🏼‍🤝‍👨🏿,👨🏽‍🤝‍👨🏻,👨🏽‍🤝‍👨🏼,👨🏽‍🤝‍👨🏾,👨🏽‍🤝‍👨🏿,👨🏾‍🤝‍👨🏻,👨🏾‍🤝‍👨🏼,👨🏾‍🤝‍👨🏽,👨🏾‍🤝‍👨🏿,👨🏿‍🤝‍👨🏻,👨🏿‍🤝‍👨🏼,👨🏿‍🤝‍👨🏽,👨🏿‍🤝‍👨🏾 -💏️ 2にんできす,2人できす,かっぷる,きす,ちゅっ,はーと,ふたりできす 💏🏻,💏🏼,💏🏽,💏🏾,💏🏿,🧑🏻‍❤️‍💋‍🧑🏼,🧑🏻‍❤️‍💋‍🧑🏽,🧑🏻‍❤️‍💋‍🧑🏾,🧑🏻‍❤️‍💋‍🧑🏿,🧑🏼‍❤️‍💋‍🧑🏻,🧑🏼‍❤️‍💋‍🧑🏽,🧑🏼‍❤️‍💋‍🧑🏾,🧑🏼‍❤️‍💋‍🧑🏿,🧑🏽‍❤️‍💋‍🧑🏻,🧑🏽‍❤️‍💋‍🧑🏼,🧑🏽‍❤️‍💋‍🧑🏾,🧑🏽‍❤️‍💋‍🧑🏿,🧑🏾‍❤️‍💋‍🧑🏻,🧑🏾‍❤️‍💋‍🧑🏼,🧑🏾‍❤️‍💋‍🧑🏽,🧑🏾‍❤️‍💋‍🧑🏿,🧑🏿‍❤️‍💋‍🧑🏻,🧑🏿‍❤️‍💋‍🧑🏼,🧑🏿‍❤️‍💋‍🧑🏽,🧑🏿‍❤️‍💋‍🧑🏾 -👩‍❤️‍💋‍👨️ 2にんできす,かっぷる,きす,じょせい,じょせいとだんせいできす,だんせい,ちゅっ,はーと -👨‍❤️‍💋‍👨️ 2にんできす,かっぷる,きす,だんせい,だんせいとだんせいできす,ちゅっ,はーと -👩‍❤️‍💋‍👩️ 2にんできす,かっぷる,きす,じょせい,じょせいとじょせいできす,ちゅっ,はーと -💑️ あつあつ,かっぷる,かっぷるとはーと,こいびと,はーと,恋人,熱々 💑🏻,💑🏼,💑🏽,💑🏾,💑🏿,🧑🏻‍❤️‍🧑🏼,🧑🏻‍❤️‍🧑🏽,🧑🏻‍❤️‍🧑🏾,🧑🏻‍❤️‍🧑🏿,🧑🏼‍❤️‍🧑🏻,🧑🏼‍❤️‍🧑🏽,🧑🏼‍❤️‍🧑🏾,🧑🏼‍❤️‍🧑🏿,🧑🏽‍❤️‍🧑🏻,🧑🏽‍❤️‍🧑🏼,🧑🏽‍❤️‍🧑🏾,🧑🏽‍❤️‍🧑🏿,🧑🏾‍❤️‍🧑🏻,🧑🏾‍❤️‍🧑🏼,🧑🏾‍❤️‍🧑🏽,🧑🏾‍❤️‍🧑🏿,🧑🏿‍❤️‍🧑🏻,🧑🏿‍❤️‍🧑🏼,🧑🏿‍❤️‍🧑🏽,🧑🏿‍❤️‍🧑🏾 -👩‍❤️‍👨️ あつあつ,かっぷる,かっぷるとはーと,こいびと,じょせい,じょせいとだんせいのかっぷる,だんせい,はーと -👨‍❤️‍👨️ あつあつ,かっぷる,かっぷるとはーと,こいびと,だんせい,だんせいとだんせいのかっぷる,はーと -👩‍❤️‍👩️ あつあつ,かっぷる,かっぷるとはーと,こいびと,じょせい,じょせいとじょせいのかっぷる,はーと -👨‍👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,だんせい,だんせいとじょせいとおとこのこのかぞく,女性,家族,家族: 男性 女性 男の子,男の子,男性,親子 -👨‍👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子,男性,親子 -👨‍👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子 男の子,男の子,男性,親子 -👨‍👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,だんせい,だんせいとじょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 男性 女性 男の子 男の子,男の子,男性,親子 -👨‍👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子 女の子,男性,親子 -👨‍👨‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとだんせいとおとこのこのかぞく,家族,家族: 男性 男性 男の子,男の子,男性,親子 -👨‍👨‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのこのかぞく,女の子,家族,家族: 男性 男性 女の子,男性,親子 -👨‍👨‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのことおとこのこのかぞく,女の子,家族,家族: 男性 男性 女の子 男の子,男の子,男性,親子 -👨‍👨‍👦‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとだんせいとおとこのことおとこのこのかぞく,家族,家族: 男性 男性 男の子 男の子,男の子,男性,親子 -👨‍👨‍👧‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのことおんなのこのかぞく,女の子,家族,家族: 男性 男性 女の子 女の子,男性,親子 -👩‍👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとじょせいとおとこのこのかぞく,女性,家族,家族: 女性 女性 男の子,男の子,親子 -👩‍👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子,親子 -👩‍👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子 男の子,男の子,親子 -👩‍👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとじょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 女性 女性 男の子 男の子,男の子,親子 -👩‍👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子 女の子,親子 -👨‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとおとこのこのかぞく,家族,家族: 男性 男の子,男の子,男性,親子 -👨‍👦‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとおとこのことおとこのこのかぞく,家族,家族: 男性 男の子 男の子,男の子,男性,親子 -👨‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのこのかぞく,女の子,家族,家族: 男性 女の子,男性,親子 -👨‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのことおとこのこのかぞく,女の子,家族,家族: 男性 女の子 男の子,男の子,男性,親子 -👨‍👧‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのことおんなのこのかぞく,女の子,家族,家族: 男性 女の子 女の子,男性,親子 -👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとおとこのこのかぞく,女性,家族,家族: 女性 男の子,男の子,親子 -👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 女性 男の子 男の子,男の子,親子 -👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのこのかぞく,女の子,女性,家族,家族: 女性 女の子,親子 -👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 女性 女の子 男の子,男の子,親子 -👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 女性 女の子 女の子,親子 -🗣️️ かお,しるえっと,はなす,はなすひとのしるえっと -👤️ 1にん,1人,かげ,げすと,げすとあかうんと,しるえっと,じょうはんしん,ひとかげ,ひとのしるえっと,ひとり,上半身,人のしるえっと,人影 -👥️ 2にん,2にんのしるえっと,2人,2人のしるえっと,しるえっと,じょうはんしん,ふたり,上半身 -🫂️ あいさつ,ありがとう,おわかれ,お別れ,こんにちは,さようなら,はぐするひと,はぐする人,挨拶 -👪️ おやこ,かぞく,家族 -👣️ あし,あしあと,足,足あと -🦰️ あかげ,あかげのひと,あかちゃ,赤毛,赤毛の人,赤茶 -🦱️ あふろ,かーる,くせげ,くせ毛,ぱんちぱーま,まきげ,巻き毛 -🦳️ ぐれー,こうれいしゃ,しらが,ねんぱい,ろうじん,年配,白髪,老人,高齢者 -🦲️ かがくりょうほう,けがない,すきんへっど,はげあたま,はげ頭,ぼうず,化学療法,坊主,毛がない -🐵️ かお,さる,さるのかお,さるの顔,どうぶつ,動物,猿,顔 -🐒️ さる,どうぶつ,動物,猿 -🦍️ かお,ごりら,どうぶつ,動物,顔 -🦧️ おらんうーたん,さる,どうぶつ,もりのひと,動物,森の人,猿 -🐶️ いぬ,いぬのかお,いぬの顔,かお,どうぶつ,ぺっと,動物,犬,顔 -🐕️ いぬ,どうぶつ,ぺっと -🦮️ あくせしびりてぃ,いぬ,しかく,しょうがい,ほじょ,ほじょけん,もうどうけん,犬,盲導犬,補助犬,視覚,障がい -🐕‍🦺️ あくせしびりてぃ,いぬ,かいじょけん,さーびす,ほじょ,介助犬,犬,補助 -🐩️ いぬ,どうぶつ,ぷーどる,ぺっと,動物,犬 -🐺️ おおかみ,おおかみのかお,おおかみの顔,かお,どうぶつ,動物,狼,顔 -🦊️ かお,きつね,きつねのかお,きつねの顔,どうぶつ,動物,狐,顔 -🦝️ あらいぐま,こうきしん,ずるがしこい,ずる賢い,せんさくずき,どうぶつ,動物,好奇心,詮索好き -🐱️ かお,どうぶつ,ねこ,ねこのかsお,ねこのかお,ねこの顔,ぺっと,動物,猫,顔 -🐈️ どうぶつ,ねこ,ぺっと -🐈‍⬛️ くろ,くろねこ,どうぶつ,ねこ,ふきつ,不吉,動物,猫,黒,黒猫 -🦁️ かお,どうぶつ,らいおん,らいおんのかお,らいおんの顔,動物,顔 -🐯️ えと,かお,しし,じゅうにし,とら,とらのかお,とらの顔,どうぶつ,動物,虎,顔 -🐅️ とら,どうぶつ,動物,虎 -🐆️ どうぶつ,ひょう,動物 -🐴️ うま,うまのかお,かお,どうぶつ,動物,顔,馬,馬の顔 -🐎️ うま,けいば,じょうば,どうぶつ,乗馬,動物,競馬,馬 -🦄️ いっかくじゅう,かお,どうぶつ,ゆにこーん,ゆにこーんのかお,ゆにこーんの顔,一角獣,動物,顔 -🦓️ しまうま,しましま,どうぶつ,動物 -🦌️ かお,しか,どうぶつ,動物,顔,鹿 -🦬️ うし,どうぶつ,ばいそん,ばっふぁろー,むれ,やぎゅう,動物,牛,群れ,野牛 -🐮️ うし,うしのかお,えと,かお,じゅうにし,どうぶつ,動物,牛,牛の顔,顔 -🐂️ うし,おうし,せいざ,どうぶつ,動物,星座,牛,牡牛 -🐃️ うし,すいぎゅう,どうぶつ,ばっふぁろー,動物,水牛,牛 -🐄️ うし,どうぶつ,めうし,動物,牛,牝牛 -🐷️ かお,どうぶつ,ぶた,ぶたのかお,ぶたの顔,動物,豚,顔 -🐖️ どうぶつ,ぶた,動物,豚 -🐗️ いのしし,かお,どうぶつ,のぶた,動物,猪,顔 -🐽️ かお,はな,ぶた,ぶたの鼻,ぶたはな,ぶたばな,ぶた鼻,豚,顔,鼻 -🐏️ おひつじ,せいざ,どうぶつ,ひつじ,動物,星座,牡羊,羊 -🐑️ どうぶつ,ひつじ,動物,羊 -🐐️ せいざ,どうぶつ,やぎ,動物,山羊,星座 -🐪️ どうぶつ,らくだ,動物 -🐫️ どうぶつ,ふたこぶ,ふたこぶらくだ,らくだ,動物 -🦙️ あるぱか,ぐあなこ,どうぶつ,びくーな,ようもう,らま,動物,羊毛 -🦒️ きりん,どうぶつ,動物 -🐘️ ぞう,どうぶつ,動物,象 -🦣️ きば,きょだい,ぜつめつ,どうぶつ,まんもす,動物,巨大,牙,絶滅 -🦏️ かお,さい,どうぶつ,動物,顔 -🦛️ かば,どうぶつ,動物 -🐭️ えと,かお,じゅうにし,どうぶつ,ね,ねずみ,ねずみのかお,ねずみの顔,動物,顔 -🐁️ どうぶつ,ねずみ,はつかねずみ,まうす,動物 -🐀️ どうぶつ,ねずみ,らっと,動物 -🐹️ かお,どうぶつ,ねずみ,はむすたー,はむすたーのかお,はむすたーの顔,ぺっと,動物,顔 -🐰️ う,うさぎ,うさぎのかお,うさぎの顔,えと,かお,じゅうにし,どうぶつ,ぺっと,動物,顔 -🐇️ うさぎ,どうぶつ,ぺっと,動物 -🐿️️ どうぶつ,りす -🦫️ だむづくり,だむ作り,どうぶつ,びーばー,動物 -🦔️ とげ,どうぶつ,はりねずみ,動物 -🦇️ きゅうけつき,こうもり,どうぶつ,ばんぱいあ,動物,吸血鬼 -🐻️ かお,くま,くまのかお,くまの顔,どうぶつ,動物,熊,顔 -🐻‍❄️️ くま,しろ,しろくま,どうぶつ,ほっきょく,ほっきょくぐま -🐨️ かお,こあら,どうぶつ,動物,顔 -🐼️ かお,どうぶつ,ぱんだ,ぱんだのかお,ぱんだの顔,動物,顔 -🦥️ どうぶつ,なまけもの,のんびり,ものぐさ,動物 -🦦️ あそびすき,かわうそ,さかなをたべる,どうぶつ,らっこ,動物,遊び好き,魚を食べる -🦨️ あくしゅう,すかんく,どうぶつ,動物,悪臭 -🦘️ おーすとらりあ,かんがるー,じゃんぷ,じょーい,ゆうたいるい,有袋類 -🦡️ あなぐま,どうぶつ,みつあなぐま,動物 -🐾️ あしあと,いぬ,どうぶつ,にくきゅう,ねこ,動物,犬,犬の足跡,猫,肉球,足跡 -🦃️ しちめんちょう,たーきー,とり,どうぶつ,七面鳥,動物,鳥 -🐔️ かお,とり,どうぶつ,にわとり,動物,顔,鳥 -🐓️ おんどり,とり,どうぶつ,動物,鳥 -🐣️ かお,たまご,たまごからかえったひよこ,とり,どうぶつ,ひな,ひなどり,ひな鳥,ひよこ,ふか,動物,卵からかえったひよこ,顔,鳥 -🐤️ かお,とり,どうぶつ,ひな,ひよこ,よこをむいているひよこ,動物,横を向いているひよこ,顔,鳥 -🐥️ とり,どうぶつ,ひな,ひよこ,まえをむいているひよこ,前を向いているひよこ,動物,鳥 -🐦️ かお,とり,どうぶつ,鳥 -🐧️ とり,どうぶつ,ぺんぎん,動物,鳥 -🕊️️ とり,どうぶつ,はと,へいわ -🦅️ とり,どうぶつ,わし,動物,鳥 -🦆️ かも,とり,どうぶつ,動物,鳥 -🦢️ とり,はくちょう,ひな,みにくいあひるのこ,みにくいあひるの子,白鳥,鳥 -🦉️ とり,どうぶつ,ふくろう,動物,鳥 -🦤️ ぜつめつ,とべないとり,とり,どーどー,もーりしゃすとう,もーりしゃす島,絶滅,飛べない鳥,鳥 -🪶️ うもう,かるい,とぶ,とり,はね,羽,羽毛,軽い,飛ぶ,鳥 -🦩️ とり,どうぶつ,ねったい,ぴんくいろ,ぴんく色,ふらみんご,動物,熱帯,鳥 -🦚️ くじゃく,とり,はで,ぴーこっく,孔雀,派手,鳥 -🦜️ おうむ,かいぞく,しゃべる,とり,海賊,鳥 -🐸️ かえる,かえるのかお,かえるの顔,かお,どうぶつ,動物,顔 -🐊️ どうぶつ,はちゅうるい,わに,動物,爬虫類 -🐢️ かめ,どうぶつ,はちゅうるい,動物,爬虫類 -🦎️ とかげ,どうぶつ,はちゅうるい,動物,爬虫類 -🐍️ せいざ,どうぶつ,どく,はちゅうるい,へび,動物,星座,毒,爬虫類 -🐲️ えと,かお,じゅうにし,たつ,どうぶつ,どらごん,どらごんのかお,どらごんの顔,りゅう,動物,竜,顔,龍 -🐉️ どうぶつ,どらごん,りゅう,動物,竜,龍 -🦕️ きょうりゅう,そうしょくきょうりゅう,でぃぷろどくす,ぶらきおさうるす,りゅうきゃくるい,恐竜,竜脚類,草食恐竜 -🦖️ きょうりゅう,てぃらのさうるす,恐竜 -🐳️ くじら,しお,しおふき,しおふきくじら,どうぶつ,動物,潮吹き,潮吹きくじら -🐋️ くじら,どうぶつ,動物 -🐬️ いるか,どうぶつ,動物 -🦭️ あざらし,あしか,かいじゅう,とど,どうぶつ,動物,海獣 -🐟️ さかな,せいざ,どうぶつ,魚 -🐠️ さかな,どうぶつ,ねったいぎょ,動物,熱帯魚,魚 -🐡️ さかな,どうぶつ,ふぐ,動物,魚 -🦈️ さかな,さめ,どうぶつ,動物,魚 -🐙️ たこ,どうぶつ,動物 -🐚️ かい,どうぶつ,まきがい,動物,巻き貝,貝 -🐌️ かたつむり,でんでんむし,でんでん虫,むし,虫 -🦋️ ちょう,むし,虫 -🐛️ いもむし,けむし,げじげじ,むし,毛虫,芋虫,虫 -🐜️ あり,むし,虫 -🐝️ はち,みつばち,むし,虫 -🪲️ かぶとむし,こんちゅう,つの,むし,昆虫,虫 -🐞️ てんとうむし,むし,虫 -🦗️ こおろぎ,ばった,むし,虫 -🪳️ がいちゅう,ごきぶり,むし,害虫,虫 -🕷️️ くも,すぱいだー,むし -🕸️️ くも,くものす -🦂️ さそり,せいざ,むし,星座,虫 -🦟️ ういるす,か,ねつ,びょうき,まらりあ,むし,熱,病気,虫,蚊 -🪰️ がいちゅう,はえ,びょうげんきん,ふけつ,むし,不潔,害虫,病原菌,虫 -🪱️ きせいちゅう,みみず,むし,寄生虫,虫 -🦠️ あめーば,ういるす,さいきん,ばくてりあ,びせいぶつ,微生物,細菌 -💐️ はな,はなたば,ぶーけ,花,花束 -🌸️ さくら,はな,桜,花 -💮️ たいへんよくできました,はな,はなまる,よくできました,大変よくできました,大変よく出来ました,花 -🏵️️ しょくぶつ,はな,はなかざり -🌹️ はな,ばら,花 -🥀️ しおれた,しおれたはな,しおれた花,はな,花 -🌺️ はいびすかす,はな,花 -🌻️ はな,ひまわり,花 -🌼️ かいか,さいたはな,はな,咲いた花,花,開花 -🌷️ ちゅーりっぷ,はな,花 -🌱️ しんめ,ふたば,め,双葉,新芽,芽 -🪴️ うえきばち,しょくぶつ,なえ,はちうえ,べらんだ,みずやり,みどり,植木鉢,植物,水やり,緑,苗,鉢植え -🌲️ き,じょうりょくじゅ,常緑樹,木 -🌳️ き,らくようじゅ,木,落葉樹 -🌴️ き,やし,やしのき,やしの木,木 -🌵️ さぼてん,しょくぶつ,植物 -🌾️ いなほ,いね,くさ,すすき,稲,稲穂,草 -🌿️ くさ,は,はっぱ,はーぶ,やくそう,草,葉,薬草 -☘️️ くさ,くろーばー,は -🍀️ 4,くさ,くろーばー,は,よつば,よつばのくろーばー,四つ葉のくろーばー,草,葉 -🍁️ かえで,こうよう,もみじ,紅葉 -🍂️ おちば,かれは,このは,木の葉,枯れ葉,落ち葉 -🍃️ おちば,かぜ,かぜにゆれるは,このは,びゅうびゅう,木の葉,落ち葉,風,風に揺れる葉 -🍄️ きのこ,どく,まっしゅるーむ,やさい,毒,野菜 -🍇️ くだもの,ぐれーぷ,ぶどう,果物 -🍈️ くだもの,めろん,やさい,果物,野菜 -🍉️ くだもの,すいか,やさい,果物,野菜 -🍊️ おれんじ,くだもの,みかん,果物 -🍋️ くだもの,れもん,果物 -🍌️ くだもの,ばなな,果物 -🍍️ くだもの,とろぴかる,ぱいなっぷる,ぱいん,果物 -🥭️ くだもの,とろぴかる,まんごー,果物 -🍎️ あかりんご,あっぷる,くだもの,りんご,果物,赤りんご -🍏️ あおりんご,あっぷる,くだもの,りんご,果物,青りんご -🍐️ くだもの,せいようなし,なし,ようなし,果物,洋なし,西洋なし -🍑️ くだもの,ぴーち,もも,果物,桃 -🍒️ くだもの,さくらんぼ,ちぇりー,果物 -🍓️ いちご,くだもの,すとろべりー,果物 -🫐️ くだもの,びるべりー,ぶるーべりー,べりー,果物 -🥝️ きうい,きういふるーつ,くだもの,果物 -🍅️ くだもの,とまと,やさい,果物,野菜 -🫒️ おりーぶ,かじつ,じつ,み,実,果実 -🥥️ くだもの,ここなっつ,ここなつ,やしのみ,やしの実,果物 -🥑️ あぼかど,あぼがど,くだもの,やさい,果物,野菜 -🍆️ なす,やさい,野菜 -🥔️ いも,じゃがいも,ぽてと,やさい,野菜 -🥕️ にんじん,やさい,人参,野菜 -🌽️ こーん,とうもろこし,やさい,野菜 -🌶️️ からい,こうしんりょう,とうがらし,やさい -🫑️ あかぴーまん,とうがらし,ぱぷりか,ぴーまん,やさい,赤ぴーまん,野菜 -🥒️ きゅうり,つけもの,ぴくるす,やさい,漬け物,野菜 -🥬️ きゃべつ,けーる,ちんげんさい,ちんげん菜,はやさい,れたす,葉野菜 -🥦️ ぶろっこりー,やさい,野菜 -🧄️ かおり,におい,にんにく,やくみ,やさい,薬味,野菜,香り -🧅️ たまねぎ,ねぎ,やくみ,やさい,玉ねぎ,薬味,野菜 -🥜️ なっつ,ぴーなっつ,やさい,らっかせい,落花生,野菜 -🌰️ くり,やさい,栗,野菜 -🍞️ しょくぱん,ぱん,べーかりー,食ぱん -🥐️ くろわっさん,ぱん,ふらんす,べーかりー -🥖️ ばげっと,ぱん,ふらんすぱん,べーかりー -🫓️ あれぱ,なん,ぱん,ぴたぱん,ふらっとぶれっど,らばし -🥨️ ねじり,ぱん,ぷれっつぇる -🥯️ くりーむちーず,ぱんや,ぱん屋,べーかりー,べーぐる -🥞️ ぱんけーき,ほっとけーき -🧇️ ふんわり,やきがし,わっふる,焼き菓子 -🧀️ ちーず -🍖️ にく,ほねつきにく,ももにく,もも肉,肉,骨付き肉 -🍗️ ちきん,とりももにく,にく,にわとりももにく,ほねつきにく,ももにく,もも肉,肉,骨付き肉,鶏もも肉 -🥩️ すてーき,すてーきにく,すてーき肉,にく,びーふ,ぽーく,らむ,肉 -🥓️ にく,べーこん,肉 -🍔️ はんばーがー,ばーがー -🍟️ ふらいどぽてと,ふれんちふらい,ぽてと,ぽてとふらい -🍕️ ちーず,ぴざ,ぴっつぁ -🌭️ そーせーじ,ふらんくふると,ほっとどっぐ -🥪️ さんどいっち,ぱん -🌮️ たこす,めきしかん -🌯️ そふとたこす,ぶりとー,めきしかん -🫔️ たまる,たまれす,ちまき,めきしかん -🥙️ けばぶ,けばぶさんど,らっぷさんど -🧆️ ころっけ,にくだんご,ひよこまめ,ふぁらふぇる,肉団子 -🥚️ たまご,卵 -🍳️ たまご,ふらいぱん,めだまやき,りょうり,卵,料理,目玉焼き -🥘️ しーふーど,ぱえりあ -🍲️ しちゅー,なべ,なべりょうり,にこみ,にもの,煮物,煮込み,鍋 -🫕️ すいす,ちょこ,ちーず,とかす,なべ,ふぉんでゅ,溶かす,鍋 -🥣️ おかゆ,しりある,ちょうしょく,ぼうるとすぷーん,朝食 -🥗️ ぐりーん,ぐりーんさらだ,さらだ -🍿️ おかし,お菓子,ぽっぷこーん -🧈️ にゅうせいひん,ばたー,乳製品 -🧂️ しお,ちょうみりょう,ふりかけようき,やくみ,塩,振りかけ容器,薬味,調味料 -🥫️ かん,かんづめ,ひじょうしょく,缶,缶詰,非常食 -🍱️ えきべん,べんとう,まくのうち,幕の内,弁当,駅弁 -🍘️ おかし,おせんべい,お菓子,せんべい -🍙️ おにぎり,おむすび,こめ,米 -🍚️ こめ,ごはん,ちゃわん,らいす,米 -🍛️ かれー,かれーらいす,らいす -🍜️ あつあつ,どんぶり,らーめん,熱々 -🍝️ すぱげってぃ,すぱげってぃー,ぱすた -🍠️ いも,さつまいも,やきいも,焼き芋,芋 -🍢️ おでん -🍣️ おすし,お寿司,すし -🍤️ えび,えびふらい,てんぷら,ふらい,天ぷら -🍥️ うず,うずまき,なると,ねりもの,渦巻き,練り物 -🥮️ あき,おいわい,お祝い,げっぺい,ちゅうかかし,ちゅうしゅうせつ,ちゅうしゅうぶし,中秋節,中華菓子,月餅,秋 -🍡️ おだんご,お団子,だんご,わがし,和菓子 -🥟️ ぎょうざ,てんしん,にくまん,点心,肉まん -🥠️ おみくじ,ふぉーちゅんくっきー -🥡️ ちゅうか,ていくあうとべんとう,ていくあうと弁当,べんとう,もちかえり,中華,弁当,持ち帰り -🦀️ かに,せいざ,どうぶつ,動物,星座 -🦞️ ざりがに,しーふーど,はさみ,びすく,ろぶすたー -🦐️ えび,しゅりんぷ,しーふーど,どうぶつ,動物 -🦑️ いか,しーふーど,どうぶつ,動物 -🦪️ おいすたー,かい,かき,ぎょかい,しーふーど,なまがき,牡蠣,生がき,貝,魚介 -🍦️ あいす,おかし,すいーつ,そふと,そふとくりーむ,でざーと -🍧️ あいす,おかし,かきごおり,かき氷,こおり,でざーと,氷 -🍨️ あいす,あいすくりーむ,おかし,すいーつ,でざーと -🍩️ おかし,お菓子,すいーつ,でざーと,どーなつ -🍪️ おかし,お菓子,くっきー,すいーつ,でざーと -🎂️ おたんじょうび,けーき,たんじょうび,ばーすでー,ばーすでーけーき,誕生日 -🍰️ おかし,お菓子,けーき,しょーとけーき,すいーつ,でざーと -🧁️ おかし,お菓子,かっぷけーき,けーき,すいーつ,べーかりー -🥧️ おかし,お菓子,たると,ぱい -🍫️ おかし,お菓子,すいーつ,ちょこ,ちょこれーと,でざーと -🍬️ あめ,おかし,お菓子,きゃんでぃ,きゃんでぃー -🍭️ あめ,おかし,お菓子,きゃんでぃ,きゃんでぃー,ぺろぺろきゃんでぃ,ぼうつききゃんでぃ,棒付ききゃんでぃ -🍮️ おかし,お菓子,すいーつ,でざーと,ぷりん -🍯️ あまい,はちみつ,はにー,はにーぽっと,みつびん,甘い -🍼️ あかちゃん,ほにゅうびん,ほにゅう瓶,みるく,赤ちゃん -🥛️ ぎゅうにゅう,ぎゅうにゅういりのこっぷ,こっぷ,みるく,牛乳,牛乳入りのこっぷ -☕️ あたたかいのみもの,かっぷ,きっさてん,こうちゃ,こーひー,のみもの,ほっとどりんく -🫖️ おちゃ,お茶,きゅうす,ちゃき,てぃーぽっと,のみもの,急須,茶器,飲み物 -🍵️ おちゃ,お茶,のみもの,ゆのみ,りょくちゃ,湯飲み,緑茶,飲み物 -🍶️ お酒,さけ,とっくり,にほんしゅ,徳利,日本酒,酒 -🍾️ あわ,しゃんぱん,しゃんぺん,すぱーくりんぐわいん,すぷまんて,ぼとる,泡 -🍷️ ぐらす,ばー,わいん,わいんぐらす -🍸️ かくてる,かくてるぐらす,ぐらす,ばー -🍹️ かくてる,とろぴかる,とろぴかるどりんく,ばー -🍺️ いざかや,じょっき,ばー,びーる,びーるじょっき,居酒屋 -🍻️ えんかい,かんぱい,じょっき,びーる,びーるでかんぱい,びーるで乾杯,乾杯,宴会 -🥂️ かんぱい,ぐらすでかんぱい,ぐらすで乾杯,しゃんぱん,しゃんぺん,すぱーくりんぐわいん,すぷまんて,乾杯 -🥃️ うぃすきー,ういすきー,ぐらす,たんぶらー,たんぶらーぐらす -🥤️ こっぷ,じゅーす,すとろーかっぷ -🧋️ おちゃ,お茶,たぴおか,たぴおかどりんく,どりんく,ばぶるてぃー,みるくてぃー -🧃️ かみぱっくいんりょう,じゅーす,どりんく,のみもの,紙ぱっく飲料,飲み物 -🧉️ おちゃ,お茶,どりんく,のみもの,まてちゃ,まて茶,飲み物 -🧊️ かくごおり,こおり,つめたい,冷たい,氷,角氷 -🥢️ おはし,はし -🍽️️ おさら,さら,ないふ,ないふとふぉーくとさら,ふぉーく -🍴️ かとらりー,ないふ,ないふとふぉーく,ないふ・ふぉーく,ふぉーく,れすとらん -🥄️ かとらりー,しょっき,すぷーん,食器 -🔪️ ないふ,ほうちょう,りょうり,包丁,料理 -🏺️ かめ,せいざ,つぼ,みずがめ,壺,星座,水瓶 -🌍️ あふりか,ちきゅう,よーろっぱ -🌎️ あめりか,あめりかたいりく,ちきゅう -🌏️ あじあ,おーすとらりあ,ちきゅう,地球 -🌐️ しごせん,しごせんのあるちきゅう,ちきゅう,地球,子午線,子午線のある地球 -🗺️️ せかい,せかいちず,ちず -🗾️ ちず,にっぽん,にっぽんちず,にほん,にほんちず,地図,日本,日本地図 -🧭️ おりえんてーりんぐ,こうかい,こうくう,こんぱす,じしゃく,磁石,航海,航空 -🏔️️ かんせつ,やま,ゆき,ゆきやま -⛰️️ さんがく,やま -🌋️ かざん,ふんか,やま,噴火,山,火山 -🗻️ ふじさん,やま,富士山,山 -🏕️️ きゃんぷ,てんと,やま -🏖️️ すなはま,ぱらそる,びーち,びーちぱらそる -🏜️️ さばく,さぼてん,さぼてんのあるさばく -🏝️️ しま,むじんとう,やし,やしのきのあるしま -🏞️️ こうえん,こくりつこうえん,しぜん -🏟️️ きょうぎじょう,すたじあむ,やきゅうじょう -🏛️️ しせき,れきし,れきしてきけんぞうぶつ,れきしてきなたてもの -🏗️️ くれーん,けんせつ,けんせつちゅう,こうじ -🧱️ かべ,しっくい,ねんど,もるたる,れんが,壁,粘土 -🪨️ おもたい,かたい,がんせき,きょがん,せきざい,岩石,巨岩,石材,硬い,重たい -🪵️ ざいもく,じゅもく,まるた,もくざい,ろぐ,丸太,木材,材木,樹木 -🛖️ こや,ばんがろー,ゆると,わらぶきこや,わらぶき小屋,小屋 -🏘️️ いえ,じゅうたくがい,ふくすうのいえ,まち -🏚️️ あきや,いえ,たてもの,はいおく -🏠️ いえ,かおく,たてもの,まいほーむ,家 -🏡️ いえ,うち,たてもの,にわ,にわつきのいえ,ほーむ,まいほーむ,家,庭,庭付きの家,建物 -🏢️ おふぃすびる,たてもの,びる,建物 -🏣️ たてもの,ゆうびん,ゆうびんきょく,建物,郵便,郵便局 -🏤️ せいようのゆうびんきょく,たてもの,ゆうびん,建物,西洋の郵便局,郵便 -🏥️ いしゃ,くすり,たてもの,びょういん,医者,建物,病院,薬 -🏦️ ぎんこう,たてもの,建物,銀行 -🏨️ たてもの,ほてる,建物 -🏩️ たてもの,ほてる,らぶほ,らぶほてる,建物 -🏪️ こんびに,こんびにえんすすとあ,たてもの,建物 -🏫️ がっこう,たてもの,学校,建物 -🏬️ たてもの,でぱーと,ひゃっかてん,建物,百貨店 -🏭️ こうじょう,こうば,たてもの,工場 -🏯️ おしろ,しろ,たてもの,にっぽん,にほん,城,建物,日本 -🏰️ おしろ,きゃっする,しろ,せいようのしろ,たてもの,城,建物,西洋の城 -💒️ きょうかい,けっこん,けっこんしき,しきじょう,たてもの,建物,式場,教会,結婚,結婚式 -🗼️ たわー,とうきょう,とうきょうたわー,東京,東京たわー -🗽️ あめりか,じゆうのめがみ,ちょうぞう,にゅーよーく,めがみ,彫像,自由の女神 -⛪️ きょうかい,きりすときょう,しゅうきょう,たてもの,ちゃぺる -🕌️ いすらむきょう,いすらむ教,しゅうきょう,たてもの,もすく,宗教,建物 -🛕️ しゅうきょう,たてもの,てら,ひんずーきょう,ひんずー教,ひんどぅーきょうのじいん,ひんどぅー教の寺院,宗教,寺,建物 -🕍️ しなごーぐ,しゅうきょう,たてもの,ゆだやきょう,ゆだや教,宗教,建物 -⛩️️ しゅうきょう,しんとう,じんじゃ,たてもの,とりい -🕋️ いすらむきょう,いすらむ教,かーば,しゅうきょう,せいち,たてもの,めっか,宗教,建物,聖地 -⛲️ こうえん,ふんすい -⛺️ きゃんぷ,てんと -🌁️ きり,きりのとかい,とかい,都会,霧,霧の都会 -🌃️ ながれぼし,ほし,やけい,よる,よるのとかい,夜,夜の都会,夜景,星 -🏙️️ こうそうびる,とかい,びるぐん -🌄️ あさ,あさひ,ごらいこう,ご来光,たいよう,ひので,やまからひので,太陽,山から日の出,日の出,朝,朝日 -🌅️ あさ,あさひ,たいよう,ひので,太陽,日の出,朝,朝日 -🌆️ とかい,ゆうがた,ゆうぐれ,ゆうぐれのとかい,ゆうひ,よる,夕方,夕日,夕暮れ,夕暮れの都会,都会 -🌇️ たいよう,ゆうがた,ゆうぐれ,ゆうひ,夕方,夕日,夕暮れ,太陽 -🌉️ はし,やけい,よる,よるのはし,夜,夜の橋,夜景,橋 -♨️️ いいきぶん,おんせん,おんせんまーく -🎠️ めりーごーらんど,ゆうえんち,遊園地 -🎡️ かんらんしゃ,ゆうえんち,観覧車,遊園地 -🎢️ こーすたー,じぇっとこーすたー,ゆうえんち,遊園地 -💈️ さんぱつ,とこや,ばーばー,びよういん,びようしつ,へあさろん,りはつてん,床屋,理髪店,美容室,美容院 -🎪️ いべんと,さーかす,さーかすてんと,てんと -🚂️ sl,えすえる,じょうききかんしゃ,のりもの,れっしゃ,乗り物,列車,蒸気機関車 -🚃️ でんしゃ,のりもの,れっしゃ,乗り物,列車,電車 -🚄️ しんかんせん,でんしゃ,のりもの,乗り物,新幹線,電車 -🚅️ 0けい,0系,0系新幹線,しんかんせん,ぜろけいしんかんせん,でんしゃ,のぞみ,のりもの,まるいしんかんせん,丸い新幹線,乗り物,新幹線,電車 -🚆️ でんしゃ,でんしゃしょうめん,のりもの,れっしゃ,乗り物,列車,電車,電車正面 -🚇️ ちかてつ,でんしゃ,のりもの,めとろ,地下鉄 -🚈️ でんしゃ,のりもの,らいとれーる,乗り物,電車 -🚉️ えき,でんしゃ,のりもの,ふみきり,れっしゃ,乗り物,列車,踏み切り,電車,駅 -🚊️ でんしゃ,のりもの,ろめんでんしゃ,ろめんでんしゃしょうめん,乗り物,路面電車,路面電車正面,電車 -🚝️ でんしゃ,のりもの,ものれーる,乗り物,電車 -🚞️ でんしゃ,とざんてつどう,とざんでんしゃ,のりもの,乗り物,登山鉄道,登山電車,電車 -🚋️ でんしゃ,のりもの,ろめんでんしゃ,乗り物,路面電車,電車 -🚌️ のりもの,ばす,乗り物 -🚍️ のりもの,ばす,ばすしょうめん -🚎️ とろりーばす,のりもの,ばす,乗り物 -🚐️ のりもの,ばす,まいくろばす,乗り物 -🚑️ きゅうきゅうしゃ,のりもの,救急車 -🚒️ しょうぼうしゃ,のりもの,乗り物,消防車 -🚓️ けいさつ,のりもの,ぱとかー,乗り物,警察 -🚔️ けいさつ,のりもの,ぱとかー,ぱとかーしょうめん -🚕️ たくしー,のりもの,乗り物 -🚖️ たくしー,たくしーしょうめん,たくしー正面,のりもの,乗り物 -🚗️ くるま,じどうしゃ,のりもの,乗り物,自動車,車 -🚘️ くるま,じどうしゃ,じどうしゃしょうめん,のりもの -🚙️ rv,rv車,suv,suvくるま,suv車,あーるぶいしゃ,あーるぶい車,えすゆーぶいしゃ,くるま,じどうしゃ,のりもの,乗り物,自動車,車 -🛻️ くるま,けいとらっく,とらっく,のりもの,はいたつ,ぴっくあっぷとらっく,乗り物,車,軽とらっく,配達 -🚚️ くるま,とらっく,のりもの,はいたつ,乗り物,車,配達 -🚛️ くるま,とらっく,とれーらー,のりもの,乗り物,車 -🚜️ くるま,とらくたー,のりもの,乗り物,車 -🏎️️ f1,えふわん,くるま,すぽーつ,のりもの,もーたーすぽーつ,れーしんぐかー -🏍️️ おーとばい,おーとれーす,すぽーつ,のりもの,ばいく,もーたーすぽーつ -🛵️ げんつき,すくーたー,原付 -🦽️ あくせしびりてぃ,いす,くるまいす,しゅどうしきくるまいす,手動式車椅子,椅子,車椅子 -🦼️ あくせしびりてぃ,いす,くるまいす,でんどうくるまいす,椅子,車椅子,電動車椅子 -🛺️ おーとりくしゃー,さんりんたくしー,たくしー,とぅくとぅく,りくしゃー,三輪たくしー -🚲️ じてんしゃ,のりもの,自転車 -🛴️ きっくすくーたー,きっくすけーたー,きっくぼーど -🛹️ すけぼー,すけーとぼーど,ぼーど -🛼️ すけーと,すぽーつ,ろーらーすけーと -🚏️ のりもの,ばすてい,ばすのりば,ばす乗り場,ばす停,乗り物 -🛣️️ こうそく,こうそくどうろ,どうろ -🛤️️ せんろ,てつどう -🛢️️ せきゆ,どらむかん -⛽️ がすすたんど,がそりん,がそりんすたんど,がそりんのずる -🚨️ ぱとかー,ぱとらんぷ -🚥️ しんごう,しんごうき,しんごうよこ,信号,信号横,信号機 -🚦️ しんごう,しんごうき,しんごうたて,信号,信号機,信号縦 -🛑️ すとっぷ,とまれ,とまれのひょうしき,ひょうしき,標識,止まれ,止まれの標識 -🚧️ こうじちゅう,さいん,つうこうどめ,工事中,通行止め -⚓️ いかり,ふね,みなと -⛵️ のりもの,はんせん,ふね,ぼーと,よっと,りぞーと -🛶️ かぬー,かやっく,のりもの,ふね,ぼーと,乗り物,船 -🚤️ すぴーどぼーと,のりもの,ふね,ぼーと,乗り物,船 -🛳️️ きゃくせん,のりもの,ふね,りょかくせん -⛴️️ のりもの,ふぇりー,ふね -🛥️️ のりもの,ふね,ぼーと,もーたーぼーと -🚢️ のりもの,ふね,乗り物,船 -✈️️ のりもの,ひこうき -🛩️️ こがたき,こがたひこうき,のりもの,ひこうき -🛫️ のりもの,ひこうき,ひこうきりりく,りりく,乗り物,離陸,飛行機,飛行機離陸 -🛬️ ちゃくりく,のりもの,ひこうき,ひこうきちゃくりく,乗り物,着陸,飛行機,飛行機着陸 -🪂️ すかいだいびんぐ,ぱらぐらいだー,ぱらしゅーと -💺️ いす,ざせき,せき,席,座席,椅子 -🚁️ のりもの,へり,へりこぷたー,乗り物 -🚟️ けんすいしきものれーる,でんしゃ,のりもの,ものれーる,乗り物,懸垂式ものれーる,電車 -🚠️ けーぶるかー,ごんどら,のりもの,乗り物 -🚡️ ごんどら,のりもの,ろーぷうぇい,乗り物 -🛰️️ うちゅう,じんこうえいせい -🚀️ うちゅう,のりもの,ろけっと,乗り物,宇宙 -🛸️ ufo,うちゅう,そらとぶえんばん,のりもの,ゆーふぉー,乗り物,宇宙,空飛ぶ円盤 -🛎️️ べる,べるぼーいべる,ほてる -🧳️ すーつけーす,ぱっきんぐ,りょこう,りょこうかばん,旅行,旅行かばん -⌛️ すな,すなどけい,とけい -⏳️ すな,すながおちているすなどけい,すなどけい,とけい,砂時計 -⌚️ うでどけい,とけい -⏰️ あらーむ,とけい,めざまし,めざましどけい,時計 -⏱️️ すとっぷうぉっち,とけい -⏲️️ たいまー,とけい -🕰️️ おきどけい,とけい,まんてるくろっく -🕛️ 12:00,12じ,しょうご,じゅうにじ,とけい,時計,12じ -🕧️ 12:30,12じはん,とけい -🕐️ 1:00,1じ,いちじ,とけい,時計,1じ -🕜️ 1:30,1じはん,とけい -🕑️ 2:00,2じ,とけい,にじ,時計,2じ -🕝️ 2:30,2じはん,とけい -🕒️ 3:00,3じ,さんじ,とけい,時計,3じ -🕞️ 3:30,3じはん,とけい -🕓️ 4:00,4じ,とけい,よじ,時計,4じ -🕟️ 4:30,4じはん,とけい -🕔️ 5:00,5じ,ごじ,とけい,時計,5じ -🕠️ 5:30,5じはん,とけい -🕕️ 6:00,6じ,とけい,ろくじ,時計,6じ -🕡️ 6:30,6じはん,とけい -🕖️ 7:00,7じ,しちじ,とけい,ななじ,時計,7じ -🕢️ 7:30,7じはん,とけい -🕗️ 8:00,8じ,とけい,はちじ,時計,8じ -🕣️ 8:30,8じはん,とけい -🕘️ 9:00,9じ,くじ,とけい,時計,9じ -🕤️ 9:30,9じはん,とけい -🕙️ 10:00,10じ,じゅうじ,とけい,めざまし,時計,10じ -🕥️ 10:30,10じはん,とけい -🕚️ 11:00,11じ,じゅういちじ,とけい,時計,11じ -🕦️ 11:30,11じはん,とけい -🌑️ しんげつ,つき,新月,月 -🌒️ つき,はつかづき,はつづき,みかづき,三日月,初月,月 -🌓️ じょうげん,じょうげんのつき,つき,はんげつ,上弦,上弦の月,半月,月 -🌔️ かけづき,じゅうさんやつき,じゅうさんよつき,つき,とおかやのつき,とおかんやのつき,十三夜月,十日夜の月,月 -🌕️ つき,まんげつ,満月 -🌖️ いまちづき,つき,ねまちづき,ねまちのつき,寝待月,居待月,月 -🌗️ かげん,かげんのつき,つき,はんげつ,下弦,下弦の月,半月,月 -🌘️ ありあけづき,つき,みかづき,三日月,月,有明月 -🌙️ つき,みかづき,三日月,月 -🌚️ かお,かおのあるしんげつ,しんげつ,つき,新月,月,顔,顔のある新月 -🌛️ かお,かおのあるじょうげんのつき,じょうげんのつき,つき,みかづき,三日月,上弦の月,月,顔,顔のある上弦の月 -🌜️ かお,かおのあるかげんのつき,かげんのつき,つき -🌡️️ おんど,おんどけい,きおん,てんき -☀️️ たいよう,はれ -🌝️ かお,かおのあるまんげつ,つき,月,顔,顔のある満月 -🌞️ かお,かおのあるたいよう,たいよう,太陽,顔,顔のある太陽 -🪐️ てんたい,どせい,ほし,りんぐ,わくせい,わのあるわくせい,土星,天体,惑星,星,環のある惑星 -⭐️ すたー,ほし -🌟️ かがやき,きらきら,きらきらぼし,きらきら星,すたー,ほし,星,輝き -🌠️ すたー,ながれぼし,ほし,星,流れ星 -🌌️ あまのがわ,ぎんが,ほしぞら,みるきーうぇい,よぞら,夜空,天の川,星空,銀河 -☁️️ くも,くもり,てんき -⛅️ くも,くもり,くもりときどきはれ,たいよう,てんき,ときどきくもり -⛈️️ あめ,いなずま,いなづま,かみなり,くも,てんき,らいう -🌤️️ くも,たいよう,てんき,はれ,はれときどきくもり -🌥️️ くも,くもり,くもりいちじはれ,たいよう,てんき -🌦️️ あめときどきはれ,あめのちはれ,くも,くもり,たいよう,てんき,てんきあめ -🌧️️ あまぐも,あめ,くも,てんき -🌨️️ くも,てんき,ゆき,ゆきぐも -🌩️️ いなずま,いなづま,かみなり,くも,てんき,らいうん -🌪️️ たつまき,てんき,とっぷう -🌫️️ きり,てんき -🌬️️ かお,かおのあるかぜ,かぜ -🌀️ うず,うずまき,くるくる,ぐるぐる,さいくろん,たいふう,はりけーん,めまい,もやもや,台風,渦巻き -🌈️ にじ,れいんぼー,虹 -🌂️ あめ,かさ,てんき,とじたかさ,もちもの,傘,天気,持ち物,閉じた傘,雨 -☂️️ あめ,かさ,てんき,もちもの -☔️ あめ,かさ,かさとあめ,てんき,もちもの -⛱️️ かさ,すなはま,ぱらそる,びーち -⚡️ いなずま,いなづま,かみなり,きけん,こうでんあつ,でんき -❄️️ けっしょう,ゆき,ゆきのけっしょう -☃️️ ゆき,ゆきだるま,ゆきだるまとゆき -⛄️ ゆき,ゆきだるま -☄️️ うちゅう,すいせい -🔥️ ひ,ふぁいあー,ふぁいやー,ほのお,火,炎 -💧️ あせ,しずく,すいてき,たらーっ,なみだ,水滴,汗,涙 -🌊️ うみ,てんき,なみ,はろう,天気,波,波浪,海 -🎃️ かぼちゃ,はろうぃん,はろうぃんかぼちゃ,はろうぃーん -🎄️ くりすます,くりすますいぶ,くりすますつりー,つりー -🎆️ うちあげはなび,おまつり,お祭り,はなび,はなびたいかい,打ち上げ花火,花火,花火大会 -🎇️ おまつり,お祭り,せんこうはなび,はなび,線香花火,花火 -🧨️ かやく,だいなまいと,ばくちく,ばくはつ,ばくやく,火薬,爆発,爆竹,爆薬 -✨️ きらきら,すたー,ぴかぴか,ほし -🎈️ ばるーん,ふうせん,風船 -🎉️ おいわい,お祝い,くらっかー,ぱーてぃー,ぱーてぃーくらっかー -🎊️ おいわい,お祝い,くすだま,くす玉,ぱーてぃー -🎋️ たなばた,たんざく,にっぽん,にほん,わ,七夕,和,日本,短冊 -🎍️ おいわい,お祝い,かどまつ,しょうがつ,たけ,にっぽん,にほん,わ,和,日本,正月,竹,門松 -🎎️ おいわい,おだいりさま,おだいりよう,おだいり様,おひなさま,おひな様,お祝い,にっぽん,にほん,にんぎょう,ひなまつり,ひな祭り,わ,人形,和,日本 -🎏️ おいわい,お祝い,こいのぼり,こどものひ,子供の日 -🎐️ かぜ,すず,なつ,ふうりん,夏,鈴,風,風鈴 -🎑️ お月見,じゅうごや,じゅうごよ,すすき,つき,つきみ,十五夜,月,月見 -🧧️ あかいふうとう,おかね,おとしだま,お年玉,お金,こううん,ごしゅうぎ,ご祝儀,ほんぱお,ほんぼあ,幸運,紅包,赤い封筒 -🎀️ おいわい,お祝い,りぼん -🎁️ おいわい,お祝い,ぎふと,はこ,ぷれぜんと,箱 -🎗️️ おいわい,りぼん,りまいんだー,りまいんだーりぼん -🎟️️ ちけっと,にゅうじょうけん,にゅうじょうぱす,はんけん -🎫️ きっぷ,ちけっと,切符 -🎖️️ おいわい,くんしょう,ひょうしょう,めだる -🏆️ かっぷ,しょうはい,とろふぃー,ひょうしょう,ゆうしょうかっぷ -🏅️ すぽーつ,ひょうしょう,めだる,表彰 -🥇️ 1い,1位,きん,きんめだる,ごーるど,めだる,金,金めだる -🥈️ 2い,2位,ぎん,ぎんめだる,しるばー,めだる,銀,銀めだる -🥉️ 3い,3位,どう,どうめだる,ぶろんず,めだる,銅,銅めだる -⚽️ さっかー,さっかーぼーる,すぽーつ,ぼーる -⚾️ すぽーつ,ぼーる,やきゅう,やきゅうぼーる -🥎️ すぽーつ,そふとぼーる,へたなげ,ぼーる,下手投げ -🏀️ すぽーつ,ばすけ,ばすけっとぼーる,ぼーる -🏐️ すぽーつ,ばれー,ばれーぼーる,ぼーる -🏈️ あめふと,あめりかんふっとぼーる,すぽーつ,ぼーる,らぐびー,らぐびーぼーる -🏉️ すぽーつ,ぼーる,らぐびー,らぐびーぼーる -🎾️ すぽーつ,てにす,てにすぼーる,ぼーる,らけっと -🥏️ あるてぃめっと,ふらいんぐでぃすく,ふりすびー -🎳️ すぽーつ,たま,ぼうりんぐ,ぼーる,球 -🏏️ くりけっと,すぽーつ,ばっと,ぼーる -🏑️ すてぃっく,すぽーつ,ふぃーるどほっけー,ほっけー,ぼーる -🏒️ あいすほっけー,すてぃっく,すぽーつ,ぱっく,ほっけー -🥍️ ごーる,すてぃっく,すぽーつ,ぼーる,らくろす -🏓️ すぽーつ,たっきゅう,ぴんぽん,ぼーる,らけっと,卓球 -🏸️ しゃとる,すぽーつ,ばどみんとん,らけっと -🥊️ ぐろーぶ,すぽーつ,ぼくしんぐ,ぼくしんぐぐろーぶ -🥋️ からて,じゅうどう,すぽーつ,てこんどー,どうぎ,ぶどう,柔道,武道,空手,道着 -🥅️ ごーる,ごーるねっと,すぽーつ,ねっと -⛳️ ごるふ,すぽーつ,はた,ふらぐ,ふらっぐ,ほーる -⛸️️ あいすすけーと,すけーと,すぽーつ,ふぃぎゅあすけーと -🎣️ さかな,すぽーつ,つり,つりざお,釣り,釣り竿,魚 -🤿️ しゅのーけりんぐ,すきゅーば,すぽーつ,だいびんぐ ますく,だいびんぐますく,ますく -🎽️ えきでん,しゃつ,すぽーつ,たすき,ちょうきょりそう,まらそん,らんにんぐ,らんにんぐしゃつ,長距離走,駅伝 -🎿️ いた,すきー,すきーぶーつ,すとっく,すぽーつ,ゆき,板,雪 -🛷️ すけるとん,すぽーつ,そり,そりきょうぎ,そり競技,ぼぶすれー,りゅーじゅ -🥌️ かーりんぐ,すとーん,すぽーつ -🎯️ あたり,すぽーつ,だーつ,てき,ぶるずあい,まと,当たり,的 -🪀️ おもちゃ,かいてん,がんぐ,よーよー,回転,玩具 -🪁️ おもちゃ,かいと,がんぐ,たこ,たこあげ,凧揚げ,玩具 -🔫️ けんじゅう,じゅう,ぴすとる,ぶき,みずでっぽう,りぼるばー,拳銃,武器,水鉄砲,銃 -🎱️ えいとぼーる,すぽーつ,びりやーど,ぼーる -🔮️ うらない,うんめい,すいしょう,すいしょうだま,たま,占い,水晶,水晶玉,玉,運命 -🪄️ つえ,まじゅつ,まほうのつえ,杖,魔法の杖,魔術 -🎮️ げーむ,こんとろーら,こんとろーらー,てれびげーむ,びでおげーむ -🕹️️ げーむ,こんとろーら,じょいすてぃっく,すてぃっく,てれびげーむ -🎰️ すりーせぶん,すろっと,すろっとましん -🎲️ げーむ,さいころ,だいす -🧩️ かぎ,くみあわせ,じぐそーぱずる,ぱずる,ぴーす,組み合わせ,鍵 -🧸️ おもちゃ,がんぐ,くま,てでぃべあ,ぬいぐるみ,玩具 -🪅️ おいわい,お祝い,たんじょうび,にんぎょう,ぱーてぃー,ぴにゃーた,人形,誕生日 -🪆️ いれこ,にんぎょう,まとりょーしか,ろしあ,人形,入れ子 -♠️️ かーど,すぺーど,とらんぷ -♥️️ かーど,とらんぷ,はーと -♦️️ かーど,だいあ,だいや,とらんぷ -♣️️ かーど,くらぶ,くろーばー,とらんぷ -♟️️ こま,すてこま,すてごま,ちぇす,ちぇすのこま -🃏️ かーど,じじ,じょーかー,とらんぷ,ばば -🀄️ げーむ,じゃんぱい,ぱい,まーじゃん,まーじゃんぱい -🎴️ かーど,げーむ,はなふだ,花札 -🎭️ えんげい,えんげき,かめん,げいじゅつ,げきじょう,ぶたいげいじゅつ,演劇 -🖼️️ え,かいが,げいじゅつ,びじゅつかん -🎨️ あーと,え,えのぐぱれっと,ぱれっと,びじゅつかん,ふで,絵,絵の具ぱれっと,美術館 -🧵️ いと,いとまき,さいほう,ぬいばり,ひも,糸,糸巻き,縫い針,裁縫 -🪡️ さいほう,ししゅう,すてっち,ぬいばり,ぬう,はり,刺繍,縫い針,縫う,裁縫,針 -🧶️ あみもの,かぎばり,かぎ針,けいと,けいとだま,にっと,毛糸,毛糸玉,編み物 -🪢️ つな,ねじれ,のっと,ひも,むすびめ,ろーぷ,結び目,綱 -👓️ めがね -🕶️️ さんぐらす,めがね -🥽️ ごーぐる,すいえい,ほごめがね,ようせつ,保護めがね,水泳,溶接 -🥼️ いしゃ,かがくしゃ,じっけん,はくい,医者,実験,白衣,科学者 -🦺️ あんぜんべすと,きんきゅう,こうじ,ちょっき,はんしゃ,べすと,反射,安全べすと,工事,緊急 -👔️ しゃつ,たい,ねくたい,ふく,わいしゃつ,服 -👕️ tしゃつ,しゃつ,てぃーしゃつ,ふく,服,tしゃつ -👖️ じーぱん,じーんず,ずぼん,でにむ,ぱんつ,ふく,服 -🧣️ えりまき,くびまき,すかーふ,まふらー,襟巻き,首巻き -🧤️ てぶくろ,手袋 -🧥️ あうたー,おーばー,こーと,じゃけっと,ふく,服 -🧦️ くつした,そっくす,靴下 -👗️ どれす,ふく,わんぴーす,服 -👘️ きもの,ふく,服,着物 -🥻️ さりー,ふく,みんぞくいしょう,服,民族衣装 -🩱️ すいむうぇあ,みずぎ,わんぴーすのみずぎ,わんぴーすの水着,水着 -🩲️ したぎ,すいむうぇあ,ぱんつ,ぶりーふ,みずぎ,下着,水着 -🩳️ したぎ,しょーつ,すいむうぇあ,ぱんつ,みずぎ,下着,水着 -👙️ びきに,ふく,みずぎ,水着 -👚️ しゃつ,ふく,ふじんふく,ぶらうす,婦人服,服 -👛️ がまぐち,がまぐちざいふ,がま口,こぜにいれ,さいふ,小銭入れ,財布 -👜️ かばん,はんどばっぐ,ばっぐ -👝️ ばっぐ,ぽーち -🛍️️ かみてさげ,かみぶくろ,しょっぴんぐばっぐ,ばっぐ -🎒️ かばん,がっこう,しょうがくせい,しょうがっこう,ばっくぱっく,らんどせる,りゅっくさっく,学校,小学校,小学生 -🩴️ くつ,ごむぞうり,さんだる,とんぐさんだる,びーさん,びーちさんだる,靴 -👞️ かわぐつ,くつ,しんしぐつ,ろーふぁー,紳士靴,革靴,靴 -👟️ あすれちっくしゅーず,くつ,しゅーず,すにーかー,靴 -🥾️ きゃんぷ,とざんくつ,とざんぐつ,はいきんぐ,はいきんぐしゅーず,ばっくぱっく,ぶーつ,登山靴 -🥿️ すりっぽん,ばれえしゅーず,ふらっとしゅーず,ぺたんこくつ,ぺたんこ靴 -👠️ くつ,はいひーる,ひーる,ぴんひーる,ふく,靴 -👡️ くつ,さんだる,ふく,靴 -🩰️ くつ,しゅーず,だんす,とうしゅーず,ばれえ,靴 -👢️ くつ,ふく,ぶーつ,ろんぐぶーつ,靴 -👑️ おうかん,かんむり,くらうん,冠,王冠 -👒️ おんなのぼうし,ふじんぼうし,ぼうし,むぎわら,むぎわらぼうし,婦人帽子,帽子,麦わら,麦わら帽子 -🎩️ しるくはっと,ぼうし,帽子 -🎓️ かくぼう,そつぎょう,そつぎょうしき,ぼうし,卒業式 -🧢️ きゃっぷ,ぼうし,やきゅうぼう,帽子,野球帽 -🪖️ ぐんたい,ぐんようへるめっと,せんとう,へいし,へるめっと,みりたりー,兵士,戦闘,軍用へるめっと,軍隊 -⛑️️ きゅうきゅう,しろじゅうじ,しろじゅうじへるめっと,はくじゅうじ,はくじゅうじへるめっと,へるめっと -📿️ いのる,じゅず,ねっくれす,ねんじゅ,ねんず,ろざりお,念珠,数珠,祈る -💄️ くちべに,けしょう,りっぷ,りっぷすてぃっく,化粧,口紅 -💍️ じゅえりー,だいあ,だいや,ゆびわ,りんぐ,指輪 -💎️ じゅえりー,だいあ,だいや,ほうせき,宝石 -🔇️ おとなし,しょうおん,すぴーかー,すぴーかーしょうおん,すぴーかー消音,みゅーと,消音,音無し -🔈️ おんりょう,すぴーかー,ぼりゅーむ -🔉️ おんりょう,おんりょうしょう,すぴーかー,すぴーかーおんりょうしょう,すぴーかー音量小,ぼりゅーむ,音量,音量小 -🔊️ おんりょう,おんりょうだい,すぴーかー,すぴーかーおんりょうだい,すぴーかー音量大,だいおんりょう,ぼりゅーむ,大音量,音量,音量大 -📢️ かくせいき,すぴーかー,めがほん,拡声器 -📣️ かくせいき,すぴーかー,めがほん,拡声器 -📯️ ゆうびん,ゆうびんらっぱ,らっぱ,郵便,郵便らっぱ -🔔️ かね,すず,ちゃぺる,べる,鈴,鐘 -🔕️ おとなし,かね,しょうおん,すず,べるしょうおん,べる消音,みゅーと,消音,鈴,鐘,音無し -🎼️ おんがく,がくふ,ごせん,ごせんふ,すこあ,とおんきごう,と音記号,五線譜,楽譜,音楽 -🎵️ 8分音符,おんがく,おんぷ,はちぶおんぷ,れんぷ,連符,音楽,音符 -🎶️ 8分音符,おんがく,おんぷ,はちぶおんぷ,ふくすうのおんぷ,複数の音符,音楽,音符 -🎙️️ おんがく,すたじおまいく,まいく -🎚️️ おんがく,すらいだー,れべる,れべるすらいだー -🎛️️ おんがく,こんとろーる,こんとろーるつまみ,つまみ,のぶ -🎤️ うた,おんがく,からおけ,まいく,歌,音楽 -🎧️ いやふぉん,いやほん,おんがく,へっどふぉん,へっどほん -📻️ おんがく,じゅしんき,ほうそう,らじお -🎷️ おんがく,がっき,さきそふぉん,さくそふぉん,さっくす,楽器,音楽 -🪗️ あこーでぃおん,おんがく,がっき,じゃばら,楽器,音楽 -🎸️ おんがく,がっき,ぎたー,楽器,音楽 -🎹️ おんがく,がっき,きーぼーど,けんばん,ぴあの,楽器,鍵盤,音楽 -🎺️ おんがく,がっき,とらんぺっと,らっぱ,楽器,音楽 -🎻️ おんがく,がっき,ばいおりん,ゔぃおら,楽器,音楽 -🪕️ おんがく,がっき,ばんじょー,楽器,音楽 -🥁️ おんがく,がっき,たいこ,どらむ,太鼓,楽器,音楽 -🪘️ おんがく,がっき,こんが,たいこ,びーと,りずむ,太鼓,楽器,音楽 -📱️ けいたい,けいたいでんわ,すまほ,すまーとふぉん,携帯,携帯電話 -📲️ けいたい,けいたいじゅしん,けいたいでんわ,じゅしん,すまほ,すまーとふぉん,ちゃくしんちゅう,でんわはっしん,受信,携帯受信,携帯電話,着信中 -☎️️ おやき,くろでんわ,こていでんわ,でんわ,ぷっしゅほん,ぼたんしきでんわ -📞️ こき,じゅわき,でんわ,受話器,子機,電話 -📟️ ぺーじゃー,ぽけっとべる,ぽけべる -📠️ fax,でんわ,ふぁっくす,ふくごうき,複合機,電話,fax -🔋️ かんでんち,でんち,ばってりー,乾電池,電池 -🔌️ こんせんと,でんげん,ぷらぐ,電源 -💻️ pc,こんぴゅーた,こんぴゅーたー,のーとぱそこん,ぱそこん,らっぷとっぷ -🖥️️ pc,こんぴゅーたー,ですくとっぷ,ですくとっぷぱそこん,ぱそこん,ぴーしー -🖨️️ いんさつき,こぴーき,ふくごうき,ぷりんた,ぷりんたー -⌨️️ pc,きーぼーど,こんぴゅーたー,ぱそこん,ぴーしー -🖱️️ pc,こんぴゅーたー,ぱそこん,ぴーしー,まうす -🖲️️ pc,こんぴゅーたー,とらっくぼーる,ぱそこん,ぴーしー -💽️ md,mo,えむおー,えむでぃー,こんぴゅーたー,みにでぃすく,md -💾️ fd,えふでぃー,こんぴゅーたー,でぃすく,ふろっぴー,ふろっぴーでぃすく,fd -💿️ cd,dvd,しーでぃー,でぃすく,ぶるれい,ぶるーれい,cd -📀️ blu-ray,cd,dvd,しーでぃー,でぃすく,でぃーぶいでぃ─,ぶるれい,ぶるーれい,dvd -🧮️ あばかす,そろばん,算盤 -🎥️ えいが,えいがかめら,かめら,むーびー,映画,映画かめら -🎞️️ えいが,えいがふぃるむ,ふぃるむ,ふれーむ,むーびー -📽️️ えいが,えいしゃき,ぷろじぇくたー,むーびー -🎬️ えいが,かちんこ -📺️ てれび,びでお -📷️ かめら,しゃしん -📸️ かめら,かめらふらっしゅ,しゃしん,ふらっしゅ,ふらっしゅをたいているかめら,ふらっしゅを焚いているかめら,写真 -📹️ かめら,どうが,びでお,びでおかめら,むーびー -📼️ vhs,どうが,びでお,びでおかせっと,びでおてーぷ,ぶいえっちえす,動画 -🔍️ けんさく,むしめがね,むしめがねひだり,るーぺ,虫眼鏡 -🔎️ けんさく,しょうさい,むしめがね,むしめがねみぎ,るーぺ,検索,虫めがね,虫眼鏡,虫眼鏡右 -🕯️️ あかり,きゃんどる,ろうそく -💡️ あかり,でんきゅう,ひらめき,ぴこーん,明かり,電球 -🔦️ あかり,かいちゅうでんとう,でんとう,らいと,懐中電灯,明かり -🏮️ あかちょうちん,いざかや,ちょうちん,のみや,居酒屋,赤ちょうちん,飲み屋 -🪔️ あかり,おいる,でぃやらんぷ,らんぷ,明かり -📔️ のーと,ひょうしつきのーと,ぶんぐ,ぶんぼうぐ,文具,文房具,表紙付きのーと -📕️ しょせき,とじたほん,ぶんぼうぐ,ほん,書籍,本,閉じた本 -📖️ しょせき,ひらいたほん,ぶんぼうぐ,ほん,書籍,本,開いた本 -📗️ しょせき,ぶんぼうぐ,ほん,みどりのほん,書籍,本,緑の本 -📘️ あおいほん,あおのほん,しょせき,ぶんぼうぐ,ほん,書籍,本,青の本 -📙️ おれんじのほん,おれんじの本,しょせき,ぶんぼうぐ,ほん,書籍,本 -📚️ しょせき,ぶんぼうぐ,ほん,ほんのやま,本 -📓️ のーと,ぶんぐ,ぶんぼうぐ,文具,文房具 -📒️ だいちょう,のーと,ぶんぐ,ぶんぼうぐ,りんぐのーと,台帳,文具,文房具 -📃️ かーる,しょるい,ぶんしょ,まきぺーじ,巻きぺーじ,文書,書類 -📜️ しょるい,すくろーる,ぶんしょ,ぶんぼうぐ,まきもの,巻き物,文書,書類 -📄️ しょるい,ぶんしょ,ぺーじ,文書,書類 -📰️ しんぶん,しんぶんし,にゅーす,新聞,新聞紙 -🗞️️ しんぶん,しんぶんし,にゅーす,まるめたしんぶん -📑️ ふせん,ぶんぐ,ぶんぼうぐ,ぺーじにふせん,ぺーじに付箋,ぺーじまーく,まーく,付箋,文具,文房具 -🔖️ しおり,たぐ,ふせん,ぶっくまーく,付箋,栞 -🏷️️ たぐ,にふだ,らべる -💰️ おかね,かねぶくろ,きんぶくろ,しょうきん,どる,どるぶくろ,どる袋 -🪙️ おかね,お金,きんか,ぎんか,こいん,こうか,こぜに,小銭,硬貨,金貨,銀貨 -💴️ えん,えんさつ,おかね,おさつ,お札,お金,こぎって,さつたば,つうか,ゆうりょう,円,円札,札束,通貨 -💵️ おかね,おさつ,お札,お金,さつたば,つうか,どる,どるさつ,どる札,札束,通貨 -💶️ おかね,おさつ,お札,お金,さつたば,つうか,ゆーろ,ゆーろさつ,ゆーろ札,札束,通貨 -💷️ おかね,おさつ,お札,お金,さつたば,つうか,ぽんど,ぽんどさつ,ぽんど札,札束,通貨 -💸️ おかね,おさつ,お札,お金,さつたば,どる,はねがはえたおかね,札束,羽が生えたお金 -💳️ おかね,かーど,きゃっしゅかーど,ぎんこう,くれじっとかーど -🧾️ かいけい,ぼき,りょうしゅうしょ,れしーと,会計,簿記,領収書 -💹️ いちば,かぶ,かぶか,かわせ,ぐらふ,しじょう,ちゃーと,市場,株,株価,為替 -✉️️ いーめーる,てがみ,でんしめーる,ふうとう,めーる,ゆうびん -📧️ eめーる,いーめーる,てがみ,でんしめーる,ふうとう,めーる,ゆうびん,封筒,手紙,郵便,電子めーる,eめーる -📨️ eめーる,いーめーる,じゅしん,じゅしんする,じゅしんちゅう,でんしめーる,めーる,めーるじゅしんちゅう,めーる受信中,受信中,電子めーる -📩️ eめーる,いーめーる,そうしん,そうしんする,でんしめーる,めーる,めーるじゅしん,めーるする,めーる受信,送信,電子めーる -📤️ いーめーる,そうしん,そうしんとれい,でんしめーる,とれい,めーる,送信box -📥️ いーめーる,じゅしん,じゅしんとれい,でんしめーる,とれい,めーる,受信box -📦️ こづつみ,たくはいびん,たっきゅうびん,だんぼーる,にもつ,ぱっく,ぱっけーじ,段ぼーる -📫️ てがみあり,とじた,とじたゆうびんうけ,はたつきぽすと,ぽすと,めーる,ゆうびん,ゆうびんうけ,ゆうびんばこ,郵便受け -📪️ てがみなし,とじた,とじたゆうびんうけ,はたつきぽすと,ぽすと,めーる,ゆうびん,ゆうびんうけ,ゆうびんばこ,郵便受け -📬️ てがみあり,ひらいた,ひらいたゆうびんうけ,ぽすと,ゆうびんうけ,ゆうびんばこ -📭️ てがみなし,ひらいた,ひらいたゆうびんうけ,ぽすと,ゆうびんうけ,ゆうびんばこ -📮️ てがみ,ぽすと,ゆうびん,ゆうびんばこ,ゆうびんぽすと,手紙,郵便,郵便ぽすと,郵便箱 -🗳️️ せんきょ,とうひょうばこ -✏️️ えんぴつ,ぶんぐ,ぶんぼうぐ -✒️️ えでぃっと,ぶんぐ,ぶんぼうぐ,ぺん,ぺんさき,まんねんひつ -🖋️️ ぶんぐ,ぶんぼうぐ,まんねんひつ -🖊️️ ぶんぐ,ぶんぼうぐ,ぺん,ぼーるぺん -🖌️️ えのぐ,えふで,ぶんぐ,ぶんぼうぐ -🖍️️ くれよん,ぶんぐ,ぶんぼうぐ -📝️ えんぴつとめも,かみとえんぴつ,ぶんぐ,ぶんぼうぐ,めも,文具,文房具,紙と鉛筆,鉛筆とめも -💼️ かばん,ぶりーふけーす -📁️ ふぁいる,ふぉるだー,ぶんぐ,ぶんぼうぐ,文具,文房具 -📂️ ひらいたふぉるだー,ふぁいる,ふぉるだー,ぶんぐ,ぶんぼうぐ,文具,文房具,開いたふぉるだー -🗂️️ いんでっくす,かーどふぉるだー,ふぉるだー,ぶんぐ,ぶんぼうぐ -📅️ かれんだー,すけじゅーる,ひづけ,よてい,予定,日付 -📆️ かれんだー,すけじゅーる,ひづけ,ひめくり,ひめくりかれんだー,よてい,予定,日めくりかれんだー,日付 -🗒️️ のーと,ぶんぐ,ぶんぼうぐ,めもちょう,りんぐめも -🗓️️ かれんだー,すけじゅーる,つきめくりかれんだー,ひづけ,よてい -📇️ かーどいんでっくす,ぶんぐ,ぶんぼうぐ,めいしほるだー,ろーろでっくす,名刺ほるだー,文具,文房具 -📈️ うえむき,うわむき,おれせんぐらふ,ぐらふ,ぐらふうえむき,ぐらふうわむき,ぐらふ上向き,じょうしょう,上向き,上昇,折れ線ぐらふ -📉️ おれせんぐらふ,かこう,ぐらふ,ぐらふしたむき,ぐらふ下向き,したむき,下向き,下降,折れ線ぐらふ -📊️ ぐらふ,ちゃーと,ぼうぐらふ,棒ぐらふ -📋️ くりっぷ,くりっぷぼーど,ぶんぐ,ぶんぼうぐ -📌️ おしぴん,がびょう,ぴん,ぶんぐ,ぶんぼうぐ,ぷっしゅぴん,押しぴん,文具,文房具,画鋲 -📍️ おしぴん,がびょう,ぴん,ぶんぐ,ぶんぼうぐ,ぷっしゅぴん,まるいおしぴん,丸い押しぴん,押しぴん,文具,文房具,画びょう -📎️ かみくりっぷ,くりっぷ,ぜむくりっぷ,ぶんぐ,ぶんぼうぐ,ぺーぱーくりっぷ,文具,文房具,紙くりっぷ -🖇️️ かみくりっぷ,つながったくりっぷ,ぶんぐ,ぶんぼうぐ,ぺーぱーくりっぷ -📏️ じょうぎ,ぶんぐ,ぶんぼうぐ,ものさし,定規,文具,文房具 -📐️ さんかくじょうぎ,じょうぎ,ぶんぐ,ぶんぼうぐ,三角定規,定規,文具,文房具 -✂️️ かっと,きる,はさみ,びよういん,ぶんぐ,ぶんぼうぐ -🗃️️ かーどふぁいるぼっくす,はこ,ふぁいる,ぶんぐ,ぶんぼうぐ,ぼっくす -🗄️️ きゃびねっと,ひきだし,ふぁいる,ふぁいるきゃびねっと -🗑️️ くずかご,ごみかご,ごみばこ -🔒️ かぎ,じょう,せじょう,とじたじょう,ろっく,ろっくおん,鍵 -🔓️ かいじょう,かぎ,じょう,ひらいたじょう,ろっく,ろっくおふ,鍵 -🔏️ かぎ,とじたじょうとぺん,ぷらいばしー,ろっく,鍵,閉じた錠とぺん -🔐️ あんぜん,かぎ,きー,せきゅりてぃ,とじたじょうとかぎ,ろっく,ろっくかくにん,安全,鍵,閉じた錠と鍵 -🔑️ かぎ,きー,ぱすわーど,鍵 -🗝️️ きー,てがかり,ぱすわーど,ふるいかぎ -🔨️ かなづち,こうぐ,とんかち,はんまー,工具 -🪓️ おの,き,こうぐ,はちぇっと,まきわり,工具,斧,木,薪割り -⛏️️ こうぐ,さいくつ,つるはし -⚒️️ かなづち,こうぐ,つるはし,とんかち,はんまー,はんまーとつるはし -🛠️️ かなづち,こうぐ,とんかち,はんまーとれんち,れんち -🗡️️ たんとう,だがー,ないふ,ぶき -⚔️️ かたな,くろすしたけん,けん,つるぎ,ぶき -💣️ ばくだん,爆弾 -🪃️ おもちゃ,おーすとらりあ,かえってくる,がんぐ,はねかえり,ぶき,ぶーめらん,武器,玩具,跳ね返り,返って来る -🏹️ いて,しゃしゅ,せいざ,ぶき,や,ゆみや,射手,弓矢,星座,武器,矢 -🛡️️ しーるど,たて,ぼうぐ -🪚️ こうぐ,だいく,のこ,のこぎり,は,もっこう,刃,大工,工具,木工 -🔧️ こうぐ,すぱな,れんち,工具 -🪛️ こうぐ,すくりゅーどらいばー,どらいばー,ねじまわし,ねじ回し,工具 -🔩️ こうぐ,なっと,ぼると,ぼるととなっと,ぼると&なっと,工具 -⚙️️ ぎあ,こうぐ,はぐるま -🗜️️ くらんぷ,こうぐ,ばいす,まんりき -⚖️️ かがく,じっけん,せいざ,てんびん,はかり -🦯️ あくせしびりてぃ,しかく,しょうがい,しろつえ,つえ,はくじょう,白杖,視覚,障がい -🔗️ りんく,りんくしんぼる -⛓️️ くさり,ちぇーん -🪝️ かけがね,かけきん,とめがね,ひっかけ,ふっく,引っ掛け,掛け金,留め金 -🧰️ きかいこう,こうぐばこ,せいびし,つーるぼっくす,めかにっく,工具箱,整備士,機械工 -🧲️ u字型磁石,ていてつ,まぐねっと,ゆーじがたじしゃく,蹄鉄 -🪜️ こうしょさぎょう,すてっぱー,のぼる,はしご,登る,高所作業 -⚗️️ かがく,じっけん,じょうりゅうき -🧪️ かがく,しけんかん,じっけん,らぼ,化学,実験,試験管 -🧫️ せいぶつがく,ばいよう,ばくてりあ,ぺとりさら,ぺとり皿,培養,生物学 -🧬️ dna,いでんし,しんか,せいぶつがく,でぃーえぬえー,生物学,進化,遺伝子 -🔬️ かがく,けんきゅう,けんびきょう,さいえんす,研究,科学,顕微鏡 -🔭️ かがく,かんそく,さいえんす,てんたいかんそく,ぼうえんきょう,天体観測,望遠鏡,科学,観測 -📡️ あんてな,えいせいあんてな,でんぱ,ぱらぼら,ぱらぼらあんてな,衛星あんてな,電波 -💉️ いしゃ,くすり,ちゅうしゃ,ちゅうしゃき,びょうき,医者,注射,注射器,病気,薬 -🩸️ いしゃ,けが,けつえき,けんけつ,せいり,医者,献血,生理,血液 -💊️ いしゃ,かぜぐすり,かぷせる,くすり,びょうき,医者,病気,薬 -🩹️ きず,くすり,けが,てあて,ばんそうこう,傷,手当て,絆創膏,薬 -🩺️ いしゃ,しんぞう,ちょうしんき,びょうき,医者,心臓,病気,聴診器 -🚪️ と,とびら,どあ,戸,扉 -🛗️ あくせしびりてぃ,えれべーたー,しょうこうき,ばりあふりー,りふと,昇降機 -🪞️ かがみ,すがたみ,はんしゃ,みだしなみ,みらー,反射,姿見,身だしなみ,鏡 -🪟️ あける,かんき,ながめ,ふれーむ,まど,換気,眺め,窓,開ける -🛏️️ すいみん,ねる,べっど,ほてる -🛋️️ そふぁ,そふぁとらんぷ,ほてる,らんぷ -🪑️ いす,かぐ,こしかけ,しーと,ちぇあ,家具,椅子,腰掛け -🚽️ おてあらい,お手洗い,といれ,べんき,べんざ,便器,便座 -🪠️ きゅういんかっぷ,すっぽん,つうすいかっぷ,といれ,ぷらんじゃー,らばーかっぷ,吸引かっぷ,通水かっぷ -🚿️ しゃわー,ふろ,風呂 -🛁️ ばすたぶ,ふろ,よくそう,浴槽,風呂 -🪤️ おびきよせる,おびき寄せる,しかけ,ねずみとり,ねずみ捕り,ばね,まうすとらっぷ,わな,仕掛け -🪒️ かみそり,は,ひげそり,れーざー,刃,剃刀 -🧴️ けしょうすい,しゃんぷー,ひやけどめ,ろーしょん,化粧水,日焼け止め -🧷️ あんぜんぴん,とめぴん,安全ぴん,止めぴん -🧹️ そうじ,はく,ほうき,まじょ,掃く,掃除,魔女 -🧺️ かご,しゅうかく,せんたく,ぴくにっく,収穫,洗濯 -🧻️ きっちんぺーぱー,といれっとぺーぱー,ぺーぱーたおる -🪣️ おけ,ばけつ,ぽりばけつ,ようき,容器 -🧼️ せっけん,そーぷ,ふろ,石けん,風呂 -🪥️ えいせい,おていれ,お手入れ,せんめんじょ,はぶらし,はみがき,むしば,歯ぶらし,歯磨き,洗面所,虫歯,衛生 -🧽️ かいめん,きゅうしゅう,すぽんじ,そうじ,吸収,掃除,海綿 -🧯️ しょうか,しょうかき,しょうかきぐ,しょうぼう,消火,消火器,消火器具,消防 -🛒️ かいもの,かーと,しょっぴんぐ,しょっぴんぐかーと,すーぱー,買い物 -🚬️ きつえん,たばこ,喫煙,煙草 -⚰️️ かんおけ,し,ひつぎ,まいそう -🪦️ おはか,お墓,せきひ,はかば,ぼせき,ぼち,まいそう,埋葬,墓地,墓場,墓石,石碑 -⚱️️ いはい,こつつぼ,し,そうぎ,まいそう -🧿️ おまもり,お守り,じゃし,なざーる,なざーるぼんじゅう,なざーる・ぼんじゅう,びーず,まよけ,邪視,魔除け -🗿️ かお,ぞう,もあい,もやい,もやい像,像,顔 -🪧️ いぎ,かんばん,こうぎ,しゅちょう,でも,ぷらかーど,主張,抗議,異議,看板 -🏧️ atm,えーてぃーえむ,ぎんこう,げんきんじどうあずけばらいき,現金自動預け払い機,銀行,atm -🚮️ くずかご,ごみすて,ごみばこ,ごみ捨て,ごみ箱 -🚰️ いんりょうすい,すいどう,のみみず,みず,水,水道,飲み水,飲料水 -♿️ くるまいす,ばりあふりー,ばりやふりー -🚹️ wc,おてあらい,けしょうしつ,だんし,だんしといれ,だんせい,といれ,男性 -🚺️ wc,おてあらい,けしょうしつ,じょし,じょしといれ,じょせい,といれ,女性 -🚻️ wc,おてあらい,お手洗い,けしょうしつ,だぶりゅーしー,といれ,化粧室 -🚼️ あかちゃん,あかんぼう,べびー,べびーしーと,赤ちゃん -🚾️ wc,おてあらい,お手洗い,けしょうしつ,だぶりゅーしー,といれ,化粧室 -🛂️ しゅつにゅうこく,しゅつにゅうこくしんさ,にゅうしゅっこく,ぱすぽーとこんとろーる,入出国,出入国,出入国審査 -🛃️ ぜいかん,つうかん,税関,通関 -🛄️ すーつけーす,てにもつ,てにもつうけとり,ばげっじくれーむ,手荷物,手荷物受取 -🛅️ すーつけーす,てにもつ,てにもつあずかり,ろっかー,手荷物,手荷物預かり -⚠️️ きけん,けいこく,ちゅうい,ひょうしき,! -🚸️ がっこう、ようちえん、ほいくしょとうあり,こども,じどうおうだん,つうがくろ,ひょうしき,児童横断,子供,学校、幼稚園、保育所等あり,標識,通学路 -⛔️ きせい,しゃりょうしんにゅうきんし,たちいりきんし,どうろ,ひょうしき -🚫️ きせい,きんし,しゃりょうつうこうどめ,どうろ,ひょうしき,標識,禁止,規制,車両通行止め,道路 -🚳️ きせい,きんし,じてんしゃ,じてんしゃきんし,どうろ,ひょうしき,標識,禁止,自転車,自転車禁止,規制,道路 -🚭️ きんえん,きんし,たばこ,禁煙 -🚯️ きんし,ごみ,ごみすてきんし,ごみ捨て禁止,ぽいすてきんし,ぽい捨て禁止,禁止 -🚱️ いんようふか,きんし,のめないみず,禁止,飲めない水,飲用不可 -🚷️ きせい,きんし,どうろ,ひょうしき,ほこうしゃたちいりきんし,標識,歩行者立入禁止,禁止,規制,道路 -📵️ けいたいきんし,けいたいでんわきんし,すまほきんし,すまほ禁止,すまーとふぉんきんし,すまーとふぉん禁止,携帯禁止,携帯電話禁止 -🔞️ 18きん,18さいみまんきんし,18歳未満禁止,18禁,きんし,みせいねん,未成年,禁止,18きん -☢️️ きけん,ほうしゃせい,ほうしゃせん,ほうしゃのう -☣️️ きけん,ばいおはざーど,ゆうがいぶっしつ -⬆️️ うえ,うえやじるし,きた,やじるし -↗️️ ほくとう,みぎうえ,みぎうえやじるし,やじるし -➡️️ ひがし,みぎ,みぎやじるし,やじるし -↘️️ なんとう,みぎした,みぎしたやじるし,やじるし -⬇️️ した,したやじるし,みなみ,やじるし -↙️️ なんせい,ひだりした,ひだりしたやじるし,やじるし -⬅️️ にし,ひだり,ひだりやじるし,やじるし -↖️️ ひだりうえ,ひだりうえやじるし,ほくせい,やじるし -↕️️ じょうげ,じょうげやじるし,やじるし,やじるしじょうげ -↔️️ さゆう,さゆうやじるし,やじるし,やじるしさゆう -↩️️ かーぶ,きょくせん,ひだり,みぎかーぶやじるし,やじるし -↪️️ かーぶ,きょくせん,ひだりかーぶやじるし,みぎ,やじるし -⤴️️ うえ,うえかーぶやじるし,うえやじるし,かーぶ,きょくせん,ぐっど,やじるし -⤵️️ かーぶ,きょくせん,した,したかーぶやじるし,したやじるし,ばっど,やじるし -🔃️ くりかえし,さいよみこみ,とけいまわり,みぎまわり,みぎまわりたてやじるし,やじるし,りろーど,右回り,右回り縦矢印,時計回り,矢印,繰り返し -🔄️ くりかえし,はんとけいまわり,ひだりまわりやじるし,やじるし,りぴーと,反時計回り,左回り矢印,矢印,繰り返し -🔙️ back,backやじるし,back矢印,ばっく,ばっくやじるし,もどる,やじるし,戻る,矢印 -🔚️ end,endやじるし,end矢印,えんど,えんどやじるし,おわり,やじるし,矢印,終わり -🔛️ on,onやじるし,on矢印,おん,おんやじるし,やじるし,矢印 -🔜️ soon,soonやじるし,soon矢印,すぐ,すーん,すーんやじるし,やじるし,矢印 -🔝️ top,topやじるし,top矢印,うえ,とっぷ,とっぷやじるし,やじるし,上,矢印 -🛐️ いのり,しゅうきょう,れいはいじょ,宗教,礼拝所,祈り -⚛️️ げんし,げんしのしんぼる,げんそ,ぶんし,むしんろん -🕉️️ おーむ,しゅうきょう,ひんどぅーきょう -✡️️ しゅうきょう,だびでのほし,ほし,ゆだやきょう -☸️️ しゅうきょう,てんぼうりん,てんぽうりん,ぶっきょう,ほうりん -☯️️ いんやん,いんよう,しゅうきょう,どうきょう -✝️️ きりすときょう,くろす,しゅうきょう,じゅうじか -☦️️ きりすときょう,しゅうきょう,じゅうじか,はったんじゅうじか -☪️️ いすらむきょう,しゅうきょう,ほし,ほしとみかづき,みかづき -☮️️ ぴーすまーく,へいわ -🕎️ しゅうきょう,しょくだい,めのらー,めのーらー,ゆだやきょう,ゆだや教,宗教,燭台 -🔯️ うらない,だびで,ほし,ろくぼうせい,ろっかくせい,六芒星,六角星,占い,星 -♈️ おひつじざ,せいざ -♉️ おうしざ,せいざ -♊️ せいざ,ふたござ -♋️ かにざ,せいざ -♌️ ししざ,せいざ -♍️ おとめざ,せいざ -♎️ せいざ,てんびんざ -♏️ さそりざ,せいざ -♐️ いてざ,せいざ -♑️ せいざ,やぎざ -♒️ せいざ,みずがめざ -♓️ うおざ,せいざ -⛎️ せいざ,へびつかいざ,へびつかい座,へびつかざ -🔀️ こうさ,しゃっふる,しゃっふるぼたん,ぼたん,やじるし,交差,矢印 -🔁️ くりかえし,ぜんきょく,ぼたん,やじるし,りぴーとぼたん,全曲,矢印,繰り返し -🔂️ 1きょくりぴーとぼたん,1曲りぴーとぼたん,くりかえし,ぼたん,やじるし,りぴーと,矢印,繰り返し -▶️️ さいせい,さいせいぼたん,つぎへ,ぷれい,ぼたん,みぎむきさんかく,やじるし -⏩️ はやおくり,はやおくりぼたん,ぼたん,みぎ,やじるし,早送り -⏭️️ つぎのきょくぼたん,つぎのしーん,つぎのとらっく,ぼたん,やじるし -⏯️️ いちじていし,いちじていしぼたん,さいせい,さいせいぼたん,さいせい/いちじていしぼたん,ぼたん,やじるし -◀️️ ぎゃくさいせい,ぎゃくさいせいぼたん,ひだりむきさんかく,ぼたん,まきもどし,もどる,やじるし -⏪️ はやもどし,はやもどしぼたん,ひだり,まきもどし,もどる,やじるし,巻き戻し -⏮️️ ぼたん,まえのきょくぼたん,まえのしーん,まえのとらっく,やじるし -🔼️ うえ,うえぼたん,うえむきさんかく,さんかく,ぼたん,やじるし,三角,上,上ぼたん,矢印 -⏫️ うえ,こうそくじょうぼたん,にじゅう,ぼたん,やじるし,上二重三角 -🔽️ さんかく,した,したぼたん,したむきさんかく,ぼたん,やじるし,三角,下,下ぼたん,矢印 -⏬️ こうそくしたぼたん,した,にじゅう,ぼたん,やじるし,下二重三角 -⏸️️ いちじていし,いちじていしぼたん,ぼたん,ぽーず -⏹️️ すとっぷ,ていし,ていしぼたん,ぼたん -⏺️️ ぼたん,ろくおん,ろくおんろくがぼたん,ろくが -⏏️️ いじぇくと,とりだし,とりだしぼたん,ぼたん -🎦️ えいが,えいがかん,かめら,どうが,動画,映画,映画館 -🔅️ あかるさ,きど,くらい,ていきど,ぶらいとねす,低輝度,明るさ,暗い,輝度 -🔆️ あかるい,あかるさ,きど,こうきど,ぶらいとねす,明るい,明るさ,輝度,高輝度 -📶️ あんてなまーく,けいたい,けいたいでんわ,けんない,すまほ,すまーとふぉん,でんぱ,圏内,携帯電話,電波 -📳️ けいたい,けいたいでんわ,すまほ,すまーとふぉん,まなーもーど,携帯,携帯電話 -📴️ けいたい,けいたいでんわ,けいたいでんわでんげんおふ,すまほ,すまーとふぉん,でんげんおふ,携帯電話電源おふ,電源off,電源おふ -♀️️ おんな,しんぼる,じょせい,じょせいのまーく -♂️️ おとこ,しんぼる,だんせい,だんせいのまーく -⚧️️ lgbt,しんぼる,せいべつ,てぃーじー,とらんすじぇんだーのまーく -✖️️ かけざん,かける,きごう,きゃんせる,じょうざん,ばつ,ぺけ -➕️ +,かさん,きごう,たしざん,たす,ぷらす,+ -➖️ -,きごう,げんざん,ひきざん,ひく,まいなす,ー -➗️ /,÷,きごう,じょさん,わりざん,わる,・,/ -♾️️ えいえん,ばんぶつ,むげん,むげんだい -‼️️ !,えくすくらめーしょんまーく,きごう,にじゅうかんたんふ,びっくりまーく,やくもの,!,!! -⁉️️ !,!?,?,かんたんふぎもんふ,きごう,はてなまーく,びっくりまーく,!,!?,? -❓️ ?,あかいぎもんふ,きごう,ぎもんふ,くえすちょん,くえすちょんまーく,はてな,はてなまーく,やくもの,? -❔️ ?,きごう,くえすちょん,くえすちょんまーく,しろいぎもんふ,はてな,はてなまーく,やくもの,? -❕️ !,えくすくらめーしょんまーく,きごう,しろいかんたんふ,びっくり,びっくりまーく,やくもの,! -❗️ !,あかいかんたんふ,えくすくらめーしょんまーく,かんたんふ,きごう,びっくりまーく,やくもの,! -〰️️ きごう,ちょうおんきごう,なみせん,はせん,やくもの,ー -💱️ えん,おかね,お金,がいかりょうがえ,つうか,どる,りょうがえ,両替,円,外貨両替,通貨 -💲️ おかね,お金,つうか,どる,どるきごう,どる記号,通貨 -⚕️️ あすくれぴおすのつえ,いしゃ,いりょう,いりょうのしんぼる,ちりょう -♻️️ さいせい,さいりよう,じゅんかんやじるし,りさいくる,りさいくるまーく -⚜️️ えんぶれむ,ふらんすおうけ,ふるーるどりす,もんしょう,ゆり -🔱️ いかり,うみ,えんぶれむ,とらいでんと,みつまた,三つ又,海,錨 -📛️ なふだ,ほいくえん,ほいくしょ,ようちえん,保育園,保育所,名札,幼稚園 -🔰️ しょしんしゃ,しょしんしゃまーく,はつ,わかばまーく,初心者,初心者まーく,若葉まーく -⭕️ えん,きごう,ふといまる,まる,わ -✅️ きごう,しろぬきのちぇっく,ちぇっく,ちぇっくまーく,ぴん -☑️️ きごう,ちぇっく,ちぇっくぼっくす,ちぇっくまーく -✔️️ きごう,ちぇっく,ちぇっくまーく,ふとじのちぇっく -❌️ かけざん,きごう,きゃんせる,じょうざん,ばつ,ぺけ -❎️ かけざん,きごう,きゃんせる,しろぬきのばつ,じょうざん,ばつ,ぺけ -➰️ きごう,ちょうおん,るーぷ,わっか -➿️ きごう,だぶるるーぷ,ふりーだいやる,るーぷ,わっか -〽️️ あんてん,いおりてん,うたきごう,きごう,やくもの -✳️️ あすたりすく,かざり,きごう,はっかくあすたりすく,ほし,やくもの -✴️️ かざり,きごう,すぱーく,はっかくせい,ほし,やくもの -❇️️ あすたりすく,きごう,すぱーく,すぱーくる,やくもの -©️️ cまーく,きごう,こぴーらいと,しーまーく,ちょさくけん,ちょさくけんまーく -®️️ あーるまーく,きごう,とうろくしょうひょう,とうろくしょうひょうまーく -™️️ tmまーく,きごう,しょうひょう,しょうひょうまーく,てぃーえむまーく,とれーどまーく -#️⃣️ #,かこみすうじ,しゃーぷ,しゃーぷだいやる -*️⃣️ *,かこみすうじ -0️⃣️ 0,かこみすうじ,0 -1️⃣️ 1,かこみすうじ,1 -2️⃣️ 2,かこみすうじ,2 -3️⃣️ 3,かこみすうじ,3 -4️⃣️ 4,かこみすうじ,4 -5️⃣️ 5,かこみすうじ,5 -6️⃣️ 6,かこみすうじ,6 -7️⃣️ 7,かこみすうじ,7 -8️⃣️ 8,かこみすうじ,8 -9️⃣️ 9,かこみすうじ,9 -🔟️ 10,かこみすうじ,囲み数字,囲み数字: 10,10 -🔠️ abcd,あるふぁべっと,えいおおもじのにゅうりょく,えいじ,えーびーしーでぃ,おおもじ,だいもんじ,ろーまじ,ろーま字,大文字,英大文字の入力,英字,abcd -🔡️ abcd,あるふぁべっと,えいこもじのにゅうりょく,えいじ,えーびーしーでぃー,こもじ,ろーまじ,ろーま字,小文字,英字,英小文字の入力,abcd -🔢️ 1234,すうじ,すうじのにゅうりょく,にゅうりょく,入力,数字,数字の入力,1234 -🔣️ 〒♪&%,〒♪&%,〒♪&ぱーせんと,きごう,きごうのにゅうりょく,にゅうりょく,入力,記号,記号の入力 -🔤️ abc,あるふぁべっと,えいご,えいじ,えいじのにゅうりょく,えいびーしー,えーびーしー,ろーまじ,ろーま字,英字,英字の入力,英語,abc -🅰️️ a,えいがた,えーがた,けつえきがた,けつえきがたえいがた,けつえきがたえーがた,a,a型 -🆎️ ab,ab型,えいびーがた,えーびーがた,けつえきがた,けつえきがたえいびーがた,けつえきがたえーびーがた,血液型,血液型ab型,ab,ab型 -🅱️️ b,けつえきがた,けつえきがたびーがた,びーがた,b,b型 -🆑️ cl,clまーく,くりあ,しーえる,しーえるまーく,cl -🆒️ cool,coolまーく,くーる,くーるまーく,cool -🆓️ freeまーく,ただ,ふりー,ふりーまーく,むりょう,無料,free -ℹ️️ i,iまーく,あい,あいまーく,いんふぉめーしょん,いんふぉめーしょんしんぼる,じょうほう -🆔️ id,idまーく,あいでぃ─,あいでぃー,あいでぃーまーく,id -Ⓜ️️ m,えむ,ちかてつ,まる,まるいえむまーく -🆕️ new,newまーく,あたらしい,にゅー,にゅーまーく,新しい,new -🆖️ ng,ngまーく,えぬじー,えぬじーまーく,ぼつ,ng -🅾️️ o,おーがた,けつえきがた,けつえきがたおーがた,o,o型 -🆗️ ok,okまーく,おっけー,おーけー,おーけーまーく,ok -🅿️️ p,ちゅうしゃ,ちゅうしゃじょう,ぱーきんぐ,ぴー,ぴーまーく -🆘️ sos,sosまーく,えすおーえす,えすおーえすまーく,たすけて,助けて,sos -🆙️ up,upまーく,あっぷ,あっぷまーく,こうしん,更新,up -🆚️ vs,vsまーく,ばーさす,ばーさすまーく,ぶいえす,ぶいえすまーく,ゔぁーさす,ゔぃえす,vs -🈁️ ここ,ここのまーく -🈂️️ さ,さのまーく,さーびす,さーびすりょう -🈷️️ げつがく,つき,つきぎめ,つきまーく,月 -🈶️ ゆう,ゆうげん,ゆうまーく,ゆうりょう,有,有まーく,有料,有限 -🈯️ してい,していせき,ゆび,ゆびまーく -🉐️ おとく,お得,とく,まるとく,まる得,得 -🈹️ でぃすかうんと,わり,わりびき,わりまーく,割,割まーく,割引 -🈚️ ただ,む,むまーく,むりょう -🈲️ きん,きんし,きんまーく,げんきん,厳禁,禁,禁まーく,禁止 -🉑️ か,かのう,かまーく,きょか,可,可まーく,可能,許可 -🈸️ しん,しんせい,しんまーく,もうしこみ,もうしこみまーく,申,申し込み,申まーく,申請 -🈴️ ごう,ごうかく,ごうまーく,合,合まーく,合格 -🈳️ あき,あきまーく,から,くう,くうしつ,くうせき,そら,そらまーく,空,空き,空まーく,空室,空席 -㊗️️ いわい,いわいまーく,おいわい,おめでとう,しゅく,しゅくまーく -㊙️️ ごくひ,しゃがいひ,ひ,ひみつ,まるひ -🈺️ えい,えいぎょう,えいぎょうちゅう,えいぎょうび,えいまーく,営,営まーく,営業中,営業日 -🈵️ まん,まんいん,まんしつ,まんしゃ,まんせき,まんまーく,満,満まーく,満員,満室,満席,満車 -🔴️ あか,あかいまる,おおきいまる,おおまる,まる,まるいぼたん,丸,丸いぼたん,赤,赤い丸 -🟠️ おれんじ,おれんじのまる,おれんじの丸,まる,まるいぼたん,丸,丸いぼたん -🟡️ きいろ,きいろいまる,まる,まるいぼたん,丸,丸いぼたん,黄色,黄色い丸 -🟢️ まる,まるいぼたん,みどり,みどりのまる,丸,丸いぼたん,緑,緑の丸 -🔵️ あお,あおいまる,おおきいまる,おおまる,まる,まるいぼたん,丸,丸いぼたん,青,青い丸 -🟣️ まる,まるいぼたん,むらさき,むらさきのまる,丸,丸いぼたん,紫,紫の丸 -🟤️ ちゃいろ,ちゃいろのまる,まる,まるいぼたん,丸,丸いぼたん,茶色,茶色の丸 -⚫️ くろ,くろいまる,まる,まるいぼたん -⚪️ しろ,しろいまる,まる,まるいぼたん -🟥️ あか,あかいしかく,しかく,せいほうけい,四角,正方形,赤,赤い四角 -🟧️ おれんじ,おれんじのしかく,おれんじの四角,しかく,せいほうけい,四角,正方形 -🟨️ きいろ,きいろいしかく,しかく,せいほうけい,四角,正方形,黄色,黄色い四角 -🟩️ しかく,せいほうけい,みどり,みどりのしかく,四角,正方形,緑,緑の四角 -🟦️ あお,あおいしかく,しかく,せいほうけい,四角,正方形,青,青い四角 -🟪️ しかく,せいほうけい,むらさき,むらさきのしかく,四角,正方形,紫,紫の四角 -🟫️ しかく,せいほうけい,ちゃいろ,ちゃいろいしかく,四角,正方形,茶色,茶色い四角 -⬛️ くろ,くろしかくとくだい,しかく,せいほうけい -⬜️ しかく,しろ,しろしかくとくだい,せいほうけい -◼️️ くろ,くろしかくだい,しかく,せいほうけい -◻️️ しかく,しろ,しろしかくだい,せいほうけい -◾️ くろ,くろしかくちゅう,しかく,せいほうけい -◽️ しかく,しろ,しろしかくちゅう,せいほうけい -▪️️ くろ,くろしかくしょう,しかく,せいほうけい -▫️️ しかく,しろ,しろしかくしょう,せいほうけい -🔶️ おおきいおれんじのひしがた,おおきいひしがた,おれんじ,しかく,だいあ,だいや,ひしがた,ひし形,四角,大きいおれんじのひし形,菱形 -🔷️ あお,おおきいあおのひしがた,おおきいひしがた,しかく,だいあ,だいや,ひしがた,ひし形,四角,大きい青のひし形,菱形,青 -🔸️ おれんじ,しかく,だいあ,だいや,ちいさいおれんじのひしがた,ちいさいひしがた,ひしがた,ひし形,四角,小さいおれんじのひし形,菱形 -🔹️ あお,しかく,だいあ,だいや,ちいさいあおのひしがた,ちいさいひしがた,ひしがた,ひし形,四角,小さい青のひし形,菱形,青 -🔺️ あか,あかいうえさんかく,うえ,うえむきさんかく,さんかく,三角,上,赤,赤い上三角 -🔻️ あか,あかいしたさんかく,さんかく,した,したむきさんかく,三角,下,赤,赤い下三角 -💠️ かわいい,だいあ,だいや,どっとつきひしがた,どっと付きひし形,ひしがた,ひし形 -🔘️ にじゅうまる,ぼたん,らじおぼたん,二重丸 -🔳️ しかく,しかくぼたん,しろわくしかく,せいほうけい,ぼたん,四角ぼたん,正方形,白枠四角 -🔲️ くろわくしかく,しかく,しかくぼたん,せいほうけい,ぼたん,四角ぼたん,正方形,黒枠四角 -🏁️ すぽーつ,ちぇっかー,ちぇっかーふらぐ,ちぇっかーふらっぐ,はた,ふらぐ,ふらっぐ,れーす,旗 -🚩️ ごるふ,さんかくのはた,すぽーつ,はた,ふらぐ,ふらっぐ,三角の旗,旗 -🎌️ しゅくじつ,しゅくじつのはた,はた,ひのまる,ふらぐ,ふらっぐ,旗,日の丸,祝日,祝日の旗 -🏴️ くろ,くろはた,こっき,はた,ふらぐ,ふらっぐ,旗,黒,黒旗 -🏳️️ しらはた,しろ,しろはた,はた,はっき,ふらぐ,ふらっぐ -🏳️‍🌈️ lgbt,にじいろのはた,はた,ふらぐ,ふらっぐ,れいんぼー,れいんぼーふらっぐ -🏳️‍⚧️️ lgbt,てぃーじー,とらんすじぇんだー,とらんすじぇんだーふらっぐ,はた,ふらぐ,ふらっぐ -🏴‍☠️️ かいぞく,かいぞくき,じょりーろじゃー,たからもの,ほうもつ,りゃくだつ -🇦🇨️ あせんしょんとう,あせんしょん島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇩️ あんどら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇪️ あらぶ,あらぶしゅちょうこくれんぽう,あらぶ首長国連邦,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇫️ あふがにすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇬️ あんてぃぐあばーぶーだ,あんてぃぐあ・ばーぶーだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇮️ あんぎら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇱️ あるばにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇲️ あるめにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇴️ あんごら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇶️ こっき,なんきょく,なんきょくたいりく,はた,ふらぐ,ふらっぐ,南極,旗 -🇦🇷️ あるぜんちん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇸️ あめりかりょうさもあ,こっき,はた,ふらぐ,ふらっぐ,べいりょうさもあ,旗,米領さもあ -🇦🇹️ おーすとりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇺️ おーすとらりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇼️ あるば,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇽️ おーらんどしょとう,おーらんど諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇿️ あぜるばいじゃん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇧🇦️ こっき,はた,ふらぐ,ふらっぐ,ぼすにあへるつぇごびな,ぼすにあ・へるつぇごびな,旗 -🇧🇧️ こっき,はた,ばるばどす,ふらぐ,ふらっぐ,旗 -🇧🇩️ こっき,はた,ばんぐらでしゅ,ふらぐ,ふらっぐ,旗 -🇧🇪️ こっき,はた,ふらぐ,ふらっぐ,べるぎー,旗 -🇧🇫️ こっき,はた,ふらぐ,ふらっぐ,ぶるきなふぁそ,旗 -🇧🇬️ こっき,はた,ふらぐ,ふらっぐ,ぶるがりあ,旗 -🇧🇭️ こっき,はた,ばーれーん,ふらぐ,ふらっぐ,旗 -🇧🇮️ こっき,はた,ふらぐ,ふらっぐ,ぶるんじ,旗 -🇧🇯️ こっき,はた,ふらぐ,ふらっぐ,べなん,旗 -🇧🇱️ こっき,さんばるてるみー,さん・ばるてるみー,はた,ふらぐ,ふらっぐ,旗 -🇧🇲️ こっき,はた,ばみゅーだ,ふらぐ,ふらっぐ,旗 -🇧🇳️ こっき,はた,ふらぐ,ふらっぐ,ぶるねい,旗 -🇧🇴️ こっき,はた,ふらぐ,ふらっぐ,ぼりびあ,旗 -🇧🇶️ おらんだりょうかりぶ,おらんだ領かりぶ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇧🇷️ こっき,はた,ふらぐ,ふらっぐ,ぶらじる,旗 -🇧🇸️ こっき,はた,ばはま,ふらぐ,ふらっぐ,旗 -🇧🇹️ こっき,はた,ふらぐ,ふらっぐ,ぶーたん,旗 -🇧🇻️ こっき,はた,ふらぐ,ふらっぐ,ぶーべとう,ぶーべ島,旗 -🇧🇼️ こっき,はた,ふらぐ,ふらっぐ,ぼつわな,旗 -🇧🇾️ こっき,はた,ふらぐ,ふらっぐ,べらるーし,旗 -🇧🇿️ こっき,はた,ふらぐ,ふらっぐ,べりーず,旗 -🇨🇦️ かなだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇨️ きーりんぐしょとう,ここす(きーりんぐ)しょとう,ここす(きーりんぐ)諸島,ここすしょとう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇩️ きんしゃさ,こっき,こんごみんしゅきょうわこく,こんごみんしゅきょうわこく(きんしゃさ),こんご民主共和国(きんしゃさ),はた,ふらぐ,ふらっぐ,旗 -🇨🇫️ こっき,ちゅうおうあふりかきょうわこく,はた,ふらぐ,ふらっぐ,中央あふりか共和国,旗 -🇨🇬️ こっき,こんごきょうわこく,こんごきょうわこく(ぶらざびる),こんご共和国(ぶらざびる),はた,ふらぐ,ふらっぐ,ぶらざびる,旗 -🇨🇭️ こっき,すいす,はた,ふらぐ,ふらっぐ,旗 -🇨🇮️ こっき,こーとじぼわーる,はた,ふらぐ,ふらっぐ,旗 -🇨🇰️ くっくしょとう,くっく諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇱️ こっき,ちり,はた,ふらぐ,ふらっぐ,旗 -🇨🇲️ かめるーん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇳️ こっき,ちゅうごく,はた,ふらぐ,ふらっぐ,中国,旗 -🇨🇴️ こっき,ころんびあ,はた,ふらぐ,ふらっぐ,旗 -🇨🇵️ くりっぱーとんとう,くりっぱーとん島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇷️ こすたりか,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇺️ きゅーば,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇻️ かーぼべるで,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇼️ きゅらそー,きゅらそーとう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇽️ くりすますとう,くりすます島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇾️ きぷろす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇿️ こっき,ちぇこ,はた,ふらぐ,ふらっぐ,旗 -🇩🇪️ こっき,どいつ,はた,ふらぐ,ふらっぐ,旗 -🇩🇬️ こっき,でぃえごがるしあとう,でぃえごがるしあ島,はた,ふらぐ,ふらっぐ,旗 -🇩🇯️ こっき,じぶち,はた,ふらぐ,ふらっぐ,旗 -🇩🇰️ こっき,でんまーく,はた,ふらぐ,ふらっぐ,旗 -🇩🇲️ こっき,どみにかこく,どみにか国,はた,ふらぐ,ふらっぐ,旗 -🇩🇴️ こっき,どみにかきょうわこく,どみにか共和国,はた,ふらぐ,ふらっぐ,旗 -🇩🇿️ あるじぇりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇦️ こっき,せうたとめりりゃ,せうた・めりりゃ,はた,ふらぐ,ふらっぐ,旗 -🇪🇨️ えくあどる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇪️ えすとにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇬️ えじぷと,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇭️ こっき,にしさはら,はた,ふらぐ,ふらっぐ,旗,西さはら -🇪🇷️ えりとりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇸️ こっき,すぺいん,はた,ふらぐ,ふらっぐ,旗 -🇪🇹️ えちおぴあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇺️ eu,いーゆー,おうしゅうれんごう,こっき,はた,ふらぐ,ふらっぐ,旗,欧州連合 -🇫🇮️ こっき,はた,ふぃんらんど,ふらぐ,ふらっぐ,旗 -🇫🇯️ こっき,はた,ふぃじー,ふらぐ,ふらっぐ,旗 -🇫🇰️ こっき,はた,ふぉーくらんどしょとう,ふぉーくらんど諸島,ふらぐ,ふらっぐ,旗 -🇫🇲️ こっき,はた,ふらぐ,ふらっぐ,みくろねしあ,みくろねしあれんぽう,みくろねしあ連邦,旗 -🇫🇴️ こっき,はた,ふぇろーしょとう,ふぇろー諸島,ふらぐ,ふらっぐ,旗 -🇫🇷️ こっき,はた,ふらぐ,ふらっぐ,ふらんす,旗 -🇬🇦️ がぼん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇧️ いぎりす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇩️ ぐれなだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇪️ こっき,じょーじあ,はた,ふらぐ,ふらっぐ,旗 -🇬🇫️ こっき,はた,ふつりょうぎあな,ふらぐ,ふらっぐ,ふらんすりょうぎあな,仏領ぎあな,旗 -🇬🇬️ がーんじー,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇭️ がーな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇮️ こっき,じぶらるたる,はた,ふらぐ,ふらっぐ,旗 -🇬🇱️ ぐりーんらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇲️ がんびあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇳️ ぎにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇵️ ぐあどるーぷ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇶️ こっき,せきどうぎにあ,はた,ふらぐ,ふらっぐ,旗,赤道ぎにあ -🇬🇷️ ぎりしゃ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇸️ こっき,さうすじょーじあ・さうすさんどうぃっちしょとう,さうすじょーじあ・さうすさんどうぃっち諸島,はた,ふらぐ,ふらっぐ,旗 -🇬🇹️ ぐあてまら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇺️ ぐあむ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇼️ ぎにあびさう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇾️ がいあな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇭🇰️ こっき,ちゅうかじんみんきょうわこくほんこんとくべつぎょうせいく,はた,ふらぐ,ふらっぐ,ほんこん,中華人民共和国香港特別行政区,旗 -🇭🇲️ こっき,はた,はーどとう,はーどとうとまくどなるどしょとう,はーどとう・まくどなるどしょとう,はーど島・まくどなるど諸島,ふらぐ,ふらっぐ,まくどなるどしょとう,旗 -🇭🇳️ こっき,はた,ふらぐ,ふらっぐ,ほんじゅらす,旗 -🇭🇷️ くろあちあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇭🇹️ こっき,はいち,はた,ふらぐ,ふらっぐ,旗 -🇭🇺️ こっき,はた,はんがりー,ふらぐ,ふらっぐ,旗 -🇮🇨️ かなりあしょとう,かなりあ諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇩️ いんどねしあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇪️ あいるらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇱️ いすらえる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇲️ こっき,はた,ふらぐ,ふらっぐ,まんとう,まん島,旗 -🇮🇳️ いんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇴️ いぎりすりょういんどようちいき,えいりょういんどようちいき,こっき,はた,ふらぐ,ふらっぐ,旗,英領いんど洋地域 -🇮🇶️ いらく,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇷️ いらん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇸️ あいすらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇹️ いたりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇯🇪️ こっき,じゃーじー,はた,ふらぐ,ふらっぐ,旗 -🇯🇲️ こっき,じゃまいか,はた,ふらぐ,ふらっぐ,旗 -🇯🇴️ こっき,はた,ふらぐ,ふらっぐ,よるだん,旗 -🇯🇵️ こっき,しゅくじつ,にっぽん,にほん,はた,ひのまる,ふらぐ,ふらっぐ,旗,日本 -🇰🇪️ けにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇬️ きるぎす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇭️ かんぼじあ,こっき,ころんびあ,はた,ふらぐ,ふらっぐ,旗 -🇰🇮️ きりばす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇲️ こっき,こもろ,はた,ふらぐ,ふらっぐ,旗 -🇰🇳️ こっき,せんとくりすとふぁーねーゔぃす,せんとくりすとふぁー・ねーゔぃす,はた,ふらぐ,ふらっぐ,旗 -🇰🇵️ きたちょうせん,こっき,はた,ふらぐ,ふらっぐ,北朝鮮,旗 -🇰🇷️ かんこく,こっき,はた,ふらぐ,ふらっぐ,旗,韓国 -🇰🇼️ くうぇーと,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇾️ けいまんしょとう,けいまん諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇿️ かざふすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇱🇦️ こっき,はた,ふらぐ,ふらっぐ,らおす,旗 -🇱🇧️ こっき,はた,ふらぐ,ふらっぐ,ればのん,旗 -🇱🇨️ こっき,せんとるしあ,はた,ふらぐ,ふらっぐ,旗 -🇱🇮️ こっき,はた,ふらぐ,ふらっぐ,りひてんしゅたいん,旗 -🇱🇰️ こっき,すりらんか,はた,ふらぐ,ふらっぐ,旗 -🇱🇷️ こっき,はた,ふらぐ,ふらっぐ,りべりあ,旗 -🇱🇸️ こっき,はた,ふらぐ,ふらっぐ,れそと,旗 -🇱🇹️ こっき,はた,ふらぐ,ふらっぐ,りとあにあ,旗 -🇱🇺️ こっき,はた,ふらぐ,ふらっぐ,るくせんぶるく,るくせんぶるぐ,旗 -🇱🇻️ こっき,はた,ふらぐ,ふらっぐ,らとびあ,旗 -🇱🇾️ こっき,はた,ふらぐ,ふらっぐ,りびあ,旗 -🇲🇦️ こっき,はた,ふらぐ,ふらっぐ,もろっこ,旗 -🇲🇨️ こっき,はた,ふらぐ,ふらっぐ,もなこ,旗 -🇲🇩️ こっき,はた,ふらぐ,ふらっぐ,もるどば,旗 -🇲🇪️ こっき,はた,ふらぐ,ふらっぐ,もんてねぐろ,旗 -🇲🇫️ こっき,さんまるたん,さん・まるたん,はた,ふらぐ,ふらっぐ,旗 -🇲🇬️ こっき,はた,ふらぐ,ふらっぐ,まだがすかる,旗 -🇲🇭️ こっき,はた,ふらぐ,ふらっぐ,まーしゃるしょとう,まーしゃる諸島,旗 -🇲🇰️ きたまけどにあ,こっき,はた,ふらぐ,ふらっぐ,まけどにあ,北まけどにあ,旗 -🇲🇱️ こっき,はた,ふらぐ,ふらっぐ,まり,旗 -🇲🇲️ こっき,はた,びるま,ふらぐ,ふらっぐ,みゃんまー,みゃんまー (びるま),旗 -🇲🇳️ こっき,はた,ふらぐ,ふらっぐ,もんごる,旗 -🇲🇴️ こっき,ちゅうかじんみんきょうわこくまかおとくべつぎょうせいく,はた,ふらぐ,ふらっぐ,まかお,中華人民共和国まかお特別行政区,旗 -🇲🇵️ きたまりあなしょとう,こっき,はた,ふらぐ,ふらっぐ,北まりあな諸島,旗 -🇲🇶️ こっき,はた,ふらぐ,ふらっぐ,まるてぃにーく,旗 -🇲🇷️ こっき,はた,ふらぐ,ふらっぐ,もーりたにあ,旗 -🇲🇸️ こっき,はた,ふらぐ,ふらっぐ,もんとせらと,旗 -🇲🇹️ こっき,はた,ふらぐ,ふらっぐ,まるた,旗 -🇲🇺️ こっき,はた,ふらぐ,ふらっぐ,もーりしゃす,旗 -🇲🇻️ こっき,はた,ふらぐ,ふらっぐ,もるでぃぶ,旗 -🇲🇼️ こっき,はた,ふらぐ,ふらっぐ,まらうぃ,まらうい,旗 -🇲🇽️ こっき,はた,ふらぐ,ふらっぐ,めきしこ,旗 -🇲🇾️ こっき,はた,ふらぐ,ふらっぐ,まれーしあ,旗 -🇲🇿️ こっき,はた,ふらぐ,ふらっぐ,もざんびーく,旗 -🇳🇦️ こっき,なみびあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇨️ こっき,にゅーかれどにあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇪️ こっき,にじぇーる,はた,ふらぐ,ふらっぐ,旗 -🇳🇫️ こっき,のーふぉーくとう,のーふぉーく島,はた,ふらぐ,ふらっぐ,旗 -🇳🇬️ こっき,ないじぇりあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇮️ こっき,にからぐあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇱️ おらんだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇳🇴️ こっき,のるうぇー,はた,ふらぐ,ふらっぐ,旗 -🇳🇵️ こっき,ねぱーる,はた,ふらぐ,ふらっぐ,旗 -🇳🇷️ こっき,なうる,はた,ふらぐ,ふらっぐ,旗 -🇳🇺️ こっき,にうえ,はた,ふらぐ,ふらっぐ,旗 -🇳🇿️ こっき,にゅーじーらんど,はた,ふらぐ,ふらっぐ,旗 -🇴🇲️ おまーん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇵🇦️ こっき,はた,ぱなま,ふらぐ,ふらっぐ,旗 -🇵🇪️ こっき,はた,ふらぐ,ふらっぐ,ぺるー,旗 -🇵🇫️ こっき,はた,ふつりょうぽりねしあ,ふらぐ,ふらっぐ,ふらんすりょうぽりねしあ,仏領ぽりねしあ,旗 -🇵🇬️ こっき,はた,ぱぷあにゅーぎにあ,ふらぐ,ふらっぐ,旗 -🇵🇭️ こっき,はた,ふぃりぴん,ふらぐ,ふらっぐ,旗 -🇵🇰️ こっき,はた,ぱきすたん,ふらぐ,ふらっぐ,旗 -🇵🇱️ こっき,はた,ふらぐ,ふらっぐ,ぽーらんど,旗 -🇵🇲️ こっき,さんぴえーるしま・みくろんとう,さんぴえーるとう,さんぴえーるとう・みくろんとう,さんぴえーる島・みくろん島,はた,ふらぐ,ふらっぐ,みくろんとう,旗 -🇵🇳️ こっき,はた,ぴとけあんしょとう,ぴとけあん諸島,ふらぐ,ふらっぐ,旗 -🇵🇷️ こっき,はた,ふらぐ,ふらっぐ,ぷえるとりこ,旗 -🇵🇸️ こっき,はた,ぱれすちなじちく,ぱれすちな自治区,ふらぐ,ふらっぐ,旗 -🇵🇹️ こっき,はた,ふらぐ,ふらっぐ,ぽるとがる,旗 -🇵🇼️ こっき,はた,ぱらお,ふらぐ,ふらっぐ,旗 -🇵🇾️ こっき,はた,ぱらぐあい,ふらぐ,ふらっぐ,旗 -🇶🇦️ かたーる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇷🇪️ こっき,はた,ふらぐ,ふらっぐ,れゆにおん,旗 -🇷🇴️ こっき,はた,ふらぐ,ふらっぐ,るーまにあ,旗 -🇷🇸️ こっき,せるびあ,はた,ふらぐ,ふらっぐ,旗 -🇷🇺️ こっき,はた,ふらぐ,ふらっぐ,ろしあ,旗 -🇷🇼️ こっき,はた,ふらぐ,ふらっぐ,るわんだ,旗 -🇸🇦️ こっき,さうじあらびあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇧️ こっき,そろもんしょとう,そろもん諸島,はた,ふらぐ,ふらっぐ,旗 -🇸🇨️ こっき,せーしぇる,はた,ふらぐ,ふらっぐ,旗 -🇸🇩️ こっき,すーだん,はた,ふらぐ,ふらっぐ,旗 -🇸🇪️ こっき,すうぇーでん,はた,ふらぐ,ふらっぐ,旗 -🇸🇬️ こっき,しんがぽーる,はた,ふらぐ,ふらっぐ,旗 -🇸🇭️ こっき,せんとへれな,はた,ふらぐ,ふらっぐ,旗 -🇸🇮️ こっき,すろべにあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇯️ こっき,すばーるばるしょとう,すばーるばるしょとう・やんまいえんとう,すばーるばる諸島・やんまいえん島,すゔぁーるばるしょとうおよびやんまいえんとう,はた,ふらぐ,ふらっぐ,やんまいえんとう,旗 -🇸🇰️ こっき,すろばきあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇱️ こっき,しえられおね,はた,ふらぐ,ふらっぐ,旗 -🇸🇲️ こっき,さんまりの,はた,ふらぐ,ふらっぐ,旗 -🇸🇳️ こっき,せねがる,はた,ふらぐ,ふらっぐ,旗 -🇸🇴️ こっき,そまりあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇷️ こっき,すりなむ,はた,ふらぐ,ふらっぐ,旗 -🇸🇸️ こっき,はた,ふらぐ,ふらっぐ,みなみすーだん,南すーだん,旗 -🇸🇹️ こっき,さんとめぷりんしぺ,さんとめ・ぷりんしぺ,はた,ふらぐ,ふらっぐ,旗 -🇸🇻️ えるさるばどる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇸🇽️ こっき,しんとまーるてん,しんと・まーるてん,はた,ふらぐ,ふらっぐ,旗 -🇸🇾️ こっき,しりあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇿️ えすわてぃに,こっき,すわじらんど,はた,ふらぐ,ふらっぐ,旗 -🇹🇦️ こっき,とりすたんだくーにゃ,とりすたん・だ・くーにゃ,はた,ふらぐ,ふらっぐ,旗 -🇹🇨️ こっき,たーくすかいこすしょとう,たーくす・かいこす諸島,はた,ふらぐ,ふらっぐ,旗 -🇹🇩️ こっき,ちゃど,はた,ふらぐ,ふらっぐ,旗 -🇹🇫️ こっき,はた,ふつりょうきょくなんしょとう,ふらぐ,ふらっぐ,仏領極南諸島,旗 -🇹🇬️ こっき,とーご,はた,ふらぐ,ふらっぐ,旗 -🇹🇭️ こっき,たい,はた,ふらぐ,ふらっぐ,旗 -🇹🇯️ こっき,たじきすたん,はた,ふらぐ,ふらっぐ,旗 -🇹🇰️ こっき,とけらう,はた,ふらぐ,ふらっぐ,旗 -🇹🇱️ こっき,はた,ひがしてぃもーる,ふらぐ,ふらっぐ,旗,東てぃもーる -🇹🇲️ こっき,とるくめにすたん,はた,ふらぐ,ふらっぐ,旗 -🇹🇳️ こっき,ちゅにじあ,はた,ふらぐ,ふらっぐ,旗 -🇹🇴️ こっき,とんが,はた,ふらぐ,ふらっぐ,旗 -🇹🇷️ こっき,とるこ,はた,ふらぐ,ふらっぐ,旗 -🇹🇹️ こっき,とりにだーどとばご,とりにだーど・とばご,はた,ふらぐ,ふらっぐ,旗 -🇹🇻️ こっき,つばる,はた,ふらぐ,ふらっぐ,旗 -🇹🇼️ こっき,たいわん,はた,ふらぐ,ふらっぐ,台湾,旗 -🇹🇿️ こっき,たんざにあ,はた,ふらぐ,ふらっぐ,旗 -🇺🇦️ うくらいな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇬️ うがんだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇲️ がっしゅうこくりょうゆうしょうりとう,こっき,はた,ふらぐ,ふらっぐ,合衆国領有小離島,旗 -🇺🇳️ こくさいれんごう,こくれん,こっき,はた,ふらぐ,ふらっぐ,国際連合,旗 -🇺🇸️ あめりか,あめりかがっしゅうこく,あめりか合衆国,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇾️ うるぐあい,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇿️ うずべきすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇻🇦️ こっき,はた,ばちかん,ばちかんしこく,ばちかん市国,ふらぐ,ふらっぐ,旗 -🇻🇨️ こっき,せんとびんせんとおよびぐれなでぃーんしょとう,せんとびんせんと及びぐれなでぃーん諸島,はた,ふらぐ,ふらっぐ,旗 -🇻🇪️ こっき,はた,ふらぐ,ふらっぐ,べねずえら,旗 -🇻🇬️ いぎりすりょうゔぁーじんしょとう,えいりょうゔぁーじんしょとう,こっき,はた,ふらぐ,ふらっぐ,旗,英領ゔぁーじん諸島 -🇻🇮️ あめりかりょうゔぁーじんしょとう,こっき,はた,ふらぐ,ふらっぐ,べいりょうゔぁーじんしょとう,旗,米領ゔぁーじん諸島 -🇻🇳️ こっき,はた,ふらぐ,ふらっぐ,べとなむ,旗 -🇻🇺️ こっき,はた,ばぬあつ,ふらぐ,ふらっぐ,旗 -🇼🇫️ うぉりすふつな,うぉりす・ふつな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇼🇸️ こっき,さもあ,はた,ふらぐ,ふらっぐ,旗 -🇽🇰️ こそぼ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇾🇪️ いえめん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇾🇹️ こっき,はた,ふらぐ,ふらっぐ,まよっと,旗 -🇿🇦️ こっき,はた,ふらぐ,ふらっぐ,みなみあふりか,南あふりか,旗 -🇿🇲️ こっき,ざんびあ,はた,ふらぐ,ふらっぐ,旗 -🇿🇼️ こっき,じんばぶえ,はた,ふらぐ,ふらっぐ,旗 -🏴󠁧󠁢󠁥󠁮󠁧󠁿️ いんぐらんど,はた,旗 -🏴󠁧󠁢󠁳󠁣󠁴󠁿️ すこっとらんど,はた,旗 -🏴󠁧󠁢󠁷󠁬󠁳󠁿️ うぇーるず,はた,旗 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E14.0.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E14.0.txt deleted file mode 100644 index 4594d83..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E14.0.txt +++ /dev/null @@ -1,1865 +0,0 @@ -😀️ えがお,かお,すまいる,にっこり,にっこりわらう,にっこり笑う,わらう,笑う,笑顔,顔 -😃️ えがお,かお,すまいる,わーい,笑顔,顔 -😄️ えがお,かお,すまいる,わーい,笑顔,顔 -😁️ えがお,かお,すまいる,にやっとわらう,にやっと笑う,わらい,わらう,笑う,笑顔,顔 -😆️ うれしい,えがお,かお,きゃー,すまいる,まんぞく,嬉しい,満足,笑顔,顔 -😅️ あせ,えがお,かお,すまいる,ひやあせ,ひやあせえがお,わーい,冷や汗,冷や汗笑顔,笑顔,顔 -🤣️ えがお,かお,すまいる,わらいころげる,わらう,笑い転げる,笑う,笑顔,顔 -😂️ うれしなき,えがお,かお,すまいる,なみだ,わらい,わらう,嬉し泣き,涙,笑う,笑顔,顔 -🙂️ えがお,かお,すまいる,ほほえみ,ほほえむ,微笑み,微笑む,笑顔,顔 -🙃️ かお,さかさま,さかさまのかお,さかさまの顔,顔 -🫠️ えきたい,かお,とけそう,とけているかお,とける,とろける,とろとろ,ようかい,液体,溶けそう,溶けている顔,溶ける,顔 -😉️ うぃんく,ういんく,かお,顔 -😊️ えがお,かお,すまいる,にこにこ,ほおをあからめる,ほほえみ,ほほをあからめる,めをほそめる,微笑み,目を細める,頬を赤らめる,顔 -😇️ えがお,かお,すまいる,てんし,てんしのわ,てんしのわがついたえがお,天使,天使の輪,天使の輪がついた笑顔,笑顔,顔 -🥰️ えがお,かお,はーとのえがお,はーとの笑顔,むちゅう,めろめろ,らぶ,夢中,笑顔,顔 -😍️ えがお,かお,すまいる,はーと,めがはーとのえがお,らぶ,目がはーとの笑顔,笑顔,顔 -🤩️ えがお,かお,すまいる,ほし,めがほしのえがお,星,目が星の笑顔,笑顔,顔 -😘️ かお,きす,ちゅっ,なげきっす,はーと,投げきっす,顔 -😗️ かお,きす,ちゅっ,顔 -☺️️ えがお,かお,すまいりー,すまいる,ほっ -😚️ かお,きす,ちゅっ,めをとじる,目を閉じる,顔 -😙️ えがお,かお,きす,すまいる,ちゅっ,にっこりきす,笑顔,顔 -🥲️ うれしなみだのかお,かお,かんどう,じーん,なく,なみだ,嬉し涙の顔,感動,泣く,涙,顔 -😋️ うまい,えがお,おいしい,かお,すまいる,にこにこ,にこにこぺろり,笑顔,顔 -😛️ かお,した,したをだしたかお,べろ,べー,舌,舌を出した顔,顔 -😜️ あっかんべー,かお,した,じょうだん,じょーく,べー,冗談,舌,顔 -🤪️ おかしい,かお,じょーく,ふざけ,ふざけたかお,ふざけた顔,顔 -😝️ かお,した,べろ,べー,めをとじてべー,わーい,目を閉じてべー,舌,顔 -🤑️ おかねのかお,お金の顔,かお,した,べろ,べー,舌,顔 -🤗️ えがお,かお,すまいる,はぐ,笑顔,顔 -🤭️ えがお,かお,くすくす,くちにてをあてたかお,すまいる,ないしょ,内緒,口に手を当てた顔,笑顔,顔 -🫢️ いわない,えっ,おそれ,おどろき,おののき,かお,ひみつ,びっくり,めをあけてくちにてをあてたかお,目を開けて口に手を当てた顔,顔,驚き -🫣️ かお,きになる,こわいものみたさ,こわごわ,ぬすみみ,のぞきみ,のぞき見,はずかしい,ゆびのまからのぞきみるかお,指の間からのぞき見る顔,盗み見,顔 -🤫️ かお,しずかに,しっ,しー,しーっ,だまれ,静かに,顔 -🤔️ うーん,かお,かんがえちゅう,かんがえる,かんがえるかお,考える,考える顔,考え中,顔 -🫡️ いえっさー,おーけー,かお,ぐんたい,けいれい,けいれいするかお,しょうち,りょうかい,わかった,了解,敬礼,敬礼する顔,軍隊,顔 -🤐️ かお,くち,くちちゃっく,ちゃっく,口,口ちゃっく,顔 -🤨️ うたがい,おどろき,かお,まゆをあげたかお,疑い,眉を上げた顔,顔,驚き -😐️ かお,ぽーかーふぇいす,むひょうじょう -😑️ かお,むかんじょう,むひょうじょう,無感情,無表情,顔 -😶️ かお,くちなし,くちのないかお,だんまり,ちんもく,口なし,口のない顔,沈黙,顔 -🫥️ うちき,かお,てんせんのかお,ないこうてき,むむむ,ゆううつ,らくたん,内向的,内気,憂鬱,点線の顔,落胆,顔 -😶‍🌫️️ うわのそら,かお,くも,くものなか,くものなかのかお,こっそり,ほうしんじょうたい,ぼんやり,むちゅう -😏️ うすわらいをするかお,かお,にやり,ふっ,薄笑いをする顔,顔 -😒️ かお,しらけ,しらけた,しらける,じとめ,じと目,顔 -🙄️ うえをみるかお,うわめ,かお,上を見る顔,上目,顔 -😬️ いー,かお,しかめがお,しかめっつら,しかめっ面,しかめつら,しかめ面,しかめ顔,顔 -😮‍💨️ あきらめ,あんしん,いきをはくかお,かお,こきゅう,ためいき,ため息,はぁ,ひとあんしん,ほっとした,安心,息を吐く顔,顔 -🤥️ うそつき,うそつきのかお,うそつきの顔,かお,ぴのきおのかお,ぴのきおの顔,嘘つき,顔 -😌️ あんしん,かお,ほっ,ほっとしたかお,ほっとした顔,安心,顔 -😔️ かお,しょぼーん,しょんぼり,顔 -😪️ かお,ねむい,ねむる,ねる,寝る,眠い,眠る,顔 -🤤️ かお,よだれ,よだれをたらしたかお,よだれを垂らした顔,顔 -😴️ zzz,かお,ねむい,ねむる,ねる,寝る,眠い,眠る,顔 -😷️ かお,かぜ,かふんしょう,びょうき,ますく,ますくがお,ますく顔,病気,花粉症,顔,風邪 -🤒️ かお,かぜ,たいおんけい,ねつがあるかお,ねつをはかる,びょうき,体温計,熱がある顔,熱を測る,病気,顔,風邪 -🤕️ かお,けが,けがしてるかお,けがしてる顔,ほうたい,ほうたいをまいたかお,包帯,包帯を巻いた顔,顔 -🤢️ かお,きもちわるい,ぐあいのわるいかお,はきけをもよおしているかお,びょうき,具合の悪い顔,吐き気を催している顔,気持ち悪い,病気,顔 -🤮️ おうとするかお,かお,きもちわるい,げろ,びょうき,嘔吐する顔,気持ち悪い,病気,顔 -🤧️ かお,かぜ,かふんしょう,くしゃみ,くしゃみするかお,くしゃみする顔,花粉症,顔,風邪 -🥵️ あかいかお,あせ,あついかお,あつさ,ねっちゅうしょう,はつねつ,暑い顔,暑さ,汗,熱中症,発熱,赤い顔 -🥶️ あおいかお,こごえ,さむいかお,さむさ,しもやけ,つらら,凍え,寒い顔,寒さ,青い顔 -🥴️ うつろなめ,うつろな目,ちゅうどく,ふらふらのかお,ふらふらの顔,べろんべろん,ほろよい,ほろ酔い,めまい,中毒 -😵️ かお,ふらふら,めまい,顔 -😵‍💫️ うずまき,かお,ぐるぐる,こまる,こんらん,ふらふら,めがぐるぐる,めがまわる,めまい,めをまわしたかお,渦巻き,目がぐるぐる,目が回る,目を回した顔 -🤯️ あたまばくはつ,おどろき,かお,しょっく,ばくはつ,ぼんっ,爆発,頭爆発,顔,驚き -🤠️ かうがーる,かうぼーい,かうぼーいのかお,かうぼーいの顔,かお,顔 -🥳️ おいわい,お祝い,ぱーてぃー,ぱーてぃーのかお,ぱーてぃーの顔,ふえ,ぼうし,帽子,笛 -🥸️ かお,かそう,ひげ,へんそう,へんそうしたかお,めがね,仮装,変装,変装した顔,顔 -😎️ えがお,かお,くーる,さんぐらすでえがお,さんぐらすで笑顔,すまいる,笑顔,顔 -🤓️ おたく,かお,まにあ,めがね,顔 -🧐️ かお,かためがね,かんがえる,めがね,ものくるをつけたかお,ものくるを付けた顔,片眼鏡,考える,顔 -😕️ かお,こんらん,こんわく,困惑,混乱,顔 -🫤️ かお,がっかり,くちがななめのかお,こんわく,ふふく,ふまん,むかんしん,むきりょく,口が斜めの顔,困惑,無気力,無関心,顔 -😟️ かお,しんぱい,なやむかお,心配,悩む顔,顔 -🙁️ かお,こまった,しかめっつら,しかめつら,しかめ面,すこしこまった,すこしこまったかお,困った,少し困った,少し困った顔,顔 -☹️️ かお,こまった,こまったかお,しかめっつら,しかめつら -😮️ かお,きょうかん,くちがひらいたかお,へー,共感,口が開いた顔,顔 -😯️ おどろき,かお,びっくり,びっくりがお,びっくり顔,ぽかーん,顔,驚き -😲️ おどろき,かお,きょうがく,びっくり,びっくりしたかお,びっくりした顔,顔,驚き,驚愕 -😳️ あかくなる,かお,せきめん,赤くなる,赤面,顔 -🥺️ うったえるようなかお,かお,こいぬのめ,こんがん,なさけ,ぴえん,子犬の目,情け,懇願,訴えるような顔,顔 -🥹️ ありがとう,うるうる,うれしい,うれしなみだ,かお,こんがん,なきがお,なみだ,なみだをこらえたかお,懇願,泣き顔,涙,涙をこらえた顔,顔 -😦️ あきれがお,あきれ顔,かお,しかめがお,しかめっつら,しかめつら,しかめ面,しかめ顔,ふほんい,ふまん,不本意,不満,顔 -😧️ かお,くのう,くもん,苦悩,苦悶,顔 -😨️ あおざめ,かお,がーん,青ざめ,顔 -😰️ あおざめ,かお,ひやあせ,ひやあせあおざめ,冷や汗,冷や汗青ざめ,青ざめ,顔 -😥️ あせ,かお,こまった,どうしよう,困った,汗,顔 -😢️ かお,かなしい,なきがお,なく,なみだ,悲しい,泣き顔,泣く,涙,顔 -😭️ おおなき,かお,かなしい,ごうきゅう,なく,なみだ,号泣,大泣き,悲しい,泣く,涙,顔 -😱️ かお,がーん,きょうふ,さけび,しょっく,叫び,恐怖,顔 -😖️ かお,こんらん,こんわく,こんわくしたかお,困惑,困惑した顔,混乱,顔 -😣️ かお,がまん,我慢,顔 -😞️ かお,がっかり,がっくり,しつぼうしたかお,失望した顔,顔 -😓️ あせ,かお,きもをひやした,ひやあせ,冷や汗,肝を冷やした,顔 -😩️ あきらめ,かお,つかれ,疲れ,顔 -😫️ かお,げんかい,つかれ,つかれた,疲れ,疲れた,限界,顔 -🥱️ あくびしたかお,あくびした顔,かお,たいくつ,つかれ,ねむい,ふあー,ふあ~,疲れ,眠い,退屈,顔 -😤️ かお,かちほこったかお,とくいげ,はないき,ふんっ,勝ち誇った顔,得意気,顔,鼻息 -😡️ いかり,かお,かんかん,げきど,ふくれっつら,ふくれっ面,ぷんぷん,怒り,激怒,顔 -😠️ いかり,かお,ぷんぷん,怒り,顔 -🤬️ いかり,かお,ののしり,ののしる,怒り,顔 -😈️ あくま,えがお,かお,すまいる,でびる,わらったあくま,悪魔,笑った悪魔,笑顔,顔 -👿️ あくま,おこったあくま,かお,かんかん,げきど,でびる,怒った悪魔,悪魔,激怒,顔 -💀️ かお,がいこつ,し,すかる,どくろ,死,顔,骸骨 -☠️️ かお,がいこつ,すかる,どくろ,どくろとほね -💩️ うんこ,うんち,かお,顔 -🤡️ かお,ぴえろ,ぴえろのかお,ぴえろの顔,顔 -👹️ おに,おめん,お面,かお,なまはげ,ばけもの,化け物,鬼 -👺️ おめん,お面,かお,てんぐ,天狗 -👻️ おばけ,お化け,ごーすと,ゆうれい,ゆーれい,幽霊 -👽️ いせいじん,うちゅうじん,えいりあん,かお,ぐれい,ゆーふぉー,宇宙人,ufo -👾️ いせいじん,いんべーだー,うちゅうじん,えいりあん,かお,もんすたー,宇宙人,異星人 -🤖️ かお,ろぼっと,顔 -😺️ えがお,かお,すまいる,にっこりわらうねこ,にっこり笑う猫,ねこ,猫,笑顔,顔 -😸️ えがお,かお,すまいる,にやっとわらうねこ,にやっと笑う猫,ねこ,わらう,猫,笑う,笑顔,顔 -😹️ うれしなきするねこ,えがお,かお,すまいる,なみだ,ねこ,嬉し泣きする猫,涙,猫,笑顔,顔 -😻️ えがお,かお,すまいる,ねこ,はーと,めがはーとのねこ,猫,目がはーとの猫,笑顔,顔 -😼️ かお,にやり,にやりとするねこ,にやりとする猫,ねこ,ふっ,猫,顔 -😽️ かお,きす,ちゅっ,ねこ,ねこのきす,猫,猫のきす,顔 -🙀️ かお,がーん,しょっく,ぜつぼうするねこ,ねこ,びっくり,猫,絶望する猫,顔 -😿️ かお,かなしい,ないているねこ,なみだ,ねこ,悲しい,泣いている猫,涙,猫,顔 -😾️ かお,ねこ,ふきげん,ふきげんなねこ,ぷんぷん,不機嫌,不機嫌な猫,猫,顔 -🙈️ さる,さんざる,みざる,三猿,猿,見ざる -🙉️ きかざる,さる,さんざる,三猿,猿,聞かざる -🙊️ いわざる,さる,さんざる,三猿,猿,言わざる -💌️ こいぶみ,てがみ,はーと,ふうとう,らぶれたー,封筒,恋文,手紙 -💘️ きゅーぴっど,はーと,はーとにや,はーとに矢,はーとのや,や,矢 -💝️ はーと,はーとにりぼん,ばれんたいん,ばれんたいんでー,りぼん -💖️ きらきら,きらきらはーと,はーと,ぴかぴかはーと -💗️ おおきくなるはーと,ときめき,どきどき,はーと,大きくなるはーと -💓️ どきどき,どきどきするはーと,はーと -💞️ かいてんするはーと,かわいい,はーと,回転するはーと -💕️ 2つのはーと,はーと,ふたつのはーと,らぶ -💟️ はーと,はーとでこ,はーとでこれーしょん -❣️️ えくすくらめーしょんまーく,はーと,はーとのびっくり,びっくりまーく -💔️ しつれん,はーと,はーとぶれいく,わかれた,われたはーと,別れた,割れたはーと,失恋 -❤️‍🔥️ あい,せいなるしんぞう,ねつい,はーと,ひのついた,ふんき,ほのお,もえるはーと,やるき -❤️‍🩹️ かいふくちゅう,きずついた,けが,しょうしん,ちりょうちゅう,つらい,どうじょう,はーと,ほうたい,ほうたいをまいたはーと -❤️️ あかいはーと,くろはーと,はーと,はーとまーく -🧡️ おれんじのはーと,はーと -💛️ きいろのはーと,はーと,黄色のはーと -💚️ はーと,みどりのはーと,緑のはーと -💙️ あおいはーと,はーと,青いはーと -💜️ はーと,むらさきのはーと,紫のはーと -🤎️ ちゃいろいはーと,はーと,茶色いはーと -🖤️ くろいはーと,はーと,黒いはーと -🤍️ しろいはーと,はーと,白いはーと -💋️ きす,きすまーく,くちびる,ちゅっ,唇 -💯️ 100,100てん,100てんまんてん,100点,100点満点,ぜんもんせいかい,ひゃくてんまんてん,まんてん,全問正解,満点,100 -💢️ #,いかり,むかっ,怒り,# -💥️ しょうげき,しょうとつ,どんっ,衝撃,衝突 -💫️ くらくら,ほし,めがまわる,星,目が回る -💦️ あせ,あせあせ,汗 -💨️ いそぐ,いそげ,だっしゅ,はしる,急ぐ,急げ,走る -🕳️️ あな -💬️ かいわ,かいわのふきだし,せりふ,ふきだし,会話,会話の吹き出し,吹き出し -👁️‍🗨️️ ふきだし,ふきだしのめ,め,もくげき -🗨️️ かいわ,せりふ,ふきだし,ふきだしひだり -🗯️️ いかりのふきだし,ふきだし -💭️ かんがえごと,くもがたのふきだし,ふきだし,もくもく,吹き出し,考え事,雲形の吹き出し -💤️ zzz,いびき,ぐーぐー,ねる,寝る,zzz -👋️ さよなら,て,てをふる,ばいばい,手,手を振る 👋🏻,👋🏼,👋🏽,👋🏾,👋🏿 -🤚️ て,てのこう,手,手の甲 🤚🏻,🤚🏼,🤚🏽,🤚🏾,🤚🏿 -🖐️️ て,ぱー,ひらいたて -✋️ きょしゅ,て,てのひら,ぱー -🖖️ すぽっく,て,ばるかんじん,ばるかんのあいさつ,ばるかんの挨拶,ばるかん人,手 🖖🏻,🖖🏼,🖖🏽,🖖🏾,🖖🏿 -🫱️ て,ほうこう,みぎ,みぎがわ,みぎにむけたて,右に向けた手,右側,手,方向 🫱🏻,🫱🏼,🫱🏽,🫱🏾,🫱🏿 -🫲️ て,ひだり,ひだりがわ,ひだりにむけたて,ほうこう,左に向けた手,左側,手,方向 🫲🏻,🫲🏼,🫲🏽,🫲🏾,🫲🏿 -🫳️ おとす,した,したがわ,したにむけたて,て,下,下に向けた手,手,落とす 🫳🏻,🫳🏼,🫳🏽,🫳🏾,🫳🏿 -🫴️ うえ,うえがわ,うえにむけたて,うける,て,上,上に向けた手,受ける,手 🫴🏻,🫴🏼,🫴🏽,🫴🏾,🫴🏿 -👌️ ok,okの手,おっけー,おーけー,おーけーのて,て,手,ok 👌🏻,👌🏼,👌🏽,👌🏾,👌🏿 -🤌️ うわむきにすぼめたて,じぇすちゃー,すぼめる,て,ゆび,上向きにすぼめた手,手,指 🤌🏻,🤌🏼,🤌🏽,🤌🏾,🤌🏿 -🤏️ すこしだけ,ちょっと,つまんでいるゆび,つまんでいる指,て,ゆび,少しだけ,手,指 🤏🏻,🤏🏼,🤏🏽,🤏🏾,🤏🏿 -✌️️ ちょき,て,ぴーす,ぶいさいん -🤞️ て,ゆび,ゆびをくろす,手,指,指をくろす 🤞🏻,🤞🏼,🤞🏽,🤞🏾,🤞🏿 -🫰️ おやゆびとひとさしゆびをくろす,だいすき,て,はーと,ゆび,ゆびはーと,ゆびをくろす,手,指,指をくろす,親指と人差し指をくろす 🫰🏻,🫰🏼,🫰🏽,🫰🏾,🫰🏿 -🤟️ あいしてる,あいらぶゆー,て,愛してる,手 🤟🏻,🤟🏼,🤟🏽,🤟🏾,🤟🏿 -🤘️ きつね,つののゆびさいん,て,手,角の指さいん 🤘🏻,🤘🏼,🤘🏽,🤘🏾,🤘🏿 -🤙️ て,でんわ,でんわのあいず,でんわのじぇすちゃー,手,電話,電話のじぇすちゃー,電話の合図 🤙🏻,🤙🏼,🤙🏽,🤙🏾,🤙🏿 -👈️ て,ひだり,ひだりゆびさし,やじるし,ゆびさし,ゆびさす,左 -👉️ て,みぎ,みぎゆびさし,やじるし,ゆびさし,ゆびさす,右 -👆️ うえ,て,てのこううえゆびさし,てのこうじょうゆびさし,やじるし,ゆびさし,ゆびさす,上 -🖕️ うえ,たてたなかゆび,て,なかゆび,ゆびさし,上,中指,手,指差し,立てた中指 🖕🏻,🖕🏼,🖕🏽,🖕🏾,🖕🏿 -👇️ した,したゆびさし,て,やじるし,ゆびさし,ゆびさす,下 -☝️️ うえ,うえゆびさし,て,ひとさしゆび,ゆびさし -🫵️ m9,おまえだ,て,ひとをゆびさしているて,ぷぎゃー,ゆびさし,人を指差している手,手,指差し 🫵🏻,🫵🏼,🫵🏽,🫵🏾,🫵🏿 -👍️ ok,うえ,おっけー,おやゆび,おやゆびさいん,おーけー,ぐっど,さむあっぷ,さむずあっぷ,て -👎️ ng,えぬじー,さむずだうん,した,だめ,て,ぶーいんぐ,ぼつ,ng -✊️ ぐー,げんこつ,て -👊️ ぐー,げんこつ,て,ぱんち,手 👊🏻,👊🏼,👊🏽,👊🏾,👊🏿 -🤛️ こぶし,て,ぱんち,ひだり,ひだりむきのこぶし,左,左向きのこぶし,手 🤛🏻,🤛🏼,🤛🏽,🤛🏾,🤛🏿 -🤜️ こぶし,て,ぱんち,みぎ,みぎむきのこぶし,右,右向きのこぶし,手 🤜🏻,🤜🏼,🤜🏽,🤜🏾,🤜🏿 -👏️ て,はくしゅ,ぱちぱち,手,拍手 👏🏻,👏🏼,👏🏽,👏🏾,👏🏿 -🙌️ て,てをあげる,ばんざい,りょうて,両手,手,手を上げる 🙌🏻,🙌🏼,🙌🏽,🙌🏾,🙌🏿 -🫶️ あい,て,はーと,はーとがたのて,はーとぽーず,はーと形の手,らぶ,愛,手 🫶🏻,🫶🏼,🫶🏽,🫶🏾,🫶🏿 -👐️ おっはー,て,てのひら,りょうてのひら,両手のひら,手,手のひら 👐🏻,👐🏼,👐🏽,👐🏾,👐🏿 -🤲️ いのり,て,てのひらをそろえたりょうて,りょうて,両手,手,手のひらを揃えた両手,祈り 🤲🏻,🤲🏼,🤲🏽,🤲🏾,🤲🏿 -🤝️ あくしゅ,ごうい,て,よろしく,合意,手,握手 🤝🏻,🤝🏼,🤝🏽,🤝🏾,🤝🏿,🫱🏻‍🫲🏼,🫱🏻‍🫲🏽,🫱🏻‍🫲🏾,🫱🏻‍🫲🏿,🫱🏼‍🫲🏻,🫱🏼‍🫲🏽,🫱🏼‍🫲🏾,🫱🏼‍🫲🏿,🫱🏽‍🫲🏻,🫱🏽‍🫲🏼,🫱🏽‍🫲🏾,🫱🏽‍🫲🏿,🫱🏾‍🫲🏻,🫱🏾‍🫲🏼,🫱🏾‍🫲🏽,🫱🏾‍🫲🏿,🫱🏿‍🫲🏻,🫱🏿‍🫲🏼,🫱🏿‍🫲🏽,🫱🏿‍🫲🏾 -🙏️ いのり,いのる,おねがい,お願い,がっしょう,ごめんなさい,りょうて,合掌,祈り,祈る 🙏🏻,🙏🏼,🙏🏽,🙏🏾,🙏🏿 -✍️️ かいているて,て,てがき,てでかく -💅️ つめ,ねいる,まにきゅあ,まにきゅあをぬるて,まにきゅあを塗る手,爪 💅🏻,💅🏼,💅🏽,💅🏾,💅🏿 -🤳️ じどり,じぶんどり,すまほ,せるふぃー,自分撮り,自撮り 🤳🏻,🤳🏼,🤳🏽,🤳🏾,🤳🏿 -💪️ きんとれ,きんにく,ちからこぶ,むきむき,力こぶ,筋とれ,筋肉 💪🏻,💪🏼,💪🏽,💪🏾,💪🏿 -🦾️ あくせしびりてぃ,うで,ぎしゅ,じんこうそうぐ,て,人工装具,手,義手,腕 -🦿️ あくせしびりてぃ,あし,ぎそく,じんこうそうぐ,人工装具,義足,脚,足 -🦵️ あし,きっく,脚,足 🦵🏻,🦵🏼,🦵🏽,🦵🏾,🦵🏿 -🦶️ あし,きっく,だんす,ふみつける,足,踏みつける 🦶🏻,🦶🏼,🦶🏽,🦶🏾,🦶🏿 -👂️ かお,からだ,みみ,耳 -🦻️ あくせしびりてぃ,ちょうかく,ほちょうきをつけたみみ,みみ,耳,聴覚,補聴器を付けた耳 🦻🏻,🦻🏼,🦻🏽,🦻🏾,🦻🏿 -👃️ かお,からだ,はな,鼻 👃🏻,👃🏼,👃🏽,👃🏾,👃🏿 -🧠️ あたま,ちしき,のう,のうみそ,知識,脳,脳みそ,頭 -🫀️ こどう,しんぞう,しんぱく,ぞうき,みゃく,心拍,心臓,脈,臓器,鼓動 -🫁️ こきゅう,ぞうき,はい,呼吸,肺,臓器 -🦷️ は,はいしゃ,歯,歯医者 -🦴️ こっかく,ほね,骨,骨格 -👀️ かお,からだ,め,りょうめ,両目,目 -👁️️ かため,ひとつめ,め -👅️ かお,した,べろ,べー,舌 -👄️ かお,きす,くち,くちびる,口,唇 -🫦️ くち,くちびる,くちびるをかむ,くちびるをかんでいるくち,くやしい,くやしさ,ゆうわく,口,口惜しさ,唇を咬んでいる口,誘惑 -👶️ あかちゃん,あかんぼう,かお,べびー,赤ちゃん,赤ん坊,顔 👶🏻,👶🏼,👶🏽,👶🏾,👶🏿 -🧒️ かお,こども,子供,顔 🧒🏻,🧒🏼,🧒🏽,🧒🏾,🧒🏿 -👦️ おとこのこ,かお,こども,しょうねん,子供,少年,男の子,顔 👦🏻,👦🏼,👦🏽,👦🏾,👦🏿 -👧️ おんな,おんなのこ,かお,こども,しょうじょ,女,女の子,子供,少女,顔 👧🏻,👧🏼,👧🏽,👧🏾,👧🏿 -🧑️ おとな,かお,せいじん,大人,成人,顔 🧑🏻,🧑🏼,🧑🏽,🧑🏾,🧑🏿 -👱️ かお,きんぱつ,きんぱつのひと,ひと,ぶろんど,人,金髪,金髪の人,顔 👱🏻,👱🏼,👱🏽,👱🏾,👱🏿 -👨️ おとこ,おとな,かお,だんせい,大人,男,男性,顔 👨🏻,👨🏼,👨🏽,👨🏾,👨🏿 -🧔️ あごひげ,あごひげのだんせい,あごひげのひと,あごひげの人,かお,ひげ,ひげのはえたひと,ひと,人,顔 🧔🏻,🧔🏼,🧔🏽,🧔🏾,🧔🏿 -🧔‍♂️️ あごひげ,あごひげのだんせい,おとこ,かお,だんせい,ひげ,ひげのはえただんせい -🧔‍♀️️ あごひげ,あごひげのじょせい,おんな,かお,じょせい,ひげ,ひげのはえたじょせい -👨‍🦰️ あかげ,おとこ,おとな,かお,だんせい,大人,男,男性,男性: 赤毛,赤毛,顔 👨🏻‍🦰,👨🏼‍🦰,👨🏽‍🦰,👨🏾‍🦰,👨🏿‍🦰 -👨‍🦰️ おとこ,かお,大人,男,男性,男性: 赤毛,赤い髪,赤毛,赤髪,顔,髪 -👨‍🦱️ おとこ,おとな,かお,だんせい,まきげ,大人,巻き毛,男,男性,男性: 巻き毛,顔 👨🏻‍🦱,👨🏼‍🦱,👨🏽‍🦱,👨🏾‍🦱,👨🏿‍🦱 -👨‍🦱️ おとこ,かお,かーる,大人,巻き毛,男,男性,男性: 巻き毛,顔,髪 -👨‍🦳️ おとこ,おとな,かお,しらが,だんせい,大人,男,男性,男性: 白髪,白髪,顔 👨🏻‍🦳,👨🏼‍🦳,👨🏽‍🦳,👨🏾‍🦳,👨🏿‍🦳 -👨‍🦳️ おとこ,かお,大人,男,男性,男性: 白髪,白い髪,白髪,顔,髪 -👨‍🦲️ おとこ,おとな,かお,だんせい,はげあたま,はげ頭,大人,男,男性,男性: はげ頭,顔 👨🏻‍🦲,👨🏼‍🦲,👨🏽‍🦲,👨🏾‍🦲,👨🏿‍🦲 -👨‍🦲️ おとこ,かお,はげ,はげ頭,大人,男,男性,男性: はげ頭,脱毛,顔 -👩️ おとな,おんな,かお,じょせい,大人,女,女性,顔 👩🏻,👩🏼,👩🏽,👩🏾,👩🏿 -👩‍🦰️ あかげ,おとな,おんな,かお,じょせい,大人,女,女性,女性: 赤毛,赤毛,顔 👩🏻‍🦰,👩🏼‍🦰,👩🏽‍🦰,👩🏾‍🦰,👩🏿‍🦰 -👩‍🦰️ おんな,かお,大人,女,女性,女性: 赤毛,赤い髪,赤毛,赤髪,顔,髪 -🧑‍🦰️ あかげ,おとな,かお,せいじん,大人,大人: 赤毛,成人,赤毛,顔 🧑🏻‍🦰,🧑🏼‍🦰,🧑🏽‍🦰,🧑🏾‍🦰,🧑🏿‍🦰 -🧑‍🦰️ かお,大人,大人: 赤毛,成人,赤い髪,赤毛,赤髪,顔,髪 -👩‍🦱️ おとな,おんな,かお,じょせい,まきげ,大人,女,女性,女性: 巻き毛,巻き毛,顔 👩🏻‍🦱,👩🏼‍🦱,👩🏽‍🦱,👩🏾‍🦱,👩🏿‍🦱 -👩‍🦱️ おんな,かお,かーる,大人,女,女性,女性: 巻き毛,巻き毛,顔,髪 -🧑‍🦱️ おとな,かお,せいじん,まきげ,大人,大人: 巻き毛,巻き毛,成人,顔 🧑🏻‍🦱,🧑🏼‍🦱,🧑🏽‍🦱,🧑🏾‍🦱,🧑🏿‍🦱 -🧑‍🦱️ かお,かーる,大人,大人: 巻き毛,巻き毛,成人,顔,髪 -👩‍🦳️ おとな,おんな,かお,しらが,じょせい,大人,女,女性,女性: 白髪,白髪,顔 👩🏻‍🦳,👩🏼‍🦳,👩🏽‍🦳,👩🏾‍🦳,👩🏿‍🦳 -👩‍🦳️ おんな,かお,大人,女,女性,女性: 白髪,白い髪,白髪,顔,髪 -🧑‍🦳️ おとな,かお,しらが,せいじん,大人,大人: 白髪,成人,白髪,顔 🧑🏻‍🦳,🧑🏼‍🦳,🧑🏽‍🦳,🧑🏾‍🦳,🧑🏿‍🦳 -🧑‍🦳️ かお,大人,大人: 白髪,成人,白い髪,白髪,顔,髪 -👩‍🦲️ おとな,おんな,かお,じょせい,はげあたま,はげ頭,大人,女,女性,女性: はげ頭,顔 👩🏻‍🦲,👩🏼‍🦲,👩🏽‍🦲,👩🏾‍🦲,👩🏿‍🦲 -👩‍🦲️ おんな,かお,はげ,はげ頭,大人,女,女性,女性: はげ頭,脱毛,顔 -🧑‍🦲️ おとな,かお,せいじん,はげあたま,はげ頭,大人,大人: はげ頭,成人,顔 🧑🏻‍🦲,🧑🏼‍🦲,🧑🏽‍🦲,🧑🏾‍🦲,🧑🏿‍🦲 -🧑‍🦲️ かお,はげ,はげ頭,大人,大人: はげ頭,成人,脱毛,顔 -👱‍♀️️ おんな,きんぱつ,きんぱつのじょせい,じょせい,ぶろんど -👱‍♂️️ おとこ,きんぱつ,きんぱつのだんせい,だんせい,ぶろんど -🧓️ おとしより,お年寄り,かお,こうれいしゃ,ろうじん,老人,顔,高齢者 🧓🏻,🧓🏼,🧓🏽,🧓🏾,🧓🏿 -👴️ おじいさん,おとしより,お年寄り,かお,こうれいしゃ,だんせい,ろうじん,男性,老人,顔,高齢者 👴🏻,👴🏼,👴🏽,👴🏾,👴🏿 -👵️ おとしより,おばあさん,お年寄り,かお,こうれいしゃ,じょせい,ろうじん,女性,老人,顔,高齢者 👵🏻,👵🏼,👵🏽,👵🏾,👵🏿 -🙍️ きゃらくたー,しかめがお,しかめっつら,しかめっつらのひと,しかめっ面,しかめつら,しかめつらのひと,しかめ面,しかめ面の人,しかめ顔 🙍🏻,🙍🏼,🙍🏽,🙍🏾,🙍🏿 -🙍‍♂️️ おとこ,しかめがお,しかめっつら,しかめっつらのおとこ,しかめつらのおとこ,だんせい -🙍‍♀️️ おんな,しかめがお,しかめっつら,しかめっつらのおんな,しかめつらのおんな,じょせい -🙎️ きゃらくたー,ひと,ふきげん,ふきげんなひと,ぷんぷん,不機嫌,不機嫌な人,人 🙎🏻,🙎🏼,🙎🏽,🙎🏾,🙎🏿 -🙎‍♂️️ おとこ,だんせい,ふきげん,ふきげんなおとこ,ぷんぷん -🙎‍♀️️ おんな,じょせい,ふきげん,ふきげんなおんな,ぷんぷん -🙅️ ng,えぬじー,じぇすちゃー,だめ,だめのぽーずをするひと,だめのぽーずをする人,ばつ,ひと,人 🙅🏻,🙅🏼,🙅🏽,🙅🏾,🙅🏿 -🙅‍♂️️ ng,えぬじー,おとこ,じぇすちゃー,だめのぽーずをするおとこ,だんせい,ばつ -🙅‍♀️️ ng,えぬじー,おんな,じぇすちゃー,じょせい,だめのぽーずをするおんな,ばつ -🙆️ ok,okのぽーずをする人,おーけー,おーけーのぽーずをするひと,じぇすちゃー,ひと,まる,丸,人,ok 🙆🏻,🙆🏼,🙆🏽,🙆🏾,🙆🏿 -🙆‍♂️️ ok,おっけー,おーけー,おーけーのぽーずをするおとこ,じぇすちゃー,だんせい,まる -🙆‍♀️️ ok,おっけー,おーけー,おーけーのぽーずをするおんな,じぇすちゃー,じょせい,まる -💁️ あんない,あんないするひと,うけつけ,うけつけじょう,かお,受付,受付嬢,案内,案内する人,顔 💁🏻,💁🏼,💁🏽,💁🏾,💁🏿 -💁‍♂️️ あんない,あんないするおとこ,おとこ,じぇすちゃー,だんせい -💁‍♀️️ あんない,あんないするおんな,おんな,じぇすちゃー,じょせい -🙋️ きょしゅ,てをあげる,てをあげるじん,てをあげるひと,ひと,人,手を挙げる,手を挙げる人,挙手 🙋🏻,🙋🏼,🙋🏽,🙋🏾,🙋🏿 -🙋‍♂️️ おとこ,きょしゅ,だんせい,てをあげる,てをあげるおとこ -🙋‍♀️️ おんな,きょしゅ,じょせい,てをあげる,てをあげるおんな -🧏️ あくせしびりてぃ,きこえない,しょうがい,ちょうかく,ひと,みみのふじゆうなひと,人,耳の不自由な人,聞こえない,聴覚,障がい 🧏🏻,🧏🏼,🧏🏽,🧏🏾,🧏🏿 -🧏‍♂️️ あくせしびりてぃ,しょうがい,だんせい,ちょうかく,みみのふじゆうなだんせい -🧏‍♀️️ あくせしびりてぃ,しょうがい,じょせい,ちょうかく,みみのふじゆうなじょせい -🙇️ おじぎ,おじぎするひと,おじぎする人,ごめんなさい,どげざ,土下座 🙇🏻,🙇🏼,🙇🏽,🙇🏾,🙇🏿 -🙇‍♂️️ おじぎ,おじぎするおとこ,おとこ,ごめんなさい,だんせい,どげざ -🙇‍♀️️ おじぎ,おじぎするおんな,おんな,ごめんなさい,じょせい,どげざ -🤦️ あちゃー,じぇすちゃー,ひたいにて,ひたいにてをあてるひと,ひたいに手,ひたいに手をあてる人 🤦🏻,🤦🏼,🤦🏽,🤦🏾,🤦🏿 -🤦‍♂️️ あちゃー,おとこ,じぇすちゃー,だんせい,ひたいにて,ひたいにてをあてるおとこ -🤦‍♀️️ あちゃー,おんな,じぇすちゃー,じょせい,ひたいにて,ひたいにてをあてるおんな -🤷️ おてあげ,おてあげするひと,お手上げ,お手上げする人,じぇすちゃー 🤷🏻,🤷🏼,🤷🏽,🤷🏾,🤷🏿 -🤷‍♂️️ おてあげ,おてあげするおとこ,おとこ,じぇすちゃー,だんせい -🤷‍♀️️ おてあげ,おてあげするおんな,おんな,じぇすちゃー,じょせい -🧑‍⚕️️ いし,いしゃ,せらぴすと -👨‍⚕️️ いし,いしゃ,おとこ,だんせい,だんせいのいしゃ -👩‍⚕️️ いし,いしゃ,おんな,じょせい,じょせいのいしゃ -🧑‍🎓️ かくぼう,がくせい,そつぎょう,卒業,学生,角帽 🧑🏻‍🎓,🧑🏼‍🎓,🧑🏽‍🎓,🧑🏾‍🎓,🧑🏿‍🎓 -👨‍🎓️ おとこ,かくぼう,がくせい,そつぎょう,だんしがくせい,だんせい,卒業,学生,男,男子学生,男性,角帽 👨🏻‍🎓,👨🏼‍🎓,👨🏽‍🎓,👨🏾‍🎓,👨🏿‍🎓 -👩‍🎓️ おんな,かくぼう,がくせい,じょしがくせい,じょせい,そつぎょう,卒業,女,女子学生,女性,学生,角帽 👩🏻‍🎓,👩🏼‍🎓,👩🏽‍🎓,👩🏾‍🎓,👩🏿‍🎓 -🧑‍🏫️ きょうし,きょうじゅ,こうし,せんせい,たんにん,先生,担任,教師,教授,講師 🧑🏻‍🏫,🧑🏼‍🏫,🧑🏽‍🏫,🧑🏾‍🏫,🧑🏿‍🏫 -👨‍🏫️ おとこ,きょうし,きょうじゅ,せんせい,だんせい,だんせいのきょうし,先生,教師,教授,男,男性,男性の教師 👨🏻‍🏫,👨🏼‍🏫,👨🏽‍🏫,👨🏾‍🏫,👨🏿‍🏫 -👩‍🏫️ おんな,きょうし,きょうじゅ,じょせい,じょせいのきょうし,せんせい,先生,女,女性,女性の教師,教師,教授 👩🏻‍🏫,👩🏼‍🏫,👩🏽‍🏫,👩🏾‍🏫,👩🏿‍🏫 -🧑‍⚖️️ さいばん,さいばんかん -👨‍⚖️️ おとこ,さいばん,さいばんかん,だんせい,だんせいのさいばんかん -👩‍⚖️️ おんな,さいばん,さいばんかん,じょせい,じょせいのさいばんかん -🧑‍🌾️ がーでなー,のうか,のうぎょう,のうじょうぬし,農場主,農家,農業 🧑🏻‍🌾,🧑🏼‍🌾,🧑🏽‍🌾,🧑🏾‍🌾,🧑🏿‍🌾 -👨‍🌾️ おとこ,だんせい,のうか,のうかのだんせい,のうふ,男,男性,農夫,農家,農家の男性 👨🏻‍🌾,👨🏼‍🌾,👨🏽‍🌾,👨🏾‍🌾,👨🏿‍🌾 -👩‍🌾️ おんな,じょせい,のうか,のうかのじょせい,女,女性,農家,農家の女性 👩🏻‍🌾,👩🏼‍🌾,👩🏽‍🌾,👩🏾‍🌾,👩🏿‍🌾 -🧑‍🍳️ こっく,しぇふ,りょうり,料理 🧑🏻‍🍳,🧑🏼‍🍳,🧑🏽‍🍳,🧑🏾‍🍳,🧑🏿‍🍳 -👨‍🍳️ おとこ,こっく,しぇふ,だんせい,だんせいのこっく,りょうり,料理,男,男性,男性のこっく 👨🏻‍🍳,👨🏼‍🍳,👨🏽‍🍳,👨🏾‍🍳,👨🏿‍🍳 -👩‍🍳️ おんな,こっく,しぇふ,じょせい,じょせいのこっく,りょうり,女,女性,女性のこっく,料理 👩🏻‍🍳,👩🏼‍🍳,👩🏽‍🍳,👩🏾‍🍳,👩🏿‍🍳 -🧑‍🔧️ こうさく,さぎょういん,すぱな,せいびし,めかにっく,作業員,工作,整備士 🧑🏻‍🔧,🧑🏼‍🔧,🧑🏽‍🔧,🧑🏾‍🔧,🧑🏿‍🔧 -👨‍🔧️ おとこ,こうさく,すぱな,だんせい,だんせいのせいびし,めかにっく,工作,男,男性,男性の整備士 👨🏻‍🔧,👨🏼‍🔧,👨🏽‍🔧,👨🏾‍🔧,👨🏿‍🔧 -👩‍🔧️ おんな,こうさく,じょせい,じょせいのせいびし,すぱな,めかにっく,女,女性,女性の整備士,工作 👩🏻‍🔧,👩🏼‍🔧,👩🏽‍🔧,👩🏾‍🔧,👩🏿‍🔧 -🧑‍🏭️ こういん,こうじょう,ものづくり,ようせつこう,工員,工場,溶接工 🧑🏻‍🏭,🧑🏼‍🏭,🧑🏽‍🏭,🧑🏾‍🏭,🧑🏿‍🏭 -👨‍🏭️ おとこ,だんせい,だんせいのようせつこう,ようせつ,溶接,男,男性,男性の溶接工 👨🏻‍🏭,👨🏼‍🏭,👨🏽‍🏭,👨🏾‍🏭,👨🏿‍🏭 -👩‍🏭️ おんな,じょせい,じょせいのようせつこう,ようせつ,女,女性,女性の溶接工,溶接 👩🏻‍🏭,👩🏼‍🏭,👩🏽‍🏭,👩🏾‍🏭,👩🏿‍🏭 -🧑‍💼️ かいしゃいん,さらりーまん,びじねすぱーそん,会社員 🧑🏻‍💼,🧑🏼‍💼,🧑🏽‍💼,🧑🏾‍💼,🧑🏿‍💼 -👨‍💼️ かいしゃいん,さらりーまん,だんせい,だんせいかいしゃいん,びじねすぱーそん,びじねすまん,会社員,男性,男性会社員 👨🏻‍💼,👨🏼‍💼,👨🏽‍💼,👨🏾‍💼,👨🏿‍💼 -👩‍💼️ ol,おーえる,おーる,かいしゃいん,さらりーまん,じょせい,じょせいかいしゃいん,びじねすぱーそん,会社員,女性,女性会社員 👩🏻‍💼,👩🏼‍💼,👩🏽‍💼,👩🏾‍💼,👩🏿‍💼 -🧑‍🔬️ かがくしゃ,せいぶつがくしゃ,ぶつりがくしゃ,化学者,物理学者,生物学者,科学者 🧑🏻‍🔬,🧑🏼‍🔬,🧑🏽‍🔬,🧑🏾‍🔬,🧑🏿‍🔬 -👨‍🔬️ おとこ,かがくしゃ,だんせい,だんせいかがくしゃ,男,男性,男性科学者,科学者 👨🏻‍🔬,👨🏼‍🔬,👨🏽‍🔬,👨🏾‍🔬,👨🏿‍🔬 -👩‍🔬️ おんな,かがくしゃ,じょせい,じょせいかがくしゃ,女,女性,女性科学者,科学者 👩🏻‍🔬,👩🏼‍🔬,👩🏽‍🔬,👩🏾‍🔬,👩🏿‍🔬 -🧑‍💻️ かいはつしゃ,ぎじゅつしゃ,こんぴゅーた,ぱそこん,ぷろぐらま,技術者,開発者 🧑🏻‍💻,🧑🏼‍💻,🧑🏽‍💻,🧑🏾‍💻,🧑🏿‍💻 -👨‍💻️ かいはつしゃ,こんぴゅーた,だんせい,だんせいぎじゅつしゃ,でべろっぱ,ぱそこん,ぷろぐらま,男性,男性技術者,開発者 👨🏻‍💻,👨🏼‍💻,👨🏽‍💻,👨🏾‍💻,👨🏿‍💻 -👩‍💻️ かいはつしゃ,こんぴゅーた,じょせい,じょせいぎじゅつしゃ,でべろっぱ,ぱそこん,ぷろぐらま,女性,女性技術者,開発者 👩🏻‍💻,👩🏼‍💻,👩🏽‍💻,👩🏾‍💻,👩🏿‍💻 -🧑‍🎤️ あーてぃすと,かしゅ,しんがー,すたー,ろっかー,歌手 🧑🏻‍🎤,🧑🏼‍🎤,🧑🏽‍🎤,🧑🏾‍🎤,🧑🏿‍🎤 -👨‍🎤️ あーてぃすと,おとこ,かしゅ,しんがー,だんせい,だんせいかしゅ,歌手,男,男性,男性歌手 👨🏻‍🎤,👨🏼‍🎤,👨🏽‍🎤,👨🏾‍🎤,👨🏿‍🎤 -👩‍🎤️ あーてぃすと,おんな,かしゅ,しんがー,じょせい,じょせいかしゅ,女,女性,女性歌手,歌手 👩🏻‍🎤,👩🏼‍🎤,👩🏽‍🎤,👩🏾‍🎤,👩🏿‍🎤 -🧑‍🎨️ あーてぃすと,えかき,がか,げいじゅつか,画家,絵描き,芸術家 🧑🏻‍🎨,🧑🏼‍🎨,🧑🏽‍🎨,🧑🏾‍🎨,🧑🏿‍🎨 -👨‍🎨️ あーてぃすと,おとこ,がか,げいじゅつか,だんせい,だんせいのげいじゅつか,男,男性,男性の芸術家,画家,芸術家 👨🏻‍🎨,👨🏼‍🎨,👨🏽‍🎨,👨🏾‍🎨,👨🏿‍🎨 -👩‍🎨️ あーてぃすと,おんな,がか,げいじゅつか,じょせい,じょせいのげいじゅつか,女,女性,女性の芸術家,画家,芸術家 👩🏻‍🎨,👩🏼‍🎨,👩🏽‍🎨,👩🏾‍🎨,👩🏿‍🎨 -🧑‍✈️️ きちょう,そうじゅうし,ぱいろっと -👨‍✈️️ おとこ,そうじゅうし,だんせい,だんせいぱいろっと -👩‍✈️️ おんな,じょせい,じょせいぱいろっと,そうじゅうし -🧑‍🚀️ うちゅうひこうし,ろけっと,宇宙飛行士 🧑🏻‍🚀,🧑🏼‍🚀,🧑🏽‍🚀,🧑🏾‍🚀,🧑🏿‍🚀 -👨‍🚀️ うちゅうひこうし,おとこ,だんせい,だんせいうちゅうひこうし,宇宙飛行士,男,男性,男性宇宙飛行士 👨🏻‍🚀,👨🏼‍🚀,👨🏽‍🚀,👨🏾‍🚀,👨🏿‍🚀 -👩‍🚀️ うちゅうひこうし,おんな,じょせい,じょせいうちゅうひこうし,女,女性,女性宇宙飛行士,宇宙飛行士 👩🏻‍🚀,👩🏼‍🚀,👩🏽‍🚀,👩🏾‍🚀,👩🏿‍🚀 -🧑‍🚒️ きゅうじょたい,しょうぼうし,れすきゅー,救助隊,消防士 🧑🏻‍🚒,🧑🏼‍🚒,🧑🏽‍🚒,🧑🏾‍🚒,🧑🏿‍🚒 -👨‍🚒️ おとこ,しょうぼうし,だんせい,だんせいしょうぼうし,消防士,男,男性,男性消防士 👨🏻‍🚒,👨🏼‍🚒,👨🏽‍🚒,👨🏾‍🚒,👨🏿‍🚒 -👩‍🚒️ おんな,しょうぼうし,じょせい,じょせいしょうぼうし,女,女性,女性消防士,消防士 👩🏻‍🚒,👩🏼‍🚒,👩🏽‍🚒,👩🏾‍🚒,👩🏿‍🚒 -👮️ おまわりさん,お巡りさん,かお,けいかん,けいさつ,けいさつかん,ぽりす,警官,警察,警察官,顔 👮🏻,👮🏼,👮🏽,👮🏾,👮🏿 -👮‍♂️️ おまわりさん,けいかん,けいさつ,けいさつかん,だんせい,だんせいけいさつかん -👮‍♀️️ おまわりさん,けいかん,けいさつ,けいさつかん,じょせい,じょせいけいさつかん -🕵️️ すぱい,たんてい,むしめがね -🕵️‍♂️️ おとこ,たんてい,だんせい,だんせいのたんてい,むしめがね -🕵️‍♀️️ おんな,じょせい,じょせいのたんてい,たんてい,むしめがね -💂️ えいへい,かお,けいび,しゅえい,もんばん,守衛,衛兵,警備,門番 💂🏻,💂🏼,💂🏽,💂🏾,💂🏿 -💂‍♂️️ えいへい,けいび,しゅえい,だんせい,だんせいのえいへい,もんばん -💂‍♀️️ えいへい,けいび,しゅえい,じょせい,じょせいのえいへい,もんばん -🥷️ おんみつ,くさのもの,しのび,すぱい,にんじゃ,にんじゅつ,忍び,忍者,忍術,草の者,隠密 🥷🏻,🥷🏼,🥷🏽,🥷🏾,🥷🏿 -👷️ かお,かなづち,けんせつさぎょういん,こうじ,はんまー,へるめっと,工事,工事現場の人,建設作業員 👷🏻,👷🏼,👷🏽,👷🏾,👷🏿 -👷‍♂️️ けんせつさぎょういん,こうじ,だんせい,だんせいのけんせつさぎょういん,はんまー,へるめっと -👷‍♀️️ けんせつさぎょういん,こうじ,じょせい,じょせいのけんせつさぎょういん,はんまー,へるめっと -🫅️ おうかんをかぶったひと,おうけ,おうさま,おうぞく,くんしゅ,ひと,君主,王冠をかぶった人,王家,王族,王様 🫅🏻,🫅🏼,🫅🏽,🫅🏾,🫅🏿 -🤴️ おうじ,おとこ,だんせい,ぷりんす,王子,男,男性 🤴🏻,🤴🏼,🤴🏽,🤴🏾,🤴🏿 -👸️ おうじょ,おひめさま,おんな,お姫さま,お姫様,かお,くいーん,じょせい,ぷりんせす,女,女性,王女 👸🏻,👸🏼,👸🏽,👸🏾,👸🏿 -👳️ かお,たーばん,たーばんのひと,たーばんの人 👳🏻,👳🏼,👳🏽,👳🏾,👳🏿 -👳‍♂️️ おとこ,たーばん,たーばんのだんせい,だんせい -👳‍♀️️ おんな,じょせい,たーばん,たーばんのじょせい -👲️ おとこ,おわんぼう,おわん帽,おわん帽の人,かお,だんせい,ちゅうかぼうのだんせい,中華帽の男性,男,男性 👲🏻,👲🏼,👲🏽,👲🏾,👲🏿 -🧕️ おんな,じょせい,すかーふ,すかーふのじょせい,すかーふの女性,ひじゃぶ,べーる,女,女性 🧕🏻,🧕🏼,🧕🏽,🧕🏾,🧕🏿 -🤵️ おとこ,けっこん,たきしーど,たきしーどのひと,たきしーどの人,だんせい,はなむこ,結婚,花婿 🤵🏻,🤵🏼,🤵🏽,🤵🏾,🤵🏿 -🤵‍♂️️ おとこ,たきしーど,たきしーどのおとこ,たきしーどのだんせい,だんせい -🤵‍♀️️ おんな,じょせい,たきしーど,たきしーどのおんな,たきしーどのじょせい -👰️ おんな,かお,けっこん,じょせい,はなよめ,べーるのひと,べーるの人,結婚,花嫁,顔 👰🏻,👰🏼,👰🏽,👰🏾,👰🏿 -👰‍♂️️ おとこ,だんせい,べーる,べーるのだんせい -👰‍♀️️ おんな,じょせい,べーる,べーるのじょせい -🤰️ おんな,じょせい,にんしん,にんぷ,女,女性,妊娠,妊婦 🤰🏻,🤰🏼,🤰🏽,🤰🏾,🤰🏿 -🫃️ おとこ,だんせい,にんしん,にんしんしただんせい,にんしんしたひと,にんぷ,ひと,妊夫,妊娠,男,男性 🫃🏻,🫃🏼,🫃🏽,🫃🏾,🫃🏿 -🫄️ おなか,お腹,にんしん,にんしんしたひと,にんぷ,ひと,妊夫,妊娠,妊娠した人,妊婦 🫄🏻,🫄🏼,🫄🏽,🫄🏾,🫄🏿 -🤱️ あかちゃん,おんな,じゅにゅう,じょせい,みるく,女,女性,授乳,赤ちゃん 🤱🏻,🤱🏼,🤱🏽,🤱🏾,🤱🏿 -👩‍🍼️ あかちゃん,おんな,じゅにゅう,じゅにゅうするじょせい,じょせい,女,女性,授乳,授乳する女性,赤ちゃん 👩🏻‍🍼,👩🏼‍🍼,👩🏽‍🍼,👩🏾‍🍼,👩🏿‍🍼 -👨‍🍼️ あかちゃん,おとこ,じゅにゅう,じゅにゅうするだんせい,だんせい,授乳,授乳する男性,男,男性,赤ちゃん 👨🏻‍🍼,👨🏼‍🍼,👨🏽‍🍼,👨🏾‍🍼,👨🏿‍🍼 -🧑‍🍼️ あかちゃん,じゅにゅう,じゅにゅうするひと,ひと,人,授乳,授乳する人,赤ちゃん 🧑🏻‍🍼,🧑🏼‍🍼,🧑🏽‍🍼,🧑🏾‍🍼,🧑🏿‍🍼 -👼️ えんじぇる,かお,てんし,天使,顔 👼🏻,👼🏼,👼🏽,👼🏾,👼🏿 -🎅️ かお,くりすます,さんた,さんたくろーす,顔 🎅🏻,🎅🏼,🎅🏽,🎅🏾,🎅🏿 -🤶️ おんな,くりすます,さんたくろーす,じょせい,じょせいのさんた,女,女性,女性のさんた 🤶🏻,🤶🏼,🤶🏽,🤶🏾,🤶🏿 -🧑‍🎄️ くりすます,さんたくろーす,さんたさん 🧑🏻‍🎄,🧑🏼‍🎄,🧑🏽‍🎄,🧑🏾‍🎄,🧑🏿‍🎄 -🦸️ すーぱーひーろー,ぜん,ちょうじん,ひろいん,ひーろー,善,超人 🦸🏻,🦸🏼,🦸🏽,🦸🏾,🦸🏿 -🦸‍♂️️ ぜん,だんせい,だんせいのすーぱーひーろー,ちょうじん,ひーろー -🦸‍♀️️ じょせい,じょせいのすーぱーひーろー,ぜん,ちょうじん,ひろいん,ひーろー -🦹️ あく,あくやく,ちょうじん,はんにん,わる,ゔぃらん,悪,悪役,犯人,超人 🦹🏻,🦹🏼,🦹🏽,🦹🏾,🦹🏿 -🦹‍♂️️ あく,だんせい,だんせいのあくやく,ちょうじん,はんにん,わる,ゔぃらん -🦹‍♀️️ あく,じょせい,じょせいのあくやく,ちょうじん,はんにん,わる,ゔぃらん -🧙️ まじょ,まほう,まほうつかい,魔女,魔法,魔法使い 🧙🏻,🧙🏼,🧙🏽,🧙🏾,🧙🏿 -🧙‍♂️️ おとこ,おとこのまほうつかい,だんせい,まほうつかい -🧙‍♀️️ おんな,おんなのまほうつかい,じょせい,まじょ,まほうつかい -🧚️ おべろん,でんせつ,ぱっく,まほう,ようせい,伝説,妖精,魔法 🧚🏻,🧚🏼,🧚🏽,🧚🏾,🧚🏿 -🧚‍♂️️ おとこ,おとこのようせい,だんせい,ようせい -🧚‍♀️️ おんな,おんなのようせい,じょせい,ようせい -🧛️ きゅうけつき,どらきゅら,ばんぱいあ,吸血鬼 🧛🏻,🧛🏼,🧛🏽,🧛🏾,🧛🏿 -🧛‍♂️️ おとこ,おとこのきゅうけつき,きゅうけつき,だんせい,どらきゅら,ばんぱいあ -🧛‍♀️️ おんな,おんなのきゅうけつき,きゅうけつき,じょせい,どらきゅら,ばんぱいあ -🧜️ にんぎょ,まーまん,まーめいど,人魚 🧜🏻,🧜🏼,🧜🏽,🧜🏾,🧜🏿 -🧜‍♂️️ おとこ,だんせい,にんぎょ,まーまん -🧜‍♀️️ おんな,じょせい,にんぎょ,まーめいど -🧝️ えるふ,こようせい,ようせい,妖精,小妖精 🧝🏻,🧝🏼,🧝🏽,🧝🏾,🧝🏿 -🧝‍♂️️ えるふ,おとこ,おとこのえるふ,だんせい -🧝‍♀️️ えるふ,おんな,おんなのえるふ,じょせい -🧞️ せいれい,まじん,精霊,魔神 -🧞‍♂️️ おとこ,おとこのせいれい,せいれい,だんせい,まじん -🧞‍♀️️ おんな,おんなのせいれい,じょせい,せいれい,まじん -🧟️ ぞんび,ほらー -🧟‍♂️️ おとこ,おとこのぞんび,ぞんび,だんせい,ほらー -🧟‍♀️️ おんな,おんなのぞんび,じょせい,ぞんび,ほらー -🧌️ おとぎばなし,おとぎ話,とろーる,ふぁんたじー,もんすたー -💆️ えすて,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのひと,ふぇいすまっさーじ中の人,まっさーじ 💆🏻,💆🏼,💆🏽,💆🏾,💆🏿 -💆‍♂️️ えすて,おとこ,だんせい,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのおとこ,まっさーじ -💆‍♀️️ えすて,おんな,じょせい,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのおんな,まっさーじ -💇️ さんぱつ,さんぱつされるひと,とこや,びよういん,びようしつ,へあかっと,床屋,散髪される人,美容室,美容院 💇🏻,💇🏼,💇🏽,💇🏾,💇🏿 -💇‍♂️️ さんぱつされるおとこ,だんせい,とこや,びよういん,びようしつ,へあかっと -💇‍♀️️ さんぱつされるおんな,じょせい,とこや,びよういん,びようしつ,へあかっと -🚶️ あるくひと,うぉーきんぐ,ほこう,ほこうしゃ,歩く人,歩行,歩行者 🚶🏻,🚶🏼,🚶🏽,🚶🏾,🚶🏿 -🚶‍♂️️ あるくおとこ,うぉーきんぐ,だんせい,ほこう,ほこうしゃ -🚶‍♀️️ あるくおんな,うぉーきんぐ,じょせい,ほこう,ほこうしゃ -🧍️ きりつ,たっている,たつひと,ひと,人,立っている,立つ人,起立 🧍🏻,🧍🏼,🧍🏽,🧍🏾,🧍🏿 -🧍‍♂️️ きりつ,たつおとこ,だんせい -🧍‍♀️️ きりつ,じょせい,たつおんな -🧎️ すわる,せいざするひと,ひざまずく,ひと,人,座る,正座する人 🧎🏻,🧎🏼,🧎🏽,🧎🏾,🧎🏿 -🧎‍♂️️ すわる,せいざするだんせい,だんせい,ひざまずく -🧎‍♀️️ じょせい,すわる,せいざするじょせい,ひざまずく -🧑‍🦯️ あくせしびりてぃ,しかく,しょうがい,つえをついたひと,め,杖をついた人,目,視覚,障がい 🧑🏻‍🦯,🧑🏼‍🦯,🧑🏽‍🦯,🧑🏾‍🦯,🧑🏿‍🦯 -👨‍🦯️ あくせしびりてぃ,しかく,しょうがい,だんせい,つえをついただんせい,め,杖をついた男性,男性,目,視覚,障がい 👨🏻‍🦯,👨🏼‍🦯,👨🏽‍🦯,👨🏾‍🦯,👨🏿‍🦯 -👩‍🦯️ あくせしびりてぃ,しかく,しょうがい,じょせい,つえをついたじょせい,め,女性,杖をついた女性,目,視覚,障がい 👩🏻‍🦯,👩🏼‍🦯,👩🏽‍🦯,👩🏾‍🦯,👩🏿‍🦯 -🧑‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,でんどうくるまいすのひと,車いす,障がい,電動車椅子の人 🧑🏻‍🦼,🧑🏼‍🦼,🧑🏽‍🦼,🧑🏾‍🦼,🧑🏿‍🦼 -👨‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,だんせい,でんどうくるまいすのだんせい,男性,車いす,障がい,電動車椅子の男性 👨🏻‍🦼,👨🏼‍🦼,👨🏽‍🦼,👨🏾‍🦼,👨🏿‍🦼 -👩‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,じょせい,でんどうくるまいすのじょせい,女性,車いす,障がい,電動車椅子の女性 👩🏻‍🦼,👩🏼‍🦼,👩🏽‍🦼,👩🏾‍🦼,👩🏿‍🦼 -🧑‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのひと,しょうがい,手動式車椅子の人,車いす,障がい 🧑🏻‍🦽,🧑🏼‍🦽,🧑🏽‍🦽,🧑🏾‍🦽,🧑🏿‍🦽 -👨‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのだんせい,しょうがい,だんせい,手動式車椅子の男性,男性,車いす,障がい 👨🏻‍🦽,👨🏼‍🦽,👨🏽‍🦽,👨🏾‍🦽,👨🏿‍🦽 -👩‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのじょせい,しょうがい,じょせい,女性,手動式車椅子の女性,車いす,障がい 👩🏻‍🦽,👩🏼‍🦽,👩🏽‍🦽,👩🏾‍🦽,👩🏿‍🦽 -🏃️ じょぎんぐ,すぽーつ,はしるひと,まらそん,らんなー,らんにんぐ,走る人 🏃🏻,🏃🏼,🏃🏽,🏃🏾,🏃🏿 -🏃‍♂️️ じょぎんぐ,だんせい,はしるおとこ,まらそん,らんなー,らんにんぐ -🏃‍♀️️ じょぎんぐ,じょせい,はしるおんな,まらそん,らんなー,らんにんぐ -💃️ おどりこ,おどるおんな,じょせい,だんさー,だんす,ふらめんこ,女性,踊り子,踊る女 💃🏻,💃🏼,💃🏽,💃🏾,💃🏿 -🕺️ おとこ,おどるおとこ,だんさー,だんす,だんせい,男,男性,踊る男 🕺🏻,🕺🏼,🕺🏽,🕺🏾,🕺🏿 -🕴️️ ういてるびじねすまん,おとこ,くうちゅうふゆう,すーつ,だんせい,びじねすまん -👯️ うさみみ,うさ耳,かお,だんさー,ばにー,ばにーがーる,ばにーぼーい,ぱーてぃー -👯‍♂️️ うさみみ,おとこ,だんさー,だんせい,ばにーぼーい,ぱーてぃー -👯‍♀️️ うさみみ,おんな,じょせい,だんさー,ばにーがーる,ぱーてぃー -🧖️ さうな,さうなにはいるひと,さうなに入る人 🧖🏻,🧖🏼,🧖🏽,🧖🏾,🧖🏿 -🧖‍♂️️ おとこ,さうな,さうなにはいるおとこ,だんせい -🧖‍♀️️ おんな,さうな,さうなにはいるおんな,じょせい -🧗️ とざん,やまのぼり,やまをのぼるひと,山を登る人,山登り,登山 🧗🏻,🧗🏼,🧗🏽,🧗🏾,🧗🏿 -🧗‍♂️️ おとこ,だんせい,とざん,やまのぼり,やまをのぼるおとこ -🧗‍♀️️ おんな,じょせい,とざん,やまのぼり,やまをのぼるおんな -🤺️ すぽーつ,ふぇんしんぐ,ふぇんしんぐをするひと,ふぇんしんぐをする人 -🏇️ きしゅ,けいば,じょうば,じょっきー,すぽーつ,乗馬,競馬,騎手 🏇🏻,🏇🏼,🏇🏽,🏇🏾,🏇🏿 -⛷️️ すきー,すきーやー,すとっく,すぽーつ -🏂️ すのぼ,すのーぼーだー,すのーぼーど,すぽーつ -🏌️️ ごるふ,ごるふぁー,ごるふをするひと,すぽーつ -🏌️‍♂️️ おとこ,ごるふ,ごるふぁー,ごるふをするおとこ,すぽーつ,だんせい -🏌️‍♀️️ おんな,ごるふ,ごるふぁー,ごるふをするおんな,じょせい,すぽーつ -🏄️ さーふぁー,さーふぃん,さーふぃんするひと,すぽーつ,なみのり -🏄‍♂️️ おとこ,さーふぁー,さーふぃんするおとこ,すぽーつ,だんせい,なみのり -🏄‍♀️️ おんな,さーふぁー,さーふぃんするおんな,じょせい,すぽーつ,なみのり -🚣️ かぬー,かやっく,すぽーつ,のりもの,ふね,ぼーとをこぐひと,ぼーとをこぐ人,乗り物,船 🚣🏻,🚣🏼,🚣🏽,🚣🏾,🚣🏿 -🚣‍♂️️ かぬー,かやっく,すぽーつ,だんせい,ふね,ぼーとをこぐおとこ -🚣‍♀️️ かぬー,かやっく,じょせい,すぽーつ,ふね,ぼーとをこぐおんな -🏊️ およぐひと,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ,水泳 -🏊‍♂️️ およぐおとこ,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ,だんせい -🏊‍♀️️ およぐおんな,じょせい,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ -⛹️️ きゅうぎ,すぽーつ,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするひと -⛹️‍♂️️ きゅうぎ,すぽーつ,だんせい,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするおとこ -⛹️‍♀️️ きゅうぎ,じょせい,すぽーつ,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするおんな -🏋️️ うぇいとりふてぃんぐ,じゅうりょうあげ,じゅうりょうあげをするひと,すぽーつ -🏋️‍♂️️ うぇいとりふてぃんぐ,おとこ,じゅうりょうあげをするおとこ,すぽーつ,だんせい -🏋️‍♀️️ うぇいとりふてぃんぐ,おんな,じゅうりょうあげをするおんな,じょせい,すぽーつ -🚴️ けいりん,さいくりんぐ,じてんしゃにのるじん,じてんしゃにのるひと,すぽーつ,ろーどばいく,ろーどれーす,競輪,自転車に乗る人 🚴🏻,🚴🏼,🚴🏽,🚴🏾,🚴🏿 -🚴‍♂️️ けいりん,さいくりんぐ,じてんしゃにのるおとこ,すぽーつ,だんせい,ろーどれーす -🚴‍♀️️ けいりん,さいくりんぐ,じてんしゃにのるおんな,じょせい,すぽーつ,ろーどれーす -🚵️ さいくりんぐ,じてんしゃ,すぽーつ,まうんてんばいく,まうんてんばいくにのるひと,まうんてんばいくに乗る人,自転車 🚵🏻,🚵🏼,🚵🏽,🚵🏾,🚵🏿 -🚵‍♂️️ おとこ,さいくりんぐ,じてんしゃ,すぽーつ,だんせい,まうんてんばいくにのるおとこ -🚵‍♀️️ おんな,さいくりんぐ,じてんしゃ,じょせい,すぽーつ,まうんてんばいくにのるおんな -🤸️ すぽーつ,そくてん,そくてんするひと,たいそう,体操,側転,側転する人 🤸🏻,🤸🏼,🤸🏽,🤸🏾,🤸🏿 -🤸‍♂️️ おとこ,すぽーつ,そくてん,そくてんするおとこ,たいそう,だんせい -🤸‍♀️️ おんな,じょせい,すぽーつ,そくてん,そくてんするおんな,たいそう -🤼️ すぽーつ,れすらー,れすりんぐ,れすりんぐするひと,れすりんぐする人,れすりんぐをするひと -🤼‍♂️️ おとこ,すぽーつ,だんせい,れすりんぐ,れすりんぐするおとこ,れすりんぐをするおとこ -🤼‍♀️️ おんな,じょせい,すぽーつ,れすりんぐ,れすりんぐするおんな,れすりんぐをするおんな -🤽️ きゅうぎ,すいきゅう,すいきゅうをするひと,すぽーつ,水球,水球をする人,球技 🤽🏻,🤽🏼,🤽🏽,🤽🏾,🤽🏿 -🤽‍♂️️ おとこ,きゅうぎ,すいきゅう,すいきゅうをするおとこ,すぽーつ,だんせい -🤽‍♀️️ おんな,きゅうぎ,じょせい,すいきゅう,すいきゅうをするおんな,すぽーつ -🤾️ きゅうぎ,すぽーつ,はんどぼーる,はんどぼーるをするひと,はんどぼーるをする人,球技 🤾🏻,🤾🏼,🤾🏽,🤾🏾,🤾🏿 -🤾‍♂️️ おとこ,きゅうぎ,すぽーつ,だんせい,はんどぼーる,はんどぼーるをするおとこ -🤾‍♀️️ おんな,きゅうぎ,じょせい,すぽーつ,はんどぼーる,はんどぼーるをするおんな -🤹️ じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするひと,じゃぐりんぐをする人,だいどうげい,大道芸 🤹🏻,🤹🏼,🤹🏽,🤹🏾,🤹🏿 -🤹‍♂️️ おとこ,じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするおとこ,だいどうげい,だんせい -🤹‍♀️️ おんな,じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするおんな,じょせい,だいどうげい -🧘️ めいそう,よが,よがのぽーずをするひと,よがのぽーずをする人,瞑想 🧘🏻,🧘🏼,🧘🏽,🧘🏾,🧘🏿 -🧘‍♂️️ おとこ,だんせい,めいそう,よが,よがのぽーずをするおとこ -🧘‍♀️️ おんな,じょせい,めいそう,よが,よがのぽーずをするおんな -🛀️ お風呂,ばすたぶ,ふろ,ふろにはいるじん,ふろにはいるひと,よくそう,浴槽,風呂,風呂に入る人 🛀🏻,🛀🏼,🛀🏽,🛀🏾,🛀🏿 -🛌️ ねる,べっど,べっどにねるひと,べっどに寝る人,ほてる,寝る 🛌🏻,🛌🏼,🛌🏽,🛌🏾,🛌🏿 -🧑‍🤝‍🧑️ かっぷる,こいびと,つなぐ,て,てをつなぐ,てをつなぐ2にん,てをつなぐふたり,ともだち,ひと,人,友達,恋人,手,手をつなぐ,手をつなぐ2人 🧑🏻‍🤝‍🧑🏻,🧑🏻‍🤝‍🧑🏼,🧑🏻‍🤝‍🧑🏽,🧑🏻‍🤝‍🧑🏾,🧑🏻‍🤝‍🧑🏿,🧑🏼‍🤝‍🧑🏻,🧑🏼‍🤝‍🧑🏼,🧑🏼‍🤝‍🧑🏽,🧑🏼‍🤝‍🧑🏾,🧑🏼‍🤝‍🧑🏿,🧑🏽‍🤝‍🧑🏻,🧑🏽‍🤝‍🧑🏼,🧑🏽‍🤝‍🧑🏽,🧑🏽‍🤝‍🧑🏾,🧑🏽‍🤝‍🧑🏿,🧑🏾‍🤝‍🧑🏻,🧑🏾‍🤝‍🧑🏼,🧑🏾‍🤝‍🧑🏽,🧑🏾‍🤝‍🧑🏾,🧑🏾‍🤝‍🧑🏿,🧑🏿‍🤝‍🧑🏻,🧑🏿‍🤝‍🧑🏼,🧑🏿‍🤝‍🧑🏽,🧑🏿‍🤝‍🧑🏾,🧑🏿‍🤝‍🧑🏿 -👭️ おんな,かっぷる,こいびと,てをつなぐじょせい,ともだち,どうせい,友達,同性,女,恋人,手をつなぐ女性 👭🏻,👭🏼,👭🏽,👭🏾,👭🏿,👩🏻‍🤝‍👩🏼,👩🏻‍🤝‍👩🏽,👩🏻‍🤝‍👩🏾,👩🏻‍🤝‍👩🏿,👩🏼‍🤝‍👩🏻,👩🏼‍🤝‍👩🏽,👩🏼‍🤝‍👩🏾,👩🏼‍🤝‍👩🏿,👩🏽‍🤝‍👩🏻,👩🏽‍🤝‍👩🏼,👩🏽‍🤝‍👩🏾,👩🏽‍🤝‍👩🏿,👩🏾‍🤝‍👩🏻,👩🏾‍🤝‍👩🏼,👩🏾‍🤝‍👩🏽,👩🏾‍🤝‍👩🏿,👩🏿‍🤝‍👩🏻,👩🏿‍🤝‍👩🏼,👩🏿‍🤝‍👩🏽,👩🏿‍🤝‍👩🏾 -👫️ いせい,かっぷる,こいびと,だんじょ,てをつなぐだんじょ,ともだち,ふたり,友達,恋人,手をつなぐ男女,男女,異性 👫🏻,👫🏼,👫🏽,👫🏾,👫🏿,👩🏻‍🤝‍👨🏼,👩🏻‍🤝‍👨🏽,👩🏻‍🤝‍👨🏾,👩🏻‍🤝‍👨🏿,👩🏼‍🤝‍👨🏻,👩🏼‍🤝‍👨🏽,👩🏼‍🤝‍👨🏾,👩🏼‍🤝‍👨🏿,👩🏽‍🤝‍👨🏻,👩🏽‍🤝‍👨🏼,👩🏽‍🤝‍👨🏾,👩🏽‍🤝‍👨🏿,👩🏾‍🤝‍👨🏻,👩🏾‍🤝‍👨🏼,👩🏾‍🤝‍👨🏽,👩🏾‍🤝‍👨🏿,👩🏿‍🤝‍👨🏻,👩🏿‍🤝‍👨🏼,👩🏿‍🤝‍👨🏽,👩🏿‍🤝‍👨🏾 -👬️ おとこ,かっぷる,こいびと,てをつなぐだんせい,ともだち,どうせい,友達,同性,恋人,手をつなぐ男性,男 👬🏻,👬🏼,👬🏽,👬🏾,👬🏿,👨🏻‍🤝‍👨🏼,👨🏻‍🤝‍👨🏽,👨🏻‍🤝‍👨🏾,👨🏻‍🤝‍👨🏿,👨🏼‍🤝‍👨🏻,👨🏼‍🤝‍👨🏽,👨🏼‍🤝‍👨🏾,👨🏼‍🤝‍👨🏿,👨🏽‍🤝‍👨🏻,👨🏽‍🤝‍👨🏼,👨🏽‍🤝‍👨🏾,👨🏽‍🤝‍👨🏿,👨🏾‍🤝‍👨🏻,👨🏾‍🤝‍👨🏼,👨🏾‍🤝‍👨🏽,👨🏾‍🤝‍👨🏿,👨🏿‍🤝‍👨🏻,👨🏿‍🤝‍👨🏼,👨🏿‍🤝‍👨🏽,👨🏿‍🤝‍👨🏾 -💏️ 2にんできす,2人できす,かっぷる,きす,ちゅっ,はーと,ふたりできす 💏🏻,💏🏼,💏🏽,💏🏾,💏🏿,🧑🏻‍❤️‍💋‍🧑🏼,🧑🏻‍❤️‍💋‍🧑🏽,🧑🏻‍❤️‍💋‍🧑🏾,🧑🏻‍❤️‍💋‍🧑🏿,🧑🏼‍❤️‍💋‍🧑🏻,🧑🏼‍❤️‍💋‍🧑🏽,🧑🏼‍❤️‍💋‍🧑🏾,🧑🏼‍❤️‍💋‍🧑🏿,🧑🏽‍❤️‍💋‍🧑🏻,🧑🏽‍❤️‍💋‍🧑🏼,🧑🏽‍❤️‍💋‍🧑🏾,🧑🏽‍❤️‍💋‍🧑🏿,🧑🏾‍❤️‍💋‍🧑🏻,🧑🏾‍❤️‍💋‍🧑🏼,🧑🏾‍❤️‍💋‍🧑🏽,🧑🏾‍❤️‍💋‍🧑🏿,🧑🏿‍❤️‍💋‍🧑🏻,🧑🏿‍❤️‍💋‍🧑🏼,🧑🏿‍❤️‍💋‍🧑🏽,🧑🏿‍❤️‍💋‍🧑🏾 -👩‍❤️‍💋‍👨️ 2にんできす,かっぷる,きす,じょせい,じょせいとだんせいできす,だんせい,ちゅっ,はーと -👨‍❤️‍💋‍👨️ 2にんできす,かっぷる,きす,だんせい,だんせいとだんせいできす,ちゅっ,はーと -👩‍❤️‍💋‍👩️ 2にんできす,かっぷる,きす,じょせい,じょせいとじょせいできす,ちゅっ,はーと -💑️ あつあつ,かっぷる,かっぷるとはーと,こいびと,はーと,恋人,熱々 💑🏻,💑🏼,💑🏽,💑🏾,💑🏿,🧑🏻‍❤️‍🧑🏼,🧑🏻‍❤️‍🧑🏽,🧑🏻‍❤️‍🧑🏾,🧑🏻‍❤️‍🧑🏿,🧑🏼‍❤️‍🧑🏻,🧑🏼‍❤️‍🧑🏽,🧑🏼‍❤️‍🧑🏾,🧑🏼‍❤️‍🧑🏿,🧑🏽‍❤️‍🧑🏻,🧑🏽‍❤️‍🧑🏼,🧑🏽‍❤️‍🧑🏾,🧑🏽‍❤️‍🧑🏿,🧑🏾‍❤️‍🧑🏻,🧑🏾‍❤️‍🧑🏼,🧑🏾‍❤️‍🧑🏽,🧑🏾‍❤️‍🧑🏿,🧑🏿‍❤️‍🧑🏻,🧑🏿‍❤️‍🧑🏼,🧑🏿‍❤️‍🧑🏽,🧑🏿‍❤️‍🧑🏾 -👩‍❤️‍👨️ あつあつ,かっぷる,かっぷるとはーと,こいびと,じょせい,じょせいとだんせいのかっぷる,だんせい,はーと -👨‍❤️‍👨️ あつあつ,かっぷる,かっぷるとはーと,こいびと,だんせい,だんせいとだんせいのかっぷる,はーと -👩‍❤️‍👩️ あつあつ,かっぷる,かっぷるとはーと,こいびと,じょせい,じょせいとじょせいのかっぷる,はーと -👨‍👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,だんせい,だんせいとじょせいとおとこのこのかぞく,女性,家族,家族: 男性 女性 男の子,男の子,男性,親子 -👨‍👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子,男性,親子 -👨‍👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子 男の子,男の子,男性,親子 -👨‍👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,だんせい,だんせいとじょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 男性 女性 男の子 男の子,男の子,男性,親子 -👨‍👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子 女の子,男性,親子 -👨‍👨‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとだんせいとおとこのこのかぞく,家族,家族: 男性 男性 男の子,男の子,男性,親子 -👨‍👨‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのこのかぞく,女の子,家族,家族: 男性 男性 女の子,男性,親子 -👨‍👨‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのことおとこのこのかぞく,女の子,家族,家族: 男性 男性 女の子 男の子,男の子,男性,親子 -👨‍👨‍👦‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとだんせいとおとこのことおとこのこのかぞく,家族,家族: 男性 男性 男の子 男の子,男の子,男性,親子 -👨‍👨‍👧‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのことおんなのこのかぞく,女の子,家族,家族: 男性 男性 女の子 女の子,男性,親子 -👩‍👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとじょせいとおとこのこのかぞく,女性,家族,家族: 女性 女性 男の子,男の子,親子 -👩‍👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子,親子 -👩‍👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子 男の子,男の子,親子 -👩‍👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとじょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 女性 女性 男の子 男の子,男の子,親子 -👩‍👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子 女の子,親子 -👨‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとおとこのこのかぞく,家族,家族: 男性 男の子,男の子,男性,親子 -👨‍👦‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとおとこのことおとこのこのかぞく,家族,家族: 男性 男の子 男の子,男の子,男性,親子 -👨‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのこのかぞく,女の子,家族,家族: 男性 女の子,男性,親子 -👨‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのことおとこのこのかぞく,女の子,家族,家族: 男性 女の子 男の子,男の子,男性,親子 -👨‍👧‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのことおんなのこのかぞく,女の子,家族,家族: 男性 女の子 女の子,男性,親子 -👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとおとこのこのかぞく,女性,家族,家族: 女性 男の子,男の子,親子 -👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 女性 男の子 男の子,男の子,親子 -👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのこのかぞく,女の子,女性,家族,家族: 女性 女の子,親子 -👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 女性 女の子 男の子,男の子,親子 -👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 女性 女の子 女の子,親子 -🗣️️ かお,しるえっと,はなす,はなすひとのしるえっと -👤️ 1にん,1人,かげ,げすと,げすとあかうんと,しるえっと,じょうはんしん,ひとかげ,ひとのしるえっと,ひとり,上半身,人のしるえっと,人影 -👥️ 2にん,2にんのしるえっと,2人,2人のしるえっと,しるえっと,じょうはんしん,ふたり,上半身 -🫂️ あいさつ,ありがとう,おわかれ,お別れ,こんにちは,さようなら,はぐするひと,はぐする人,挨拶 -👪️ おやこ,かぞく,家族 -👣️ あし,あしあと,足,足あと -🦰️ あかげ,あかげのひと,あかちゃ,赤毛,赤毛の人,赤茶 -🦱️ あふろ,かーる,くせげ,くせ毛,ぱんちぱーま,まきげ,巻き毛 -🦳️ ぐれー,こうれいしゃ,しらが,ねんぱい,ろうじん,年配,白髪,老人,高齢者 -🦲️ かがくりょうほう,けがない,すきんへっど,はげあたま,はげ頭,ぼうず,化学療法,坊主,毛がない -🐵️ かお,さる,さるのかお,さるの顔,どうぶつ,動物,猿,顔 -🐒️ さる,どうぶつ,動物,猿 -🦍️ かお,ごりら,どうぶつ,動物,顔 -🦧️ おらんうーたん,さる,どうぶつ,もりのひと,動物,森の人,猿 -🐶️ いぬ,いぬのかお,いぬの顔,かお,どうぶつ,ぺっと,動物,犬,顔 -🐕️ いぬ,どうぶつ,ぺっと -🦮️ あくせしびりてぃ,いぬ,しかく,しょうがい,ほじょ,ほじょけん,もうどうけん,犬,盲導犬,補助犬,視覚,障がい -🐕‍🦺️ あくせしびりてぃ,いぬ,かいじょけん,さーびす,ほじょ,介助犬,犬,補助 -🐩️ いぬ,どうぶつ,ぷーどる,ぺっと,動物,犬 -🐺️ おおかみ,おおかみのかお,おおかみの顔,かお,どうぶつ,動物,狼,顔 -🦊️ かお,きつね,きつねのかお,きつねの顔,どうぶつ,動物,狐,顔 -🦝️ あらいぐま,こうきしん,ずるがしこい,ずる賢い,せんさくずき,どうぶつ,動物,好奇心,詮索好き -🐱️ かお,どうぶつ,ねこ,ねこのかsお,ねこのかお,ねこの顔,ぺっと,動物,猫,顔 -🐈️ どうぶつ,ねこ,ぺっと -🐈‍⬛️ くろ,くろねこ,どうぶつ,ねこ,ふきつ,不吉,動物,猫,黒,黒猫 -🦁️ かお,どうぶつ,らいおん,らいおんのかお,らいおんの顔,動物,顔 -🐯️ えと,かお,しし,じゅうにし,とら,とらのかお,とらの顔,どうぶつ,動物,虎,顔 -🐅️ とら,どうぶつ,動物,虎 -🐆️ どうぶつ,ひょう,動物 -🐴️ うま,うまのかお,かお,どうぶつ,動物,顔,馬,馬の顔 -🐎️ うま,けいば,じょうば,どうぶつ,乗馬,動物,競馬,馬 -🦄️ いっかくじゅう,かお,どうぶつ,ゆにこーん,ゆにこーんのかお,ゆにこーんの顔,一角獣,動物,顔 -🦓️ しまうま,しましま,どうぶつ,動物 -🦌️ かお,しか,どうぶつ,動物,顔,鹿 -🦬️ うし,どうぶつ,ばいそん,ばっふぁろー,むれ,やぎゅう,動物,牛,群れ,野牛 -🐮️ うし,うしのかお,えと,かお,じゅうにし,どうぶつ,動物,牛,牛の顔,顔 -🐂️ うし,おうし,せいざ,どうぶつ,動物,星座,牛,牡牛 -🐃️ うし,すいぎゅう,どうぶつ,ばっふぁろー,動物,水牛,牛 -🐄️ うし,どうぶつ,めうし,動物,牛,牝牛 -🐷️ かお,どうぶつ,ぶた,ぶたのかお,ぶたの顔,動物,豚,顔 -🐖️ どうぶつ,ぶた,動物,豚 -🐗️ いのしし,かお,どうぶつ,のぶた,動物,猪,顔 -🐽️ かお,はな,ぶた,ぶたの鼻,ぶたはな,ぶたばな,ぶた鼻,豚,顔,鼻 -🐏️ おひつじ,せいざ,どうぶつ,ひつじ,動物,星座,牡羊,羊 -🐑️ どうぶつ,ひつじ,動物,羊 -🐐️ せいざ,どうぶつ,やぎ,動物,山羊,星座 -🐪️ どうぶつ,らくだ,動物 -🐫️ どうぶつ,ふたこぶ,ふたこぶらくだ,らくだ,動物 -🦙️ あるぱか,ぐあなこ,どうぶつ,びくーな,ようもう,らま,動物,羊毛 -🦒️ きりん,どうぶつ,動物 -🐘️ ぞう,どうぶつ,動物,象 -🦣️ きば,きょだい,ぜつめつ,どうぶつ,まんもす,動物,巨大,牙,絶滅 -🦏️ かお,さい,どうぶつ,動物,顔 -🦛️ かば,どうぶつ,動物 -🐭️ えと,かお,じゅうにし,どうぶつ,ね,ねずみ,ねずみのかお,ねずみの顔,動物,顔 -🐁️ どうぶつ,ねずみ,はつかねずみ,まうす,動物 -🐀️ どうぶつ,ねずみ,らっと,動物 -🐹️ かお,どうぶつ,ねずみ,はむすたー,はむすたーのかお,はむすたーの顔,ぺっと,動物,顔 -🐰️ う,うさぎ,うさぎのかお,うさぎの顔,えと,かお,じゅうにし,どうぶつ,ぺっと,動物,顔 -🐇️ うさぎ,どうぶつ,ぺっと,動物 -🐿️️ どうぶつ,りす -🦫️ だむづくり,だむ作り,どうぶつ,びーばー,動物 -🦔️ とげ,どうぶつ,はりねずみ,動物 -🦇️ きゅうけつき,こうもり,どうぶつ,ばんぱいあ,動物,吸血鬼 -🐻️ かお,くま,くまのかお,くまの顔,どうぶつ,動物,熊,顔 -🐻‍❄️️ くま,しろ,しろくま,どうぶつ,ほっきょく,ほっきょくぐま -🐨️ かお,こあら,どうぶつ,動物,顔 -🐼️ かお,どうぶつ,ぱんだ,ぱんだのかお,ぱんだの顔,動物,顔 -🦥️ どうぶつ,なまけもの,のんびり,ものぐさ,動物 -🦦️ あそびすき,かわうそ,さかなをたべる,どうぶつ,らっこ,動物,遊び好き,魚を食べる -🦨️ あくしゅう,すかんく,どうぶつ,動物,悪臭 -🦘️ おーすとらりあ,かんがるー,じゃんぷ,じょーい,ゆうたいるい,有袋類 -🦡️ あなぐま,どうぶつ,みつあなぐま,動物 -🐾️ あしあと,いぬ,どうぶつ,にくきゅう,ねこ,動物,犬,犬の足跡,猫,肉球,足跡 -🦃️ しちめんちょう,たーきー,とり,どうぶつ,七面鳥,動物,鳥 -🐔️ かお,とり,どうぶつ,にわとり,動物,顔,鳥 -🐓️ おんどり,とり,どうぶつ,動物,鳥 -🐣️ かお,たまご,たまごからかえったひよこ,とり,どうぶつ,ひな,ひなどり,ひな鳥,ひよこ,ふか,動物,卵からかえったひよこ,顔,鳥 -🐤️ かお,とり,どうぶつ,ひな,ひよこ,よこをむいているひよこ,動物,横を向いているひよこ,顔,鳥 -🐥️ とり,どうぶつ,ひな,ひよこ,まえをむいているひよこ,前を向いているひよこ,動物,鳥 -🐦️ かお,とり,どうぶつ,鳥 -🐧️ とり,どうぶつ,ぺんぎん,動物,鳥 -🕊️️ とり,どうぶつ,はと,へいわ -🦅️ とり,どうぶつ,わし,動物,鳥 -🦆️ かも,とり,どうぶつ,動物,鳥 -🦢️ とり,はくちょう,ひな,みにくいあひるのこ,みにくいあひるの子,白鳥,鳥 -🦉️ とり,どうぶつ,ふくろう,動物,鳥 -🦤️ ぜつめつ,とべないとり,とり,どーどー,もーりしゃすとう,もーりしゃす島,絶滅,飛べない鳥,鳥 -🪶️ うもう,かるい,とぶ,とり,はね,羽,羽毛,軽い,飛ぶ,鳥 -🦩️ とり,どうぶつ,ねったい,ぴんくいろ,ぴんく色,ふらみんご,動物,熱帯,鳥 -🦚️ くじゃく,とり,はで,ぴーこっく,孔雀,派手,鳥 -🦜️ おうむ,かいぞく,しゃべる,とり,海賊,鳥 -🐸️ かえる,かえるのかお,かえるの顔,かお,どうぶつ,動物,顔 -🐊️ どうぶつ,はちゅうるい,わに,動物,爬虫類 -🐢️ かめ,どうぶつ,はちゅうるい,動物,爬虫類 -🦎️ とかげ,どうぶつ,はちゅうるい,動物,爬虫類 -🐍️ せいざ,どうぶつ,どく,はちゅうるい,へび,動物,星座,毒,爬虫類 -🐲️ えと,かお,じゅうにし,たつ,どうぶつ,どらごん,どらごんのかお,どらごんの顔,りゅう,動物,竜,顔,龍 -🐉️ どうぶつ,どらごん,りゅう,動物,竜,龍 -🦕️ きょうりゅう,そうしょくきょうりゅう,でぃぷろどくす,ぶらきおさうるす,りゅうきゃくるい,恐竜,竜脚類,草食恐竜 -🦖️ きょうりゅう,てぃらのさうるす,恐竜 -🐳️ くじら,しお,しおふき,しおふきくじら,どうぶつ,動物,潮吹き,潮吹きくじら -🐋️ くじら,どうぶつ,動物 -🐬️ いるか,どうぶつ,動物 -🦭️ あざらし,あしか,かいじゅう,とど,どうぶつ,動物,海獣 -🐟️ さかな,せいざ,どうぶつ,魚 -🐠️ さかな,どうぶつ,ねったいぎょ,動物,熱帯魚,魚 -🐡️ さかな,どうぶつ,ふぐ,動物,魚 -🦈️ さかな,さめ,どうぶつ,動物,魚 -🐙️ たこ,どうぶつ,動物 -🐚️ かい,どうぶつ,まきがい,動物,巻き貝,貝 -🪸️ うみ,さんご,さんごしょう,海,珊瑚礁 -🐌️ かたつむり,でんでんむし,でんでん虫,むし,虫 -🦋️ ちょう,むし,虫 -🐛️ いもむし,けむし,げじげじ,むし,毛虫,芋虫,虫 -🐜️ あり,むし,虫 -🐝️ はち,みつばち,むし,虫 -🪲️ かぶとむし,こんちゅう,つの,むし,昆虫,虫 -🐞️ てんとうむし,むし,虫 -🦗️ こおろぎ,ばった,むし,虫 -🪳️ がいちゅう,ごきぶり,むし,害虫,虫 -🕷️️ くも,すぱいだー,むし -🕸️️ くも,くものす -🦂️ さそり,せいざ,むし,星座,虫 -🦟️ ういるす,か,ねつ,びょうき,まらりあ,むし,熱,病気,虫,蚊 -🪰️ がいちゅう,はえ,びょうげんきん,ふけつ,むし,不潔,害虫,病原菌,虫 -🪱️ きせいちゅう,みみず,むし,寄生虫,虫 -🦠️ あめーば,ういるす,さいきん,ばくてりあ,びせいぶつ,微生物,細菌 -💐️ はな,はなたば,ぶーけ,花,花束 -🌸️ さくら,はな,桜,花 -💮️ たいへんよくできました,はな,はなまる,よくできました,大変よくできました,大変よく出来ました,花 -🪷️ せいじょう,はす,はすのはな,はすの花,はな,ひんどぅーきょう,ひんどぅー教,ぶっきょう,ろーたす,仏教,清浄,花 -🏵️️ しょくぶつ,はな,はなかざり -🌹️ はな,ばら,花 -🥀️ しおれた,しおれたはな,しおれた花,はな,花 -🌺️ はいびすかす,はな,花 -🌻️ はな,ひまわり,花 -🌼️ かいか,さいたはな,はな,咲いた花,花,開花 -🌷️ ちゅーりっぷ,はな,花 -🌱️ しんめ,ふたば,め,双葉,新芽,芽 -🪴️ うえきばち,しょくぶつ,なえ,はちうえ,べらんだ,みずやり,みどり,植木鉢,植物,水やり,緑,苗,鉢植え -🌲️ き,じょうりょくじゅ,常緑樹,木 -🌳️ き,らくようじゅ,木,落葉樹 -🌴️ き,やし,やしのき,やしの木,木 -🌵️ さぼてん,しょくぶつ,植物 -🌾️ いなほ,いね,くさ,すすき,稲,稲穂,草 -🌿️ くさ,は,はっぱ,はーぶ,やくそう,草,葉,薬草 -☘️️ くさ,くろーばー,は -🍀️ 4,くさ,くろーばー,は,よつば,よつばのくろーばー,四つ葉のくろーばー,草,葉 -🍁️ かえで,こうよう,もみじ,紅葉 -🍂️ おちば,かれは,このは,木の葉,枯れ葉,落ち葉 -🍃️ おちば,かぜ,かぜにゆれるは,このは,びゅうびゅう,木の葉,落ち葉,風,風に揺れる葉 -🪹️ えいそう,からっぽのす,す,すづくり,とりのす,営巣,巣,巣作り,空っぽの巣 -🪺️ えいそう,す,すづくり,たまご,とりのす,とりのたまごとす,営巣,巣,巣作り,鳥の卵と巣 -🍄️ きのこ,どく,まっしゅるーむ,やさい,毒,野菜 -🍇️ くだもの,ぐれーぷ,ぶどう,果物 -🍈️ くだもの,めろん,やさい,果物,野菜 -🍉️ くだもの,すいか,やさい,果物,野菜 -🍊️ おれんじ,くだもの,みかん,果物 -🍋️ くだもの,れもん,果物 -🍌️ くだもの,ばなな,果物 -🍍️ くだもの,とろぴかる,ぱいなっぷる,ぱいん,果物 -🥭️ くだもの,とろぴかる,まんごー,果物 -🍎️ あかりんご,あっぷる,くだもの,りんご,果物,赤りんご -🍏️ あおりんご,あっぷる,くだもの,りんご,果物,青りんご -🍐️ くだもの,せいようなし,なし,ようなし,果物,洋なし,西洋なし -🍑️ くだもの,ぴーち,もも,果物,桃 -🍒️ くだもの,さくらんぼ,ちぇりー,果物 -🍓️ いちご,くだもの,すとろべりー,果物 -🫐️ くだもの,びるべりー,ぶるーべりー,べりー,果物 -🥝️ きうい,きういふるーつ,くだもの,果物 -🍅️ くだもの,とまと,やさい,果物,野菜 -🫒️ おりーぶ,かじつ,じつ,み,実,果実 -🥥️ くだもの,ここなっつ,ここなつ,やしのみ,やしの実,果物 -🥑️ あぼかど,あぼがど,くだもの,やさい,果物,野菜 -🍆️ なす,やさい,野菜 -🥔️ いも,じゃがいも,ぽてと,やさい,野菜 -🥕️ にんじん,やさい,人参,野菜 -🌽️ こーん,とうもろこし,やさい,野菜 -🌶️️ からい,こうしんりょう,とうがらし,やさい -🫑️ あかぴーまん,とうがらし,ぱぷりか,ぴーまん,やさい,赤ぴーまん,野菜 -🥒️ きゅうり,つけもの,ぴくるす,やさい,漬け物,野菜 -🥬️ きゃべつ,けーる,ちんげんさい,ちんげん菜,はやさい,れたす,葉野菜 -🥦️ ぶろっこりー,やさい,野菜 -🧄️ かおり,におい,にんにく,やくみ,やさい,薬味,野菜,香り -🧅️ たまねぎ,ねぎ,やくみ,やさい,玉ねぎ,薬味,野菜 -🥜️ なっつ,ぴーなっつ,やさい,らっかせい,落花生,野菜 -🫘️ あずき,きんときまめ,びーんず,まめ,れっどきどにー,小豆,豆,金時豆 -🌰️ くり,やさい,栗,野菜 -🍞️ しょくぱん,ぱん,べーかりー,食ぱん -🥐️ くろわっさん,ぱん,ふらんす,べーかりー -🥖️ ばげっと,ぱん,ふらんすぱん,べーかりー -🫓️ あれぱ,なん,ぱん,ぴたぱん,ふらっとぶれっど,らばし -🥨️ ねじり,ぱん,ぷれっつぇる -🥯️ くりーむちーず,ぱんや,ぱん屋,べーかりー,べーぐる -🥞️ ぱんけーき,ほっとけーき -🧇️ ふんわり,やきがし,わっふる,焼き菓子 -🧀️ ちーず -🍖️ にく,ほねつきにく,ももにく,もも肉,肉,骨付き肉 -🍗️ ちきん,とりももにく,にく,にわとりももにく,ほねつきにく,ももにく,もも肉,肉,骨付き肉,鶏もも肉 -🥩️ すてーき,すてーきにく,すてーき肉,にく,びーふ,ぽーく,らむ,肉 -🥓️ にく,べーこん,肉 -🍔️ はんばーがー,ばーがー -🍟️ ふらいどぽてと,ふれんちふらい,ぽてと,ぽてとふらい -🍕️ ちーず,ぴざ,ぴっつぁ -🌭️ そーせーじ,ふらんくふると,ほっとどっぐ -🥪️ さんどいっち,ぱん -🌮️ たこす,めきしかん -🌯️ そふとたこす,ぶりとー,めきしかん -🫔️ たまる,たまれす,ちまき,めきしかん -🥙️ けばぶ,けばぶさんど,らっぷさんど -🧆️ ころっけ,にくだんご,ひよこまめ,ふぁらふぇる,肉団子 -🥚️ たまご,卵 -🍳️ たまご,ふらいぱん,めだまやき,りょうり,卵,料理,目玉焼き -🥘️ しーふーど,ぱえりあ -🍲️ しちゅー,なべ,なべりょうり,にこみ,にもの,煮物,煮込み,鍋 -🫕️ すいす,ちょこ,ちーず,とかす,なべ,ふぉんでゅ,溶かす,鍋 -🥣️ おかゆ,しりある,ちょうしょく,ぼうるとすぷーん,朝食 -🥗️ ぐりーん,ぐりーんさらだ,さらだ -🍿️ おかし,お菓子,ぽっぷこーん -🧈️ にゅうせいひん,ばたー,乳製品 -🧂️ しお,ちょうみりょう,ふりかけようき,やくみ,塩,振りかけ容器,薬味,調味料 -🥫️ かん,かんづめ,ひじょうしょく,缶,缶詰,非常食 -🍱️ えきべん,べんとう,まくのうち,幕の内,弁当,駅弁 -🍘️ おかし,おせんべい,お菓子,せんべい -🍙️ おにぎり,おむすび,こめ,米 -🍚️ こめ,ごはん,ちゃわん,らいす,米 -🍛️ かれー,かれーらいす,らいす -🍜️ あつあつ,どんぶり,らーめん,熱々 -🍝️ すぱげってぃ,すぱげってぃー,ぱすた -🍠️ いも,さつまいも,やきいも,焼き芋,芋 -🍢️ おでん -🍣️ おすし,お寿司,すし -🍤️ えび,えびふらい,てんぷら,ふらい,天ぷら -🍥️ うず,うずまき,なると,ねりもの,渦巻き,練り物 -🥮️ あき,おいわい,お祝い,げっぺい,ちゅうかかし,ちゅうしゅうせつ,ちゅうしゅうぶし,中秋節,中華菓子,月餅,秋 -🍡️ おだんご,お団子,だんご,わがし,和菓子 -🥟️ ぎょうざ,てんしん,にくまん,点心,肉まん -🥠️ おみくじ,ふぉーちゅんくっきー -🥡️ ちゅうか,ていくあうとべんとう,ていくあうと弁当,べんとう,もちかえり,中華,弁当,持ち帰り -🦀️ かに,せいざ,どうぶつ,動物,星座 -🦞️ ざりがに,しーふーど,はさみ,びすく,ろぶすたー -🦐️ えび,しゅりんぷ,しーふーど,どうぶつ,動物 -🦑️ いか,しーふーど,どうぶつ,動物 -🦪️ おいすたー,かい,かき,ぎょかい,しーふーど,なまがき,牡蠣,生がき,貝,魚介 -🍦️ あいす,おかし,すいーつ,そふと,そふとくりーむ,でざーと -🍧️ あいす,おかし,かきごおり,かき氷,こおり,でざーと,氷 -🍨️ あいす,あいすくりーむ,おかし,すいーつ,でざーと -🍩️ おかし,お菓子,すいーつ,でざーと,どーなつ -🍪️ おかし,お菓子,くっきー,すいーつ,でざーと -🎂️ おたんじょうび,けーき,たんじょうび,ばーすでー,ばーすでーけーき,誕生日 -🍰️ おかし,お菓子,けーき,しょーとけーき,すいーつ,でざーと -🧁️ おかし,お菓子,かっぷけーき,けーき,すいーつ,べーかりー -🥧️ おかし,お菓子,たると,ぱい -🍫️ おかし,お菓子,すいーつ,ちょこ,ちょこれーと,でざーと -🍬️ あめ,おかし,お菓子,きゃんでぃ,きゃんでぃー -🍭️ あめ,おかし,お菓子,きゃんでぃ,きゃんでぃー,ぺろぺろきゃんでぃ,ぼうつききゃんでぃ,棒付ききゃんでぃ -🍮️ おかし,お菓子,すいーつ,でざーと,ぷりん -🍯️ あまい,はちみつ,はにー,はにーぽっと,みつびん,甘い -🍼️ あかちゃん,ほにゅうびん,ほにゅう瓶,みるく,赤ちゃん -🥛️ ぎゅうにゅう,ぎゅうにゅういりのこっぷ,こっぷ,みるく,牛乳,牛乳入りのこっぷ -☕️ あたたかいのみもの,かっぷ,きっさてん,こうちゃ,こーひー,のみもの,ほっとどりんく -🫖️ おちゃ,お茶,きゅうす,ちゃき,てぃーぽっと,のみもの,急須,茶器,飲み物 -🍵️ おちゃ,お茶,のみもの,ゆのみ,りょくちゃ,湯飲み,緑茶,飲み物 -🍶️ お酒,さけ,とっくり,にほんしゅ,徳利,日本酒,酒 -🍾️ あわ,しゃんぱん,しゃんぺん,すぱーくりんぐわいん,すぷまんて,ぼとる,泡 -🍷️ ぐらす,ばー,わいん,わいんぐらす -🍸️ かくてる,かくてるぐらす,ぐらす,ばー -🍹️ かくてる,とろぴかる,とろぴかるどりんく,ばー -🍺️ いざかや,じょっき,ばー,びーる,びーるじょっき,居酒屋 -🍻️ えんかい,かんぱい,じょっき,びーる,びーるでかんぱい,びーるで乾杯,乾杯,宴会 -🥂️ かんぱい,ぐらすでかんぱい,ぐらすで乾杯,しゃんぱん,しゃんぺん,すぱーくりんぐわいん,すぷまんて,乾杯 -🥃️ うぃすきー,ういすきー,ぐらす,たんぶらー,たんぶらーぐらす -🫗️ えきたい,がらす,こっぷ,こっぷからそそぐ,こっぷから注ぐ,こぼす,そそぐ,のみもの,液体,飲み物 -🥤️ こっぷ,じゅーす,すとろーかっぷ -🧋️ おちゃ,お茶,たぴおか,たぴおかどりんく,どりんく,ばぶるてぃー,みるくてぃー -🧃️ かみぱっくいんりょう,じゅーす,どりんく,のみもの,紙ぱっく飲料,飲み物 -🧉️ おちゃ,お茶,どりんく,のみもの,まてちゃ,まて茶,飲み物 -🧊️ かくごおり,こおり,つめたい,冷たい,氷,角氷 -🥢️ おはし,はし -🍽️️ おさら,さら,ないふ,ないふとふぉーくとさら,ふぉーく -🍴️ かとらりー,ないふ,ないふとふぉーく,ないふ・ふぉーく,ふぉーく,れすとらん -🥄️ かとらりー,しょっき,すぷーん,食器 -🔪️ ないふ,ほうちょう,りょうり,包丁,料理 -🫙️ あき,あきびん,からのびん,ちょうみりょう,びん,ほぞん,ようき,保存,容器,瓶,空,調味料 -🏺️ かめ,せいざ,つぼ,みずがめ,壺,星座,水瓶 -🌍️ あふりか,ちきゅう,よーろっぱ -🌎️ あめりか,あめりかたいりく,ちきゅう -🌏️ あじあ,おーすとらりあ,ちきゅう,地球 -🌐️ しごせん,しごせんのあるちきゅう,ちきゅう,地球,子午線,子午線のある地球 -🗺️️ せかい,せかいちず,ちず -🗾️ ちず,にっぽん,にっぽんちず,にほん,にほんちず,地図,日本,日本地図 -🧭️ おりえんてーりんぐ,こうかい,こうくう,こんぱす,じしゃく,磁石,航海,航空 -🏔️️ かんせつ,やま,ゆき,ゆきやま -⛰️️ さんがく,やま -🌋️ かざん,ふんか,やま,噴火,山,火山 -🗻️ ふじさん,やま,富士山,山 -🏕️️ きゃんぷ,てんと,やま -🏖️️ すなはま,ぱらそる,びーち,びーちぱらそる -🏜️️ さばく,さぼてん,さぼてんのあるさばく -🏝️️ しま,むじんとう,やし,やしのきのあるしま -🏞️️ こうえん,こくりつこうえん,しぜん -🏟️️ きょうぎじょう,すたじあむ,やきゅうじょう -🏛️️ しせき,れきし,れきしてきけんぞうぶつ,れきしてきなたてもの -🏗️️ くれーん,けんせつ,けんせつちゅう,こうじ -🧱️ かべ,しっくい,ねんど,もるたる,れんが,壁,粘土 -🪨️ おもたい,かたい,がんせき,きょがん,せきざい,岩石,巨岩,石材,硬い,重たい -🪵️ ざいもく,じゅもく,まるた,もくざい,ろぐ,丸太,木材,材木,樹木 -🛖️ こや,ばんがろー,ゆると,わらぶきこや,わらぶき小屋,小屋 -🏘️️ いえ,じゅうたくがい,ふくすうのいえ,まち -🏚️️ あきや,いえ,たてもの,はいおく -🏠️ いえ,かおく,たてもの,まいほーむ,家 -🏡️ いえ,うち,たてもの,にわ,にわつきのいえ,ほーむ,まいほーむ,家,庭,庭付きの家,建物 -🏢️ おふぃすびる,たてもの,びる,建物 -🏣️ たてもの,ゆうびん,ゆうびんきょく,建物,郵便,郵便局 -🏤️ せいようのゆうびんきょく,たてもの,ゆうびん,建物,西洋の郵便局,郵便 -🏥️ いしゃ,くすり,たてもの,びょういん,医者,建物,病院,薬 -🏦️ ぎんこう,たてもの,建物,銀行 -🏨️ たてもの,ほてる,建物 -🏩️ たてもの,ほてる,らぶほ,らぶほてる,建物 -🏪️ こんびに,こんびにえんすすとあ,たてもの,建物 -🏫️ がっこう,たてもの,学校,建物 -🏬️ たてもの,でぱーと,ひゃっかてん,建物,百貨店 -🏭️ こうじょう,こうば,たてもの,工場 -🏯️ おしろ,しろ,たてもの,にっぽん,にほん,城,建物,日本 -🏰️ おしろ,きゃっする,しろ,せいようのしろ,たてもの,城,建物,西洋の城 -💒️ きょうかい,けっこん,けっこんしき,しきじょう,たてもの,建物,式場,教会,結婚,結婚式 -🗼️ たわー,とうきょう,とうきょうたわー,東京,東京たわー -🗽️ あめりか,じゆうのめがみ,ちょうぞう,にゅーよーく,めがみ,彫像,自由の女神 -⛪️ きょうかい,きりすときょう,しゅうきょう,たてもの,ちゃぺる -🕌️ いすらむきょう,いすらむ教,しゅうきょう,たてもの,もすく,宗教,建物 -🛕️ しゅうきょう,たてもの,てら,ひんずーきょう,ひんずー教,ひんどぅーきょうのじいん,ひんどぅー教の寺院,宗教,寺,建物 -🕍️ しなごーぐ,しゅうきょう,たてもの,ゆだやきょう,ゆだや教,宗教,建物 -⛩️️ しゅうきょう,しんとう,じんじゃ,たてもの,とりい -🕋️ いすらむきょう,いすらむ教,かーば,しゅうきょう,せいち,たてもの,めっか,宗教,建物,聖地 -⛲️ こうえん,ふんすい -⛺️ きゃんぷ,てんと -🌁️ きり,きりのとかい,とかい,都会,霧,霧の都会 -🌃️ ながれぼし,ほし,やけい,よる,よるのとかい,夜,夜の都会,夜景,星 -🏙️️ こうそうびる,とかい,びるぐん -🌄️ あさ,あさひ,ごらいこう,ご来光,たいよう,ひので,やまからひので,太陽,山から日の出,日の出,朝,朝日 -🌅️ あさ,あさひ,たいよう,ひので,太陽,日の出,朝,朝日 -🌆️ とかい,ゆうがた,ゆうぐれ,ゆうぐれのとかい,ゆうひ,よる,夕方,夕日,夕暮れ,夕暮れの都会,都会 -🌇️ たいよう,ゆうがた,ゆうぐれ,ゆうひ,夕方,夕日,夕暮れ,太陽 -🌉️ はし,やけい,よる,よるのはし,夜,夜の橋,夜景,橋 -♨️️ いいきぶん,おんせん,おんせんまーく -🎠️ めりーごーらんど,ゆうえんち,遊園地 -🛝️ こうえん,すべりだい,すべり台,ゆうぐ,公園,遊具 -🎡️ かんらんしゃ,ゆうえんち,観覧車,遊園地 -🎢️ こーすたー,じぇっとこーすたー,ゆうえんち,遊園地 -💈️ さんぱつ,とこや,ばーばー,びよういん,びようしつ,へあさろん,りはつてん,床屋,理髪店,美容室,美容院 -🎪️ いべんと,さーかす,さーかすてんと,てんと -🚂️ sl,えすえる,じょうききかんしゃ,のりもの,れっしゃ,乗り物,列車,蒸気機関車 -🚃️ でんしゃ,のりもの,れっしゃ,乗り物,列車,電車 -🚄️ しんかんせん,でんしゃ,のりもの,乗り物,新幹線,電車 -🚅️ 0けい,0系,0系新幹線,しんかんせん,ぜろけいしんかんせん,でんしゃ,のぞみ,のりもの,まるいしんかんせん,丸い新幹線,乗り物,新幹線,電車 -🚆️ でんしゃ,でんしゃしょうめん,のりもの,れっしゃ,乗り物,列車,電車,電車正面 -🚇️ ちかてつ,でんしゃ,のりもの,めとろ,地下鉄 -🚈️ でんしゃ,のりもの,らいとれーる,乗り物,電車 -🚉️ えき,でんしゃ,のりもの,ふみきり,れっしゃ,乗り物,列車,踏み切り,電車,駅 -🚊️ でんしゃ,のりもの,ろめんでんしゃ,ろめんでんしゃしょうめん,乗り物,路面電車,路面電車正面,電車 -🚝️ でんしゃ,のりもの,ものれーる,乗り物,電車 -🚞️ でんしゃ,とざんてつどう,とざんでんしゃ,のりもの,乗り物,登山鉄道,登山電車,電車 -🚋️ でんしゃ,のりもの,ろめんでんしゃ,乗り物,路面電車,電車 -🚌️ のりもの,ばす,乗り物 -🚍️ のりもの,ばす,ばすしょうめん -🚎️ とろりーばす,のりもの,ばす,乗り物 -🚐️ のりもの,ばす,まいくろばす,乗り物 -🚑️ きゅうきゅうしゃ,のりもの,救急車 -🚒️ しょうぼうしゃ,のりもの,乗り物,消防車 -🚓️ けいさつ,のりもの,ぱとかー,乗り物,警察 -🚔️ けいさつ,のりもの,ぱとかー,ぱとかーしょうめん -🚕️ たくしー,のりもの,乗り物 -🚖️ たくしー,たくしーしょうめん,たくしー正面,のりもの,乗り物 -🚗️ くるま,じどうしゃ,のりもの,乗り物,自動車,車 -🚘️ くるま,じどうしゃ,じどうしゃしょうめん,のりもの -🚙️ rv,rv車,suv,suvくるま,suv車,あーるぶいしゃ,あーるぶい車,えすゆーぶいしゃ,くるま,じどうしゃ,のりもの,乗り物,自動車,車 -🛻️ くるま,けいとらっく,とらっく,のりもの,はいたつ,ぴっくあっぷとらっく,乗り物,車,軽とらっく,配達 -🚚️ くるま,とらっく,のりもの,はいたつ,乗り物,車,配達 -🚛️ くるま,とらっく,とれーらー,のりもの,乗り物,車 -🚜️ くるま,とらくたー,のりもの,乗り物,車 -🏎️️ f1,えふわん,くるま,すぽーつ,のりもの,もーたーすぽーつ,れーしんぐかー -🏍️️ おーとばい,おーとれーす,すぽーつ,のりもの,ばいく,もーたーすぽーつ -🛵️ げんつき,すくーたー,原付 -🦽️ あくせしびりてぃ,いす,くるまいす,しゅどうしきくるまいす,手動式車椅子,椅子,車椅子 -🦼️ あくせしびりてぃ,いす,くるまいす,でんどうくるまいす,椅子,車椅子,電動車椅子 -🛺️ おーとりくしゃー,さんりんたくしー,たくしー,とぅくとぅく,りくしゃー,三輪たくしー -🚲️ じてんしゃ,のりもの,自転車 -🛴️ きっくすくーたー,きっくすけーたー,きっくぼーど -🛹️ すけぼー,すけーとぼーど,ぼーど -🛼️ すけーと,すぽーつ,ろーらーすけーと -🚏️ のりもの,ばすてい,ばすのりば,ばす乗り場,ばす停,乗り物 -🛣️️ こうそく,こうそくどうろ,どうろ -🛤️️ せんろ,てつどう -🛢️️ せきゆ,どらむかん -⛽️ がすすたんど,がそりん,がそりんすたんど,がそりんのずる -🛞️ しゃりん,すぽーく,たいや,ほいーる,車輪 -🚨️ ぱとかー,ぱとらんぷ -🚥️ しんごう,しんごうき,しんごうよこ,信号,信号横,信号機 -🚦️ しんごう,しんごうき,しんごうたて,信号,信号機,信号縦 -🛑️ すとっぷ,とまれ,とまれのひょうしき,ひょうしき,標識,止まれ,止まれの標識 -🚧️ こうじちゅう,さいん,つうこうどめ,工事中,通行止め -⚓️ いかり,ふね,みなと -🛟️ あんぜん,うきわ,きゅうめいぐ,きゅうめいふかん,らいふせーばー,れすきゅー,安全,救命具,救命浮環,浮き輪 -⛵️ のりもの,はんせん,ふね,ぼーと,よっと,りぞーと -🛶️ かぬー,かやっく,のりもの,ふね,ぼーと,乗り物,船 -🚤️ すぴーどぼーと,のりもの,ふね,ぼーと,乗り物,船 -🛳️️ きゃくせん,のりもの,ふね,りょかくせん -⛴️️ のりもの,ふぇりー,ふね -🛥️️ のりもの,ふね,ぼーと,もーたーぼーと -🚢️ のりもの,ふね,乗り物,船 -✈️️ のりもの,ひこうき -🛩️️ こがたき,こがたひこうき,のりもの,ひこうき -🛫️ のりもの,ひこうき,ひこうきりりく,りりく,乗り物,離陸,飛行機,飛行機離陸 -🛬️ ちゃくりく,のりもの,ひこうき,ひこうきちゃくりく,乗り物,着陸,飛行機,飛行機着陸 -🪂️ すかいだいびんぐ,ぱらぐらいだー,ぱらしゅーと -💺️ いす,ざせき,せき,席,座席,椅子 -🚁️ のりもの,へり,へりこぷたー,乗り物 -🚟️ けんすいしきものれーる,でんしゃ,のりもの,ものれーる,乗り物,懸垂式ものれーる,電車 -🚠️ けーぶるかー,ごんどら,のりもの,乗り物 -🚡️ ごんどら,のりもの,ろーぷうぇい,乗り物 -🛰️️ うちゅう,じんこうえいせい -🚀️ うちゅう,のりもの,ろけっと,乗り物,宇宙 -🛸️ ufo,うちゅう,そらとぶえんばん,のりもの,ゆーふぉー,乗り物,宇宙,空飛ぶ円盤 -🛎️️ べる,べるぼーいべる,ほてる -🧳️ すーつけーす,ぱっきんぐ,りょこう,りょこうかばん,旅行,旅行かばん -⌛️ すな,すなどけい,とけい -⏳️ すな,すながおちているすなどけい,すなどけい,とけい,砂時計 -⌚️ うでどけい,とけい -⏰️ あらーむ,とけい,めざまし,めざましどけい,時計 -⏱️️ すとっぷうぉっち,とけい -⏲️️ たいまー,とけい -🕰️️ おきどけい,とけい,まんてるくろっく -🕛️ 12:00,12じ,しょうご,じゅうにじ,とけい,時計,12じ -🕧️ 12:30,12じはん,とけい -🕐️ 1:00,1じ,いちじ,とけい,時計,1じ -🕜️ 1:30,1じはん,とけい -🕑️ 2:00,2じ,とけい,にじ,時計,2じ -🕝️ 2:30,2じはん,とけい -🕒️ 3:00,3じ,さんじ,とけい,時計,3じ -🕞️ 3:30,3じはん,とけい -🕓️ 4:00,4じ,とけい,よじ,時計,4じ -🕟️ 4:30,4じはん,とけい -🕔️ 5:00,5じ,ごじ,とけい,時計,5じ -🕠️ 5:30,5じはん,とけい -🕕️ 6:00,6じ,とけい,ろくじ,時計,6じ -🕡️ 6:30,6じはん,とけい -🕖️ 7:00,7じ,しちじ,とけい,ななじ,時計,7じ -🕢️ 7:30,7じはん,とけい -🕗️ 8:00,8じ,とけい,はちじ,時計,8じ -🕣️ 8:30,8じはん,とけい -🕘️ 9:00,9じ,くじ,とけい,時計,9じ -🕤️ 9:30,9じはん,とけい -🕙️ 10:00,10じ,じゅうじ,とけい,めざまし,時計,10じ -🕥️ 10:30,10じはん,とけい -🕚️ 11:00,11じ,じゅういちじ,とけい,時計,11じ -🕦️ 11:30,11じはん,とけい -🌑️ しんげつ,つき,新月,月 -🌒️ つき,はつかづき,はつづき,みかづき,三日月,初月,月 -🌓️ じょうげん,じょうげんのつき,つき,はんげつ,上弦,上弦の月,半月,月 -🌔️ かけづき,じゅうさんやつき,じゅうさんよつき,つき,とおかやのつき,とおかんやのつき,十三夜月,十日夜の月,月 -🌕️ つき,まんげつ,満月 -🌖️ いまちづき,つき,ねまちづき,ねまちのつき,寝待月,居待月,月 -🌗️ かげん,かげんのつき,つき,はんげつ,下弦,下弦の月,半月,月 -🌘️ ありあけづき,つき,みかづき,三日月,月,有明月 -🌙️ つき,みかづき,三日月,月 -🌚️ かお,かおのあるしんげつ,しんげつ,つき,新月,月,顔,顔のある新月 -🌛️ かお,かおのあるじょうげんのつき,じょうげんのつき,つき,みかづき,三日月,上弦の月,月,顔,顔のある上弦の月 -🌜️ かお,かおのあるかげんのつき,かげんのつき,つき -🌡️️ おんど,おんどけい,きおん,てんき -☀️️ たいよう,はれ -🌝️ かお,かおのあるまんげつ,つき,月,顔,顔のある満月 -🌞️ かお,かおのあるたいよう,たいよう,太陽,顔,顔のある太陽 -🪐️ てんたい,どせい,ほし,りんぐ,わくせい,わのあるわくせい,土星,天体,惑星,星,環のある惑星 -⭐️ すたー,ほし -🌟️ かがやき,きらきら,きらきらぼし,きらきら星,すたー,ほし,星,輝き -🌠️ すたー,ながれぼし,ほし,星,流れ星 -🌌️ あまのがわ,ぎんが,ほしぞら,みるきーうぇい,よぞら,夜空,天の川,星空,銀河 -☁️️ くも,くもり,てんき -⛅️ くも,くもり,くもりときどきはれ,たいよう,てんき,ときどきくもり -⛈️️ あめ,いなずま,いなづま,かみなり,くも,てんき,らいう -🌤️️ くも,たいよう,てんき,はれ,はれときどきくもり -🌥️️ くも,くもり,くもりいちじはれ,たいよう,てんき -🌦️️ あめときどきはれ,あめのちはれ,くも,くもり,たいよう,てんき,てんきあめ -🌧️️ あまぐも,あめ,くも,てんき -🌨️️ くも,てんき,ゆき,ゆきぐも -🌩️️ いなずま,いなづま,かみなり,くも,てんき,らいうん -🌪️️ たつまき,てんき,とっぷう -🌫️️ きり,てんき -🌬️️ かお,かおのあるかぜ,かぜ -🌀️ うず,うずまき,くるくる,ぐるぐる,さいくろん,たいふう,はりけーん,めまい,もやもや,台風,渦巻き -🌈️ にじ,れいんぼー,虹 -🌂️ あめ,かさ,てんき,とじたかさ,もちもの,傘,天気,持ち物,閉じた傘,雨 -☂️️ あめ,かさ,てんき,もちもの -☔️ あめ,かさ,かさとあめ,てんき,もちもの -⛱️️ かさ,すなはま,ぱらそる,びーち -⚡️ いなずま,いなづま,かみなり,きけん,こうでんあつ,でんき -❄️️ けっしょう,ゆき,ゆきのけっしょう -☃️️ ゆき,ゆきだるま,ゆきだるまとゆき -⛄️ ゆき,ゆきだるま -☄️️ うちゅう,すいせい -🔥️ ひ,ふぁいあー,ふぁいやー,ほのお,火,炎 -💧️ あせ,しずく,すいてき,たらーっ,なみだ,水滴,汗,涙 -🌊️ うみ,てんき,なみ,はろう,天気,波,波浪,海 -🎃️ かぼちゃ,はろうぃん,はろうぃんかぼちゃ,はろうぃーん -🎄️ くりすます,くりすますいぶ,くりすますつりー,つりー -🎆️ うちあげはなび,おまつり,お祭り,はなび,はなびたいかい,打ち上げ花火,花火,花火大会 -🎇️ おまつり,お祭り,せんこうはなび,はなび,線香花火,花火 -🧨️ かやく,だいなまいと,ばくちく,ばくはつ,ばくやく,火薬,爆発,爆竹,爆薬 -✨️ きらきら,すたー,ぴかぴか,ほし -🎈️ ばるーん,ふうせん,風船 -🎉️ おいわい,お祝い,くらっかー,ぱーてぃー,ぱーてぃーくらっかー -🎊️ おいわい,お祝い,くすだま,くす玉,ぱーてぃー -🎋️ たなばた,たんざく,にっぽん,にほん,わ,七夕,和,日本,短冊 -🎍️ おいわい,お祝い,かどまつ,しょうがつ,たけ,にっぽん,にほん,わ,和,日本,正月,竹,門松 -🎎️ おいわい,おだいりさま,おだいりよう,おだいり様,おひなさま,おひな様,お祝い,にっぽん,にほん,にんぎょう,ひなまつり,ひな祭り,わ,人形,和,日本 -🎏️ おいわい,お祝い,こいのぼり,こどものひ,子供の日 -🎐️ かぜ,すず,なつ,ふうりん,夏,鈴,風,風鈴 -🎑️ お月見,じゅうごや,じゅうごよ,すすき,つき,つきみ,十五夜,月,月見 -🧧️ あかいふうとう,おかね,おとしだま,お年玉,お金,こううん,ごしゅうぎ,ご祝儀,ほんぱお,ほんぼあ,幸運,紅包,赤い封筒 -🎀️ おいわい,お祝い,りぼん -🎁️ おいわい,お祝い,ぎふと,はこ,ぷれぜんと,箱 -🎗️️ おいわい,りぼん,りまいんだー,りまいんだーりぼん -🎟️️ ちけっと,にゅうじょうけん,にゅうじょうぱす,はんけん -🎫️ きっぷ,ちけっと,切符 -🎖️️ おいわい,くんしょう,ひょうしょう,めだる -🏆️ かっぷ,しょうはい,とろふぃー,ひょうしょう,ゆうしょうかっぷ -🏅️ すぽーつ,ひょうしょう,めだる,表彰 -🥇️ 1い,1位,きん,きんめだる,ごーるど,めだる,金,金めだる -🥈️ 2い,2位,ぎん,ぎんめだる,しるばー,めだる,銀,銀めだる -🥉️ 3い,3位,どう,どうめだる,ぶろんず,めだる,銅,銅めだる -⚽️ さっかー,さっかーぼーる,すぽーつ,ぼーる -⚾️ すぽーつ,ぼーる,やきゅう,やきゅうぼーる -🥎️ すぽーつ,そふとぼーる,へたなげ,ぼーる,下手投げ -🏀️ すぽーつ,ばすけ,ばすけっとぼーる,ぼーる -🏐️ すぽーつ,ばれー,ばれーぼーる,ぼーる -🏈️ あめふと,あめりかんふっとぼーる,すぽーつ,ぼーる,らぐびー,らぐびーぼーる -🏉️ すぽーつ,ぼーる,らぐびー,らぐびーぼーる -🎾️ すぽーつ,てにす,てにすぼーる,ぼーる,らけっと -🥏️ あるてぃめっと,ふらいんぐでぃすく,ふりすびー -🎳️ すぽーつ,たま,ぼうりんぐ,ぼーる,球 -🏏️ くりけっと,すぽーつ,ばっと,ぼーる -🏑️ すてぃっく,すぽーつ,ふぃーるどほっけー,ほっけー,ぼーる -🏒️ あいすほっけー,すてぃっく,すぽーつ,ぱっく,ほっけー -🥍️ ごーる,すてぃっく,すぽーつ,ぼーる,らくろす -🏓️ すぽーつ,たっきゅう,ぴんぽん,ぼーる,らけっと,卓球 -🏸️ しゃとる,すぽーつ,ばどみんとん,らけっと -🥊️ ぐろーぶ,すぽーつ,ぼくしんぐ,ぼくしんぐぐろーぶ -🥋️ からて,じゅうどう,すぽーつ,てこんどー,どうぎ,ぶどう,柔道,武道,空手,道着 -🥅️ ごーる,ごーるねっと,すぽーつ,ねっと -⛳️ ごるふ,すぽーつ,はた,ふらぐ,ふらっぐ,ほーる -⛸️️ あいすすけーと,すけーと,すぽーつ,ふぃぎゅあすけーと -🎣️ さかな,すぽーつ,つり,つりざお,釣り,釣り竿,魚 -🤿️ しゅのーけりんぐ,すきゅーば,すぽーつ,だいびんぐ ますく,だいびんぐますく,ますく -🎽️ えきでん,しゃつ,すぽーつ,たすき,ちょうきょりそう,まらそん,らんにんぐ,らんにんぐしゃつ,長距離走,駅伝 -🎿️ いた,すきー,すきーぶーつ,すとっく,すぽーつ,ゆき,板,雪 -🛷️ すけるとん,すぽーつ,そり,そりきょうぎ,そり競技,ぼぶすれー,りゅーじゅ -🥌️ かーりんぐ,すとーん,すぽーつ -🎯️ あたり,すぽーつ,だーつ,てき,ぶるずあい,まと,当たり,的 -🪀️ おもちゃ,かいてん,がんぐ,よーよー,回転,玩具 -🪁️ おもちゃ,かいと,がんぐ,たこ,たこあげ,凧揚げ,玩具 -🔫️ けんじゅう,じゅう,ぴすとる,ぶき,みずでっぽう,りぼるばー,拳銃,武器,水鉄砲,銃 -🎱️ えいとぼーる,すぽーつ,びりやーど,ぼーる -🔮️ うらない,うんめい,すいしょう,すいしょうだま,たま,占い,水晶,水晶玉,玉,運命 -🪄️ つえ,まじゅつ,まほうのつえ,杖,魔法の杖,魔術 -🎮️ げーむ,こんとろーら,こんとろーらー,てれびげーむ,びでおげーむ -🕹️️ げーむ,こんとろーら,じょいすてぃっく,すてぃっく,てれびげーむ -🎰️ すりーせぶん,すろっと,すろっとましん -🎲️ げーむ,さいころ,だいす -🧩️ かぎ,くみあわせ,じぐそーぱずる,ぱずる,ぴーす,組み合わせ,鍵 -🧸️ おもちゃ,がんぐ,くま,てでぃべあ,ぬいぐるみ,玩具 -🪅️ おいわい,お祝い,たんじょうび,にんぎょう,ぱーてぃー,ぴにゃーた,人形,誕生日 -🪩️ きらきら,だんす,でぃすこ,ぱーてぃー,みらーぼーる -🪆️ いれこ,にんぎょう,まとりょーしか,ろしあ,人形,入れ子 -♠️️ かーど,すぺーど,とらんぷ -♥️️ かーど,とらんぷ,はーと -♦️️ かーど,だいあ,だいや,とらんぷ -♣️️ かーど,くらぶ,くろーばー,とらんぷ -♟️️ こま,すてこま,すてごま,ちぇす,ちぇすのこま -🃏️ かーど,じじ,じょーかー,とらんぷ,ばば -🀄️ げーむ,じゃんぱい,ぱい,まーじゃん,まーじゃんぱい -🎴️ かーど,げーむ,はなふだ,花札 -🎭️ えんげい,えんげき,かめん,げいじゅつ,げきじょう,ぶたいげいじゅつ,演劇 -🖼️️ え,かいが,げいじゅつ,びじゅつかん -🎨️ あーと,え,えのぐぱれっと,ぱれっと,びじゅつかん,ふで,絵,絵の具ぱれっと,美術館 -🧵️ いと,いとまき,さいほう,ぬいばり,ひも,糸,糸巻き,縫い針,裁縫 -🪡️ さいほう,ししゅう,すてっち,ぬいばり,ぬう,はり,刺繍,縫い針,縫う,裁縫,針 -🧶️ あみもの,かぎばり,かぎ針,けいと,けいとだま,にっと,毛糸,毛糸玉,編み物 -🪢️ つな,ねじれ,のっと,ひも,むすびめ,ろーぷ,結び目,綱 -👓️ めがね -🕶️️ さんぐらす,めがね -🥽️ ごーぐる,すいえい,ほごめがね,ようせつ,保護めがね,水泳,溶接 -🥼️ いしゃ,かがくしゃ,じっけん,はくい,医者,実験,白衣,科学者 -🦺️ あんぜんべすと,きんきゅう,こうじ,ちょっき,はんしゃ,べすと,反射,安全べすと,工事,緊急 -👔️ しゃつ,たい,ねくたい,ふく,わいしゃつ,服 -👕️ tしゃつ,しゃつ,てぃーしゃつ,ふく,服,tしゃつ -👖️ じーぱん,じーんず,ずぼん,でにむ,ぱんつ,ふく,服 -🧣️ えりまき,くびまき,すかーふ,まふらー,襟巻き,首巻き -🧤️ てぶくろ,手袋 -🧥️ あうたー,おーばー,こーと,じゃけっと,ふく,服 -🧦️ くつした,そっくす,靴下 -👗️ どれす,ふく,わんぴーす,服 -👘️ きもの,ふく,服,着物 -🥻️ さりー,ふく,みんぞくいしょう,服,民族衣装 -🩱️ すいむうぇあ,みずぎ,わんぴーすのみずぎ,わんぴーすの水着,水着 -🩲️ したぎ,すいむうぇあ,ぱんつ,ぶりーふ,みずぎ,下着,水着 -🩳️ したぎ,しょーつ,すいむうぇあ,ぱんつ,みずぎ,下着,水着 -👙️ びきに,ふく,みずぎ,水着 -👚️ しゃつ,ふく,ふじんふく,ぶらうす,婦人服,服 -👛️ がまぐち,がまぐちざいふ,がま口,こぜにいれ,さいふ,小銭入れ,財布 -👜️ かばん,はんどばっぐ,ばっぐ -👝️ ばっぐ,ぽーち -🛍️️ かみてさげ,かみぶくろ,しょっぴんぐばっぐ,ばっぐ -🎒️ かばん,がっこう,しょうがくせい,しょうがっこう,ばっくぱっく,らんどせる,りゅっくさっく,学校,小学校,小学生 -🩴️ くつ,ごむぞうり,さんだる,とんぐさんだる,びーさん,びーちさんだる,靴 -👞️ かわぐつ,くつ,しんしぐつ,ろーふぁー,紳士靴,革靴,靴 -👟️ あすれちっくしゅーず,くつ,しゅーず,すにーかー,靴 -🥾️ きゃんぷ,とざんくつ,とざんぐつ,はいきんぐ,はいきんぐしゅーず,ばっくぱっく,ぶーつ,登山靴 -🥿️ すりっぽん,ばれえしゅーず,ふらっとしゅーず,ぺたんこくつ,ぺたんこ靴 -👠️ くつ,はいひーる,ひーる,ぴんひーる,ふく,靴 -👡️ くつ,さんだる,ふく,靴 -🩰️ くつ,しゅーず,だんす,とうしゅーず,ばれえ,靴 -👢️ くつ,ふく,ぶーつ,ろんぐぶーつ,靴 -👑️ おうかん,かんむり,くらうん,冠,王冠 -👒️ おんなのぼうし,ふじんぼうし,ぼうし,むぎわら,むぎわらぼうし,婦人帽子,帽子,麦わら,麦わら帽子 -🎩️ しるくはっと,ぼうし,帽子 -🎓️ かくぼう,そつぎょう,そつぎょうしき,ぼうし,卒業式 -🧢️ きゃっぷ,ぼうし,やきゅうぼう,帽子,野球帽 -🪖️ ぐんたい,ぐんようへるめっと,せんとう,へいし,へるめっと,みりたりー,兵士,戦闘,軍用へるめっと,軍隊 -⛑️️ きゅうきゅう,しろじゅうじ,しろじゅうじへるめっと,はくじゅうじ,はくじゅうじへるめっと,へるめっと -📿️ いのる,じゅず,ねっくれす,ねんじゅ,ねんず,ろざりお,念珠,数珠,祈る -💄️ くちべに,けしょう,りっぷ,りっぷすてぃっく,化粧,口紅 -💍️ じゅえりー,だいあ,だいや,ゆびわ,りんぐ,指輪 -💎️ じゅえりー,だいあ,だいや,ほうせき,宝石 -🔇️ おとなし,しょうおん,すぴーかー,すぴーかーしょうおん,すぴーかー消音,みゅーと,消音,音無し -🔈️ おんりょう,すぴーかー,ぼりゅーむ -🔉️ おんりょう,おんりょうしょう,すぴーかー,すぴーかーおんりょうしょう,すぴーかー音量小,ぼりゅーむ,音量,音量小 -🔊️ おんりょう,おんりょうだい,すぴーかー,すぴーかーおんりょうだい,すぴーかー音量大,だいおんりょう,ぼりゅーむ,大音量,音量,音量大 -📢️ かくせいき,すぴーかー,めがほん,拡声器 -📣️ かくせいき,すぴーかー,めがほん,拡声器 -📯️ ゆうびん,ゆうびんらっぱ,らっぱ,郵便,郵便らっぱ -🔔️ かね,すず,ちゃぺる,べる,鈴,鐘 -🔕️ おとなし,かね,しょうおん,すず,べるしょうおん,べる消音,みゅーと,消音,鈴,鐘,音無し -🎼️ おんがく,がくふ,ごせん,ごせんふ,すこあ,とおんきごう,と音記号,五線譜,楽譜,音楽 -🎵️ 8分音符,おんがく,おんぷ,はちぶおんぷ,れんぷ,連符,音楽,音符 -🎶️ 8分音符,おんがく,おんぷ,はちぶおんぷ,ふくすうのおんぷ,複数の音符,音楽,音符 -🎙️️ おんがく,すたじおまいく,まいく -🎚️️ おんがく,すらいだー,れべる,れべるすらいだー -🎛️️ おんがく,こんとろーる,こんとろーるつまみ,つまみ,のぶ -🎤️ うた,おんがく,からおけ,まいく,歌,音楽 -🎧️ いやふぉん,いやほん,おんがく,へっどふぉん,へっどほん -📻️ おんがく,じゅしんき,ほうそう,らじお -🎷️ おんがく,がっき,さきそふぉん,さくそふぉん,さっくす,楽器,音楽 -🪗️ あこーでぃおん,おんがく,がっき,じゃばら,楽器,音楽 -🎸️ おんがく,がっき,ぎたー,楽器,音楽 -🎹️ おんがく,がっき,きーぼーど,けんばん,ぴあの,楽器,鍵盤,音楽 -🎺️ おんがく,がっき,とらんぺっと,らっぱ,楽器,音楽 -🎻️ おんがく,がっき,ばいおりん,ゔぃおら,楽器,音楽 -🪕️ おんがく,がっき,ばんじょー,楽器,音楽 -🥁️ おんがく,がっき,たいこ,どらむ,太鼓,楽器,音楽 -🪘️ おんがく,がっき,こんが,たいこ,びーと,りずむ,太鼓,楽器,音楽 -📱️ けいたい,けいたいでんわ,すまほ,すまーとふぉん,携帯,携帯電話 -📲️ けいたい,けいたいじゅしん,けいたいでんわ,じゅしん,すまほ,すまーとふぉん,ちゃくしんちゅう,でんわはっしん,受信,携帯受信,携帯電話,着信中 -☎️️ おやき,くろでんわ,こていでんわ,でんわ,ぷっしゅほん,ぼたんしきでんわ -📞️ こき,じゅわき,でんわ,受話器,子機,電話 -📟️ ぺーじゃー,ぽけっとべる,ぽけべる -📠️ fax,でんわ,ふぁっくす,ふくごうき,複合機,電話,fax -🔋️ かんでんち,でんち,ばってりー,乾電池,電池 -🪫️ じゅうでんぶそく,じゅうでんやばい,でんちざんりょうていか,ばってりー,ばってりーざんりょうていか,ばってりーぶそく,ばってりー残量低下,充電不足,電池残量低下 -🔌️ こんせんと,でんげん,ぷらぐ,電源 -💻️ pc,こんぴゅーた,こんぴゅーたー,のーとぱそこん,ぱそこん,らっぷとっぷ -🖥️️ pc,こんぴゅーたー,ですくとっぷ,ですくとっぷぱそこん,ぱそこん,ぴーしー -🖨️️ いんさつき,こぴーき,ふくごうき,ぷりんた,ぷりんたー -⌨️️ pc,きーぼーど,こんぴゅーたー,ぱそこん,ぴーしー -🖱️️ pc,こんぴゅーたー,ぱそこん,ぴーしー,まうす -🖲️️ pc,こんぴゅーたー,とらっくぼーる,ぱそこん,ぴーしー -💽️ md,mo,えむおー,えむでぃー,こんぴゅーたー,みにでぃすく,md -💾️ fd,えふでぃー,こんぴゅーたー,でぃすく,ふろっぴー,ふろっぴーでぃすく,fd -💿️ cd,dvd,しーでぃー,でぃすく,ぶるれい,ぶるーれい,cd -📀️ blu-ray,cd,dvd,しーでぃー,でぃすく,でぃーぶいでぃ─,ぶるれい,ぶるーれい,dvd -🧮️ あばかす,そろばん,算盤 -🎥️ えいが,えいがかめら,かめら,むーびー,映画,映画かめら -🎞️️ えいが,えいがふぃるむ,ふぃるむ,ふれーむ,むーびー -📽️️ えいが,えいしゃき,ぷろじぇくたー,むーびー -🎬️ えいが,かちんこ -📺️ てれび,びでお -📷️ かめら,しゃしん -📸️ かめら,かめらふらっしゅ,しゃしん,ふらっしゅ,ふらっしゅをたいているかめら,ふらっしゅを焚いているかめら,写真 -📹️ かめら,どうが,びでお,びでおかめら,むーびー -📼️ vhs,どうが,びでお,びでおかせっと,びでおてーぷ,ぶいえっちえす,動画 -🔍️ けんさく,むしめがね,むしめがねひだり,るーぺ,虫眼鏡 -🔎️ けんさく,しょうさい,むしめがね,むしめがねみぎ,るーぺ,検索,虫めがね,虫眼鏡,虫眼鏡右 -🕯️️ あかり,きゃんどる,ろうそく -💡️ あかり,でんきゅう,ひらめき,ぴこーん,明かり,電球 -🔦️ あかり,かいちゅうでんとう,でんとう,らいと,懐中電灯,明かり -🏮️ あかちょうちん,いざかや,ちょうちん,のみや,居酒屋,赤ちょうちん,飲み屋 -🪔️ あかり,おいる,でぃやらんぷ,らんぷ,明かり -📔️ のーと,ひょうしつきのーと,ぶんぐ,ぶんぼうぐ,文具,文房具,表紙付きのーと -📕️ しょせき,とじたほん,ぶんぼうぐ,ほん,書籍,本,閉じた本 -📖️ しょせき,ひらいたほん,ぶんぼうぐ,ほん,書籍,本,開いた本 -📗️ しょせき,ぶんぼうぐ,ほん,みどりのほん,書籍,本,緑の本 -📘️ あおいほん,あおのほん,しょせき,ぶんぼうぐ,ほん,書籍,本,青の本 -📙️ おれんじのほん,おれんじの本,しょせき,ぶんぼうぐ,ほん,書籍,本 -📚️ しょせき,ぶんぼうぐ,ほん,ほんのやま,本 -📓️ のーと,ぶんぐ,ぶんぼうぐ,文具,文房具 -📒️ だいちょう,のーと,ぶんぐ,ぶんぼうぐ,りんぐのーと,台帳,文具,文房具 -📃️ かーる,しょるい,ぶんしょ,まきぺーじ,巻きぺーじ,文書,書類 -📜️ しょるい,すくろーる,ぶんしょ,ぶんぼうぐ,まきもの,巻き物,文書,書類 -📄️ しょるい,ぶんしょ,ぺーじ,文書,書類 -📰️ しんぶん,しんぶんし,にゅーす,新聞,新聞紙 -🗞️️ しんぶん,しんぶんし,にゅーす,まるめたしんぶん -📑️ ふせん,ぶんぐ,ぶんぼうぐ,ぺーじにふせん,ぺーじに付箋,ぺーじまーく,まーく,付箋,文具,文房具 -🔖️ しおり,たぐ,ふせん,ぶっくまーく,付箋,栞 -🏷️️ たぐ,にふだ,らべる -💰️ おかね,かねぶくろ,きんぶくろ,しょうきん,どる,どるぶくろ,どる袋 -🪙️ おかね,お金,きんか,ぎんか,こいん,こうか,こぜに,小銭,硬貨,金貨,銀貨 -💴️ えん,えんさつ,おかね,おさつ,お札,お金,こぎって,さつたば,つうか,ゆうりょう,円,円札,札束,通貨 -💵️ おかね,おさつ,お札,お金,さつたば,つうか,どる,どるさつ,どる札,札束,通貨 -💶️ おかね,おさつ,お札,お金,さつたば,つうか,ゆーろ,ゆーろさつ,ゆーろ札,札束,通貨 -💷️ おかね,おさつ,お札,お金,さつたば,つうか,ぽんど,ぽんどさつ,ぽんど札,札束,通貨 -💸️ おかね,おさつ,お札,お金,さつたば,どる,はねがはえたおかね,札束,羽が生えたお金 -💳️ おかね,かーど,きゃっしゅかーど,ぎんこう,くれじっとかーど -🧾️ かいけい,ぼき,りょうしゅうしょ,れしーと,会計,簿記,領収書 -💹️ いちば,かぶ,かぶか,かわせ,ぐらふ,しじょう,ちゃーと,市場,株,株価,為替 -✉️️ いーめーる,てがみ,でんしめーる,ふうとう,めーる,ゆうびん -📧️ eめーる,いーめーる,てがみ,でんしめーる,ふうとう,めーる,ゆうびん,封筒,手紙,郵便,電子めーる,eめーる -📨️ eめーる,いーめーる,じゅしん,じゅしんする,じゅしんちゅう,でんしめーる,めーる,めーるじゅしんちゅう,めーる受信中,受信中,電子めーる -📩️ eめーる,いーめーる,そうしん,そうしんする,でんしめーる,めーる,めーるじゅしん,めーるする,めーる受信,送信,電子めーる -📤️ いーめーる,そうしん,そうしんとれい,でんしめーる,とれい,めーる,送信box -📥️ いーめーる,じゅしん,じゅしんとれい,でんしめーる,とれい,めーる,受信box -📦️ こづつみ,たくはいびん,たっきゅうびん,だんぼーる,にもつ,ぱっく,ぱっけーじ,段ぼーる -📫️ てがみあり,とじた,とじたゆうびんうけ,はたつきぽすと,ぽすと,めーる,ゆうびん,ゆうびんうけ,ゆうびんばこ,郵便受け -📪️ てがみなし,とじた,とじたゆうびんうけ,はたつきぽすと,ぽすと,めーる,ゆうびん,ゆうびんうけ,ゆうびんばこ,郵便受け -📬️ てがみあり,ひらいた,ひらいたゆうびんうけ,ぽすと,ゆうびんうけ,ゆうびんばこ -📭️ てがみなし,ひらいた,ひらいたゆうびんうけ,ぽすと,ゆうびんうけ,ゆうびんばこ -📮️ てがみ,ぽすと,ゆうびん,ゆうびんばこ,ゆうびんぽすと,手紙,郵便,郵便ぽすと,郵便箱 -🗳️️ せんきょ,とうひょうばこ -✏️️ えんぴつ,ぶんぐ,ぶんぼうぐ -✒️️ えでぃっと,ぶんぐ,ぶんぼうぐ,ぺん,ぺんさき,まんねんひつ -🖋️️ ぶんぐ,ぶんぼうぐ,まんねんひつ -🖊️️ ぶんぐ,ぶんぼうぐ,ぺん,ぼーるぺん -🖌️️ えのぐ,えふで,ぶんぐ,ぶんぼうぐ -🖍️️ くれよん,ぶんぐ,ぶんぼうぐ -📝️ えんぴつとめも,かみとえんぴつ,ぶんぐ,ぶんぼうぐ,めも,文具,文房具,紙と鉛筆,鉛筆とめも -💼️ かばん,ぶりーふけーす -📁️ ふぁいる,ふぉるだー,ぶんぐ,ぶんぼうぐ,文具,文房具 -📂️ ひらいたふぉるだー,ふぁいる,ふぉるだー,ぶんぐ,ぶんぼうぐ,文具,文房具,開いたふぉるだー -🗂️️ いんでっくす,かーどふぉるだー,ふぉるだー,ぶんぐ,ぶんぼうぐ -📅️ かれんだー,すけじゅーる,ひづけ,よてい,予定,日付 -📆️ かれんだー,すけじゅーる,ひづけ,ひめくり,ひめくりかれんだー,よてい,予定,日めくりかれんだー,日付 -🗒️️ のーと,ぶんぐ,ぶんぼうぐ,めもちょう,りんぐめも -🗓️️ かれんだー,すけじゅーる,つきめくりかれんだー,ひづけ,よてい -📇️ かーどいんでっくす,ぶんぐ,ぶんぼうぐ,めいしほるだー,ろーろでっくす,名刺ほるだー,文具,文房具 -📈️ うえむき,うわむき,おれせんぐらふ,ぐらふ,ぐらふうえむき,ぐらふうわむき,ぐらふ上向き,じょうしょう,上向き,上昇,折れ線ぐらふ -📉️ おれせんぐらふ,かこう,ぐらふ,ぐらふしたむき,ぐらふ下向き,したむき,下向き,下降,折れ線ぐらふ -📊️ ぐらふ,ちゃーと,ぼうぐらふ,棒ぐらふ -📋️ くりっぷ,くりっぷぼーど,ぶんぐ,ぶんぼうぐ -📌️ おしぴん,がびょう,ぴん,ぶんぐ,ぶんぼうぐ,ぷっしゅぴん,押しぴん,文具,文房具,画鋲 -📍️ おしぴん,がびょう,ぴん,ぶんぐ,ぶんぼうぐ,ぷっしゅぴん,まるいおしぴん,丸い押しぴん,押しぴん,文具,文房具,画びょう -📎️ かみくりっぷ,くりっぷ,ぜむくりっぷ,ぶんぐ,ぶんぼうぐ,ぺーぱーくりっぷ,文具,文房具,紙くりっぷ -🖇️️ かみくりっぷ,つながったくりっぷ,ぶんぐ,ぶんぼうぐ,ぺーぱーくりっぷ -📏️ じょうぎ,ぶんぐ,ぶんぼうぐ,ものさし,定規,文具,文房具 -📐️ さんかくじょうぎ,じょうぎ,ぶんぐ,ぶんぼうぐ,三角定規,定規,文具,文房具 -✂️️ かっと,きる,はさみ,びよういん,ぶんぐ,ぶんぼうぐ -🗃️️ かーどふぁいるぼっくす,はこ,ふぁいる,ぶんぐ,ぶんぼうぐ,ぼっくす -🗄️️ きゃびねっと,ひきだし,ふぁいる,ふぁいるきゃびねっと -🗑️️ くずかご,ごみかご,ごみばこ -🔒️ かぎ,じょう,せじょう,とじたじょう,ろっく,ろっくおん,鍵 -🔓️ かいじょう,かぎ,じょう,ひらいたじょう,ろっく,ろっくおふ,鍵 -🔏️ かぎ,とじたじょうとぺん,ぷらいばしー,ろっく,鍵,閉じた錠とぺん -🔐️ あんぜん,かぎ,きー,せきゅりてぃ,とじたじょうとかぎ,ろっく,ろっくかくにん,安全,鍵,閉じた錠と鍵 -🔑️ かぎ,きー,ぱすわーど,鍵 -🗝️️ きー,てがかり,ぱすわーど,ふるいかぎ -🔨️ かなづち,こうぐ,とんかち,はんまー,工具 -🪓️ おの,き,こうぐ,はちぇっと,まきわり,工具,斧,木,薪割り -⛏️️ こうぐ,さいくつ,つるはし -⚒️️ かなづち,こうぐ,つるはし,とんかち,はんまー,はんまーとつるはし -🛠️️ かなづち,こうぐ,とんかち,はんまーとれんち,れんち -🗡️️ たんとう,だがー,ないふ,ぶき -⚔️️ かたな,くろすしたけん,けん,つるぎ,ぶき -💣️ ばくだん,爆弾 -🪃️ おもちゃ,おーすとらりあ,かえってくる,がんぐ,はねかえり,ぶき,ぶーめらん,武器,玩具,跳ね返り,返って来る -🏹️ いて,しゃしゅ,せいざ,ぶき,や,ゆみや,射手,弓矢,星座,武器,矢 -🛡️️ しーるど,たて,ぼうぐ -🪚️ こうぐ,だいく,のこ,のこぎり,は,もっこう,刃,大工,工具,木工 -🔧️ こうぐ,すぱな,れんち,工具 -🪛️ こうぐ,すくりゅーどらいばー,どらいばー,ねじまわし,ねじ回し,工具 -🔩️ こうぐ,なっと,ぼると,ぼるととなっと,ぼると&なっと,工具 -⚙️️ ぎあ,こうぐ,はぐるま -🗜️️ くらんぷ,こうぐ,ばいす,まんりき -⚖️️ かがく,じっけん,せいざ,てんびん,はかり -🦯️ あくせしびりてぃ,しかく,しょうがい,しろつえ,つえ,はくじょう,白杖,視覚,障がい -🔗️ りんく,りんくしんぼる -⛓️️ くさり,ちぇーん -🪝️ かけがね,かけきん,とめがね,ひっかけ,ふっく,引っ掛け,掛け金,留め金 -🧰️ きかいこう,こうぐばこ,せいびし,つーるぼっくす,めかにっく,工具箱,整備士,機械工 -🧲️ u字型磁石,ていてつ,まぐねっと,ゆーじがたじしゃく,蹄鉄 -🪜️ こうしょさぎょう,すてっぱー,のぼる,はしご,登る,高所作業 -⚗️️ かがく,じっけん,じょうりゅうき -🧪️ かがく,しけんかん,じっけん,らぼ,化学,実験,試験管 -🧫️ せいぶつがく,ばいよう,ばくてりあ,ぺとりさら,ぺとり皿,培養,生物学 -🧬️ dna,いでんし,しんか,せいぶつがく,でぃーえぬえー,生物学,進化,遺伝子 -🔬️ かがく,けんきゅう,けんびきょう,さいえんす,研究,科学,顕微鏡 -🔭️ かがく,かんそく,さいえんす,てんたいかんそく,ぼうえんきょう,天体観測,望遠鏡,科学,観測 -📡️ あんてな,えいせいあんてな,でんぱ,ぱらぼら,ぱらぼらあんてな,衛星あんてな,電波 -💉️ いしゃ,くすり,ちゅうしゃ,ちゅうしゃき,びょうき,医者,注射,注射器,病気,薬 -🩸️ いしゃ,けが,けつえき,けんけつ,せいり,医者,献血,生理,血液 -💊️ いしゃ,かぜぐすり,かぷせる,くすり,びょうき,医者,病気,薬 -🩹️ きず,くすり,けが,てあて,ばんそうこう,傷,手当て,絆創膏,薬 -🩼️ けが,しょうがい,すてっき,つえ,ほこうほじょ,まつばづえ,怪我,杖,松葉杖,歩行補助,障がい -🩺️ いしゃ,しんぞう,ちょうしんき,びょうき,医者,心臓,病気,聴診器 -🩻️ x線,いしゃ,えっくすせん,こっかく,ほね,れんとげん,医者,骨,骨格 -🚪️ と,とびら,どあ,戸,扉 -🛗️ あくせしびりてぃ,えれべーたー,しょうこうき,ばりあふりー,りふと,昇降機 -🪞️ かがみ,すがたみ,はんしゃ,みだしなみ,みらー,反射,姿見,身だしなみ,鏡 -🪟️ あける,かんき,ながめ,ふれーむ,まど,換気,眺め,窓,開ける -🛏️️ すいみん,ねる,べっど,ほてる -🛋️️ そふぁ,そふぁとらんぷ,ほてる,らんぷ -🪑️ いす,かぐ,こしかけ,しーと,ちぇあ,家具,椅子,腰掛け -🚽️ おてあらい,お手洗い,といれ,べんき,べんざ,便器,便座 -🪠️ きゅういんかっぷ,すっぽん,つうすいかっぷ,といれ,ぷらんじゃー,らばーかっぷ,吸引かっぷ,通水かっぷ -🚿️ しゃわー,ふろ,風呂 -🛁️ ばすたぶ,ふろ,よくそう,浴槽,風呂 -🪤️ おびきよせる,おびき寄せる,しかけ,ねずみとり,ねずみ捕り,ばね,まうすとらっぷ,わな,仕掛け -🪒️ かみそり,は,ひげそり,れーざー,刃,剃刀 -🧴️ けしょうすい,しゃんぷー,ひやけどめ,ろーしょん,化粧水,日焼け止め -🧷️ あんぜんぴん,とめぴん,安全ぴん,止めぴん -🧹️ そうじ,はく,ほうき,まじょ,掃く,掃除,魔女 -🧺️ かご,しゅうかく,せんたく,ぴくにっく,収穫,洗濯 -🧻️ きっちんぺーぱー,といれっとぺーぱー,ぺーぱーたおる -🪣️ おけ,ばけつ,ぽりばけつ,ようき,容器 -🧼️ せっけん,そーぷ,ふろ,石けん,風呂 -🫧️ あぶく,あわ,しゃぼんだま,しゃぼん玉,すいちゅう,せっけん,ばぶる,水中,泡,石けん -🪥️ えいせい,おていれ,お手入れ,せんめんじょ,はぶらし,はみがき,むしば,歯ぶらし,歯磨き,洗面所,虫歯,衛生 -🧽️ かいめん,きゅうしゅう,すぽんじ,そうじ,吸収,掃除,海綿 -🧯️ しょうか,しょうかき,しょうかきぐ,しょうぼう,消火,消火器,消火器具,消防 -🛒️ かいもの,かーと,しょっぴんぐ,しょっぴんぐかーと,すーぱー,買い物 -🚬️ きつえん,たばこ,喫煙,煙草 -⚰️️ かんおけ,し,ひつぎ,まいそう -🪦️ おはか,お墓,せきひ,はかば,ぼせき,ぼち,まいそう,埋葬,墓地,墓場,墓石,石碑 -⚱️️ いはい,こつつぼ,し,そうぎ,まいそう -🧿️ おまもり,お守り,じゃし,なざーる,なざーるぼんじゅう,なざーる・ぼんじゅう,びーず,まよけ,邪視,魔除け -🪬️ おまもり,お守り,ごふ,て,はむさ,ふぁーてぃま,みりあむ,め,手,目,護符 -🗿️ かお,ぞう,もあい,もやい,もやい像,像,顔 -🪧️ いぎ,かんばん,こうぎ,しゅちょう,でも,ぷらかーど,主張,抗議,異議,看板 -🪪️ id,あいでぃーかーど,うんてんめんきょしょう,かーど,せきゅりてぃ,みぶんしょう,みぶんしょうめいしょ,身分証,身分証明書,運転免許証 -🏧️ atm,えーてぃーえむ,ぎんこう,げんきんじどうあずけばらいき,現金自動預け払い機,銀行,atm -🚮️ くずかご,ごみすて,ごみばこ,ごみ捨て,ごみ箱 -🚰️ いんりょうすい,すいどう,のみみず,みず,水,水道,飲み水,飲料水 -♿️ くるまいす,ばりあふりー,ばりやふりー -🚹️ wc,おてあらい,けしょうしつ,だんし,だんしといれ,だんせい,といれ,男性 -🚺️ wc,おてあらい,けしょうしつ,じょし,じょしといれ,じょせい,といれ,女性 -🚻️ wc,おてあらい,お手洗い,けしょうしつ,だぶりゅーしー,といれ,化粧室 -🚼️ あかちゃん,あかんぼう,べびー,べびーしーと,赤ちゃん -🚾️ wc,おてあらい,お手洗い,けしょうしつ,だぶりゅーしー,といれ,化粧室 -🛂️ しゅつにゅうこく,しゅつにゅうこくしんさ,にゅうしゅっこく,ぱすぽーとこんとろーる,入出国,出入国,出入国審査 -🛃️ ぜいかん,つうかん,税関,通関 -🛄️ すーつけーす,てにもつ,てにもつうけとり,ばげっじくれーむ,手荷物,手荷物受取 -🛅️ すーつけーす,てにもつ,てにもつあずかり,ろっかー,手荷物,手荷物預かり -⚠️️ きけん,けいこく,ちゅうい,ひょうしき,! -🚸️ がっこう、ようちえん、ほいくしょとうあり,こども,じどうおうだん,つうがくろ,ひょうしき,児童横断,子供,学校、幼稚園、保育所等あり,標識,通学路 -⛔️ きせい,しゃりょうしんにゅうきんし,たちいりきんし,どうろ,ひょうしき -🚫️ きせい,きんし,しゃりょうつうこうどめ,どうろ,ひょうしき,標識,禁止,規制,車両通行止め,道路 -🚳️ きせい,きんし,じてんしゃ,じてんしゃきんし,どうろ,ひょうしき,標識,禁止,自転車,自転車禁止,規制,道路 -🚭️ きんえん,きんし,たばこ,禁煙 -🚯️ きんし,ごみ,ごみすてきんし,ごみ捨て禁止,ぽいすてきんし,ぽい捨て禁止,禁止 -🚱️ いんようふか,きんし,のめないみず,禁止,飲めない水,飲用不可 -🚷️ きせい,きんし,どうろ,ひょうしき,ほこうしゃたちいりきんし,標識,歩行者立入禁止,禁止,規制,道路 -📵️ けいたいきんし,けいたいでんわきんし,すまほきんし,すまほ禁止,すまーとふぉんきんし,すまーとふぉん禁止,携帯禁止,携帯電話禁止 -🔞️ 18きん,18さいみまんきんし,18歳未満禁止,18禁,きんし,みせいねん,未成年,禁止,18きん -☢️️ きけん,ほうしゃせい,ほうしゃせん,ほうしゃのう -☣️️ きけん,ばいおはざーど,ゆうがいぶっしつ -⬆️️ うえ,うえやじるし,きた,やじるし -↗️️ ほくとう,みぎうえ,みぎうえやじるし,やじるし -➡️️ ひがし,みぎ,みぎやじるし,やじるし -↘️️ なんとう,みぎした,みぎしたやじるし,やじるし -⬇️️ した,したやじるし,みなみ,やじるし -↙️️ なんせい,ひだりした,ひだりしたやじるし,やじるし -⬅️️ にし,ひだり,ひだりやじるし,やじるし -↖️️ ひだりうえ,ひだりうえやじるし,ほくせい,やじるし -↕️️ じょうげ,じょうげやじるし,やじるし,やじるしじょうげ -↔️️ さゆう,さゆうやじるし,やじるし,やじるしさゆう -↩️️ かーぶ,きょくせん,ひだり,みぎかーぶやじるし,やじるし -↪️️ かーぶ,きょくせん,ひだりかーぶやじるし,みぎ,やじるし -⤴️️ うえ,うえかーぶやじるし,うえやじるし,かーぶ,きょくせん,ぐっど,やじるし -⤵️️ かーぶ,きょくせん,した,したかーぶやじるし,したやじるし,ばっど,やじるし -🔃️ くりかえし,さいよみこみ,とけいまわり,みぎまわり,みぎまわりたてやじるし,やじるし,りろーど,右回り,右回り縦矢印,時計回り,矢印,繰り返し -🔄️ くりかえし,はんとけいまわり,ひだりまわりやじるし,やじるし,りぴーと,反時計回り,左回り矢印,矢印,繰り返し -🔙️ back,backやじるし,back矢印,ばっく,ばっくやじるし,もどる,やじるし,戻る,矢印 -🔚️ end,endやじるし,end矢印,えんど,えんどやじるし,おわり,やじるし,矢印,終わり -🔛️ on,onやじるし,on矢印,おん,おんやじるし,やじるし,矢印 -🔜️ soon,soonやじるし,soon矢印,すぐ,すーん,すーんやじるし,やじるし,矢印 -🔝️ top,topやじるし,top矢印,うえ,とっぷ,とっぷやじるし,やじるし,上,矢印 -🛐️ いのり,しゅうきょう,れいはいじょ,宗教,礼拝所,祈り -⚛️️ げんし,げんしのしんぼる,げんそ,ぶんし,むしんろん -🕉️️ おーむ,しゅうきょう,ひんどぅーきょう -✡️️ しゅうきょう,だびでのほし,ほし,ゆだやきょう -☸️️ しゅうきょう,てんぼうりん,てんぽうりん,ぶっきょう,ほうりん -☯️️ いんやん,いんよう,しゅうきょう,どうきょう -✝️️ きりすときょう,くろす,しゅうきょう,じゅうじか -☦️️ きりすときょう,しゅうきょう,じゅうじか,はったんじゅうじか -☪️️ いすらむきょう,しゅうきょう,ほし,ほしとみかづき,みかづき -☮️️ ぴーすまーく,へいわ -🕎️ しゅうきょう,しょくだい,めのらー,めのーらー,ゆだやきょう,ゆだや教,宗教,燭台 -🔯️ うらない,だびで,ほし,ろくぼうせい,ろっかくせい,六芒星,六角星,占い,星 -♈️ おひつじざ,せいざ -♉️ おうしざ,せいざ -♊️ せいざ,ふたござ -♋️ かにざ,せいざ -♌️ ししざ,せいざ -♍️ おとめざ,せいざ -♎️ せいざ,てんびんざ -♏️ さそりざ,せいざ -♐️ いてざ,せいざ -♑️ せいざ,やぎざ -♒️ せいざ,みずがめざ -♓️ うおざ,せいざ -⛎️ せいざ,へびつかいざ,へびつかい座,へびつかざ -🔀️ こうさ,しゃっふる,しゃっふるぼたん,ぼたん,やじるし,交差,矢印 -🔁️ くりかえし,ぜんきょく,ぼたん,やじるし,りぴーとぼたん,全曲,矢印,繰り返し -🔂️ 1きょくりぴーとぼたん,1曲りぴーとぼたん,くりかえし,ぼたん,やじるし,りぴーと,矢印,繰り返し -▶️️ さいせい,さいせいぼたん,つぎへ,ぷれい,ぼたん,みぎむきさんかく,やじるし -⏩️ はやおくり,はやおくりぼたん,ぼたん,みぎ,やじるし,早送り -⏭️️ つぎのきょくぼたん,つぎのしーん,つぎのとらっく,ぼたん,やじるし -⏯️️ いちじていし,いちじていしぼたん,さいせい,さいせいぼたん,さいせい/いちじていしぼたん,ぼたん,やじるし -◀️️ ぎゃくさいせい,ぎゃくさいせいぼたん,ひだりむきさんかく,ぼたん,まきもどし,もどる,やじるし -⏪️ はやもどし,はやもどしぼたん,ひだり,まきもどし,もどる,やじるし,巻き戻し -⏮️️ ぼたん,まえのきょくぼたん,まえのしーん,まえのとらっく,やじるし -🔼️ うえ,うえぼたん,うえむきさんかく,さんかく,ぼたん,やじるし,三角,上,上ぼたん,矢印 -⏫️ うえ,こうそくじょうぼたん,にじゅう,ぼたん,やじるし,上二重三角 -🔽️ さんかく,した,したぼたん,したむきさんかく,ぼたん,やじるし,三角,下,下ぼたん,矢印 -⏬️ こうそくしたぼたん,した,にじゅう,ぼたん,やじるし,下二重三角 -⏸️️ いちじていし,いちじていしぼたん,ぼたん,ぽーず -⏹️️ すとっぷ,ていし,ていしぼたん,ぼたん -⏺️️ ぼたん,ろくおん,ろくおんろくがぼたん,ろくが -⏏️️ いじぇくと,とりだし,とりだしぼたん,ぼたん -🎦️ えいが,えいがかん,かめら,どうが,動画,映画,映画館 -🔅️ あかるさ,きど,くらい,ていきど,ぶらいとねす,低輝度,明るさ,暗い,輝度 -🔆️ あかるい,あかるさ,きど,こうきど,ぶらいとねす,明るい,明るさ,輝度,高輝度 -📶️ あんてなまーく,けいたい,けいたいでんわ,けんない,すまほ,すまーとふぉん,でんぱ,圏内,携帯電話,電波 -📳️ けいたい,けいたいでんわ,すまほ,すまーとふぉん,まなーもーど,携帯,携帯電話 -📴️ けいたい,けいたいでんわ,けいたいでんわでんげんおふ,すまほ,すまーとふぉん,でんげんおふ,携帯電話電源おふ,電源off,電源おふ -♀️️ おんな,しんぼる,じょせい,じょせいのまーく -♂️️ おとこ,しんぼる,だんせい,だんせいのまーく -⚧️️ lgbt,しんぼる,せいべつ,てぃーじー,とらんすじぇんだーのまーく -✖️️ かけざん,かける,きごう,きゃんせる,じょうざん,ばつ,ぺけ -➕️ +,かさん,きごう,たしざん,たす,ぷらす,+ -➖️ -,きごう,げんざん,ひきざん,ひく,まいなす,ー -➗️ /,÷,きごう,じょさん,わりざん,わる,・,/ -🟰️ いこーる,すうがく,とうごう,ひとしい,ふとじのとうごう,太字の等号,数学,等しい,等号 -♾️️ えいえん,ばんぶつ,むげん,むげんだい -‼️️ !,えくすくらめーしょんまーく,きごう,にじゅうかんたんふ,びっくりまーく,やくもの,!,!! -⁉️️ !,!?,?,かんたんふぎもんふ,きごう,はてなまーく,びっくりまーく,!,!?,? -❓️ ?,あかいぎもんふ,きごう,ぎもんふ,くえすちょん,くえすちょんまーく,はてな,はてなまーく,やくもの,? -❔️ ?,きごう,くえすちょん,くえすちょんまーく,しろいぎもんふ,はてな,はてなまーく,やくもの,? -❕️ !,えくすくらめーしょんまーく,きごう,しろいかんたんふ,びっくり,びっくりまーく,やくもの,! -❗️ !,あかいかんたんふ,えくすくらめーしょんまーく,かんたんふ,きごう,びっくりまーく,やくもの,! -〰️️ きごう,ちょうおんきごう,なみせん,はせん,やくもの,ー -💱️ えん,おかね,お金,がいかりょうがえ,つうか,どる,りょうがえ,両替,円,外貨両替,通貨 -💲️ おかね,お金,つうか,どる,どるきごう,どる記号,通貨 -⚕️️ あすくれぴおすのつえ,いしゃ,いりょう,いりょうのしんぼる,ちりょう -♻️️ さいせい,さいりよう,じゅんかんやじるし,りさいくる,りさいくるまーく -⚜️️ えんぶれむ,ふらんすおうけ,ふるーるどりす,もんしょう,ゆり -🔱️ いかり,うみ,えんぶれむ,とらいでんと,みつまた,三つ又,海,錨 -📛️ なふだ,ほいくえん,ほいくしょ,ようちえん,保育園,保育所,名札,幼稚園 -🔰️ しょしんしゃ,しょしんしゃまーく,はつ,わかばまーく,初心者,初心者まーく,若葉まーく -⭕️ えん,きごう,ふといまる,まる,わ -✅️ きごう,しろぬきのちぇっく,ちぇっく,ちぇっくまーく,ぴん -☑️️ きごう,ちぇっく,ちぇっくぼっくす,ちぇっくまーく -✔️️ きごう,ちぇっく,ちぇっくまーく,ふとじのちぇっく -❌️ かけざん,きごう,きゃんせる,じょうざん,ばつ,ぺけ -❎️ かけざん,きごう,きゃんせる,しろぬきのばつ,じょうざん,ばつ,ぺけ -➰️ きごう,ちょうおん,るーぷ,わっか -➿️ きごう,だぶるるーぷ,ふりーだいやる,るーぷ,わっか -〽️️ あんてん,いおりてん,うたきごう,きごう,やくもの -✳️️ あすたりすく,かざり,きごう,はっかくあすたりすく,ほし,やくもの -✴️️ かざり,きごう,すぱーく,はっかくせい,ほし,やくもの -❇️️ あすたりすく,きごう,すぱーく,すぱーくる,やくもの -©️️ cまーく,きごう,こぴーらいと,しーまーく,ちょさくけん,ちょさくけんまーく -®️️ あーるまーく,きごう,とうろくしょうひょう,とうろくしょうひょうまーく -™️️ tmまーく,きごう,しょうひょう,しょうひょうまーく,てぃーえむまーく,とれーどまーく -#️⃣️ #,かこみすうじ,しゃーぷ,しゃーぷだいやる -*️⃣️ *,かこみすうじ -0️⃣️ 0,かこみすうじ,0 -1️⃣️ 1,かこみすうじ,1 -2️⃣️ 2,かこみすうじ,2 -3️⃣️ 3,かこみすうじ,3 -4️⃣️ 4,かこみすうじ,4 -5️⃣️ 5,かこみすうじ,5 -6️⃣️ 6,かこみすうじ,6 -7️⃣️ 7,かこみすうじ,7 -8️⃣️ 8,かこみすうじ,8 -9️⃣️ 9,かこみすうじ,9 -🔟️ 10,かこみすうじ,囲み数字,囲み数字: 10,10 -🔠️ abcd,あるふぁべっと,えいおおもじのにゅうりょく,えいじ,えーびーしーでぃ,おおもじ,だいもんじ,ろーまじ,ろーま字,大文字,英大文字の入力,英字,abcd -🔡️ abcd,あるふぁべっと,えいこもじのにゅうりょく,えいじ,えーびーしーでぃー,こもじ,ろーまじ,ろーま字,小文字,英字,英小文字の入力,abcd -🔢️ 1234,すうじ,すうじのにゅうりょく,にゅうりょく,入力,数字,数字の入力,1234 -🔣️ 〒♪&%,〒♪&%,〒♪&ぱーせんと,きごう,きごうのにゅうりょく,にゅうりょく,入力,記号,記号の入力 -🔤️ abc,あるふぁべっと,えいご,えいじ,えいじのにゅうりょく,えいびーしー,えーびーしー,ろーまじ,ろーま字,英字,英字の入力,英語,abc -🅰️️ a,えいがた,えーがた,けつえきがた,けつえきがたえいがた,けつえきがたえーがた,a,a型 -🆎️ ab,ab型,えいびーがた,えーびーがた,けつえきがた,けつえきがたえいびーがた,けつえきがたえーびーがた,血液型,血液型ab型,ab,ab型 -🅱️️ b,けつえきがた,けつえきがたびーがた,びーがた,b,b型 -🆑️ cl,clまーく,くりあ,しーえる,しーえるまーく,cl -🆒️ cool,coolまーく,くーる,くーるまーく,cool -🆓️ freeまーく,ただ,ふりー,ふりーまーく,むりょう,無料,free -ℹ️️ i,iまーく,あい,あいまーく,いんふぉめーしょん,いんふぉめーしょんしんぼる,じょうほう -🆔️ id,idまーく,あいでぃ─,あいでぃー,あいでぃーまーく,id -Ⓜ️️ m,えむ,ちかてつ,まる,まるいえむまーく -🆕️ new,newまーく,あたらしい,にゅー,にゅーまーく,新しい,new -🆖️ ng,ngまーく,えぬじー,えぬじーまーく,ぼつ,ng -🅾️️ o,おーがた,けつえきがた,けつえきがたおーがた,o,o型 -🆗️ ok,okまーく,おっけー,おーけー,おーけーまーく,ok -🅿️️ p,ちゅうしゃ,ちゅうしゃじょう,ぱーきんぐ,ぴー,ぴーまーく -🆘️ sos,sosまーく,えすおーえす,えすおーえすまーく,たすけて,助けて,sos -🆙️ up,upまーく,あっぷ,あっぷまーく,こうしん,更新,up -🆚️ vs,vsまーく,ばーさす,ばーさすまーく,ぶいえす,ぶいえすまーく,ゔぁーさす,ゔぃえす,vs -🈁️ ここ,ここのまーく -🈂️️ さ,さのまーく,さーびす,さーびすりょう -🈷️️ げつがく,つき,つきぎめ,つきまーく,月 -🈶️ ゆう,ゆうげん,ゆうまーく,ゆうりょう,有,有まーく,有料,有限 -🈯️ してい,していせき,ゆび,ゆびまーく -🉐️ おとく,お得,とく,まるとく,まる得,得 -🈹️ でぃすかうんと,わり,わりびき,わりまーく,割,割まーく,割引 -🈚️ ただ,む,むまーく,むりょう -🈲️ きん,きんし,きんまーく,げんきん,厳禁,禁,禁まーく,禁止 -🉑️ か,かのう,かまーく,きょか,可,可まーく,可能,許可 -🈸️ しん,しんせい,しんまーく,もうしこみ,もうしこみまーく,申,申し込み,申まーく,申請 -🈴️ ごう,ごうかく,ごうまーく,合,合まーく,合格 -🈳️ あき,あきまーく,から,くう,くうしつ,くうせき,そら,そらまーく,空,空き,空まーく,空室,空席 -㊗️️ いわい,いわいまーく,おいわい,おめでとう,しゅく,しゅくまーく -㊙️️ ごくひ,しゃがいひ,ひ,ひみつ,まるひ -🈺️ えい,えいぎょう,えいぎょうちゅう,えいぎょうび,えいまーく,営,営まーく,営業中,営業日 -🈵️ まん,まんいん,まんしつ,まんしゃ,まんせき,まんまーく,満,満まーく,満員,満室,満席,満車 -🔴️ あか,あかいまる,おおきいまる,おおまる,まる,まるいぼたん,丸,丸いぼたん,赤,赤い丸 -🟠️ おれんじ,おれんじのまる,おれんじの丸,まる,まるいぼたん,丸,丸いぼたん -🟡️ きいろ,きいろいまる,まる,まるいぼたん,丸,丸いぼたん,黄色,黄色い丸 -🟢️ まる,まるいぼたん,みどり,みどりのまる,丸,丸いぼたん,緑,緑の丸 -🔵️ あお,あおいまる,おおきいまる,おおまる,まる,まるいぼたん,丸,丸いぼたん,青,青い丸 -🟣️ まる,まるいぼたん,むらさき,むらさきのまる,丸,丸いぼたん,紫,紫の丸 -🟤️ ちゃいろ,ちゃいろのまる,まる,まるいぼたん,丸,丸いぼたん,茶色,茶色の丸 -⚫️ くろ,くろいまる,まる,まるいぼたん -⚪️ しろ,しろいまる,まる,まるいぼたん -🟥️ あか,あかいしかく,しかく,せいほうけい,四角,正方形,赤,赤い四角 -🟧️ おれんじ,おれんじのしかく,おれんじの四角,しかく,せいほうけい,四角,正方形 -🟨️ きいろ,きいろいしかく,しかく,せいほうけい,四角,正方形,黄色,黄色い四角 -🟩️ しかく,せいほうけい,みどり,みどりのしかく,四角,正方形,緑,緑の四角 -🟦️ あお,あおいしかく,しかく,せいほうけい,四角,正方形,青,青い四角 -🟪️ しかく,せいほうけい,むらさき,むらさきのしかく,四角,正方形,紫,紫の四角 -🟫️ しかく,せいほうけい,ちゃいろ,ちゃいろいしかく,四角,正方形,茶色,茶色い四角 -⬛️ くろ,くろしかくとくだい,しかく,せいほうけい -⬜️ しかく,しろ,しろしかくとくだい,せいほうけい -◼️️ くろ,くろしかくだい,しかく,せいほうけい -◻️️ しかく,しろ,しろしかくだい,せいほうけい -◾️ くろ,くろしかくちゅう,しかく,せいほうけい -◽️ しかく,しろ,しろしかくちゅう,せいほうけい -▪️️ くろ,くろしかくしょう,しかく,せいほうけい -▫️️ しかく,しろ,しろしかくしょう,せいほうけい -🔶️ おおきいおれんじのひしがた,おおきいひしがた,おれんじ,しかく,だいあ,だいや,ひしがた,ひし形,四角,大きいおれんじのひし形,菱形 -🔷️ あお,おおきいあおのひしがた,おおきいひしがた,しかく,だいあ,だいや,ひしがた,ひし形,四角,大きい青のひし形,菱形,青 -🔸️ おれんじ,しかく,だいあ,だいや,ちいさいおれんじのひしがた,ちいさいひしがた,ひしがた,ひし形,四角,小さいおれんじのひし形,菱形 -🔹️ あお,しかく,だいあ,だいや,ちいさいあおのひしがた,ちいさいひしがた,ひしがた,ひし形,四角,小さい青のひし形,菱形,青 -🔺️ あか,あかいうえさんかく,うえ,うえむきさんかく,さんかく,三角,上,赤,赤い上三角 -🔻️ あか,あかいしたさんかく,さんかく,した,したむきさんかく,三角,下,赤,赤い下三角 -💠️ かわいい,だいあ,だいや,どっとつきひしがた,どっと付きひし形,ひしがた,ひし形 -🔘️ にじゅうまる,ぼたん,らじおぼたん,二重丸 -🔳️ しかく,しかくぼたん,しろわくしかく,せいほうけい,ぼたん,四角ぼたん,正方形,白枠四角 -🔲️ くろわくしかく,しかく,しかくぼたん,せいほうけい,ぼたん,四角ぼたん,正方形,黒枠四角 -🏁️ すぽーつ,ちぇっかー,ちぇっかーふらぐ,ちぇっかーふらっぐ,はた,ふらぐ,ふらっぐ,れーす,旗 -🚩️ ごるふ,さんかくのはた,すぽーつ,はた,ふらぐ,ふらっぐ,三角の旗,旗 -🎌️ しゅくじつ,しゅくじつのはた,はた,ひのまる,ふらぐ,ふらっぐ,旗,日の丸,祝日,祝日の旗 -🏴️ くろ,くろはた,こっき,はた,ふらぐ,ふらっぐ,旗,黒,黒旗 -🏳️️ しらはた,しろ,しろはた,はた,はっき,ふらぐ,ふらっぐ -🏳️‍🌈️ lgbt,にじいろのはた,はた,ふらぐ,ふらっぐ,れいんぼー,れいんぼーふらっぐ -🏳️‍⚧️️ lgbt,てぃーじー,とらんすじぇんだー,とらんすじぇんだーふらっぐ,はた,ふらぐ,ふらっぐ -🏴‍☠️️ かいぞく,かいぞくき,じょりーろじゃー,たからもの,ほうもつ,りゃくだつ -🇦🇨️ あせんしょんとう,あせんしょん島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇩️ あんどら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇪️ あらぶ,あらぶしゅちょうこくれんぽう,あらぶ首長国連邦,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇫️ あふがにすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇬️ あんてぃぐあばーぶーだ,あんてぃぐあ・ばーぶーだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇮️ あんぎら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇱️ あるばにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇲️ あるめにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇴️ あんごら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇶️ こっき,なんきょく,なんきょくたいりく,はた,ふらぐ,ふらっぐ,南極,旗 -🇦🇷️ あるぜんちん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇸️ あめりかりょうさもあ,こっき,はた,ふらぐ,ふらっぐ,べいりょうさもあ,旗,米領さもあ -🇦🇹️ おーすとりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇺️ おーすとらりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇼️ あるば,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇽️ おーらんどしょとう,おーらんど諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇿️ あぜるばいじゃん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇧🇦️ こっき,はた,ふらぐ,ふらっぐ,ぼすにあへるつぇごびな,ぼすにあ・へるつぇごびな,旗 -🇧🇧️ こっき,はた,ばるばどす,ふらぐ,ふらっぐ,旗 -🇧🇩️ こっき,はた,ばんぐらでしゅ,ふらぐ,ふらっぐ,旗 -🇧🇪️ こっき,はた,ふらぐ,ふらっぐ,べるぎー,旗 -🇧🇫️ こっき,はた,ふらぐ,ふらっぐ,ぶるきなふぁそ,旗 -🇧🇬️ こっき,はた,ふらぐ,ふらっぐ,ぶるがりあ,旗 -🇧🇭️ こっき,はた,ばーれーん,ふらぐ,ふらっぐ,旗 -🇧🇮️ こっき,はた,ふらぐ,ふらっぐ,ぶるんじ,旗 -🇧🇯️ こっき,はた,ふらぐ,ふらっぐ,べなん,旗 -🇧🇱️ こっき,さんばるてるみー,さん・ばるてるみー,はた,ふらぐ,ふらっぐ,旗 -🇧🇲️ こっき,はた,ばみゅーだ,ふらぐ,ふらっぐ,旗 -🇧🇳️ こっき,はた,ふらぐ,ふらっぐ,ぶるねい,旗 -🇧🇴️ こっき,はた,ふらぐ,ふらっぐ,ぼりびあ,旗 -🇧🇶️ おらんだりょうかりぶ,おらんだ領かりぶ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇧🇷️ こっき,はた,ふらぐ,ふらっぐ,ぶらじる,旗 -🇧🇸️ こっき,はた,ばはま,ふらぐ,ふらっぐ,旗 -🇧🇹️ こっき,はた,ふらぐ,ふらっぐ,ぶーたん,旗 -🇧🇻️ こっき,はた,ふらぐ,ふらっぐ,ぶーべとう,ぶーべ島,旗 -🇧🇼️ こっき,はた,ふらぐ,ふらっぐ,ぼつわな,旗 -🇧🇾️ こっき,はた,ふらぐ,ふらっぐ,べらるーし,旗 -🇧🇿️ こっき,はた,ふらぐ,ふらっぐ,べりーず,旗 -🇨🇦️ かなだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇨️ きーりんぐしょとう,ここす(きーりんぐ)しょとう,ここす(きーりんぐ)諸島,ここすしょとう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇩️ きんしゃさ,こっき,こんごみんしゅきょうわこく,こんごみんしゅきょうわこく(きんしゃさ),こんご民主共和国(きんしゃさ),はた,ふらぐ,ふらっぐ,旗 -🇨🇫️ こっき,ちゅうおうあふりかきょうわこく,はた,ふらぐ,ふらっぐ,中央あふりか共和国,旗 -🇨🇬️ こっき,こんごきょうわこく,こんごきょうわこく(ぶらざびる),こんご共和国(ぶらざびる),はた,ふらぐ,ふらっぐ,ぶらざびる,旗 -🇨🇭️ こっき,すいす,はた,ふらぐ,ふらっぐ,旗 -🇨🇮️ こっき,こーとじぼわーる,はた,ふらぐ,ふらっぐ,旗 -🇨🇰️ くっくしょとう,くっく諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇱️ こっき,ちり,はた,ふらぐ,ふらっぐ,旗 -🇨🇲️ かめるーん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇳️ こっき,ちゅうごく,はた,ふらぐ,ふらっぐ,中国,旗 -🇨🇴️ こっき,ころんびあ,はた,ふらぐ,ふらっぐ,旗 -🇨🇵️ くりっぱーとんとう,くりっぱーとん島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇷️ こすたりか,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇺️ きゅーば,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇻️ かーぼべるで,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇼️ きゅらそー,きゅらそーとう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇽️ くりすますとう,くりすます島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇾️ きぷろす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇿️ こっき,ちぇこ,はた,ふらぐ,ふらっぐ,旗 -🇩🇪️ こっき,どいつ,はた,ふらぐ,ふらっぐ,旗 -🇩🇬️ こっき,でぃえごがるしあとう,でぃえごがるしあ島,はた,ふらぐ,ふらっぐ,旗 -🇩🇯️ こっき,じぶち,はた,ふらぐ,ふらっぐ,旗 -🇩🇰️ こっき,でんまーく,はた,ふらぐ,ふらっぐ,旗 -🇩🇲️ こっき,どみにかこく,どみにか国,はた,ふらぐ,ふらっぐ,旗 -🇩🇴️ こっき,どみにかきょうわこく,どみにか共和国,はた,ふらぐ,ふらっぐ,旗 -🇩🇿️ あるじぇりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇦️ こっき,せうたとめりりゃ,せうた・めりりゃ,はた,ふらぐ,ふらっぐ,旗 -🇪🇨️ えくあどる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇪️ えすとにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇬️ えじぷと,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇭️ こっき,にしさはら,はた,ふらぐ,ふらっぐ,旗,西さはら -🇪🇷️ えりとりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇸️ こっき,すぺいん,はた,ふらぐ,ふらっぐ,旗 -🇪🇹️ えちおぴあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇺️ eu,いーゆー,おうしゅうれんごう,こっき,はた,ふらぐ,ふらっぐ,旗,欧州連合 -🇫🇮️ こっき,はた,ふぃんらんど,ふらぐ,ふらっぐ,旗 -🇫🇯️ こっき,はた,ふぃじー,ふらぐ,ふらっぐ,旗 -🇫🇰️ こっき,はた,ふぉーくらんどしょとう,ふぉーくらんど諸島,ふらぐ,ふらっぐ,旗 -🇫🇲️ こっき,はた,ふらぐ,ふらっぐ,みくろねしあ,みくろねしあれんぽう,みくろねしあ連邦,旗 -🇫🇴️ こっき,はた,ふぇろーしょとう,ふぇろー諸島,ふらぐ,ふらっぐ,旗 -🇫🇷️ こっき,はた,ふらぐ,ふらっぐ,ふらんす,旗 -🇬🇦️ がぼん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇧️ いぎりす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇩️ ぐれなだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇪️ こっき,じょーじあ,はた,ふらぐ,ふらっぐ,旗 -🇬🇫️ こっき,はた,ふつりょうぎあな,ふらぐ,ふらっぐ,ふらんすりょうぎあな,仏領ぎあな,旗 -🇬🇬️ がーんじー,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇭️ がーな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇮️ こっき,じぶらるたる,はた,ふらぐ,ふらっぐ,旗 -🇬🇱️ ぐりーんらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇲️ がんびあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇳️ ぎにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇵️ ぐあどるーぷ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇶️ こっき,せきどうぎにあ,はた,ふらぐ,ふらっぐ,旗,赤道ぎにあ -🇬🇷️ ぎりしゃ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇸️ こっき,さうすじょーじあ・さうすさんどうぃっちしょとう,さうすじょーじあ・さうすさんどうぃっち諸島,はた,ふらぐ,ふらっぐ,旗 -🇬🇹️ ぐあてまら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇺️ ぐあむ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇼️ ぎにあびさう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇾️ がいあな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇭🇰️ こっき,ちゅうかじんみんきょうわこくほんこんとくべつぎょうせいく,はた,ふらぐ,ふらっぐ,ほんこん,中華人民共和国香港特別行政区,旗 -🇭🇲️ こっき,はた,はーどとう,はーどとうとまくどなるどしょとう,はーどとう・まくどなるどしょとう,はーど島・まくどなるど諸島,ふらぐ,ふらっぐ,まくどなるどしょとう,旗 -🇭🇳️ こっき,はた,ふらぐ,ふらっぐ,ほんじゅらす,旗 -🇭🇷️ くろあちあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇭🇹️ こっき,はいち,はた,ふらぐ,ふらっぐ,旗 -🇭🇺️ こっき,はた,はんがりー,ふらぐ,ふらっぐ,旗 -🇮🇨️ かなりあしょとう,かなりあ諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇩️ いんどねしあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇪️ あいるらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇱️ いすらえる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇲️ こっき,はた,ふらぐ,ふらっぐ,まんとう,まん島,旗 -🇮🇳️ いんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇴️ いぎりすりょういんどようちいき,えいりょういんどようちいき,こっき,はた,ふらぐ,ふらっぐ,旗,英領いんど洋地域 -🇮🇶️ いらく,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇷️ いらん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇸️ あいすらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇹️ いたりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇯🇪️ こっき,じゃーじー,はた,ふらぐ,ふらっぐ,旗 -🇯🇲️ こっき,じゃまいか,はた,ふらぐ,ふらっぐ,旗 -🇯🇴️ こっき,はた,ふらぐ,ふらっぐ,よるだん,旗 -🇯🇵️ こっき,しゅくじつ,にっぽん,にほん,はた,ひのまる,ふらぐ,ふらっぐ,旗,日本 -🇰🇪️ けにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇬️ きるぎす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇭️ かんぼじあ,こっき,ころんびあ,はた,ふらぐ,ふらっぐ,旗 -🇰🇮️ きりばす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇲️ こっき,こもろ,はた,ふらぐ,ふらっぐ,旗 -🇰🇳️ こっき,せんとくりすとふぁーねーゔぃす,せんとくりすとふぁー・ねーゔぃす,はた,ふらぐ,ふらっぐ,旗 -🇰🇵️ きたちょうせん,こっき,はた,ふらぐ,ふらっぐ,北朝鮮,旗 -🇰🇷️ かんこく,こっき,はた,ふらぐ,ふらっぐ,旗,韓国 -🇰🇼️ くうぇーと,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇾️ けいまんしょとう,けいまん諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇿️ かざふすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇱🇦️ こっき,はた,ふらぐ,ふらっぐ,らおす,旗 -🇱🇧️ こっき,はた,ふらぐ,ふらっぐ,ればのん,旗 -🇱🇨️ こっき,せんとるしあ,はた,ふらぐ,ふらっぐ,旗 -🇱🇮️ こっき,はた,ふらぐ,ふらっぐ,りひてんしゅたいん,旗 -🇱🇰️ こっき,すりらんか,はた,ふらぐ,ふらっぐ,旗 -🇱🇷️ こっき,はた,ふらぐ,ふらっぐ,りべりあ,旗 -🇱🇸️ こっき,はた,ふらぐ,ふらっぐ,れそと,旗 -🇱🇹️ こっき,はた,ふらぐ,ふらっぐ,りとあにあ,旗 -🇱🇺️ こっき,はた,ふらぐ,ふらっぐ,るくせんぶるく,るくせんぶるぐ,旗 -🇱🇻️ こっき,はた,ふらぐ,ふらっぐ,らとびあ,旗 -🇱🇾️ こっき,はた,ふらぐ,ふらっぐ,りびあ,旗 -🇲🇦️ こっき,はた,ふらぐ,ふらっぐ,もろっこ,旗 -🇲🇨️ こっき,はた,ふらぐ,ふらっぐ,もなこ,旗 -🇲🇩️ こっき,はた,ふらぐ,ふらっぐ,もるどば,旗 -🇲🇪️ こっき,はた,ふらぐ,ふらっぐ,もんてねぐろ,旗 -🇲🇫️ こっき,さんまるたん,さん・まるたん,はた,ふらぐ,ふらっぐ,旗 -🇲🇬️ こっき,はた,ふらぐ,ふらっぐ,まだがすかる,旗 -🇲🇭️ こっき,はた,ふらぐ,ふらっぐ,まーしゃるしょとう,まーしゃる諸島,旗 -🇲🇰️ きたまけどにあ,こっき,はた,ふらぐ,ふらっぐ,まけどにあ,北まけどにあ,旗 -🇲🇱️ こっき,はた,ふらぐ,ふらっぐ,まり,旗 -🇲🇲️ こっき,はた,びるま,ふらぐ,ふらっぐ,みゃんまー,みゃんまー (びるま),旗 -🇲🇳️ こっき,はた,ふらぐ,ふらっぐ,もんごる,旗 -🇲🇴️ こっき,ちゅうかじんみんきょうわこくまかおとくべつぎょうせいく,はた,ふらぐ,ふらっぐ,まかお,中華人民共和国まかお特別行政区,旗 -🇲🇵️ きたまりあなしょとう,こっき,はた,ふらぐ,ふらっぐ,北まりあな諸島,旗 -🇲🇶️ こっき,はた,ふらぐ,ふらっぐ,まるてぃにーく,旗 -🇲🇷️ こっき,はた,ふらぐ,ふらっぐ,もーりたにあ,旗 -🇲🇸️ こっき,はた,ふらぐ,ふらっぐ,もんとせらと,旗 -🇲🇹️ こっき,はた,ふらぐ,ふらっぐ,まるた,旗 -🇲🇺️ こっき,はた,ふらぐ,ふらっぐ,もーりしゃす,旗 -🇲🇻️ こっき,はた,ふらぐ,ふらっぐ,もるでぃぶ,旗 -🇲🇼️ こっき,はた,ふらぐ,ふらっぐ,まらうぃ,まらうい,旗 -🇲🇽️ こっき,はた,ふらぐ,ふらっぐ,めきしこ,旗 -🇲🇾️ こっき,はた,ふらぐ,ふらっぐ,まれーしあ,旗 -🇲🇿️ こっき,はた,ふらぐ,ふらっぐ,もざんびーく,旗 -🇳🇦️ こっき,なみびあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇨️ こっき,にゅーかれどにあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇪️ こっき,にじぇーる,はた,ふらぐ,ふらっぐ,旗 -🇳🇫️ こっき,のーふぉーくとう,のーふぉーく島,はた,ふらぐ,ふらっぐ,旗 -🇳🇬️ こっき,ないじぇりあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇮️ こっき,にからぐあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇱️ おらんだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇳🇴️ こっき,のるうぇー,はた,ふらぐ,ふらっぐ,旗 -🇳🇵️ こっき,ねぱーる,はた,ふらぐ,ふらっぐ,旗 -🇳🇷️ こっき,なうる,はた,ふらぐ,ふらっぐ,旗 -🇳🇺️ こっき,にうえ,はた,ふらぐ,ふらっぐ,旗 -🇳🇿️ こっき,にゅーじーらんど,はた,ふらぐ,ふらっぐ,旗 -🇴🇲️ おまーん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇵🇦️ こっき,はた,ぱなま,ふらぐ,ふらっぐ,旗 -🇵🇪️ こっき,はた,ふらぐ,ふらっぐ,ぺるー,旗 -🇵🇫️ こっき,はた,ふつりょうぽりねしあ,ふらぐ,ふらっぐ,ふらんすりょうぽりねしあ,仏領ぽりねしあ,旗 -🇵🇬️ こっき,はた,ぱぷあにゅーぎにあ,ふらぐ,ふらっぐ,旗 -🇵🇭️ こっき,はた,ふぃりぴん,ふらぐ,ふらっぐ,旗 -🇵🇰️ こっき,はた,ぱきすたん,ふらぐ,ふらっぐ,旗 -🇵🇱️ こっき,はた,ふらぐ,ふらっぐ,ぽーらんど,旗 -🇵🇲️ こっき,さんぴえーるしま・みくろんとう,さんぴえーるとう,さんぴえーるとう・みくろんとう,さんぴえーる島・みくろん島,はた,ふらぐ,ふらっぐ,みくろんとう,旗 -🇵🇳️ こっき,はた,ぴとけあんしょとう,ぴとけあん諸島,ふらぐ,ふらっぐ,旗 -🇵🇷️ こっき,はた,ふらぐ,ふらっぐ,ぷえるとりこ,旗 -🇵🇸️ こっき,はた,ぱれすちなじちく,ぱれすちな自治区,ふらぐ,ふらっぐ,旗 -🇵🇹️ こっき,はた,ふらぐ,ふらっぐ,ぽるとがる,旗 -🇵🇼️ こっき,はた,ぱらお,ふらぐ,ふらっぐ,旗 -🇵🇾️ こっき,はた,ぱらぐあい,ふらぐ,ふらっぐ,旗 -🇶🇦️ かたーる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇷🇪️ こっき,はた,ふらぐ,ふらっぐ,れゆにおん,旗 -🇷🇴️ こっき,はた,ふらぐ,ふらっぐ,るーまにあ,旗 -🇷🇸️ こっき,せるびあ,はた,ふらぐ,ふらっぐ,旗 -🇷🇺️ こっき,はた,ふらぐ,ふらっぐ,ろしあ,旗 -🇷🇼️ こっき,はた,ふらぐ,ふらっぐ,るわんだ,旗 -🇸🇦️ こっき,さうじあらびあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇧️ こっき,そろもんしょとう,そろもん諸島,はた,ふらぐ,ふらっぐ,旗 -🇸🇨️ こっき,せーしぇる,はた,ふらぐ,ふらっぐ,旗 -🇸🇩️ こっき,すーだん,はた,ふらぐ,ふらっぐ,旗 -🇸🇪️ こっき,すうぇーでん,はた,ふらぐ,ふらっぐ,旗 -🇸🇬️ こっき,しんがぽーる,はた,ふらぐ,ふらっぐ,旗 -🇸🇭️ こっき,せんとへれな,はた,ふらぐ,ふらっぐ,旗 -🇸🇮️ こっき,すろべにあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇯️ こっき,すばーるばるしょとう,すばーるばるしょとう・やんまいえんとう,すばーるばる諸島・やんまいえん島,すゔぁーるばるしょとうおよびやんまいえんとう,はた,ふらぐ,ふらっぐ,やんまいえんとう,旗 -🇸🇰️ こっき,すろばきあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇱️ こっき,しえられおね,はた,ふらぐ,ふらっぐ,旗 -🇸🇲️ こっき,さんまりの,はた,ふらぐ,ふらっぐ,旗 -🇸🇳️ こっき,せねがる,はた,ふらぐ,ふらっぐ,旗 -🇸🇴️ こっき,そまりあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇷️ こっき,すりなむ,はた,ふらぐ,ふらっぐ,旗 -🇸🇸️ こっき,はた,ふらぐ,ふらっぐ,みなみすーだん,南すーだん,旗 -🇸🇹️ こっき,さんとめぷりんしぺ,さんとめ・ぷりんしぺ,はた,ふらぐ,ふらっぐ,旗 -🇸🇻️ えるさるばどる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇸🇽️ こっき,しんとまーるてん,しんと・まーるてん,はた,ふらぐ,ふらっぐ,旗 -🇸🇾️ こっき,しりあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇿️ えすわてぃに,こっき,すわじらんど,はた,ふらぐ,ふらっぐ,旗 -🇹🇦️ こっき,とりすたんだくーにゃ,とりすたん・だ・くーにゃ,はた,ふらぐ,ふらっぐ,旗 -🇹🇨️ こっき,たーくすかいこすしょとう,たーくす・かいこす諸島,はた,ふらぐ,ふらっぐ,旗 -🇹🇩️ こっき,ちゃど,はた,ふらぐ,ふらっぐ,旗 -🇹🇫️ こっき,はた,ふつりょうきょくなんしょとう,ふらぐ,ふらっぐ,仏領極南諸島,旗 -🇹🇬️ こっき,とーご,はた,ふらぐ,ふらっぐ,旗 -🇹🇭️ こっき,たい,はた,ふらぐ,ふらっぐ,旗 -🇹🇯️ こっき,たじきすたん,はた,ふらぐ,ふらっぐ,旗 -🇹🇰️ こっき,とけらう,はた,ふらぐ,ふらっぐ,旗 -🇹🇱️ こっき,はた,ひがしてぃもーる,ふらぐ,ふらっぐ,旗,東てぃもーる -🇹🇲️ こっき,とるくめにすたん,はた,ふらぐ,ふらっぐ,旗 -🇹🇳️ こっき,ちゅにじあ,はた,ふらぐ,ふらっぐ,旗 -🇹🇴️ こっき,とんが,はた,ふらぐ,ふらっぐ,旗 -🇹🇷️ こっき,とるこ,はた,ふらぐ,ふらっぐ,旗 -🇹🇹️ こっき,とりにだーどとばご,とりにだーど・とばご,はた,ふらぐ,ふらっぐ,旗 -🇹🇻️ こっき,つばる,はた,ふらぐ,ふらっぐ,旗 -🇹🇼️ こっき,たいわん,はた,ふらぐ,ふらっぐ,台湾,旗 -🇹🇿️ こっき,たんざにあ,はた,ふらぐ,ふらっぐ,旗 -🇺🇦️ うくらいな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇬️ うがんだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇲️ がっしゅうこくりょうゆうしょうりとう,こっき,はた,ふらぐ,ふらっぐ,合衆国領有小離島,旗 -🇺🇳️ こくさいれんごう,こくれん,こっき,はた,ふらぐ,ふらっぐ,国際連合,旗 -🇺🇸️ あめりか,あめりかがっしゅうこく,あめりか合衆国,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇾️ うるぐあい,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇿️ うずべきすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇻🇦️ こっき,はた,ばちかん,ばちかんしこく,ばちかん市国,ふらぐ,ふらっぐ,旗 -🇻🇨️ こっき,せんとびんせんとおよびぐれなでぃーんしょとう,せんとびんせんと及びぐれなでぃーん諸島,はた,ふらぐ,ふらっぐ,旗 -🇻🇪️ こっき,はた,ふらぐ,ふらっぐ,べねずえら,旗 -🇻🇬️ いぎりすりょうゔぁーじんしょとう,えいりょうゔぁーじんしょとう,こっき,はた,ふらぐ,ふらっぐ,旗,英領ゔぁーじん諸島 -🇻🇮️ あめりかりょうゔぁーじんしょとう,こっき,はた,ふらぐ,ふらっぐ,べいりょうゔぁーじんしょとう,旗,米領ゔぁーじん諸島 -🇻🇳️ こっき,はた,ふらぐ,ふらっぐ,べとなむ,旗 -🇻🇺️ こっき,はた,ばぬあつ,ふらぐ,ふらっぐ,旗 -🇼🇫️ うぉりすふつな,うぉりす・ふつな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇼🇸️ こっき,さもあ,はた,ふらぐ,ふらっぐ,旗 -🇽🇰️ こそぼ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇾🇪️ いえめん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇾🇹️ こっき,はた,ふらぐ,ふらっぐ,まよっと,旗 -🇿🇦️ こっき,はた,ふらぐ,ふらっぐ,みなみあふりか,南あふりか,旗 -🇿🇲️ こっき,ざんびあ,はた,ふらぐ,ふらっぐ,旗 -🇿🇼️ こっき,じんばぶえ,はた,ふらぐ,ふらっぐ,旗 -🏴󠁧󠁢󠁥󠁮󠁧󠁿️ いんぐらんど,はた,旗 -🏴󠁧󠁢󠁳󠁣󠁴󠁿️ すこっとらんど,はた,旗 -🏴󠁧󠁢󠁷󠁬󠁳󠁿️ うぇーるず,はた,旗 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E15.0.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E15.0.txt deleted file mode 100644 index aec7072..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E15.0.txt +++ /dev/null @@ -1,1886 +0,0 @@ -😀️ えがお,かお,すまいる,にっこり,にっこりわらう,にっこり笑う,わらう,笑う,笑顔,顔 -😃️ えがお,かお,すまいる,わーい,笑顔,顔 -😄️ えがお,かお,すまいる,わーい,笑顔,顔 -😁️ えがお,かお,すまいる,にやっとわらう,にやっと笑う,わらい,わらう,笑う,笑顔,顔 -😆️ うれしい,えがお,かお,きゃー,すまいる,まんぞく,嬉しい,満足,笑顔,顔 -😅️ あせ,えがお,かお,すまいる,ひやあせ,ひやあせえがお,わーい,冷や汗,冷や汗笑顔,笑顔,顔 -🤣️ えがお,かお,すまいる,わらいころげる,わらう,笑い転げる,笑う,笑顔,顔 -😂️ うれしなき,えがお,かお,すまいる,なみだ,わらい,わらう,嬉し泣き,涙,笑う,笑顔,顔 -🙂️ えがお,かお,すまいる,ほほえみ,ほほえむ,微笑み,微笑む,笑顔,顔 -🙃️ かお,さかさま,さかさまのかお,さかさまの顔,顔 -🫠️ えきたい,かお,とけそう,とけているかお,とける,とろける,とろとろ,ようかい,液体,溶けそう,溶けている顔,溶ける,顔 -😉️ うぃんく,ういんく,かお,顔 -😊️ えがお,かお,すまいる,にこにこ,ほおをあからめる,ほほえみ,ほほをあからめる,めをほそめる,微笑み,目を細める,頬を赤らめる,顔 -😇️ えがお,かお,すまいる,てんし,てんしのわ,てんしのわがついたえがお,天使,天使の輪,天使の輪がついた笑顔,笑顔,顔 -🥰️ えがお,かお,はーとのえがお,はーとの笑顔,むちゅう,めろめろ,らぶ,夢中,笑顔,顔 -😍️ えがお,かお,すまいる,はーと,めがはーとのえがお,らぶ,目がはーとの笑顔,笑顔,顔 -🤩️ えがお,かお,すまいる,ほし,めがほしのえがお,星,目が星の笑顔,笑顔,顔 -😘️ かお,きす,ちゅっ,なげきっす,はーと,投げきっす,顔 -😗️ かお,きす,ちゅっ,顔 -☺️️ えがお,かお,すまいりー,すまいる,ほっ -😚️ かお,きす,ちゅっ,めをとじる,目を閉じる,顔 -😙️ えがお,かお,きす,すまいる,ちゅっ,にっこりきす,笑顔,顔 -🥲️ うれしなみだのかお,かお,かんどう,じーん,なく,なみだ,嬉し涙の顔,感動,泣く,涙,顔 -😋️ うまい,えがお,おいしい,かお,すまいる,にこにこ,にこにこぺろり,笑顔,顔 -😛️ かお,した,したをだしたかお,べろ,べー,舌,舌を出した顔,顔 -😜️ あっかんべー,かお,した,じょうだん,じょーく,べー,冗談,舌,顔 -🤪️ おかしい,かお,じょーく,ふざけ,ふざけたかお,ふざけた顔,顔 -😝️ かお,した,べろ,べー,めをとじてべー,わーい,目を閉じてべー,舌,顔 -🤑️ おかねのかお,お金の顔,かお,した,べろ,べー,舌,顔 -🤗️ えがお,かお,すまいる,はぐ,笑顔,顔 -🤭️ えがお,かお,くすくす,くちにてをあてたかお,すまいる,ないしょ,内緒,口に手を当てた顔,笑顔,顔 -🫢️ いわない,えっ,おそれ,おどろき,おののき,かお,ひみつ,びっくり,めをあけてくちにてをあてたかお,目を開けて口に手を当てた顔,顔,驚き -🫣️ かお,きになる,こわいものみたさ,こわごわ,ぬすみみ,のぞきみ,のぞき見,はずかしい,ゆびのまからのぞきみるかお,指の間からのぞき見る顔,盗み見,顔 -🤫️ かお,しずかに,しっ,しー,しーっ,だまれ,静かに,顔 -🤔️ うーん,かお,かんがえちゅう,かんがえる,かんがえるかお,考える,考える顔,考え中,顔 -🫡️ いえっさー,おーけー,かお,ぐんたい,けいれい,けいれいするかお,しょうち,りょうかい,わかった,了解,敬礼,敬礼する顔,軍隊,顔 -🤐️ かお,くち,くちちゃっく,ちゃっく,口,口ちゃっく,顔 -🤨️ うたがい,おどろき,かお,まゆをあげたかお,疑い,眉を上げた顔,顔,驚き -😐️ かお,ぽーかーふぇいす,むひょうじょう -😑️ かお,むかんじょう,むひょうじょう,無感情,無表情,顔 -😶️ かお,くちなし,くちのないかお,だんまり,ちんもく,口なし,口のない顔,沈黙,顔 -🫥️ うちき,かお,てんせんのかお,ないこうてき,むむむ,ゆううつ,らくたん,内向的,内気,憂鬱,点線の顔,落胆,顔 -😶‍🌫️️ うわのそら,かお,くも,くものなか,くものなかのかお,こっそり,ほうしんじょうたい,ぼんやり,むちゅう -😏️ うすわらいをするかお,かお,にやり,ふっ,薄笑いをする顔,顔 -😒️ かお,しらけ,しらけた,しらける,じとめ,じと目,顔 -🙄️ うえをみるかお,うわめ,かお,上を見る顔,上目,顔 -😬️ いー,かお,しかめがお,しかめっつら,しかめっ面,しかめつら,しかめ面,しかめ顔,顔 -😮‍💨️ あきらめ,あんしん,いきをはくかお,かお,こきゅう,ためいき,ため息,はぁ,ひとあんしん,ほっとした,安心,息を吐く顔,顔 -🤥️ うそつき,うそつきのかお,うそつきの顔,かお,ぴのきおのかお,ぴのきおの顔,嘘つき,顔 -🫨️ かお,こわい,しょっく,しんどう,じしん,びくびく,ふるえている,ふるえているかお,ふるえるかお,ぶるぶる,地震,振動,震えている,震えている顔,顔 -😌️ あんしん,かお,ほっ,ほっとしたかお,ほっとした顔,安心,顔 -😔️ かお,しょぼーん,しょんぼり,顔 -😪️ かお,ねむい,ねむる,ねる,寝る,眠い,眠る,顔 -🤤️ かお,よだれ,よだれをたらしたかお,よだれを垂らした顔,顔 -😴️ zzz,かお,ねむい,ねむる,ねる,寝る,眠い,眠る,顔 -😷️ かお,かぜ,かふんしょう,びょうき,ますく,ますくがお,ますく顔,病気,花粉症,顔,風邪 -🤒️ かお,かぜ,たいおんけい,ねつがあるかお,ねつをはかる,びょうき,体温計,熱がある顔,熱を測る,病気,顔,風邪 -🤕️ かお,けが,けがしてるかお,けがしてる顔,ほうたい,ほうたいをまいたかお,包帯,包帯を巻いた顔,顔 -🤢️ かお,きもちわるい,ぐあいのわるいかお,はきけをもよおしているかお,びょうき,具合の悪い顔,吐き気を催している顔,気持ち悪い,病気,顔 -🤮️ おうとするかお,かお,きもちわるい,げろ,びょうき,嘔吐する顔,気持ち悪い,病気,顔 -🤧️ かお,かぜ,かふんしょう,くしゃみ,くしゃみするかお,くしゃみする顔,花粉症,顔,風邪 -🥵️ あかいかお,あせ,あついかお,あつさ,ねっちゅうしょう,はつねつ,暑い顔,暑さ,汗,熱中症,発熱,赤い顔 -🥶️ あおいかお,こごえ,さむいかお,さむさ,しもやけ,つらら,凍え,寒い顔,寒さ,青い顔 -🥴️ うつろなめ,うつろな目,ちゅうどく,ふらふらのかお,ふらふらの顔,べろんべろん,ほろよい,ほろ酔い,めまい,中毒 -😵️ かお,ふらふら,めまい,顔 -😵‍💫️ うずまき,かお,ぐるぐる,こまる,こんらん,ふらふら,めがぐるぐる,めがまわる,めまい,めをまわしたかお,渦巻き,目がぐるぐる,目が回る,目を回した顔 -🤯️ あたまばくはつ,おどろき,かお,しょっく,ばくはつ,ぼんっ,爆発,頭爆発,顔,驚き -🤠️ かうがーる,かうぼーい,かうぼーいのかお,かうぼーいの顔,かお,顔 -🥳️ おいわい,お祝い,ぱーてぃー,ぱーてぃーのかお,ぱーてぃーの顔,ふえ,ぼうし,帽子,笛 -🥸️ かお,かそう,ひげ,へんそう,へんそうしたかお,めがね,仮装,変装,変装した顔,顔 -😎️ えがお,かお,くーる,さんぐらすでえがお,さんぐらすで笑顔,すまいる,笑顔,顔 -🤓️ おたく,かお,まにあ,めがね,顔 -🧐️ かお,かためがね,かんがえる,めがね,ものくるをつけたかお,ものくるを付けた顔,片眼鏡,考える,顔 -😕️ かお,こんらん,こんわく,困惑,混乱,顔 -🫤️ かお,がっかり,くちがななめのかお,こんわく,ふふく,ふまん,むかんしん,むきりょく,口が斜めの顔,困惑,無気力,無関心,顔 -😟️ かお,しんぱい,なやむかお,心配,悩む顔,顔 -🙁️ かお,こまった,しかめっつら,しかめつら,しかめ面,すこしこまった,すこしこまったかお,困った,少し困った,少し困った顔,顔 -☹️️ かお,こまった,こまったかお,しかめっつら,しかめつら -😮️ かお,きょうかん,くちがひらいたかお,へー,共感,口が開いた顔,顔 -😯️ おどろき,かお,びっくり,びっくりがお,びっくり顔,ぽかーん,顔,驚き -😲️ おどろき,かお,きょうがく,びっくり,びっくりしたかお,びっくりした顔,顔,驚き,驚愕 -😳️ あかくなる,かお,せきめん,赤くなる,赤面,顔 -🥺️ うったえるようなかお,かお,こいぬのめ,こんがん,なさけ,ぴえん,子犬の目,情け,懇願,訴えるような顔,顔 -🥹️ ありがとう,うるうる,うれしい,うれしなみだ,かお,こんがん,なきがお,なみだ,なみだをこらえたかお,懇願,泣き顔,涙,涙をこらえた顔,顔 -😦️ あきれがお,あきれ顔,かお,しかめがお,しかめっつら,しかめつら,しかめ面,しかめ顔,ふほんい,ふまん,不本意,不満,顔 -😧️ かお,くのう,くもん,苦悩,苦悶,顔 -😨️ あおざめ,かお,がーん,青ざめ,顔 -😰️ あおざめ,かお,ひやあせ,ひやあせあおざめ,冷や汗,冷や汗青ざめ,青ざめ,顔 -😥️ あせ,かお,こまった,どうしよう,困った,汗,顔 -😢️ かお,かなしい,なきがお,なく,なみだ,悲しい,泣き顔,泣く,涙,顔 -😭️ おおなき,かお,かなしい,ごうきゅう,なく,なみだ,号泣,大泣き,悲しい,泣く,涙,顔 -😱️ かお,がーん,きょうふ,さけび,しょっく,叫び,恐怖,顔 -😖️ かお,こんらん,こんわく,こんわくしたかお,困惑,困惑した顔,混乱,顔 -😣️ かお,がまん,我慢,顔 -😞️ かお,がっかり,がっくり,しつぼうしたかお,失望した顔,顔 -😓️ あせ,かお,きもをひやした,ひやあせ,冷や汗,肝を冷やした,顔 -😩️ あきらめ,かお,つかれ,疲れ,顔 -😫️ かお,げんかい,つかれ,つかれた,疲れ,疲れた,限界,顔 -🥱️ あくびしたかお,あくびした顔,かお,たいくつ,つかれ,ねむい,ふあー,ふあ~,疲れ,眠い,退屈,顔 -😤️ かお,かちほこったかお,とくいげ,はないき,ふんっ,勝ち誇った顔,得意気,顔,鼻息 -😡️ いかり,かお,かんかん,げきど,ふくれっつら,ふくれっ面,ぷんぷん,怒り,激怒,顔 -😠️ いかり,かお,ぷんぷん,怒り,顔 -🤬️ いかり,かお,ののしり,ののしる,怒り,顔 -😈️ あくま,えがお,かお,すまいる,でびる,わらったあくま,悪魔,笑った悪魔,笑顔,顔 -👿️ あくま,おこったあくま,かお,かんかん,げきど,でびる,怒った悪魔,悪魔,激怒,顔 -💀️ かお,がいこつ,し,すかる,どくろ,死,顔,骸骨 -☠️️ かお,がいこつ,すかる,どくろ,どくろとほね -💩️ うんこ,うんち,かお,顔 -🤡️ かお,ぴえろ,ぴえろのかお,ぴえろの顔,顔 -👹️ おに,おめん,お面,かお,なまはげ,ばけもの,化け物,鬼 -👺️ おめん,お面,かお,てんぐ,天狗 -👻️ おばけ,お化け,ごーすと,ゆうれい,ゆーれい,幽霊 -👽️ いせいじん,うちゅうじん,えいりあん,かお,ぐれい,ゆーふぉー,宇宙人,ufo -👾️ いせいじん,いんべーだー,うちゅうじん,えいりあん,かお,もんすたー,宇宙人,異星人 -🤖️ かお,ろぼっと,顔 -😺️ えがお,かお,すまいる,にっこりわらうねこ,にっこり笑う猫,ねこ,猫,笑顔,顔 -😸️ えがお,かお,すまいる,にやっとわらうねこ,にやっと笑う猫,ねこ,わらう,猫,笑う,笑顔,顔 -😹️ うれしなきするねこ,えがお,かお,すまいる,なみだ,ねこ,嬉し泣きする猫,涙,猫,笑顔,顔 -😻️ えがお,かお,すまいる,ねこ,はーと,めがはーとのねこ,猫,目がはーとの猫,笑顔,顔 -😼️ かお,にやり,にやりとするねこ,にやりとする猫,ねこ,ふっ,猫,顔 -😽️ かお,きす,ちゅっ,ねこ,ねこのきす,猫,猫のきす,顔 -🙀️ かお,がーん,しょっく,ぜつぼうするねこ,ねこ,びっくり,猫,絶望する猫,顔 -😿️ かお,かなしい,ないているねこ,なみだ,ねこ,悲しい,泣いている猫,涙,猫,顔 -😾️ かお,ねこ,ふきげん,ふきげんなねこ,ぷんぷん,不機嫌,不機嫌な猫,猫,顔 -🙈️ さる,さんざる,みざる,三猿,猿,見ざる -🙉️ きかざる,さる,さんざる,三猿,猿,聞かざる -🙊️ いわざる,さる,さんざる,三猿,猿,言わざる -💌️ こいぶみ,てがみ,はーと,ふうとう,らぶれたー,封筒,恋文,手紙 -💘️ きゅーぴっど,はーと,はーとにや,はーとに矢,はーとのや,や,矢 -💝️ はーと,はーとにりぼん,ばれんたいん,ばれんたいんでー,りぼん -💖️ きらきら,きらきらはーと,はーと,ぴかぴかはーと -💗️ おおきくなるはーと,ときめき,どきどき,はーと,大きくなるはーと -💓️ どきどき,どきどきするはーと,はーと -💞️ かいてんするはーと,かわいい,はーと,回転するはーと -💕️ 2つのはーと,はーと,ふたつのはーと,らぶ -💟️ はーと,はーとでこ,はーとでこれーしょん -❣️️ えくすくらめーしょんまーく,はーと,はーとのびっくり,びっくりまーく -💔️ しつれん,はーと,はーとぶれいく,わかれた,われたはーと,別れた,割れたはーと,失恋 -❤️‍🔥️ あい,せいなるしんぞう,ねつい,はーと,ひのついた,ふんき,ほのお,もえるはーと,やるき -❤️‍🩹️ かいふくちゅう,きずついた,けが,しょうしん,ちりょうちゅう,つらい,どうじょう,はーと,ほうたい,ほうたいをまいたはーと -❤️️ あかいはーと,くろはーと,はーと,はーとまーく -🩷️ かわいい,すき,はーと,ぴんく,ぴんくのはーと,らぶ,好き -🧡️ おれんじのはーと,はーと -💛️ きいろのはーと,はーと,黄色のはーと -💚️ はーと,みどりのはーと,緑のはーと -💙️ あおいはーと,はーと,青いはーと -🩵️ うすいあお,うすいあおのはーと,しあん,てぃーるぶるー,はーと,みずいろのはーと,薄い青,薄い青のはーと -💜️ はーと,むらさきのはーと,紫のはーと -🤎️ ちゃいろいはーと,はーと,茶色いはーと -🖤️ くろいはーと,はーと,黒いはーと -🩶️ ぎんいろ,すれーとぐれー,はいいろ,はいいろのはーと,はーと,灰色,灰色のはーと,銀色 -🤍️ しろいはーと,はーと,白いはーと -💋️ きす,きすまーく,くちびる,ちゅっ,唇 -💯️ 100,100てん,100てんまんてん,100点,100点満点,ぜんもんせいかい,ひゃくてんまんてん,まんてん,全問正解,満点,100 -💢️ #,いかり,むかっ,怒り,# -💥️ しょうげき,しょうとつ,どんっ,衝撃,衝突 -💫️ くらくら,ほし,めがまわる,星,目が回る -💦️ あせ,あせあせ,汗 -💨️ いそぐ,いそげ,だっしゅ,はしる,急ぐ,急げ,走る -🕳️️ あな -💬️ かいわ,かいわのふきだし,せりふ,ふきだし,会話,会話の吹き出し,吹き出し -👁️‍🗨️️ ふきだし,ふきだしのめ,め,もくげき -🗨️️ かいわ,せりふ,ふきだし,ふきだしひだり -🗯️️ いかりのふきだし,ふきだし -💭️ かんがえごと,くもがたのふきだし,ふきだし,もくもく,吹き出し,考え事,雲形の吹き出し -💤️ zzz,いびき,ぐーぐー,ねる,寝る,zzz -👋️ さよなら,て,てをふる,ばいばい,手,手を振る 👋🏻,👋🏼,👋🏽,👋🏾,👋🏿 -🤚️ て,てのこう,手,手の甲 🤚🏻,🤚🏼,🤚🏽,🤚🏾,🤚🏿 -🖐️️ て,ぱー,ひらいたて -✋️ きょしゅ,て,てのひら,ぱー -🖖️ すぽっく,て,ばるかんじん,ばるかんのあいさつ,ばるかんの挨拶,ばるかん人,手 🖖🏻,🖖🏼,🖖🏽,🖖🏾,🖖🏿 -🫱️ て,ほうこう,みぎ,みぎがわ,みぎにむけたて,右に向けた手,右側,手,方向 🫱🏻,🫱🏼,🫱🏽,🫱🏾,🫱🏿 -🫲️ て,ひだり,ひだりがわ,ひだりにむけたて,ほうこう,左に向けた手,左側,手,方向 🫲🏻,🫲🏼,🫲🏽,🫲🏾,🫲🏿 -🫳️ おとす,した,したがわ,したにむけたて,て,下,下に向けた手,手,落とす 🫳🏻,🫳🏼,🫳🏽,🫳🏾,🫳🏿 -🫴️ うえ,うえがわ,うえにむけたて,うける,て,上,上に向けた手,受ける,手 🫴🏻,🫴🏼,🫴🏽,🫴🏾,🫴🏿 -🫷️ おしているて,おす,ことわる,すとっぷ,て,はいたっち,ひだりむき,ひだりむきにおしているて,まて,左向き,左向きに押している手,待て,押す,断る 🫷🏻,🫷🏼,🫷🏽,🫷🏾,🫷🏿 -🫸️ おす,ことわる,すとっぷ,はいたっち,まて,みぎむき,みぎむきにおしているて,右向き,右向きに押している手,待て,押す,断る 🫸🏻,🫸🏼,🫸🏽,🫸🏾,🫸🏿 -👌️ ok,okの手,おっけー,おーけー,おーけーのて,て,手,ok 👌🏻,👌🏼,👌🏽,👌🏾,👌🏿 -🤌️ うわむきにすぼめたて,じぇすちゃー,すぼめる,て,ゆび,上向きにすぼめた手,手,指 🤌🏻,🤌🏼,🤌🏽,🤌🏾,🤌🏿 -🤏️ すこしだけ,ちょっと,つまんでいるゆび,つまんでいる指,て,ゆび,少しだけ,手,指 🤏🏻,🤏🏼,🤏🏽,🤏🏾,🤏🏿 -✌️️ ちょき,て,ぴーす,ぶいさいん -🤞️ て,ゆび,ゆびをくろす,手,指,指をくろす 🤞🏻,🤞🏼,🤞🏽,🤞🏾,🤞🏿 -🫰️ おやゆびとひとさしゆびをくろす,だいすき,て,はーと,ゆび,ゆびはーと,ゆびをくろす,手,指,指をくろす,親指と人差し指をくろす 🫰🏻,🫰🏼,🫰🏽,🫰🏾,🫰🏿 -🤟️ あいしてる,あいらぶゆー,て,愛してる,手 🤟🏻,🤟🏼,🤟🏽,🤟🏾,🤟🏿 -🤘️ きつね,つののゆびさいん,て,手,角の指さいん 🤘🏻,🤘🏼,🤘🏽,🤘🏾,🤘🏿 -🤙️ て,でんわ,でんわのあいず,でんわのじぇすちゃー,手,電話,電話のじぇすちゃー,電話の合図 🤙🏻,🤙🏼,🤙🏽,🤙🏾,🤙🏿 -👈️ て,ひだり,ひだりゆびさし,やじるし,ゆびさし,ゆびさす,左 -👉️ て,みぎ,みぎゆびさし,やじるし,ゆびさし,ゆびさす,右 -👆️ うえ,て,てのこううえゆびさし,てのこうじょうゆびさし,やじるし,ゆびさし,ゆびさす,上 -🖕️ うえ,たてたなかゆび,て,なかゆび,ゆびさし,上,中指,手,指差し,立てた中指 🖕🏻,🖕🏼,🖕🏽,🖕🏾,🖕🏿 -👇️ した,したゆびさし,て,やじるし,ゆびさし,ゆびさす,下 -☝️️ うえ,うえゆびさし,て,ひとさしゆび,ゆびさし -🫵️ m9,おまえだ,て,ひとをゆびさしているて,ぷぎゃー,ゆびさし,人を指差している手,手,指差し 🫵🏻,🫵🏼,🫵🏽,🫵🏾,🫵🏿 -👍️ ok,うえ,おっけー,おやゆび,おやゆびさいん,おーけー,ぐっど,さむあっぷ,さむずあっぷ,て -👎️ ng,えぬじー,さむずだうん,した,だめ,て,ぶーいんぐ,ぼつ,ng -✊️ ぐー,げんこつ,て -👊️ ぐー,げんこつ,て,ぱんち,手 👊🏻,👊🏼,👊🏽,👊🏾,👊🏿 -🤛️ こぶし,て,ぱんち,ひだり,ひだりむきのこぶし,左,左向きのこぶし,手 🤛🏻,🤛🏼,🤛🏽,🤛🏾,🤛🏿 -🤜️ こぶし,て,ぱんち,みぎ,みぎむきのこぶし,右,右向きのこぶし,手 🤜🏻,🤜🏼,🤜🏽,🤜🏾,🤜🏿 -👏️ て,はくしゅ,ぱちぱち,手,拍手 👏🏻,👏🏼,👏🏽,👏🏾,👏🏿 -🙌️ て,てをあげる,ばんざい,りょうて,両手,手,手を上げる 🙌🏻,🙌🏼,🙌🏽,🙌🏾,🙌🏿 -🫶️ あい,て,はーと,はーとがたのて,はーとぽーず,はーと形の手,らぶ,愛,手 🫶🏻,🫶🏼,🫶🏽,🫶🏾,🫶🏿 -👐️ おっはー,て,てのひら,りょうてのひら,両手のひら,手,手のひら 👐🏻,👐🏼,👐🏽,👐🏾,👐🏿 -🤲️ いのり,て,てのひらをそろえたりょうて,りょうて,両手,手,手のひらを揃えた両手,祈り 🤲🏻,🤲🏼,🤲🏽,🤲🏾,🤲🏿 -🤝️ あくしゅ,ごうい,て,よろしく,合意,手,握手 🤝🏻,🤝🏼,🤝🏽,🤝🏾,🤝🏿,🫱🏻‍🫲🏼,🫱🏻‍🫲🏽,🫱🏻‍🫲🏾,🫱🏻‍🫲🏿,🫱🏼‍🫲🏻,🫱🏼‍🫲🏽,🫱🏼‍🫲🏾,🫱🏼‍🫲🏿,🫱🏽‍🫲🏻,🫱🏽‍🫲🏼,🫱🏽‍🫲🏾,🫱🏽‍🫲🏿,🫱🏾‍🫲🏻,🫱🏾‍🫲🏼,🫱🏾‍🫲🏽,🫱🏾‍🫲🏿,🫱🏿‍🫲🏻,🫱🏿‍🫲🏼,🫱🏿‍🫲🏽,🫱🏿‍🫲🏾 -🙏️ いのり,いのる,おねがい,お願い,がっしょう,ごめんなさい,りょうて,合掌,祈り,祈る 🙏🏻,🙏🏼,🙏🏽,🙏🏾,🙏🏿 -✍️️ かいているて,て,てがき,てでかく -💅️ つめ,ねいる,まにきゅあ,まにきゅあをぬるて,まにきゅあを塗る手,爪 💅🏻,💅🏼,💅🏽,💅🏾,💅🏿 -🤳️ じどり,じぶんどり,すまほ,せるふぃー,自分撮り,自撮り 🤳🏻,🤳🏼,🤳🏽,🤳🏾,🤳🏿 -💪️ きんとれ,きんにく,ちからこぶ,むきむき,力こぶ,筋とれ,筋肉 💪🏻,💪🏼,💪🏽,💪🏾,💪🏿 -🦾️ あくせしびりてぃ,うで,ぎしゅ,じんこうそうぐ,て,人工装具,手,義手,腕 -🦿️ あくせしびりてぃ,あし,ぎそく,じんこうそうぐ,人工装具,義足,脚,足 -🦵️ あし,きっく,脚,足 🦵🏻,🦵🏼,🦵🏽,🦵🏾,🦵🏿 -🦶️ あし,きっく,だんす,ふみつける,足,踏みつける 🦶🏻,🦶🏼,🦶🏽,🦶🏾,🦶🏿 -👂️ かお,からだ,みみ,耳 -🦻️ あくせしびりてぃ,ちょうかく,ほちょうきをつけたみみ,みみ,耳,聴覚,補聴器を付けた耳 🦻🏻,🦻🏼,🦻🏽,🦻🏾,🦻🏿 -👃️ かお,からだ,はな,鼻 👃🏻,👃🏼,👃🏽,👃🏾,👃🏿 -🧠️ あたま,ちしき,のう,のうみそ,知識,脳,脳みそ,頭 -🫀️ こどう,しんぞう,しんぱく,ぞうき,みゃく,心拍,心臓,脈,臓器,鼓動 -🫁️ こきゅう,ぞうき,はい,呼吸,肺,臓器 -🦷️ は,はいしゃ,歯,歯医者 -🦴️ こっかく,ほね,骨,骨格 -👀️ かお,からだ,め,りょうめ,両目,目 -👁️️ かため,ひとつめ,め -👅️ かお,した,べろ,べー,舌 -👄️ かお,きす,くち,くちびる,口,唇 -🫦️ くち,くちびる,くちびるをかむ,くちびるをかんでいるくち,くやしい,くやしさ,ゆうわく,口,口惜しさ,唇を咬んでいる口,誘惑 -👶️ あかちゃん,あかんぼう,かお,べびー,赤ちゃん,赤ん坊,顔 👶🏻,👶🏼,👶🏽,👶🏾,👶🏿 -🧒️ かお,こども,子供,顔 🧒🏻,🧒🏼,🧒🏽,🧒🏾,🧒🏿 -👦️ おとこのこ,かお,こども,しょうねん,子供,少年,男の子,顔 👦🏻,👦🏼,👦🏽,👦🏾,👦🏿 -👧️ おんな,おんなのこ,かお,こども,しょうじょ,女,女の子,子供,少女,顔 👧🏻,👧🏼,👧🏽,👧🏾,👧🏿 -🧑️ おとな,かお,せいじん,大人,成人,顔 🧑🏻,🧑🏼,🧑🏽,🧑🏾,🧑🏿 -👱️ かお,きんぱつ,きんぱつのひと,ひと,ぶろんど,人,金髪,金髪の人,顔 👱🏻,👱🏼,👱🏽,👱🏾,👱🏿 -👨️ おとこ,おとな,かお,だんせい,大人,男,男性,顔 👨🏻,👨🏼,👨🏽,👨🏾,👨🏿 -🧔️ あごひげ,あごひげのだんせい,あごひげのひと,あごひげの人,かお,ひげ,ひげのはえたひと,ひと,人,顔 🧔🏻,🧔🏼,🧔🏽,🧔🏾,🧔🏿 -🧔‍♂️️ あごひげ,あごひげのだんせい,おとこ,かお,だんせい,ひげ,ひげのはえただんせい -🧔‍♀️️ あごひげ,あごひげのじょせい,おんな,かお,じょせい,ひげ,ひげのはえたじょせい -👨‍🦰️ あかげ,おとこ,おとな,かお,だんせい,大人,男,男性,男性: 赤毛,赤毛,顔 👨🏻‍🦰,👨🏼‍🦰,👨🏽‍🦰,👨🏾‍🦰,👨🏿‍🦰 -👨‍🦰️ おとこ,かお,大人,男,男性,男性: 赤毛,赤い髪,赤毛,赤髪,顔,髪 -👨‍🦱️ おとこ,おとな,かお,だんせい,まきげ,大人,巻き毛,男,男性,男性: 巻き毛,顔 👨🏻‍🦱,👨🏼‍🦱,👨🏽‍🦱,👨🏾‍🦱,👨🏿‍🦱 -👨‍🦱️ おとこ,かお,かーる,大人,巻き毛,男,男性,男性: 巻き毛,顔,髪 -👨‍🦳️ おとこ,おとな,かお,しらが,だんせい,大人,男,男性,男性: 白髪,白髪,顔 👨🏻‍🦳,👨🏼‍🦳,👨🏽‍🦳,👨🏾‍🦳,👨🏿‍🦳 -👨‍🦳️ おとこ,かお,大人,男,男性,男性: 白髪,白い髪,白髪,顔,髪 -👨‍🦲️ おとこ,おとな,かお,だんせい,はげあたま,はげ頭,大人,男,男性,男性: はげ頭,顔 👨🏻‍🦲,👨🏼‍🦲,👨🏽‍🦲,👨🏾‍🦲,👨🏿‍🦲 -👨‍🦲️ おとこ,かお,はげ,はげ頭,大人,男,男性,男性: はげ頭,脱毛,顔 -👩️ おとな,おんな,かお,じょせい,大人,女,女性,顔 👩🏻,👩🏼,👩🏽,👩🏾,👩🏿 -👩‍🦰️ あかげ,おとな,おんな,かお,じょせい,大人,女,女性,女性: 赤毛,赤毛,顔 👩🏻‍🦰,👩🏼‍🦰,👩🏽‍🦰,👩🏾‍🦰,👩🏿‍🦰 -👩‍🦰️ おんな,かお,大人,女,女性,女性: 赤毛,赤い髪,赤毛,赤髪,顔,髪 -🧑‍🦰️ あかげ,おとな,かお,せいじん,大人,大人: 赤毛,成人,赤毛,顔 🧑🏻‍🦰,🧑🏼‍🦰,🧑🏽‍🦰,🧑🏾‍🦰,🧑🏿‍🦰 -🧑‍🦰️ かお,大人,大人: 赤毛,成人,赤い髪,赤毛,赤髪,顔,髪 -👩‍🦱️ おとな,おんな,かお,じょせい,まきげ,大人,女,女性,女性: 巻き毛,巻き毛,顔 👩🏻‍🦱,👩🏼‍🦱,👩🏽‍🦱,👩🏾‍🦱,👩🏿‍🦱 -👩‍🦱️ おんな,かお,かーる,大人,女,女性,女性: 巻き毛,巻き毛,顔,髪 -🧑‍🦱️ おとな,かお,せいじん,まきげ,大人,大人: 巻き毛,巻き毛,成人,顔 🧑🏻‍🦱,🧑🏼‍🦱,🧑🏽‍🦱,🧑🏾‍🦱,🧑🏿‍🦱 -🧑‍🦱️ かお,かーる,大人,大人: 巻き毛,巻き毛,成人,顔,髪 -👩‍🦳️ おとな,おんな,かお,しらが,じょせい,大人,女,女性,女性: 白髪,白髪,顔 👩🏻‍🦳,👩🏼‍🦳,👩🏽‍🦳,👩🏾‍🦳,👩🏿‍🦳 -👩‍🦳️ おんな,かお,大人,女,女性,女性: 白髪,白い髪,白髪,顔,髪 -🧑‍🦳️ おとな,かお,しらが,せいじん,大人,大人: 白髪,成人,白髪,顔 🧑🏻‍🦳,🧑🏼‍🦳,🧑🏽‍🦳,🧑🏾‍🦳,🧑🏿‍🦳 -🧑‍🦳️ かお,大人,大人: 白髪,成人,白い髪,白髪,顔,髪 -👩‍🦲️ おとな,おんな,かお,じょせい,はげあたま,はげ頭,大人,女,女性,女性: はげ頭,顔 👩🏻‍🦲,👩🏼‍🦲,👩🏽‍🦲,👩🏾‍🦲,👩🏿‍🦲 -👩‍🦲️ おんな,かお,はげ,はげ頭,大人,女,女性,女性: はげ頭,脱毛,顔 -🧑‍🦲️ おとな,かお,せいじん,はげあたま,はげ頭,大人,大人: はげ頭,成人,顔 🧑🏻‍🦲,🧑🏼‍🦲,🧑🏽‍🦲,🧑🏾‍🦲,🧑🏿‍🦲 -🧑‍🦲️ かお,はげ,はげ頭,大人,大人: はげ頭,成人,脱毛,顔 -👱‍♀️️ おんな,きんぱつ,きんぱつのじょせい,じょせい,ぶろんど -👱‍♂️️ おとこ,きんぱつ,きんぱつのだんせい,だんせい,ぶろんど -🧓️ おとしより,お年寄り,かお,こうれいしゃ,ろうじん,老人,顔,高齢者 🧓🏻,🧓🏼,🧓🏽,🧓🏾,🧓🏿 -👴️ おじいさん,おとしより,お年寄り,かお,こうれいしゃ,だんせい,ろうじん,男性,老人,顔,高齢者 👴🏻,👴🏼,👴🏽,👴🏾,👴🏿 -👵️ おとしより,おばあさん,お年寄り,かお,こうれいしゃ,じょせい,ろうじん,女性,老人,顔,高齢者 👵🏻,👵🏼,👵🏽,👵🏾,👵🏿 -🙍️ きゃらくたー,しかめがお,しかめっつら,しかめっつらのひと,しかめっ面,しかめつら,しかめつらのひと,しかめ面,しかめ面の人,しかめ顔 🙍🏻,🙍🏼,🙍🏽,🙍🏾,🙍🏿 -🙍‍♂️️ おとこ,しかめがお,しかめっつら,しかめっつらのおとこ,しかめつらのおとこ,だんせい -🙍‍♀️️ おんな,しかめがお,しかめっつら,しかめっつらのおんな,しかめつらのおんな,じょせい -🙎️ きゃらくたー,ひと,ふきげん,ふきげんなひと,ぷんぷん,不機嫌,不機嫌な人,人 🙎🏻,🙎🏼,🙎🏽,🙎🏾,🙎🏿 -🙎‍♂️️ おとこ,だんせい,ふきげん,ふきげんなおとこ,ぷんぷん -🙎‍♀️️ おんな,じょせい,ふきげん,ふきげんなおんな,ぷんぷん -🙅️ ng,えぬじー,じぇすちゃー,だめ,だめのぽーずをするひと,だめのぽーずをする人,ばつ,ひと,人 🙅🏻,🙅🏼,🙅🏽,🙅🏾,🙅🏿 -🙅‍♂️️ ng,えぬじー,おとこ,じぇすちゃー,だめのぽーずをするおとこ,だんせい,ばつ -🙅‍♀️️ ng,えぬじー,おんな,じぇすちゃー,じょせい,だめのぽーずをするおんな,ばつ -🙆️ ok,okのぽーずをする人,おーけー,おーけーのぽーずをするひと,じぇすちゃー,ひと,まる,丸,人,ok 🙆🏻,🙆🏼,🙆🏽,🙆🏾,🙆🏿 -🙆‍♂️️ ok,おっけー,おーけー,おーけーのぽーずをするおとこ,じぇすちゃー,だんせい,まる -🙆‍♀️️ ok,おっけー,おーけー,おーけーのぽーずをするおんな,じぇすちゃー,じょせい,まる -💁️ あんない,あんないするひと,うけつけ,うけつけじょう,かお,受付,受付嬢,案内,案内する人,顔 💁🏻,💁🏼,💁🏽,💁🏾,💁🏿 -💁‍♂️️ あんない,あんないするおとこ,おとこ,じぇすちゃー,だんせい -💁‍♀️️ あんない,あんないするおんな,おんな,じぇすちゃー,じょせい -🙋️ きょしゅ,てをあげる,てをあげるじん,てをあげるひと,ひと,人,手を挙げる,手を挙げる人,挙手 🙋🏻,🙋🏼,🙋🏽,🙋🏾,🙋🏿 -🙋‍♂️️ おとこ,きょしゅ,だんせい,てをあげる,てをあげるおとこ -🙋‍♀️️ おんな,きょしゅ,じょせい,てをあげる,てをあげるおんな -🧏️ あくせしびりてぃ,きこえない,しょうがい,ちょうかく,ひと,みみのふじゆうなひと,人,耳の不自由な人,聞こえない,聴覚,障がい 🧏🏻,🧏🏼,🧏🏽,🧏🏾,🧏🏿 -🧏‍♂️️ あくせしびりてぃ,しょうがい,だんせい,ちょうかく,みみのふじゆうなだんせい -🧏‍♀️️ あくせしびりてぃ,しょうがい,じょせい,ちょうかく,みみのふじゆうなじょせい -🙇️ おじぎ,おじぎするひと,おじぎする人,ごめんなさい,どげざ,土下座 🙇🏻,🙇🏼,🙇🏽,🙇🏾,🙇🏿 -🙇‍♂️️ おじぎ,おじぎするおとこ,おとこ,ごめんなさい,だんせい,どげざ -🙇‍♀️️ おじぎ,おじぎするおんな,おんな,ごめんなさい,じょせい,どげざ -🤦️ あちゃー,じぇすちゃー,ひたいにて,ひたいにてをあてるひと,ひたいに手,ひたいに手をあてる人 🤦🏻,🤦🏼,🤦🏽,🤦🏾,🤦🏿 -🤦‍♂️️ あちゃー,おとこ,じぇすちゃー,だんせい,ひたいにて,ひたいにてをあてるおとこ -🤦‍♀️️ あちゃー,おんな,じぇすちゃー,じょせい,ひたいにて,ひたいにてをあてるおんな -🤷️ おてあげ,おてあげするひと,お手上げ,お手上げする人,じぇすちゃー 🤷🏻,🤷🏼,🤷🏽,🤷🏾,🤷🏿 -🤷‍♂️️ おてあげ,おてあげするおとこ,おとこ,じぇすちゃー,だんせい -🤷‍♀️️ おてあげ,おてあげするおんな,おんな,じぇすちゃー,じょせい -🧑‍⚕️️ いし,いしゃ,せらぴすと -👨‍⚕️️ いし,いしゃ,おとこ,だんせい,だんせいのいしゃ -👩‍⚕️️ いし,いしゃ,おんな,じょせい,じょせいのいしゃ -🧑‍🎓️ かくぼう,がくせい,そつぎょう,卒業,学生,角帽 🧑🏻‍🎓,🧑🏼‍🎓,🧑🏽‍🎓,🧑🏾‍🎓,🧑🏿‍🎓 -👨‍🎓️ おとこ,かくぼう,がくせい,そつぎょう,だんしがくせい,だんせい,卒業,学生,男,男子学生,男性,角帽 👨🏻‍🎓,👨🏼‍🎓,👨🏽‍🎓,👨🏾‍🎓,👨🏿‍🎓 -👩‍🎓️ おんな,かくぼう,がくせい,じょしがくせい,じょせい,そつぎょう,卒業,女,女子学生,女性,学生,角帽 👩🏻‍🎓,👩🏼‍🎓,👩🏽‍🎓,👩🏾‍🎓,👩🏿‍🎓 -🧑‍🏫️ きょうし,きょうじゅ,こうし,せんせい,たんにん,先生,担任,教師,教授,講師 🧑🏻‍🏫,🧑🏼‍🏫,🧑🏽‍🏫,🧑🏾‍🏫,🧑🏿‍🏫 -👨‍🏫️ おとこ,きょうし,きょうじゅ,せんせい,だんせい,だんせいのきょうし,先生,教師,教授,男,男性,男性の教師 👨🏻‍🏫,👨🏼‍🏫,👨🏽‍🏫,👨🏾‍🏫,👨🏿‍🏫 -👩‍🏫️ おんな,きょうし,きょうじゅ,じょせい,じょせいのきょうし,せんせい,先生,女,女性,女性の教師,教師,教授 👩🏻‍🏫,👩🏼‍🏫,👩🏽‍🏫,👩🏾‍🏫,👩🏿‍🏫 -🧑‍⚖️️ さいばん,さいばんかん -👨‍⚖️️ おとこ,さいばん,さいばんかん,だんせい,だんせいのさいばんかん -👩‍⚖️️ おんな,さいばん,さいばんかん,じょせい,じょせいのさいばんかん -🧑‍🌾️ がーでなー,のうか,のうぎょう,のうじょうぬし,農場主,農家,農業 🧑🏻‍🌾,🧑🏼‍🌾,🧑🏽‍🌾,🧑🏾‍🌾,🧑🏿‍🌾 -👨‍🌾️ おとこ,だんせい,のうか,のうかのだんせい,のうふ,男,男性,農夫,農家,農家の男性 👨🏻‍🌾,👨🏼‍🌾,👨🏽‍🌾,👨🏾‍🌾,👨🏿‍🌾 -👩‍🌾️ おんな,じょせい,のうか,のうかのじょせい,女,女性,農家,農家の女性 👩🏻‍🌾,👩🏼‍🌾,👩🏽‍🌾,👩🏾‍🌾,👩🏿‍🌾 -🧑‍🍳️ こっく,しぇふ,りょうり,料理 🧑🏻‍🍳,🧑🏼‍🍳,🧑🏽‍🍳,🧑🏾‍🍳,🧑🏿‍🍳 -👨‍🍳️ おとこ,こっく,しぇふ,だんせい,だんせいのこっく,りょうり,料理,男,男性,男性のこっく 👨🏻‍🍳,👨🏼‍🍳,👨🏽‍🍳,👨🏾‍🍳,👨🏿‍🍳 -👩‍🍳️ おんな,こっく,しぇふ,じょせい,じょせいのこっく,りょうり,女,女性,女性のこっく,料理 👩🏻‍🍳,👩🏼‍🍳,👩🏽‍🍳,👩🏾‍🍳,👩🏿‍🍳 -🧑‍🔧️ こうさく,さぎょういん,すぱな,せいびし,めかにっく,作業員,工作,整備士 🧑🏻‍🔧,🧑🏼‍🔧,🧑🏽‍🔧,🧑🏾‍🔧,🧑🏿‍🔧 -👨‍🔧️ おとこ,こうさく,すぱな,だんせい,だんせいのせいびし,めかにっく,工作,男,男性,男性の整備士 👨🏻‍🔧,👨🏼‍🔧,👨🏽‍🔧,👨🏾‍🔧,👨🏿‍🔧 -👩‍🔧️ おんな,こうさく,じょせい,じょせいのせいびし,すぱな,めかにっく,女,女性,女性の整備士,工作 👩🏻‍🔧,👩🏼‍🔧,👩🏽‍🔧,👩🏾‍🔧,👩🏿‍🔧 -🧑‍🏭️ こういん,こうじょう,ものづくり,ようせつこう,工員,工場,溶接工 🧑🏻‍🏭,🧑🏼‍🏭,🧑🏽‍🏭,🧑🏾‍🏭,🧑🏿‍🏭 -👨‍🏭️ おとこ,だんせい,だんせいのようせつこう,ようせつ,溶接,男,男性,男性の溶接工 👨🏻‍🏭,👨🏼‍🏭,👨🏽‍🏭,👨🏾‍🏭,👨🏿‍🏭 -👩‍🏭️ おんな,じょせい,じょせいのようせつこう,ようせつ,女,女性,女性の溶接工,溶接 👩🏻‍🏭,👩🏼‍🏭,👩🏽‍🏭,👩🏾‍🏭,👩🏿‍🏭 -🧑‍💼️ かいしゃいん,さらりーまん,びじねすぱーそん,会社員 🧑🏻‍💼,🧑🏼‍💼,🧑🏽‍💼,🧑🏾‍💼,🧑🏿‍💼 -👨‍💼️ かいしゃいん,さらりーまん,だんせい,だんせいかいしゃいん,びじねすぱーそん,びじねすまん,会社員,男性,男性会社員 👨🏻‍💼,👨🏼‍💼,👨🏽‍💼,👨🏾‍💼,👨🏿‍💼 -👩‍💼️ ol,おーえる,おーる,かいしゃいん,さらりーまん,じょせい,じょせいかいしゃいん,びじねすぱーそん,会社員,女性,女性会社員 👩🏻‍💼,👩🏼‍💼,👩🏽‍💼,👩🏾‍💼,👩🏿‍💼 -🧑‍🔬️ かがくしゃ,せいぶつがくしゃ,ぶつりがくしゃ,化学者,物理学者,生物学者,科学者 🧑🏻‍🔬,🧑🏼‍🔬,🧑🏽‍🔬,🧑🏾‍🔬,🧑🏿‍🔬 -👨‍🔬️ おとこ,かがくしゃ,だんせい,だんせいかがくしゃ,男,男性,男性科学者,科学者 👨🏻‍🔬,👨🏼‍🔬,👨🏽‍🔬,👨🏾‍🔬,👨🏿‍🔬 -👩‍🔬️ おんな,かがくしゃ,じょせい,じょせいかがくしゃ,女,女性,女性科学者,科学者 👩🏻‍🔬,👩🏼‍🔬,👩🏽‍🔬,👩🏾‍🔬,👩🏿‍🔬 -🧑‍💻️ かいはつしゃ,ぎじゅつしゃ,こんぴゅーた,ぱそこん,ぷろぐらま,技術者,開発者 🧑🏻‍💻,🧑🏼‍💻,🧑🏽‍💻,🧑🏾‍💻,🧑🏿‍💻 -👨‍💻️ かいはつしゃ,こんぴゅーた,だんせい,だんせいぎじゅつしゃ,でべろっぱ,ぱそこん,ぷろぐらま,男性,男性技術者,開発者 👨🏻‍💻,👨🏼‍💻,👨🏽‍💻,👨🏾‍💻,👨🏿‍💻 -👩‍💻️ かいはつしゃ,こんぴゅーた,じょせい,じょせいぎじゅつしゃ,でべろっぱ,ぱそこん,ぷろぐらま,女性,女性技術者,開発者 👩🏻‍💻,👩🏼‍💻,👩🏽‍💻,👩🏾‍💻,👩🏿‍💻 -🧑‍🎤️ あーてぃすと,かしゅ,しんがー,すたー,ろっかー,歌手 🧑🏻‍🎤,🧑🏼‍🎤,🧑🏽‍🎤,🧑🏾‍🎤,🧑🏿‍🎤 -👨‍🎤️ あーてぃすと,おとこ,かしゅ,しんがー,だんせい,だんせいかしゅ,歌手,男,男性,男性歌手 👨🏻‍🎤,👨🏼‍🎤,👨🏽‍🎤,👨🏾‍🎤,👨🏿‍🎤 -👩‍🎤️ あーてぃすと,おんな,かしゅ,しんがー,じょせい,じょせいかしゅ,女,女性,女性歌手,歌手 👩🏻‍🎤,👩🏼‍🎤,👩🏽‍🎤,👩🏾‍🎤,👩🏿‍🎤 -🧑‍🎨️ あーてぃすと,えかき,がか,げいじゅつか,画家,絵描き,芸術家 🧑🏻‍🎨,🧑🏼‍🎨,🧑🏽‍🎨,🧑🏾‍🎨,🧑🏿‍🎨 -👨‍🎨️ あーてぃすと,おとこ,がか,げいじゅつか,だんせい,だんせいのげいじゅつか,男,男性,男性の芸術家,画家,芸術家 👨🏻‍🎨,👨🏼‍🎨,👨🏽‍🎨,👨🏾‍🎨,👨🏿‍🎨 -👩‍🎨️ あーてぃすと,おんな,がか,げいじゅつか,じょせい,じょせいのげいじゅつか,女,女性,女性の芸術家,画家,芸術家 👩🏻‍🎨,👩🏼‍🎨,👩🏽‍🎨,👩🏾‍🎨,👩🏿‍🎨 -🧑‍✈️️ きちょう,そうじゅうし,ぱいろっと -👨‍✈️️ おとこ,そうじゅうし,だんせい,だんせいぱいろっと -👩‍✈️️ おんな,じょせい,じょせいぱいろっと,そうじゅうし -🧑‍🚀️ うちゅうひこうし,ろけっと,宇宙飛行士 🧑🏻‍🚀,🧑🏼‍🚀,🧑🏽‍🚀,🧑🏾‍🚀,🧑🏿‍🚀 -👨‍🚀️ うちゅうひこうし,おとこ,だんせい,だんせいうちゅうひこうし,宇宙飛行士,男,男性,男性宇宙飛行士 👨🏻‍🚀,👨🏼‍🚀,👨🏽‍🚀,👨🏾‍🚀,👨🏿‍🚀 -👩‍🚀️ うちゅうひこうし,おんな,じょせい,じょせいうちゅうひこうし,女,女性,女性宇宙飛行士,宇宙飛行士 👩🏻‍🚀,👩🏼‍🚀,👩🏽‍🚀,👩🏾‍🚀,👩🏿‍🚀 -🧑‍🚒️ きゅうじょたい,しょうぼうし,れすきゅー,救助隊,消防士 🧑🏻‍🚒,🧑🏼‍🚒,🧑🏽‍🚒,🧑🏾‍🚒,🧑🏿‍🚒 -👨‍🚒️ おとこ,しょうぼうし,だんせい,だんせいしょうぼうし,消防士,男,男性,男性消防士 👨🏻‍🚒,👨🏼‍🚒,👨🏽‍🚒,👨🏾‍🚒,👨🏿‍🚒 -👩‍🚒️ おんな,しょうぼうし,じょせい,じょせいしょうぼうし,女,女性,女性消防士,消防士 👩🏻‍🚒,👩🏼‍🚒,👩🏽‍🚒,👩🏾‍🚒,👩🏿‍🚒 -👮️ おまわりさん,お巡りさん,かお,けいかん,けいさつ,けいさつかん,ぽりす,警官,警察,警察官,顔 👮🏻,👮🏼,👮🏽,👮🏾,👮🏿 -👮‍♂️️ おまわりさん,けいかん,けいさつ,けいさつかん,だんせい,だんせいけいさつかん -👮‍♀️️ おまわりさん,けいかん,けいさつ,けいさつかん,じょせい,じょせいけいさつかん -🕵️️ すぱい,たんてい,むしめがね -🕵️‍♂️️ おとこ,たんてい,だんせい,だんせいのたんてい,むしめがね -🕵️‍♀️️ おんな,じょせい,じょせいのたんてい,たんてい,むしめがね -💂️ えいへい,かお,けいび,しゅえい,もんばん,守衛,衛兵,警備,門番 💂🏻,💂🏼,💂🏽,💂🏾,💂🏿 -💂‍♂️️ えいへい,けいび,しゅえい,だんせい,だんせいのえいへい,もんばん -💂‍♀️️ えいへい,けいび,しゅえい,じょせい,じょせいのえいへい,もんばん -🥷️ おんみつ,くさのもの,しのび,すぱい,にんじゃ,にんじゅつ,忍び,忍者,忍術,草の者,隠密 🥷🏻,🥷🏼,🥷🏽,🥷🏾,🥷🏿 -👷️ かお,かなづち,けんせつさぎょういん,こうじ,はんまー,へるめっと,工事,工事現場の人,建設作業員 👷🏻,👷🏼,👷🏽,👷🏾,👷🏿 -👷‍♂️️ けんせつさぎょういん,こうじ,だんせい,だんせいのけんせつさぎょういん,はんまー,へるめっと -👷‍♀️️ けんせつさぎょういん,こうじ,じょせい,じょせいのけんせつさぎょういん,はんまー,へるめっと -🫅️ おうかんをかぶったひと,おうけ,おうさま,おうぞく,くんしゅ,ひと,君主,王冠をかぶった人,王家,王族,王様 🫅🏻,🫅🏼,🫅🏽,🫅🏾,🫅🏿 -🤴️ おうじ,おとこ,だんせい,ぷりんす,王子,男,男性 🤴🏻,🤴🏼,🤴🏽,🤴🏾,🤴🏿 -👸️ おうじょ,おひめさま,おんな,お姫さま,お姫様,かお,くいーん,じょせい,ぷりんせす,女,女性,王女 👸🏻,👸🏼,👸🏽,👸🏾,👸🏿 -👳️ かお,たーばん,たーばんのひと,たーばんの人 👳🏻,👳🏼,👳🏽,👳🏾,👳🏿 -👳‍♂️️ おとこ,たーばん,たーばんのだんせい,だんせい -👳‍♀️️ おんな,じょせい,たーばん,たーばんのじょせい -👲️ おとこ,おわんぼう,おわん帽,おわん帽の人,かお,だんせい,ちゅうかぼうのだんせい,中華帽の男性,男,男性 👲🏻,👲🏼,👲🏽,👲🏾,👲🏿 -🧕️ おんな,じょせい,すかーふ,すかーふのじょせい,すかーふの女性,ひじゃぶ,べーる,女,女性 🧕🏻,🧕🏼,🧕🏽,🧕🏾,🧕🏿 -🤵️ おとこ,けっこん,たきしーど,たきしーどのひと,たきしーどの人,だんせい,はなむこ,結婚,花婿 🤵🏻,🤵🏼,🤵🏽,🤵🏾,🤵🏿 -🤵‍♂️️ おとこ,たきしーど,たきしーどのおとこ,たきしーどのだんせい,だんせい -🤵‍♀️️ おんな,じょせい,たきしーど,たきしーどのおんな,たきしーどのじょせい -👰️ おんな,かお,けっこん,じょせい,はなよめ,べーるのひと,べーるの人,結婚,花嫁,顔 👰🏻,👰🏼,👰🏽,👰🏾,👰🏿 -👰‍♂️️ おとこ,だんせい,べーる,べーるのだんせい -👰‍♀️️ おんな,じょせい,べーる,べーるのじょせい -🤰️ おんな,じょせい,にんしん,にんぷ,女,女性,妊娠,妊婦 🤰🏻,🤰🏼,🤰🏽,🤰🏾,🤰🏿 -🫃️ おとこ,だんせい,にんしん,にんしんしただんせい,にんしんしたひと,にんぷ,ひと,妊夫,妊娠,男,男性 🫃🏻,🫃🏼,🫃🏽,🫃🏾,🫃🏿 -🫄️ おなか,お腹,にんしん,にんしんしたひと,にんぷ,ひと,妊夫,妊娠,妊娠した人,妊婦 🫄🏻,🫄🏼,🫄🏽,🫄🏾,🫄🏿 -🤱️ あかちゃん,おんな,じゅにゅう,じょせい,みるく,女,女性,授乳,赤ちゃん 🤱🏻,🤱🏼,🤱🏽,🤱🏾,🤱🏿 -👩‍🍼️ あかちゃん,おんな,じゅにゅう,じゅにゅうするじょせい,じょせい,女,女性,授乳,授乳する女性,赤ちゃん 👩🏻‍🍼,👩🏼‍🍼,👩🏽‍🍼,👩🏾‍🍼,👩🏿‍🍼 -👨‍🍼️ あかちゃん,おとこ,じゅにゅう,じゅにゅうするだんせい,だんせい,授乳,授乳する男性,男,男性,赤ちゃん 👨🏻‍🍼,👨🏼‍🍼,👨🏽‍🍼,👨🏾‍🍼,👨🏿‍🍼 -🧑‍🍼️ あかちゃん,じゅにゅう,じゅにゅうするひと,ひと,人,授乳,授乳する人,赤ちゃん 🧑🏻‍🍼,🧑🏼‍🍼,🧑🏽‍🍼,🧑🏾‍🍼,🧑🏿‍🍼 -👼️ えんじぇる,かお,てんし,天使,顔 👼🏻,👼🏼,👼🏽,👼🏾,👼🏿 -🎅️ かお,くりすます,さんた,さんたくろーす,顔 🎅🏻,🎅🏼,🎅🏽,🎅🏾,🎅🏿 -🤶️ おんな,くりすます,さんたくろーす,じょせい,じょせいのさんた,女,女性,女性のさんた 🤶🏻,🤶🏼,🤶🏽,🤶🏾,🤶🏿 -🧑‍🎄️ くりすます,さんたくろーす,さんたさん 🧑🏻‍🎄,🧑🏼‍🎄,🧑🏽‍🎄,🧑🏾‍🎄,🧑🏿‍🎄 -🦸️ すーぱーひーろー,ぜん,ちょうじん,ひろいん,ひーろー,善,超人 🦸🏻,🦸🏼,🦸🏽,🦸🏾,🦸🏿 -🦸‍♂️️ ぜん,だんせい,だんせいのすーぱーひーろー,ちょうじん,ひーろー -🦸‍♀️️ じょせい,じょせいのすーぱーひーろー,ぜん,ちょうじん,ひろいん,ひーろー -🦹️ あく,あくやく,ちょうじん,はんにん,わる,ゔぃらん,悪,悪役,犯人,超人 🦹🏻,🦹🏼,🦹🏽,🦹🏾,🦹🏿 -🦹‍♂️️ あく,だんせい,だんせいのあくやく,ちょうじん,はんにん,わる,ゔぃらん -🦹‍♀️️ あく,じょせい,じょせいのあくやく,ちょうじん,はんにん,わる,ゔぃらん -🧙️ まじょ,まほう,まほうつかい,魔女,魔法,魔法使い 🧙🏻,🧙🏼,🧙🏽,🧙🏾,🧙🏿 -🧙‍♂️️ おとこ,おとこのまほうつかい,だんせい,まほうつかい -🧙‍♀️️ おんな,おんなのまほうつかい,じょせい,まじょ,まほうつかい -🧚️ おべろん,でんせつ,ぱっく,まほう,ようせい,伝説,妖精,魔法 🧚🏻,🧚🏼,🧚🏽,🧚🏾,🧚🏿 -🧚‍♂️️ おとこ,おとこのようせい,だんせい,ようせい -🧚‍♀️️ おんな,おんなのようせい,じょせい,ようせい -🧛️ きゅうけつき,どらきゅら,ばんぱいあ,吸血鬼 🧛🏻,🧛🏼,🧛🏽,🧛🏾,🧛🏿 -🧛‍♂️️ おとこ,おとこのきゅうけつき,きゅうけつき,だんせい,どらきゅら,ばんぱいあ -🧛‍♀️️ おんな,おんなのきゅうけつき,きゅうけつき,じょせい,どらきゅら,ばんぱいあ -🧜️ にんぎょ,まーまん,まーめいど,人魚 🧜🏻,🧜🏼,🧜🏽,🧜🏾,🧜🏿 -🧜‍♂️️ おとこ,だんせい,にんぎょ,まーまん -🧜‍♀️️ おんな,じょせい,にんぎょ,まーめいど -🧝️ えるふ,こようせい,ようせい,妖精,小妖精 🧝🏻,🧝🏼,🧝🏽,🧝🏾,🧝🏿 -🧝‍♂️️ えるふ,おとこ,おとこのえるふ,だんせい -🧝‍♀️️ えるふ,おんな,おんなのえるふ,じょせい -🧞️ せいれい,まじん,精霊,魔神 -🧞‍♂️️ おとこ,おとこのせいれい,せいれい,だんせい,まじん -🧞‍♀️️ おんな,おんなのせいれい,じょせい,せいれい,まじん -🧟️ ぞんび,ほらー -🧟‍♂️️ おとこ,おとこのぞんび,ぞんび,だんせい,ほらー -🧟‍♀️️ おんな,おんなのぞんび,じょせい,ぞんび,ほらー -🧌️ おとぎばなし,おとぎ話,とろーる,ふぁんたじー,もんすたー -💆️ えすて,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのひと,ふぇいすまっさーじ中の人,まっさーじ 💆🏻,💆🏼,💆🏽,💆🏾,💆🏿 -💆‍♂️️ えすて,おとこ,だんせい,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのおとこ,まっさーじ -💆‍♀️️ えすて,おんな,じょせい,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのおんな,まっさーじ -💇️ さんぱつ,さんぱつされるひと,とこや,びよういん,びようしつ,へあかっと,床屋,散髪される人,美容室,美容院 💇🏻,💇🏼,💇🏽,💇🏾,💇🏿 -💇‍♂️️ さんぱつされるおとこ,だんせい,とこや,びよういん,びようしつ,へあかっと -💇‍♀️️ さんぱつされるおんな,じょせい,とこや,びよういん,びようしつ,へあかっと -🚶️ あるくひと,うぉーきんぐ,ほこう,ほこうしゃ,歩く人,歩行,歩行者 🚶🏻,🚶🏼,🚶🏽,🚶🏾,🚶🏿 -🚶‍♂️️ あるくおとこ,うぉーきんぐ,だんせい,ほこう,ほこうしゃ -🚶‍♀️️ あるくおんな,うぉーきんぐ,じょせい,ほこう,ほこうしゃ -🧍️ きりつ,たっている,たつひと,ひと,人,立っている,立つ人,起立 🧍🏻,🧍🏼,🧍🏽,🧍🏾,🧍🏿 -🧍‍♂️️ きりつ,たつおとこ,だんせい -🧍‍♀️️ きりつ,じょせい,たつおんな -🧎️ すわる,せいざするひと,ひざまずく,ひと,人,座る,正座する人 🧎🏻,🧎🏼,🧎🏽,🧎🏾,🧎🏿 -🧎‍♂️️ すわる,せいざするだんせい,だんせい,ひざまずく -🧎‍♀️️ じょせい,すわる,せいざするじょせい,ひざまずく -🧑‍🦯️ あくせしびりてぃ,しかく,しょうがい,つえをついたひと,め,杖をついた人,目,視覚,障がい 🧑🏻‍🦯,🧑🏼‍🦯,🧑🏽‍🦯,🧑🏾‍🦯,🧑🏿‍🦯 -👨‍🦯️ あくせしびりてぃ,しかく,しょうがい,だんせい,つえをついただんせい,め,杖をついた男性,男性,目,視覚,障がい 👨🏻‍🦯,👨🏼‍🦯,👨🏽‍🦯,👨🏾‍🦯,👨🏿‍🦯 -👩‍🦯️ あくせしびりてぃ,しかく,しょうがい,じょせい,つえをついたじょせい,め,女性,杖をついた女性,目,視覚,障がい 👩🏻‍🦯,👩🏼‍🦯,👩🏽‍🦯,👩🏾‍🦯,👩🏿‍🦯 -🧑‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,でんどうくるまいすのひと,車いす,障がい,電動車椅子の人 🧑🏻‍🦼,🧑🏼‍🦼,🧑🏽‍🦼,🧑🏾‍🦼,🧑🏿‍🦼 -👨‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,だんせい,でんどうくるまいすのだんせい,男性,車いす,障がい,電動車椅子の男性 👨🏻‍🦼,👨🏼‍🦼,👨🏽‍🦼,👨🏾‍🦼,👨🏿‍🦼 -👩‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,じょせい,でんどうくるまいすのじょせい,女性,車いす,障がい,電動車椅子の女性 👩🏻‍🦼,👩🏼‍🦼,👩🏽‍🦼,👩🏾‍🦼,👩🏿‍🦼 -🧑‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのひと,しょうがい,手動式車椅子の人,車いす,障がい 🧑🏻‍🦽,🧑🏼‍🦽,🧑🏽‍🦽,🧑🏾‍🦽,🧑🏿‍🦽 -👨‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのだんせい,しょうがい,だんせい,手動式車椅子の男性,男性,車いす,障がい 👨🏻‍🦽,👨🏼‍🦽,👨🏽‍🦽,👨🏾‍🦽,👨🏿‍🦽 -👩‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのじょせい,しょうがい,じょせい,女性,手動式車椅子の女性,車いす,障がい 👩🏻‍🦽,👩🏼‍🦽,👩🏽‍🦽,👩🏾‍🦽,👩🏿‍🦽 -🏃️ じょぎんぐ,すぽーつ,はしるひと,まらそん,らんなー,らんにんぐ,走る人 🏃🏻,🏃🏼,🏃🏽,🏃🏾,🏃🏿 -🏃‍♂️️ じょぎんぐ,だんせい,はしるおとこ,まらそん,らんなー,らんにんぐ -🏃‍♀️️ じょぎんぐ,じょせい,はしるおんな,まらそん,らんなー,らんにんぐ -💃️ おどりこ,おどるおんな,じょせい,だんさー,だんす,ふらめんこ,女性,踊り子,踊る女 💃🏻,💃🏼,💃🏽,💃🏾,💃🏿 -🕺️ おとこ,おどるおとこ,だんさー,だんす,だんせい,男,男性,踊る男 🕺🏻,🕺🏼,🕺🏽,🕺🏾,🕺🏿 -🕴️️ ういてるびじねすまん,おとこ,くうちゅうふゆう,すーつ,だんせい,びじねすまん -👯️ うさみみ,うさ耳,かお,だんさー,ばにー,ばにーがーる,ばにーぼーい,ぱーてぃー -👯‍♂️️ うさみみ,おとこ,だんさー,だんせい,ばにーぼーい,ぱーてぃー -👯‍♀️️ うさみみ,おんな,じょせい,だんさー,ばにーがーる,ぱーてぃー -🧖️ さうな,さうなにはいるひと,さうなに入る人 🧖🏻,🧖🏼,🧖🏽,🧖🏾,🧖🏿 -🧖‍♂️️ おとこ,さうな,さうなにはいるおとこ,だんせい -🧖‍♀️️ おんな,さうな,さうなにはいるおんな,じょせい -🧗️ とざん,やまのぼり,やまをのぼるひと,山を登る人,山登り,登山 🧗🏻,🧗🏼,🧗🏽,🧗🏾,🧗🏿 -🧗‍♂️️ おとこ,だんせい,とざん,やまのぼり,やまをのぼるおとこ -🧗‍♀️️ おんな,じょせい,とざん,やまのぼり,やまをのぼるおんな -🤺️ すぽーつ,ふぇんしんぐ,ふぇんしんぐをするひと,ふぇんしんぐをする人 -🏇️ きしゅ,けいば,じょうば,じょっきー,すぽーつ,乗馬,競馬,騎手 🏇🏻,🏇🏼,🏇🏽,🏇🏾,🏇🏿 -⛷️️ すきー,すきーやー,すとっく,すぽーつ -🏂️ すのぼ,すのーぼーだー,すのーぼーど,すぽーつ -🏌️️ ごるふ,ごるふぁー,ごるふをするひと,すぽーつ -🏌️‍♂️️ おとこ,ごるふ,ごるふぁー,ごるふをするおとこ,すぽーつ,だんせい -🏌️‍♀️️ おんな,ごるふ,ごるふぁー,ごるふをするおんな,じょせい,すぽーつ -🏄️ さーふぁー,さーふぃん,さーふぃんするひと,すぽーつ,なみのり -🏄‍♂️️ おとこ,さーふぁー,さーふぃんするおとこ,すぽーつ,だんせい,なみのり -🏄‍♀️️ おんな,さーふぁー,さーふぃんするおんな,じょせい,すぽーつ,なみのり -🚣️ かぬー,かやっく,すぽーつ,のりもの,ふね,ぼーとをこぐひと,ぼーとをこぐ人,乗り物,船 🚣🏻,🚣🏼,🚣🏽,🚣🏾,🚣🏿 -🚣‍♂️️ かぬー,かやっく,すぽーつ,だんせい,ふね,ぼーとをこぐおとこ -🚣‍♀️️ かぬー,かやっく,じょせい,すぽーつ,ふね,ぼーとをこぐおんな -🏊️ およぐひと,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ,水泳 -🏊‍♂️️ およぐおとこ,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ,だんせい -🏊‍♀️️ およぐおんな,じょせい,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ -⛹️️ きゅうぎ,すぽーつ,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするひと -⛹️‍♂️️ きゅうぎ,すぽーつ,だんせい,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするおとこ -⛹️‍♀️️ きゅうぎ,じょせい,すぽーつ,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするおんな -🏋️️ うぇいとりふてぃんぐ,じゅうりょうあげ,じゅうりょうあげをするひと,すぽーつ -🏋️‍♂️️ うぇいとりふてぃんぐ,おとこ,じゅうりょうあげをするおとこ,すぽーつ,だんせい -🏋️‍♀️️ うぇいとりふてぃんぐ,おんな,じゅうりょうあげをするおんな,じょせい,すぽーつ -🚴️ けいりん,さいくりんぐ,じてんしゃにのるじん,じてんしゃにのるひと,すぽーつ,ろーどばいく,ろーどれーす,競輪,自転車に乗る人 🚴🏻,🚴🏼,🚴🏽,🚴🏾,🚴🏿 -🚴‍♂️️ けいりん,さいくりんぐ,じてんしゃにのるおとこ,すぽーつ,だんせい,ろーどれーす -🚴‍♀️️ けいりん,さいくりんぐ,じてんしゃにのるおんな,じょせい,すぽーつ,ろーどれーす -🚵️ さいくりんぐ,じてんしゃ,すぽーつ,まうんてんばいく,まうんてんばいくにのるひと,まうんてんばいくに乗る人,自転車 🚵🏻,🚵🏼,🚵🏽,🚵🏾,🚵🏿 -🚵‍♂️️ おとこ,さいくりんぐ,じてんしゃ,すぽーつ,だんせい,まうんてんばいくにのるおとこ -🚵‍♀️️ おんな,さいくりんぐ,じてんしゃ,じょせい,すぽーつ,まうんてんばいくにのるおんな -🤸️ すぽーつ,そくてん,そくてんするひと,たいそう,体操,側転,側転する人 🤸🏻,🤸🏼,🤸🏽,🤸🏾,🤸🏿 -🤸‍♂️️ おとこ,すぽーつ,そくてん,そくてんするおとこ,たいそう,だんせい -🤸‍♀️️ おんな,じょせい,すぽーつ,そくてん,そくてんするおんな,たいそう -🤼️ すぽーつ,れすらー,れすりんぐ,れすりんぐするひと,れすりんぐする人,れすりんぐをするひと -🤼‍♂️️ おとこ,すぽーつ,だんせい,れすりんぐ,れすりんぐするおとこ,れすりんぐをするおとこ -🤼‍♀️️ おんな,じょせい,すぽーつ,れすりんぐ,れすりんぐするおんな,れすりんぐをするおんな -🤽️ きゅうぎ,すいきゅう,すいきゅうをするひと,すぽーつ,水球,水球をする人,球技 🤽🏻,🤽🏼,🤽🏽,🤽🏾,🤽🏿 -🤽‍♂️️ おとこ,きゅうぎ,すいきゅう,すいきゅうをするおとこ,すぽーつ,だんせい -🤽‍♀️️ おんな,きゅうぎ,じょせい,すいきゅう,すいきゅうをするおんな,すぽーつ -🤾️ きゅうぎ,すぽーつ,はんどぼーる,はんどぼーるをするひと,はんどぼーるをする人,球技 🤾🏻,🤾🏼,🤾🏽,🤾🏾,🤾🏿 -🤾‍♂️️ おとこ,きゅうぎ,すぽーつ,だんせい,はんどぼーる,はんどぼーるをするおとこ -🤾‍♀️️ おんな,きゅうぎ,じょせい,すぽーつ,はんどぼーる,はんどぼーるをするおんな -🤹️ じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするひと,じゃぐりんぐをする人,だいどうげい,大道芸 🤹🏻,🤹🏼,🤹🏽,🤹🏾,🤹🏿 -🤹‍♂️️ おとこ,じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするおとこ,だいどうげい,だんせい -🤹‍♀️️ おんな,じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするおんな,じょせい,だいどうげい -🧘️ めいそう,よが,よがのぽーずをするひと,よがのぽーずをする人,瞑想 🧘🏻,🧘🏼,🧘🏽,🧘🏾,🧘🏿 -🧘‍♂️️ おとこ,だんせい,めいそう,よが,よがのぽーずをするおとこ -🧘‍♀️️ おんな,じょせい,めいそう,よが,よがのぽーずをするおんな -🛀️ お風呂,ばすたぶ,ふろ,ふろにはいるじん,ふろにはいるひと,よくそう,浴槽,風呂,風呂に入る人 🛀🏻,🛀🏼,🛀🏽,🛀🏾,🛀🏿 -🛌️ ねる,べっど,べっどにねるひと,べっどに寝る人,ほてる,寝る 🛌🏻,🛌🏼,🛌🏽,🛌🏾,🛌🏿 -🧑‍🤝‍🧑️ かっぷる,こいびと,つなぐ,て,てをつなぐ,てをつなぐ2にん,てをつなぐふたり,ともだち,ひと,人,友達,恋人,手,手をつなぐ,手をつなぐ2人 🧑🏻‍🤝‍🧑🏻,🧑🏻‍🤝‍🧑🏼,🧑🏻‍🤝‍🧑🏽,🧑🏻‍🤝‍🧑🏾,🧑🏻‍🤝‍🧑🏿,🧑🏼‍🤝‍🧑🏻,🧑🏼‍🤝‍🧑🏼,🧑🏼‍🤝‍🧑🏽,🧑🏼‍🤝‍🧑🏾,🧑🏼‍🤝‍🧑🏿,🧑🏽‍🤝‍🧑🏻,🧑🏽‍🤝‍🧑🏼,🧑🏽‍🤝‍🧑🏽,🧑🏽‍🤝‍🧑🏾,🧑🏽‍🤝‍🧑🏿,🧑🏾‍🤝‍🧑🏻,🧑🏾‍🤝‍🧑🏼,🧑🏾‍🤝‍🧑🏽,🧑🏾‍🤝‍🧑🏾,🧑🏾‍🤝‍🧑🏿,🧑🏿‍🤝‍🧑🏻,🧑🏿‍🤝‍🧑🏼,🧑🏿‍🤝‍🧑🏽,🧑🏿‍🤝‍🧑🏾,🧑🏿‍🤝‍🧑🏿 -👭️ おんな,かっぷる,こいびと,てをつなぐじょせい,ともだち,どうせい,友達,同性,女,恋人,手をつなぐ女性 👭🏻,👭🏼,👭🏽,👭🏾,👭🏿,👩🏻‍🤝‍👩🏼,👩🏻‍🤝‍👩🏽,👩🏻‍🤝‍👩🏾,👩🏻‍🤝‍👩🏿,👩🏼‍🤝‍👩🏻,👩🏼‍🤝‍👩🏽,👩🏼‍🤝‍👩🏾,👩🏼‍🤝‍👩🏿,👩🏽‍🤝‍👩🏻,👩🏽‍🤝‍👩🏼,👩🏽‍🤝‍👩🏾,👩🏽‍🤝‍👩🏿,👩🏾‍🤝‍👩🏻,👩🏾‍🤝‍👩🏼,👩🏾‍🤝‍👩🏽,👩🏾‍🤝‍👩🏿,👩🏿‍🤝‍👩🏻,👩🏿‍🤝‍👩🏼,👩🏿‍🤝‍👩🏽,👩🏿‍🤝‍👩🏾 -👫️ いせい,かっぷる,こいびと,だんじょ,てをつなぐだんじょ,ともだち,ふたり,友達,恋人,手をつなぐ男女,男女,異性 👫🏻,👫🏼,👫🏽,👫🏾,👫🏿,👩🏻‍🤝‍👨🏼,👩🏻‍🤝‍👨🏽,👩🏻‍🤝‍👨🏾,👩🏻‍🤝‍👨🏿,👩🏼‍🤝‍👨🏻,👩🏼‍🤝‍👨🏽,👩🏼‍🤝‍👨🏾,👩🏼‍🤝‍👨🏿,👩🏽‍🤝‍👨🏻,👩🏽‍🤝‍👨🏼,👩🏽‍🤝‍👨🏾,👩🏽‍🤝‍👨🏿,👩🏾‍🤝‍👨🏻,👩🏾‍🤝‍👨🏼,👩🏾‍🤝‍👨🏽,👩🏾‍🤝‍👨🏿,👩🏿‍🤝‍👨🏻,👩🏿‍🤝‍👨🏼,👩🏿‍🤝‍👨🏽,👩🏿‍🤝‍👨🏾 -👬️ おとこ,かっぷる,こいびと,てをつなぐだんせい,ともだち,どうせい,友達,同性,恋人,手をつなぐ男性,男 👬🏻,👬🏼,👬🏽,👬🏾,👬🏿,👨🏻‍🤝‍👨🏼,👨🏻‍🤝‍👨🏽,👨🏻‍🤝‍👨🏾,👨🏻‍🤝‍👨🏿,👨🏼‍🤝‍👨🏻,👨🏼‍🤝‍👨🏽,👨🏼‍🤝‍👨🏾,👨🏼‍🤝‍👨🏿,👨🏽‍🤝‍👨🏻,👨🏽‍🤝‍👨🏼,👨🏽‍🤝‍👨🏾,👨🏽‍🤝‍👨🏿,👨🏾‍🤝‍👨🏻,👨🏾‍🤝‍👨🏼,👨🏾‍🤝‍👨🏽,👨🏾‍🤝‍👨🏿,👨🏿‍🤝‍👨🏻,👨🏿‍🤝‍👨🏼,👨🏿‍🤝‍👨🏽,👨🏿‍🤝‍👨🏾 -💏️ 2にんできす,2人できす,かっぷる,きす,ちゅっ,はーと,ふたりできす 💏🏻,💏🏼,💏🏽,💏🏾,💏🏿,🧑🏻‍❤️‍💋‍🧑🏼,🧑🏻‍❤️‍💋‍🧑🏽,🧑🏻‍❤️‍💋‍🧑🏾,🧑🏻‍❤️‍💋‍🧑🏿,🧑🏼‍❤️‍💋‍🧑🏻,🧑🏼‍❤️‍💋‍🧑🏽,🧑🏼‍❤️‍💋‍🧑🏾,🧑🏼‍❤️‍💋‍🧑🏿,🧑🏽‍❤️‍💋‍🧑🏻,🧑🏽‍❤️‍💋‍🧑🏼,🧑🏽‍❤️‍💋‍🧑🏾,🧑🏽‍❤️‍💋‍🧑🏿,🧑🏾‍❤️‍💋‍🧑🏻,🧑🏾‍❤️‍💋‍🧑🏼,🧑🏾‍❤️‍💋‍🧑🏽,🧑🏾‍❤️‍💋‍🧑🏿,🧑🏿‍❤️‍💋‍🧑🏻,🧑🏿‍❤️‍💋‍🧑🏼,🧑🏿‍❤️‍💋‍🧑🏽,🧑🏿‍❤️‍💋‍🧑🏾 -👩‍❤️‍💋‍👨️ 2にんできす,かっぷる,きす,じょせい,じょせいとだんせいできす,だんせい,ちゅっ,はーと -👨‍❤️‍💋‍👨️ 2にんできす,かっぷる,きす,だんせい,だんせいとだんせいできす,ちゅっ,はーと -👩‍❤️‍💋‍👩️ 2にんできす,かっぷる,きす,じょせい,じょせいとじょせいできす,ちゅっ,はーと -💑️ あつあつ,かっぷる,かっぷるとはーと,こいびと,はーと,恋人,熱々 💑🏻,💑🏼,💑🏽,💑🏾,💑🏿,🧑🏻‍❤️‍🧑🏼,🧑🏻‍❤️‍🧑🏽,🧑🏻‍❤️‍🧑🏾,🧑🏻‍❤️‍🧑🏿,🧑🏼‍❤️‍🧑🏻,🧑🏼‍❤️‍🧑🏽,🧑🏼‍❤️‍🧑🏾,🧑🏼‍❤️‍🧑🏿,🧑🏽‍❤️‍🧑🏻,🧑🏽‍❤️‍🧑🏼,🧑🏽‍❤️‍🧑🏾,🧑🏽‍❤️‍🧑🏿,🧑🏾‍❤️‍🧑🏻,🧑🏾‍❤️‍🧑🏼,🧑🏾‍❤️‍🧑🏽,🧑🏾‍❤️‍🧑🏿,🧑🏿‍❤️‍🧑🏻,🧑🏿‍❤️‍🧑🏼,🧑🏿‍❤️‍🧑🏽,🧑🏿‍❤️‍🧑🏾 -👩‍❤️‍👨️ あつあつ,かっぷる,かっぷるとはーと,こいびと,じょせい,じょせいとだんせいのかっぷる,だんせい,はーと -👨‍❤️‍👨️ あつあつ,かっぷる,かっぷるとはーと,こいびと,だんせい,だんせいとだんせいのかっぷる,はーと -👩‍❤️‍👩️ あつあつ,かっぷる,かっぷるとはーと,こいびと,じょせい,じょせいとじょせいのかっぷる,はーと -👨‍👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,だんせい,だんせいとじょせいとおとこのこのかぞく,女性,家族,家族: 男性 女性 男の子,男の子,男性,親子 -👨‍👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子,男性,親子 -👨‍👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子 男の子,男の子,男性,親子 -👨‍👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,だんせい,だんせいとじょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 男性 女性 男の子 男の子,男の子,男性,親子 -👨‍👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子 女の子,男性,親子 -👨‍👨‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとだんせいとおとこのこのかぞく,家族,家族: 男性 男性 男の子,男の子,男性,親子 -👨‍👨‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのこのかぞく,女の子,家族,家族: 男性 男性 女の子,男性,親子 -👨‍👨‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのことおとこのこのかぞく,女の子,家族,家族: 男性 男性 女の子 男の子,男の子,男性,親子 -👨‍👨‍👦‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとだんせいとおとこのことおとこのこのかぞく,家族,家族: 男性 男性 男の子 男の子,男の子,男性,親子 -👨‍👨‍👧‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのことおんなのこのかぞく,女の子,家族,家族: 男性 男性 女の子 女の子,男性,親子 -👩‍👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとじょせいとおとこのこのかぞく,女性,家族,家族: 女性 女性 男の子,男の子,親子 -👩‍👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子,親子 -👩‍👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子 男の子,男の子,親子 -👩‍👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとじょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 女性 女性 男の子 男の子,男の子,親子 -👩‍👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子 女の子,親子 -👨‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとおとこのこのかぞく,家族,家族: 男性 男の子,男の子,男性,親子 -👨‍👦‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとおとこのことおとこのこのかぞく,家族,家族: 男性 男の子 男の子,男の子,男性,親子 -👨‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのこのかぞく,女の子,家族,家族: 男性 女の子,男性,親子 -👨‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのことおとこのこのかぞく,女の子,家族,家族: 男性 女の子 男の子,男の子,男性,親子 -👨‍👧‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのことおんなのこのかぞく,女の子,家族,家族: 男性 女の子 女の子,男性,親子 -👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとおとこのこのかぞく,女性,家族,家族: 女性 男の子,男の子,親子 -👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 女性 男の子 男の子,男の子,親子 -👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのこのかぞく,女の子,女性,家族,家族: 女性 女の子,親子 -👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 女性 女の子 男の子,男の子,親子 -👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 女性 女の子 女の子,親子 -🗣️️ かお,しるえっと,はなす,はなすひとのしるえっと -👤️ 1にん,1人,かげ,げすと,げすとあかうんと,しるえっと,じょうはんしん,ひとかげ,ひとのしるえっと,ひとり,上半身,人のしるえっと,人影 -👥️ 2にん,2にんのしるえっと,2人,2人のしるえっと,しるえっと,じょうはんしん,ふたり,上半身 -🫂️ あいさつ,ありがとう,おわかれ,お別れ,こんにちは,さようなら,はぐするひと,はぐする人,挨拶 -👪️ おやこ,かぞく,家族 -👣️ あし,あしあと,足,足あと -🦰️ あかげ,あかげのひと,あかちゃ,赤毛,赤毛の人,赤茶 -🦱️ あふろ,かーる,くせげ,くせ毛,ぱんちぱーま,まきげ,巻き毛 -🦳️ ぐれー,こうれいしゃ,しらが,ねんぱい,ろうじん,年配,白髪,老人,高齢者 -🦲️ かがくりょうほう,けがない,すきんへっど,はげあたま,はげ頭,ぼうず,化学療法,坊主,毛がない -🐵️ かお,さる,さるのかお,さるの顔,どうぶつ,動物,猿,顔 -🐒️ さる,どうぶつ,動物,猿 -🦍️ かお,ごりら,どうぶつ,動物,顔 -🦧️ おらんうーたん,さる,どうぶつ,もりのひと,動物,森の人,猿 -🐶️ いぬ,いぬのかお,いぬの顔,かお,どうぶつ,ぺっと,動物,犬,顔 -🐕️ いぬ,どうぶつ,ぺっと -🦮️ あくせしびりてぃ,いぬ,しかく,しょうがい,ほじょ,ほじょけん,もうどうけん,犬,盲導犬,補助犬,視覚,障がい -🐕‍🦺️ あくせしびりてぃ,いぬ,かいじょけん,さーびす,ほじょ,介助犬,犬,補助 -🐩️ いぬ,どうぶつ,ぷーどる,ぺっと,動物,犬 -🐺️ おおかみ,おおかみのかお,おおかみの顔,かお,どうぶつ,動物,狼,顔 -🦊️ かお,きつね,きつねのかお,きつねの顔,どうぶつ,動物,狐,顔 -🦝️ あらいぐま,こうきしん,ずるがしこい,ずる賢い,せんさくずき,どうぶつ,動物,好奇心,詮索好き -🐱️ かお,どうぶつ,ねこ,ねこのかsお,ねこのかお,ねこの顔,ぺっと,動物,猫,顔 -🐈️ どうぶつ,ねこ,ぺっと -🐈‍⬛️ くろ,くろねこ,どうぶつ,ねこ,ふきつ,不吉,動物,猫,黒,黒猫 -🦁️ かお,どうぶつ,らいおん,らいおんのかお,らいおんの顔,動物,顔 -🐯️ えと,かお,しし,じゅうにし,とら,とらのかお,とらの顔,どうぶつ,動物,虎,顔 -🐅️ とら,どうぶつ,動物,虎 -🐆️ どうぶつ,ひょう,動物 -🐴️ うま,うまのかお,かお,どうぶつ,動物,顔,馬,馬の顔 -🫎️ えだつの,しか,しかのかお,どうぶつ,へらじか,へらじかのかお,ほにゅうるい,動物,哺乳類,枝角,鹿 -🫏️ うま,どうぶつ,ほにゅうるい,らば,ろば,動物,哺乳類,馬 -🐎️ うま,けいば,じょうば,どうぶつ,乗馬,動物,競馬,馬 -🦄️ いっかくじゅう,かお,どうぶつ,ゆにこーん,ゆにこーんのかお,ゆにこーんの顔,一角獣,動物,顔 -🦓️ しまうま,しましま,どうぶつ,動物 -🦌️ かお,しか,どうぶつ,動物,顔,鹿 -🦬️ うし,どうぶつ,ばいそん,ばっふぁろー,むれ,やぎゅう,動物,牛,群れ,野牛 -🐮️ うし,うしのかお,えと,かお,じゅうにし,どうぶつ,動物,牛,牛の顔,顔 -🐂️ うし,おうし,せいざ,どうぶつ,動物,星座,牛,牡牛 -🐃️ うし,すいぎゅう,どうぶつ,ばっふぁろー,動物,水牛,牛 -🐄️ うし,どうぶつ,めうし,動物,牛,牝牛 -🐷️ かお,どうぶつ,ぶた,ぶたのかお,ぶたの顔,動物,豚,顔 -🐖️ どうぶつ,ぶた,動物,豚 -🐗️ いのしし,かお,どうぶつ,のぶた,動物,猪,顔 -🐽️ かお,はな,ぶた,ぶたの鼻,ぶたはな,ぶたばな,ぶた鼻,豚,顔,鼻 -🐏️ おひつじ,せいざ,どうぶつ,ひつじ,動物,星座,牡羊,羊 -🐑️ どうぶつ,ひつじ,動物,羊 -🐐️ せいざ,どうぶつ,やぎ,動物,山羊,星座 -🐪️ どうぶつ,らくだ,動物 -🐫️ どうぶつ,ふたこぶ,ふたこぶらくだ,らくだ,動物 -🦙️ あるぱか,ぐあなこ,どうぶつ,びくーな,ようもう,らま,動物,羊毛 -🦒️ きりん,どうぶつ,動物 -🐘️ ぞう,どうぶつ,動物,象 -🦣️ きば,きょだい,ぜつめつ,どうぶつ,まんもす,動物,巨大,牙,絶滅 -🦏️ かお,さい,どうぶつ,動物,顔 -🦛️ かば,どうぶつ,動物 -🐭️ えと,かお,じゅうにし,どうぶつ,ね,ねずみ,ねずみのかお,ねずみの顔,動物,顔 -🐁️ どうぶつ,ねずみ,はつかねずみ,まうす,動物 -🐀️ どうぶつ,ねずみ,らっと,動物 -🐹️ かお,どうぶつ,ねずみ,はむすたー,はむすたーのかお,はむすたーの顔,ぺっと,動物,顔 -🐰️ う,うさぎ,うさぎのかお,うさぎの顔,えと,かお,じゅうにし,どうぶつ,ぺっと,動物,顔 -🐇️ うさぎ,どうぶつ,ぺっと,動物 -🐿️️ どうぶつ,りす -🦫️ だむづくり,だむ作り,どうぶつ,びーばー,動物 -🦔️ とげ,どうぶつ,はりねずみ,動物 -🦇️ きゅうけつき,こうもり,どうぶつ,ばんぱいあ,動物,吸血鬼 -🐻️ かお,くま,くまのかお,くまの顔,どうぶつ,動物,熊,顔 -🐻‍❄️️ くま,しろ,しろくま,どうぶつ,ほっきょく,ほっきょくぐま -🐨️ かお,こあら,どうぶつ,動物,顔 -🐼️ かお,どうぶつ,ぱんだ,ぱんだのかお,ぱんだの顔,動物,顔 -🦥️ どうぶつ,なまけもの,のんびり,ものぐさ,動物 -🦦️ あそびすき,かわうそ,さかなをたべる,どうぶつ,らっこ,動物,遊び好き,魚を食べる -🦨️ あくしゅう,すかんく,どうぶつ,動物,悪臭 -🦘️ おーすとらりあ,かんがるー,じゃんぷ,じょーい,ゆうたいるい,有袋類 -🦡️ あなぐま,どうぶつ,みつあなぐま,動物 -🐾️ あしあと,いぬ,どうぶつ,にくきゅう,ねこ,動物,犬,犬の足跡,猫,肉球,足跡 -🦃️ しちめんちょう,たーきー,とり,どうぶつ,七面鳥,動物,鳥 -🐔️ かお,とり,どうぶつ,にわとり,動物,顔,鳥 -🐓️ おんどり,とり,どうぶつ,動物,鳥 -🐣️ かお,たまご,たまごからかえったひよこ,とり,どうぶつ,ひな,ひなどり,ひな鳥,ひよこ,ふか,動物,卵からかえったひよこ,顔,鳥 -🐤️ かお,とり,どうぶつ,ひな,ひよこ,よこをむいているひよこ,動物,横を向いているひよこ,顔,鳥 -🐥️ とり,どうぶつ,ひな,ひよこ,まえをむいているひよこ,前を向いているひよこ,動物,鳥 -🐦️ かお,とり,どうぶつ,鳥 -🐧️ とり,どうぶつ,ぺんぎん,動物,鳥 -🕊️️ とり,どうぶつ,はと,へいわ -🦅️ とり,どうぶつ,わし,動物,鳥 -🦆️ かも,とり,どうぶつ,動物,鳥 -🦢️ とり,はくちょう,ひな,みにくいあひるのこ,みにくいあひるの子,白鳥,鳥 -🦉️ とり,どうぶつ,ふくろう,動物,鳥 -🦤️ ぜつめつ,とべないとり,とり,どーどー,もーりしゃすとう,もーりしゃす島,絶滅,飛べない鳥,鳥 -🪶️ うもう,かるい,とぶ,とり,はね,羽,羽毛,軽い,飛ぶ,鳥 -🦩️ とり,どうぶつ,ねったい,ぴんくいろ,ぴんく色,ふらみんご,動物,熱帯,鳥 -🦚️ くじゃく,とり,はで,ぴーこっく,孔雀,派手,鳥 -🦜️ おうむ,かいぞく,しゃべる,とり,海賊,鳥 -🪽️ あき,しんわ,つばさ,てんし,とぶ,とり,とりのはね,はね,天使,神話,空,翼,飛ぶ,鳥 -🐦‍⬛️ からす,くろ,くろいとり,くろとり,とり,烏,鳥,黒,黒い鳥,黒鳥 -🪿️ あひる,がちょう,がーがー,とり,まぬけ,鳥 -🐸️ かえる,かえるのかお,かえるの顔,かお,どうぶつ,動物,顔 -🐊️ どうぶつ,はちゅうるい,わに,動物,爬虫類 -🐢️ かめ,どうぶつ,はちゅうるい,動物,爬虫類 -🦎️ とかげ,どうぶつ,はちゅうるい,動物,爬虫類 -🐍️ せいざ,どうぶつ,どく,はちゅうるい,へび,動物,星座,毒,爬虫類 -🐲️ えと,かお,じゅうにし,たつ,どうぶつ,どらごん,どらごんのかお,どらごんの顔,りゅう,動物,竜,顔,龍 -🐉️ どうぶつ,どらごん,りゅう,動物,竜,龍 -🦕️ きょうりゅう,そうしょくきょうりゅう,でぃぷろどくす,ぶらきおさうるす,りゅうきゃくるい,恐竜,竜脚類,草食恐竜 -🦖️ きょうりゅう,てぃらのさうるす,恐竜 -🐳️ くじら,しお,しおふき,しおふきくじら,どうぶつ,動物,潮吹き,潮吹きくじら -🐋️ くじら,どうぶつ,動物 -🐬️ いるか,どうぶつ,動物 -🦭️ あざらし,あしか,かいじゅう,とど,どうぶつ,動物,海獣 -🐟️ さかな,せいざ,どうぶつ,魚 -🐠️ さかな,どうぶつ,ねったいぎょ,動物,熱帯魚,魚 -🐡️ さかな,どうぶつ,ふぐ,動物,魚 -🦈️ さかな,さめ,どうぶつ,動物,魚 -🐙️ たこ,どうぶつ,動物 -🐚️ かい,どうぶつ,まきがい,動物,巻き貝,貝 -🪸️ うみ,さんご,さんごしょう,海,珊瑚礁 -🪼️ うみ,くらげ,さす,しょくしゅ,どく,はり,むせきついどうぶつ,刺す,毒,海,無脊椎動物,触手,針 -🐌️ かたつむり,でんでんむし,でんでん虫,むし,虫 -🦋️ ちょう,むし,虫 -🐛️ いもむし,けむし,げじげじ,むし,毛虫,芋虫,虫 -🐜️ あり,むし,虫 -🐝️ はち,みつばち,むし,虫 -🪲️ かぶとむし,こんちゅう,つの,むし,昆虫,虫 -🐞️ てんとうむし,むし,虫 -🦗️ こおろぎ,ばった,むし,虫 -🪳️ がいちゅう,ごきぶり,むし,害虫,虫 -🕷️️ くも,すぱいだー,むし -🕸️️ くも,くものす -🦂️ さそり,せいざ,むし,星座,虫 -🦟️ ういるす,か,ねつ,びょうき,まらりあ,むし,熱,病気,虫,蚊 -🪰️ がいちゅう,はえ,びょうげんきん,ふけつ,むし,不潔,害虫,病原菌,虫 -🪱️ きせいちゅう,みみず,むし,寄生虫,虫 -🦠️ あめーば,ういるす,さいきん,ばくてりあ,びせいぶつ,微生物,細菌 -💐️ はな,はなたば,ぶーけ,花,花束 -🌸️ さくら,はな,桜,花 -💮️ たいへんよくできました,はな,はなまる,よくできました,大変よくできました,大変よく出来ました,花 -🪷️ せいじょう,はす,はすのはな,はすの花,はな,ひんどぅーきょう,ひんどぅー教,ぶっきょう,ろーたす,仏教,清浄,花 -🏵️️ しょくぶつ,はな,はなかざり -🌹️ はな,ばら,花 -🥀️ しおれた,しおれたはな,しおれた花,はな,花 -🌺️ はいびすかす,はな,花 -🌻️ はな,ひまわり,花 -🌼️ かいか,さいたはな,はな,咲いた花,花,開花 -🌷️ ちゅーりっぷ,はな,花 -🪻️ あおむらさき,はな,ひやしんす,らべんだー,花,青紫 -🌱️ しんめ,ふたば,め,双葉,新芽,芽 -🪴️ うえきばち,しょくぶつ,なえ,はちうえ,べらんだ,みずやり,みどり,植木鉢,植物,水やり,緑,苗,鉢植え -🌲️ き,じょうりょくじゅ,常緑樹,木 -🌳️ き,らくようじゅ,木,落葉樹 -🌴️ き,やし,やしのき,やしの木,木 -🌵️ さぼてん,しょくぶつ,植物 -🌾️ いなほ,いね,くさ,すすき,稲,稲穂,草 -🌿️ くさ,は,はっぱ,はーぶ,やくそう,草,葉,薬草 -☘️️ くさ,くろーばー,は -🍀️ 4,くさ,くろーばー,は,よつば,よつばのくろーばー,四つ葉のくろーばー,草,葉 -🍁️ かえで,こうよう,もみじ,紅葉 -🍂️ おちば,かれは,このは,木の葉,枯れ葉,落ち葉 -🍃️ おちば,かぜ,かぜにゆれるは,このは,びゅうびゅう,木の葉,落ち葉,風,風に揺れる葉 -🪹️ えいそう,からっぽのす,す,すづくり,とりのす,営巣,巣,巣作り,空っぽの巣 -🪺️ えいそう,す,すづくり,たまご,とりのす,とりのたまごとす,営巣,巣,巣作り,鳥の卵と巣 -🍄️ きのこ,どく,まっしゅるーむ,やさい,毒,野菜 -🍇️ くだもの,ぐれーぷ,ぶどう,果物 -🍈️ くだもの,めろん,やさい,果物,野菜 -🍉️ くだもの,すいか,やさい,果物,野菜 -🍊️ おれんじ,くだもの,みかん,果物 -🍋️ くだもの,れもん,果物 -🍌️ くだもの,ばなな,果物 -🍍️ くだもの,とろぴかる,ぱいなっぷる,ぱいん,果物 -🥭️ くだもの,とろぴかる,まんごー,果物 -🍎️ あかりんご,あっぷる,くだもの,りんご,果物,赤りんご -🍏️ あおりんご,あっぷる,くだもの,りんご,果物,青りんご -🍐️ くだもの,せいようなし,なし,ようなし,果物,洋なし,西洋なし -🍑️ くだもの,ぴーち,もも,果物,桃 -🍒️ くだもの,さくらんぼ,ちぇりー,果物 -🍓️ いちご,くだもの,すとろべりー,果物 -🫐️ くだもの,びるべりー,ぶるーべりー,べりー,果物 -🥝️ きうい,きういふるーつ,くだもの,果物 -🍅️ くだもの,とまと,やさい,果物,野菜 -🫒️ おりーぶ,かじつ,じつ,み,実,果実 -🥥️ くだもの,ここなっつ,ここなつ,やしのみ,やしの実,果物 -🥑️ あぼかど,あぼがど,くだもの,やさい,果物,野菜 -🍆️ なす,やさい,野菜 -🥔️ いも,じゃがいも,ぽてと,やさい,野菜 -🥕️ にんじん,やさい,人参,野菜 -🌽️ こーん,とうもろこし,やさい,野菜 -🌶️️ からい,こうしんりょう,とうがらし,やさい -🫑️ あかぴーまん,とうがらし,ぱぷりか,ぴーまん,やさい,赤ぴーまん,野菜 -🥒️ きゅうり,つけもの,ぴくるす,やさい,漬け物,野菜 -🥬️ きゃべつ,けーる,ちんげんさい,ちんげん菜,はやさい,れたす,葉野菜 -🥦️ ぶろっこりー,やさい,野菜 -🧄️ かおり,におい,にんにく,やくみ,やさい,薬味,野菜,香り -🧅️ たまねぎ,ねぎ,やくみ,やさい,玉ねぎ,薬味,野菜 -🥜️ なっつ,ぴーなっつ,やさい,らっかせい,落花生,野菜 -🫘️ あずき,きんときまめ,びーんず,まめ,れっどきどにー,小豆,豆,金時豆 -🌰️ くり,やさい,栗,野菜 -🫚️ しょうが,じんじゃー,すぱいす,やくみ,生姜,薬味 -🫛️ えだまめ,えんどうまめ,えんどう豆,ぐりーんぴーす,さや,まめ,やさい,枝豆,豆,野菜 -🍞️ しょくぱん,ぱん,べーかりー,食ぱん -🥐️ くろわっさん,ぱん,ふらんす,べーかりー -🥖️ ばげっと,ぱん,ふらんすぱん,べーかりー -🫓️ あれぱ,なん,ぱん,ぴたぱん,ふらっとぶれっど,らばし -🥨️ ねじり,ぱん,ぷれっつぇる -🥯️ くりーむちーず,ぱんや,ぱん屋,べーかりー,べーぐる -🥞️ ぱんけーき,ほっとけーき -🧇️ ふんわり,やきがし,わっふる,焼き菓子 -🧀️ ちーず -🍖️ にく,ほねつきにく,ももにく,もも肉,肉,骨付き肉 -🍗️ ちきん,とりももにく,にく,にわとりももにく,ほねつきにく,ももにく,もも肉,肉,骨付き肉,鶏もも肉 -🥩️ すてーき,すてーきにく,すてーき肉,にく,びーふ,ぽーく,らむ,肉 -🥓️ にく,べーこん,肉 -🍔️ はんばーがー,ばーがー -🍟️ ふらいどぽてと,ふれんちふらい,ぽてと,ぽてとふらい -🍕️ ちーず,ぴざ,ぴっつぁ -🌭️ そーせーじ,ふらんくふると,ほっとどっぐ -🥪️ さんどいっち,ぱん -🌮️ たこす,めきしかん -🌯️ そふとたこす,ぶりとー,めきしかん -🫔️ たまる,たまれす,ちまき,めきしかん -🥙️ けばぶ,けばぶさんど,らっぷさんど -🧆️ ころっけ,にくだんご,ひよこまめ,ふぁらふぇる,肉団子 -🥚️ たまご,卵 -🍳️ たまご,ふらいぱん,めだまやき,りょうり,卵,料理,目玉焼き -🥘️ しーふーど,ぱえりあ -🍲️ しちゅー,なべ,なべりょうり,にこみ,にもの,煮物,煮込み,鍋 -🫕️ すいす,ちょこ,ちーず,とかす,なべ,ふぉんでゅ,溶かす,鍋 -🥣️ おかゆ,しりある,ちょうしょく,ぼうるとすぷーん,朝食 -🥗️ ぐりーん,ぐりーんさらだ,さらだ -🍿️ おかし,お菓子,ぽっぷこーん -🧈️ にゅうせいひん,ばたー,乳製品 -🧂️ しお,ちょうみりょう,ふりかけようき,やくみ,塩,振りかけ容器,薬味,調味料 -🥫️ かん,かんづめ,ひじょうしょく,缶,缶詰,非常食 -🍱️ えきべん,べんとう,まくのうち,幕の内,弁当,駅弁 -🍘️ おかし,おせんべい,お菓子,せんべい -🍙️ おにぎり,おむすび,こめ,米 -🍚️ こめ,ごはん,ちゃわん,らいす,米 -🍛️ かれー,かれーらいす,らいす -🍜️ あつあつ,どんぶり,らーめん,熱々 -🍝️ すぱげってぃ,すぱげってぃー,ぱすた -🍠️ いも,さつまいも,やきいも,焼き芋,芋 -🍢️ おでん -🍣️ おすし,お寿司,すし -🍤️ えび,えびふらい,てんぷら,ふらい,天ぷら -🍥️ うず,うずまき,なると,ねりもの,渦巻き,練り物 -🥮️ あき,おいわい,お祝い,げっぺい,ちゅうかかし,ちゅうしゅうせつ,ちゅうしゅうぶし,中秋節,中華菓子,月餅,秋 -🍡️ おだんご,お団子,だんご,わがし,和菓子 -🥟️ ぎょうざ,てんしん,にくまん,点心,肉まん -🥠️ おみくじ,ふぉーちゅんくっきー -🥡️ ちゅうか,ていくあうとべんとう,ていくあうと弁当,べんとう,もちかえり,中華,弁当,持ち帰り -🦀️ かに,せいざ,どうぶつ,動物,星座 -🦞️ ざりがに,しーふーど,はさみ,びすく,ろぶすたー -🦐️ えび,しゅりんぷ,しーふーど,どうぶつ,動物 -🦑️ いか,しーふーど,どうぶつ,動物 -🦪️ おいすたー,かい,かき,ぎょかい,しーふーど,なまがき,牡蠣,生がき,貝,魚介 -🍦️ あいす,おかし,すいーつ,そふと,そふとくりーむ,でざーと -🍧️ あいす,おかし,かきごおり,かき氷,こおり,でざーと,氷 -🍨️ あいす,あいすくりーむ,おかし,すいーつ,でざーと -🍩️ おかし,お菓子,すいーつ,でざーと,どーなつ -🍪️ おかし,お菓子,くっきー,すいーつ,でざーと -🎂️ おたんじょうび,けーき,たんじょうび,ばーすでー,ばーすでーけーき,誕生日 -🍰️ おかし,お菓子,けーき,しょーとけーき,すいーつ,でざーと -🧁️ おかし,お菓子,かっぷけーき,けーき,すいーつ,べーかりー -🥧️ おかし,お菓子,たると,ぱい -🍫️ おかし,お菓子,すいーつ,ちょこ,ちょこれーと,でざーと -🍬️ あめ,おかし,お菓子,きゃんでぃ,きゃんでぃー -🍭️ あめ,おかし,お菓子,きゃんでぃ,きゃんでぃー,ぺろぺろきゃんでぃ,ぼうつききゃんでぃ,棒付ききゃんでぃ -🍮️ おかし,お菓子,すいーつ,でざーと,ぷりん -🍯️ あまい,はちみつ,はにー,はにーぽっと,みつびん,甘い -🍼️ あかちゃん,ほにゅうびん,ほにゅう瓶,みるく,赤ちゃん -🥛️ ぎゅうにゅう,ぎゅうにゅういりのこっぷ,こっぷ,みるく,牛乳,牛乳入りのこっぷ -☕️ あたたかいのみもの,かっぷ,きっさてん,こうちゃ,こーひー,のみもの,ほっとどりんく -🫖️ おちゃ,お茶,きゅうす,ちゃき,てぃーぽっと,のみもの,急須,茶器,飲み物 -🍵️ おちゃ,お茶,のみもの,ゆのみ,りょくちゃ,湯飲み,緑茶,飲み物 -🍶️ お酒,さけ,とっくり,にほんしゅ,徳利,日本酒,酒 -🍾️ あわ,しゃんぱん,しゃんぺん,すぱーくりんぐわいん,すぷまんて,ぼとる,泡 -🍷️ ぐらす,ばー,わいん,わいんぐらす -🍸️ かくてる,かくてるぐらす,ぐらす,ばー -🍹️ かくてる,とろぴかる,とろぴかるどりんく,ばー -🍺️ いざかや,じょっき,ばー,びーる,びーるじょっき,居酒屋 -🍻️ えんかい,かんぱい,じょっき,びーる,びーるでかんぱい,びーるで乾杯,乾杯,宴会 -🥂️ かんぱい,ぐらすでかんぱい,ぐらすで乾杯,しゃんぱん,しゃんぺん,すぱーくりんぐわいん,すぷまんて,乾杯 -🥃️ うぃすきー,ういすきー,ぐらす,たんぶらー,たんぶらーぐらす -🫗️ えきたい,がらす,こっぷ,こっぷからそそぐ,こっぷから注ぐ,こぼす,そそぐ,のみもの,液体,飲み物 -🥤️ こっぷ,じゅーす,すとろーかっぷ -🧋️ おちゃ,お茶,たぴおか,たぴおかどりんく,どりんく,ばぶるてぃー,みるくてぃー -🧃️ かみぱっくいんりょう,じゅーす,どりんく,のみもの,紙ぱっく飲料,飲み物 -🧉️ おちゃ,お茶,どりんく,のみもの,まてちゃ,まて茶,飲み物 -🧊️ かくごおり,こおり,つめたい,冷たい,氷,角氷 -🥢️ おはし,はし -🍽️️ おさら,さら,ないふ,ないふとふぉーくとさら,ふぉーく -🍴️ かとらりー,ないふ,ないふとふぉーく,ないふ・ふぉーく,ふぉーく,れすとらん -🥄️ かとらりー,しょっき,すぷーん,食器 -🔪️ ないふ,ほうちょう,りょうり,包丁,料理 -🫙️ あき,あきびん,からのびん,ちょうみりょう,びん,ほぞん,ようき,保存,容器,瓶,空,調味料 -🏺️ かめ,せいざ,つぼ,みずがめ,壺,星座,水瓶 -🌍️ あふりか,ちきゅう,よーろっぱ -🌎️ あめりか,あめりかたいりく,ちきゅう -🌏️ あじあ,おーすとらりあ,ちきゅう,地球 -🌐️ しごせん,しごせんのあるちきゅう,ちきゅう,地球,子午線,子午線のある地球 -🗺️️ せかい,せかいちず,ちず -🗾️ ちず,にっぽん,にっぽんちず,にほん,にほんちず,地図,日本,日本地図 -🧭️ おりえんてーりんぐ,こうかい,こうくう,こんぱす,じしゃく,磁石,航海,航空 -🏔️️ かんせつ,やま,ゆき,ゆきやま -⛰️️ さんがく,やま -🌋️ かざん,ふんか,やま,噴火,山,火山 -🗻️ ふじさん,やま,富士山,山 -🏕️️ きゃんぷ,てんと,やま -🏖️️ すなはま,ぱらそる,びーち,びーちぱらそる -🏜️️ さばく,さぼてん,さぼてんのあるさばく -🏝️️ しま,むじんとう,やし,やしのきのあるしま -🏞️️ こうえん,こくりつこうえん,しぜん -🏟️️ きょうぎじょう,すたじあむ,やきゅうじょう -🏛️️ しせき,れきし,れきしてきけんぞうぶつ,れきしてきなたてもの -🏗️️ くれーん,けんせつ,けんせつちゅう,こうじ -🧱️ かべ,しっくい,ねんど,もるたる,れんが,壁,粘土 -🪨️ おもたい,かたい,がんせき,きょがん,せきざい,岩石,巨岩,石材,硬い,重たい -🪵️ ざいもく,じゅもく,まるた,もくざい,ろぐ,丸太,木材,材木,樹木 -🛖️ こや,ばんがろー,ゆると,わらぶきこや,わらぶき小屋,小屋 -🏘️️ いえ,じゅうたくがい,ふくすうのいえ,まち -🏚️️ あきや,いえ,たてもの,はいおく -🏠️ いえ,かおく,たてもの,まいほーむ,家 -🏡️ いえ,うち,たてもの,にわ,にわつきのいえ,ほーむ,まいほーむ,家,庭,庭付きの家,建物 -🏢️ おふぃすびる,たてもの,びる,建物 -🏣️ たてもの,ゆうびん,ゆうびんきょく,建物,郵便,郵便局 -🏤️ せいようのゆうびんきょく,たてもの,ゆうびん,建物,西洋の郵便局,郵便 -🏥️ いしゃ,くすり,たてもの,びょういん,医者,建物,病院,薬 -🏦️ ぎんこう,たてもの,建物,銀行 -🏨️ たてもの,ほてる,建物 -🏩️ たてもの,ほてる,らぶほ,らぶほてる,建物 -🏪️ こんびに,こんびにえんすすとあ,たてもの,建物 -🏫️ がっこう,たてもの,学校,建物 -🏬️ たてもの,でぱーと,ひゃっかてん,建物,百貨店 -🏭️ こうじょう,こうば,たてもの,工場 -🏯️ おしろ,しろ,たてもの,にっぽん,にほん,城,建物,日本 -🏰️ おしろ,きゃっする,しろ,せいようのしろ,たてもの,城,建物,西洋の城 -💒️ きょうかい,けっこん,けっこんしき,しきじょう,たてもの,建物,式場,教会,結婚,結婚式 -🗼️ たわー,とうきょう,とうきょうたわー,東京,東京たわー -🗽️ あめりか,じゆうのめがみ,ちょうぞう,にゅーよーく,めがみ,彫像,自由の女神 -⛪️ きょうかい,きりすときょう,しゅうきょう,たてもの,ちゃぺる -🕌️ いすらむきょう,いすらむ教,しゅうきょう,たてもの,もすく,宗教,建物 -🛕️ しゅうきょう,たてもの,てら,ひんずーきょう,ひんずー教,ひんどぅーきょうのじいん,ひんどぅー教の寺院,宗教,寺,建物 -🕍️ しなごーぐ,しゅうきょう,たてもの,ゆだやきょう,ゆだや教,宗教,建物 -⛩️️ しゅうきょう,しんとう,じんじゃ,たてもの,とりい -🕋️ いすらむきょう,いすらむ教,かーば,しゅうきょう,せいち,たてもの,めっか,宗教,建物,聖地 -⛲️ こうえん,ふんすい -⛺️ きゃんぷ,てんと -🌁️ きり,きりのとかい,とかい,都会,霧,霧の都会 -🌃️ ながれぼし,ほし,やけい,よる,よるのとかい,夜,夜の都会,夜景,星 -🏙️️ こうそうびる,とかい,びるぐん -🌄️ あさ,あさひ,ごらいこう,ご来光,たいよう,ひので,やまからひので,太陽,山から日の出,日の出,朝,朝日 -🌅️ あさ,あさひ,たいよう,ひので,太陽,日の出,朝,朝日 -🌆️ とかい,ゆうがた,ゆうぐれ,ゆうぐれのとかい,ゆうひ,よる,夕方,夕日,夕暮れ,夕暮れの都会,都会 -🌇️ たいよう,ゆうがた,ゆうぐれ,ゆうひ,夕方,夕日,夕暮れ,太陽 -🌉️ はし,やけい,よる,よるのはし,夜,夜の橋,夜景,橋 -♨️️ いいきぶん,おんせん,おんせんまーく -🎠️ めりーごーらんど,ゆうえんち,遊園地 -🛝️ こうえん,すべりだい,すべり台,ゆうぐ,公園,遊具 -🎡️ かんらんしゃ,ゆうえんち,観覧車,遊園地 -🎢️ こーすたー,じぇっとこーすたー,ゆうえんち,遊園地 -💈️ さんぱつ,とこや,ばーばー,びよういん,びようしつ,へあさろん,りはつてん,床屋,理髪店,美容室,美容院 -🎪️ いべんと,さーかす,さーかすてんと,てんと -🚂️ sl,えすえる,じょうききかんしゃ,のりもの,れっしゃ,乗り物,列車,蒸気機関車 -🚃️ でんしゃ,のりもの,れっしゃ,乗り物,列車,電車 -🚄️ しんかんせん,でんしゃ,のりもの,乗り物,新幹線,電車 -🚅️ 0けい,0系,0系新幹線,しんかんせん,ぜろけいしんかんせん,でんしゃ,のぞみ,のりもの,まるいしんかんせん,丸い新幹線,乗り物,新幹線,電車 -🚆️ でんしゃ,でんしゃしょうめん,のりもの,れっしゃ,乗り物,列車,電車,電車正面 -🚇️ ちかてつ,でんしゃ,のりもの,めとろ,地下鉄 -🚈️ でんしゃ,のりもの,らいとれーる,乗り物,電車 -🚉️ えき,でんしゃ,のりもの,ふみきり,れっしゃ,乗り物,列車,踏み切り,電車,駅 -🚊️ でんしゃ,のりもの,ろめんでんしゃ,ろめんでんしゃしょうめん,乗り物,路面電車,路面電車正面,電車 -🚝️ でんしゃ,のりもの,ものれーる,乗り物,電車 -🚞️ でんしゃ,とざんてつどう,とざんでんしゃ,のりもの,乗り物,登山鉄道,登山電車,電車 -🚋️ でんしゃ,のりもの,ろめんでんしゃ,乗り物,路面電車,電車 -🚌️ のりもの,ばす,乗り物 -🚍️ のりもの,ばす,ばすしょうめん -🚎️ とろりーばす,のりもの,ばす,乗り物 -🚐️ のりもの,ばす,まいくろばす,乗り物 -🚑️ きゅうきゅうしゃ,のりもの,救急車 -🚒️ しょうぼうしゃ,のりもの,乗り物,消防車 -🚓️ けいさつ,のりもの,ぱとかー,乗り物,警察 -🚔️ けいさつ,のりもの,ぱとかー,ぱとかーしょうめん -🚕️ たくしー,のりもの,乗り物 -🚖️ たくしー,たくしーしょうめん,たくしー正面,のりもの,乗り物 -🚗️ くるま,じどうしゃ,のりもの,乗り物,自動車,車 -🚘️ くるま,じどうしゃ,じどうしゃしょうめん,のりもの -🚙️ rv,rv車,suv,suvくるま,suv車,あーるぶいしゃ,あーるぶい車,えすゆーぶいしゃ,くるま,じどうしゃ,のりもの,乗り物,自動車,車 -🛻️ くるま,けいとらっく,とらっく,のりもの,はいたつ,ぴっくあっぷとらっく,乗り物,車,軽とらっく,配達 -🚚️ くるま,とらっく,のりもの,はいたつ,乗り物,車,配達 -🚛️ くるま,とらっく,とれーらー,のりもの,乗り物,車 -🚜️ くるま,とらくたー,のりもの,乗り物,車 -🏎️️ f1,えふわん,くるま,すぽーつ,のりもの,もーたーすぽーつ,れーしんぐかー -🏍️️ おーとばい,おーとれーす,すぽーつ,のりもの,ばいく,もーたーすぽーつ -🛵️ げんつき,すくーたー,原付 -🦽️ あくせしびりてぃ,いす,くるまいす,しゅどうしきくるまいす,手動式車椅子,椅子,車椅子 -🦼️ あくせしびりてぃ,いす,くるまいす,でんどうくるまいす,椅子,車椅子,電動車椅子 -🛺️ おーとりくしゃー,さんりんたくしー,たくしー,とぅくとぅく,りくしゃー,三輪たくしー -🚲️ じてんしゃ,のりもの,自転車 -🛴️ きっくすくーたー,きっくすけーたー,きっくぼーど -🛹️ すけぼー,すけーとぼーど,ぼーど -🛼️ すけーと,すぽーつ,ろーらーすけーと -🚏️ のりもの,ばすてい,ばすのりば,ばす乗り場,ばす停,乗り物 -🛣️️ こうそく,こうそくどうろ,どうろ -🛤️️ せんろ,てつどう -🛢️️ せきゆ,どらむかん -⛽️ がすすたんど,がそりん,がそりんすたんど,がそりんのずる -🛞️ しゃりん,すぽーく,たいや,ほいーる,車輪 -🚨️ ぱとかー,ぱとらんぷ -🚥️ しんごう,しんごうき,しんごうよこ,信号,信号横,信号機 -🚦️ しんごう,しんごうき,しんごうたて,信号,信号機,信号縦 -🛑️ すとっぷ,とまれ,とまれのひょうしき,ひょうしき,標識,止まれ,止まれの標識 -🚧️ こうじちゅう,さいん,つうこうどめ,工事中,通行止め -⚓️ いかり,ふね,みなと -🛟️ あんぜん,うきわ,きゅうめいぐ,きゅうめいふかん,らいふせーばー,れすきゅー,安全,救命具,救命浮環,浮き輪 -⛵️ のりもの,はんせん,ふね,ぼーと,よっと,りぞーと -🛶️ かぬー,かやっく,のりもの,ふね,ぼーと,乗り物,船 -🚤️ すぴーどぼーと,のりもの,ふね,ぼーと,乗り物,船 -🛳️️ きゃくせん,のりもの,ふね,りょかくせん -⛴️️ のりもの,ふぇりー,ふね -🛥️️ のりもの,ふね,ぼーと,もーたーぼーと -🚢️ のりもの,ふね,乗り物,船 -✈️️ のりもの,ひこうき -🛩️️ こがたき,こがたひこうき,のりもの,ひこうき -🛫️ のりもの,ひこうき,ひこうきりりく,りりく,乗り物,離陸,飛行機,飛行機離陸 -🛬️ ちゃくりく,のりもの,ひこうき,ひこうきちゃくりく,乗り物,着陸,飛行機,飛行機着陸 -🪂️ すかいだいびんぐ,ぱらぐらいだー,ぱらしゅーと -💺️ いす,ざせき,せき,席,座席,椅子 -🚁️ のりもの,へり,へりこぷたー,乗り物 -🚟️ けんすいしきものれーる,でんしゃ,のりもの,ものれーる,乗り物,懸垂式ものれーる,電車 -🚠️ けーぶるかー,ごんどら,のりもの,乗り物 -🚡️ ごんどら,のりもの,ろーぷうぇい,乗り物 -🛰️️ うちゅう,じんこうえいせい -🚀️ うちゅう,のりもの,ろけっと,乗り物,宇宙 -🛸️ ufo,うちゅう,そらとぶえんばん,のりもの,ゆーふぉー,乗り物,宇宙,空飛ぶ円盤 -🛎️️ べる,べるぼーいべる,ほてる -🧳️ すーつけーす,ぱっきんぐ,りょこう,りょこうかばん,旅行,旅行かばん -⌛️ すな,すなどけい,とけい -⏳️ すな,すながおちているすなどけい,すなどけい,とけい,砂時計 -⌚️ うでどけい,とけい -⏰️ あらーむ,とけい,めざまし,めざましどけい,時計 -⏱️️ すとっぷうぉっち,とけい -⏲️️ たいまー,とけい -🕰️️ おきどけい,とけい,まんてるくろっく -🕛️ 12:00,12じ,しょうご,じゅうにじ,とけい,時計,12じ -🕧️ 12:30,12じはん,とけい -🕐️ 1:00,1じ,いちじ,とけい,時計,1じ -🕜️ 1:30,1じはん,とけい -🕑️ 2:00,2じ,とけい,にじ,時計,2じ -🕝️ 2:30,2じはん,とけい -🕒️ 3:00,3じ,さんじ,とけい,時計,3じ -🕞️ 3:30,3じはん,とけい -🕓️ 4:00,4じ,とけい,よじ,時計,4じ -🕟️ 4:30,4じはん,とけい -🕔️ 5:00,5じ,ごじ,とけい,時計,5じ -🕠️ 5:30,5じはん,とけい -🕕️ 6:00,6じ,とけい,ろくじ,時計,6じ -🕡️ 6:30,6じはん,とけい -🕖️ 7:00,7じ,しちじ,とけい,ななじ,時計,7じ -🕢️ 7:30,7じはん,とけい -🕗️ 8:00,8じ,とけい,はちじ,時計,8じ -🕣️ 8:30,8じはん,とけい -🕘️ 9:00,9じ,くじ,とけい,時計,9じ -🕤️ 9:30,9じはん,とけい -🕙️ 10:00,10じ,じゅうじ,とけい,めざまし,時計,10じ -🕥️ 10:30,10じはん,とけい -🕚️ 11:00,11じ,じゅういちじ,とけい,時計,11じ -🕦️ 11:30,11じはん,とけい -🌑️ しんげつ,つき,新月,月 -🌒️ つき,はつかづき,はつづき,みかづき,三日月,初月,月 -🌓️ じょうげん,じょうげんのつき,つき,はんげつ,上弦,上弦の月,半月,月 -🌔️ かけづき,じゅうさんやつき,じゅうさんよつき,つき,とおかやのつき,とおかんやのつき,十三夜月,十日夜の月,月 -🌕️ つき,まんげつ,満月 -🌖️ いまちづき,つき,ねまちづき,ねまちのつき,寝待月,居待月,月 -🌗️ かげん,かげんのつき,つき,はんげつ,下弦,下弦の月,半月,月 -🌘️ ありあけづき,つき,みかづき,三日月,月,有明月 -🌙️ つき,みかづき,三日月,月 -🌚️ かお,かおのあるしんげつ,しんげつ,つき,新月,月,顔,顔のある新月 -🌛️ かお,かおのあるじょうげんのつき,じょうげんのつき,つき,みかづき,三日月,上弦の月,月,顔,顔のある上弦の月 -🌜️ かお,かおのあるかげんのつき,かげんのつき,つき -🌡️️ おんど,おんどけい,きおん,てんき -☀️️ たいよう,はれ -🌝️ かお,かおのあるまんげつ,つき,月,顔,顔のある満月 -🌞️ かお,かおのあるたいよう,たいよう,太陽,顔,顔のある太陽 -🪐️ てんたい,どせい,ほし,りんぐ,わくせい,わのあるわくせい,土星,天体,惑星,星,環のある惑星 -⭐️ すたー,ほし -🌟️ かがやき,きらきら,きらきらぼし,きらきら星,すたー,ほし,星,輝き -🌠️ すたー,ながれぼし,ほし,星,流れ星 -🌌️ あまのがわ,ぎんが,ほしぞら,みるきーうぇい,よぞら,夜空,天の川,星空,銀河 -☁️️ くも,くもり,てんき -⛅️ くも,くもり,くもりときどきはれ,たいよう,てんき,ときどきくもり -⛈️️ あめ,いなずま,いなづま,かみなり,くも,てんき,らいう -🌤️️ くも,たいよう,てんき,はれ,はれときどきくもり -🌥️️ くも,くもり,くもりいちじはれ,たいよう,てんき -🌦️️ あめときどきはれ,あめのちはれ,くも,くもり,たいよう,てんき,てんきあめ -🌧️️ あまぐも,あめ,くも,てんき -🌨️️ くも,てんき,ゆき,ゆきぐも -🌩️️ いなずま,いなづま,かみなり,くも,てんき,らいうん -🌪️️ たつまき,てんき,とっぷう -🌫️️ きり,てんき -🌬️️ かお,かおのあるかぜ,かぜ -🌀️ うず,うずまき,くるくる,ぐるぐる,さいくろん,たいふう,はりけーん,めまい,もやもや,台風,渦巻き -🌈️ にじ,れいんぼー,虹 -🌂️ あめ,かさ,てんき,とじたかさ,もちもの,傘,天気,持ち物,閉じた傘,雨 -☂️️ あめ,かさ,てんき,もちもの -☔️ あめ,かさ,かさとあめ,てんき,もちもの -⛱️️ かさ,すなはま,ぱらそる,びーち -⚡️ いなずま,いなづま,かみなり,きけん,こうでんあつ,でんき -❄️️ けっしょう,ゆき,ゆきのけっしょう -☃️️ ゆき,ゆきだるま,ゆきだるまとゆき -⛄️ ゆき,ゆきだるま -☄️️ うちゅう,すいせい -🔥️ ひ,ふぁいあー,ふぁいやー,ほのお,火,炎 -💧️ あせ,しずく,すいてき,たらーっ,なみだ,水滴,汗,涙 -🌊️ うみ,てんき,なみ,はろう,天気,波,波浪,海 -🎃️ かぼちゃ,はろうぃん,はろうぃんかぼちゃ,はろうぃーん -🎄️ くりすます,くりすますいぶ,くりすますつりー,つりー -🎆️ うちあげはなび,おまつり,お祭り,はなび,はなびたいかい,打ち上げ花火,花火,花火大会 -🎇️ おまつり,お祭り,せんこうはなび,はなび,線香花火,花火 -🧨️ かやく,だいなまいと,ばくちく,ばくはつ,ばくやく,火薬,爆発,爆竹,爆薬 -✨️ きらきら,すたー,ぴかぴか,ほし -🎈️ ばるーん,ふうせん,風船 -🎉️ おいわい,お祝い,くらっかー,ぱーてぃー,ぱーてぃーくらっかー -🎊️ おいわい,お祝い,くすだま,くす玉,ぱーてぃー -🎋️ たなばた,たんざく,にっぽん,にほん,わ,七夕,和,日本,短冊 -🎍️ おいわい,お祝い,かどまつ,しょうがつ,たけ,にっぽん,にほん,わ,和,日本,正月,竹,門松 -🎎️ おいわい,おだいりさま,おだいりよう,おだいり様,おひなさま,おひな様,お祝い,にっぽん,にほん,にんぎょう,ひなまつり,ひな祭り,わ,人形,和,日本 -🎏️ おいわい,お祝い,こいのぼり,こどものひ,子供の日 -🎐️ かぜ,すず,なつ,ふうりん,夏,鈴,風,風鈴 -🎑️ お月見,じゅうごや,じゅうごよ,すすき,つき,つきみ,十五夜,月,月見 -🧧️ あかいふうとう,おかね,おとしだま,お年玉,お金,こううん,ごしゅうぎ,ご祝儀,ほんぱお,ほんぼあ,幸運,紅包,赤い封筒 -🎀️ おいわい,お祝い,りぼん -🎁️ おいわい,お祝い,ぎふと,はこ,ぷれぜんと,箱 -🎗️️ おいわい,りぼん,りまいんだー,りまいんだーりぼん -🎟️️ ちけっと,にゅうじょうけん,にゅうじょうぱす,はんけん -🎫️ きっぷ,ちけっと,切符 -🎖️️ おいわい,くんしょう,ひょうしょう,めだる -🏆️ かっぷ,しょうはい,とろふぃー,ひょうしょう,ゆうしょうかっぷ -🏅️ すぽーつ,ひょうしょう,めだる,表彰 -🥇️ 1い,1位,きん,きんめだる,ごーるど,めだる,金,金めだる -🥈️ 2い,2位,ぎん,ぎんめだる,しるばー,めだる,銀,銀めだる -🥉️ 3い,3位,どう,どうめだる,ぶろんず,めだる,銅,銅めだる -⚽️ さっかー,さっかーぼーる,すぽーつ,ぼーる -⚾️ すぽーつ,ぼーる,やきゅう,やきゅうぼーる -🥎️ すぽーつ,そふとぼーる,へたなげ,ぼーる,下手投げ -🏀️ すぽーつ,ばすけ,ばすけっとぼーる,ぼーる -🏐️ すぽーつ,ばれー,ばれーぼーる,ぼーる -🏈️ あめふと,あめりかんふっとぼーる,すぽーつ,ぼーる,らぐびー,らぐびーぼーる -🏉️ すぽーつ,ぼーる,らぐびー,らぐびーぼーる -🎾️ すぽーつ,てにす,てにすぼーる,ぼーる,らけっと -🥏️ あるてぃめっと,ふらいんぐでぃすく,ふりすびー -🎳️ すぽーつ,たま,ぼうりんぐ,ぼーる,球 -🏏️ くりけっと,すぽーつ,ばっと,ぼーる -🏑️ すてぃっく,すぽーつ,ふぃーるどほっけー,ほっけー,ぼーる -🏒️ あいすほっけー,すてぃっく,すぽーつ,ぱっく,ほっけー -🥍️ ごーる,すてぃっく,すぽーつ,ぼーる,らくろす -🏓️ すぽーつ,たっきゅう,ぴんぽん,ぼーる,らけっと,卓球 -🏸️ しゃとる,すぽーつ,ばどみんとん,らけっと -🥊️ ぐろーぶ,すぽーつ,ぼくしんぐ,ぼくしんぐぐろーぶ -🥋️ からて,じゅうどう,すぽーつ,てこんどー,どうぎ,ぶどう,柔道,武道,空手,道着 -🥅️ ごーる,ごーるねっと,すぽーつ,ねっと -⛳️ ごるふ,すぽーつ,はた,ふらぐ,ふらっぐ,ほーる -⛸️️ あいすすけーと,すけーと,すぽーつ,ふぃぎゅあすけーと -🎣️ さかな,すぽーつ,つり,つりざお,釣り,釣り竿,魚 -🤿️ しゅのーけりんぐ,すきゅーば,すぽーつ,だいびんぐ ますく,だいびんぐますく,ますく -🎽️ えきでん,しゃつ,すぽーつ,たすき,ちょうきょりそう,まらそん,らんにんぐ,らんにんぐしゃつ,長距離走,駅伝 -🎿️ いた,すきー,すきーぶーつ,すとっく,すぽーつ,ゆき,板,雪 -🛷️ すけるとん,すぽーつ,そり,そりきょうぎ,そり競技,ぼぶすれー,りゅーじゅ -🥌️ かーりんぐ,すとーん,すぽーつ -🎯️ あたり,すぽーつ,だーつ,てき,ぶるずあい,まと,当たり,的 -🪀️ おもちゃ,かいてん,がんぐ,よーよー,回転,玩具 -🪁️ おもちゃ,かいと,がんぐ,たこ,たこあげ,凧揚げ,玩具 -🔫️ けんじゅう,じゅう,ぴすとる,ぶき,みずでっぽう,りぼるばー,拳銃,武器,水鉄砲,銃 -🎱️ えいとぼーる,すぽーつ,びりやーど,ぼーる -🔮️ うらない,うんめい,すいしょう,すいしょうだま,たま,占い,水晶,水晶玉,玉,運命 -🪄️ つえ,まじゅつ,まほうのつえ,杖,魔法の杖,魔術 -🎮️ げーむ,こんとろーら,こんとろーらー,てれびげーむ,びでおげーむ -🕹️️ げーむ,こんとろーら,じょいすてぃっく,すてぃっく,てれびげーむ -🎰️ すりーせぶん,すろっと,すろっとましん -🎲️ げーむ,さいころ,だいす -🧩️ かぎ,くみあわせ,じぐそーぱずる,ぱずる,ぴーす,組み合わせ,鍵 -🧸️ おもちゃ,がんぐ,くま,てでぃべあ,ぬいぐるみ,玩具 -🪅️ おいわい,お祝い,たんじょうび,にんぎょう,ぱーてぃー,ぴにゃーた,人形,誕生日 -🪩️ きらきら,だんす,でぃすこ,ぱーてぃー,みらーぼーる -🪆️ いれこ,にんぎょう,まとりょーしか,ろしあ,人形,入れ子 -♠️️ かーど,すぺーど,とらんぷ -♥️️ かーど,とらんぷ,はーと -♦️️ かーど,だいあ,だいや,とらんぷ -♣️️ かーど,くらぶ,くろーばー,とらんぷ -♟️️ こま,すてこま,すてごま,ちぇす,ちぇすのこま -🃏️ かーど,じじ,じょーかー,とらんぷ,ばば -🀄️ げーむ,じゃんぱい,ぱい,まーじゃん,まーじゃんぱい -🎴️ かーど,げーむ,はなふだ,花札 -🎭️ えんげい,えんげき,かめん,げいじゅつ,げきじょう,ぶたいげいじゅつ,演劇 -🖼️️ え,かいが,げいじゅつ,びじゅつかん -🎨️ あーと,え,えのぐぱれっと,ぱれっと,びじゅつかん,ふで,絵,絵の具ぱれっと,美術館 -🧵️ いと,いとまき,さいほう,ぬいばり,ひも,糸,糸巻き,縫い針,裁縫 -🪡️ さいほう,ししゅう,すてっち,ぬいばり,ぬう,はり,刺繍,縫い針,縫う,裁縫,針 -🧶️ あみもの,かぎばり,かぎ針,けいと,けいとだま,にっと,毛糸,毛糸玉,編み物 -🪢️ つな,ねじれ,のっと,ひも,むすびめ,ろーぷ,結び目,綱 -👓️ めがね -🕶️️ さんぐらす,めがね -🥽️ ごーぐる,すいえい,ほごめがね,ようせつ,保護めがね,水泳,溶接 -🥼️ いしゃ,かがくしゃ,じっけん,はくい,医者,実験,白衣,科学者 -🦺️ あんぜんべすと,きんきゅう,こうじ,ちょっき,はんしゃ,べすと,反射,安全べすと,工事,緊急 -👔️ しゃつ,たい,ねくたい,ふく,わいしゃつ,服 -👕️ tしゃつ,しゃつ,てぃーしゃつ,ふく,服,tしゃつ -👖️ じーぱん,じーんず,ずぼん,でにむ,ぱんつ,ふく,服 -🧣️ えりまき,くびまき,すかーふ,まふらー,襟巻き,首巻き -🧤️ てぶくろ,手袋 -🧥️ あうたー,おーばー,こーと,じゃけっと,ふく,服 -🧦️ くつした,そっくす,靴下 -👗️ どれす,ふく,わんぴーす,服 -👘️ きもの,ふく,服,着物 -🥻️ さりー,ふく,みんぞくいしょう,服,民族衣装 -🩱️ すいむうぇあ,みずぎ,わんぴーすのみずぎ,わんぴーすの水着,水着 -🩲️ したぎ,すいむうぇあ,ぱんつ,ぶりーふ,みずぎ,下着,水着 -🩳️ したぎ,しょーつ,すいむうぇあ,ぱんつ,みずぎ,下着,水着 -👙️ びきに,ふく,みずぎ,水着 -👚️ しゃつ,ふく,ふじんふく,ぶらうす,婦人服,服 -🪭️ あおぐ,うちわ,おうぎ,かぜ,せんす,なつ,団扇,夏,扇,扇子,風 -👛️ がまぐち,がまぐちざいふ,がま口,こぜにいれ,さいふ,小銭入れ,財布 -👜️ かばん,はんどばっぐ,ばっぐ -👝️ ばっぐ,ぽーち -🛍️️ かみてさげ,かみぶくろ,しょっぴんぐばっぐ,ばっぐ -🎒️ かばん,がっこう,しょうがくせい,しょうがっこう,ばっくぱっく,らんどせる,りゅっくさっく,学校,小学校,小学生 -🩴️ くつ,ごむぞうり,さんだる,とんぐさんだる,びーさん,びーちさんだる,靴 -👞️ かわぐつ,くつ,しんしぐつ,ろーふぁー,紳士靴,革靴,靴 -👟️ あすれちっくしゅーず,くつ,しゅーず,すにーかー,靴 -🥾️ きゃんぷ,とざんくつ,とざんぐつ,はいきんぐ,はいきんぐしゅーず,ばっくぱっく,ぶーつ,登山靴 -🥿️ すりっぽん,ばれえしゅーず,ふらっとしゅーず,ぺたんこくつ,ぺたんこ靴 -👠️ くつ,はいひーる,ひーる,ぴんひーる,ふく,靴 -👡️ くつ,さんだる,ふく,靴 -🩰️ くつ,しゅーず,だんす,とうしゅーず,ばれえ,靴 -👢️ くつ,ふく,ぶーつ,ろんぐぶーつ,靴 -🪮️ あふろ,あふろこーむ,かみ,くし,こーむ,ぶらし,へあぴっく,髪 -👑️ おうかん,かんむり,くらうん,冠,王冠 -👒️ おんなのぼうし,ふじんぼうし,ぼうし,むぎわら,むぎわらぼうし,婦人帽子,帽子,麦わら,麦わら帽子 -🎩️ しるくはっと,ぼうし,帽子 -🎓️ かくぼう,そつぎょう,そつぎょうしき,ぼうし,卒業式 -🧢️ きゃっぷ,ぼうし,やきゅうぼう,帽子,野球帽 -🪖️ ぐんたい,ぐんようへるめっと,せんとう,へいし,へるめっと,みりたりー,兵士,戦闘,軍用へるめっと,軍隊 -⛑️️ きゅうきゅう,しろじゅうじ,しろじゅうじへるめっと,はくじゅうじ,はくじゅうじへるめっと,へるめっと -📿️ いのる,じゅず,ねっくれす,ねんじゅ,ねんず,ろざりお,念珠,数珠,祈る -💄️ くちべに,けしょう,りっぷ,りっぷすてぃっく,化粧,口紅 -💍️ じゅえりー,だいあ,だいや,ゆびわ,りんぐ,指輪 -💎️ じゅえりー,だいあ,だいや,ほうせき,宝石 -🔇️ おとなし,しょうおん,すぴーかー,すぴーかーしょうおん,すぴーかー消音,みゅーと,消音,音無し -🔈️ おんりょう,すぴーかー,ぼりゅーむ -🔉️ おんりょう,おんりょうしょう,すぴーかー,すぴーかーおんりょうしょう,すぴーかー音量小,ぼりゅーむ,音量,音量小 -🔊️ おんりょう,おんりょうだい,すぴーかー,すぴーかーおんりょうだい,すぴーかー音量大,だいおんりょう,ぼりゅーむ,大音量,音量,音量大 -📢️ かくせいき,すぴーかー,めがほん,拡声器 -📣️ かくせいき,すぴーかー,めがほん,拡声器 -📯️ ゆうびん,ゆうびんらっぱ,らっぱ,郵便,郵便らっぱ -🔔️ かね,すず,ちゃぺる,べる,鈴,鐘 -🔕️ おとなし,かね,しょうおん,すず,べるしょうおん,べる消音,みゅーと,消音,鈴,鐘,音無し -🎼️ おんがく,がくふ,ごせん,ごせんふ,すこあ,とおんきごう,と音記号,五線譜,楽譜,音楽 -🎵️ 8分音符,おんがく,おんぷ,はちぶおんぷ,れんぷ,連符,音楽,音符 -🎶️ 8分音符,おんがく,おんぷ,はちぶおんぷ,ふくすうのおんぷ,複数の音符,音楽,音符 -🎙️️ おんがく,すたじおまいく,まいく -🎚️️ おんがく,すらいだー,れべる,れべるすらいだー -🎛️️ おんがく,こんとろーる,こんとろーるつまみ,つまみ,のぶ -🎤️ うた,おんがく,からおけ,まいく,歌,音楽 -🎧️ いやふぉん,いやほん,おんがく,へっどふぉん,へっどほん -📻️ おんがく,じゅしんき,ほうそう,らじお -🎷️ おんがく,がっき,さきそふぉん,さくそふぉん,さっくす,楽器,音楽 -🪗️ あこーでぃおん,おんがく,がっき,じゃばら,楽器,音楽 -🎸️ おんがく,がっき,ぎたー,楽器,音楽 -🎹️ おんがく,がっき,きーぼーど,けんばん,ぴあの,楽器,鍵盤,音楽 -🎺️ おんがく,がっき,とらんぺっと,らっぱ,楽器,音楽 -🎻️ おんがく,がっき,ばいおりん,ゔぃおら,楽器,音楽 -🪕️ おんがく,がっき,ばんじょー,楽器,音楽 -🥁️ おんがく,がっき,たいこ,どらむ,太鼓,楽器,音楽 -🪘️ おんがく,がっき,こんが,たいこ,びーと,りずむ,太鼓,楽器,音楽 -🪇️ おんがく,がっき,しぇいかー,まらかす,りずむ,楽器,音楽 -🪈️ おんがく,がっき,すいそうがく,ふえ,ふるーと,りこーだー,吹奏楽,楽器,笛,音楽 -📱️ けいたい,けいたいでんわ,すまほ,すまーとふぉん,携帯,携帯電話 -📲️ けいたい,けいたいじゅしん,けいたいでんわ,じゅしん,すまほ,すまーとふぉん,ちゃくしんちゅう,でんわはっしん,受信,携帯受信,携帯電話,着信中 -☎️️ おやき,くろでんわ,こていでんわ,でんわ,ぷっしゅほん,ぼたんしきでんわ -📞️ こき,じゅわき,でんわ,受話器,子機,電話 -📟️ ぺーじゃー,ぽけっとべる,ぽけべる -📠️ fax,でんわ,ふぁっくす,ふくごうき,複合機,電話,fax -🔋️ かんでんち,でんち,ばってりー,乾電池,電池 -🪫️ じゅうでんぶそく,じゅうでんやばい,でんちざんりょうていか,ばってりー,ばってりーざんりょうていか,ばってりーぶそく,ばってりー残量低下,充電不足,電池残量低下 -🔌️ こんせんと,でんげん,ぷらぐ,電源 -💻️ pc,こんぴゅーた,こんぴゅーたー,のーとぱそこん,ぱそこん,らっぷとっぷ -🖥️️ pc,こんぴゅーたー,ですくとっぷ,ですくとっぷぱそこん,ぱそこん,ぴーしー -🖨️️ いんさつき,こぴーき,ふくごうき,ぷりんた,ぷりんたー -⌨️️ pc,きーぼーど,こんぴゅーたー,ぱそこん,ぴーしー -🖱️️ pc,こんぴゅーたー,ぱそこん,ぴーしー,まうす -🖲️️ pc,こんぴゅーたー,とらっくぼーる,ぱそこん,ぴーしー -💽️ md,mo,えむおー,えむでぃー,こんぴゅーたー,みにでぃすく,md -💾️ fd,えふでぃー,こんぴゅーたー,でぃすく,ふろっぴー,ふろっぴーでぃすく,fd -💿️ cd,dvd,しーでぃー,でぃすく,ぶるれい,ぶるーれい,cd -📀️ blu-ray,cd,dvd,しーでぃー,でぃすく,でぃーぶいでぃ─,ぶるれい,ぶるーれい,dvd -🧮️ あばかす,そろばん,算盤 -🎥️ えいが,えいがかめら,かめら,むーびー,映画,映画かめら -🎞️️ えいが,えいがふぃるむ,ふぃるむ,ふれーむ,むーびー -📽️️ えいが,えいしゃき,ぷろじぇくたー,むーびー -🎬️ えいが,かちんこ -📺️ てれび,びでお -📷️ かめら,しゃしん -📸️ かめら,かめらふらっしゅ,しゃしん,ふらっしゅ,ふらっしゅをたいているかめら,ふらっしゅを焚いているかめら,写真 -📹️ かめら,どうが,びでお,びでおかめら,むーびー -📼️ vhs,どうが,びでお,びでおかせっと,びでおてーぷ,ぶいえっちえす,動画 -🔍️ けんさく,むしめがね,むしめがねひだり,るーぺ,虫眼鏡 -🔎️ けんさく,しょうさい,むしめがね,むしめがねみぎ,るーぺ,検索,虫めがね,虫眼鏡,虫眼鏡右 -🕯️️ あかり,きゃんどる,ろうそく -💡️ あかり,でんきゅう,ひらめき,ぴこーん,明かり,電球 -🔦️ あかり,かいちゅうでんとう,でんとう,らいと,懐中電灯,明かり -🏮️ あかちょうちん,いざかや,ちょうちん,のみや,居酒屋,赤ちょうちん,飲み屋 -🪔️ あかり,おいる,でぃやらんぷ,らんぷ,明かり -📔️ のーと,ひょうしつきのーと,ぶんぐ,ぶんぼうぐ,文具,文房具,表紙付きのーと -📕️ しょせき,とじたほん,ぶんぼうぐ,ほん,書籍,本,閉じた本 -📖️ しょせき,ひらいたほん,ぶんぼうぐ,ほん,書籍,本,開いた本 -📗️ しょせき,ぶんぼうぐ,ほん,みどりのほん,書籍,本,緑の本 -📘️ あおいほん,あおのほん,しょせき,ぶんぼうぐ,ほん,書籍,本,青の本 -📙️ おれんじのほん,おれんじの本,しょせき,ぶんぼうぐ,ほん,書籍,本 -📚️ しょせき,ぶんぼうぐ,ほん,ほんのやま,本 -📓️ のーと,ぶんぐ,ぶんぼうぐ,文具,文房具 -📒️ だいちょう,のーと,ぶんぐ,ぶんぼうぐ,りんぐのーと,台帳,文具,文房具 -📃️ かーる,しょるい,ぶんしょ,まきぺーじ,巻きぺーじ,文書,書類 -📜️ しょるい,すくろーる,ぶんしょ,ぶんぼうぐ,まきもの,巻き物,文書,書類 -📄️ しょるい,ぶんしょ,ぺーじ,文書,書類 -📰️ しんぶん,しんぶんし,にゅーす,新聞,新聞紙 -🗞️️ しんぶん,しんぶんし,にゅーす,まるめたしんぶん -📑️ ふせん,ぶんぐ,ぶんぼうぐ,ぺーじにふせん,ぺーじに付箋,ぺーじまーく,まーく,付箋,文具,文房具 -🔖️ しおり,たぐ,ふせん,ぶっくまーく,付箋,栞 -🏷️️ たぐ,にふだ,らべる -💰️ おかね,かねぶくろ,きんぶくろ,しょうきん,どる,どるぶくろ,どる袋 -🪙️ おかね,お金,きんか,ぎんか,こいん,こうか,こぜに,小銭,硬貨,金貨,銀貨 -💴️ えん,えんさつ,おかね,おさつ,お札,お金,こぎって,さつたば,つうか,ゆうりょう,円,円札,札束,通貨 -💵️ おかね,おさつ,お札,お金,さつたば,つうか,どる,どるさつ,どる札,札束,通貨 -💶️ おかね,おさつ,お札,お金,さつたば,つうか,ゆーろ,ゆーろさつ,ゆーろ札,札束,通貨 -💷️ おかね,おさつ,お札,お金,さつたば,つうか,ぽんど,ぽんどさつ,ぽんど札,札束,通貨 -💸️ おかね,おさつ,お札,お金,さつたば,どる,はねがはえたおかね,札束,羽が生えたお金 -💳️ おかね,かーど,きゃっしゅかーど,ぎんこう,くれじっとかーど -🧾️ かいけい,ぼき,りょうしゅうしょ,れしーと,会計,簿記,領収書 -💹️ いちば,かぶ,かぶか,かわせ,ぐらふ,しじょう,ちゃーと,市場,株,株価,為替 -✉️️ いーめーる,てがみ,でんしめーる,ふうとう,めーる,ゆうびん -📧️ eめーる,いーめーる,てがみ,でんしめーる,ふうとう,めーる,ゆうびん,封筒,手紙,郵便,電子めーる,eめーる -📨️ eめーる,いーめーる,じゅしん,じゅしんする,じゅしんちゅう,でんしめーる,めーる,めーるじゅしんちゅう,めーる受信中,受信中,電子めーる -📩️ eめーる,いーめーる,そうしん,そうしんする,でんしめーる,めーる,めーるじゅしん,めーるする,めーる受信,送信,電子めーる -📤️ いーめーる,そうしん,そうしんとれい,でんしめーる,とれい,めーる,送信box -📥️ いーめーる,じゅしん,じゅしんとれい,でんしめーる,とれい,めーる,受信box -📦️ こづつみ,たくはいびん,たっきゅうびん,だんぼーる,にもつ,ぱっく,ぱっけーじ,段ぼーる -📫️ てがみあり,とじた,とじたゆうびんうけ,はたつきぽすと,ぽすと,めーる,ゆうびん,ゆうびんうけ,ゆうびんばこ,郵便受け -📪️ てがみなし,とじた,とじたゆうびんうけ,はたつきぽすと,ぽすと,めーる,ゆうびん,ゆうびんうけ,ゆうびんばこ,郵便受け -📬️ てがみあり,ひらいた,ひらいたゆうびんうけ,ぽすと,ゆうびんうけ,ゆうびんばこ -📭️ てがみなし,ひらいた,ひらいたゆうびんうけ,ぽすと,ゆうびんうけ,ゆうびんばこ -📮️ てがみ,ぽすと,ゆうびん,ゆうびんばこ,ゆうびんぽすと,手紙,郵便,郵便ぽすと,郵便箱 -🗳️️ せんきょ,とうひょうばこ -✏️️ えんぴつ,ぶんぐ,ぶんぼうぐ -✒️️ えでぃっと,ぶんぐ,ぶんぼうぐ,ぺん,ぺんさき,まんねんひつ -🖋️️ ぶんぐ,ぶんぼうぐ,まんねんひつ -🖊️️ ぶんぐ,ぶんぼうぐ,ぺん,ぼーるぺん -🖌️️ えのぐ,えふで,ぶんぐ,ぶんぼうぐ -🖍️️ くれよん,ぶんぐ,ぶんぼうぐ -📝️ えんぴつとめも,かみとえんぴつ,ぶんぐ,ぶんぼうぐ,めも,文具,文房具,紙と鉛筆,鉛筆とめも -💼️ かばん,ぶりーふけーす -📁️ ふぁいる,ふぉるだー,ぶんぐ,ぶんぼうぐ,文具,文房具 -📂️ ひらいたふぉるだー,ふぁいる,ふぉるだー,ぶんぐ,ぶんぼうぐ,文具,文房具,開いたふぉるだー -🗂️️ いんでっくす,かーどふぉるだー,ふぉるだー,ぶんぐ,ぶんぼうぐ -📅️ かれんだー,すけじゅーる,ひづけ,よてい,予定,日付 -📆️ かれんだー,すけじゅーる,ひづけ,ひめくり,ひめくりかれんだー,よてい,予定,日めくりかれんだー,日付 -🗒️️ のーと,ぶんぐ,ぶんぼうぐ,めもちょう,りんぐめも -🗓️️ かれんだー,すけじゅーる,つきめくりかれんだー,ひづけ,よてい -📇️ かーどいんでっくす,ぶんぐ,ぶんぼうぐ,めいしほるだー,ろーろでっくす,名刺ほるだー,文具,文房具 -📈️ うえむき,うわむき,おれせんぐらふ,ぐらふ,ぐらふうえむき,ぐらふうわむき,ぐらふ上向き,じょうしょう,上向き,上昇,折れ線ぐらふ -📉️ おれせんぐらふ,かこう,ぐらふ,ぐらふしたむき,ぐらふ下向き,したむき,下向き,下降,折れ線ぐらふ -📊️ ぐらふ,ちゃーと,ぼうぐらふ,棒ぐらふ -📋️ くりっぷ,くりっぷぼーど,ぶんぐ,ぶんぼうぐ -📌️ おしぴん,がびょう,ぴん,ぶんぐ,ぶんぼうぐ,ぷっしゅぴん,押しぴん,文具,文房具,画鋲 -📍️ おしぴん,がびょう,ぴん,ぶんぐ,ぶんぼうぐ,ぷっしゅぴん,まるいおしぴん,丸い押しぴん,押しぴん,文具,文房具,画びょう -📎️ かみくりっぷ,くりっぷ,ぜむくりっぷ,ぶんぐ,ぶんぼうぐ,ぺーぱーくりっぷ,文具,文房具,紙くりっぷ -🖇️️ かみくりっぷ,つながったくりっぷ,ぶんぐ,ぶんぼうぐ,ぺーぱーくりっぷ -📏️ じょうぎ,ぶんぐ,ぶんぼうぐ,ものさし,定規,文具,文房具 -📐️ さんかくじょうぎ,じょうぎ,ぶんぐ,ぶんぼうぐ,三角定規,定規,文具,文房具 -✂️️ かっと,きる,はさみ,びよういん,ぶんぐ,ぶんぼうぐ -🗃️️ かーどふぁいるぼっくす,はこ,ふぁいる,ぶんぐ,ぶんぼうぐ,ぼっくす -🗄️️ きゃびねっと,ひきだし,ふぁいる,ふぁいるきゃびねっと -🗑️️ くずかご,ごみかご,ごみばこ -🔒️ かぎ,じょう,せじょう,とじたじょう,ろっく,ろっくおん,鍵 -🔓️ かいじょう,かぎ,じょう,ひらいたじょう,ろっく,ろっくおふ,鍵 -🔏️ かぎ,とじたじょうとぺん,ぷらいばしー,ろっく,鍵,閉じた錠とぺん -🔐️ あんぜん,かぎ,きー,せきゅりてぃ,とじたじょうとかぎ,ろっく,ろっくかくにん,安全,鍵,閉じた錠と鍵 -🔑️ かぎ,きー,ぱすわーど,鍵 -🗝️️ きー,てがかり,ぱすわーど,ふるいかぎ -🔨️ かなづち,こうぐ,とんかち,はんまー,工具 -🪓️ おの,き,こうぐ,はちぇっと,まきわり,工具,斧,木,薪割り -⛏️️ こうぐ,さいくつ,つるはし -⚒️️ かなづち,こうぐ,つるはし,とんかち,はんまー,はんまーとつるはし -🛠️️ かなづち,こうぐ,とんかち,はんまーとれんち,れんち -🗡️️ たんとう,だがー,ないふ,ぶき -⚔️️ かたな,くろすしたけん,けん,つるぎ,ぶき -💣️ ばくだん,爆弾 -🪃️ おもちゃ,おーすとらりあ,かえってくる,がんぐ,はねかえり,ぶき,ぶーめらん,武器,玩具,跳ね返り,返って来る -🏹️ いて,しゃしゅ,せいざ,ぶき,や,ゆみや,射手,弓矢,星座,武器,矢 -🛡️️ しーるど,たて,ぼうぐ -🪚️ こうぐ,だいく,のこ,のこぎり,は,もっこう,刃,大工,工具,木工 -🔧️ こうぐ,すぱな,れんち,工具 -🪛️ こうぐ,すくりゅーどらいばー,どらいばー,ねじまわし,ねじ回し,工具 -🔩️ こうぐ,なっと,ぼると,ぼるととなっと,ぼると&なっと,工具 -⚙️️ ぎあ,こうぐ,はぐるま -🗜️️ くらんぷ,こうぐ,ばいす,まんりき -⚖️️ かがく,じっけん,せいざ,てんびん,はかり -🦯️ あくせしびりてぃ,しかく,しょうがい,しろつえ,つえ,はくじょう,白杖,視覚,障がい -🔗️ りんく,りんくしんぼる -⛓️️ くさり,ちぇーん -🪝️ かけがね,かけきん,とめがね,ひっかけ,ふっく,引っ掛け,掛け金,留め金 -🧰️ きかいこう,こうぐばこ,せいびし,つーるぼっくす,めかにっく,工具箱,整備士,機械工 -🧲️ u字型磁石,ていてつ,まぐねっと,ゆーじがたじしゃく,蹄鉄 -🪜️ こうしょさぎょう,すてっぱー,のぼる,はしご,登る,高所作業 -⚗️️ かがく,じっけん,じょうりゅうき -🧪️ かがく,しけんかん,じっけん,らぼ,化学,実験,試験管 -🧫️ せいぶつがく,ばいよう,ばくてりあ,ぺとりさら,ぺとり皿,培養,生物学 -🧬️ dna,いでんし,しんか,せいぶつがく,でぃーえぬえー,生物学,進化,遺伝子 -🔬️ かがく,けんきゅう,けんびきょう,さいえんす,研究,科学,顕微鏡 -🔭️ かがく,かんそく,さいえんす,てんたいかんそく,ぼうえんきょう,天体観測,望遠鏡,科学,観測 -📡️ あんてな,えいせいあんてな,でんぱ,ぱらぼら,ぱらぼらあんてな,衛星あんてな,電波 -💉️ いしゃ,くすり,ちゅうしゃ,ちゅうしゃき,びょうき,医者,注射,注射器,病気,薬 -🩸️ いしゃ,けが,けつえき,けんけつ,せいり,医者,献血,生理,血液 -💊️ いしゃ,かぜぐすり,かぷせる,くすり,びょうき,医者,病気,薬 -🩹️ きず,くすり,けが,てあて,ばんそうこう,傷,手当て,絆創膏,薬 -🩼️ けが,しょうがい,すてっき,つえ,ほこうほじょ,まつばづえ,怪我,杖,松葉杖,歩行補助,障がい -🩺️ いしゃ,しんぞう,ちょうしんき,びょうき,医者,心臓,病気,聴診器 -🩻️ x線,いしゃ,えっくすせん,こっかく,ほね,れんとげん,医者,骨,骨格 -🚪️ と,とびら,どあ,戸,扉 -🛗️ あくせしびりてぃ,えれべーたー,しょうこうき,ばりあふりー,りふと,昇降機 -🪞️ かがみ,すがたみ,はんしゃ,みだしなみ,みらー,反射,姿見,身だしなみ,鏡 -🪟️ あける,かんき,ながめ,ふれーむ,まど,換気,眺め,窓,開ける -🛏️️ すいみん,ねる,べっど,ほてる -🛋️️ そふぁ,そふぁとらんぷ,ほてる,らんぷ -🪑️ いす,かぐ,こしかけ,しーと,ちぇあ,家具,椅子,腰掛け -🚽️ おてあらい,お手洗い,といれ,べんき,べんざ,便器,便座 -🪠️ きゅういんかっぷ,すっぽん,つうすいかっぷ,といれ,ぷらんじゃー,らばーかっぷ,吸引かっぷ,通水かっぷ -🚿️ しゃわー,ふろ,風呂 -🛁️ ばすたぶ,ふろ,よくそう,浴槽,風呂 -🪤️ おびきよせる,おびき寄せる,しかけ,ねずみとり,ねずみ捕り,ばね,まうすとらっぷ,わな,仕掛け -🪒️ かみそり,は,ひげそり,れーざー,刃,剃刀 -🧴️ けしょうすい,しゃんぷー,ひやけどめ,ろーしょん,化粧水,日焼け止め -🧷️ あんぜんぴん,とめぴん,安全ぴん,止めぴん -🧹️ そうじ,はく,ほうき,まじょ,掃く,掃除,魔女 -🧺️ かご,しゅうかく,せんたく,ぴくにっく,収穫,洗濯 -🧻️ きっちんぺーぱー,といれっとぺーぱー,ぺーぱーたおる -🪣️ おけ,ばけつ,ぽりばけつ,ようき,容器 -🧼️ せっけん,そーぷ,ふろ,石けん,風呂 -🫧️ あぶく,あわ,しゃぼんだま,しゃぼん玉,すいちゅう,せっけん,ばぶる,水中,泡,石けん -🪥️ えいせい,おていれ,お手入れ,せんめんじょ,はぶらし,はみがき,むしば,歯ぶらし,歯磨き,洗面所,虫歯,衛生 -🧽️ かいめん,きゅうしゅう,すぽんじ,そうじ,吸収,掃除,海綿 -🧯️ しょうか,しょうかき,しょうかきぐ,しょうぼう,消火,消火器,消火器具,消防 -🛒️ かいもの,かーと,しょっぴんぐ,しょっぴんぐかーと,すーぱー,買い物 -🚬️ きつえん,たばこ,喫煙,煙草 -⚰️️ かんおけ,し,ひつぎ,まいそう -🪦️ おはか,お墓,せきひ,はかば,ぼせき,ぼち,まいそう,埋葬,墓地,墓場,墓石,石碑 -⚱️️ いはい,こつつぼ,し,そうぎ,まいそう -🧿️ おまもり,お守り,じゃし,なざーる,なざーるぼんじゅう,なざーる・ぼんじゅう,びーず,まよけ,邪視,魔除け -🪬️ おまもり,お守り,ごふ,て,はむさ,ふぁーてぃま,みりあむ,め,手,目,護符 -🗿️ かお,ぞう,もあい,もやい,もやい像,像,顔 -🪧️ いぎ,かんばん,こうぎ,しゅちょう,でも,ぷらかーど,主張,抗議,異議,看板 -🪪️ id,あいでぃーかーど,うんてんめんきょしょう,かーど,せきゅりてぃ,みぶんしょう,みぶんしょうめいしょ,身分証,身分証明書,運転免許証 -🏧️ atm,えーてぃーえむ,ぎんこう,げんきんじどうあずけばらいき,現金自動預け払い機,銀行,atm -🚮️ くずかご,ごみすて,ごみばこ,ごみ捨て,ごみ箱 -🚰️ いんりょうすい,すいどう,のみみず,みず,水,水道,飲み水,飲料水 -♿️ くるまいす,ばりあふりー,ばりやふりー -🚹️ wc,おてあらい,けしょうしつ,だんし,だんしといれ,だんせい,といれ,男性 -🚺️ wc,おてあらい,けしょうしつ,じょし,じょしといれ,じょせい,といれ,女性 -🚻️ wc,おてあらい,お手洗い,けしょうしつ,だぶりゅーしー,といれ,化粧室 -🚼️ あかちゃん,あかんぼう,べびー,べびーしーと,赤ちゃん -🚾️ wc,おてあらい,お手洗い,けしょうしつ,だぶりゅーしー,といれ,化粧室 -🛂️ しゅつにゅうこく,しゅつにゅうこくしんさ,にゅうしゅっこく,ぱすぽーとこんとろーる,入出国,出入国,出入国審査 -🛃️ ぜいかん,つうかん,税関,通関 -🛄️ すーつけーす,てにもつ,てにもつうけとり,ばげっじくれーむ,手荷物,手荷物受取 -🛅️ すーつけーす,てにもつ,てにもつあずかり,ろっかー,手荷物,手荷物預かり -⚠️️ きけん,けいこく,ちゅうい,ひょうしき,! -🚸️ がっこう、ようちえん、ほいくしょとうあり,こども,じどうおうだん,つうがくろ,ひょうしき,児童横断,子供,学校、幼稚園、保育所等あり,標識,通学路 -⛔️ きせい,しゃりょうしんにゅうきんし,たちいりきんし,どうろ,ひょうしき -🚫️ きせい,きんし,しゃりょうつうこうどめ,どうろ,ひょうしき,標識,禁止,規制,車両通行止め,道路 -🚳️ きせい,きんし,じてんしゃ,じてんしゃきんし,どうろ,ひょうしき,標識,禁止,自転車,自転車禁止,規制,道路 -🚭️ きんえん,きんし,たばこ,禁煙 -🚯️ きんし,ごみ,ごみすてきんし,ごみ捨て禁止,ぽいすてきんし,ぽい捨て禁止,禁止 -🚱️ いんようふか,きんし,のめないみず,禁止,飲めない水,飲用不可 -🚷️ きせい,きんし,どうろ,ひょうしき,ほこうしゃたちいりきんし,標識,歩行者立入禁止,禁止,規制,道路 -📵️ けいたいきんし,けいたいでんわきんし,すまほきんし,すまほ禁止,すまーとふぉんきんし,すまーとふぉん禁止,携帯禁止,携帯電話禁止 -🔞️ 18きん,18さいみまんきんし,18歳未満禁止,18禁,きんし,みせいねん,未成年,禁止,18きん -☢️️ きけん,ほうしゃせい,ほうしゃせん,ほうしゃのう -☣️️ きけん,ばいおはざーど,ゆうがいぶっしつ -⬆️️ うえ,うえやじるし,きた,やじるし -↗️️ ほくとう,みぎうえ,みぎうえやじるし,やじるし -➡️️ ひがし,みぎ,みぎやじるし,やじるし -↘️️ なんとう,みぎした,みぎしたやじるし,やじるし -⬇️️ した,したやじるし,みなみ,やじるし -↙️️ なんせい,ひだりした,ひだりしたやじるし,やじるし -⬅️️ にし,ひだり,ひだりやじるし,やじるし -↖️️ ひだりうえ,ひだりうえやじるし,ほくせい,やじるし -↕️️ じょうげ,じょうげやじるし,やじるし,やじるしじょうげ -↔️️ さゆう,さゆうやじるし,やじるし,やじるしさゆう -↩️️ かーぶ,きょくせん,ひだり,みぎかーぶやじるし,やじるし -↪️️ かーぶ,きょくせん,ひだりかーぶやじるし,みぎ,やじるし -⤴️️ うえ,うえかーぶやじるし,うえやじるし,かーぶ,きょくせん,ぐっど,やじるし -⤵️️ かーぶ,きょくせん,した,したかーぶやじるし,したやじるし,ばっど,やじるし -🔃️ くりかえし,さいよみこみ,とけいまわり,みぎまわり,みぎまわりたてやじるし,やじるし,りろーど,右回り,右回り縦矢印,時計回り,矢印,繰り返し -🔄️ くりかえし,はんとけいまわり,ひだりまわりやじるし,やじるし,りぴーと,反時計回り,左回り矢印,矢印,繰り返し -🔙️ back,backやじるし,back矢印,ばっく,ばっくやじるし,もどる,やじるし,戻る,矢印 -🔚️ end,endやじるし,end矢印,えんど,えんどやじるし,おわり,やじるし,矢印,終わり -🔛️ on,onやじるし,on矢印,おん,おんやじるし,やじるし,矢印 -🔜️ soon,soonやじるし,soon矢印,すぐ,すーん,すーんやじるし,やじるし,矢印 -🔝️ top,topやじるし,top矢印,うえ,とっぷ,とっぷやじるし,やじるし,上,矢印 -🛐️ いのり,しゅうきょう,れいはいじょ,宗教,礼拝所,祈り -⚛️️ げんし,げんしのしんぼる,げんそ,ぶんし,むしんろん -🕉️️ おーむ,しゅうきょう,ひんどぅーきょう -✡️️ しゅうきょう,だびでのほし,ほし,ゆだやきょう -☸️️ しゅうきょう,てんぼうりん,てんぽうりん,ぶっきょう,ほうりん -☯️️ いんやん,いんよう,しゅうきょう,どうきょう -✝️️ きりすときょう,くろす,しゅうきょう,じゅうじか -☦️️ きりすときょう,しゅうきょう,じゅうじか,はったんじゅうじか -☪️️ いすらむきょう,しゅうきょう,ほし,ほしとみかづき,みかづき -☮️️ ぴーすまーく,へいわ -🕎️ しゅうきょう,しょくだい,めのらー,めのーらー,ゆだやきょう,ゆだや教,宗教,燭台 -🔯️ うらない,だびで,ほし,ろくぼうせい,ろっかくせい,六芒星,六角星,占い,星 -🪯️ かんだ,けん,しくきょう,しく教,しゅうきょう,しーくきょう,しーく教,剣,宗教 -♈️ おひつじざ,せいざ -♉️ おうしざ,せいざ -♊️ せいざ,ふたござ -♋️ かにざ,せいざ -♌️ ししざ,せいざ -♍️ おとめざ,せいざ -♎️ せいざ,てんびんざ -♏️ さそりざ,せいざ -♐️ いてざ,せいざ -♑️ せいざ,やぎざ -♒️ せいざ,みずがめざ -♓️ うおざ,せいざ -⛎️ せいざ,へびつかいざ,へびつかい座,へびつかざ -🔀️ こうさ,しゃっふる,しゃっふるぼたん,ぼたん,やじるし,交差,矢印 -🔁️ くりかえし,ぜんきょく,ぼたん,やじるし,りぴーとぼたん,全曲,矢印,繰り返し -🔂️ 1きょくりぴーとぼたん,1曲りぴーとぼたん,くりかえし,ぼたん,やじるし,りぴーと,矢印,繰り返し -▶️️ さいせい,さいせいぼたん,つぎへ,ぷれい,ぼたん,みぎむきさんかく,やじるし -⏩️ はやおくり,はやおくりぼたん,ぼたん,みぎ,やじるし,早送り -⏭️️ つぎのきょくぼたん,つぎのしーん,つぎのとらっく,ぼたん,やじるし -⏯️️ いちじていし,いちじていしぼたん,さいせい,さいせいぼたん,さいせい/いちじていしぼたん,ぼたん,やじるし -◀️️ ぎゃくさいせい,ぎゃくさいせいぼたん,ひだりむきさんかく,ぼたん,まきもどし,もどる,やじるし -⏪️ はやもどし,はやもどしぼたん,ひだり,まきもどし,もどる,やじるし,巻き戻し -⏮️️ ぼたん,まえのきょくぼたん,まえのしーん,まえのとらっく,やじるし -🔼️ うえ,うえぼたん,うえむきさんかく,さんかく,ぼたん,やじるし,三角,上,上ぼたん,矢印 -⏫️ うえ,こうそくじょうぼたん,にじゅう,ぼたん,やじるし,上二重三角 -🔽️ さんかく,した,したぼたん,したむきさんかく,ぼたん,やじるし,三角,下,下ぼたん,矢印 -⏬️ こうそくしたぼたん,した,にじゅう,ぼたん,やじるし,下二重三角 -⏸️️ いちじていし,いちじていしぼたん,ぼたん,ぽーず -⏹️️ すとっぷ,ていし,ていしぼたん,ぼたん -⏺️️ ぼたん,ろくおん,ろくおんろくがぼたん,ろくが -⏏️️ いじぇくと,とりだし,とりだしぼたん,ぼたん -🎦️ えいが,えいがかん,かめら,どうが,動画,映画,映画館 -🔅️ あかるさ,きど,くらい,ていきど,ぶらいとねす,低輝度,明るさ,暗い,輝度 -🔆️ あかるい,あかるさ,きど,こうきど,ぶらいとねす,明るい,明るさ,輝度,高輝度 -📶️ あんてなまーく,けいたい,けいたいでんわ,けんない,すまほ,すまーとふぉん,でんぱ,圏内,携帯電話,電波 -🛜️ wi-fi,いんたーねっと,すまほ,でんぱ,ねっと,ねっとわーく,ぱそこん,むせん,わいふぁい,わいやれす,電波 -📳️ けいたい,けいたいでんわ,すまほ,すまーとふぉん,まなーもーど,携帯,携帯電話 -📴️ けいたい,けいたいでんわ,けいたいでんわでんげんおふ,すまほ,すまーとふぉん,でんげんおふ,携帯電話電源おふ,電源off,電源おふ -♀️️ おんな,しんぼる,じょせい,じょせいのまーく -♂️️ おとこ,しんぼる,だんせい,だんせいのまーく -⚧️️ lgbt,しんぼる,せいべつ,てぃーじー,とらんすじぇんだーのまーく -✖️️ かけざん,かける,きごう,きゃんせる,じょうざん,ばつ,ぺけ -➕️ +,かさん,きごう,たしざん,たす,ぷらす,+ -➖️ -,きごう,げんざん,ひきざん,ひく,まいなす,ー -➗️ /,÷,きごう,じょさん,わりざん,わる,・,/ -🟰️ いこーる,すうがく,とうごう,ひとしい,ふとじのとうごう,太字の等号,数学,等しい,等号 -♾️️ えいえん,ばんぶつ,むげん,むげんだい -‼️️ !,えくすくらめーしょんまーく,きごう,にじゅうかんたんふ,びっくりまーく,やくもの,!,!! -⁉️️ !,!?,?,かんたんふぎもんふ,きごう,はてなまーく,びっくりまーく,!,!?,? -❓️ ?,あかいぎもんふ,きごう,ぎもんふ,くえすちょん,くえすちょんまーく,はてな,はてなまーく,やくもの,? -❔️ ?,きごう,くえすちょん,くえすちょんまーく,しろいぎもんふ,はてな,はてなまーく,やくもの,? -❕️ !,えくすくらめーしょんまーく,きごう,しろいかんたんふ,びっくり,びっくりまーく,やくもの,! -❗️ !,あかいかんたんふ,えくすくらめーしょんまーく,かんたんふ,きごう,びっくりまーく,やくもの,! -〰️️ きごう,ちょうおんきごう,なみせん,はせん,やくもの,ー -💱️ えん,おかね,お金,がいかりょうがえ,つうか,どる,りょうがえ,両替,円,外貨両替,通貨 -💲️ おかね,お金,つうか,どる,どるきごう,どる記号,通貨 -⚕️️ あすくれぴおすのつえ,いしゃ,いりょう,いりょうのしんぼる,ちりょう -♻️️ さいせい,さいりよう,じゅんかんやじるし,りさいくる,りさいくるまーく -⚜️️ えんぶれむ,ふらんすおうけ,ふるーるどりす,もんしょう,ゆり -🔱️ いかり,うみ,えんぶれむ,とらいでんと,みつまた,三つ又,海,錨 -📛️ なふだ,ほいくえん,ほいくしょ,ようちえん,保育園,保育所,名札,幼稚園 -🔰️ しょしんしゃ,しょしんしゃまーく,はつ,わかばまーく,初心者,初心者まーく,若葉まーく -⭕️ えん,きごう,ふといまる,まる,わ -✅️ きごう,しろぬきのちぇっく,ちぇっく,ちぇっくまーく,ぴん -☑️️ きごう,ちぇっく,ちぇっくぼっくす,ちぇっくまーく -✔️️ きごう,ちぇっく,ちぇっくまーく,ふとじのちぇっく -❌️ かけざん,きごう,きゃんせる,じょうざん,ばつ,ぺけ -❎️ かけざん,きごう,きゃんせる,しろぬきのばつ,じょうざん,ばつ,ぺけ -➰️ きごう,ちょうおん,るーぷ,わっか -➿️ きごう,だぶるるーぷ,ふりーだいやる,るーぷ,わっか -〽️️ あんてん,いおりてん,うたきごう,きごう,やくもの -✳️️ あすたりすく,かざり,きごう,はっかくあすたりすく,ほし,やくもの -✴️️ かざり,きごう,すぱーく,はっかくせい,ほし,やくもの -❇️️ あすたりすく,きごう,すぱーく,すぱーくる,やくもの -©️️ cまーく,きごう,こぴーらいと,しーまーく,ちょさくけん,ちょさくけんまーく -®️️ あーるまーく,きごう,とうろくしょうひょう,とうろくしょうひょうまーく -™️️ tmまーく,きごう,しょうひょう,しょうひょうまーく,てぃーえむまーく,とれーどまーく -#️⃣️ #,かこみすうじ,しゃーぷ,しゃーぷだいやる -*️⃣️ *,かこみすうじ -0️⃣️ 0,かこみすうじ,0 -1️⃣️ 1,かこみすうじ,1 -2️⃣️ 2,かこみすうじ,2 -3️⃣️ 3,かこみすうじ,3 -4️⃣️ 4,かこみすうじ,4 -5️⃣️ 5,かこみすうじ,5 -6️⃣️ 6,かこみすうじ,6 -7️⃣️ 7,かこみすうじ,7 -8️⃣️ 8,かこみすうじ,8 -9️⃣️ 9,かこみすうじ,9 -🔟️ 10,かこみすうじ,囲み数字,囲み数字: 10,10 -🔠️ abcd,あるふぁべっと,えいおおもじのにゅうりょく,えいじ,えーびーしーでぃ,おおもじ,だいもんじ,ろーまじ,ろーま字,大文字,英大文字の入力,英字,abcd -🔡️ abcd,あるふぁべっと,えいこもじのにゅうりょく,えいじ,えーびーしーでぃー,こもじ,ろーまじ,ろーま字,小文字,英字,英小文字の入力,abcd -🔢️ 1234,すうじ,すうじのにゅうりょく,にゅうりょく,入力,数字,数字の入力,1234 -🔣️ 〒♪&%,〒♪&%,〒♪&ぱーせんと,きごう,きごうのにゅうりょく,にゅうりょく,入力,記号,記号の入力 -🔤️ abc,あるふぁべっと,えいご,えいじ,えいじのにゅうりょく,えいびーしー,えーびーしー,ろーまじ,ろーま字,英字,英字の入力,英語,abc -🅰️️ a,えいがた,えーがた,けつえきがた,けつえきがたえいがた,けつえきがたえーがた,a,a型 -🆎️ ab,ab型,えいびーがた,えーびーがた,けつえきがた,けつえきがたえいびーがた,けつえきがたえーびーがた,血液型,血液型ab型,ab,ab型 -🅱️️ b,けつえきがた,けつえきがたびーがた,びーがた,b,b型 -🆑️ cl,clまーく,くりあ,しーえる,しーえるまーく,cl -🆒️ cool,coolまーく,くーる,くーるまーく,cool -🆓️ freeまーく,ただ,ふりー,ふりーまーく,むりょう,無料,free -ℹ️️ i,iまーく,あい,あいまーく,いんふぉめーしょん,いんふぉめーしょんしんぼる,じょうほう -🆔️ id,idまーく,あいでぃ─,あいでぃー,あいでぃーまーく,id -Ⓜ️️ m,えむ,ちかてつ,まる,まるいえむまーく -🆕️ new,newまーく,あたらしい,にゅー,にゅーまーく,新しい,new -🆖️ ng,ngまーく,えぬじー,えぬじーまーく,ぼつ,ng -🅾️️ o,おーがた,けつえきがた,けつえきがたおーがた,o,o型 -🆗️ ok,okまーく,おっけー,おーけー,おーけーまーく,ok -🅿️️ p,ちゅうしゃ,ちゅうしゃじょう,ぱーきんぐ,ぴー,ぴーまーく -🆘️ sos,sosまーく,えすおーえす,えすおーえすまーく,たすけて,助けて,sos -🆙️ up,upまーく,あっぷ,あっぷまーく,こうしん,更新,up -🆚️ vs,vsまーく,ばーさす,ばーさすまーく,ぶいえす,ぶいえすまーく,ゔぁーさす,ゔぃえす,vs -🈁️ ここ,ここのまーく -🈂️️ さ,さのまーく,さーびす,さーびすりょう -🈷️️ げつがく,つき,つきぎめ,つきまーく,月 -🈶️ ゆう,ゆうげん,ゆうまーく,ゆうりょう,有,有まーく,有料,有限 -🈯️ してい,していせき,ゆび,ゆびまーく -🉐️ おとく,お得,とく,まるとく,まる得,得 -🈹️ でぃすかうんと,わり,わりびき,わりまーく,割,割まーく,割引 -🈚️ ただ,む,むまーく,むりょう -🈲️ きん,きんし,きんまーく,げんきん,厳禁,禁,禁まーく,禁止 -🉑️ か,かのう,かまーく,きょか,可,可まーく,可能,許可 -🈸️ しん,しんせい,しんまーく,もうしこみ,もうしこみまーく,申,申し込み,申まーく,申請 -🈴️ ごう,ごうかく,ごうまーく,合,合まーく,合格 -🈳️ あき,あきまーく,から,くう,くうしつ,くうせき,そら,そらまーく,空,空き,空まーく,空室,空席 -㊗️️ いわい,いわいまーく,おいわい,おめでとう,しゅく,しゅくまーく -㊙️️ ごくひ,しゃがいひ,ひ,ひみつ,まるひ -🈺️ えい,えいぎょう,えいぎょうちゅう,えいぎょうび,えいまーく,営,営まーく,営業中,営業日 -🈵️ まん,まんいん,まんしつ,まんしゃ,まんせき,まんまーく,満,満まーく,満員,満室,満席,満車 -🔴️ あか,あかいまる,おおきいまる,おおまる,まる,まるいぼたん,丸,丸いぼたん,赤,赤い丸 -🟠️ おれんじ,おれんじのまる,おれんじの丸,まる,まるいぼたん,丸,丸いぼたん -🟡️ きいろ,きいろいまる,まる,まるいぼたん,丸,丸いぼたん,黄色,黄色い丸 -🟢️ まる,まるいぼたん,みどり,みどりのまる,丸,丸いぼたん,緑,緑の丸 -🔵️ あお,あおいまる,おおきいまる,おおまる,まる,まるいぼたん,丸,丸いぼたん,青,青い丸 -🟣️ まる,まるいぼたん,むらさき,むらさきのまる,丸,丸いぼたん,紫,紫の丸 -🟤️ ちゃいろ,ちゃいろのまる,まる,まるいぼたん,丸,丸いぼたん,茶色,茶色の丸 -⚫️ くろ,くろいまる,まる,まるいぼたん -⚪️ しろ,しろいまる,まる,まるいぼたん -🟥️ あか,あかいしかく,しかく,せいほうけい,四角,正方形,赤,赤い四角 -🟧️ おれんじ,おれんじのしかく,おれんじの四角,しかく,せいほうけい,四角,正方形 -🟨️ きいろ,きいろいしかく,しかく,せいほうけい,四角,正方形,黄色,黄色い四角 -🟩️ しかく,せいほうけい,みどり,みどりのしかく,四角,正方形,緑,緑の四角 -🟦️ あお,あおいしかく,しかく,せいほうけい,四角,正方形,青,青い四角 -🟪️ しかく,せいほうけい,むらさき,むらさきのしかく,四角,正方形,紫,紫の四角 -🟫️ しかく,せいほうけい,ちゃいろ,ちゃいろいしかく,四角,正方形,茶色,茶色い四角 -⬛️ くろ,くろしかくとくだい,しかく,せいほうけい -⬜️ しかく,しろ,しろしかくとくだい,せいほうけい -◼️️ くろ,くろしかくだい,しかく,せいほうけい -◻️️ しかく,しろ,しろしかくだい,せいほうけい -◾️ くろ,くろしかくちゅう,しかく,せいほうけい -◽️ しかく,しろ,しろしかくちゅう,せいほうけい -▪️️ くろ,くろしかくしょう,しかく,せいほうけい -▫️️ しかく,しろ,しろしかくしょう,せいほうけい -🔶️ おおきいおれんじのひしがた,おおきいひしがた,おれんじ,しかく,だいあ,だいや,ひしがた,ひし形,四角,大きいおれんじのひし形,菱形 -🔷️ あお,おおきいあおのひしがた,おおきいひしがた,しかく,だいあ,だいや,ひしがた,ひし形,四角,大きい青のひし形,菱形,青 -🔸️ おれんじ,しかく,だいあ,だいや,ちいさいおれんじのひしがた,ちいさいひしがた,ひしがた,ひし形,四角,小さいおれんじのひし形,菱形 -🔹️ あお,しかく,だいあ,だいや,ちいさいあおのひしがた,ちいさいひしがた,ひしがた,ひし形,四角,小さい青のひし形,菱形,青 -🔺️ あか,あかいうえさんかく,うえ,うえむきさんかく,さんかく,三角,上,赤,赤い上三角 -🔻️ あか,あかいしたさんかく,さんかく,した,したむきさんかく,三角,下,赤,赤い下三角 -💠️ かわいい,だいあ,だいや,どっとつきひしがた,どっと付きひし形,ひしがた,ひし形 -🔘️ にじゅうまる,ぼたん,らじおぼたん,二重丸 -🔳️ しかく,しかくぼたん,しろわくしかく,せいほうけい,ぼたん,四角ぼたん,正方形,白枠四角 -🔲️ くろわくしかく,しかく,しかくぼたん,せいほうけい,ぼたん,四角ぼたん,正方形,黒枠四角 -🏁️ すぽーつ,ちぇっかー,ちぇっかーふらぐ,ちぇっかーふらっぐ,はた,ふらぐ,ふらっぐ,れーす,旗 -🚩️ ごるふ,さんかくのはた,すぽーつ,はた,ふらぐ,ふらっぐ,三角の旗,旗 -🎌️ しゅくじつ,しゅくじつのはた,はた,ひのまる,ふらぐ,ふらっぐ,旗,日の丸,祝日,祝日の旗 -🏴️ くろ,くろはた,こっき,はた,ふらぐ,ふらっぐ,旗,黒,黒旗 -🏳️️ しらはた,しろ,しろはた,はた,はっき,ふらぐ,ふらっぐ -🏳️‍🌈️ lgbt,にじいろのはた,はた,ふらぐ,ふらっぐ,れいんぼー,れいんぼーふらっぐ -🏳️‍⚧️️ lgbt,てぃーじー,とらんすじぇんだー,とらんすじぇんだーふらっぐ,はた,ふらぐ,ふらっぐ -🏴‍☠️️ かいぞく,かいぞくき,じょりーろじゃー,たからもの,ほうもつ,りゃくだつ -🇦🇨️ あせんしょんとう,あせんしょん島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇩️ あんどら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇪️ あらぶ,あらぶしゅちょうこくれんぽう,あらぶ首長国連邦,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇫️ あふがにすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇬️ あんてぃぐあばーぶーだ,あんてぃぐあ・ばーぶーだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇮️ あんぎら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇱️ あるばにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇲️ あるめにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇴️ あんごら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇶️ こっき,なんきょく,なんきょくたいりく,はた,ふらぐ,ふらっぐ,南極,旗 -🇦🇷️ あるぜんちん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇸️ あめりかりょうさもあ,こっき,はた,ふらぐ,ふらっぐ,べいりょうさもあ,旗,米領さもあ -🇦🇹️ おーすとりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇺️ おーすとらりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇼️ あるば,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇽️ おーらんどしょとう,おーらんど諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇿️ あぜるばいじゃん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇧🇦️ こっき,はた,ふらぐ,ふらっぐ,ぼすにあへるつぇごびな,ぼすにあ・へるつぇごびな,旗 -🇧🇧️ こっき,はた,ばるばどす,ふらぐ,ふらっぐ,旗 -🇧🇩️ こっき,はた,ばんぐらでしゅ,ふらぐ,ふらっぐ,旗 -🇧🇪️ こっき,はた,ふらぐ,ふらっぐ,べるぎー,旗 -🇧🇫️ こっき,はた,ふらぐ,ふらっぐ,ぶるきなふぁそ,旗 -🇧🇬️ こっき,はた,ふらぐ,ふらっぐ,ぶるがりあ,旗 -🇧🇭️ こっき,はた,ばーれーん,ふらぐ,ふらっぐ,旗 -🇧🇮️ こっき,はた,ふらぐ,ふらっぐ,ぶるんじ,旗 -🇧🇯️ こっき,はた,ふらぐ,ふらっぐ,べなん,旗 -🇧🇱️ こっき,さんばるてるみー,さん・ばるてるみー,はた,ふらぐ,ふらっぐ,旗 -🇧🇲️ こっき,はた,ばみゅーだ,ふらぐ,ふらっぐ,旗 -🇧🇳️ こっき,はた,ふらぐ,ふらっぐ,ぶるねい,旗 -🇧🇴️ こっき,はた,ふらぐ,ふらっぐ,ぼりびあ,旗 -🇧🇶️ おらんだりょうかりぶ,おらんだ領かりぶ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇧🇷️ こっき,はた,ふらぐ,ふらっぐ,ぶらじる,旗 -🇧🇸️ こっき,はた,ばはま,ふらぐ,ふらっぐ,旗 -🇧🇹️ こっき,はた,ふらぐ,ふらっぐ,ぶーたん,旗 -🇧🇻️ こっき,はた,ふらぐ,ふらっぐ,ぶーべとう,ぶーべ島,旗 -🇧🇼️ こっき,はた,ふらぐ,ふらっぐ,ぼつわな,旗 -🇧🇾️ こっき,はた,ふらぐ,ふらっぐ,べらるーし,旗 -🇧🇿️ こっき,はた,ふらぐ,ふらっぐ,べりーず,旗 -🇨🇦️ かなだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇨️ きーりんぐしょとう,ここす(きーりんぐ)しょとう,ここす(きーりんぐ)諸島,ここすしょとう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇩️ きんしゃさ,こっき,こんごみんしゅきょうわこく,こんごみんしゅきょうわこく(きんしゃさ),こんご民主共和国(きんしゃさ),はた,ふらぐ,ふらっぐ,旗 -🇨🇫️ こっき,ちゅうおうあふりかきょうわこく,はた,ふらぐ,ふらっぐ,中央あふりか共和国,旗 -🇨🇬️ こっき,こんごきょうわこく,こんごきょうわこく(ぶらざびる),こんご共和国(ぶらざびる),はた,ふらぐ,ふらっぐ,ぶらざびる,旗 -🇨🇭️ こっき,すいす,はた,ふらぐ,ふらっぐ,旗 -🇨🇮️ こっき,こーとじぼわーる,はた,ふらぐ,ふらっぐ,旗 -🇨🇰️ くっくしょとう,くっく諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇱️ こっき,ちり,はた,ふらぐ,ふらっぐ,旗 -🇨🇲️ かめるーん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇳️ こっき,ちゅうごく,はた,ふらぐ,ふらっぐ,中国,旗 -🇨🇴️ こっき,ころんびあ,はた,ふらぐ,ふらっぐ,旗 -🇨🇵️ くりっぱーとんとう,くりっぱーとん島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇷️ こすたりか,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇺️ きゅーば,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇻️ かーぼべるで,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇼️ きゅらそー,きゅらそーとう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇽️ くりすますとう,くりすます島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇾️ きぷろす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇿️ こっき,ちぇこ,はた,ふらぐ,ふらっぐ,旗 -🇩🇪️ こっき,どいつ,はた,ふらぐ,ふらっぐ,旗 -🇩🇬️ こっき,でぃえごがるしあとう,でぃえごがるしあ島,はた,ふらぐ,ふらっぐ,旗 -🇩🇯️ こっき,じぶち,はた,ふらぐ,ふらっぐ,旗 -🇩🇰️ こっき,でんまーく,はた,ふらぐ,ふらっぐ,旗 -🇩🇲️ こっき,どみにかこく,どみにか国,はた,ふらぐ,ふらっぐ,旗 -🇩🇴️ こっき,どみにかきょうわこく,どみにか共和国,はた,ふらぐ,ふらっぐ,旗 -🇩🇿️ あるじぇりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇦️ こっき,せうたとめりりゃ,せうた・めりりゃ,はた,ふらぐ,ふらっぐ,旗 -🇪🇨️ えくあどる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇪️ えすとにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇬️ えじぷと,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇭️ こっき,にしさはら,はた,ふらぐ,ふらっぐ,旗,西さはら -🇪🇷️ えりとりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇸️ こっき,すぺいん,はた,ふらぐ,ふらっぐ,旗 -🇪🇹️ えちおぴあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇺️ eu,いーゆー,おうしゅうれんごう,こっき,はた,ふらぐ,ふらっぐ,旗,欧州連合 -🇫🇮️ こっき,はた,ふぃんらんど,ふらぐ,ふらっぐ,旗 -🇫🇯️ こっき,はた,ふぃじー,ふらぐ,ふらっぐ,旗 -🇫🇰️ こっき,はた,ふぉーくらんどしょとう,ふぉーくらんど諸島,ふらぐ,ふらっぐ,旗 -🇫🇲️ こっき,はた,ふらぐ,ふらっぐ,みくろねしあ,みくろねしあれんぽう,みくろねしあ連邦,旗 -🇫🇴️ こっき,はた,ふぇろーしょとう,ふぇろー諸島,ふらぐ,ふらっぐ,旗 -🇫🇷️ こっき,はた,ふらぐ,ふらっぐ,ふらんす,旗 -🇬🇦️ がぼん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇧️ いぎりす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇩️ ぐれなだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇪️ こっき,じょーじあ,はた,ふらぐ,ふらっぐ,旗 -🇬🇫️ こっき,はた,ふつりょうぎあな,ふらぐ,ふらっぐ,ふらんすりょうぎあな,仏領ぎあな,旗 -🇬🇬️ がーんじー,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇭️ がーな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇮️ こっき,じぶらるたる,はた,ふらぐ,ふらっぐ,旗 -🇬🇱️ ぐりーんらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇲️ がんびあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇳️ ぎにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇵️ ぐあどるーぷ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇶️ こっき,せきどうぎにあ,はた,ふらぐ,ふらっぐ,旗,赤道ぎにあ -🇬🇷️ ぎりしゃ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇸️ こっき,さうすじょーじあ・さうすさんどうぃっちしょとう,さうすじょーじあ・さうすさんどうぃっち諸島,はた,ふらぐ,ふらっぐ,旗 -🇬🇹️ ぐあてまら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇺️ ぐあむ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇼️ ぎにあびさう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇾️ がいあな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇭🇰️ こっき,ちゅうかじんみんきょうわこくほんこんとくべつぎょうせいく,はた,ふらぐ,ふらっぐ,ほんこん,中華人民共和国香港特別行政区,旗 -🇭🇲️ こっき,はた,はーどとう,はーどとうとまくどなるどしょとう,はーどとう・まくどなるどしょとう,はーど島・まくどなるど諸島,ふらぐ,ふらっぐ,まくどなるどしょとう,旗 -🇭🇳️ こっき,はた,ふらぐ,ふらっぐ,ほんじゅらす,旗 -🇭🇷️ くろあちあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇭🇹️ こっき,はいち,はた,ふらぐ,ふらっぐ,旗 -🇭🇺️ こっき,はた,はんがりー,ふらぐ,ふらっぐ,旗 -🇮🇨️ かなりあしょとう,かなりあ諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇩️ いんどねしあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇪️ あいるらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇱️ いすらえる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇲️ こっき,はた,ふらぐ,ふらっぐ,まんとう,まん島,旗 -🇮🇳️ いんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇴️ いぎりすりょういんどようちいき,えいりょういんどようちいき,こっき,はた,ふらぐ,ふらっぐ,旗,英領いんど洋地域 -🇮🇶️ いらく,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇷️ いらん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇸️ あいすらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇹️ いたりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇯🇪️ こっき,じゃーじー,はた,ふらぐ,ふらっぐ,旗 -🇯🇲️ こっき,じゃまいか,はた,ふらぐ,ふらっぐ,旗 -🇯🇴️ こっき,はた,ふらぐ,ふらっぐ,よるだん,旗 -🇯🇵️ こっき,しゅくじつ,にっぽん,にほん,はた,ひのまる,ふらぐ,ふらっぐ,旗,日本 -🇰🇪️ けにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇬️ きるぎす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇭️ かんぼじあ,こっき,ころんびあ,はた,ふらぐ,ふらっぐ,旗 -🇰🇮️ きりばす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇲️ こっき,こもろ,はた,ふらぐ,ふらっぐ,旗 -🇰🇳️ こっき,せんとくりすとふぁーねーゔぃす,せんとくりすとふぁー・ねーゔぃす,はた,ふらぐ,ふらっぐ,旗 -🇰🇵️ きたちょうせん,こっき,はた,ふらぐ,ふらっぐ,北朝鮮,旗 -🇰🇷️ かんこく,こっき,はた,ふらぐ,ふらっぐ,旗,韓国 -🇰🇼️ くうぇーと,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇾️ けいまんしょとう,けいまん諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇿️ かざふすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇱🇦️ こっき,はた,ふらぐ,ふらっぐ,らおす,旗 -🇱🇧️ こっき,はた,ふらぐ,ふらっぐ,ればのん,旗 -🇱🇨️ こっき,せんとるしあ,はた,ふらぐ,ふらっぐ,旗 -🇱🇮️ こっき,はた,ふらぐ,ふらっぐ,りひてんしゅたいん,旗 -🇱🇰️ こっき,すりらんか,はた,ふらぐ,ふらっぐ,旗 -🇱🇷️ こっき,はた,ふらぐ,ふらっぐ,りべりあ,旗 -🇱🇸️ こっき,はた,ふらぐ,ふらっぐ,れそと,旗 -🇱🇹️ こっき,はた,ふらぐ,ふらっぐ,りとあにあ,旗 -🇱🇺️ こっき,はた,ふらぐ,ふらっぐ,るくせんぶるく,るくせんぶるぐ,旗 -🇱🇻️ こっき,はた,ふらぐ,ふらっぐ,らとびあ,旗 -🇱🇾️ こっき,はた,ふらぐ,ふらっぐ,りびあ,旗 -🇲🇦️ こっき,はた,ふらぐ,ふらっぐ,もろっこ,旗 -🇲🇨️ こっき,はた,ふらぐ,ふらっぐ,もなこ,旗 -🇲🇩️ こっき,はた,ふらぐ,ふらっぐ,もるどば,旗 -🇲🇪️ こっき,はた,ふらぐ,ふらっぐ,もんてねぐろ,旗 -🇲🇫️ こっき,さんまるたん,さん・まるたん,はた,ふらぐ,ふらっぐ,旗 -🇲🇬️ こっき,はた,ふらぐ,ふらっぐ,まだがすかる,旗 -🇲🇭️ こっき,はた,ふらぐ,ふらっぐ,まーしゃるしょとう,まーしゃる諸島,旗 -🇲🇰️ きたまけどにあ,こっき,はた,ふらぐ,ふらっぐ,まけどにあ,北まけどにあ,旗 -🇲🇱️ こっき,はた,ふらぐ,ふらっぐ,まり,旗 -🇲🇲️ こっき,はた,びるま,ふらぐ,ふらっぐ,みゃんまー,みゃんまー (びるま),旗 -🇲🇳️ こっき,はた,ふらぐ,ふらっぐ,もんごる,旗 -🇲🇴️ こっき,ちゅうかじんみんきょうわこくまかおとくべつぎょうせいく,はた,ふらぐ,ふらっぐ,まかお,中華人民共和国まかお特別行政区,旗 -🇲🇵️ きたまりあなしょとう,こっき,はた,ふらぐ,ふらっぐ,北まりあな諸島,旗 -🇲🇶️ こっき,はた,ふらぐ,ふらっぐ,まるてぃにーく,旗 -🇲🇷️ こっき,はた,ふらぐ,ふらっぐ,もーりたにあ,旗 -🇲🇸️ こっき,はた,ふらぐ,ふらっぐ,もんとせらと,旗 -🇲🇹️ こっき,はた,ふらぐ,ふらっぐ,まるた,旗 -🇲🇺️ こっき,はた,ふらぐ,ふらっぐ,もーりしゃす,旗 -🇲🇻️ こっき,はた,ふらぐ,ふらっぐ,もるでぃぶ,旗 -🇲🇼️ こっき,はた,ふらぐ,ふらっぐ,まらうぃ,まらうい,旗 -🇲🇽️ こっき,はた,ふらぐ,ふらっぐ,めきしこ,旗 -🇲🇾️ こっき,はた,ふらぐ,ふらっぐ,まれーしあ,旗 -🇲🇿️ こっき,はた,ふらぐ,ふらっぐ,もざんびーく,旗 -🇳🇦️ こっき,なみびあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇨️ こっき,にゅーかれどにあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇪️ こっき,にじぇーる,はた,ふらぐ,ふらっぐ,旗 -🇳🇫️ こっき,のーふぉーくとう,のーふぉーく島,はた,ふらぐ,ふらっぐ,旗 -🇳🇬️ こっき,ないじぇりあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇮️ こっき,にからぐあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇱️ おらんだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇳🇴️ こっき,のるうぇー,はた,ふらぐ,ふらっぐ,旗 -🇳🇵️ こっき,ねぱーる,はた,ふらぐ,ふらっぐ,旗 -🇳🇷️ こっき,なうる,はた,ふらぐ,ふらっぐ,旗 -🇳🇺️ こっき,にうえ,はた,ふらぐ,ふらっぐ,旗 -🇳🇿️ こっき,にゅーじーらんど,はた,ふらぐ,ふらっぐ,旗 -🇴🇲️ おまーん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇵🇦️ こっき,はた,ぱなま,ふらぐ,ふらっぐ,旗 -🇵🇪️ こっき,はた,ふらぐ,ふらっぐ,ぺるー,旗 -🇵🇫️ こっき,はた,ふつりょうぽりねしあ,ふらぐ,ふらっぐ,ふらんすりょうぽりねしあ,仏領ぽりねしあ,旗 -🇵🇬️ こっき,はた,ぱぷあにゅーぎにあ,ふらぐ,ふらっぐ,旗 -🇵🇭️ こっき,はた,ふぃりぴん,ふらぐ,ふらっぐ,旗 -🇵🇰️ こっき,はた,ぱきすたん,ふらぐ,ふらっぐ,旗 -🇵🇱️ こっき,はた,ふらぐ,ふらっぐ,ぽーらんど,旗 -🇵🇲️ こっき,さんぴえーるしま・みくろんとう,さんぴえーるとう,さんぴえーるとう・みくろんとう,さんぴえーる島・みくろん島,はた,ふらぐ,ふらっぐ,みくろんとう,旗 -🇵🇳️ こっき,はた,ぴとけあんしょとう,ぴとけあん諸島,ふらぐ,ふらっぐ,旗 -🇵🇷️ こっき,はた,ふらぐ,ふらっぐ,ぷえるとりこ,旗 -🇵🇸️ こっき,はた,ぱれすちなじちく,ぱれすちな自治区,ふらぐ,ふらっぐ,旗 -🇵🇹️ こっき,はた,ふらぐ,ふらっぐ,ぽるとがる,旗 -🇵🇼️ こっき,はた,ぱらお,ふらぐ,ふらっぐ,旗 -🇵🇾️ こっき,はた,ぱらぐあい,ふらぐ,ふらっぐ,旗 -🇶🇦️ かたーる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇷🇪️ こっき,はた,ふらぐ,ふらっぐ,れゆにおん,旗 -🇷🇴️ こっき,はた,ふらぐ,ふらっぐ,るーまにあ,旗 -🇷🇸️ こっき,せるびあ,はた,ふらぐ,ふらっぐ,旗 -🇷🇺️ こっき,はた,ふらぐ,ふらっぐ,ろしあ,旗 -🇷🇼️ こっき,はた,ふらぐ,ふらっぐ,るわんだ,旗 -🇸🇦️ こっき,さうじあらびあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇧️ こっき,そろもんしょとう,そろもん諸島,はた,ふらぐ,ふらっぐ,旗 -🇸🇨️ こっき,せーしぇる,はた,ふらぐ,ふらっぐ,旗 -🇸🇩️ こっき,すーだん,はた,ふらぐ,ふらっぐ,旗 -🇸🇪️ こっき,すうぇーでん,はた,ふらぐ,ふらっぐ,旗 -🇸🇬️ こっき,しんがぽーる,はた,ふらぐ,ふらっぐ,旗 -🇸🇭️ こっき,せんとへれな,はた,ふらぐ,ふらっぐ,旗 -🇸🇮️ こっき,すろべにあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇯️ こっき,すばーるばるしょとう,すばーるばるしょとう・やんまいえんとう,すばーるばる諸島・やんまいえん島,すゔぁーるばるしょとうおよびやんまいえんとう,はた,ふらぐ,ふらっぐ,やんまいえんとう,旗 -🇸🇰️ こっき,すろばきあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇱️ こっき,しえられおね,はた,ふらぐ,ふらっぐ,旗 -🇸🇲️ こっき,さんまりの,はた,ふらぐ,ふらっぐ,旗 -🇸🇳️ こっき,せねがる,はた,ふらぐ,ふらっぐ,旗 -🇸🇴️ こっき,そまりあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇷️ こっき,すりなむ,はた,ふらぐ,ふらっぐ,旗 -🇸🇸️ こっき,はた,ふらぐ,ふらっぐ,みなみすーだん,南すーだん,旗 -🇸🇹️ こっき,さんとめぷりんしぺ,さんとめ・ぷりんしぺ,はた,ふらぐ,ふらっぐ,旗 -🇸🇻️ えるさるばどる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇸🇽️ こっき,しんとまーるてん,しんと・まーるてん,はた,ふらぐ,ふらっぐ,旗 -🇸🇾️ こっき,しりあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇿️ えすわてぃに,こっき,すわじらんど,はた,ふらぐ,ふらっぐ,旗 -🇹🇦️ こっき,とりすたんだくーにゃ,とりすたん・だ・くーにゃ,はた,ふらぐ,ふらっぐ,旗 -🇹🇨️ こっき,たーくすかいこすしょとう,たーくす・かいこす諸島,はた,ふらぐ,ふらっぐ,旗 -🇹🇩️ こっき,ちゃど,はた,ふらぐ,ふらっぐ,旗 -🇹🇫️ こっき,はた,ふつりょうきょくなんしょとう,ふらぐ,ふらっぐ,仏領極南諸島,旗 -🇹🇬️ こっき,とーご,はた,ふらぐ,ふらっぐ,旗 -🇹🇭️ こっき,たい,はた,ふらぐ,ふらっぐ,旗 -🇹🇯️ こっき,たじきすたん,はた,ふらぐ,ふらっぐ,旗 -🇹🇰️ こっき,とけらう,はた,ふらぐ,ふらっぐ,旗 -🇹🇱️ こっき,はた,ひがしてぃもーる,ふらぐ,ふらっぐ,旗,東てぃもーる -🇹🇲️ こっき,とるくめにすたん,はた,ふらぐ,ふらっぐ,旗 -🇹🇳️ こっき,ちゅにじあ,はた,ふらぐ,ふらっぐ,旗 -🇹🇴️ こっき,とんが,はた,ふらぐ,ふらっぐ,旗 -🇹🇷️ こっき,とるこ,はた,ふらぐ,ふらっぐ,旗 -🇹🇹️ こっき,とりにだーどとばご,とりにだーど・とばご,はた,ふらぐ,ふらっぐ,旗 -🇹🇻️ こっき,つばる,はた,ふらぐ,ふらっぐ,旗 -🇹🇼️ こっき,たいわん,はた,ふらぐ,ふらっぐ,台湾,旗 -🇹🇿️ こっき,たんざにあ,はた,ふらぐ,ふらっぐ,旗 -🇺🇦️ うくらいな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇬️ うがんだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇲️ がっしゅうこくりょうゆうしょうりとう,こっき,はた,ふらぐ,ふらっぐ,合衆国領有小離島,旗 -🇺🇳️ こくさいれんごう,こくれん,こっき,はた,ふらぐ,ふらっぐ,国際連合,旗 -🇺🇸️ あめりか,あめりかがっしゅうこく,あめりか合衆国,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇾️ うるぐあい,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇿️ うずべきすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇻🇦️ こっき,はた,ばちかん,ばちかんしこく,ばちかん市国,ふらぐ,ふらっぐ,旗 -🇻🇨️ こっき,せんとびんせんとおよびぐれなでぃーんしょとう,せんとびんせんと及びぐれなでぃーん諸島,はた,ふらぐ,ふらっぐ,旗 -🇻🇪️ こっき,はた,ふらぐ,ふらっぐ,べねずえら,旗 -🇻🇬️ いぎりすりょうゔぁーじんしょとう,えいりょうゔぁーじんしょとう,こっき,はた,ふらぐ,ふらっぐ,旗,英領ゔぁーじん諸島 -🇻🇮️ あめりかりょうゔぁーじんしょとう,こっき,はた,ふらぐ,ふらっぐ,べいりょうゔぁーじんしょとう,旗,米領ゔぁーじん諸島 -🇻🇳️ こっき,はた,ふらぐ,ふらっぐ,べとなむ,旗 -🇻🇺️ こっき,はた,ばぬあつ,ふらぐ,ふらっぐ,旗 -🇼🇫️ うぉりすふつな,うぉりす・ふつな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇼🇸️ こっき,さもあ,はた,ふらぐ,ふらっぐ,旗 -🇽🇰️ こそぼ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇾🇪️ いえめん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇾🇹️ こっき,はた,ふらぐ,ふらっぐ,まよっと,旗 -🇿🇦️ こっき,はた,ふらぐ,ふらっぐ,みなみあふりか,南あふりか,旗 -🇿🇲️ こっき,ざんびあ,はた,ふらぐ,ふらっぐ,旗 -🇿🇼️ こっき,じんばぶえ,はた,ふらぐ,ふらっぐ,旗 -🏴󠁧󠁢󠁥󠁮󠁧󠁿️ いんぐらんど,はた,旗 -🏴󠁧󠁢󠁳󠁣󠁴󠁿️ すこっとらんど,はた,旗 -🏴󠁧󠁢󠁷󠁬󠁳󠁿️ うぇーるず,はた,旗 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E15.1.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E15.1.txt deleted file mode 100644 index dcde399..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_all_E15.1.txt +++ /dev/null @@ -1,1914 +0,0 @@ -😀️ えがお,かお,すまいる,にっこり,にっこりわらう,にっこり笑う,わらう,笑う,笑顔,顔 -😃️ えがお,かお,すまいる,わーい,笑顔,顔 -😄️ えがお,かお,すまいる,わーい,笑顔,顔 -😁️ えがお,かお,すまいる,にやっとわらう,にやっと笑う,わらい,わらう,笑う,笑顔,顔 -😆️ うれしい,えがお,かお,きゃー,すまいる,まんぞく,嬉しい,満足,笑顔,顔 -😅️ あせ,えがお,かお,すまいる,ひやあせ,ひやあせえがお,わーい,冷や汗,冷や汗笑顔,笑顔,顔 -🤣️ えがお,かお,すまいる,わらいころげる,わらう,笑い転げる,笑う,笑顔,顔 -😂️ うれしなき,えがお,かお,すまいる,なみだ,わらい,わらう,嬉し泣き,涙,笑う,笑顔,顔 -🙂️ えがお,かお,すまいる,ほほえみ,ほほえむ,微笑み,微笑む,笑顔,顔 -🙃️ かお,さかさま,さかさまのかお,さかさまの顔,顔 -🫠️ えきたい,かお,とけそう,とけているかお,とける,とろける,とろとろ,ようかい,液体,溶けそう,溶けている顔,溶ける,顔 -😉️ うぃんく,ういんく,かお,顔 -😊️ えがお,かお,すまいる,にこにこ,ほおをあからめる,ほほえみ,ほほをあからめる,めをほそめる,微笑み,目を細める,頬を赤らめる,顔 -😇️ えがお,かお,すまいる,てんし,てんしのわ,てんしのわがついたえがお,天使,天使の輪,天使の輪がついた笑顔,笑顔,顔 -🥰️ えがお,かお,はーとのえがお,はーとの笑顔,むちゅう,めろめろ,らぶ,夢中,笑顔,顔 -😍️ えがお,かお,すまいる,はーと,めがはーとのえがお,らぶ,目がはーとの笑顔,笑顔,顔 -🤩️ えがお,かお,すまいる,ほし,めがほしのえがお,星,目が星の笑顔,笑顔,顔 -😘️ かお,きす,ちゅっ,なげきっす,はーと,投げきっす,顔 -😗️ かお,きす,ちゅっ,顔 -☺️️ えがお,かお,すまいりー,すまいる,ほっ -😚️ かお,きす,ちゅっ,めをとじる,目を閉じる,顔 -😙️ えがお,かお,きす,すまいる,ちゅっ,にっこりきす,笑顔,顔 -🥲️ うれしなみだのかお,かお,かんどう,じーん,なく,なみだ,嬉し涙の顔,感動,泣く,涙,顔 -😋️ うまい,えがお,おいしい,かお,すまいる,にこにこ,にこにこぺろり,笑顔,顔 -😛️ かお,した,したをだしたかお,べろ,べー,舌,舌を出した顔,顔 -😜️ あっかんべー,かお,した,じょうだん,じょーく,べー,冗談,舌,顔 -🤪️ おかしい,かお,じょーく,ふざけ,ふざけたかお,ふざけた顔,顔 -😝️ かお,した,べろ,べー,めをとじてべー,わーい,目を閉じてべー,舌,顔 -🤑️ おかねのかお,お金の顔,かお,した,べろ,べー,舌,顔 -🤗️ えがお,かお,すまいる,はぐ,笑顔,顔 -🤭️ えがお,かお,くすくす,くちにてをあてたかお,すまいる,ないしょ,内緒,口に手を当てた顔,笑顔,顔 -🫢️ いわない,えっ,おそれ,おどろき,おののき,かお,ひみつ,びっくり,めをあけてくちにてをあてたかお,目を開けて口に手を当てた顔,顔,驚き -🫣️ かお,きになる,こわいものみたさ,こわごわ,ぬすみみ,のぞきみ,のぞき見,はずかしい,ゆびのまからのぞきみるかお,指の間からのぞき見る顔,盗み見,顔 -🤫️ かお,しずかに,しっ,しー,しーっ,だまれ,静かに,顔 -🤔️ うーん,かお,かんがえちゅう,かんがえる,かんがえるかお,考える,考える顔,考え中,顔 -🫡️ いえっさー,おーけー,かお,ぐんたい,けいれい,けいれいするかお,しょうち,りょうかい,わかった,了解,敬礼,敬礼する顔,軍隊,顔 -🤐️ かお,くち,くちちゃっく,ちゃっく,口,口ちゃっく,顔 -🤨️ うたがい,おどろき,かお,まゆをあげたかお,疑い,眉を上げた顔,顔,驚き -😐️ かお,ぽーかーふぇいす,むひょうじょう -😑️ かお,むかんじょう,むひょうじょう,無感情,無表情,顔 -😶️ かお,くちなし,くちのないかお,だんまり,ちんもく,口なし,口のない顔,沈黙,顔 -🫥️ うちき,かお,てんせんのかお,ないこうてき,むむむ,ゆううつ,らくたん,内向的,内気,憂鬱,点線の顔,落胆,顔 -😶‍🌫️️ うわのそら,かお,くも,くものなか,くものなかのかお,こっそり,ほうしんじょうたい,ぼんやり,むちゅう -😏️ うすわらいをするかお,かお,にやり,ふっ,薄笑いをする顔,顔 -😒️ かお,しらけ,しらけた,しらける,じとめ,じと目,顔 -🙄️ うえをみるかお,うわめ,かお,上を見る顔,上目,顔 -😬️ いー,かお,しかめがお,しかめっつら,しかめっ面,しかめつら,しかめ面,しかめ顔,顔 -😮‍💨️ あきらめ,あんしん,いきをはくかお,かお,こきゅう,ためいき,ため息,はぁ,ひとあんしん,ほっとした,安心,息を吐く顔,顔 -🤥️ うそつき,うそつきのかお,うそつきの顔,かお,ぴのきおのかお,ぴのきおの顔,嘘つき,顔 -🫨️ かお,こわい,しょっく,しんどう,じしん,びくびく,ふるえている,ふるえているかお,ふるえるかお,ぶるぶる,地震,振動,震えている,震えている顔,顔 -🙂‍↔️️ no,いいえ,いや,いやだ,ううん,かお,くびをふる,くびをよこにふる,のー,ふさんせい,嫌,嫌だ -🙂‍↕️️ いいよ,うなずく,うん,うんうん,かお,くびをたてにふる,くびをふる,はい,りょうかい,わかる,了解,分かる -😌️ あんしん,かお,ほっ,ほっとしたかお,ほっとした顔,安心,顔 -😔️ かお,しょぼーん,しょんぼり,顔 -😪️ かお,ねむい,ねむる,ねる,寝る,眠い,眠る,顔 -🤤️ かお,よだれ,よだれをたらしたかお,よだれを垂らした顔,顔 -😴️ zzz,かお,ねむい,ねむる,ねる,寝る,眠い,眠る,顔 -😷️ かお,かぜ,かふんしょう,びょうき,ますく,ますくがお,ますく顔,病気,花粉症,顔,風邪 -🤒️ かお,かぜ,たいおんけい,ねつがあるかお,ねつをはかる,びょうき,体温計,熱がある顔,熱を測る,病気,顔,風邪 -🤕️ かお,けが,けがしてるかお,けがしてる顔,ほうたい,ほうたいをまいたかお,包帯,包帯を巻いた顔,顔 -🤢️ かお,きもちわるい,ぐあいのわるいかお,はきけをもよおしているかお,びょうき,具合の悪い顔,吐き気を催している顔,気持ち悪い,病気,顔 -🤮️ おうとするかお,かお,きもちわるい,げろ,びょうき,嘔吐する顔,気持ち悪い,病気,顔 -🤧️ かお,かぜ,かふんしょう,くしゃみ,くしゃみするかお,くしゃみする顔,花粉症,顔,風邪 -🥵️ あかいかお,あせ,あついかお,あつさ,ねっちゅうしょう,はつねつ,暑い顔,暑さ,汗,熱中症,発熱,赤い顔 -🥶️ あおいかお,こごえ,さむいかお,さむさ,しもやけ,つらら,凍え,寒い顔,寒さ,青い顔 -🥴️ うつろなめ,うつろな目,ちゅうどく,ふらふらのかお,ふらふらの顔,べろんべろん,ほろよい,ほろ酔い,めまい,中毒 -😵️ かお,ふらふら,めまい,顔 -😵‍💫️ うずまき,かお,ぐるぐる,こまる,こんらん,ふらふら,めがぐるぐる,めがまわる,めまい,めをまわしたかお,渦巻き,目がぐるぐる,目が回る,目を回した顔 -🤯️ あたまばくはつ,おどろき,かお,しょっく,ばくはつ,ぼんっ,爆発,頭爆発,顔,驚き -🤠️ かうがーる,かうぼーい,かうぼーいのかお,かうぼーいの顔,かお,顔 -🥳️ おいわい,お祝い,ぱーてぃー,ぱーてぃーのかお,ぱーてぃーの顔,ふえ,ぼうし,帽子,笛 -🥸️ かお,かそう,ひげ,へんそう,へんそうしたかお,めがね,仮装,変装,変装した顔,顔 -😎️ えがお,かお,くーる,さんぐらすでえがお,さんぐらすで笑顔,すまいる,笑顔,顔 -🤓️ おたく,かお,まにあ,めがね,顔 -🧐️ かお,かためがね,かんがえる,めがね,ものくるをつけたかお,ものくるを付けた顔,片眼鏡,考える,顔 -😕️ かお,こんらん,こんわく,困惑,混乱,顔 -🫤️ かお,がっかり,くちがななめのかお,こんわく,ふふく,ふまん,むかんしん,むきりょく,口が斜めの顔,困惑,無気力,無関心,顔 -😟️ かお,しんぱい,なやむかお,心配,悩む顔,顔 -🙁️ かお,こまった,しかめっつら,しかめつら,しかめ面,すこしこまった,すこしこまったかお,困った,少し困った,少し困った顔,顔 -☹️️ かお,こまった,こまったかお,しかめっつら,しかめつら -😮️ かお,きょうかん,くちがひらいたかお,へー,共感,口が開いた顔,顔 -😯️ おどろき,かお,びっくり,びっくりがお,びっくり顔,ぽかーん,顔,驚き -😲️ おどろき,かお,きょうがく,びっくり,びっくりしたかお,びっくりした顔,顔,驚き,驚愕 -😳️ あかくなる,かお,せきめん,赤くなる,赤面,顔 -🥺️ うったえるようなかお,かお,こいぬのめ,こんがん,なさけ,ぴえん,子犬の目,情け,懇願,訴えるような顔,顔 -🥹️ ありがとう,うるうる,うれしい,うれしなみだ,かお,こんがん,なきがお,なみだ,なみだをこらえたかお,懇願,泣き顔,涙,涙をこらえた顔,顔 -😦️ あきれがお,あきれ顔,かお,しかめがお,しかめっつら,しかめつら,しかめ面,しかめ顔,ふほんい,ふまん,不本意,不満,顔 -😧️ かお,くのう,くもん,苦悩,苦悶,顔 -😨️ あおざめ,かお,がーん,青ざめ,顔 -😰️ あおざめ,かお,ひやあせ,ひやあせあおざめ,冷や汗,冷や汗青ざめ,青ざめ,顔 -😥️ あせ,かお,こまった,どうしよう,困った,汗,顔 -😢️ かお,かなしい,なきがお,なく,なみだ,悲しい,泣き顔,泣く,涙,顔 -😭️ おおなき,かお,かなしい,ごうきゅう,なく,なみだ,号泣,大泣き,悲しい,泣く,涙,顔 -😱️ かお,がーん,きょうふ,さけび,しょっく,叫び,恐怖,顔 -😖️ かお,こんらん,こんわく,こんわくしたかお,困惑,困惑した顔,混乱,顔 -😣️ かお,がまん,我慢,顔 -😞️ かお,がっかり,がっくり,しつぼうしたかお,失望した顔,顔 -😓️ あせ,かお,きもをひやした,ひやあせ,冷や汗,肝を冷やした,顔 -😩️ あきらめ,かお,つかれ,疲れ,顔 -😫️ かお,げんかい,つかれ,つかれた,疲れ,疲れた,限界,顔 -🥱️ あくびしたかお,あくびした顔,かお,たいくつ,つかれ,ねむい,ふあー,ふあ~,疲れ,眠い,退屈,顔 -😤️ かお,かちほこったかお,とくいげ,はないき,ふんっ,勝ち誇った顔,得意気,顔,鼻息 -😡️ いかり,かお,かんかん,げきど,ふくれっつら,ふくれっ面,ぷんぷん,怒り,激怒,顔 -😠️ いかり,かお,ぷんぷん,怒り,顔 -🤬️ いかり,かお,ののしり,ののしる,怒り,顔 -😈️ あくま,えがお,かお,すまいる,でびる,わらったあくま,悪魔,笑った悪魔,笑顔,顔 -👿️ あくま,おこったあくま,かお,かんかん,げきど,でびる,怒った悪魔,悪魔,激怒,顔 -💀️ かお,がいこつ,し,すかる,どくろ,死,顔,骸骨 -☠️️ かお,がいこつ,すかる,どくろ,どくろとほね -💩️ うんこ,うんち,かお,顔 -🤡️ かお,ぴえろ,ぴえろのかお,ぴえろの顔,顔 -👹️ おに,おめん,お面,かお,なまはげ,ばけもの,化け物,鬼 -👺️ おめん,お面,かお,てんぐ,天狗 -👻️ おばけ,お化け,ごーすと,ゆうれい,ゆーれい,幽霊 -👽️ いせいじん,うちゅうじん,えいりあん,かお,ぐれい,ゆーふぉー,宇宙人,ufo -👾️ いせいじん,いんべーだー,うちゅうじん,えいりあん,かお,もんすたー,宇宙人,異星人 -🤖️ かお,ろぼっと,顔 -😺️ えがお,かお,すまいる,にっこりわらうねこ,にっこり笑う猫,ねこ,猫,笑顔,顔 -😸️ えがお,かお,すまいる,にやっとわらうねこ,にやっと笑う猫,ねこ,わらう,猫,笑う,笑顔,顔 -😹️ うれしなきするねこ,えがお,かお,すまいる,なみだ,ねこ,嬉し泣きする猫,涙,猫,笑顔,顔 -😻️ えがお,かお,すまいる,ねこ,はーと,めがはーとのねこ,猫,目がはーとの猫,笑顔,顔 -😼️ かお,にやり,にやりとするねこ,にやりとする猫,ねこ,ふっ,猫,顔 -😽️ かお,きす,ちゅっ,ねこ,ねこのきす,猫,猫のきす,顔 -🙀️ かお,がーん,しょっく,ぜつぼうするねこ,ねこ,びっくり,猫,絶望する猫,顔 -😿️ かお,かなしい,ないているねこ,なみだ,ねこ,悲しい,泣いている猫,涙,猫,顔 -😾️ かお,ねこ,ふきげん,ふきげんなねこ,ぷんぷん,不機嫌,不機嫌な猫,猫,顔 -🙈️ さる,さんざる,みざる,三猿,猿,見ざる -🙉️ きかざる,さる,さんざる,三猿,猿,聞かざる -🙊️ いわざる,さる,さんざる,三猿,猿,言わざる -💌️ こいぶみ,てがみ,はーと,ふうとう,らぶれたー,封筒,恋文,手紙 -💘️ きゅーぴっど,はーと,はーとにや,はーとに矢,はーとのや,や,矢 -💝️ はーと,はーとにりぼん,ばれんたいん,ばれんたいんでー,りぼん -💖️ きらきら,きらきらはーと,はーと,ぴかぴかはーと -💗️ おおきくなるはーと,ときめき,どきどき,はーと,大きくなるはーと -💓️ どきどき,どきどきするはーと,はーと -💞️ かいてんするはーと,かわいい,はーと,回転するはーと -💕️ 2つのはーと,はーと,ふたつのはーと,らぶ -💟️ はーと,はーとでこ,はーとでこれーしょん -❣️️ えくすくらめーしょんまーく,はーと,はーとのびっくり,びっくりまーく -💔️ しつれん,はーと,はーとぶれいく,わかれた,われたはーと,別れた,割れたはーと,失恋 -❤️‍🔥️ あい,せいなるしんぞう,ねつい,はーと,ひのついた,ふんき,ほのお,もえるはーと,やるき -❤️‍🩹️ かいふくちゅう,きずついた,けが,しょうしん,ちりょうちゅう,つらい,どうじょう,はーと,ほうたい,ほうたいをまいたはーと -❤️️ あかいはーと,くろはーと,はーと,はーとまーく -🩷️ かわいい,すき,はーと,ぴんく,ぴんくのはーと,らぶ,好き -🧡️ おれんじのはーと,はーと -💛️ きいろのはーと,はーと,黄色のはーと -💚️ はーと,みどりのはーと,緑のはーと -💙️ あおいはーと,はーと,青いはーと -🩵️ うすいあお,うすいあおのはーと,しあん,てぃーるぶるー,はーと,みずいろのはーと,薄い青,薄い青のはーと -💜️ はーと,むらさきのはーと,紫のはーと -🤎️ ちゃいろいはーと,はーと,茶色いはーと -🖤️ くろいはーと,はーと,黒いはーと -🩶️ ぎんいろ,すれーとぐれー,はいいろ,はいいろのはーと,はーと,灰色,灰色のはーと,銀色 -🤍️ しろいはーと,はーと,白いはーと -💋️ きす,きすまーく,くちびる,ちゅっ,唇 -💯️ 100,100てん,100てんまんてん,100点,100点満点,ぜんもんせいかい,ひゃくてんまんてん,まんてん,全問正解,満点,100 -💢️ #,いかり,むかっ,怒り,# -💥️ しょうげき,しょうとつ,どんっ,衝撃,衝突 -💫️ くらくら,ほし,めがまわる,星,目が回る -💦️ あせ,あせあせ,汗 -💨️ いそぐ,いそげ,だっしゅ,はしる,急ぐ,急げ,走る -🕳️️ あな -💬️ かいわ,かいわのふきだし,せりふ,ふきだし,会話,会話の吹き出し,吹き出し -👁️‍🗨️️ ふきだし,ふきだしのめ,め,もくげき -🗨️️ かいわ,せりふ,ふきだし,ふきだしひだり -🗯️️ いかりのふきだし,ふきだし -💭️ かんがえごと,くもがたのふきだし,ふきだし,もくもく,吹き出し,考え事,雲形の吹き出し -💤️ zzz,いびき,ぐーぐー,ねる,寝る,zzz -👋️ さよなら,て,てをふる,ばいばい,手,手を振る 👋🏻,👋🏼,👋🏽,👋🏾,👋🏿 -🤚️ て,てのこう,手,手の甲 🤚🏻,🤚🏼,🤚🏽,🤚🏾,🤚🏿 -🖐️️ て,ぱー,ひらいたて -✋️ きょしゅ,て,てのひら,ぱー -🖖️ すぽっく,て,ばるかんじん,ばるかんのあいさつ,ばるかんの挨拶,ばるかん人,手 🖖🏻,🖖🏼,🖖🏽,🖖🏾,🖖🏿 -🫱️ て,ほうこう,みぎ,みぎがわ,みぎにむけたて,右に向けた手,右側,手,方向 🫱🏻,🫱🏼,🫱🏽,🫱🏾,🫱🏿 -🫲️ て,ひだり,ひだりがわ,ひだりにむけたて,ほうこう,左に向けた手,左側,手,方向 🫲🏻,🫲🏼,🫲🏽,🫲🏾,🫲🏿 -🫳️ おとす,した,したがわ,したにむけたて,て,下,下に向けた手,手,落とす 🫳🏻,🫳🏼,🫳🏽,🫳🏾,🫳🏿 -🫴️ うえ,うえがわ,うえにむけたて,うける,て,上,上に向けた手,受ける,手 🫴🏻,🫴🏼,🫴🏽,🫴🏾,🫴🏿 -🫷️ おしているて,おす,ことわる,すとっぷ,て,はいたっち,ひだりむき,ひだりむきにおしているて,まて,左向き,左向きに押している手,待て,押す,断る 🫷🏻,🫷🏼,🫷🏽,🫷🏾,🫷🏿 -🫸️ おす,ことわる,すとっぷ,はいたっち,まて,みぎむき,みぎむきにおしているて,右向き,右向きに押している手,待て,押す,断る 🫸🏻,🫸🏼,🫸🏽,🫸🏾,🫸🏿 -👌️ ok,okの手,おっけー,おーけー,おーけーのて,て,手,ok 👌🏻,👌🏼,👌🏽,👌🏾,👌🏿 -🤌️ うわむきにすぼめたて,じぇすちゃー,すぼめる,て,ゆび,上向きにすぼめた手,手,指 🤌🏻,🤌🏼,🤌🏽,🤌🏾,🤌🏿 -🤏️ すこしだけ,ちょっと,つまんでいるゆび,つまんでいる指,て,ゆび,少しだけ,手,指 🤏🏻,🤏🏼,🤏🏽,🤏🏾,🤏🏿 -✌️️ ちょき,て,ぴーす,ぶいさいん -🤞️ て,ゆび,ゆびをくろす,手,指,指をくろす 🤞🏻,🤞🏼,🤞🏽,🤞🏾,🤞🏿 -🫰️ おやゆびとひとさしゆびをくろす,だいすき,て,はーと,ゆび,ゆびはーと,ゆびをくろす,手,指,指をくろす,親指と人差し指をくろす 🫰🏻,🫰🏼,🫰🏽,🫰🏾,🫰🏿 -🤟️ あいしてる,あいらぶゆー,て,愛してる,手 🤟🏻,🤟🏼,🤟🏽,🤟🏾,🤟🏿 -🤘️ きつね,つののゆびさいん,て,手,角の指さいん 🤘🏻,🤘🏼,🤘🏽,🤘🏾,🤘🏿 -🤙️ て,でんわ,でんわのあいず,でんわのじぇすちゃー,手,電話,電話のじぇすちゃー,電話の合図 🤙🏻,🤙🏼,🤙🏽,🤙🏾,🤙🏿 -👈️ て,ひだり,ひだりゆびさし,やじるし,ゆびさし,ゆびさす,左 -👉️ て,みぎ,みぎゆびさし,やじるし,ゆびさし,ゆびさす,右 -👆️ うえ,て,てのこううえゆびさし,てのこうじょうゆびさし,やじるし,ゆびさし,ゆびさす,上 -🖕️ うえ,たてたなかゆび,て,なかゆび,ゆびさし,上,中指,手,指差し,立てた中指 🖕🏻,🖕🏼,🖕🏽,🖕🏾,🖕🏿 -👇️ した,したゆびさし,て,やじるし,ゆびさし,ゆびさす,下 -☝️️ うえ,うえゆびさし,て,ひとさしゆび,ゆびさし -🫵️ m9,おまえだ,て,ひとをゆびさしているて,ぷぎゃー,ゆびさし,人を指差している手,手,指差し 🫵🏻,🫵🏼,🫵🏽,🫵🏾,🫵🏿 -👍️ ok,うえ,おっけー,おやゆび,おやゆびさいん,おーけー,ぐっど,さむあっぷ,さむずあっぷ,て -👎️ ng,えぬじー,さむずだうん,した,だめ,て,ぶーいんぐ,ぼつ,ng -✊️ ぐー,げんこつ,て -👊️ ぐー,げんこつ,て,ぱんち,手 👊🏻,👊🏼,👊🏽,👊🏾,👊🏿 -🤛️ こぶし,て,ぱんち,ひだり,ひだりむきのこぶし,左,左向きのこぶし,手 🤛🏻,🤛🏼,🤛🏽,🤛🏾,🤛🏿 -🤜️ こぶし,て,ぱんち,みぎ,みぎむきのこぶし,右,右向きのこぶし,手 🤜🏻,🤜🏼,🤜🏽,🤜🏾,🤜🏿 -👏️ て,はくしゅ,ぱちぱち,手,拍手 👏🏻,👏🏼,👏🏽,👏🏾,👏🏿 -🙌️ て,てをあげる,ばんざい,りょうて,両手,手,手を上げる 🙌🏻,🙌🏼,🙌🏽,🙌🏾,🙌🏿 -🫶️ あい,て,はーと,はーとがたのて,はーとぽーず,はーと形の手,らぶ,愛,手 🫶🏻,🫶🏼,🫶🏽,🫶🏾,🫶🏿 -👐️ おっはー,て,てのひら,りょうてのひら,両手のひら,手,手のひら 👐🏻,👐🏼,👐🏽,👐🏾,👐🏿 -🤲️ いのり,て,てのひらをそろえたりょうて,りょうて,両手,手,手のひらを揃えた両手,祈り 🤲🏻,🤲🏼,🤲🏽,🤲🏾,🤲🏿 -🤝️ あくしゅ,ごうい,て,よろしく,合意,手,握手 🤝🏻,🤝🏼,🤝🏽,🤝🏾,🤝🏿,🫱🏻‍🫲🏼,🫱🏻‍🫲🏽,🫱🏻‍🫲🏾,🫱🏻‍🫲🏿,🫱🏼‍🫲🏻,🫱🏼‍🫲🏽,🫱🏼‍🫲🏾,🫱🏼‍🫲🏿,🫱🏽‍🫲🏻,🫱🏽‍🫲🏼,🫱🏽‍🫲🏾,🫱🏽‍🫲🏿,🫱🏾‍🫲🏻,🫱🏾‍🫲🏼,🫱🏾‍🫲🏽,🫱🏾‍🫲🏿,🫱🏿‍🫲🏻,🫱🏿‍🫲🏼,🫱🏿‍🫲🏽,🫱🏿‍🫲🏾 -🙏️ いのり,いのる,おねがい,お願い,がっしょう,ごめんなさい,りょうて,合掌,祈り,祈る 🙏🏻,🙏🏼,🙏🏽,🙏🏾,🙏🏿 -✍️️ かいているて,て,てがき,てでかく -💅️ つめ,ねいる,まにきゅあ,まにきゅあをぬるて,まにきゅあを塗る手,爪 💅🏻,💅🏼,💅🏽,💅🏾,💅🏿 -🤳️ じどり,じぶんどり,すまほ,せるふぃー,自分撮り,自撮り 🤳🏻,🤳🏼,🤳🏽,🤳🏾,🤳🏿 -💪️ きんとれ,きんにく,ちからこぶ,むきむき,力こぶ,筋とれ,筋肉 💪🏻,💪🏼,💪🏽,💪🏾,💪🏿 -🦾️ あくせしびりてぃ,うで,ぎしゅ,じんこうそうぐ,て,人工装具,手,義手,腕 -🦿️ あくせしびりてぃ,あし,ぎそく,じんこうそうぐ,人工装具,義足,脚,足 -🦵️ あし,きっく,脚,足 🦵🏻,🦵🏼,🦵🏽,🦵🏾,🦵🏿 -🦶️ あし,きっく,だんす,ふみつける,足,踏みつける 🦶🏻,🦶🏼,🦶🏽,🦶🏾,🦶🏿 -👂️ かお,からだ,みみ,耳 -🦻️ あくせしびりてぃ,ちょうかく,ほちょうきをつけたみみ,みみ,耳,聴覚,補聴器を付けた耳 🦻🏻,🦻🏼,🦻🏽,🦻🏾,🦻🏿 -👃️ かお,からだ,はな,鼻 👃🏻,👃🏼,👃🏽,👃🏾,👃🏿 -🧠️ あたま,ちしき,のう,のうみそ,知識,脳,脳みそ,頭 -🫀️ こどう,しんぞう,しんぱく,ぞうき,みゃく,心拍,心臓,脈,臓器,鼓動 -🫁️ こきゅう,ぞうき,はい,呼吸,肺,臓器 -🦷️ は,はいしゃ,歯,歯医者 -🦴️ こっかく,ほね,骨,骨格 -👀️ かお,からだ,め,りょうめ,両目,目 -👁️️ かため,ひとつめ,め -👅️ かお,した,べろ,べー,舌 -👄️ かお,きす,くち,くちびる,口,唇 -🫦️ くち,くちびる,くちびるをかむ,くちびるをかんでいるくち,くやしい,くやしさ,ゆうわく,口,口惜しさ,唇を咬んでいる口,誘惑 -👶️ あかちゃん,あかんぼう,かお,べびー,赤ちゃん,赤ん坊,顔 👶🏻,👶🏼,👶🏽,👶🏾,👶🏿 -🧒️ かお,こども,子供,顔 🧒🏻,🧒🏼,🧒🏽,🧒🏾,🧒🏿 -👦️ おとこのこ,かお,こども,しょうねん,子供,少年,男の子,顔 👦🏻,👦🏼,👦🏽,👦🏾,👦🏿 -👧️ おんな,おんなのこ,かお,こども,しょうじょ,女,女の子,子供,少女,顔 👧🏻,👧🏼,👧🏽,👧🏾,👧🏿 -🧑️ おとな,かお,せいじん,大人,成人,顔 🧑🏻,🧑🏼,🧑🏽,🧑🏾,🧑🏿 -👱️ かお,きんぱつ,きんぱつのひと,ひと,ぶろんど,人,金髪,金髪の人,顔 👱🏻,👱🏼,👱🏽,👱🏾,👱🏿 -👨️ おとこ,おとな,かお,だんせい,大人,男,男性,顔 👨🏻,👨🏼,👨🏽,👨🏾,👨🏿 -🧔️ あごひげ,あごひげのだんせい,あごひげのひと,あごひげの人,かお,ひげ,ひげのはえたひと,ひと,人,顔 🧔🏻,🧔🏼,🧔🏽,🧔🏾,🧔🏿 -🧔‍♂️️ あごひげ,あごひげのだんせい,おとこ,かお,だんせい,ひげ,ひげのはえただんせい -🧔‍♀️️ あごひげ,あごひげのじょせい,おんな,かお,じょせい,ひげ,ひげのはえたじょせい -👨‍🦰️ あかげ,おとこ,おとな,かお,だんせい,大人,男,男性,男性: 赤毛,赤毛,顔 👨🏻‍🦰,👨🏼‍🦰,👨🏽‍🦰,👨🏾‍🦰,👨🏿‍🦰 -👨‍🦰️ おとこ,かお,大人,男,男性,男性: 赤毛,赤い髪,赤毛,赤髪,顔,髪 -👨‍🦱️ おとこ,おとな,かお,だんせい,まきげ,大人,巻き毛,男,男性,男性: 巻き毛,顔 👨🏻‍🦱,👨🏼‍🦱,👨🏽‍🦱,👨🏾‍🦱,👨🏿‍🦱 -👨‍🦱️ おとこ,かお,かーる,大人,巻き毛,男,男性,男性: 巻き毛,顔,髪 -👨‍🦳️ おとこ,おとな,かお,しらが,だんせい,大人,男,男性,男性: 白髪,白髪,顔 👨🏻‍🦳,👨🏼‍🦳,👨🏽‍🦳,👨🏾‍🦳,👨🏿‍🦳 -👨‍🦳️ おとこ,かお,大人,男,男性,男性: 白髪,白い髪,白髪,顔,髪 -👨‍🦲️ おとこ,おとな,かお,だんせい,はげあたま,はげ頭,大人,男,男性,男性: はげ頭,顔 👨🏻‍🦲,👨🏼‍🦲,👨🏽‍🦲,👨🏾‍🦲,👨🏿‍🦲 -👨‍🦲️ おとこ,かお,はげ,はげ頭,大人,男,男性,男性: はげ頭,脱毛,顔 -👩️ おとな,おんな,かお,じょせい,大人,女,女性,顔 👩🏻,👩🏼,👩🏽,👩🏾,👩🏿 -👩‍🦰️ あかげ,おとな,おんな,かお,じょせい,大人,女,女性,女性: 赤毛,赤毛,顔 👩🏻‍🦰,👩🏼‍🦰,👩🏽‍🦰,👩🏾‍🦰,👩🏿‍🦰 -👩‍🦰️ おんな,かお,大人,女,女性,女性: 赤毛,赤い髪,赤毛,赤髪,顔,髪 -🧑‍🦰️ あかげ,おとな,かお,せいじん,大人,大人: 赤毛,成人,赤毛,顔 🧑🏻‍🦰,🧑🏼‍🦰,🧑🏽‍🦰,🧑🏾‍🦰,🧑🏿‍🦰 -🧑‍🦰️ かお,大人,大人: 赤毛,成人,赤い髪,赤毛,赤髪,顔,髪 -👩‍🦱️ おとな,おんな,かお,じょせい,まきげ,大人,女,女性,女性: 巻き毛,巻き毛,顔 👩🏻‍🦱,👩🏼‍🦱,👩🏽‍🦱,👩🏾‍🦱,👩🏿‍🦱 -👩‍🦱️ おんな,かお,かーる,大人,女,女性,女性: 巻き毛,巻き毛,顔,髪 -🧑‍🦱️ おとな,かお,せいじん,まきげ,大人,大人: 巻き毛,巻き毛,成人,顔 🧑🏻‍🦱,🧑🏼‍🦱,🧑🏽‍🦱,🧑🏾‍🦱,🧑🏿‍🦱 -🧑‍🦱️ かお,かーる,大人,大人: 巻き毛,巻き毛,成人,顔,髪 -👩‍🦳️ おとな,おんな,かお,しらが,じょせい,大人,女,女性,女性: 白髪,白髪,顔 👩🏻‍🦳,👩🏼‍🦳,👩🏽‍🦳,👩🏾‍🦳,👩🏿‍🦳 -👩‍🦳️ おんな,かお,大人,女,女性,女性: 白髪,白い髪,白髪,顔,髪 -🧑‍🦳️ おとな,かお,しらが,せいじん,大人,大人: 白髪,成人,白髪,顔 🧑🏻‍🦳,🧑🏼‍🦳,🧑🏽‍🦳,🧑🏾‍🦳,🧑🏿‍🦳 -🧑‍🦳️ かお,大人,大人: 白髪,成人,白い髪,白髪,顔,髪 -👩‍🦲️ おとな,おんな,かお,じょせい,はげあたま,はげ頭,大人,女,女性,女性: はげ頭,顔 👩🏻‍🦲,👩🏼‍🦲,👩🏽‍🦲,👩🏾‍🦲,👩🏿‍🦲 -👩‍🦲️ おんな,かお,はげ,はげ頭,大人,女,女性,女性: はげ頭,脱毛,顔 -🧑‍🦲️ おとな,かお,せいじん,はげあたま,はげ頭,大人,大人: はげ頭,成人,顔 🧑🏻‍🦲,🧑🏼‍🦲,🧑🏽‍🦲,🧑🏾‍🦲,🧑🏿‍🦲 -🧑‍🦲️ かお,はげ,はげ頭,大人,大人: はげ頭,成人,脱毛,顔 -👱‍♀️️ おんな,きんぱつ,きんぱつのじょせい,じょせい,ぶろんど -👱‍♂️️ おとこ,きんぱつ,きんぱつのだんせい,だんせい,ぶろんど -🧓️ おとしより,お年寄り,かお,こうれいしゃ,ろうじん,老人,顔,高齢者 🧓🏻,🧓🏼,🧓🏽,🧓🏾,🧓🏿 -👴️ おじいさん,おとしより,お年寄り,かお,こうれいしゃ,だんせい,ろうじん,男性,老人,顔,高齢者 👴🏻,👴🏼,👴🏽,👴🏾,👴🏿 -👵️ おとしより,おばあさん,お年寄り,かお,こうれいしゃ,じょせい,ろうじん,女性,老人,顔,高齢者 👵🏻,👵🏼,👵🏽,👵🏾,👵🏿 -🙍️ きゃらくたー,しかめがお,しかめっつら,しかめっつらのひと,しかめっ面,しかめつら,しかめつらのひと,しかめ面,しかめ面の人,しかめ顔 🙍🏻,🙍🏼,🙍🏽,🙍🏾,🙍🏿 -🙍‍♂️️ おとこ,しかめがお,しかめっつら,しかめっつらのおとこ,しかめつらのおとこ,だんせい -🙍‍♀️️ おんな,しかめがお,しかめっつら,しかめっつらのおんな,しかめつらのおんな,じょせい -🙎️ きゃらくたー,ひと,ふきげん,ふきげんなひと,ぷんぷん,不機嫌,不機嫌な人,人 🙎🏻,🙎🏼,🙎🏽,🙎🏾,🙎🏿 -🙎‍♂️️ おとこ,だんせい,ふきげん,ふきげんなおとこ,ぷんぷん -🙎‍♀️️ おんな,じょせい,ふきげん,ふきげんなおんな,ぷんぷん -🙅️ ng,えぬじー,じぇすちゃー,だめ,だめのぽーずをするひと,だめのぽーずをする人,ばつ,ひと,人 🙅🏻,🙅🏼,🙅🏽,🙅🏾,🙅🏿 -🙅‍♂️️ ng,えぬじー,おとこ,じぇすちゃー,だめのぽーずをするおとこ,だんせい,ばつ -🙅‍♀️️ ng,えぬじー,おんな,じぇすちゃー,じょせい,だめのぽーずをするおんな,ばつ -🙆️ ok,okのぽーずをする人,おーけー,おーけーのぽーずをするひと,じぇすちゃー,ひと,まる,丸,人,ok 🙆🏻,🙆🏼,🙆🏽,🙆🏾,🙆🏿 -🙆‍♂️️ ok,おっけー,おーけー,おーけーのぽーずをするおとこ,じぇすちゃー,だんせい,まる -🙆‍♀️️ ok,おっけー,おーけー,おーけーのぽーずをするおんな,じぇすちゃー,じょせい,まる -💁️ あんない,あんないするひと,うけつけ,うけつけじょう,かお,受付,受付嬢,案内,案内する人,顔 💁🏻,💁🏼,💁🏽,💁🏾,💁🏿 -💁‍♂️️ あんない,あんないするおとこ,おとこ,じぇすちゃー,だんせい -💁‍♀️️ あんない,あんないするおんな,おんな,じぇすちゃー,じょせい -🙋️ きょしゅ,てをあげる,てをあげるじん,てをあげるひと,ひと,人,手を挙げる,手を挙げる人,挙手 🙋🏻,🙋🏼,🙋🏽,🙋🏾,🙋🏿 -🙋‍♂️️ おとこ,きょしゅ,だんせい,てをあげる,てをあげるおとこ -🙋‍♀️️ おんな,きょしゅ,じょせい,てをあげる,てをあげるおんな -🧏️ あくせしびりてぃ,きこえない,しょうがい,ちょうかく,ひと,みみのふじゆうなひと,人,耳の不自由な人,聞こえない,聴覚,障がい 🧏🏻,🧏🏼,🧏🏽,🧏🏾,🧏🏿 -🧏‍♂️️ あくせしびりてぃ,しょうがい,だんせい,ちょうかく,みみのふじゆうなだんせい -🧏‍♀️️ あくせしびりてぃ,しょうがい,じょせい,ちょうかく,みみのふじゆうなじょせい -🙇️ おじぎ,おじぎするひと,おじぎする人,ごめんなさい,どげざ,土下座 🙇🏻,🙇🏼,🙇🏽,🙇🏾,🙇🏿 -🙇‍♂️️ おじぎ,おじぎするおとこ,おとこ,ごめんなさい,だんせい,どげざ -🙇‍♀️️ おじぎ,おじぎするおんな,おんな,ごめんなさい,じょせい,どげざ -🤦️ あちゃー,じぇすちゃー,ひたいにて,ひたいにてをあてるひと,ひたいに手,ひたいに手をあてる人 🤦🏻,🤦🏼,🤦🏽,🤦🏾,🤦🏿 -🤦‍♂️️ あちゃー,おとこ,じぇすちゃー,だんせい,ひたいにて,ひたいにてをあてるおとこ -🤦‍♀️️ あちゃー,おんな,じぇすちゃー,じょせい,ひたいにて,ひたいにてをあてるおんな -🤷️ おてあげ,おてあげするひと,お手上げ,お手上げする人,じぇすちゃー 🤷🏻,🤷🏼,🤷🏽,🤷🏾,🤷🏿 -🤷‍♂️️ おてあげ,おてあげするおとこ,おとこ,じぇすちゃー,だんせい -🤷‍♀️️ おてあげ,おてあげするおんな,おんな,じぇすちゃー,じょせい -🧑‍⚕️️ いし,いしゃ,せらぴすと -👨‍⚕️️ いし,いしゃ,おとこ,だんせい,だんせいのいしゃ -👩‍⚕️️ いし,いしゃ,おんな,じょせい,じょせいのいしゃ -🧑‍🎓️ かくぼう,がくせい,そつぎょう,卒業,学生,角帽 🧑🏻‍🎓,🧑🏼‍🎓,🧑🏽‍🎓,🧑🏾‍🎓,🧑🏿‍🎓 -👨‍🎓️ おとこ,かくぼう,がくせい,そつぎょう,だんしがくせい,だんせい,卒業,学生,男,男子学生,男性,角帽 👨🏻‍🎓,👨🏼‍🎓,👨🏽‍🎓,👨🏾‍🎓,👨🏿‍🎓 -👩‍🎓️ おんな,かくぼう,がくせい,じょしがくせい,じょせい,そつぎょう,卒業,女,女子学生,女性,学生,角帽 👩🏻‍🎓,👩🏼‍🎓,👩🏽‍🎓,👩🏾‍🎓,👩🏿‍🎓 -🧑‍🏫️ きょうし,きょうじゅ,こうし,せんせい,たんにん,先生,担任,教師,教授,講師 🧑🏻‍🏫,🧑🏼‍🏫,🧑🏽‍🏫,🧑🏾‍🏫,🧑🏿‍🏫 -👨‍🏫️ おとこ,きょうし,きょうじゅ,せんせい,だんせい,だんせいのきょうし,先生,教師,教授,男,男性,男性の教師 👨🏻‍🏫,👨🏼‍🏫,👨🏽‍🏫,👨🏾‍🏫,👨🏿‍🏫 -👩‍🏫️ おんな,きょうし,きょうじゅ,じょせい,じょせいのきょうし,せんせい,先生,女,女性,女性の教師,教師,教授 👩🏻‍🏫,👩🏼‍🏫,👩🏽‍🏫,👩🏾‍🏫,👩🏿‍🏫 -🧑‍⚖️️ さいばん,さいばんかん -👨‍⚖️️ おとこ,さいばん,さいばんかん,だんせい,だんせいのさいばんかん -👩‍⚖️️ おんな,さいばん,さいばんかん,じょせい,じょせいのさいばんかん -🧑‍🌾️ がーでなー,のうか,のうぎょう,のうじょうぬし,農場主,農家,農業 🧑🏻‍🌾,🧑🏼‍🌾,🧑🏽‍🌾,🧑🏾‍🌾,🧑🏿‍🌾 -👨‍🌾️ おとこ,だんせい,のうか,のうかのだんせい,のうふ,男,男性,農夫,農家,農家の男性 👨🏻‍🌾,👨🏼‍🌾,👨🏽‍🌾,👨🏾‍🌾,👨🏿‍🌾 -👩‍🌾️ おんな,じょせい,のうか,のうかのじょせい,女,女性,農家,農家の女性 👩🏻‍🌾,👩🏼‍🌾,👩🏽‍🌾,👩🏾‍🌾,👩🏿‍🌾 -🧑‍🍳️ こっく,しぇふ,りょうり,料理 🧑🏻‍🍳,🧑🏼‍🍳,🧑🏽‍🍳,🧑🏾‍🍳,🧑🏿‍🍳 -👨‍🍳️ おとこ,こっく,しぇふ,だんせい,だんせいのこっく,りょうり,料理,男,男性,男性のこっく 👨🏻‍🍳,👨🏼‍🍳,👨🏽‍🍳,👨🏾‍🍳,👨🏿‍🍳 -👩‍🍳️ おんな,こっく,しぇふ,じょせい,じょせいのこっく,りょうり,女,女性,女性のこっく,料理 👩🏻‍🍳,👩🏼‍🍳,👩🏽‍🍳,👩🏾‍🍳,👩🏿‍🍳 -🧑‍🔧️ こうさく,さぎょういん,すぱな,せいびし,めかにっく,作業員,工作,整備士 🧑🏻‍🔧,🧑🏼‍🔧,🧑🏽‍🔧,🧑🏾‍🔧,🧑🏿‍🔧 -👨‍🔧️ おとこ,こうさく,すぱな,だんせい,だんせいのせいびし,めかにっく,工作,男,男性,男性の整備士 👨🏻‍🔧,👨🏼‍🔧,👨🏽‍🔧,👨🏾‍🔧,👨🏿‍🔧 -👩‍🔧️ おんな,こうさく,じょせい,じょせいのせいびし,すぱな,めかにっく,女,女性,女性の整備士,工作 👩🏻‍🔧,👩🏼‍🔧,👩🏽‍🔧,👩🏾‍🔧,👩🏿‍🔧 -🧑‍🏭️ こういん,こうじょう,ものづくり,ようせつこう,工員,工場,溶接工 🧑🏻‍🏭,🧑🏼‍🏭,🧑🏽‍🏭,🧑🏾‍🏭,🧑🏿‍🏭 -👨‍🏭️ おとこ,だんせい,だんせいのようせつこう,ようせつ,溶接,男,男性,男性の溶接工 👨🏻‍🏭,👨🏼‍🏭,👨🏽‍🏭,👨🏾‍🏭,👨🏿‍🏭 -👩‍🏭️ おんな,じょせい,じょせいのようせつこう,ようせつ,女,女性,女性の溶接工,溶接 👩🏻‍🏭,👩🏼‍🏭,👩🏽‍🏭,👩🏾‍🏭,👩🏿‍🏭 -🧑‍💼️ かいしゃいん,さらりーまん,びじねすぱーそん,会社員 🧑🏻‍💼,🧑🏼‍💼,🧑🏽‍💼,🧑🏾‍💼,🧑🏿‍💼 -👨‍💼️ かいしゃいん,さらりーまん,だんせい,だんせいかいしゃいん,びじねすぱーそん,びじねすまん,会社員,男性,男性会社員 👨🏻‍💼,👨🏼‍💼,👨🏽‍💼,👨🏾‍💼,👨🏿‍💼 -👩‍💼️ ol,おーえる,おーる,かいしゃいん,さらりーまん,じょせい,じょせいかいしゃいん,びじねすぱーそん,会社員,女性,女性会社員 👩🏻‍💼,👩🏼‍💼,👩🏽‍💼,👩🏾‍💼,👩🏿‍💼 -🧑‍🔬️ かがくしゃ,せいぶつがくしゃ,ぶつりがくしゃ,化学者,物理学者,生物学者,科学者 🧑🏻‍🔬,🧑🏼‍🔬,🧑🏽‍🔬,🧑🏾‍🔬,🧑🏿‍🔬 -👨‍🔬️ おとこ,かがくしゃ,だんせい,だんせいかがくしゃ,男,男性,男性科学者,科学者 👨🏻‍🔬,👨🏼‍🔬,👨🏽‍🔬,👨🏾‍🔬,👨🏿‍🔬 -👩‍🔬️ おんな,かがくしゃ,じょせい,じょせいかがくしゃ,女,女性,女性科学者,科学者 👩🏻‍🔬,👩🏼‍🔬,👩🏽‍🔬,👩🏾‍🔬,👩🏿‍🔬 -🧑‍💻️ かいはつしゃ,ぎじゅつしゃ,こんぴゅーた,ぱそこん,ぷろぐらま,技術者,開発者 🧑🏻‍💻,🧑🏼‍💻,🧑🏽‍💻,🧑🏾‍💻,🧑🏿‍💻 -👨‍💻️ かいはつしゃ,こんぴゅーた,だんせい,だんせいぎじゅつしゃ,でべろっぱ,ぱそこん,ぷろぐらま,男性,男性技術者,開発者 👨🏻‍💻,👨🏼‍💻,👨🏽‍💻,👨🏾‍💻,👨🏿‍💻 -👩‍💻️ かいはつしゃ,こんぴゅーた,じょせい,じょせいぎじゅつしゃ,でべろっぱ,ぱそこん,ぷろぐらま,女性,女性技術者,開発者 👩🏻‍💻,👩🏼‍💻,👩🏽‍💻,👩🏾‍💻,👩🏿‍💻 -🧑‍🎤️ あーてぃすと,かしゅ,しんがー,すたー,ろっかー,歌手 🧑🏻‍🎤,🧑🏼‍🎤,🧑🏽‍🎤,🧑🏾‍🎤,🧑🏿‍🎤 -👨‍🎤️ あーてぃすと,おとこ,かしゅ,しんがー,だんせい,だんせいかしゅ,歌手,男,男性,男性歌手 👨🏻‍🎤,👨🏼‍🎤,👨🏽‍🎤,👨🏾‍🎤,👨🏿‍🎤 -👩‍🎤️ あーてぃすと,おんな,かしゅ,しんがー,じょせい,じょせいかしゅ,女,女性,女性歌手,歌手 👩🏻‍🎤,👩🏼‍🎤,👩🏽‍🎤,👩🏾‍🎤,👩🏿‍🎤 -🧑‍🎨️ あーてぃすと,えかき,がか,げいじゅつか,画家,絵描き,芸術家 🧑🏻‍🎨,🧑🏼‍🎨,🧑🏽‍🎨,🧑🏾‍🎨,🧑🏿‍🎨 -👨‍🎨️ あーてぃすと,おとこ,がか,げいじゅつか,だんせい,だんせいのげいじゅつか,男,男性,男性の芸術家,画家,芸術家 👨🏻‍🎨,👨🏼‍🎨,👨🏽‍🎨,👨🏾‍🎨,👨🏿‍🎨 -👩‍🎨️ あーてぃすと,おんな,がか,げいじゅつか,じょせい,じょせいのげいじゅつか,女,女性,女性の芸術家,画家,芸術家 👩🏻‍🎨,👩🏼‍🎨,👩🏽‍🎨,👩🏾‍🎨,👩🏿‍🎨 -🧑‍✈️️ きちょう,そうじゅうし,ぱいろっと -👨‍✈️️ おとこ,そうじゅうし,だんせい,だんせいぱいろっと -👩‍✈️️ おんな,じょせい,じょせいぱいろっと,そうじゅうし -🧑‍🚀️ うちゅうひこうし,ろけっと,宇宙飛行士 🧑🏻‍🚀,🧑🏼‍🚀,🧑🏽‍🚀,🧑🏾‍🚀,🧑🏿‍🚀 -👨‍🚀️ うちゅうひこうし,おとこ,だんせい,だんせいうちゅうひこうし,宇宙飛行士,男,男性,男性宇宙飛行士 👨🏻‍🚀,👨🏼‍🚀,👨🏽‍🚀,👨🏾‍🚀,👨🏿‍🚀 -👩‍🚀️ うちゅうひこうし,おんな,じょせい,じょせいうちゅうひこうし,女,女性,女性宇宙飛行士,宇宙飛行士 👩🏻‍🚀,👩🏼‍🚀,👩🏽‍🚀,👩🏾‍🚀,👩🏿‍🚀 -🧑‍🚒️ きゅうじょたい,しょうぼうし,れすきゅー,救助隊,消防士 🧑🏻‍🚒,🧑🏼‍🚒,🧑🏽‍🚒,🧑🏾‍🚒,🧑🏿‍🚒 -👨‍🚒️ おとこ,しょうぼうし,だんせい,だんせいしょうぼうし,消防士,男,男性,男性消防士 👨🏻‍🚒,👨🏼‍🚒,👨🏽‍🚒,👨🏾‍🚒,👨🏿‍🚒 -👩‍🚒️ おんな,しょうぼうし,じょせい,じょせいしょうぼうし,女,女性,女性消防士,消防士 👩🏻‍🚒,👩🏼‍🚒,👩🏽‍🚒,👩🏾‍🚒,👩🏿‍🚒 -👮️ おまわりさん,お巡りさん,かお,けいかん,けいさつ,けいさつかん,ぽりす,警官,警察,警察官,顔 👮🏻,👮🏼,👮🏽,👮🏾,👮🏿 -👮‍♂️️ おまわりさん,けいかん,けいさつ,けいさつかん,だんせい,だんせいけいさつかん -👮‍♀️️ おまわりさん,けいかん,けいさつ,けいさつかん,じょせい,じょせいけいさつかん -🕵️️ すぱい,たんてい,むしめがね -🕵️‍♂️️ おとこ,たんてい,だんせい,だんせいのたんてい,むしめがね -🕵️‍♀️️ おんな,じょせい,じょせいのたんてい,たんてい,むしめがね -💂️ えいへい,かお,けいび,しゅえい,もんばん,守衛,衛兵,警備,門番 💂🏻,💂🏼,💂🏽,💂🏾,💂🏿 -💂‍♂️️ えいへい,けいび,しゅえい,だんせい,だんせいのえいへい,もんばん -💂‍♀️️ えいへい,けいび,しゅえい,じょせい,じょせいのえいへい,もんばん -🥷️ おんみつ,くさのもの,しのび,すぱい,にんじゃ,にんじゅつ,忍び,忍者,忍術,草の者,隠密 🥷🏻,🥷🏼,🥷🏽,🥷🏾,🥷🏿 -👷️ かお,かなづち,けんせつさぎょういん,こうじ,はんまー,へるめっと,工事,工事現場の人,建設作業員 👷🏻,👷🏼,👷🏽,👷🏾,👷🏿 -👷‍♂️️ けんせつさぎょういん,こうじ,だんせい,だんせいのけんせつさぎょういん,はんまー,へるめっと -👷‍♀️️ けんせつさぎょういん,こうじ,じょせい,じょせいのけんせつさぎょういん,はんまー,へるめっと -🫅️ おうかんをかぶったひと,おうけ,おうさま,おうぞく,くんしゅ,ひと,君主,王冠をかぶった人,王家,王族,王様 🫅🏻,🫅🏼,🫅🏽,🫅🏾,🫅🏿 -🤴️ おうじ,おとこ,だんせい,ぷりんす,王子,男,男性 🤴🏻,🤴🏼,🤴🏽,🤴🏾,🤴🏿 -👸️ おうじょ,おひめさま,おんな,お姫さま,お姫様,かお,くいーん,じょせい,ぷりんせす,女,女性,王女 👸🏻,👸🏼,👸🏽,👸🏾,👸🏿 -👳️ かお,たーばん,たーばんのひと,たーばんの人 👳🏻,👳🏼,👳🏽,👳🏾,👳🏿 -👳‍♂️️ おとこ,たーばん,たーばんのだんせい,だんせい -👳‍♀️️ おんな,じょせい,たーばん,たーばんのじょせい -👲️ おとこ,おわんぼう,おわん帽,おわん帽の人,かお,だんせい,ちゅうかぼうのだんせい,中華帽の男性,男,男性 👲🏻,👲🏼,👲🏽,👲🏾,👲🏿 -🧕️ おんな,じょせい,すかーふ,すかーふのじょせい,すかーふの女性,ひじゃぶ,べーる,女,女性 🧕🏻,🧕🏼,🧕🏽,🧕🏾,🧕🏿 -🤵️ おとこ,けっこん,たきしーど,たきしーどのひと,たきしーどの人,だんせい,はなむこ,結婚,花婿 🤵🏻,🤵🏼,🤵🏽,🤵🏾,🤵🏿 -🤵‍♂️️ おとこ,たきしーど,たきしーどのおとこ,たきしーどのだんせい,だんせい -🤵‍♀️️ おんな,じょせい,たきしーど,たきしーどのおんな,たきしーどのじょせい -👰️ おんな,かお,けっこん,じょせい,はなよめ,べーるのひと,べーるの人,結婚,花嫁,顔 👰🏻,👰🏼,👰🏽,👰🏾,👰🏿 -👰‍♂️️ おとこ,だんせい,べーる,べーるのだんせい -👰‍♀️️ おんな,じょせい,べーる,べーるのじょせい -🤰️ おんな,じょせい,にんしん,にんぷ,女,女性,妊娠,妊婦 🤰🏻,🤰🏼,🤰🏽,🤰🏾,🤰🏿 -🫃️ おとこ,だんせい,にんしん,にんしんしただんせい,にんしんしたひと,にんぷ,ひと,妊夫,妊娠,男,男性 🫃🏻,🫃🏼,🫃🏽,🫃🏾,🫃🏿 -🫄️ おなか,お腹,にんしん,にんしんしたひと,にんぷ,ひと,妊夫,妊娠,妊娠した人,妊婦 🫄🏻,🫄🏼,🫄🏽,🫄🏾,🫄🏿 -🤱️ あかちゃん,おんな,じゅにゅう,じょせい,みるく,女,女性,授乳,赤ちゃん 🤱🏻,🤱🏼,🤱🏽,🤱🏾,🤱🏿 -👩‍🍼️ あかちゃん,おんな,じゅにゅう,じゅにゅうするじょせい,じょせい,女,女性,授乳,授乳する女性,赤ちゃん 👩🏻‍🍼,👩🏼‍🍼,👩🏽‍🍼,👩🏾‍🍼,👩🏿‍🍼 -👨‍🍼️ あかちゃん,おとこ,じゅにゅう,じゅにゅうするだんせい,だんせい,授乳,授乳する男性,男,男性,赤ちゃん 👨🏻‍🍼,👨🏼‍🍼,👨🏽‍🍼,👨🏾‍🍼,👨🏿‍🍼 -🧑‍🍼️ あかちゃん,じゅにゅう,じゅにゅうするひと,ひと,人,授乳,授乳する人,赤ちゃん 🧑🏻‍🍼,🧑🏼‍🍼,🧑🏽‍🍼,🧑🏾‍🍼,🧑🏿‍🍼 -👼️ えんじぇる,かお,てんし,天使,顔 👼🏻,👼🏼,👼🏽,👼🏾,👼🏿 -🎅️ かお,くりすます,さんた,さんたくろーす,顔 🎅🏻,🎅🏼,🎅🏽,🎅🏾,🎅🏿 -🤶️ おんな,くりすます,さんたくろーす,じょせい,じょせいのさんた,女,女性,女性のさんた 🤶🏻,🤶🏼,🤶🏽,🤶🏾,🤶🏿 -🧑‍🎄️ くりすます,さんたくろーす,さんたさん 🧑🏻‍🎄,🧑🏼‍🎄,🧑🏽‍🎄,🧑🏾‍🎄,🧑🏿‍🎄 -🦸️ すーぱーひーろー,ぜん,ちょうじん,ひろいん,ひーろー,善,超人 🦸🏻,🦸🏼,🦸🏽,🦸🏾,🦸🏿 -🦸‍♂️️ ぜん,だんせい,だんせいのすーぱーひーろー,ちょうじん,ひーろー -🦸‍♀️️ じょせい,じょせいのすーぱーひーろー,ぜん,ちょうじん,ひろいん,ひーろー -🦹️ あく,あくやく,ちょうじん,はんにん,わる,ゔぃらん,悪,悪役,犯人,超人 🦹🏻,🦹🏼,🦹🏽,🦹🏾,🦹🏿 -🦹‍♂️️ あく,だんせい,だんせいのあくやく,ちょうじん,はんにん,わる,ゔぃらん -🦹‍♀️️ あく,じょせい,じょせいのあくやく,ちょうじん,はんにん,わる,ゔぃらん -🧙️ まじょ,まほう,まほうつかい,魔女,魔法,魔法使い 🧙🏻,🧙🏼,🧙🏽,🧙🏾,🧙🏿 -🧙‍♂️️ おとこ,おとこのまほうつかい,だんせい,まほうつかい -🧙‍♀️️ おんな,おんなのまほうつかい,じょせい,まじょ,まほうつかい -🧚️ おべろん,でんせつ,ぱっく,まほう,ようせい,伝説,妖精,魔法 🧚🏻,🧚🏼,🧚🏽,🧚🏾,🧚🏿 -🧚‍♂️️ おとこ,おとこのようせい,だんせい,ようせい -🧚‍♀️️ おんな,おんなのようせい,じょせい,ようせい -🧛️ きゅうけつき,どらきゅら,ばんぱいあ,吸血鬼 🧛🏻,🧛🏼,🧛🏽,🧛🏾,🧛🏿 -🧛‍♂️️ おとこ,おとこのきゅうけつき,きゅうけつき,だんせい,どらきゅら,ばんぱいあ -🧛‍♀️️ おんな,おんなのきゅうけつき,きゅうけつき,じょせい,どらきゅら,ばんぱいあ -🧜️ にんぎょ,まーまん,まーめいど,人魚 🧜🏻,🧜🏼,🧜🏽,🧜🏾,🧜🏿 -🧜‍♂️️ おとこ,だんせい,にんぎょ,まーまん -🧜‍♀️️ おんな,じょせい,にんぎょ,まーめいど -🧝️ えるふ,こようせい,ようせい,妖精,小妖精 🧝🏻,🧝🏼,🧝🏽,🧝🏾,🧝🏿 -🧝‍♂️️ えるふ,おとこ,おとこのえるふ,だんせい -🧝‍♀️️ えるふ,おんな,おんなのえるふ,じょせい -🧞️ せいれい,まじん,精霊,魔神 -🧞‍♂️️ おとこ,おとこのせいれい,せいれい,だんせい,まじん -🧞‍♀️️ おんな,おんなのせいれい,じょせい,せいれい,まじん -🧟️ ぞんび,ほらー -🧟‍♂️️ おとこ,おとこのぞんび,ぞんび,だんせい,ほらー -🧟‍♀️️ おんな,おんなのぞんび,じょせい,ぞんび,ほらー -🧌️ おとぎばなし,おとぎ話,とろーる,ふぁんたじー,もんすたー -💆️ えすて,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのひと,ふぇいすまっさーじ中の人,まっさーじ 💆🏻,💆🏼,💆🏽,💆🏾,💆🏿 -💆‍♂️️ えすて,おとこ,だんせい,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのおとこ,まっさーじ -💆‍♀️️ えすて,おんな,じょせい,ふぇいすまっさーじ,ふぇいすまっさーじちゅうのおんな,まっさーじ -💇️ さんぱつ,さんぱつされるひと,とこや,びよういん,びようしつ,へあかっと,床屋,散髪される人,美容室,美容院 💇🏻,💇🏼,💇🏽,💇🏾,💇🏿 -💇‍♂️️ さんぱつされるおとこ,だんせい,とこや,びよういん,びようしつ,へあかっと -💇‍♀️️ さんぱつされるおんな,じょせい,とこや,びよういん,びようしつ,へあかっと -🚶️ あるくひと,うぉーきんぐ,ほこう,ほこうしゃ,歩く人,歩行,歩行者 🚶🏻,🚶🏼,🚶🏽,🚶🏾,🚶🏿 -🚶‍♂️️ あるくおとこ,うぉーきんぐ,だんせい,ほこう,ほこうしゃ -🚶‍♀️️ あるくおんな,うぉーきんぐ,じょせい,ほこう,ほこうしゃ -🚶‍➡️️ あるくひと,うぉーきんぐ,ほこう,ほこうしゃ -🚶‍♀️‍➡️️ あるくおんな,うぉーきんぐ,じょせい,ほこう,ほこうしゃ -🚶‍♂️‍➡️️ あるくおとこ,うぉーきんぐ,だんせい,ほこう,ほこうしゃ -🧍️ きりつ,たっている,たつひと,ひと,人,立っている,立つ人,起立 🧍🏻,🧍🏼,🧍🏽,🧍🏾,🧍🏿 -🧍‍♂️️ きりつ,たつおとこ,だんせい -🧍‍♀️️ きりつ,じょせい,たつおんな -🧎️ すわる,せいざするひと,ひざまずく,ひと,人,座る,正座する人 🧎🏻,🧎🏼,🧎🏽,🧎🏾,🧎🏿 -🧎‍♂️️ すわる,せいざするだんせい,だんせい,ひざまずく -🧎‍♀️️ じょせい,すわる,せいざするじょせい,ひざまずく -🧎‍➡️️ すわる,せいざするひと,ひざまずく,ひと -🧎‍♀️‍➡️️ じょせい,すわる,せいざするじょせい,ひざまずく -🧎‍♂️‍➡️️ すわる,せいざするだんせい,だんせい,ひざまずく -🧑‍🦯️ あくせしびりてぃ,しかく,しょうがい,つえをついたひと,め,杖をついた人,目,視覚,障がい 🧑🏻‍🦯,🧑🏼‍🦯,🧑🏽‍🦯,🧑🏾‍🦯,🧑🏿‍🦯 -🧑‍🦯‍➡️️ あくせしびりてぃ,しかく,しょうがい,つえをついたひと,め -👨‍🦯️ あくせしびりてぃ,しかく,しょうがい,だんせい,つえをついただんせい,め,杖をついた男性,男性,目,視覚,障がい 👨🏻‍🦯,👨🏼‍🦯,👨🏽‍🦯,👨🏾‍🦯,👨🏿‍🦯 -👨‍🦯‍➡️️ あくせしびりてぃ,しかく,しょうがい,だんせい,つえをついただんせい,め -👩‍🦯️ あくせしびりてぃ,しかく,しょうがい,じょせい,つえをついたじょせい,め,女性,杖をついた女性,目,視覚,障がい 👩🏻‍🦯,👩🏼‍🦯,👩🏽‍🦯,👩🏾‍🦯,👩🏿‍🦯 -👩‍🦯‍➡️️ あくせしびりてぃ,しかく,しょうがい,じょせい,つえをついたじょせい,め -🧑‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,でんどうくるまいすのひと,車いす,障がい,電動車椅子の人 🧑🏻‍🦼,🧑🏼‍🦼,🧑🏽‍🦼,🧑🏾‍🦼,🧑🏿‍🦼 -🧑‍🦼‍➡️️ あくせしびりてぃ,くるまいす,しょうがい,でんどうくるまいすのひと -👨‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,だんせい,でんどうくるまいすのだんせい,男性,車いす,障がい,電動車椅子の男性 👨🏻‍🦼,👨🏼‍🦼,👨🏽‍🦼,👨🏾‍🦼,👨🏿‍🦼 -👨‍🦼‍➡️️ あくせしびりてぃ,くるまいす,しょうがい,だんせい,でんどうくるまいすのだんせい -👩‍🦼️ あくせしびりてぃ,くるまいす,しょうがい,じょせい,でんどうくるまいすのじょせい,女性,車いす,障がい,電動車椅子の女性 👩🏻‍🦼,👩🏼‍🦼,👩🏽‍🦼,👩🏾‍🦼,👩🏿‍🦼 -👩‍🦼‍➡️️ あくせしびりてぃ,くるまいす,しょうがい,じょせい,でんどうくるまいすのじょせい -🧑‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのひと,しょうがい,手動式車椅子の人,車いす,障がい 🧑🏻‍🦽,🧑🏼‍🦽,🧑🏽‍🦽,🧑🏾‍🦽,🧑🏿‍🦽 -🧑‍🦽‍➡️️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのひと,しょうがい -👨‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのだんせい,しょうがい,だんせい,手動式車椅子の男性,男性,車いす,障がい 👨🏻‍🦽,👨🏼‍🦽,👨🏽‍🦽,👨🏾‍🦽,👨🏿‍🦽 -👨‍🦽‍➡️️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのだんせい,しょうがい,だんせい -👩‍🦽️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのじょせい,しょうがい,じょせい,女性,手動式車椅子の女性,車いす,障がい 👩🏻‍🦽,👩🏼‍🦽,👩🏽‍🦽,👩🏾‍🦽,👩🏿‍🦽 -👩‍🦽‍➡️️ あくせしびりてぃ,くるまいす,しゅどうしきくるまいすのじょせい,しょうがい,じょせい -🏃️ じょぎんぐ,すぽーつ,はしるひと,まらそん,らんなー,らんにんぐ,走る人 🏃🏻,🏃🏼,🏃🏽,🏃🏾,🏃🏿 -🏃‍♂️️ じょぎんぐ,だんせい,はしるおとこ,まらそん,らんなー,らんにんぐ -🏃‍♀️️ じょぎんぐ,じょせい,はしるおんな,まらそん,らんなー,らんにんぐ -🏃‍➡️️ じょぎんぐ,はしるひと,まらそん,らんなー,らんにんぐ -🏃‍♀️‍➡️️ じょぎんぐ,じょせい,はしるおんな,まらそん,らんなー,らんにんぐ -🏃‍♂️‍➡️️ じょぎんぐ,だんせい,はしるおとこ,まらそん,らんなー,らんにんぐ -💃️ おどりこ,おどるおんな,じょせい,だんさー,だんす,ふらめんこ,女性,踊り子,踊る女 💃🏻,💃🏼,💃🏽,💃🏾,💃🏿 -🕺️ おとこ,おどるおとこ,だんさー,だんす,だんせい,男,男性,踊る男 🕺🏻,🕺🏼,🕺🏽,🕺🏾,🕺🏿 -🕴️️ ういてるびじねすまん,おとこ,くうちゅうふゆう,すーつ,だんせい,びじねすまん -👯️ うさみみ,うさ耳,かお,だんさー,ばにー,ばにーがーる,ばにーぼーい,ぱーてぃー -👯‍♂️️ うさみみ,おとこ,だんさー,だんせい,ばにーぼーい,ぱーてぃー -👯‍♀️️ うさみみ,おんな,じょせい,だんさー,ばにーがーる,ぱーてぃー -🧖️ さうな,さうなにはいるひと,さうなに入る人 🧖🏻,🧖🏼,🧖🏽,🧖🏾,🧖🏿 -🧖‍♂️️ おとこ,さうな,さうなにはいるおとこ,だんせい -🧖‍♀️️ おんな,さうな,さうなにはいるおんな,じょせい -🧗️ とざん,やまのぼり,やまをのぼるひと,山を登る人,山登り,登山 🧗🏻,🧗🏼,🧗🏽,🧗🏾,🧗🏿 -🧗‍♂️️ おとこ,だんせい,とざん,やまのぼり,やまをのぼるおとこ -🧗‍♀️️ おんな,じょせい,とざん,やまのぼり,やまをのぼるおんな -🤺️ すぽーつ,ふぇんしんぐ,ふぇんしんぐをするひと,ふぇんしんぐをする人 -🏇️ きしゅ,けいば,じょうば,じょっきー,すぽーつ,乗馬,競馬,騎手 🏇🏻,🏇🏼,🏇🏽,🏇🏾,🏇🏿 -⛷️️ すきー,すきーやー,すとっく,すぽーつ -🏂️ すのぼ,すのーぼーだー,すのーぼーど,すぽーつ -🏌️️ ごるふ,ごるふぁー,ごるふをするひと,すぽーつ -🏌️‍♂️️ おとこ,ごるふ,ごるふぁー,ごるふをするおとこ,すぽーつ,だんせい -🏌️‍♀️️ おんな,ごるふ,ごるふぁー,ごるふをするおんな,じょせい,すぽーつ -🏄️ さーふぁー,さーふぃん,さーふぃんするひと,すぽーつ,なみのり -🏄‍♂️️ おとこ,さーふぁー,さーふぃんするおとこ,すぽーつ,だんせい,なみのり -🏄‍♀️️ おんな,さーふぁー,さーふぃんするおんな,じょせい,すぽーつ,なみのり -🚣️ かぬー,かやっく,すぽーつ,のりもの,ふね,ぼーとをこぐひと,ぼーとをこぐ人,乗り物,船 🚣🏻,🚣🏼,🚣🏽,🚣🏾,🚣🏿 -🚣‍♂️️ かぬー,かやっく,すぽーつ,だんせい,ふね,ぼーとをこぐおとこ -🚣‍♀️️ かぬー,かやっく,じょせい,すぽーつ,ふね,ぼーとをこぐおんな -🏊️ およぐひと,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ,水泳 -🏊‍♂️️ およぐおとこ,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ,だんせい -🏊‍♀️️ およぐおんな,じょせい,すいえい,すいまー,すいみんぐ,すいむ,すぽーつ -⛹️️ きゅうぎ,すぽーつ,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするひと -⛹️‍♂️️ きゅうぎ,すぽーつ,だんせい,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするおとこ -⛹️‍♀️️ きゅうぎ,じょせい,すぽーつ,ばすけ,ばすけっとぼーる,ばすけっとぼーるをするおんな -🏋️️ うぇいとりふてぃんぐ,じゅうりょうあげ,じゅうりょうあげをするひと,すぽーつ -🏋️‍♂️️ うぇいとりふてぃんぐ,おとこ,じゅうりょうあげをするおとこ,すぽーつ,だんせい -🏋️‍♀️️ うぇいとりふてぃんぐ,おんな,じゅうりょうあげをするおんな,じょせい,すぽーつ -🚴️ けいりん,さいくりんぐ,じてんしゃにのるじん,じてんしゃにのるひと,すぽーつ,ろーどばいく,ろーどれーす,競輪,自転車に乗る人 🚴🏻,🚴🏼,🚴🏽,🚴🏾,🚴🏿 -🚴‍♂️️ けいりん,さいくりんぐ,じてんしゃにのるおとこ,すぽーつ,だんせい,ろーどれーす -🚴‍♀️️ けいりん,さいくりんぐ,じてんしゃにのるおんな,じょせい,すぽーつ,ろーどれーす -🚵️ さいくりんぐ,じてんしゃ,すぽーつ,まうんてんばいく,まうんてんばいくにのるひと,まうんてんばいくに乗る人,自転車 🚵🏻,🚵🏼,🚵🏽,🚵🏾,🚵🏿 -🚵‍♂️️ おとこ,さいくりんぐ,じてんしゃ,すぽーつ,だんせい,まうんてんばいくにのるおとこ -🚵‍♀️️ おんな,さいくりんぐ,じてんしゃ,じょせい,すぽーつ,まうんてんばいくにのるおんな -🤸️ すぽーつ,そくてん,そくてんするひと,たいそう,体操,側転,側転する人 🤸🏻,🤸🏼,🤸🏽,🤸🏾,🤸🏿 -🤸‍♂️️ おとこ,すぽーつ,そくてん,そくてんするおとこ,たいそう,だんせい -🤸‍♀️️ おんな,じょせい,すぽーつ,そくてん,そくてんするおんな,たいそう -🤼️ すぽーつ,れすらー,れすりんぐ,れすりんぐするひと,れすりんぐする人,れすりんぐをするひと -🤼‍♂️️ おとこ,すぽーつ,だんせい,れすりんぐ,れすりんぐするおとこ,れすりんぐをするおとこ -🤼‍♀️️ おんな,じょせい,すぽーつ,れすりんぐ,れすりんぐするおんな,れすりんぐをするおんな -🤽️ きゅうぎ,すいきゅう,すいきゅうをするひと,すぽーつ,水球,水球をする人,球技 🤽🏻,🤽🏼,🤽🏽,🤽🏾,🤽🏿 -🤽‍♂️️ おとこ,きゅうぎ,すいきゅう,すいきゅうをするおとこ,すぽーつ,だんせい -🤽‍♀️️ おんな,きゅうぎ,じょせい,すいきゅう,すいきゅうをするおんな,すぽーつ -🤾️ きゅうぎ,すぽーつ,はんどぼーる,はんどぼーるをするひと,はんどぼーるをする人,球技 🤾🏻,🤾🏼,🤾🏽,🤾🏾,🤾🏿 -🤾‍♂️️ おとこ,きゅうぎ,すぽーつ,だんせい,はんどぼーる,はんどぼーるをするおとこ -🤾‍♀️️ おんな,きゅうぎ,じょせい,すぽーつ,はんどぼーる,はんどぼーるをするおんな -🤹️ じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするひと,じゃぐりんぐをする人,だいどうげい,大道芸 🤹🏻,🤹🏼,🤹🏽,🤹🏾,🤹🏿 -🤹‍♂️️ おとこ,じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするおとこ,だいどうげい,だんせい -🤹‍♀️️ おんな,じゃぐらー,じゃぐりんぐ,じゃぐりんぐをするおんな,じょせい,だいどうげい -🧘️ めいそう,よが,よがのぽーずをするひと,よがのぽーずをする人,瞑想 🧘🏻,🧘🏼,🧘🏽,🧘🏾,🧘🏿 -🧘‍♂️️ おとこ,だんせい,めいそう,よが,よがのぽーずをするおとこ -🧘‍♀️️ おんな,じょせい,めいそう,よが,よがのぽーずをするおんな -🛀️ お風呂,ばすたぶ,ふろ,ふろにはいるじん,ふろにはいるひと,よくそう,浴槽,風呂,風呂に入る人 🛀🏻,🛀🏼,🛀🏽,🛀🏾,🛀🏿 -🛌️ ねる,べっど,べっどにねるひと,べっどに寝る人,ほてる,寝る 🛌🏻,🛌🏼,🛌🏽,🛌🏾,🛌🏿 -🧑‍🤝‍🧑️ かっぷる,こいびと,つなぐ,て,てをつなぐ,てをつなぐ2にん,てをつなぐふたり,ともだち,ひと,人,友達,恋人,手,手をつなぐ,手をつなぐ2人 🧑🏻‍🤝‍🧑🏻,🧑🏻‍🤝‍🧑🏼,🧑🏻‍🤝‍🧑🏽,🧑🏻‍🤝‍🧑🏾,🧑🏻‍🤝‍🧑🏿,🧑🏼‍🤝‍🧑🏻,🧑🏼‍🤝‍🧑🏼,🧑🏼‍🤝‍🧑🏽,🧑🏼‍🤝‍🧑🏾,🧑🏼‍🤝‍🧑🏿,🧑🏽‍🤝‍🧑🏻,🧑🏽‍🤝‍🧑🏼,🧑🏽‍🤝‍🧑🏽,🧑🏽‍🤝‍🧑🏾,🧑🏽‍🤝‍🧑🏿,🧑🏾‍🤝‍🧑🏻,🧑🏾‍🤝‍🧑🏼,🧑🏾‍🤝‍🧑🏽,🧑🏾‍🤝‍🧑🏾,🧑🏾‍🤝‍🧑🏿,🧑🏿‍🤝‍🧑🏻,🧑🏿‍🤝‍🧑🏼,🧑🏿‍🤝‍🧑🏽,🧑🏿‍🤝‍🧑🏾,🧑🏿‍🤝‍🧑🏿 -👭️ おんな,かっぷる,こいびと,てをつなぐじょせい,ともだち,どうせい,友達,同性,女,恋人,手をつなぐ女性 👭🏻,👭🏼,👭🏽,👭🏾,👭🏿,👩🏻‍🤝‍👩🏼,👩🏻‍🤝‍👩🏽,👩🏻‍🤝‍👩🏾,👩🏻‍🤝‍👩🏿,👩🏼‍🤝‍👩🏻,👩🏼‍🤝‍👩🏽,👩🏼‍🤝‍👩🏾,👩🏼‍🤝‍👩🏿,👩🏽‍🤝‍👩🏻,👩🏽‍🤝‍👩🏼,👩🏽‍🤝‍👩🏾,👩🏽‍🤝‍👩🏿,👩🏾‍🤝‍👩🏻,👩🏾‍🤝‍👩🏼,👩🏾‍🤝‍👩🏽,👩🏾‍🤝‍👩🏿,👩🏿‍🤝‍👩🏻,👩🏿‍🤝‍👩🏼,👩🏿‍🤝‍👩🏽,👩🏿‍🤝‍👩🏾 -👫️ いせい,かっぷる,こいびと,だんじょ,てをつなぐだんじょ,ともだち,ふたり,友達,恋人,手をつなぐ男女,男女,異性 👫🏻,👫🏼,👫🏽,👫🏾,👫🏿,👩🏻‍🤝‍👨🏼,👩🏻‍🤝‍👨🏽,👩🏻‍🤝‍👨🏾,👩🏻‍🤝‍👨🏿,👩🏼‍🤝‍👨🏻,👩🏼‍🤝‍👨🏽,👩🏼‍🤝‍👨🏾,👩🏼‍🤝‍👨🏿,👩🏽‍🤝‍👨🏻,👩🏽‍🤝‍👨🏼,👩🏽‍🤝‍👨🏾,👩🏽‍🤝‍👨🏿,👩🏾‍🤝‍👨🏻,👩🏾‍🤝‍👨🏼,👩🏾‍🤝‍👨🏽,👩🏾‍🤝‍👨🏿,👩🏿‍🤝‍👨🏻,👩🏿‍🤝‍👨🏼,👩🏿‍🤝‍👨🏽,👩🏿‍🤝‍👨🏾 -👬️ おとこ,かっぷる,こいびと,てをつなぐだんせい,ともだち,どうせい,友達,同性,恋人,手をつなぐ男性,男 👬🏻,👬🏼,👬🏽,👬🏾,👬🏿,👨🏻‍🤝‍👨🏼,👨🏻‍🤝‍👨🏽,👨🏻‍🤝‍👨🏾,👨🏻‍🤝‍👨🏿,👨🏼‍🤝‍👨🏻,👨🏼‍🤝‍👨🏽,👨🏼‍🤝‍👨🏾,👨🏼‍🤝‍👨🏿,👨🏽‍🤝‍👨🏻,👨🏽‍🤝‍👨🏼,👨🏽‍🤝‍👨🏾,👨🏽‍🤝‍👨🏿,👨🏾‍🤝‍👨🏻,👨🏾‍🤝‍👨🏼,👨🏾‍🤝‍👨🏽,👨🏾‍🤝‍👨🏿,👨🏿‍🤝‍👨🏻,👨🏿‍🤝‍👨🏼,👨🏿‍🤝‍👨🏽,👨🏿‍🤝‍👨🏾 -💏️ 2にんできす,2人できす,かっぷる,きす,ちゅっ,はーと,ふたりできす 💏🏻,💏🏼,💏🏽,💏🏾,💏🏿,🧑🏻‍❤️‍💋‍🧑🏼,🧑🏻‍❤️‍💋‍🧑🏽,🧑🏻‍❤️‍💋‍🧑🏾,🧑🏻‍❤️‍💋‍🧑🏿,🧑🏼‍❤️‍💋‍🧑🏻,🧑🏼‍❤️‍💋‍🧑🏽,🧑🏼‍❤️‍💋‍🧑🏾,🧑🏼‍❤️‍💋‍🧑🏿,🧑🏽‍❤️‍💋‍🧑🏻,🧑🏽‍❤️‍💋‍🧑🏼,🧑🏽‍❤️‍💋‍🧑🏾,🧑🏽‍❤️‍💋‍🧑🏿,🧑🏾‍❤️‍💋‍🧑🏻,🧑🏾‍❤️‍💋‍🧑🏼,🧑🏾‍❤️‍💋‍🧑🏽,🧑🏾‍❤️‍💋‍🧑🏿,🧑🏿‍❤️‍💋‍🧑🏻,🧑🏿‍❤️‍💋‍🧑🏼,🧑🏿‍❤️‍💋‍🧑🏽,🧑🏿‍❤️‍💋‍🧑🏾 -👩‍❤️‍💋‍👨️ 2にんできす,かっぷる,きす,じょせい,じょせいとだんせいできす,だんせい,ちゅっ,はーと -👨‍❤️‍💋‍👨️ 2にんできす,かっぷる,きす,だんせい,だんせいとだんせいできす,ちゅっ,はーと -👩‍❤️‍💋‍👩️ 2にんできす,かっぷる,きす,じょせい,じょせいとじょせいできす,ちゅっ,はーと -💑️ あつあつ,かっぷる,かっぷるとはーと,こいびと,はーと,恋人,熱々 💑🏻,💑🏼,💑🏽,💑🏾,💑🏿,🧑🏻‍❤️‍🧑🏼,🧑🏻‍❤️‍🧑🏽,🧑🏻‍❤️‍🧑🏾,🧑🏻‍❤️‍🧑🏿,🧑🏼‍❤️‍🧑🏻,🧑🏼‍❤️‍🧑🏽,🧑🏼‍❤️‍🧑🏾,🧑🏼‍❤️‍🧑🏿,🧑🏽‍❤️‍🧑🏻,🧑🏽‍❤️‍🧑🏼,🧑🏽‍❤️‍🧑🏾,🧑🏽‍❤️‍🧑🏿,🧑🏾‍❤️‍🧑🏻,🧑🏾‍❤️‍🧑🏼,🧑🏾‍❤️‍🧑🏽,🧑🏾‍❤️‍🧑🏿,🧑🏿‍❤️‍🧑🏻,🧑🏿‍❤️‍🧑🏼,🧑🏿‍❤️‍🧑🏽,🧑🏿‍❤️‍🧑🏾 -👩‍❤️‍👨️ あつあつ,かっぷる,かっぷるとはーと,こいびと,じょせい,じょせいとだんせいのかっぷる,だんせい,はーと -👨‍❤️‍👨️ あつあつ,かっぷる,かっぷるとはーと,こいびと,だんせい,だんせいとだんせいのかっぷる,はーと -👩‍❤️‍👩️ あつあつ,かっぷる,かっぷるとはーと,こいびと,じょせい,じょせいとじょせいのかっぷる,はーと -👨‍👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,だんせい,だんせいとじょせいとおとこのこのかぞく,女性,家族,家族: 男性 女性 男の子,男の子,男性,親子 -👨‍👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子,男性,親子 -👨‍👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子 男の子,男の子,男性,親子 -👨‍👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,だんせい,だんせいとじょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 男性 女性 男の子 男の子,男の子,男性,親子 -👨‍👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,だんせい,だんせいとじょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 男性 女性 女の子 女の子,男性,親子 -👨‍👨‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとだんせいとおとこのこのかぞく,家族,家族: 男性 男性 男の子,男の子,男性,親子 -👨‍👨‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのこのかぞく,女の子,家族,家族: 男性 男性 女の子,男性,親子 -👨‍👨‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのことおとこのこのかぞく,女の子,家族,家族: 男性 男性 女の子 男の子,男の子,男性,親子 -👨‍👨‍👦‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとだんせいとおとこのことおとこのこのかぞく,家族,家族: 男性 男性 男の子 男の子,男の子,男性,親子 -👨‍👨‍👧‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとだんせいとおんなのことおんなのこのかぞく,女の子,家族,家族: 男性 男性 女の子 女の子,男性,親子 -👩‍👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとじょせいとおとこのこのかぞく,女性,家族,家族: 女性 女性 男の子,男の子,親子 -👩‍👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子,親子 -👩‍👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子 男の子,男の子,親子 -👩‍👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとじょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 女性 女性 男の子 男の子,男の子,親子 -👩‍👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとじょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 女性 女性 女の子 女の子,親子 -👨‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとおとこのこのかぞく,家族,家族: 男性 男の子,男の子,男性,親子 -👨‍👦‍👦️ おとこのこ,おやこ,かぞく,だんせい,だんせいとおとこのことおとこのこのかぞく,家族,家族: 男性 男の子 男の子,男の子,男性,親子 -👨‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのこのかぞく,女の子,家族,家族: 男性 女の子,男性,親子 -👨‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのことおとこのこのかぞく,女の子,家族,家族: 男性 女の子 男の子,男の子,男性,親子 -👨‍👧‍👧️ おやこ,おんなのこ,かぞく,だんせい,だんせいとおんなのことおんなのこのかぞく,女の子,家族,家族: 男性 女の子 女の子,男性,親子 -👩‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとおとこのこのかぞく,女性,家族,家族: 女性 男の子,男の子,親子 -👩‍👦‍👦️ おとこのこ,おやこ,かぞく,じょせい,じょせいとおとこのことおとこのこのかぞく,女性,家族,家族: 女性 男の子 男の子,男の子,親子 -👩‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのこのかぞく,女の子,女性,家族,家族: 女性 女の子,親子 -👩‍👧‍👦️ おとこのこ,おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのことおとこのこのかぞく,女の子,女性,家族,家族: 女性 女の子 男の子,男の子,親子 -👩‍👧‍👧️ おやこ,おんなのこ,かぞく,じょせい,じょせいとおんなのことおんなのこのかぞく,女の子,女性,家族,家族: 女性 女の子 女の子,親子 -🗣️️ かお,しるえっと,はなす,はなすひとのしるえっと -👤️ 1にん,1人,かげ,げすと,げすとあかうんと,しるえっと,じょうはんしん,ひとかげ,ひとのしるえっと,ひとり,上半身,人のしるえっと,人影 -👥️ 2にん,2にんのしるえっと,2人,2人のしるえっと,しるえっと,じょうはんしん,ふたり,上半身 -🫂️ あいさつ,ありがとう,おわかれ,お別れ,こんにちは,さようなら,はぐするひと,はぐする人,挨拶 -👪️ おやこ,かぞく,家族 -🧑‍🧑‍🧒️ おとなふたり,おとなふたりとこどもひとりのかぞく,おやこ,かぞく,こどもひとり,大人二人,子供一人,家族,家族: 大人二人と子供一人,親子 -🧑‍🧑‍🧒‍🧒️ おとなふたり,おとなふたりとこどもふたりのかぞく,おやこ,かぞく,こどもふたり,大人二人,子供二人,家族,家族: 大人二人と子供二人,親子 -🧑‍🧒️ おとなひとり,おとなひとりとこどもひとりのかぞく,おやこ,かぞく,こどもひとり,大人一人,子供一人,家族,家族: 大人一人と子供一人,親子 -🧑‍🧒‍🧒️ おとなひとり,おとなひとりとこどもふたりのかぞく,おやこ,かぞく,こどもふたり,大人一人,子供二人,家族,家族: 大人一人と子供二人,親子 -👣️ あし,あしあと,足,足あと -🦰️ あかげ,あかげのひと,あかちゃ,赤毛,赤毛の人,赤茶 -🦱️ あふろ,かーる,くせげ,くせ毛,ぱんちぱーま,まきげ,巻き毛 -🦳️ ぐれー,こうれいしゃ,しらが,ねんぱい,ろうじん,年配,白髪,老人,高齢者 -🦲️ かがくりょうほう,けがない,すきんへっど,はげあたま,はげ頭,ぼうず,化学療法,坊主,毛がない -🐵️ かお,さる,さるのかお,さるの顔,どうぶつ,動物,猿,顔 -🐒️ さる,どうぶつ,動物,猿 -🦍️ かお,ごりら,どうぶつ,動物,顔 -🦧️ おらんうーたん,さる,どうぶつ,もりのひと,動物,森の人,猿 -🐶️ いぬ,いぬのかお,いぬの顔,かお,どうぶつ,ぺっと,動物,犬,顔 -🐕️ いぬ,どうぶつ,ぺっと -🦮️ あくせしびりてぃ,いぬ,しかく,しょうがい,ほじょ,ほじょけん,もうどうけん,犬,盲導犬,補助犬,視覚,障がい -🐕‍🦺️ あくせしびりてぃ,いぬ,かいじょけん,さーびす,ほじょ,介助犬,犬,補助 -🐩️ いぬ,どうぶつ,ぷーどる,ぺっと,動物,犬 -🐺️ おおかみ,おおかみのかお,おおかみの顔,かお,どうぶつ,動物,狼,顔 -🦊️ かお,きつね,きつねのかお,きつねの顔,どうぶつ,動物,狐,顔 -🦝️ あらいぐま,こうきしん,ずるがしこい,ずる賢い,せんさくずき,どうぶつ,動物,好奇心,詮索好き -🐱️ かお,どうぶつ,ねこ,ねこのかsお,ねこのかお,ねこの顔,ぺっと,動物,猫,顔 -🐈️ どうぶつ,ねこ,ぺっと -🐈‍⬛️ くろ,くろねこ,どうぶつ,ねこ,ふきつ,不吉,動物,猫,黒,黒猫 -🦁️ かお,どうぶつ,らいおん,らいおんのかお,らいおんの顔,動物,顔 -🐯️ えと,かお,しし,じゅうにし,とら,とらのかお,とらの顔,どうぶつ,動物,虎,顔 -🐅️ とら,どうぶつ,動物,虎 -🐆️ どうぶつ,ひょう,動物 -🐴️ うま,うまのかお,かお,どうぶつ,動物,顔,馬,馬の顔 -🫎️ えだつの,しか,しかのかお,どうぶつ,へらじか,へらじかのかお,ほにゅうるい,動物,哺乳類,枝角,鹿 -🫏️ うま,どうぶつ,ほにゅうるい,らば,ろば,動物,哺乳類,馬 -🐎️ うま,けいば,じょうば,どうぶつ,乗馬,動物,競馬,馬 -🦄️ いっかくじゅう,かお,どうぶつ,ゆにこーん,ゆにこーんのかお,ゆにこーんの顔,一角獣,動物,顔 -🦓️ しまうま,しましま,どうぶつ,動物 -🦌️ かお,しか,どうぶつ,動物,顔,鹿 -🦬️ うし,どうぶつ,ばいそん,ばっふぁろー,むれ,やぎゅう,動物,牛,群れ,野牛 -🐮️ うし,うしのかお,えと,かお,じゅうにし,どうぶつ,動物,牛,牛の顔,顔 -🐂️ うし,おうし,せいざ,どうぶつ,動物,星座,牛,牡牛 -🐃️ うし,すいぎゅう,どうぶつ,ばっふぁろー,動物,水牛,牛 -🐄️ うし,どうぶつ,めうし,動物,牛,牝牛 -🐷️ かお,どうぶつ,ぶた,ぶたのかお,ぶたの顔,動物,豚,顔 -🐖️ どうぶつ,ぶた,動物,豚 -🐗️ いのしし,かお,どうぶつ,のぶた,動物,猪,顔 -🐽️ かお,はな,ぶた,ぶたの鼻,ぶたはな,ぶたばな,ぶた鼻,豚,顔,鼻 -🐏️ おひつじ,せいざ,どうぶつ,ひつじ,動物,星座,牡羊,羊 -🐑️ どうぶつ,ひつじ,動物,羊 -🐐️ せいざ,どうぶつ,やぎ,動物,山羊,星座 -🐪️ どうぶつ,らくだ,動物 -🐫️ どうぶつ,ふたこぶ,ふたこぶらくだ,らくだ,動物 -🦙️ あるぱか,ぐあなこ,どうぶつ,びくーな,ようもう,らま,動物,羊毛 -🦒️ きりん,どうぶつ,動物 -🐘️ ぞう,どうぶつ,動物,象 -🦣️ きば,きょだい,ぜつめつ,どうぶつ,まんもす,動物,巨大,牙,絶滅 -🦏️ かお,さい,どうぶつ,動物,顔 -🦛️ かば,どうぶつ,動物 -🐭️ えと,かお,じゅうにし,どうぶつ,ね,ねずみ,ねずみのかお,ねずみの顔,動物,顔 -🐁️ どうぶつ,ねずみ,はつかねずみ,まうす,動物 -🐀️ どうぶつ,ねずみ,らっと,動物 -🐹️ かお,どうぶつ,ねずみ,はむすたー,はむすたーのかお,はむすたーの顔,ぺっと,動物,顔 -🐰️ う,うさぎ,うさぎのかお,うさぎの顔,えと,かお,じゅうにし,どうぶつ,ぺっと,動物,顔 -🐇️ うさぎ,どうぶつ,ぺっと,動物 -🐿️️ どうぶつ,りす -🦫️ だむづくり,だむ作り,どうぶつ,びーばー,動物 -🦔️ とげ,どうぶつ,はりねずみ,動物 -🦇️ きゅうけつき,こうもり,どうぶつ,ばんぱいあ,動物,吸血鬼 -🐻️ かお,くま,くまのかお,くまの顔,どうぶつ,動物,熊,顔 -🐻‍❄️️ くま,しろ,しろくま,どうぶつ,ほっきょく,ほっきょくぐま -🐨️ かお,こあら,どうぶつ,動物,顔 -🐼️ かお,どうぶつ,ぱんだ,ぱんだのかお,ぱんだの顔,動物,顔 -🦥️ どうぶつ,なまけもの,のんびり,ものぐさ,動物 -🦦️ あそびすき,かわうそ,さかなをたべる,どうぶつ,らっこ,動物,遊び好き,魚を食べる -🦨️ あくしゅう,すかんく,どうぶつ,動物,悪臭 -🦘️ おーすとらりあ,かんがるー,じゃんぷ,じょーい,ゆうたいるい,有袋類 -🦡️ あなぐま,どうぶつ,みつあなぐま,動物 -🐾️ あしあと,いぬ,どうぶつ,にくきゅう,ねこ,動物,犬,犬の足跡,猫,肉球,足跡 -🦃️ しちめんちょう,たーきー,とり,どうぶつ,七面鳥,動物,鳥 -🐔️ かお,とり,どうぶつ,にわとり,動物,顔,鳥 -🐓️ おんどり,とり,どうぶつ,動物,鳥 -🐣️ かお,たまご,たまごからかえったひよこ,とり,どうぶつ,ひな,ひなどり,ひな鳥,ひよこ,ふか,動物,卵からかえったひよこ,顔,鳥 -🐤️ かお,とり,どうぶつ,ひな,ひよこ,よこをむいているひよこ,動物,横を向いているひよこ,顔,鳥 -🐥️ とり,どうぶつ,ひな,ひよこ,まえをむいているひよこ,前を向いているひよこ,動物,鳥 -🐦️ かお,とり,どうぶつ,鳥 -🐧️ とり,どうぶつ,ぺんぎん,動物,鳥 -🕊️️ とり,どうぶつ,はと,へいわ -🦅️ とり,どうぶつ,わし,動物,鳥 -🦆️ かも,とり,どうぶつ,動物,鳥 -🦢️ とり,はくちょう,ひな,みにくいあひるのこ,みにくいあひるの子,白鳥,鳥 -🦉️ とり,どうぶつ,ふくろう,動物,鳥 -🦤️ ぜつめつ,とべないとり,とり,どーどー,もーりしゃすとう,もーりしゃす島,絶滅,飛べない鳥,鳥 -🪶️ うもう,かるい,とぶ,とり,はね,羽,羽毛,軽い,飛ぶ,鳥 -🦩️ とり,どうぶつ,ねったい,ぴんくいろ,ぴんく色,ふらみんご,動物,熱帯,鳥 -🦚️ くじゃく,とり,はで,ぴーこっく,孔雀,派手,鳥 -🦜️ おうむ,かいぞく,しゃべる,とり,海賊,鳥 -🪽️ あき,しんわ,つばさ,てんし,とぶ,とり,とりのはね,はね,天使,神話,空,翼,飛ぶ,鳥 -🐦‍⬛️ からす,くろ,くろいとり,くろとり,とり,烏,鳥,黒,黒い鳥,黒鳥 -🪿️ あひる,がちょう,がーがー,とり,まぬけ,鳥 -🐦‍🔥️ しんわ,ひのとり,ふぇにっくす,ふしちょう,不死鳥,火の鳥,神話 -🐸️ かえる,かえるのかお,かえるの顔,かお,どうぶつ,動物,顔 -🐊️ どうぶつ,はちゅうるい,わに,動物,爬虫類 -🐢️ かめ,どうぶつ,はちゅうるい,動物,爬虫類 -🦎️ とかげ,どうぶつ,はちゅうるい,動物,爬虫類 -🐍️ せいざ,どうぶつ,どく,はちゅうるい,へび,動物,星座,毒,爬虫類 -🐲️ えと,かお,じゅうにし,たつ,どうぶつ,どらごん,どらごんのかお,どらごんの顔,りゅう,動物,竜,顔,龍 -🐉️ どうぶつ,どらごん,りゅう,動物,竜,龍 -🦕️ きょうりゅう,そうしょくきょうりゅう,でぃぷろどくす,ぶらきおさうるす,りゅうきゃくるい,恐竜,竜脚類,草食恐竜 -🦖️ きょうりゅう,てぃらのさうるす,恐竜 -🐳️ くじら,しお,しおふき,しおふきくじら,どうぶつ,動物,潮吹き,潮吹きくじら -🐋️ くじら,どうぶつ,動物 -🐬️ いるか,どうぶつ,動物 -🦭️ あざらし,あしか,かいじゅう,とど,どうぶつ,動物,海獣 -🐟️ さかな,せいざ,どうぶつ,魚 -🐠️ さかな,どうぶつ,ねったいぎょ,動物,熱帯魚,魚 -🐡️ さかな,どうぶつ,ふぐ,動物,魚 -🦈️ さかな,さめ,どうぶつ,動物,魚 -🐙️ たこ,どうぶつ,動物 -🐚️ かい,どうぶつ,まきがい,動物,巻き貝,貝 -🪸️ うみ,さんご,さんごしょう,海,珊瑚礁 -🪼️ うみ,くらげ,さす,しょくしゅ,どく,はり,むせきついどうぶつ,刺す,毒,海,無脊椎動物,触手,針 -🐌️ かたつむり,でんでんむし,でんでん虫,むし,虫 -🦋️ ちょう,むし,虫 -🐛️ いもむし,けむし,げじげじ,むし,毛虫,芋虫,虫 -🐜️ あり,むし,虫 -🐝️ はち,みつばち,むし,虫 -🪲️ かぶとむし,こんちゅう,つの,むし,昆虫,虫 -🐞️ てんとうむし,むし,虫 -🦗️ こおろぎ,ばった,むし,虫 -🪳️ がいちゅう,ごきぶり,むし,害虫,虫 -🕷️️ くも,すぱいだー,むし -🕸️️ くも,くものす -🦂️ さそり,せいざ,むし,星座,虫 -🦟️ ういるす,か,ねつ,びょうき,まらりあ,むし,熱,病気,虫,蚊 -🪰️ がいちゅう,はえ,びょうげんきん,ふけつ,むし,不潔,害虫,病原菌,虫 -🪱️ きせいちゅう,みみず,むし,寄生虫,虫 -🦠️ あめーば,ういるす,さいきん,ばくてりあ,びせいぶつ,微生物,細菌 -💐️ はな,はなたば,ぶーけ,花,花束 -🌸️ さくら,はな,桜,花 -💮️ たいへんよくできました,はな,はなまる,よくできました,大変よくできました,大変よく出来ました,花 -🪷️ せいじょう,はす,はすのはな,はすの花,はな,ひんどぅーきょう,ひんどぅー教,ぶっきょう,ろーたす,仏教,清浄,花 -🏵️️ しょくぶつ,はな,はなかざり -🌹️ はな,ばら,花 -🥀️ しおれた,しおれたはな,しおれた花,はな,花 -🌺️ はいびすかす,はな,花 -🌻️ はな,ひまわり,花 -🌼️ かいか,さいたはな,はな,咲いた花,花,開花 -🌷️ ちゅーりっぷ,はな,花 -🪻️ あおむらさき,はな,ひやしんす,らべんだー,花,青紫 -🌱️ しんめ,ふたば,め,双葉,新芽,芽 -🪴️ うえきばち,しょくぶつ,なえ,はちうえ,べらんだ,みずやり,みどり,植木鉢,植物,水やり,緑,苗,鉢植え -🌲️ き,じょうりょくじゅ,常緑樹,木 -🌳️ き,らくようじゅ,木,落葉樹 -🌴️ き,やし,やしのき,やしの木,木 -🌵️ さぼてん,しょくぶつ,植物 -🌾️ いなほ,いね,くさ,すすき,稲,稲穂,草 -🌿️ くさ,は,はっぱ,はーぶ,やくそう,草,葉,薬草 -☘️️ くさ,くろーばー,は -🍀️ 4,くさ,くろーばー,は,よつば,よつばのくろーばー,四つ葉のくろーばー,草,葉 -🍁️ かえで,こうよう,もみじ,紅葉 -🍂️ おちば,かれは,このは,木の葉,枯れ葉,落ち葉 -🍃️ おちば,かぜ,かぜにゆれるは,このは,びゅうびゅう,木の葉,落ち葉,風,風に揺れる葉 -🪹️ えいそう,からっぽのす,す,すづくり,とりのす,営巣,巣,巣作り,空っぽの巣 -🪺️ えいそう,す,すづくり,たまご,とりのす,とりのたまごとす,営巣,巣,巣作り,鳥の卵と巣 -🍄️ きのこ,どく,まっしゅるーむ,やさい,毒,野菜 -🍇️ くだもの,ぐれーぷ,ぶどう,果物 -🍈️ くだもの,めろん,やさい,果物,野菜 -🍉️ くだもの,すいか,やさい,果物,野菜 -🍊️ おれんじ,くだもの,みかん,果物 -🍋️ くだもの,れもん,果物 -🍋‍🟩️ かんきつるい,くだもの,とろぴかる,らいむ,果物,柑橘類 -🍌️ くだもの,ばなな,果物 -🍍️ くだもの,とろぴかる,ぱいなっぷる,ぱいん,果物 -🥭️ くだもの,とろぴかる,まんごー,果物 -🍎️ あかりんご,あっぷる,くだもの,りんご,果物,赤りんご -🍏️ あおりんご,あっぷる,くだもの,りんご,果物,青りんご -🍐️ くだもの,せいようなし,なし,ようなし,果物,洋なし,西洋なし -🍑️ くだもの,ぴーち,もも,果物,桃 -🍒️ くだもの,さくらんぼ,ちぇりー,果物 -🍓️ いちご,くだもの,すとろべりー,果物 -🫐️ くだもの,びるべりー,ぶるーべりー,べりー,果物 -🥝️ きうい,きういふるーつ,くだもの,果物 -🍅️ くだもの,とまと,やさい,果物,野菜 -🫒️ おりーぶ,かじつ,じつ,み,実,果実 -🥥️ くだもの,ここなっつ,ここなつ,やしのみ,やしの実,果物 -🥑️ あぼかど,あぼがど,くだもの,やさい,果物,野菜 -🍆️ なす,やさい,野菜 -🥔️ いも,じゃがいも,ぽてと,やさい,野菜 -🥕️ にんじん,やさい,人参,野菜 -🌽️ こーん,とうもろこし,やさい,野菜 -🌶️️ からい,こうしんりょう,とうがらし,やさい -🫑️ あかぴーまん,とうがらし,ぱぷりか,ぴーまん,やさい,赤ぴーまん,野菜 -🥒️ きゅうり,つけもの,ぴくるす,やさい,漬け物,野菜 -🥬️ きゃべつ,けーる,ちんげんさい,ちんげん菜,はやさい,れたす,葉野菜 -🥦️ ぶろっこりー,やさい,野菜 -🧄️ かおり,におい,にんにく,やくみ,やさい,薬味,野菜,香り -🧅️ たまねぎ,ねぎ,やくみ,やさい,玉ねぎ,薬味,野菜 -🥜️ なっつ,ぴーなっつ,やさい,らっかせい,落花生,野菜 -🫘️ あずき,きんときまめ,びーんず,まめ,れっどきどにー,小豆,豆,金時豆 -🌰️ くり,やさい,栗,野菜 -🫚️ しょうが,じんじゃー,すぱいす,やくみ,生姜,薬味 -🫛️ えだまめ,えんどうまめ,えんどう豆,ぐりーんぴーす,さや,まめ,やさい,枝豆,豆,野菜 -🍄‍🟫️ きのこ,しいたけ,ちゃいろ,まっしゅるーむ,茶色,茸 -🍞️ しょくぱん,ぱん,べーかりー,食ぱん -🥐️ くろわっさん,ぱん,ふらんす,べーかりー -🥖️ ばげっと,ぱん,ふらんすぱん,べーかりー -🫓️ あれぱ,なん,ぱん,ぴたぱん,ふらっとぶれっど,らばし -🥨️ ねじり,ぱん,ぷれっつぇる -🥯️ くりーむちーず,ぱんや,ぱん屋,べーかりー,べーぐる -🥞️ ぱんけーき,ほっとけーき -🧇️ ふんわり,やきがし,わっふる,焼き菓子 -🧀️ ちーず -🍖️ にく,ほねつきにく,ももにく,もも肉,肉,骨付き肉 -🍗️ ちきん,とりももにく,にく,にわとりももにく,ほねつきにく,ももにく,もも肉,肉,骨付き肉,鶏もも肉 -🥩️ すてーき,すてーきにく,すてーき肉,にく,びーふ,ぽーく,らむ,肉 -🥓️ にく,べーこん,肉 -🍔️ はんばーがー,ばーがー -🍟️ ふらいどぽてと,ふれんちふらい,ぽてと,ぽてとふらい -🍕️ ちーず,ぴざ,ぴっつぁ -🌭️ そーせーじ,ふらんくふると,ほっとどっぐ -🥪️ さんどいっち,ぱん -🌮️ たこす,めきしかん -🌯️ そふとたこす,ぶりとー,めきしかん -🫔️ たまる,たまれす,ちまき,めきしかん -🥙️ けばぶ,けばぶさんど,らっぷさんど -🧆️ ころっけ,にくだんご,ひよこまめ,ふぁらふぇる,肉団子 -🥚️ たまご,卵 -🍳️ たまご,ふらいぱん,めだまやき,りょうり,卵,料理,目玉焼き -🥘️ しーふーど,ぱえりあ -🍲️ しちゅー,なべ,なべりょうり,にこみ,にもの,煮物,煮込み,鍋 -🫕️ すいす,ちょこ,ちーず,とかす,なべ,ふぉんでゅ,溶かす,鍋 -🥣️ おかゆ,しりある,ちょうしょく,ぼうるとすぷーん,朝食 -🥗️ ぐりーん,ぐりーんさらだ,さらだ -🍿️ おかし,お菓子,ぽっぷこーん -🧈️ にゅうせいひん,ばたー,乳製品 -🧂️ しお,ちょうみりょう,ふりかけようき,やくみ,塩,振りかけ容器,薬味,調味料 -🥫️ かん,かんづめ,ひじょうしょく,缶,缶詰,非常食 -🍱️ えきべん,べんとう,まくのうち,幕の内,弁当,駅弁 -🍘️ おかし,おせんべい,お菓子,せんべい -🍙️ おにぎり,おむすび,こめ,米 -🍚️ こめ,ごはん,ちゃわん,らいす,米 -🍛️ かれー,かれーらいす,らいす -🍜️ あつあつ,どんぶり,らーめん,熱々 -🍝️ すぱげってぃ,すぱげってぃー,ぱすた -🍠️ いも,さつまいも,やきいも,焼き芋,芋 -🍢️ おでん -🍣️ おすし,お寿司,すし -🍤️ えび,えびふらい,てんぷら,ふらい,天ぷら -🍥️ うず,うずまき,なると,ねりもの,渦巻き,練り物 -🥮️ あき,おいわい,お祝い,げっぺい,ちゅうかかし,ちゅうしゅうせつ,ちゅうしゅうぶし,中秋節,中華菓子,月餅,秋 -🍡️ おだんご,お団子,だんご,わがし,和菓子 -🥟️ ぎょうざ,てんしん,にくまん,点心,肉まん -🥠️ おみくじ,ふぉーちゅんくっきー -🥡️ ちゅうか,ていくあうとべんとう,ていくあうと弁当,べんとう,もちかえり,中華,弁当,持ち帰り -🦀️ かに,せいざ,どうぶつ,動物,星座 -🦞️ ざりがに,しーふーど,はさみ,びすく,ろぶすたー -🦐️ えび,しゅりんぷ,しーふーど,どうぶつ,動物 -🦑️ いか,しーふーど,どうぶつ,動物 -🦪️ おいすたー,かい,かき,ぎょかい,しーふーど,なまがき,牡蠣,生がき,貝,魚介 -🍦️ あいす,おかし,すいーつ,そふと,そふとくりーむ,でざーと -🍧️ あいす,おかし,かきごおり,かき氷,こおり,でざーと,氷 -🍨️ あいす,あいすくりーむ,おかし,すいーつ,でざーと -🍩️ おかし,お菓子,すいーつ,でざーと,どーなつ -🍪️ おかし,お菓子,くっきー,すいーつ,でざーと -🎂️ おたんじょうび,けーき,たんじょうび,ばーすでー,ばーすでーけーき,誕生日 -🍰️ おかし,お菓子,けーき,しょーとけーき,すいーつ,でざーと -🧁️ おかし,お菓子,かっぷけーき,けーき,すいーつ,べーかりー -🥧️ おかし,お菓子,たると,ぱい -🍫️ おかし,お菓子,すいーつ,ちょこ,ちょこれーと,でざーと -🍬️ あめ,おかし,お菓子,きゃんでぃ,きゃんでぃー -🍭️ あめ,おかし,お菓子,きゃんでぃ,きゃんでぃー,ぺろぺろきゃんでぃ,ぼうつききゃんでぃ,棒付ききゃんでぃ -🍮️ おかし,お菓子,すいーつ,でざーと,ぷりん -🍯️ あまい,はちみつ,はにー,はにーぽっと,みつびん,甘い -🍼️ あかちゃん,ほにゅうびん,ほにゅう瓶,みるく,赤ちゃん -🥛️ ぎゅうにゅう,ぎゅうにゅういりのこっぷ,こっぷ,みるく,牛乳,牛乳入りのこっぷ -☕️ あたたかいのみもの,かっぷ,きっさてん,こうちゃ,こーひー,のみもの,ほっとどりんく -🫖️ おちゃ,お茶,きゅうす,ちゃき,てぃーぽっと,のみもの,急須,茶器,飲み物 -🍵️ おちゃ,お茶,のみもの,ゆのみ,りょくちゃ,湯飲み,緑茶,飲み物 -🍶️ お酒,さけ,とっくり,にほんしゅ,徳利,日本酒,酒 -🍾️ あわ,しゃんぱん,しゃんぺん,すぱーくりんぐわいん,すぷまんて,ぼとる,泡 -🍷️ ぐらす,ばー,わいん,わいんぐらす -🍸️ かくてる,かくてるぐらす,ぐらす,ばー -🍹️ かくてる,とろぴかる,とろぴかるどりんく,ばー -🍺️ いざかや,じょっき,ばー,びーる,びーるじょっき,居酒屋 -🍻️ えんかい,かんぱい,じょっき,びーる,びーるでかんぱい,びーるで乾杯,乾杯,宴会 -🥂️ かんぱい,ぐらすでかんぱい,ぐらすで乾杯,しゃんぱん,しゃんぺん,すぱーくりんぐわいん,すぷまんて,乾杯 -🥃️ うぃすきー,ういすきー,ぐらす,たんぶらー,たんぶらーぐらす -🫗️ えきたい,がらす,こっぷ,こっぷからそそぐ,こっぷから注ぐ,こぼす,そそぐ,のみもの,液体,飲み物 -🥤️ こっぷ,じゅーす,すとろーかっぷ -🧋️ おちゃ,お茶,たぴおか,たぴおかどりんく,どりんく,ばぶるてぃー,みるくてぃー -🧃️ かみぱっくいんりょう,じゅーす,どりんく,のみもの,紙ぱっく飲料,飲み物 -🧉️ おちゃ,お茶,どりんく,のみもの,まてちゃ,まて茶,飲み物 -🧊️ かくごおり,こおり,つめたい,冷たい,氷,角氷 -🥢️ おはし,はし -🍽️️ おさら,さら,ないふ,ないふとふぉーくとさら,ふぉーく -🍴️ かとらりー,ないふ,ないふとふぉーく,ないふ・ふぉーく,ふぉーく,れすとらん -🥄️ かとらりー,しょっき,すぷーん,食器 -🔪️ ないふ,ほうちょう,りょうり,包丁,料理 -🫙️ あき,あきびん,からのびん,ちょうみりょう,びん,ほぞん,ようき,保存,容器,瓶,空,調味料 -🏺️ かめ,せいざ,つぼ,みずがめ,壺,星座,水瓶 -🌍️ あふりか,ちきゅう,よーろっぱ -🌎️ あめりか,あめりかたいりく,ちきゅう -🌏️ あじあ,おーすとらりあ,ちきゅう,地球 -🌐️ しごせん,しごせんのあるちきゅう,ちきゅう,地球,子午線,子午線のある地球 -🗺️️ せかい,せかいちず,ちず -🗾️ ちず,にっぽん,にっぽんちず,にほん,にほんちず,地図,日本,日本地図 -🧭️ おりえんてーりんぐ,こうかい,こうくう,こんぱす,じしゃく,磁石,航海,航空 -🏔️️ かんせつ,やま,ゆき,ゆきやま -⛰️️ さんがく,やま -🌋️ かざん,ふんか,やま,噴火,山,火山 -🗻️ ふじさん,やま,富士山,山 -🏕️️ きゃんぷ,てんと,やま -🏖️️ すなはま,ぱらそる,びーち,びーちぱらそる -🏜️️ さばく,さぼてん,さぼてんのあるさばく -🏝️️ しま,むじんとう,やし,やしのきのあるしま -🏞️️ こうえん,こくりつこうえん,しぜん -🏟️️ きょうぎじょう,すたじあむ,やきゅうじょう -🏛️️ しせき,れきし,れきしてきけんぞうぶつ,れきしてきなたてもの -🏗️️ くれーん,けんせつ,けんせつちゅう,こうじ -🧱️ かべ,しっくい,ねんど,もるたる,れんが,壁,粘土 -🪨️ おもたい,かたい,がんせき,きょがん,せきざい,岩石,巨岩,石材,硬い,重たい -🪵️ ざいもく,じゅもく,まるた,もくざい,ろぐ,丸太,木材,材木,樹木 -🛖️ こや,ばんがろー,ゆると,わらぶきこや,わらぶき小屋,小屋 -🏘️️ いえ,じゅうたくがい,ふくすうのいえ,まち -🏚️️ あきや,いえ,たてもの,はいおく -🏠️ いえ,かおく,たてもの,まいほーむ,家 -🏡️ いえ,うち,たてもの,にわ,にわつきのいえ,ほーむ,まいほーむ,家,庭,庭付きの家,建物 -🏢️ おふぃすびる,たてもの,びる,建物 -🏣️ たてもの,ゆうびん,ゆうびんきょく,建物,郵便,郵便局 -🏤️ せいようのゆうびんきょく,たてもの,ゆうびん,建物,西洋の郵便局,郵便 -🏥️ いしゃ,くすり,たてもの,びょういん,医者,建物,病院,薬 -🏦️ ぎんこう,たてもの,建物,銀行 -🏨️ たてもの,ほてる,建物 -🏩️ たてもの,ほてる,らぶほ,らぶほてる,建物 -🏪️ こんびに,こんびにえんすすとあ,たてもの,建物 -🏫️ がっこう,たてもの,学校,建物 -🏬️ たてもの,でぱーと,ひゃっかてん,建物,百貨店 -🏭️ こうじょう,こうば,たてもの,工場 -🏯️ おしろ,しろ,たてもの,にっぽん,にほん,城,建物,日本 -🏰️ おしろ,きゃっする,しろ,せいようのしろ,たてもの,城,建物,西洋の城 -💒️ きょうかい,けっこん,けっこんしき,しきじょう,たてもの,建物,式場,教会,結婚,結婚式 -🗼️ たわー,とうきょう,とうきょうたわー,東京,東京たわー -🗽️ あめりか,じゆうのめがみ,ちょうぞう,にゅーよーく,めがみ,彫像,自由の女神 -⛪️ きょうかい,きりすときょう,しゅうきょう,たてもの,ちゃぺる -🕌️ いすらむきょう,いすらむ教,しゅうきょう,たてもの,もすく,宗教,建物 -🛕️ しゅうきょう,たてもの,てら,ひんずーきょう,ひんずー教,ひんどぅーきょうのじいん,ひんどぅー教の寺院,宗教,寺,建物 -🕍️ しなごーぐ,しゅうきょう,たてもの,ゆだやきょう,ゆだや教,宗教,建物 -⛩️️ しゅうきょう,しんとう,じんじゃ,たてもの,とりい -🕋️ いすらむきょう,いすらむ教,かーば,しゅうきょう,せいち,たてもの,めっか,宗教,建物,聖地 -⛲️ こうえん,ふんすい -⛺️ きゃんぷ,てんと -🌁️ きり,きりのとかい,とかい,都会,霧,霧の都会 -🌃️ ながれぼし,ほし,やけい,よる,よるのとかい,夜,夜の都会,夜景,星 -🏙️️ こうそうびる,とかい,びるぐん -🌄️ あさ,あさひ,ごらいこう,ご来光,たいよう,ひので,やまからひので,太陽,山から日の出,日の出,朝,朝日 -🌅️ あさ,あさひ,たいよう,ひので,太陽,日の出,朝,朝日 -🌆️ とかい,ゆうがた,ゆうぐれ,ゆうぐれのとかい,ゆうひ,よる,夕方,夕日,夕暮れ,夕暮れの都会,都会 -🌇️ たいよう,ゆうがた,ゆうぐれ,ゆうひ,夕方,夕日,夕暮れ,太陽 -🌉️ はし,やけい,よる,よるのはし,夜,夜の橋,夜景,橋 -♨️️ いいきぶん,おんせん,おんせんまーく -🎠️ めりーごーらんど,ゆうえんち,遊園地 -🛝️ こうえん,すべりだい,すべり台,ゆうぐ,公園,遊具 -🎡️ かんらんしゃ,ゆうえんち,観覧車,遊園地 -🎢️ こーすたー,じぇっとこーすたー,ゆうえんち,遊園地 -💈️ さんぱつ,とこや,ばーばー,びよういん,びようしつ,へあさろん,りはつてん,床屋,理髪店,美容室,美容院 -🎪️ いべんと,さーかす,さーかすてんと,てんと -🚂️ sl,えすえる,じょうききかんしゃ,のりもの,れっしゃ,乗り物,列車,蒸気機関車 -🚃️ でんしゃ,のりもの,れっしゃ,乗り物,列車,電車 -🚄️ しんかんせん,でんしゃ,のりもの,乗り物,新幹線,電車 -🚅️ 0けい,0系,0系新幹線,しんかんせん,ぜろけいしんかんせん,でんしゃ,のぞみ,のりもの,まるいしんかんせん,丸い新幹線,乗り物,新幹線,電車 -🚆️ でんしゃ,でんしゃしょうめん,のりもの,れっしゃ,乗り物,列車,電車,電車正面 -🚇️ ちかてつ,でんしゃ,のりもの,めとろ,地下鉄 -🚈️ でんしゃ,のりもの,らいとれーる,乗り物,電車 -🚉️ えき,でんしゃ,のりもの,ふみきり,れっしゃ,乗り物,列車,踏み切り,電車,駅 -🚊️ でんしゃ,のりもの,ろめんでんしゃ,ろめんでんしゃしょうめん,乗り物,路面電車,路面電車正面,電車 -🚝️ でんしゃ,のりもの,ものれーる,乗り物,電車 -🚞️ でんしゃ,とざんてつどう,とざんでんしゃ,のりもの,乗り物,登山鉄道,登山電車,電車 -🚋️ でんしゃ,のりもの,ろめんでんしゃ,乗り物,路面電車,電車 -🚌️ のりもの,ばす,乗り物 -🚍️ のりもの,ばす,ばすしょうめん -🚎️ とろりーばす,のりもの,ばす,乗り物 -🚐️ のりもの,ばす,まいくろばす,乗り物 -🚑️ きゅうきゅうしゃ,のりもの,救急車 -🚒️ しょうぼうしゃ,のりもの,乗り物,消防車 -🚓️ けいさつ,のりもの,ぱとかー,乗り物,警察 -🚔️ けいさつ,のりもの,ぱとかー,ぱとかーしょうめん -🚕️ たくしー,のりもの,乗り物 -🚖️ たくしー,たくしーしょうめん,たくしー正面,のりもの,乗り物 -🚗️ くるま,じどうしゃ,のりもの,乗り物,自動車,車 -🚘️ くるま,じどうしゃ,じどうしゃしょうめん,のりもの -🚙️ rv,rv車,suv,suvくるま,suv車,あーるぶいしゃ,あーるぶい車,えすゆーぶいしゃ,くるま,じどうしゃ,のりもの,乗り物,自動車,車 -🛻️ くるま,けいとらっく,とらっく,のりもの,はいたつ,ぴっくあっぷとらっく,乗り物,車,軽とらっく,配達 -🚚️ くるま,とらっく,のりもの,はいたつ,乗り物,車,配達 -🚛️ くるま,とらっく,とれーらー,のりもの,乗り物,車 -🚜️ くるま,とらくたー,のりもの,乗り物,車 -🏎️️ f1,えふわん,くるま,すぽーつ,のりもの,もーたーすぽーつ,れーしんぐかー -🏍️️ おーとばい,おーとれーす,すぽーつ,のりもの,ばいく,もーたーすぽーつ -🛵️ げんつき,すくーたー,原付 -🦽️ あくせしびりてぃ,いす,くるまいす,しゅどうしきくるまいす,手動式車椅子,椅子,車椅子 -🦼️ あくせしびりてぃ,いす,くるまいす,でんどうくるまいす,椅子,車椅子,電動車椅子 -🛺️ おーとりくしゃー,さんりんたくしー,たくしー,とぅくとぅく,りくしゃー,三輪たくしー -🚲️ じてんしゃ,のりもの,自転車 -🛴️ きっくすくーたー,きっくすけーたー,きっくぼーど -🛹️ すけぼー,すけーとぼーど,ぼーど -🛼️ すけーと,すぽーつ,ろーらーすけーと -🚏️ のりもの,ばすてい,ばすのりば,ばす乗り場,ばす停,乗り物 -🛣️️ こうそく,こうそくどうろ,どうろ -🛤️️ せんろ,てつどう -🛢️️ せきゆ,どらむかん -⛽️ がすすたんど,がそりん,がそりんすたんど,がそりんのずる -🛞️ しゃりん,すぽーく,たいや,ほいーる,車輪 -🚨️ ぱとかー,ぱとらんぷ -🚥️ しんごう,しんごうき,しんごうよこ,信号,信号横,信号機 -🚦️ しんごう,しんごうき,しんごうたて,信号,信号機,信号縦 -🛑️ すとっぷ,とまれ,とまれのひょうしき,ひょうしき,標識,止まれ,止まれの標識 -🚧️ こうじちゅう,さいん,つうこうどめ,工事中,通行止め -⚓️ いかり,ふね,みなと -🛟️ あんぜん,うきわ,きゅうめいぐ,きゅうめいふかん,らいふせーばー,れすきゅー,安全,救命具,救命浮環,浮き輪 -⛵️ のりもの,はんせん,ふね,ぼーと,よっと,りぞーと -🛶️ かぬー,かやっく,のりもの,ふね,ぼーと,乗り物,船 -🚤️ すぴーどぼーと,のりもの,ふね,ぼーと,乗り物,船 -🛳️️ きゃくせん,のりもの,ふね,りょかくせん -⛴️️ のりもの,ふぇりー,ふね -🛥️️ のりもの,ふね,ぼーと,もーたーぼーと -🚢️ のりもの,ふね,乗り物,船 -✈️️ のりもの,ひこうき -🛩️️ こがたき,こがたひこうき,のりもの,ひこうき -🛫️ のりもの,ひこうき,ひこうきりりく,りりく,乗り物,離陸,飛行機,飛行機離陸 -🛬️ ちゃくりく,のりもの,ひこうき,ひこうきちゃくりく,乗り物,着陸,飛行機,飛行機着陸 -🪂️ すかいだいびんぐ,ぱらぐらいだー,ぱらしゅーと -💺️ いす,ざせき,せき,席,座席,椅子 -🚁️ のりもの,へり,へりこぷたー,乗り物 -🚟️ けんすいしきものれーる,でんしゃ,のりもの,ものれーる,乗り物,懸垂式ものれーる,電車 -🚠️ けーぶるかー,ごんどら,のりもの,乗り物 -🚡️ ごんどら,のりもの,ろーぷうぇい,乗り物 -🛰️️ うちゅう,じんこうえいせい -🚀️ うちゅう,のりもの,ろけっと,乗り物,宇宙 -🛸️ ufo,うちゅう,そらとぶえんばん,のりもの,ゆーふぉー,乗り物,宇宙,空飛ぶ円盤 -🛎️️ べる,べるぼーいべる,ほてる -🧳️ すーつけーす,ぱっきんぐ,りょこう,りょこうかばん,旅行,旅行かばん -⌛️ すな,すなどけい,とけい -⏳️ すな,すながおちているすなどけい,すなどけい,とけい,砂時計 -⌚️ うでどけい,とけい -⏰️ あらーむ,とけい,めざまし,めざましどけい,時計 -⏱️️ すとっぷうぉっち,とけい -⏲️️ たいまー,とけい -🕰️️ おきどけい,とけい,まんてるくろっく -🕛️ 12:00,12じ,しょうご,じゅうにじ,とけい,時計,12じ -🕧️ 12:30,12じはん,とけい -🕐️ 1:00,1じ,いちじ,とけい,時計,1じ -🕜️ 1:30,1じはん,とけい -🕑️ 2:00,2じ,とけい,にじ,時計,2じ -🕝️ 2:30,2じはん,とけい -🕒️ 3:00,3じ,さんじ,とけい,時計,3じ -🕞️ 3:30,3じはん,とけい -🕓️ 4:00,4じ,とけい,よじ,時計,4じ -🕟️ 4:30,4じはん,とけい -🕔️ 5:00,5じ,ごじ,とけい,時計,5じ -🕠️ 5:30,5じはん,とけい -🕕️ 6:00,6じ,とけい,ろくじ,時計,6じ -🕡️ 6:30,6じはん,とけい -🕖️ 7:00,7じ,しちじ,とけい,ななじ,時計,7じ -🕢️ 7:30,7じはん,とけい -🕗️ 8:00,8じ,とけい,はちじ,時計,8じ -🕣️ 8:30,8じはん,とけい -🕘️ 9:00,9じ,くじ,とけい,時計,9じ -🕤️ 9:30,9じはん,とけい -🕙️ 10:00,10じ,じゅうじ,とけい,めざまし,時計,10じ -🕥️ 10:30,10じはん,とけい -🕚️ 11:00,11じ,じゅういちじ,とけい,時計,11じ -🕦️ 11:30,11じはん,とけい -🌑️ しんげつ,つき,新月,月 -🌒️ つき,はつかづき,はつづき,みかづき,三日月,初月,月 -🌓️ じょうげん,じょうげんのつき,つき,はんげつ,上弦,上弦の月,半月,月 -🌔️ かけづき,じゅうさんやつき,じゅうさんよつき,つき,とおかやのつき,とおかんやのつき,十三夜月,十日夜の月,月 -🌕️ つき,まんげつ,満月 -🌖️ いまちづき,つき,ねまちづき,ねまちのつき,寝待月,居待月,月 -🌗️ かげん,かげんのつき,つき,はんげつ,下弦,下弦の月,半月,月 -🌘️ ありあけづき,つき,みかづき,三日月,月,有明月 -🌙️ つき,みかづき,三日月,月 -🌚️ かお,かおのあるしんげつ,しんげつ,つき,新月,月,顔,顔のある新月 -🌛️ かお,かおのあるじょうげんのつき,じょうげんのつき,つき,みかづき,三日月,上弦の月,月,顔,顔のある上弦の月 -🌜️ かお,かおのあるかげんのつき,かげんのつき,つき -🌡️️ おんど,おんどけい,きおん,てんき -☀️️ たいよう,はれ -🌝️ かお,かおのあるまんげつ,つき,月,顔,顔のある満月 -🌞️ かお,かおのあるたいよう,たいよう,太陽,顔,顔のある太陽 -🪐️ てんたい,どせい,ほし,りんぐ,わくせい,わのあるわくせい,土星,天体,惑星,星,環のある惑星 -⭐️ すたー,ほし -🌟️ かがやき,きらきら,きらきらぼし,きらきら星,すたー,ほし,星,輝き -🌠️ すたー,ながれぼし,ほし,星,流れ星 -🌌️ あまのがわ,ぎんが,ほしぞら,みるきーうぇい,よぞら,夜空,天の川,星空,銀河 -☁️️ くも,くもり,てんき -⛅️ くも,くもり,くもりときどきはれ,たいよう,てんき,ときどきくもり -⛈️️ あめ,いなずま,いなづま,かみなり,くも,てんき,らいう -🌤️️ くも,たいよう,てんき,はれ,はれときどきくもり -🌥️️ くも,くもり,くもりいちじはれ,たいよう,てんき -🌦️️ あめときどきはれ,あめのちはれ,くも,くもり,たいよう,てんき,てんきあめ -🌧️️ あまぐも,あめ,くも,てんき -🌨️️ くも,てんき,ゆき,ゆきぐも -🌩️️ いなずま,いなづま,かみなり,くも,てんき,らいうん -🌪️️ たつまき,てんき,とっぷう -🌫️️ きり,てんき -🌬️️ かお,かおのあるかぜ,かぜ -🌀️ うず,うずまき,くるくる,ぐるぐる,さいくろん,たいふう,はりけーん,めまい,もやもや,台風,渦巻き -🌈️ にじ,れいんぼー,虹 -🌂️ あめ,かさ,てんき,とじたかさ,もちもの,傘,天気,持ち物,閉じた傘,雨 -☂️️ あめ,かさ,てんき,もちもの -☔️ あめ,かさ,かさとあめ,てんき,もちもの -⛱️️ かさ,すなはま,ぱらそる,びーち -⚡️ いなずま,いなづま,かみなり,きけん,こうでんあつ,でんき -❄️️ けっしょう,ゆき,ゆきのけっしょう -☃️️ ゆき,ゆきだるま,ゆきだるまとゆき -⛄️ ゆき,ゆきだるま -☄️️ うちゅう,すいせい -🔥️ ひ,ふぁいあー,ふぁいやー,ほのお,火,炎 -💧️ あせ,しずく,すいてき,たらーっ,なみだ,水滴,汗,涙 -🌊️ うみ,てんき,なみ,はろう,天気,波,波浪,海 -🎃️ かぼちゃ,はろうぃん,はろうぃんかぼちゃ,はろうぃーん -🎄️ くりすます,くりすますいぶ,くりすますつりー,つりー -🎆️ うちあげはなび,おまつり,お祭り,はなび,はなびたいかい,打ち上げ花火,花火,花火大会 -🎇️ おまつり,お祭り,せんこうはなび,はなび,線香花火,花火 -🧨️ かやく,だいなまいと,ばくちく,ばくはつ,ばくやく,火薬,爆発,爆竹,爆薬 -✨️ きらきら,すたー,ぴかぴか,ほし -🎈️ ばるーん,ふうせん,風船 -🎉️ おいわい,お祝い,くらっかー,ぱーてぃー,ぱーてぃーくらっかー -🎊️ おいわい,お祝い,くすだま,くす玉,ぱーてぃー -🎋️ たなばた,たんざく,にっぽん,にほん,わ,七夕,和,日本,短冊 -🎍️ おいわい,お祝い,かどまつ,しょうがつ,たけ,にっぽん,にほん,わ,和,日本,正月,竹,門松 -🎎️ おいわい,おだいりさま,おだいりよう,おだいり様,おひなさま,おひな様,お祝い,にっぽん,にほん,にんぎょう,ひなまつり,ひな祭り,わ,人形,和,日本 -🎏️ おいわい,お祝い,こいのぼり,こどものひ,子供の日 -🎐️ かぜ,すず,なつ,ふうりん,夏,鈴,風,風鈴 -🎑️ お月見,じゅうごや,じゅうごよ,すすき,つき,つきみ,十五夜,月,月見 -🧧️ あかいふうとう,おかね,おとしだま,お年玉,お金,こううん,ごしゅうぎ,ご祝儀,ほんぱお,ほんぼあ,幸運,紅包,赤い封筒 -🎀️ おいわい,お祝い,りぼん -🎁️ おいわい,お祝い,ぎふと,はこ,ぷれぜんと,箱 -🎗️️ おいわい,りぼん,りまいんだー,りまいんだーりぼん -🎟️️ ちけっと,にゅうじょうけん,にゅうじょうぱす,はんけん -🎫️ きっぷ,ちけっと,切符 -🎖️️ おいわい,くんしょう,ひょうしょう,めだる -🏆️ かっぷ,しょうはい,とろふぃー,ひょうしょう,ゆうしょうかっぷ -🏅️ すぽーつ,ひょうしょう,めだる,表彰 -🥇️ 1い,1位,きん,きんめだる,ごーるど,めだる,金,金めだる -🥈️ 2い,2位,ぎん,ぎんめだる,しるばー,めだる,銀,銀めだる -🥉️ 3い,3位,どう,どうめだる,ぶろんず,めだる,銅,銅めだる -⚽️ さっかー,さっかーぼーる,すぽーつ,ぼーる -⚾️ すぽーつ,ぼーる,やきゅう,やきゅうぼーる -🥎️ すぽーつ,そふとぼーる,へたなげ,ぼーる,下手投げ -🏀️ すぽーつ,ばすけ,ばすけっとぼーる,ぼーる -🏐️ すぽーつ,ばれー,ばれーぼーる,ぼーる -🏈️ あめふと,あめりかんふっとぼーる,すぽーつ,ぼーる,らぐびー,らぐびーぼーる -🏉️ すぽーつ,ぼーる,らぐびー,らぐびーぼーる -🎾️ すぽーつ,てにす,てにすぼーる,ぼーる,らけっと -🥏️ あるてぃめっと,ふらいんぐでぃすく,ふりすびー -🎳️ すぽーつ,たま,ぼうりんぐ,ぼーる,球 -🏏️ くりけっと,すぽーつ,ばっと,ぼーる -🏑️ すてぃっく,すぽーつ,ふぃーるどほっけー,ほっけー,ぼーる -🏒️ あいすほっけー,すてぃっく,すぽーつ,ぱっく,ほっけー -🥍️ ごーる,すてぃっく,すぽーつ,ぼーる,らくろす -🏓️ すぽーつ,たっきゅう,ぴんぽん,ぼーる,らけっと,卓球 -🏸️ しゃとる,すぽーつ,ばどみんとん,らけっと -🥊️ ぐろーぶ,すぽーつ,ぼくしんぐ,ぼくしんぐぐろーぶ -🥋️ からて,じゅうどう,すぽーつ,てこんどー,どうぎ,ぶどう,柔道,武道,空手,道着 -🥅️ ごーる,ごーるねっと,すぽーつ,ねっと -⛳️ ごるふ,すぽーつ,はた,ふらぐ,ふらっぐ,ほーる -⛸️️ あいすすけーと,すけーと,すぽーつ,ふぃぎゅあすけーと -🎣️ さかな,すぽーつ,つり,つりざお,釣り,釣り竿,魚 -🤿️ しゅのーけりんぐ,すきゅーば,すぽーつ,だいびんぐ ますく,だいびんぐますく,ますく -🎽️ えきでん,しゃつ,すぽーつ,たすき,ちょうきょりそう,まらそん,らんにんぐ,らんにんぐしゃつ,長距離走,駅伝 -🎿️ いた,すきー,すきーぶーつ,すとっく,すぽーつ,ゆき,板,雪 -🛷️ すけるとん,すぽーつ,そり,そりきょうぎ,そり競技,ぼぶすれー,りゅーじゅ -🥌️ かーりんぐ,すとーん,すぽーつ -🎯️ あたり,すぽーつ,だーつ,てき,ぶるずあい,まと,当たり,的 -🪀️ おもちゃ,かいてん,がんぐ,よーよー,回転,玩具 -🪁️ おもちゃ,かいと,がんぐ,たこ,たこあげ,凧揚げ,玩具 -🔫️ けんじゅう,じゅう,ぴすとる,ぶき,みずでっぽう,りぼるばー,拳銃,武器,水鉄砲,銃 -🎱️ えいとぼーる,すぽーつ,びりやーど,ぼーる -🔮️ うらない,うんめい,すいしょう,すいしょうだま,たま,占い,水晶,水晶玉,玉,運命 -🪄️ つえ,まじゅつ,まほうのつえ,杖,魔法の杖,魔術 -🎮️ げーむ,こんとろーら,こんとろーらー,てれびげーむ,びでおげーむ -🕹️️ げーむ,こんとろーら,じょいすてぃっく,すてぃっく,てれびげーむ -🎰️ すりーせぶん,すろっと,すろっとましん -🎲️ げーむ,さいころ,だいす -🧩️ かぎ,くみあわせ,じぐそーぱずる,ぱずる,ぴーす,組み合わせ,鍵 -🧸️ おもちゃ,がんぐ,くま,てでぃべあ,ぬいぐるみ,玩具 -🪅️ おいわい,お祝い,たんじょうび,にんぎょう,ぱーてぃー,ぴにゃーた,人形,誕生日 -🪩️ きらきら,だんす,でぃすこ,ぱーてぃー,みらーぼーる -🪆️ いれこ,にんぎょう,まとりょーしか,ろしあ,人形,入れ子 -♠️️ かーど,すぺーど,とらんぷ -♥️️ かーど,とらんぷ,はーと -♦️️ かーど,だいあ,だいや,とらんぷ -♣️️ かーど,くらぶ,くろーばー,とらんぷ -♟️️ こま,すてこま,すてごま,ちぇす,ちぇすのこま -🃏️ かーど,じじ,じょーかー,とらんぷ,ばば -🀄️ げーむ,じゃんぱい,ぱい,まーじゃん,まーじゃんぱい -🎴️ かーど,げーむ,はなふだ,花札 -🎭️ えんげい,えんげき,かめん,げいじゅつ,げきじょう,ぶたいげいじゅつ,演劇 -🖼️️ え,かいが,げいじゅつ,びじゅつかん -🎨️ あーと,え,えのぐぱれっと,ぱれっと,びじゅつかん,ふで,絵,絵の具ぱれっと,美術館 -🧵️ いと,いとまき,さいほう,ぬいばり,ひも,糸,糸巻き,縫い針,裁縫 -🪡️ さいほう,ししゅう,すてっち,ぬいばり,ぬう,はり,刺繍,縫い針,縫う,裁縫,針 -🧶️ あみもの,かぎばり,かぎ針,けいと,けいとだま,にっと,毛糸,毛糸玉,編み物 -🪢️ つな,ねじれ,のっと,ひも,むすびめ,ろーぷ,結び目,綱 -👓️ めがね -🕶️️ さんぐらす,めがね -🥽️ ごーぐる,すいえい,ほごめがね,ようせつ,保護めがね,水泳,溶接 -🥼️ いしゃ,かがくしゃ,じっけん,はくい,医者,実験,白衣,科学者 -🦺️ あんぜんべすと,きんきゅう,こうじ,ちょっき,はんしゃ,べすと,反射,安全べすと,工事,緊急 -👔️ しゃつ,たい,ねくたい,ふく,わいしゃつ,服 -👕️ tしゃつ,しゃつ,てぃーしゃつ,ふく,服,tしゃつ -👖️ じーぱん,じーんず,ずぼん,でにむ,ぱんつ,ふく,服 -🧣️ えりまき,くびまき,すかーふ,まふらー,襟巻き,首巻き -🧤️ てぶくろ,手袋 -🧥️ あうたー,おーばー,こーと,じゃけっと,ふく,服 -🧦️ くつした,そっくす,靴下 -👗️ どれす,ふく,わんぴーす,服 -👘️ きもの,ふく,服,着物 -🥻️ さりー,ふく,みんぞくいしょう,服,民族衣装 -🩱️ すいむうぇあ,みずぎ,わんぴーすのみずぎ,わんぴーすの水着,水着 -🩲️ したぎ,すいむうぇあ,ぱんつ,ぶりーふ,みずぎ,下着,水着 -🩳️ したぎ,しょーつ,すいむうぇあ,ぱんつ,みずぎ,下着,水着 -👙️ びきに,ふく,みずぎ,水着 -👚️ しゃつ,ふく,ふじんふく,ぶらうす,婦人服,服 -🪭️ あおぐ,うちわ,おうぎ,かぜ,せんす,なつ,団扇,夏,扇,扇子,風 -👛️ がまぐち,がまぐちざいふ,がま口,こぜにいれ,さいふ,小銭入れ,財布 -👜️ かばん,はんどばっぐ,ばっぐ -👝️ ばっぐ,ぽーち -🛍️️ かみてさげ,かみぶくろ,しょっぴんぐばっぐ,ばっぐ -🎒️ かばん,がっこう,しょうがくせい,しょうがっこう,ばっくぱっく,らんどせる,りゅっくさっく,学校,小学校,小学生 -🩴️ くつ,ごむぞうり,さんだる,とんぐさんだる,びーさん,びーちさんだる,靴 -👞️ かわぐつ,くつ,しんしぐつ,ろーふぁー,紳士靴,革靴,靴 -👟️ あすれちっくしゅーず,くつ,しゅーず,すにーかー,靴 -🥾️ きゃんぷ,とざんくつ,とざんぐつ,はいきんぐ,はいきんぐしゅーず,ばっくぱっく,ぶーつ,登山靴 -🥿️ すりっぽん,ばれえしゅーず,ふらっとしゅーず,ぺたんこくつ,ぺたんこ靴 -👠️ くつ,はいひーる,ひーる,ぴんひーる,ふく,靴 -👡️ くつ,さんだる,ふく,靴 -🩰️ くつ,しゅーず,だんす,とうしゅーず,ばれえ,靴 -👢️ くつ,ふく,ぶーつ,ろんぐぶーつ,靴 -🪮️ あふろ,あふろこーむ,かみ,くし,こーむ,ぶらし,へあぴっく,髪 -👑️ おうかん,かんむり,くらうん,冠,王冠 -👒️ おんなのぼうし,ふじんぼうし,ぼうし,むぎわら,むぎわらぼうし,婦人帽子,帽子,麦わら,麦わら帽子 -🎩️ しるくはっと,ぼうし,帽子 -🎓️ かくぼう,そつぎょう,そつぎょうしき,ぼうし,卒業式 -🧢️ きゃっぷ,ぼうし,やきゅうぼう,帽子,野球帽 -🪖️ ぐんたい,ぐんようへるめっと,せんとう,へいし,へるめっと,みりたりー,兵士,戦闘,軍用へるめっと,軍隊 -⛑️️ きゅうきゅう,しろじゅうじ,しろじゅうじへるめっと,はくじゅうじ,はくじゅうじへるめっと,へるめっと -📿️ いのる,じゅず,ねっくれす,ねんじゅ,ねんず,ろざりお,念珠,数珠,祈る -💄️ くちべに,けしょう,りっぷ,りっぷすてぃっく,化粧,口紅 -💍️ じゅえりー,だいあ,だいや,ゆびわ,りんぐ,指輪 -💎️ じゅえりー,だいあ,だいや,ほうせき,宝石 -🔇️ おとなし,しょうおん,すぴーかー,すぴーかーしょうおん,すぴーかー消音,みゅーと,消音,音無し -🔈️ おんりょう,すぴーかー,ぼりゅーむ -🔉️ おんりょう,おんりょうしょう,すぴーかー,すぴーかーおんりょうしょう,すぴーかー音量小,ぼりゅーむ,音量,音量小 -🔊️ おんりょう,おんりょうだい,すぴーかー,すぴーかーおんりょうだい,すぴーかー音量大,だいおんりょう,ぼりゅーむ,大音量,音量,音量大 -📢️ かくせいき,すぴーかー,めがほん,拡声器 -📣️ かくせいき,すぴーかー,めがほん,拡声器 -📯️ ゆうびん,ゆうびんらっぱ,らっぱ,郵便,郵便らっぱ -🔔️ かね,すず,ちゃぺる,べる,鈴,鐘 -🔕️ おとなし,かね,しょうおん,すず,べるしょうおん,べる消音,みゅーと,消音,鈴,鐘,音無し -🎼️ おんがく,がくふ,ごせん,ごせんふ,すこあ,とおんきごう,と音記号,五線譜,楽譜,音楽 -🎵️ 8分音符,おんがく,おんぷ,はちぶおんぷ,れんぷ,連符,音楽,音符 -🎶️ 8分音符,おんがく,おんぷ,はちぶおんぷ,ふくすうのおんぷ,複数の音符,音楽,音符 -🎙️️ おんがく,すたじおまいく,まいく -🎚️️ おんがく,すらいだー,れべる,れべるすらいだー -🎛️️ おんがく,こんとろーる,こんとろーるつまみ,つまみ,のぶ -🎤️ うた,おんがく,からおけ,まいく,歌,音楽 -🎧️ いやふぉん,いやほん,おんがく,へっどふぉん,へっどほん -📻️ おんがく,じゅしんき,ほうそう,らじお -🎷️ おんがく,がっき,さきそふぉん,さくそふぉん,さっくす,楽器,音楽 -🪗️ あこーでぃおん,おんがく,がっき,じゃばら,楽器,音楽 -🎸️ おんがく,がっき,ぎたー,楽器,音楽 -🎹️ おんがく,がっき,きーぼーど,けんばん,ぴあの,楽器,鍵盤,音楽 -🎺️ おんがく,がっき,とらんぺっと,らっぱ,楽器,音楽 -🎻️ おんがく,がっき,ばいおりん,ゔぃおら,楽器,音楽 -🪕️ おんがく,がっき,ばんじょー,楽器,音楽 -🥁️ おんがく,がっき,たいこ,どらむ,太鼓,楽器,音楽 -🪘️ おんがく,がっき,こんが,たいこ,びーと,りずむ,太鼓,楽器,音楽 -🪇️ おんがく,がっき,しぇいかー,まらかす,りずむ,楽器,音楽 -🪈️ おんがく,がっき,すいそうがく,ふえ,ふるーと,りこーだー,吹奏楽,楽器,笛,音楽 -📱️ けいたい,けいたいでんわ,すまほ,すまーとふぉん,携帯,携帯電話 -📲️ けいたい,けいたいじゅしん,けいたいでんわ,じゅしん,すまほ,すまーとふぉん,ちゃくしんちゅう,でんわはっしん,受信,携帯受信,携帯電話,着信中 -☎️️ おやき,くろでんわ,こていでんわ,でんわ,ぷっしゅほん,ぼたんしきでんわ -📞️ こき,じゅわき,でんわ,受話器,子機,電話 -📟️ ぺーじゃー,ぽけっとべる,ぽけべる -📠️ fax,でんわ,ふぁっくす,ふくごうき,複合機,電話,fax -🔋️ かんでんち,でんち,ばってりー,乾電池,電池 -🪫️ じゅうでんぶそく,じゅうでんやばい,でんちざんりょうていか,ばってりー,ばってりーざんりょうていか,ばってりーぶそく,ばってりー残量低下,充電不足,電池残量低下 -🔌️ こんせんと,でんげん,ぷらぐ,電源 -💻️ pc,こんぴゅーた,こんぴゅーたー,のーとぱそこん,ぱそこん,らっぷとっぷ -🖥️️ pc,こんぴゅーたー,ですくとっぷ,ですくとっぷぱそこん,ぱそこん,ぴーしー -🖨️️ いんさつき,こぴーき,ふくごうき,ぷりんた,ぷりんたー -⌨️️ pc,きーぼーど,こんぴゅーたー,ぱそこん,ぴーしー -🖱️️ pc,こんぴゅーたー,ぱそこん,ぴーしー,まうす -🖲️️ pc,こんぴゅーたー,とらっくぼーる,ぱそこん,ぴーしー -💽️ md,mo,えむおー,えむでぃー,こんぴゅーたー,みにでぃすく,md -💾️ fd,えふでぃー,こんぴゅーたー,でぃすく,ふろっぴー,ふろっぴーでぃすく,fd -💿️ cd,dvd,しーでぃー,でぃすく,ぶるれい,ぶるーれい,cd -📀️ blu-ray,cd,dvd,しーでぃー,でぃすく,でぃーぶいでぃ─,ぶるれい,ぶるーれい,dvd -🧮️ あばかす,そろばん,算盤 -🎥️ えいが,えいがかめら,かめら,むーびー,映画,映画かめら -🎞️️ えいが,えいがふぃるむ,ふぃるむ,ふれーむ,むーびー -📽️️ えいが,えいしゃき,ぷろじぇくたー,むーびー -🎬️ えいが,かちんこ -📺️ てれび,びでお -📷️ かめら,しゃしん -📸️ かめら,かめらふらっしゅ,しゃしん,ふらっしゅ,ふらっしゅをたいているかめら,ふらっしゅを焚いているかめら,写真 -📹️ かめら,どうが,びでお,びでおかめら,むーびー -📼️ vhs,どうが,びでお,びでおかせっと,びでおてーぷ,ぶいえっちえす,動画 -🔍️ けんさく,むしめがね,むしめがねひだり,るーぺ,虫眼鏡 -🔎️ けんさく,しょうさい,むしめがね,むしめがねみぎ,るーぺ,検索,虫めがね,虫眼鏡,虫眼鏡右 -🕯️️ あかり,きゃんどる,ろうそく -💡️ あかり,でんきゅう,ひらめき,ぴこーん,明かり,電球 -🔦️ あかり,かいちゅうでんとう,でんとう,らいと,懐中電灯,明かり -🏮️ あかちょうちん,いざかや,ちょうちん,のみや,居酒屋,赤ちょうちん,飲み屋 -🪔️ あかり,おいる,でぃやらんぷ,らんぷ,明かり -📔️ のーと,ひょうしつきのーと,ぶんぐ,ぶんぼうぐ,文具,文房具,表紙付きのーと -📕️ しょせき,とじたほん,ぶんぼうぐ,ほん,書籍,本,閉じた本 -📖️ しょせき,ひらいたほん,ぶんぼうぐ,ほん,書籍,本,開いた本 -📗️ しょせき,ぶんぼうぐ,ほん,みどりのほん,書籍,本,緑の本 -📘️ あおいほん,あおのほん,しょせき,ぶんぼうぐ,ほん,書籍,本,青の本 -📙️ おれんじのほん,おれんじの本,しょせき,ぶんぼうぐ,ほん,書籍,本 -📚️ しょせき,ぶんぼうぐ,ほん,ほんのやま,本 -📓️ のーと,ぶんぐ,ぶんぼうぐ,文具,文房具 -📒️ だいちょう,のーと,ぶんぐ,ぶんぼうぐ,りんぐのーと,台帳,文具,文房具 -📃️ かーる,しょるい,ぶんしょ,まきぺーじ,巻きぺーじ,文書,書類 -📜️ しょるい,すくろーる,ぶんしょ,ぶんぼうぐ,まきもの,巻き物,文書,書類 -📄️ しょるい,ぶんしょ,ぺーじ,文書,書類 -📰️ しんぶん,しんぶんし,にゅーす,新聞,新聞紙 -🗞️️ しんぶん,しんぶんし,にゅーす,まるめたしんぶん -📑️ ふせん,ぶんぐ,ぶんぼうぐ,ぺーじにふせん,ぺーじに付箋,ぺーじまーく,まーく,付箋,文具,文房具 -🔖️ しおり,たぐ,ふせん,ぶっくまーく,付箋,栞 -🏷️️ たぐ,にふだ,らべる -💰️ おかね,かねぶくろ,きんぶくろ,しょうきん,どる,どるぶくろ,どる袋 -🪙️ おかね,お金,きんか,ぎんか,こいん,こうか,こぜに,小銭,硬貨,金貨,銀貨 -💴️ えん,えんさつ,おかね,おさつ,お札,お金,こぎって,さつたば,つうか,ゆうりょう,円,円札,札束,通貨 -💵️ おかね,おさつ,お札,お金,さつたば,つうか,どる,どるさつ,どる札,札束,通貨 -💶️ おかね,おさつ,お札,お金,さつたば,つうか,ゆーろ,ゆーろさつ,ゆーろ札,札束,通貨 -💷️ おかね,おさつ,お札,お金,さつたば,つうか,ぽんど,ぽんどさつ,ぽんど札,札束,通貨 -💸️ おかね,おさつ,お札,お金,さつたば,どる,はねがはえたおかね,札束,羽が生えたお金 -💳️ おかね,かーど,きゃっしゅかーど,ぎんこう,くれじっとかーど -🧾️ かいけい,ぼき,りょうしゅうしょ,れしーと,会計,簿記,領収書 -💹️ いちば,かぶ,かぶか,かわせ,ぐらふ,しじょう,ちゃーと,市場,株,株価,為替 -✉️️ いーめーる,てがみ,でんしめーる,ふうとう,めーる,ゆうびん -📧️ eめーる,いーめーる,てがみ,でんしめーる,ふうとう,めーる,ゆうびん,封筒,手紙,郵便,電子めーる,eめーる -📨️ eめーる,いーめーる,じゅしん,じゅしんする,じゅしんちゅう,でんしめーる,めーる,めーるじゅしんちゅう,めーる受信中,受信中,電子めーる -📩️ eめーる,いーめーる,そうしん,そうしんする,でんしめーる,めーる,めーるじゅしん,めーるする,めーる受信,送信,電子めーる -📤️ いーめーる,そうしん,そうしんとれい,でんしめーる,とれい,めーる,送信box -📥️ いーめーる,じゅしん,じゅしんとれい,でんしめーる,とれい,めーる,受信box -📦️ こづつみ,たくはいびん,たっきゅうびん,だんぼーる,にもつ,ぱっく,ぱっけーじ,段ぼーる -📫️ てがみあり,とじた,とじたゆうびんうけ,はたつきぽすと,ぽすと,めーる,ゆうびん,ゆうびんうけ,ゆうびんばこ,郵便受け -📪️ てがみなし,とじた,とじたゆうびんうけ,はたつきぽすと,ぽすと,めーる,ゆうびん,ゆうびんうけ,ゆうびんばこ,郵便受け -📬️ てがみあり,ひらいた,ひらいたゆうびんうけ,ぽすと,ゆうびんうけ,ゆうびんばこ -📭️ てがみなし,ひらいた,ひらいたゆうびんうけ,ぽすと,ゆうびんうけ,ゆうびんばこ -📮️ てがみ,ぽすと,ゆうびん,ゆうびんばこ,ゆうびんぽすと,手紙,郵便,郵便ぽすと,郵便箱 -🗳️️ せんきょ,とうひょうばこ -✏️️ えんぴつ,ぶんぐ,ぶんぼうぐ -✒️️ えでぃっと,ぶんぐ,ぶんぼうぐ,ぺん,ぺんさき,まんねんひつ -🖋️️ ぶんぐ,ぶんぼうぐ,まんねんひつ -🖊️️ ぶんぐ,ぶんぼうぐ,ぺん,ぼーるぺん -🖌️️ えのぐ,えふで,ぶんぐ,ぶんぼうぐ -🖍️️ くれよん,ぶんぐ,ぶんぼうぐ -📝️ えんぴつとめも,かみとえんぴつ,ぶんぐ,ぶんぼうぐ,めも,文具,文房具,紙と鉛筆,鉛筆とめも -💼️ かばん,ぶりーふけーす -📁️ ふぁいる,ふぉるだー,ぶんぐ,ぶんぼうぐ,文具,文房具 -📂️ ひらいたふぉるだー,ふぁいる,ふぉるだー,ぶんぐ,ぶんぼうぐ,文具,文房具,開いたふぉるだー -🗂️️ いんでっくす,かーどふぉるだー,ふぉるだー,ぶんぐ,ぶんぼうぐ -📅️ かれんだー,すけじゅーる,ひづけ,よてい,予定,日付 -📆️ かれんだー,すけじゅーる,ひづけ,ひめくり,ひめくりかれんだー,よてい,予定,日めくりかれんだー,日付 -🗒️️ のーと,ぶんぐ,ぶんぼうぐ,めもちょう,りんぐめも -🗓️️ かれんだー,すけじゅーる,つきめくりかれんだー,ひづけ,よてい -📇️ かーどいんでっくす,ぶんぐ,ぶんぼうぐ,めいしほるだー,ろーろでっくす,名刺ほるだー,文具,文房具 -📈️ うえむき,うわむき,おれせんぐらふ,ぐらふ,ぐらふうえむき,ぐらふうわむき,ぐらふ上向き,じょうしょう,上向き,上昇,折れ線ぐらふ -📉️ おれせんぐらふ,かこう,ぐらふ,ぐらふしたむき,ぐらふ下向き,したむき,下向き,下降,折れ線ぐらふ -📊️ ぐらふ,ちゃーと,ぼうぐらふ,棒ぐらふ -📋️ くりっぷ,くりっぷぼーど,ぶんぐ,ぶんぼうぐ -📌️ おしぴん,がびょう,ぴん,ぶんぐ,ぶんぼうぐ,ぷっしゅぴん,押しぴん,文具,文房具,画鋲 -📍️ おしぴん,がびょう,ぴん,ぶんぐ,ぶんぼうぐ,ぷっしゅぴん,まるいおしぴん,丸い押しぴん,押しぴん,文具,文房具,画びょう -📎️ かみくりっぷ,くりっぷ,ぜむくりっぷ,ぶんぐ,ぶんぼうぐ,ぺーぱーくりっぷ,文具,文房具,紙くりっぷ -🖇️️ かみくりっぷ,つながったくりっぷ,ぶんぐ,ぶんぼうぐ,ぺーぱーくりっぷ -📏️ じょうぎ,ぶんぐ,ぶんぼうぐ,ものさし,定規,文具,文房具 -📐️ さんかくじょうぎ,じょうぎ,ぶんぐ,ぶんぼうぐ,三角定規,定規,文具,文房具 -✂️️ かっと,きる,はさみ,びよういん,ぶんぐ,ぶんぼうぐ -🗃️️ かーどふぁいるぼっくす,はこ,ふぁいる,ぶんぐ,ぶんぼうぐ,ぼっくす -🗄️️ きゃびねっと,ひきだし,ふぁいる,ふぁいるきゃびねっと -🗑️️ くずかご,ごみかご,ごみばこ -🔒️ かぎ,じょう,せじょう,とじたじょう,ろっく,ろっくおん,鍵 -🔓️ かいじょう,かぎ,じょう,ひらいたじょう,ろっく,ろっくおふ,鍵 -🔏️ かぎ,とじたじょうとぺん,ぷらいばしー,ろっく,鍵,閉じた錠とぺん -🔐️ あんぜん,かぎ,きー,せきゅりてぃ,とじたじょうとかぎ,ろっく,ろっくかくにん,安全,鍵,閉じた錠と鍵 -🔑️ かぎ,きー,ぱすわーど,鍵 -🗝️️ きー,てがかり,ぱすわーど,ふるいかぎ -🔨️ かなづち,こうぐ,とんかち,はんまー,工具 -🪓️ おの,き,こうぐ,はちぇっと,まきわり,工具,斧,木,薪割り -⛏️️ こうぐ,さいくつ,つるはし -⚒️️ かなづち,こうぐ,つるはし,とんかち,はんまー,はんまーとつるはし -🛠️️ かなづち,こうぐ,とんかち,はんまーとれんち,れんち -🗡️️ たんとう,だがー,ないふ,ぶき -⚔️️ かたな,くろすしたけん,けん,つるぎ,ぶき -💣️ ばくだん,爆弾 -🪃️ おもちゃ,おーすとらりあ,かえってくる,がんぐ,はねかえり,ぶき,ぶーめらん,武器,玩具,跳ね返り,返って来る -🏹️ いて,しゃしゅ,せいざ,ぶき,や,ゆみや,射手,弓矢,星座,武器,矢 -🛡️️ しーるど,たて,ぼうぐ -🪚️ こうぐ,だいく,のこ,のこぎり,は,もっこう,刃,大工,工具,木工 -🔧️ こうぐ,すぱな,れんち,工具 -🪛️ こうぐ,すくりゅーどらいばー,どらいばー,ねじまわし,ねじ回し,工具 -🔩️ こうぐ,なっと,ぼると,ぼるととなっと,ぼると&なっと,工具 -⚙️️ ぎあ,こうぐ,はぐるま -🗜️️ くらんぷ,こうぐ,ばいす,まんりき -⚖️️ かがく,じっけん,せいざ,てんびん,はかり -🦯️ あくせしびりてぃ,しかく,しょうがい,しろつえ,つえ,はくじょう,白杖,視覚,障がい -🔗️ りんく,りんくしんぼる -⛓️‍💥️ くさり,こわれた,こわれたくさり,ちぇーん -⛓️️ くさり,ちぇーん -🪝️ かけがね,かけきん,とめがね,ひっかけ,ふっく,引っ掛け,掛け金,留め金 -🧰️ きかいこう,こうぐばこ,せいびし,つーるぼっくす,めかにっく,工具箱,整備士,機械工 -🧲️ u字型磁石,ていてつ,まぐねっと,ゆーじがたじしゃく,蹄鉄 -🪜️ こうしょさぎょう,すてっぱー,のぼる,はしご,登る,高所作業 -⚗️️ かがく,じっけん,じょうりゅうき -🧪️ かがく,しけんかん,じっけん,らぼ,化学,実験,試験管 -🧫️ せいぶつがく,ばいよう,ばくてりあ,ぺとりさら,ぺとり皿,培養,生物学 -🧬️ dna,いでんし,しんか,せいぶつがく,でぃーえぬえー,生物学,進化,遺伝子 -🔬️ かがく,けんきゅう,けんびきょう,さいえんす,研究,科学,顕微鏡 -🔭️ かがく,かんそく,さいえんす,てんたいかんそく,ぼうえんきょう,天体観測,望遠鏡,科学,観測 -📡️ あんてな,えいせいあんてな,でんぱ,ぱらぼら,ぱらぼらあんてな,衛星あんてな,電波 -💉️ いしゃ,くすり,ちゅうしゃ,ちゅうしゃき,びょうき,医者,注射,注射器,病気,薬 -🩸️ いしゃ,けが,けつえき,けんけつ,せいり,医者,献血,生理,血液 -💊️ いしゃ,かぜぐすり,かぷせる,くすり,びょうき,医者,病気,薬 -🩹️ きず,くすり,けが,てあて,ばんそうこう,傷,手当て,絆創膏,薬 -🩼️ けが,しょうがい,すてっき,つえ,ほこうほじょ,まつばづえ,怪我,杖,松葉杖,歩行補助,障がい -🩺️ いしゃ,しんぞう,ちょうしんき,びょうき,医者,心臓,病気,聴診器 -🩻️ x線,いしゃ,えっくすせん,こっかく,ほね,れんとげん,医者,骨,骨格 -🚪️ と,とびら,どあ,戸,扉 -🛗️ あくせしびりてぃ,えれべーたー,しょうこうき,ばりあふりー,りふと,昇降機 -🪞️ かがみ,すがたみ,はんしゃ,みだしなみ,みらー,反射,姿見,身だしなみ,鏡 -🪟️ あける,かんき,ながめ,ふれーむ,まど,換気,眺め,窓,開ける -🛏️️ すいみん,ねる,べっど,ほてる -🛋️️ そふぁ,そふぁとらんぷ,ほてる,らんぷ -🪑️ いす,かぐ,こしかけ,しーと,ちぇあ,家具,椅子,腰掛け -🚽️ おてあらい,お手洗い,といれ,べんき,べんざ,便器,便座 -🪠️ きゅういんかっぷ,すっぽん,つうすいかっぷ,といれ,ぷらんじゃー,らばーかっぷ,吸引かっぷ,通水かっぷ -🚿️ しゃわー,ふろ,風呂 -🛁️ ばすたぶ,ふろ,よくそう,浴槽,風呂 -🪤️ おびきよせる,おびき寄せる,しかけ,ねずみとり,ねずみ捕り,ばね,まうすとらっぷ,わな,仕掛け -🪒️ かみそり,は,ひげそり,れーざー,刃,剃刀 -🧴️ けしょうすい,しゃんぷー,ひやけどめ,ろーしょん,化粧水,日焼け止め -🧷️ あんぜんぴん,とめぴん,安全ぴん,止めぴん -🧹️ そうじ,はく,ほうき,まじょ,掃く,掃除,魔女 -🧺️ かご,しゅうかく,せんたく,ぴくにっく,収穫,洗濯 -🧻️ きっちんぺーぱー,といれっとぺーぱー,ぺーぱーたおる -🪣️ おけ,ばけつ,ぽりばけつ,ようき,容器 -🧼️ せっけん,そーぷ,ふろ,石けん,風呂 -🫧️ あぶく,あわ,しゃぼんだま,しゃぼん玉,すいちゅう,せっけん,ばぶる,水中,泡,石けん -🪥️ えいせい,おていれ,お手入れ,せんめんじょ,はぶらし,はみがき,むしば,歯ぶらし,歯磨き,洗面所,虫歯,衛生 -🧽️ かいめん,きゅうしゅう,すぽんじ,そうじ,吸収,掃除,海綿 -🧯️ しょうか,しょうかき,しょうかきぐ,しょうぼう,消火,消火器,消火器具,消防 -🛒️ かいもの,かーと,しょっぴんぐ,しょっぴんぐかーと,すーぱー,買い物 -🚬️ きつえん,たばこ,喫煙,煙草 -⚰️️ かんおけ,し,ひつぎ,まいそう -🪦️ おはか,お墓,せきひ,はかば,ぼせき,ぼち,まいそう,埋葬,墓地,墓場,墓石,石碑 -⚱️️ いはい,こつつぼ,し,そうぎ,まいそう -🧿️ おまもり,お守り,じゃし,なざーる,なざーるぼんじゅう,なざーる・ぼんじゅう,びーず,まよけ,邪視,魔除け -🪬️ おまもり,お守り,ごふ,て,はむさ,ふぁーてぃま,みりあむ,め,手,目,護符 -🗿️ かお,ぞう,もあい,もやい,もやい像,像,顔 -🪧️ いぎ,かんばん,こうぎ,しゅちょう,でも,ぷらかーど,主張,抗議,異議,看板 -🪪️ id,あいでぃーかーど,うんてんめんきょしょう,かーど,せきゅりてぃ,みぶんしょう,みぶんしょうめいしょ,身分証,身分証明書,運転免許証 -🏧️ atm,えーてぃーえむ,ぎんこう,げんきんじどうあずけばらいき,現金自動預け払い機,銀行,atm -🚮️ くずかご,ごみすて,ごみばこ,ごみ捨て,ごみ箱 -🚰️ いんりょうすい,すいどう,のみみず,みず,水,水道,飲み水,飲料水 -♿️ くるまいす,ばりあふりー,ばりやふりー -🚹️ wc,おてあらい,けしょうしつ,だんし,だんしといれ,だんせい,といれ,男性 -🚺️ wc,おてあらい,けしょうしつ,じょし,じょしといれ,じょせい,といれ,女性 -🚻️ wc,おてあらい,お手洗い,けしょうしつ,だぶりゅーしー,といれ,化粧室 -🚼️ あかちゃん,あかんぼう,べびー,べびーしーと,赤ちゃん -🚾️ wc,おてあらい,お手洗い,けしょうしつ,だぶりゅーしー,といれ,化粧室 -🛂️ しゅつにゅうこく,しゅつにゅうこくしんさ,にゅうしゅっこく,ぱすぽーとこんとろーる,入出国,出入国,出入国審査 -🛃️ ぜいかん,つうかん,税関,通関 -🛄️ すーつけーす,てにもつ,てにもつうけとり,ばげっじくれーむ,手荷物,手荷物受取 -🛅️ すーつけーす,てにもつ,てにもつあずかり,ろっかー,手荷物,手荷物預かり -⚠️️ きけん,けいこく,ちゅうい,ひょうしき,! -🚸️ がっこう、ようちえん、ほいくしょとうあり,こども,じどうおうだん,つうがくろ,ひょうしき,児童横断,子供,学校、幼稚園、保育所等あり,標識,通学路 -⛔️ きせい,しゃりょうしんにゅうきんし,たちいりきんし,どうろ,ひょうしき -🚫️ きせい,きんし,しゃりょうつうこうどめ,どうろ,ひょうしき,標識,禁止,規制,車両通行止め,道路 -🚳️ きせい,きんし,じてんしゃ,じてんしゃきんし,どうろ,ひょうしき,標識,禁止,自転車,自転車禁止,規制,道路 -🚭️ きんえん,きんし,たばこ,禁煙 -🚯️ きんし,ごみ,ごみすてきんし,ごみ捨て禁止,ぽいすてきんし,ぽい捨て禁止,禁止 -🚱️ いんようふか,きんし,のめないみず,禁止,飲めない水,飲用不可 -🚷️ きせい,きんし,どうろ,ひょうしき,ほこうしゃたちいりきんし,標識,歩行者立入禁止,禁止,規制,道路 -📵️ けいたいきんし,けいたいでんわきんし,すまほきんし,すまほ禁止,すまーとふぉんきんし,すまーとふぉん禁止,携帯禁止,携帯電話禁止 -🔞️ 18きん,18さいみまんきんし,18歳未満禁止,18禁,きんし,みせいねん,未成年,禁止,18きん -☢️️ きけん,ほうしゃせい,ほうしゃせん,ほうしゃのう -☣️️ きけん,ばいおはざーど,ゆうがいぶっしつ -⬆️️ うえ,うえやじるし,きた,やじるし -↗️️ ほくとう,みぎうえ,みぎうえやじるし,やじるし -➡️️ ひがし,みぎ,みぎやじるし,やじるし -↘️️ なんとう,みぎした,みぎしたやじるし,やじるし -⬇️️ した,したやじるし,みなみ,やじるし -↙️️ なんせい,ひだりした,ひだりしたやじるし,やじるし -⬅️️ にし,ひだり,ひだりやじるし,やじるし -↖️️ ひだりうえ,ひだりうえやじるし,ほくせい,やじるし -↕️️ じょうげ,じょうげやじるし,やじるし,やじるしじょうげ -↔️️ さゆう,さゆうやじるし,やじるし,やじるしさゆう -↩️️ かーぶ,きょくせん,ひだり,みぎかーぶやじるし,やじるし -↪️️ かーぶ,きょくせん,ひだりかーぶやじるし,みぎ,やじるし -⤴️️ うえ,うえかーぶやじるし,うえやじるし,かーぶ,きょくせん,ぐっど,やじるし -⤵️️ かーぶ,きょくせん,した,したかーぶやじるし,したやじるし,ばっど,やじるし -🔃️ くりかえし,さいよみこみ,とけいまわり,みぎまわり,みぎまわりたてやじるし,やじるし,りろーど,右回り,右回り縦矢印,時計回り,矢印,繰り返し -🔄️ くりかえし,はんとけいまわり,ひだりまわりやじるし,やじるし,りぴーと,反時計回り,左回り矢印,矢印,繰り返し -🔙️ back,backやじるし,back矢印,ばっく,ばっくやじるし,もどる,やじるし,戻る,矢印 -🔚️ end,endやじるし,end矢印,えんど,えんどやじるし,おわり,やじるし,矢印,終わり -🔛️ on,onやじるし,on矢印,おん,おんやじるし,やじるし,矢印 -🔜️ soon,soonやじるし,soon矢印,すぐ,すーん,すーんやじるし,やじるし,矢印 -🔝️ top,topやじるし,top矢印,うえ,とっぷ,とっぷやじるし,やじるし,上,矢印 -🛐️ いのり,しゅうきょう,れいはいじょ,宗教,礼拝所,祈り -⚛️️ げんし,げんしのしんぼる,げんそ,ぶんし,むしんろん -🕉️️ おーむ,しゅうきょう,ひんどぅーきょう -✡️️ しゅうきょう,だびでのほし,ほし,ゆだやきょう -☸️️ しゅうきょう,てんぼうりん,てんぽうりん,ぶっきょう,ほうりん -☯️️ いんやん,いんよう,しゅうきょう,どうきょう -✝️️ きりすときょう,くろす,しゅうきょう,じゅうじか -☦️️ きりすときょう,しゅうきょう,じゅうじか,はったんじゅうじか -☪️️ いすらむきょう,しゅうきょう,ほし,ほしとみかづき,みかづき -☮️️ ぴーすまーく,へいわ -🕎️ しゅうきょう,しょくだい,めのらー,めのーらー,ゆだやきょう,ゆだや教,宗教,燭台 -🔯️ うらない,だびで,ほし,ろくぼうせい,ろっかくせい,六芒星,六角星,占い,星 -🪯️ かんだ,けん,しくきょう,しく教,しゅうきょう,しーくきょう,しーく教,剣,宗教 -♈️ おひつじざ,せいざ -♉️ おうしざ,せいざ -♊️ せいざ,ふたござ -♋️ かにざ,せいざ -♌️ ししざ,せいざ -♍️ おとめざ,せいざ -♎️ せいざ,てんびんざ -♏️ さそりざ,せいざ -♐️ いてざ,せいざ -♑️ せいざ,やぎざ -♒️ せいざ,みずがめざ -♓️ うおざ,せいざ -⛎️ せいざ,へびつかいざ,へびつかい座,へびつかざ -🔀️ こうさ,しゃっふる,しゃっふるぼたん,ぼたん,やじるし,交差,矢印 -🔁️ くりかえし,ぜんきょく,ぼたん,やじるし,りぴーとぼたん,全曲,矢印,繰り返し -🔂️ 1きょくりぴーとぼたん,1曲りぴーとぼたん,くりかえし,ぼたん,やじるし,りぴーと,矢印,繰り返し -▶️️ さいせい,さいせいぼたん,つぎへ,ぷれい,ぼたん,みぎむきさんかく,やじるし -⏩️ はやおくり,はやおくりぼたん,ぼたん,みぎ,やじるし,早送り -⏭️️ つぎのきょくぼたん,つぎのしーん,つぎのとらっく,ぼたん,やじるし -⏯️️ いちじていし,いちじていしぼたん,さいせい,さいせいぼたん,さいせい/いちじていしぼたん,ぼたん,やじるし -◀️️ ぎゃくさいせい,ぎゃくさいせいぼたん,ひだりむきさんかく,ぼたん,まきもどし,もどる,やじるし -⏪️ はやもどし,はやもどしぼたん,ひだり,まきもどし,もどる,やじるし,巻き戻し -⏮️️ ぼたん,まえのきょくぼたん,まえのしーん,まえのとらっく,やじるし -🔼️ うえ,うえぼたん,うえむきさんかく,さんかく,ぼたん,やじるし,三角,上,上ぼたん,矢印 -⏫️ うえ,こうそくじょうぼたん,にじゅう,ぼたん,やじるし,上二重三角 -🔽️ さんかく,した,したぼたん,したむきさんかく,ぼたん,やじるし,三角,下,下ぼたん,矢印 -⏬️ こうそくしたぼたん,した,にじゅう,ぼたん,やじるし,下二重三角 -⏸️️ いちじていし,いちじていしぼたん,ぼたん,ぽーず -⏹️️ すとっぷ,ていし,ていしぼたん,ぼたん -⏺️️ ぼたん,ろくおん,ろくおんろくがぼたん,ろくが -⏏️️ いじぇくと,とりだし,とりだしぼたん,ぼたん -🎦️ えいが,えいがかん,かめら,どうが,動画,映画,映画館 -🔅️ あかるさ,きど,くらい,ていきど,ぶらいとねす,低輝度,明るさ,暗い,輝度 -🔆️ あかるい,あかるさ,きど,こうきど,ぶらいとねす,明るい,明るさ,輝度,高輝度 -📶️ あんてなまーく,けいたい,けいたいでんわ,けんない,すまほ,すまーとふぉん,でんぱ,圏内,携帯電話,電波 -🛜️ wi-fi,いんたーねっと,すまほ,でんぱ,ねっと,ねっとわーく,ぱそこん,むせん,わいふぁい,わいやれす,電波 -📳️ けいたい,けいたいでんわ,すまほ,すまーとふぉん,まなーもーど,携帯,携帯電話 -📴️ けいたい,けいたいでんわ,けいたいでんわでんげんおふ,すまほ,すまーとふぉん,でんげんおふ,携帯電話電源おふ,電源off,電源おふ -♀️️ おんな,しんぼる,じょせい,じょせいのまーく -♂️️ おとこ,しんぼる,だんせい,だんせいのまーく -⚧️️ lgbt,しんぼる,せいべつ,てぃーじー,とらんすじぇんだーのまーく -✖️️ かけざん,かける,きごう,きゃんせる,じょうざん,ばつ,ぺけ -➕️ +,かさん,きごう,たしざん,たす,ぷらす,+ -➖️ -,きごう,げんざん,ひきざん,ひく,まいなす,ー -➗️ /,÷,きごう,じょさん,わりざん,わる,・,/ -🟰️ いこーる,すうがく,とうごう,ひとしい,ふとじのとうごう,太字の等号,数学,等しい,等号 -♾️️ えいえん,ばんぶつ,むげん,むげんだい -‼️️ !,えくすくらめーしょんまーく,きごう,にじゅうかんたんふ,びっくりまーく,やくもの,!,!! -⁉️️ !,!?,?,かんたんふぎもんふ,きごう,はてなまーく,びっくりまーく,!,!?,? -❓️ ?,あかいぎもんふ,きごう,ぎもんふ,くえすちょん,くえすちょんまーく,はてな,はてなまーく,やくもの,? -❔️ ?,きごう,くえすちょん,くえすちょんまーく,しろいぎもんふ,はてな,はてなまーく,やくもの,? -❕️ !,えくすくらめーしょんまーく,きごう,しろいかんたんふ,びっくり,びっくりまーく,やくもの,! -❗️ !,あかいかんたんふ,えくすくらめーしょんまーく,かんたんふ,きごう,びっくりまーく,やくもの,! -〰️️ きごう,ちょうおんきごう,なみせん,はせん,やくもの,ー -💱️ えん,おかね,お金,がいかりょうがえ,つうか,どる,りょうがえ,両替,円,外貨両替,通貨 -💲️ おかね,お金,つうか,どる,どるきごう,どる記号,通貨 -⚕️️ あすくれぴおすのつえ,いしゃ,いりょう,いりょうのしんぼる,ちりょう -♻️️ さいせい,さいりよう,じゅんかんやじるし,りさいくる,りさいくるまーく -⚜️️ えんぶれむ,ふらんすおうけ,ふるーるどりす,もんしょう,ゆり -🔱️ いかり,うみ,えんぶれむ,とらいでんと,みつまた,三つ又,海,錨 -📛️ なふだ,ほいくえん,ほいくしょ,ようちえん,保育園,保育所,名札,幼稚園 -🔰️ しょしんしゃ,しょしんしゃまーく,はつ,わかばまーく,初心者,初心者まーく,若葉まーく -⭕️ えん,きごう,ふといまる,まる,わ -✅️ きごう,しろぬきのちぇっく,ちぇっく,ちぇっくまーく,ぴん -☑️️ きごう,ちぇっく,ちぇっくぼっくす,ちぇっくまーく -✔️️ きごう,ちぇっく,ちぇっくまーく,ふとじのちぇっく -❌️ かけざん,きごう,きゃんせる,じょうざん,ばつ,ぺけ -❎️ かけざん,きごう,きゃんせる,しろぬきのばつ,じょうざん,ばつ,ぺけ -➰️ きごう,ちょうおん,るーぷ,わっか -➿️ きごう,だぶるるーぷ,ふりーだいやる,るーぷ,わっか -〽️️ あんてん,いおりてん,うたきごう,きごう,やくもの -✳️️ あすたりすく,かざり,きごう,はっかくあすたりすく,ほし,やくもの -✴️️ かざり,きごう,すぱーく,はっかくせい,ほし,やくもの -❇️️ あすたりすく,きごう,すぱーく,すぱーくる,やくもの -©️️ cまーく,きごう,こぴーらいと,しーまーく,ちょさくけん,ちょさくけんまーく -®️️ あーるまーく,きごう,とうろくしょうひょう,とうろくしょうひょうまーく -™️️ tmまーく,きごう,しょうひょう,しょうひょうまーく,てぃーえむまーく,とれーどまーく -#️⃣️ #,かこみすうじ,しゃーぷ,しゃーぷだいやる -*️⃣️ *,かこみすうじ -0️⃣️ 0,かこみすうじ,0 -1️⃣️ 1,かこみすうじ,1 -2️⃣️ 2,かこみすうじ,2 -3️⃣️ 3,かこみすうじ,3 -4️⃣️ 4,かこみすうじ,4 -5️⃣️ 5,かこみすうじ,5 -6️⃣️ 6,かこみすうじ,6 -7️⃣️ 7,かこみすうじ,7 -8️⃣️ 8,かこみすうじ,8 -9️⃣️ 9,かこみすうじ,9 -🔟️ 10,かこみすうじ,囲み数字,囲み数字: 10,10 -🔠️ abcd,あるふぁべっと,えいおおもじのにゅうりょく,えいじ,えーびーしーでぃ,おおもじ,だいもんじ,ろーまじ,ろーま字,大文字,英大文字の入力,英字,abcd -🔡️ abcd,あるふぁべっと,えいこもじのにゅうりょく,えいじ,えーびーしーでぃー,こもじ,ろーまじ,ろーま字,小文字,英字,英小文字の入力,abcd -🔢️ 1234,すうじ,すうじのにゅうりょく,にゅうりょく,入力,数字,数字の入力,1234 -🔣️ 〒♪&%,〒♪&%,〒♪&ぱーせんと,きごう,きごうのにゅうりょく,にゅうりょく,入力,記号,記号の入力 -🔤️ abc,あるふぁべっと,えいご,えいじ,えいじのにゅうりょく,えいびーしー,えーびーしー,ろーまじ,ろーま字,英字,英字の入力,英語,abc -🅰️️ a,えいがた,えーがた,けつえきがた,けつえきがたえいがた,けつえきがたえーがた,a,a型 -🆎️ ab,ab型,えいびーがた,えーびーがた,けつえきがた,けつえきがたえいびーがた,けつえきがたえーびーがた,血液型,血液型ab型,ab,ab型 -🅱️️ b,けつえきがた,けつえきがたびーがた,びーがた,b,b型 -🆑️ cl,clまーく,くりあ,しーえる,しーえるまーく,cl -🆒️ cool,coolまーく,くーる,くーるまーく,cool -🆓️ freeまーく,ただ,ふりー,ふりーまーく,むりょう,無料,free -ℹ️️ i,iまーく,あい,あいまーく,いんふぉめーしょん,いんふぉめーしょんしんぼる,じょうほう -🆔️ id,idまーく,あいでぃ─,あいでぃー,あいでぃーまーく,id -Ⓜ️️ m,えむ,ちかてつ,まる,まるいえむまーく -🆕️ new,newまーく,あたらしい,にゅー,にゅーまーく,新しい,new -🆖️ ng,ngまーく,えぬじー,えぬじーまーく,ぼつ,ng -🅾️️ o,おーがた,けつえきがた,けつえきがたおーがた,o,o型 -🆗️ ok,okまーく,おっけー,おーけー,おーけーまーく,ok -🅿️️ p,ちゅうしゃ,ちゅうしゃじょう,ぱーきんぐ,ぴー,ぴーまーく -🆘️ sos,sosまーく,えすおーえす,えすおーえすまーく,たすけて,助けて,sos -🆙️ up,upまーく,あっぷ,あっぷまーく,こうしん,更新,up -🆚️ vs,vsまーく,ばーさす,ばーさすまーく,ぶいえす,ぶいえすまーく,ゔぁーさす,ゔぃえす,vs -🈁️ ここ,ここのまーく -🈂️️ さ,さのまーく,さーびす,さーびすりょう -🈷️️ げつがく,つき,つきぎめ,つきまーく,月 -🈶️ ゆう,ゆうげん,ゆうまーく,ゆうりょう,有,有まーく,有料,有限 -🈯️ してい,していせき,ゆび,ゆびまーく -🉐️ おとく,お得,とく,まるとく,まる得,得 -🈹️ でぃすかうんと,わり,わりびき,わりまーく,割,割まーく,割引 -🈚️ ただ,む,むまーく,むりょう -🈲️ きん,きんし,きんまーく,げんきん,厳禁,禁,禁まーく,禁止 -🉑️ か,かのう,かまーく,きょか,可,可まーく,可能,許可 -🈸️ しん,しんせい,しんまーく,もうしこみ,もうしこみまーく,申,申し込み,申まーく,申請 -🈴️ ごう,ごうかく,ごうまーく,合,合まーく,合格 -🈳️ あき,あきまーく,から,くう,くうしつ,くうせき,そら,そらまーく,空,空き,空まーく,空室,空席 -㊗️️ いわい,いわいまーく,おいわい,おめでとう,しゅく,しゅくまーく -㊙️️ ごくひ,しゃがいひ,ひ,ひみつ,まるひ -🈺️ えい,えいぎょう,えいぎょうちゅう,えいぎょうび,えいまーく,営,営まーく,営業中,営業日 -🈵️ まん,まんいん,まんしつ,まんしゃ,まんせき,まんまーく,満,満まーく,満員,満室,満席,満車 -🔴️ あか,あかいまる,おおきいまる,おおまる,まる,まるいぼたん,丸,丸いぼたん,赤,赤い丸 -🟠️ おれんじ,おれんじのまる,おれんじの丸,まる,まるいぼたん,丸,丸いぼたん -🟡️ きいろ,きいろいまる,まる,まるいぼたん,丸,丸いぼたん,黄色,黄色い丸 -🟢️ まる,まるいぼたん,みどり,みどりのまる,丸,丸いぼたん,緑,緑の丸 -🔵️ あお,あおいまる,おおきいまる,おおまる,まる,まるいぼたん,丸,丸いぼたん,青,青い丸 -🟣️ まる,まるいぼたん,むらさき,むらさきのまる,丸,丸いぼたん,紫,紫の丸 -🟤️ ちゃいろ,ちゃいろのまる,まる,まるいぼたん,丸,丸いぼたん,茶色,茶色の丸 -⚫️ くろ,くろいまる,まる,まるいぼたん -⚪️ しろ,しろいまる,まる,まるいぼたん -🟥️ あか,あかいしかく,しかく,せいほうけい,四角,正方形,赤,赤い四角 -🟧️ おれんじ,おれんじのしかく,おれんじの四角,しかく,せいほうけい,四角,正方形 -🟨️ きいろ,きいろいしかく,しかく,せいほうけい,四角,正方形,黄色,黄色い四角 -🟩️ しかく,せいほうけい,みどり,みどりのしかく,四角,正方形,緑,緑の四角 -🟦️ あお,あおいしかく,しかく,せいほうけい,四角,正方形,青,青い四角 -🟪️ しかく,せいほうけい,むらさき,むらさきのしかく,四角,正方形,紫,紫の四角 -🟫️ しかく,せいほうけい,ちゃいろ,ちゃいろいしかく,四角,正方形,茶色,茶色い四角 -⬛️ くろ,くろしかくとくだい,しかく,せいほうけい -⬜️ しかく,しろ,しろしかくとくだい,せいほうけい -◼️️ くろ,くろしかくだい,しかく,せいほうけい -◻️️ しかく,しろ,しろしかくだい,せいほうけい -◾️ くろ,くろしかくちゅう,しかく,せいほうけい -◽️ しかく,しろ,しろしかくちゅう,せいほうけい -▪️️ くろ,くろしかくしょう,しかく,せいほうけい -▫️️ しかく,しろ,しろしかくしょう,せいほうけい -🔶️ おおきいおれんじのひしがた,おおきいひしがた,おれんじ,しかく,だいあ,だいや,ひしがた,ひし形,四角,大きいおれんじのひし形,菱形 -🔷️ あお,おおきいあおのひしがた,おおきいひしがた,しかく,だいあ,だいや,ひしがた,ひし形,四角,大きい青のひし形,菱形,青 -🔸️ おれんじ,しかく,だいあ,だいや,ちいさいおれんじのひしがた,ちいさいひしがた,ひしがた,ひし形,四角,小さいおれんじのひし形,菱形 -🔹️ あお,しかく,だいあ,だいや,ちいさいあおのひしがた,ちいさいひしがた,ひしがた,ひし形,四角,小さい青のひし形,菱形,青 -🔺️ あか,あかいうえさんかく,うえ,うえむきさんかく,さんかく,三角,上,赤,赤い上三角 -🔻️ あか,あかいしたさんかく,さんかく,した,したむきさんかく,三角,下,赤,赤い下三角 -💠️ かわいい,だいあ,だいや,どっとつきひしがた,どっと付きひし形,ひしがた,ひし形 -🔘️ にじゅうまる,ぼたん,らじおぼたん,二重丸 -🔳️ しかく,しかくぼたん,しろわくしかく,せいほうけい,ぼたん,四角ぼたん,正方形,白枠四角 -🔲️ くろわくしかく,しかく,しかくぼたん,せいほうけい,ぼたん,四角ぼたん,正方形,黒枠四角 -🏁️ すぽーつ,ちぇっかー,ちぇっかーふらぐ,ちぇっかーふらっぐ,はた,ふらぐ,ふらっぐ,れーす,旗 -🚩️ ごるふ,さんかくのはた,すぽーつ,はた,ふらぐ,ふらっぐ,三角の旗,旗 -🎌️ しゅくじつ,しゅくじつのはた,はた,ひのまる,ふらぐ,ふらっぐ,旗,日の丸,祝日,祝日の旗 -🏴️ くろ,くろはた,こっき,はた,ふらぐ,ふらっぐ,旗,黒,黒旗 -🏳️️ しらはた,しろ,しろはた,はた,はっき,ふらぐ,ふらっぐ -🏳️‍🌈️ lgbt,にじいろのはた,はた,ふらぐ,ふらっぐ,れいんぼー,れいんぼーふらっぐ -🏳️‍⚧️️ lgbt,てぃーじー,とらんすじぇんだー,とらんすじぇんだーふらっぐ,はた,ふらぐ,ふらっぐ -🏴‍☠️️ かいぞく,かいぞくき,じょりーろじゃー,たからもの,ほうもつ,りゃくだつ -🇦🇨️ あせんしょんとう,あせんしょん島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇩️ あんどら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇪️ あらぶ,あらぶしゅちょうこくれんぽう,あらぶ首長国連邦,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇫️ あふがにすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇬️ あんてぃぐあばーぶーだ,あんてぃぐあ・ばーぶーだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇮️ あんぎら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇱️ あるばにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇲️ あるめにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇴️ あんごら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇶️ こっき,なんきょく,なんきょくたいりく,はた,ふらぐ,ふらっぐ,南極,旗 -🇦🇷️ あるぜんちん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇸️ あめりかりょうさもあ,こっき,はた,ふらぐ,ふらっぐ,べいりょうさもあ,旗,米領さもあ -🇦🇹️ おーすとりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇺️ おーすとらりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇼️ あるば,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇽️ おーらんどしょとう,おーらんど諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇦🇿️ あぜるばいじゃん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇧🇦️ こっき,はた,ふらぐ,ふらっぐ,ぼすにあへるつぇごびな,ぼすにあ・へるつぇごびな,旗 -🇧🇧️ こっき,はた,ばるばどす,ふらぐ,ふらっぐ,旗 -🇧🇩️ こっき,はた,ばんぐらでしゅ,ふらぐ,ふらっぐ,旗 -🇧🇪️ こっき,はた,ふらぐ,ふらっぐ,べるぎー,旗 -🇧🇫️ こっき,はた,ふらぐ,ふらっぐ,ぶるきなふぁそ,旗 -🇧🇬️ こっき,はた,ふらぐ,ふらっぐ,ぶるがりあ,旗 -🇧🇭️ こっき,はた,ばーれーん,ふらぐ,ふらっぐ,旗 -🇧🇮️ こっき,はた,ふらぐ,ふらっぐ,ぶるんじ,旗 -🇧🇯️ こっき,はた,ふらぐ,ふらっぐ,べなん,旗 -🇧🇱️ こっき,さんばるてるみー,さん・ばるてるみー,はた,ふらぐ,ふらっぐ,旗 -🇧🇲️ こっき,はた,ばみゅーだ,ふらぐ,ふらっぐ,旗 -🇧🇳️ こっき,はた,ふらぐ,ふらっぐ,ぶるねい,旗 -🇧🇴️ こっき,はた,ふらぐ,ふらっぐ,ぼりびあ,旗 -🇧🇶️ おらんだりょうかりぶ,おらんだ領かりぶ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇧🇷️ こっき,はた,ふらぐ,ふらっぐ,ぶらじる,旗 -🇧🇸️ こっき,はた,ばはま,ふらぐ,ふらっぐ,旗 -🇧🇹️ こっき,はた,ふらぐ,ふらっぐ,ぶーたん,旗 -🇧🇻️ こっき,はた,ふらぐ,ふらっぐ,ぶーべとう,ぶーべ島,旗 -🇧🇼️ こっき,はた,ふらぐ,ふらっぐ,ぼつわな,旗 -🇧🇾️ こっき,はた,ふらぐ,ふらっぐ,べらるーし,旗 -🇧🇿️ こっき,はた,ふらぐ,ふらっぐ,べりーず,旗 -🇨🇦️ かなだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇨️ きーりんぐしょとう,ここす(きーりんぐ)しょとう,ここす(きーりんぐ)諸島,ここすしょとう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇩️ きんしゃさ,こっき,こんごみんしゅきょうわこく,こんごみんしゅきょうわこく(きんしゃさ),こんご民主共和国(きんしゃさ),はた,ふらぐ,ふらっぐ,旗 -🇨🇫️ こっき,ちゅうおうあふりかきょうわこく,はた,ふらぐ,ふらっぐ,中央あふりか共和国,旗 -🇨🇬️ こっき,こんごきょうわこく,こんごきょうわこく(ぶらざびる),こんご共和国(ぶらざびる),はた,ふらぐ,ふらっぐ,ぶらざびる,旗 -🇨🇭️ こっき,すいす,はた,ふらぐ,ふらっぐ,旗 -🇨🇮️ こっき,こーとじぼわーる,はた,ふらぐ,ふらっぐ,旗 -🇨🇰️ くっくしょとう,くっく諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇱️ こっき,ちり,はた,ふらぐ,ふらっぐ,旗 -🇨🇲️ かめるーん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇳️ こっき,ちゅうごく,はた,ふらぐ,ふらっぐ,中国,旗 -🇨🇴️ こっき,ころんびあ,はた,ふらぐ,ふらっぐ,旗 -🇨🇵️ くりっぱーとんとう,くりっぱーとん島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇷️ こすたりか,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇺️ きゅーば,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇻️ かーぼべるで,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇼️ きゅらそー,きゅらそーとう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇽️ くりすますとう,くりすます島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇾️ きぷろす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇨🇿️ こっき,ちぇこ,はた,ふらぐ,ふらっぐ,旗 -🇩🇪️ こっき,どいつ,はた,ふらぐ,ふらっぐ,旗 -🇩🇬️ こっき,でぃえごがるしあとう,でぃえごがるしあ島,はた,ふらぐ,ふらっぐ,旗 -🇩🇯️ こっき,じぶち,はた,ふらぐ,ふらっぐ,旗 -🇩🇰️ こっき,でんまーく,はた,ふらぐ,ふらっぐ,旗 -🇩🇲️ こっき,どみにかこく,どみにか国,はた,ふらぐ,ふらっぐ,旗 -🇩🇴️ こっき,どみにかきょうわこく,どみにか共和国,はた,ふらぐ,ふらっぐ,旗 -🇩🇿️ あるじぇりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇦️ こっき,せうたとめりりゃ,せうた・めりりゃ,はた,ふらぐ,ふらっぐ,旗 -🇪🇨️ えくあどる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇪️ えすとにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇬️ えじぷと,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇭️ こっき,にしさはら,はた,ふらぐ,ふらっぐ,旗,西さはら -🇪🇷️ えりとりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇸️ こっき,すぺいん,はた,ふらぐ,ふらっぐ,旗 -🇪🇹️ えちおぴあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇪🇺️ eu,いーゆー,おうしゅうれんごう,こっき,はた,ふらぐ,ふらっぐ,旗,欧州連合 -🇫🇮️ こっき,はた,ふぃんらんど,ふらぐ,ふらっぐ,旗 -🇫🇯️ こっき,はた,ふぃじー,ふらぐ,ふらっぐ,旗 -🇫🇰️ こっき,はた,ふぉーくらんどしょとう,ふぉーくらんど諸島,ふらぐ,ふらっぐ,旗 -🇫🇲️ こっき,はた,ふらぐ,ふらっぐ,みくろねしあ,みくろねしあれんぽう,みくろねしあ連邦,旗 -🇫🇴️ こっき,はた,ふぇろーしょとう,ふぇろー諸島,ふらぐ,ふらっぐ,旗 -🇫🇷️ こっき,はた,ふらぐ,ふらっぐ,ふらんす,旗 -🇬🇦️ がぼん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇧️ いぎりす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇩️ ぐれなだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇪️ こっき,じょーじあ,はた,ふらぐ,ふらっぐ,旗 -🇬🇫️ こっき,はた,ふつりょうぎあな,ふらぐ,ふらっぐ,ふらんすりょうぎあな,仏領ぎあな,旗 -🇬🇬️ がーんじー,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇭️ がーな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇮️ こっき,じぶらるたる,はた,ふらぐ,ふらっぐ,旗 -🇬🇱️ ぐりーんらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇲️ がんびあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇳️ ぎにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇵️ ぐあどるーぷ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇶️ こっき,せきどうぎにあ,はた,ふらぐ,ふらっぐ,旗,赤道ぎにあ -🇬🇷️ ぎりしゃ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇸️ こっき,さうすじょーじあ・さうすさんどうぃっちしょとう,さうすじょーじあ・さうすさんどうぃっち諸島,はた,ふらぐ,ふらっぐ,旗 -🇬🇹️ ぐあてまら,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇺️ ぐあむ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇼️ ぎにあびさう,こっき,はた,ふらぐ,ふらっぐ,旗 -🇬🇾️ がいあな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇭🇰️ こっき,ちゅうかじんみんきょうわこくほんこんとくべつぎょうせいく,はた,ふらぐ,ふらっぐ,ほんこん,中華人民共和国香港特別行政区,旗 -🇭🇲️ こっき,はた,はーどとう,はーどとうとまくどなるどしょとう,はーどとう・まくどなるどしょとう,はーど島・まくどなるど諸島,ふらぐ,ふらっぐ,まくどなるどしょとう,旗 -🇭🇳️ こっき,はた,ふらぐ,ふらっぐ,ほんじゅらす,旗 -🇭🇷️ くろあちあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇭🇹️ こっき,はいち,はた,ふらぐ,ふらっぐ,旗 -🇭🇺️ こっき,はた,はんがりー,ふらぐ,ふらっぐ,旗 -🇮🇨️ かなりあしょとう,かなりあ諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇩️ いんどねしあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇪️ あいるらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇱️ いすらえる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇲️ こっき,はた,ふらぐ,ふらっぐ,まんとう,まん島,旗 -🇮🇳️ いんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇴️ いぎりすりょういんどようちいき,えいりょういんどようちいき,こっき,はた,ふらぐ,ふらっぐ,旗,英領いんど洋地域 -🇮🇶️ いらく,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇷️ いらん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇸️ あいすらんど,こっき,はた,ふらぐ,ふらっぐ,旗 -🇮🇹️ いたりあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇯🇪️ こっき,じゃーじー,はた,ふらぐ,ふらっぐ,旗 -🇯🇲️ こっき,じゃまいか,はた,ふらぐ,ふらっぐ,旗 -🇯🇴️ こっき,はた,ふらぐ,ふらっぐ,よるだん,旗 -🇯🇵️ こっき,しゅくじつ,にっぽん,にほん,はた,ひのまる,ふらぐ,ふらっぐ,旗,日本 -🇰🇪️ けにあ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇬️ きるぎす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇭️ かんぼじあ,こっき,ころんびあ,はた,ふらぐ,ふらっぐ,旗 -🇰🇮️ きりばす,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇲️ こっき,こもろ,はた,ふらぐ,ふらっぐ,旗 -🇰🇳️ こっき,せんとくりすとふぁーねーゔぃす,せんとくりすとふぁー・ねーゔぃす,はた,ふらぐ,ふらっぐ,旗 -🇰🇵️ きたちょうせん,こっき,はた,ふらぐ,ふらっぐ,北朝鮮,旗 -🇰🇷️ かんこく,こっき,はた,ふらぐ,ふらっぐ,旗,韓国 -🇰🇼️ くうぇーと,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇾️ けいまんしょとう,けいまん諸島,こっき,はた,ふらぐ,ふらっぐ,旗 -🇰🇿️ かざふすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇱🇦️ こっき,はた,ふらぐ,ふらっぐ,らおす,旗 -🇱🇧️ こっき,はた,ふらぐ,ふらっぐ,ればのん,旗 -🇱🇨️ こっき,せんとるしあ,はた,ふらぐ,ふらっぐ,旗 -🇱🇮️ こっき,はた,ふらぐ,ふらっぐ,りひてんしゅたいん,旗 -🇱🇰️ こっき,すりらんか,はた,ふらぐ,ふらっぐ,旗 -🇱🇷️ こっき,はた,ふらぐ,ふらっぐ,りべりあ,旗 -🇱🇸️ こっき,はた,ふらぐ,ふらっぐ,れそと,旗 -🇱🇹️ こっき,はた,ふらぐ,ふらっぐ,りとあにあ,旗 -🇱🇺️ こっき,はた,ふらぐ,ふらっぐ,るくせんぶるく,るくせんぶるぐ,旗 -🇱🇻️ こっき,はた,ふらぐ,ふらっぐ,らとびあ,旗 -🇱🇾️ こっき,はた,ふらぐ,ふらっぐ,りびあ,旗 -🇲🇦️ こっき,はた,ふらぐ,ふらっぐ,もろっこ,旗 -🇲🇨️ こっき,はた,ふらぐ,ふらっぐ,もなこ,旗 -🇲🇩️ こっき,はた,ふらぐ,ふらっぐ,もるどば,旗 -🇲🇪️ こっき,はた,ふらぐ,ふらっぐ,もんてねぐろ,旗 -🇲🇫️ こっき,さんまるたん,さん・まるたん,はた,ふらぐ,ふらっぐ,旗 -🇲🇬️ こっき,はた,ふらぐ,ふらっぐ,まだがすかる,旗 -🇲🇭️ こっき,はた,ふらぐ,ふらっぐ,まーしゃるしょとう,まーしゃる諸島,旗 -🇲🇰️ きたまけどにあ,こっき,はた,ふらぐ,ふらっぐ,まけどにあ,北まけどにあ,旗 -🇲🇱️ こっき,はた,ふらぐ,ふらっぐ,まり,旗 -🇲🇲️ こっき,はた,びるま,ふらぐ,ふらっぐ,みゃんまー,みゃんまー (びるま),旗 -🇲🇳️ こっき,はた,ふらぐ,ふらっぐ,もんごる,旗 -🇲🇴️ こっき,ちゅうかじんみんきょうわこくまかおとくべつぎょうせいく,はた,ふらぐ,ふらっぐ,まかお,中華人民共和国まかお特別行政区,旗 -🇲🇵️ きたまりあなしょとう,こっき,はた,ふらぐ,ふらっぐ,北まりあな諸島,旗 -🇲🇶️ こっき,はた,ふらぐ,ふらっぐ,まるてぃにーく,旗 -🇲🇷️ こっき,はた,ふらぐ,ふらっぐ,もーりたにあ,旗 -🇲🇸️ こっき,はた,ふらぐ,ふらっぐ,もんとせらと,旗 -🇲🇹️ こっき,はた,ふらぐ,ふらっぐ,まるた,旗 -🇲🇺️ こっき,はた,ふらぐ,ふらっぐ,もーりしゃす,旗 -🇲🇻️ こっき,はた,ふらぐ,ふらっぐ,もるでぃぶ,旗 -🇲🇼️ こっき,はた,ふらぐ,ふらっぐ,まらうぃ,まらうい,旗 -🇲🇽️ こっき,はた,ふらぐ,ふらっぐ,めきしこ,旗 -🇲🇾️ こっき,はた,ふらぐ,ふらっぐ,まれーしあ,旗 -🇲🇿️ こっき,はた,ふらぐ,ふらっぐ,もざんびーく,旗 -🇳🇦️ こっき,なみびあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇨️ こっき,にゅーかれどにあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇪️ こっき,にじぇーる,はた,ふらぐ,ふらっぐ,旗 -🇳🇫️ こっき,のーふぉーくとう,のーふぉーく島,はた,ふらぐ,ふらっぐ,旗 -🇳🇬️ こっき,ないじぇりあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇮️ こっき,にからぐあ,はた,ふらぐ,ふらっぐ,旗 -🇳🇱️ おらんだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇳🇴️ こっき,のるうぇー,はた,ふらぐ,ふらっぐ,旗 -🇳🇵️ こっき,ねぱーる,はた,ふらぐ,ふらっぐ,旗 -🇳🇷️ こっき,なうる,はた,ふらぐ,ふらっぐ,旗 -🇳🇺️ こっき,にうえ,はた,ふらぐ,ふらっぐ,旗 -🇳🇿️ こっき,にゅーじーらんど,はた,ふらぐ,ふらっぐ,旗 -🇴🇲️ おまーん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇵🇦️ こっき,はた,ぱなま,ふらぐ,ふらっぐ,旗 -🇵🇪️ こっき,はた,ふらぐ,ふらっぐ,ぺるー,旗 -🇵🇫️ こっき,はた,ふつりょうぽりねしあ,ふらぐ,ふらっぐ,ふらんすりょうぽりねしあ,仏領ぽりねしあ,旗 -🇵🇬️ こっき,はた,ぱぷあにゅーぎにあ,ふらぐ,ふらっぐ,旗 -🇵🇭️ こっき,はた,ふぃりぴん,ふらぐ,ふらっぐ,旗 -🇵🇰️ こっき,はた,ぱきすたん,ふらぐ,ふらっぐ,旗 -🇵🇱️ こっき,はた,ふらぐ,ふらっぐ,ぽーらんど,旗 -🇵🇲️ こっき,さんぴえーるしま・みくろんとう,さんぴえーるとう,さんぴえーるとう・みくろんとう,さんぴえーる島・みくろん島,はた,ふらぐ,ふらっぐ,みくろんとう,旗 -🇵🇳️ こっき,はた,ぴとけあんしょとう,ぴとけあん諸島,ふらぐ,ふらっぐ,旗 -🇵🇷️ こっき,はた,ふらぐ,ふらっぐ,ぷえるとりこ,旗 -🇵🇸️ こっき,はた,ぱれすちなじちく,ぱれすちな自治区,ふらぐ,ふらっぐ,旗 -🇵🇹️ こっき,はた,ふらぐ,ふらっぐ,ぽるとがる,旗 -🇵🇼️ こっき,はた,ぱらお,ふらぐ,ふらっぐ,旗 -🇵🇾️ こっき,はた,ぱらぐあい,ふらぐ,ふらっぐ,旗 -🇶🇦️ かたーる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇷🇪️ こっき,はた,ふらぐ,ふらっぐ,れゆにおん,旗 -🇷🇴️ こっき,はた,ふらぐ,ふらっぐ,るーまにあ,旗 -🇷🇸️ こっき,せるびあ,はた,ふらぐ,ふらっぐ,旗 -🇷🇺️ こっき,はた,ふらぐ,ふらっぐ,ろしあ,旗 -🇷🇼️ こっき,はた,ふらぐ,ふらっぐ,るわんだ,旗 -🇸🇦️ こっき,さうじあらびあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇧️ こっき,そろもんしょとう,そろもん諸島,はた,ふらぐ,ふらっぐ,旗 -🇸🇨️ こっき,せーしぇる,はた,ふらぐ,ふらっぐ,旗 -🇸🇩️ こっき,すーだん,はた,ふらぐ,ふらっぐ,旗 -🇸🇪️ こっき,すうぇーでん,はた,ふらぐ,ふらっぐ,旗 -🇸🇬️ こっき,しんがぽーる,はた,ふらぐ,ふらっぐ,旗 -🇸🇭️ こっき,せんとへれな,はた,ふらぐ,ふらっぐ,旗 -🇸🇮️ こっき,すろべにあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇯️ こっき,すばーるばるしょとう,すばーるばるしょとう・やんまいえんとう,すばーるばる諸島・やんまいえん島,すゔぁーるばるしょとうおよびやんまいえんとう,はた,ふらぐ,ふらっぐ,やんまいえんとう,旗 -🇸🇰️ こっき,すろばきあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇱️ こっき,しえられおね,はた,ふらぐ,ふらっぐ,旗 -🇸🇲️ こっき,さんまりの,はた,ふらぐ,ふらっぐ,旗 -🇸🇳️ こっき,せねがる,はた,ふらぐ,ふらっぐ,旗 -🇸🇴️ こっき,そまりあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇷️ こっき,すりなむ,はた,ふらぐ,ふらっぐ,旗 -🇸🇸️ こっき,はた,ふらぐ,ふらっぐ,みなみすーだん,南すーだん,旗 -🇸🇹️ こっき,さんとめぷりんしぺ,さんとめ・ぷりんしぺ,はた,ふらぐ,ふらっぐ,旗 -🇸🇻️ えるさるばどる,こっき,はた,ふらぐ,ふらっぐ,旗 -🇸🇽️ こっき,しんとまーるてん,しんと・まーるてん,はた,ふらぐ,ふらっぐ,旗 -🇸🇾️ こっき,しりあ,はた,ふらぐ,ふらっぐ,旗 -🇸🇿️ えすわてぃに,こっき,すわじらんど,はた,ふらぐ,ふらっぐ,旗 -🇹🇦️ こっき,とりすたんだくーにゃ,とりすたん・だ・くーにゃ,はた,ふらぐ,ふらっぐ,旗 -🇹🇨️ こっき,たーくすかいこすしょとう,たーくす・かいこす諸島,はた,ふらぐ,ふらっぐ,旗 -🇹🇩️ こっき,ちゃど,はた,ふらぐ,ふらっぐ,旗 -🇹🇫️ こっき,はた,ふつりょうきょくなんしょとう,ふらぐ,ふらっぐ,仏領極南諸島,旗 -🇹🇬️ こっき,とーご,はた,ふらぐ,ふらっぐ,旗 -🇹🇭️ こっき,たい,はた,ふらぐ,ふらっぐ,旗 -🇹🇯️ こっき,たじきすたん,はた,ふらぐ,ふらっぐ,旗 -🇹🇰️ こっき,とけらう,はた,ふらぐ,ふらっぐ,旗 -🇹🇱️ こっき,はた,ひがしてぃもーる,ふらぐ,ふらっぐ,旗,東てぃもーる -🇹🇲️ こっき,とるくめにすたん,はた,ふらぐ,ふらっぐ,旗 -🇹🇳️ こっき,ちゅにじあ,はた,ふらぐ,ふらっぐ,旗 -🇹🇴️ こっき,とんが,はた,ふらぐ,ふらっぐ,旗 -🇹🇷️ こっき,とるこ,はた,ふらぐ,ふらっぐ,旗 -🇹🇹️ こっき,とりにだーどとばご,とりにだーど・とばご,はた,ふらぐ,ふらっぐ,旗 -🇹🇻️ こっき,つばる,はた,ふらぐ,ふらっぐ,旗 -🇹🇼️ こっき,たいわん,はた,ふらぐ,ふらっぐ,台湾,旗 -🇹🇿️ こっき,たんざにあ,はた,ふらぐ,ふらっぐ,旗 -🇺🇦️ うくらいな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇬️ うがんだ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇲️ がっしゅうこくりょうゆうしょうりとう,こっき,はた,ふらぐ,ふらっぐ,合衆国領有小離島,旗 -🇺🇳️ こくさいれんごう,こくれん,こっき,はた,ふらぐ,ふらっぐ,国際連合,旗 -🇺🇸️ あめりか,あめりかがっしゅうこく,あめりか合衆国,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇾️ うるぐあい,こっき,はた,ふらぐ,ふらっぐ,旗 -🇺🇿️ うずべきすたん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇻🇦️ こっき,はた,ばちかん,ばちかんしこく,ばちかん市国,ふらぐ,ふらっぐ,旗 -🇻🇨️ こっき,せんとびんせんとおよびぐれなでぃーんしょとう,せんとびんせんと及びぐれなでぃーん諸島,はた,ふらぐ,ふらっぐ,旗 -🇻🇪️ こっき,はた,ふらぐ,ふらっぐ,べねずえら,旗 -🇻🇬️ いぎりすりょうゔぁーじんしょとう,えいりょうゔぁーじんしょとう,こっき,はた,ふらぐ,ふらっぐ,旗,英領ゔぁーじん諸島 -🇻🇮️ あめりかりょうゔぁーじんしょとう,こっき,はた,ふらぐ,ふらっぐ,べいりょうゔぁーじんしょとう,旗,米領ゔぁーじん諸島 -🇻🇳️ こっき,はた,ふらぐ,ふらっぐ,べとなむ,旗 -🇻🇺️ こっき,はた,ばぬあつ,ふらぐ,ふらっぐ,旗 -🇼🇫️ うぉりすふつな,うぉりす・ふつな,こっき,はた,ふらぐ,ふらっぐ,旗 -🇼🇸️ こっき,さもあ,はた,ふらぐ,ふらっぐ,旗 -🇽🇰️ こそぼ,こっき,はた,ふらぐ,ふらっぐ,旗 -🇾🇪️ いえめん,こっき,はた,ふらぐ,ふらっぐ,旗 -🇾🇹️ こっき,はた,ふらぐ,ふらっぐ,まよっと,旗 -🇿🇦️ こっき,はた,ふらぐ,ふらっぐ,みなみあふりか,南あふりか,旗 -🇿🇲️ こっき,ざんびあ,はた,ふらぐ,ふらっぐ,旗 -🇿🇼️ こっき,じんばぶえ,はた,ふらぐ,ふらっぐ,旗 -🏴󠁧󠁢󠁥󠁮󠁧󠁿️ いんぐらんど,はた,旗 -🏴󠁧󠁢󠁳󠁣󠁴󠁿️ すこっとらんど,はた,旗 -🏴󠁧󠁢󠁷󠁬󠁳󠁿️ うぇーるず,はた,旗 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E13.1.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E13.1.txt deleted file mode 100644 index d22b4f5..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E13.1.txt +++ /dev/null @@ -1,8161 +0,0 @@ -エガオ 😀️ 5 5 501 -20 -カオ 😀️ 5 5 501 -20 -スマイル 😀️ 5 5 501 -20 -ニッコリ 😀️ 5 5 501 -20 -ニッコリワラウ 😀️ 5 5 501 -20 -ワラウ 😀️ 5 5 501 -20 -エガオ 😃️ 5 5 501 -20 -カオ 😃️ 5 5 501 -20 -スマイル 😃️ 5 5 501 -20 -ワーイ 😃️ 5 5 501 -20 -エガオ 😄️ 5 5 501 -20 -カオ 😄️ 5 5 501 -20 -スマイル 😄️ 5 5 501 -20 -ワーイ 😄️ 5 5 501 -20 -エガオ 😁️ 5 5 501 -20 -カオ 😁️ 5 5 501 -20 -スマイル 😁️ 5 5 501 -20 -ニヤットワラウ 😁️ 5 5 501 -20 -ワライ 😁️ 5 5 501 -20 -ワラウ 😁️ 5 5 501 -20 -ウレシイ 😆️ 5 5 501 -20 -エガオ 😆️ 5 5 501 -20 -カオ 😆️ 5 5 501 -20 -キャー 😆️ 5 5 501 -20 -スマイル 😆️ 5 5 501 -20 -マンゾク 😆️ 5 5 501 -20 -アセ 😅️ 5 5 501 -20 -エガオ 😅️ 5 5 501 -20 -カオ 😅️ 5 5 501 -20 -スマイル 😅️ 5 5 501 -20 -ヒヤアセ 😅️ 5 5 501 -20 -ヒヤアセエガオ 😅️ 5 5 501 -20 -ワーイ 😅️ 5 5 501 -20 -エガオ 🤣️ 5 5 501 -20 -カオ 🤣️ 5 5 501 -20 -スマイル 🤣️ 5 5 501 -20 -ワライコロゲル 🤣️ 5 5 501 -20 -ワラウ 🤣️ 5 5 501 -20 -ウレシナキ 😂️ 5 5 501 -20 -エガオ 😂️ 5 5 501 -20 -カオ 😂️ 5 5 501 -20 -スマイル 😂️ 5 5 501 -20 -ナミダ 😂️ 5 5 501 -20 -ワライ 😂️ 5 5 501 -20 -ワラウ 😂️ 5 5 501 -20 -エガオ 🙂️ 5 5 501 -20 -カオ 🙂️ 5 5 501 -20 -スマイル 🙂️ 5 5 501 -20 -ホホエミ 🙂️ 5 5 501 -20 -ホホエム 🙂️ 5 5 501 -20 -カオ 🙃️ 5 5 501 -20 -サカサマ 🙃️ 5 5 501 -20 -サカサマノカオ 🙃️ 5 5 501 -20 -ウィンク 😉️ 5 5 501 -20 -ウインク 😉️ 5 5 501 -20 -カオ 😉️ 5 5 501 -20 -エガオ 😊️ 5 5 501 -20 -カオ 😊️ 5 5 501 -20 -スマイル 😊️ 5 5 501 -20 -ニコニコ 😊️ 5 5 501 -20 -ホオヲアカラメル 😊️ 5 5 501 -20 -ホホエミ 😊️ 5 5 501 -20 -ホホヲアカラメル 😊️ 5 5 501 -20 -メヲホソメル 😊️ 5 5 501 -20 -エガオ 😇️ 5 5 501 -20 -カオ 😇️ 5 5 501 -20 -スマイル 😇️ 5 5 501 -20 -テンシ 😇️ 5 5 501 -20 -テンシノワ 😇️ 5 5 501 -20 -テンシノワガツイタエガオ 😇️ 5 5 501 -20 -エガオ 🥰️ 5 5 501 -20 -カオ 🥰️ 5 5 501 -20 -ハートノエガオ 🥰️ 5 5 501 -20 -ムチュウ 🥰️ 5 5 501 -20 -メロメロ 🥰️ 5 5 501 -20 -ラブ 🥰️ 5 5 501 -20 -エガオ 😍️ 5 5 501 -20 -カオ 😍️ 5 5 501 -20 -スマイル 😍️ 5 5 501 -20 -ハート 😍️ 5 5 501 -20 -メガハートノエガオ 😍️ 5 5 501 -20 -ラブ 😍️ 5 5 501 -20 -エガオ 🤩️ 5 5 501 -20 -カオ 🤩️ 5 5 501 -20 -スマイル 🤩️ 5 5 501 -20 -ホシ 🤩️ 5 5 501 -20 -メガホシノエガオ 🤩️ 5 5 501 -20 -カオ 😘️ 5 5 501 -20 -キス 😘️ 5 5 501 -20 -チュッ 😘️ 5 5 501 -20 -ナゲキッス 😘️ 5 5 501 -20 -ハート 😘️ 5 5 501 -20 -カオ 😗️ 5 5 501 -20 -キス 😗️ 5 5 501 -20 -チュッ 😗️ 5 5 501 -20 -エガオ ☺️️ 5 5 501 -20 -カオ ☺️️ 5 5 501 -20 -スマイリー ☺️️ 5 5 501 -20 -スマイル ☺️️ 5 5 501 -20 -ホッ ☺️️ 5 5 501 -20 -カオ 😚️ 5 5 501 -20 -キス 😚️ 5 5 501 -20 -チュッ 😚️ 5 5 501 -20 -メヲトジル 😚️ 5 5 501 -20 -エガオ 😙️ 5 5 501 -20 -カオ 😙️ 5 5 501 -20 -キス 😙️ 5 5 501 -20 -スマイル 😙️ 5 5 501 -20 -チュッ 😙️ 5 5 501 -20 -ニッコリキス 😙️ 5 5 501 -20 -ウレシナミダノカオ 🥲️ 5 5 501 -20 -カオ 🥲️ 5 5 501 -20 -カンドウ 🥲️ 5 5 501 -20 -ジーン 🥲️ 5 5 501 -20 -ナク 🥲️ 5 5 501 -20 -ナミダ 🥲️ 5 5 501 -20 -ウマイ 😋️ 5 5 501 -20 -エガオ 😋️ 5 5 501 -20 -オイシイ 😋️ 5 5 501 -20 -カオ 😋️ 5 5 501 -20 -スマイル 😋️ 5 5 501 -20 -ニコニコ 😋️ 5 5 501 -20 -ニコニコペロリ 😋️ 5 5 501 -20 -カオ 😛️ 5 5 501 -20 -シタ 😛️ 5 5 501 -20 -シタヲダシタカオ 😛️ 5 5 501 -20 -ベロ 😛️ 5 5 501 -20 -ベー 😛️ 5 5 501 -20 -アッカンベー 😜️ 5 5 501 -20 -カオ 😜️ 5 5 501 -20 -シタ 😜️ 5 5 501 -20 -ジョウダン 😜️ 5 5 501 -20 -ジョーク 😜️ 5 5 501 -20 -ベー 😜️ 5 5 501 -20 -オカシイ 🤪️ 5 5 501 -20 -カオ 🤪️ 5 5 501 -20 -ジョーク 🤪️ 5 5 501 -20 -フザケ 🤪️ 5 5 501 -20 -フザケタカオ 🤪️ 5 5 501 -20 -カオ 😝️ 5 5 501 -20 -シタ 😝️ 5 5 501 -20 -ベロ 😝️ 5 5 501 -20 -ベー 😝️ 5 5 501 -20 -メヲトジテベー 😝️ 5 5 501 -20 -ワーイ 😝️ 5 5 501 -20 -オカネノカオ 🤑️ 5 5 501 -20 -カオ 🤑️ 5 5 501 -20 -シタ 🤑️ 5 5 501 -20 -ベロ 🤑️ 5 5 501 -20 -ベー 🤑️ 5 5 501 -20 -エガオ 🤗️ 5 5 501 -20 -カオ 🤗️ 5 5 501 -20 -スマイル 🤗️ 5 5 501 -20 -ハグ 🤗️ 5 5 501 -20 -エガオ 🤭️ 5 5 501 -20 -カオ 🤭️ 5 5 501 -20 -クスクス 🤭️ 5 5 501 -20 -クチニテヲアテタカオ 🤭️ 5 5 501 -20 -スマイル 🤭️ 5 5 501 -20 -ナイショ 🤭️ 5 5 501 -20 -カオ 🤫️ 5 5 501 -20 -シズカニ 🤫️ 5 5 501 -20 -シッ 🤫️ 5 5 501 -20 -シー 🤫️ 5 5 501 -20 -シーッ 🤫️ 5 5 501 -20 -ダマレ 🤫️ 5 5 501 -20 -ウーン 🤔️ 5 5 501 -20 -カオ 🤔️ 5 5 501 -20 -カンガエチュウ 🤔️ 5 5 501 -20 -カンガエル 🤔️ 5 5 501 -20 -カンガエルカオ 🤔️ 5 5 501 -20 -カオ 🤐️ 5 5 501 -20 -クチ 🤐️ 5 5 501 -20 -クチチャック 🤐️ 5 5 501 -20 -チャック 🤐️ 5 5 501 -20 -ウタガイ 🤨️ 5 5 501 -20 -オドロキ 🤨️ 5 5 501 -20 -カオ 🤨️ 5 5 501 -20 -マユヲアゲタカオ 🤨️ 5 5 501 -20 -カオ 😐️ 5 5 501 -20 -ポーカーフェイス 😐️ 5 5 501 -20 -ムヒョウジョウ 😐️ 5 5 501 -20 -カオ 😑️ 5 5 501 -20 -ムカンジョウ 😑️ 5 5 501 -20 -ムヒョウジョウ 😑️ 5 5 501 -20 -カオ 😶️ 5 5 501 -20 -クチナシ 😶️ 5 5 501 -20 -クチノナイカオ 😶️ 5 5 501 -20 -ダンマリ 😶️ 5 5 501 -20 -チンモク 😶️ 5 5 501 -20 -ウワノソラ 😶‍🌫️️ 5 5 501 -20 -カオ 😶‍🌫️️ 5 5 501 -20 -クモ 😶‍🌫️️ 5 5 501 -20 -クモノナカ 😶‍🌫️️ 5 5 501 -20 -クモノナカノカオ 😶‍🌫️️ 5 5 501 -20 -コッソリ 😶‍🌫️️ 5 5 501 -20 -ホウシンジョウタイ 😶‍🌫️️ 5 5 501 -20 -ボンヤリ 😶‍🌫️️ 5 5 501 -20 -ムチュウ 😶‍🌫️️ 5 5 501 -20 -ウスワライヲスルカオ 😏️ 5 5 501 -20 -カオ 😏️ 5 5 501 -20 -ニヤリ 😏️ 5 5 501 -20 -フッ 😏️ 5 5 501 -20 -カオ 😒️ 5 5 501 -20 -シラケ 😒️ 5 5 501 -20 -シラケタ 😒️ 5 5 501 -20 -シラケル 😒️ 5 5 501 -20 -ジトメ 😒️ 5 5 501 -20 -ウエヲミルカオ 🙄️ 5 5 501 -20 -ウワメ 🙄️ 5 5 501 -20 -カオ 🙄️ 5 5 501 -20 -イー 😬️ 5 5 501 -20 -カオ 😬️ 5 5 501 -20 -シカメガオ 😬️ 5 5 501 -20 -シカメッツラ 😬️ 5 5 501 -20 -シカメツラ 😬️ 5 5 501 -20 -アキラメ 😮‍💨️ 5 5 501 -20 -アンシン 😮‍💨️ 5 5 501 -20 -イキヲハクカオ 😮‍💨️ 5 5 501 -20 -カオ 😮‍💨️ 5 5 501 -20 -コキュウ 😮‍💨️ 5 5 501 -20 -タメイキ 😮‍💨️ 5 5 501 -20 -ハァ 😮‍💨️ 5 5 501 -20 -ヒトアンシン 😮‍💨️ 5 5 501 -20 -ホットシタ 😮‍💨️ 5 5 501 -20 -ウソツキ 🤥️ 5 5 501 -20 -ウソツキノカオ 🤥️ 5 5 501 -20 -カオ 🤥️ 5 5 501 -20 -ピノキオノカオ 🤥️ 5 5 501 -20 -アンシン 😌️ 5 5 501 -20 -カオ 😌️ 5 5 501 -20 -ホッ 😌️ 5 5 501 -20 -ホットシタカオ 😌️ 5 5 501 -20 -カオ 😔️ 5 5 501 -20 -ショボーン 😔️ 5 5 501 -20 -ションボリ 😔️ 5 5 501 -20 -カオ 😪️ 5 5 501 -20 -ネムイ 😪️ 5 5 501 -20 -ネムル 😪️ 5 5 501 -20 -ネル 😪️ 5 5 501 -20 -カオ 🤤️ 5 5 501 -20 -ヨダレ 🤤️ 5 5 501 -20 -ヨダレヲタラシタカオ 🤤️ 5 5 501 -20 -zzz 😴️ 5 5 501 -20 -カオ 😴️ 5 5 501 -20 -ネムイ 😴️ 5 5 501 -20 -ネムル 😴️ 5 5 501 -20 -ネル 😴️ 5 5 501 -20 -カオ 😷️ 5 5 501 -20 -カゼ 😷️ 5 5 501 -20 -カフンショウ 😷️ 5 5 501 -20 -ビョウキ 😷️ 5 5 501 -20 -マスク 😷️ 5 5 501 -20 -マスクガオ 😷️ 5 5 501 -20 -カオ 🤒️ 5 5 501 -20 -カゼ 🤒️ 5 5 501 -20 -タイオンケイ 🤒️ 5 5 501 -20 -ネツガアルカオ 🤒️ 5 5 501 -20 -ネツヲハカル 🤒️ 5 5 501 -20 -ビョウキ 🤒️ 5 5 501 -20 -カオ 🤕️ 5 5 501 -20 -ケガ 🤕️ 5 5 501 -20 -ケガシテルカオ 🤕️ 5 5 501 -20 -ホウタイ 🤕️ 5 5 501 -20 -ホウタイヲマイタカオ 🤕️ 5 5 501 -20 -カオ 🤢️ 5 5 501 -20 -キモチワルイ 🤢️ 5 5 501 -20 -グアイノワルイカオ 🤢️ 5 5 501 -20 -ハキケヲモヨオシテイルカオ 🤢️ 5 5 501 -20 -ビョウキ 🤢️ 5 5 501 -20 -オウトスルカオ 🤮️ 5 5 501 -20 -カオ 🤮️ 5 5 501 -20 -キモチワルイ 🤮️ 5 5 501 -20 -ゲロ 🤮️ 5 5 501 -20 -ビョウキ 🤮️ 5 5 501 -20 -カオ 🤧️ 5 5 501 -20 -カゼ 🤧️ 5 5 501 -20 -カフンショウ 🤧️ 5 5 501 -20 -クシャミ 🤧️ 5 5 501 -20 -クシャミスルカオ 🤧️ 5 5 501 -20 -アカイカオ 🥵️ 5 5 501 -20 -アセ 🥵️ 5 5 501 -20 -アツイカオ 🥵️ 5 5 501 -20 -アツサ 🥵️ 5 5 501 -20 -ネッチュウショウ 🥵️ 5 5 501 -20 -ハツネツ 🥵️ 5 5 501 -20 -アオイカオ 🥶️ 5 5 501 -20 -コゴエ 🥶️ 5 5 501 -20 -サムイカオ 🥶️ 5 5 501 -20 -サムサ 🥶️ 5 5 501 -20 -シモヤケ 🥶️ 5 5 501 -20 -ツララ 🥶️ 5 5 501 -20 -ウツロナメ 🥴️ 5 5 501 -20 -チュウドク 🥴️ 5 5 501 -20 -フラフラノカオ 🥴️ 5 5 501 -20 -ベロンベロン 🥴️ 5 5 501 -20 -ホロヨイ 🥴️ 5 5 501 -20 -メマイ 🥴️ 5 5 501 -20 -カオ 😵️ 5 5 501 -20 -フラフラ 😵️ 5 5 501 -20 -メマイ 😵️ 5 5 501 -20 -ウズマキ 😵‍💫️ 5 5 501 -20 -カオ 😵‍💫️ 5 5 501 -20 -グルグル 😵‍💫️ 5 5 501 -20 -コマル 😵‍💫️ 5 5 501 -20 -コンラン 😵‍💫️ 5 5 501 -20 -フラフラ 😵‍💫️ 5 5 501 -20 -メガグルグル 😵‍💫️ 5 5 501 -20 -メガマワル 😵‍💫️ 5 5 501 -20 -メマイ 😵‍💫️ 5 5 501 -20 -メヲマワシタカオ 😵‍💫️ 5 5 501 -20 -アタマバクハツ 🤯️ 5 5 501 -20 -オドロキ 🤯️ 5 5 501 -20 -カオ 🤯️ 5 5 501 -20 -ショック 🤯️ 5 5 501 -20 -バクハツ 🤯️ 5 5 501 -20 -ボンッ 🤯️ 5 5 501 -20 -カウガール 🤠️ 5 5 501 -20 -カウボーイ 🤠️ 5 5 501 -20 -カウボーイノカオ 🤠️ 5 5 501 -20 -カオ 🤠️ 5 5 501 -20 -オイワイ 🥳️ 5 5 501 -20 -パーティー 🥳️ 5 5 501 -20 -パーティーノカオ 🥳️ 5 5 501 -20 -フエ 🥳️ 5 5 501 -20 -ボウシ 🥳️ 5 5 501 -20 -カオ 🥸️ 5 5 501 -20 -カソウ 🥸️ 5 5 501 -20 -ヒゲ 🥸️ 5 5 501 -20 -ヘンソウ 🥸️ 5 5 501 -20 -ヘンソウシタカオ 🥸️ 5 5 501 -20 -メガネ 🥸️ 5 5 501 -20 -エガオ 😎️ 5 5 501 -20 -カオ 😎️ 5 5 501 -20 -クール 😎️ 5 5 501 -20 -サングラスデエガオ 😎️ 5 5 501 -20 -スマイル 😎️ 5 5 501 -20 -オタク 🤓️ 5 5 501 -20 -カオ 🤓️ 5 5 501 -20 -マニア 🤓️ 5 5 501 -20 -メガネ 🤓️ 5 5 501 -20 -カオ 🧐️ 5 5 501 -20 -カタメガネ 🧐️ 5 5 501 -20 -カンガエル 🧐️ 5 5 501 -20 -メガネ 🧐️ 5 5 501 -20 -モノクルヲツケタカオ 🧐️ 5 5 501 -20 -カオ 😕️ 5 5 501 -20 -コンラン 😕️ 5 5 501 -20 -コンワク 😕️ 5 5 501 -20 -カオ 😟️ 5 5 501 -20 -シンパイ 😟️ 5 5 501 -20 -ナヤムカオ 😟️ 5 5 501 -20 -カオ 🙁️ 5 5 501 -20 -コマッタ 🙁️ 5 5 501 -20 -シカメッツラ 🙁️ 5 5 501 -20 -シカメツラ 🙁️ 5 5 501 -20 -スコシコマッタ 🙁️ 5 5 501 -20 -スコシコマッタカオ 🙁️ 5 5 501 -20 -カオ ☹️️ 5 5 501 -20 -コマッタ ☹️️ 5 5 501 -20 -コマッタカオ ☹️️ 5 5 501 -20 -シカメッツラ ☹️️ 5 5 501 -20 -シカメツラ ☹️️ 5 5 501 -20 -カオ 😮️ 5 5 501 -20 -キョウカン 😮️ 5 5 501 -20 -クチガヒライタカオ 😮️ 5 5 501 -20 -ヘー 😮️ 5 5 501 -20 -オドロキ 😯️ 5 5 501 -20 -カオ 😯️ 5 5 501 -20 -ビックリ 😯️ 5 5 501 -20 -ビックリガオ 😯️ 5 5 501 -20 -ポカーン 😯️ 5 5 501 -20 -オドロキ 😲️ 5 5 501 -20 -カオ 😲️ 5 5 501 -20 -キョウガク 😲️ 5 5 501 -20 -ビックリ 😲️ 5 5 501 -20 -ビックリシタカオ 😲️ 5 5 501 -20 -アカクナル 😳️ 5 5 501 -20 -カオ 😳️ 5 5 501 -20 -セキメン 😳️ 5 5 501 -20 -ウッタエルヨウナカオ 🥺️ 5 5 501 -20 -カオ 🥺️ 5 5 501 -20 -コイヌノメ 🥺️ 5 5 501 -20 -コンガン 🥺️ 5 5 501 -20 -ナサケ 🥺️ 5 5 501 -20 -ピエン 🥺️ 5 5 501 -20 -アキレガオ 😦️ 5 5 501 -20 -カオ 😦️ 5 5 501 -20 -シカメガオ 😦️ 5 5 501 -20 -シカメッツラ 😦️ 5 5 501 -20 -シカメツラ 😦️ 5 5 501 -20 -フホンイ 😦️ 5 5 501 -20 -フマン 😦️ 5 5 501 -20 -カオ 😧️ 5 5 501 -20 -クノウ 😧️ 5 5 501 -20 -クモン 😧️ 5 5 501 -20 -アオザメ 😨️ 5 5 501 -20 -カオ 😨️ 5 5 501 -20 -ガーン 😨️ 5 5 501 -20 -アオザメ 😰️ 5 5 501 -20 -カオ 😰️ 5 5 501 -20 -ヒヤアセ 😰️ 5 5 501 -20 -ヒヤアセアオザメ 😰️ 5 5 501 -20 -アセ 😥️ 5 5 501 -20 -カオ 😥️ 5 5 501 -20 -コマッタ 😥️ 5 5 501 -20 -ドウシヨウ 😥️ 5 5 501 -20 -カオ 😢️ 5 5 501 -20 -カナシイ 😢️ 5 5 501 -20 -ナキガオ 😢️ 5 5 501 -20 -ナク 😢️ 5 5 501 -20 -ナミダ 😢️ 5 5 501 -20 -オオナキ 😭️ 5 5 501 -20 -カオ 😭️ 5 5 501 -20 -カナシイ 😭️ 5 5 501 -20 -ゴウキュウ 😭️ 5 5 501 -20 -ナク 😭️ 5 5 501 -20 -ナミダ 😭️ 5 5 501 -20 -カオ 😱️ 5 5 501 -20 -ガーン 😱️ 5 5 501 -20 -キョウフ 😱️ 5 5 501 -20 -サケビ 😱️ 5 5 501 -20 -ショック 😱️ 5 5 501 -20 -カオ 😖️ 5 5 501 -20 -コンラン 😖️ 5 5 501 -20 -コンワク 😖️ 5 5 501 -20 -コンワクシタカオ 😖️ 5 5 501 -20 -カオ 😣️ 5 5 501 -20 -ガマン 😣️ 5 5 501 -20 -カオ 😞️ 5 5 501 -20 -ガッカリ 😞️ 5 5 501 -20 -ガックリ 😞️ 5 5 501 -20 -シツボウシタカオ 😞️ 5 5 501 -20 -アセ 😓️ 5 5 501 -20 -カオ 😓️ 5 5 501 -20 -キモヲヒヤシタ 😓️ 5 5 501 -20 -ヒヤアセ 😓️ 5 5 501 -20 -アキラメ 😩️ 5 5 501 -20 -カオ 😩️ 5 5 501 -20 -ツカレ 😩️ 5 5 501 -20 -カオ 😫️ 5 5 501 -20 -ゲンカイ 😫️ 5 5 501 -20 -ツカレ 😫️ 5 5 501 -20 -ツカレタ 😫️ 5 5 501 -20 -アクビシタカオ 🥱️ 5 5 501 -20 -カオ 🥱️ 5 5 501 -20 -タイクツ 🥱️ 5 5 501 -20 -ツカレ 🥱️ 5 5 501 -20 -ネムイ 🥱️ 5 5 501 -20 -フアー 🥱️ 5 5 501 -20 -カオ 😤️ 5 5 501 -20 -カチホコッタカオ 😤️ 5 5 501 -20 -トクイゲ 😤️ 5 5 501 -20 -ハナイキ 😤️ 5 5 501 -20 -フンッ 😤️ 5 5 501 -20 -イカリ 😡️ 5 5 501 -20 -カオ 😡️ 5 5 501 -20 -カンカン 😡️ 5 5 501 -20 -ゲキド 😡️ 5 5 501 -20 -フクレッツラ 😡️ 5 5 501 -20 -プンプン 😡️ 5 5 501 -20 -イカリ 😠️ 5 5 501 -20 -カオ 😠️ 5 5 501 -20 -プンプン 😠️ 5 5 501 -20 -イカリ 🤬️ 5 5 501 -20 -カオ 🤬️ 5 5 501 -20 -ノノシリ 🤬️ 5 5 501 -20 -ノノシル 🤬️ 5 5 501 -20 -アクマ 😈️ 5 5 501 -20 -エガオ 😈️ 5 5 501 -20 -カオ 😈️ 5 5 501 -20 -スマイル 😈️ 5 5 501 -20 -デビル 😈️ 5 5 501 -20 -ワラッタアクマ 😈️ 5 5 501 -20 -アクマ 👿️ 5 5 501 -20 -オコッタアクマ 👿️ 5 5 501 -20 -カオ 👿️ 5 5 501 -20 -カンカン 👿️ 5 5 501 -20 -ゲキド 👿️ 5 5 501 -20 -デビル 👿️ 5 5 501 -20 -カオ 💀️ 5 5 501 -20 -ガイコツ 💀️ 5 5 501 -20 -シ 💀️ 5 5 501 -20 -スカル 💀️ 5 5 501 -20 -ドクロ 💀️ 5 5 501 -20 -カオ ☠️️ 5 5 501 -20 -ガイコツ ☠️️ 5 5 501 -20 -スカル ☠️️ 5 5 501 -20 -ドクロ ☠️️ 5 5 501 -20 -ドクロトホネ ☠️️ 5 5 501 -20 -ウンコ 💩️ 5 5 501 -20 -ウンチ 💩️ 5 5 501 -20 -カオ 💩️ 5 5 501 -20 -カオ 🤡️ 5 5 501 -20 -ピエロ 🤡️ 5 5 501 -20 -ピエロノカオ 🤡️ 5 5 501 -20 -オニ 👹️ 5 5 501 -20 -オメン 👹️ 5 5 501 -20 -カオ 👹️ 5 5 501 -20 -ナマハゲ 👹️ 5 5 501 -20 -バケモノ 👹️ 5 5 501 -20 -オメン 👺️ 5 5 501 -20 -カオ 👺️ 5 5 501 -20 -テング 👺️ 5 5 501 -20 -オバケ 👻️ 5 5 501 -20 -ゴースト 👻️ 5 5 501 -20 -ユウレイ 👻️ 5 5 501 -20 -ユーレイ 👻️ 5 5 501 -20 -イセイジン 👽️ 5 5 501 -20 -ウチュウジン 👽️ 5 5 501 -20 -エイリアン 👽️ 5 5 501 -20 -カオ 👽️ 5 5 501 -20 -グレイ 👽️ 5 5 501 -20 -ユーフォー 👽️ 5 5 501 -20 -イセイジン 👾️ 5 5 501 -20 -インベーダー 👾️ 5 5 501 -20 -ウチュウジン 👾️ 5 5 501 -20 -エイリアン 👾️ 5 5 501 -20 -カオ 👾️ 5 5 501 -20 -モンスター 👾️ 5 5 501 -20 -カオ 🤖️ 5 5 501 -20 -ロボット 🤖️ 5 5 501 -20 -エガオ 😺️ 5 5 501 -20 -カオ 😺️ 5 5 501 -20 -スマイル 😺️ 5 5 501 -20 -ニッコリワラウネコ 😺️ 5 5 501 -20 -ネコ 😺️ 5 5 501 -20 -エガオ 😸️ 5 5 501 -20 -カオ 😸️ 5 5 501 -20 -スマイル 😸️ 5 5 501 -20 -ニヤットワラウネコ 😸️ 5 5 501 -20 -ネコ 😸️ 5 5 501 -20 -ワラウ 😸️ 5 5 501 -20 -ウレシナキスルネコ 😹️ 5 5 501 -20 -エガオ 😹️ 5 5 501 -20 -カオ 😹️ 5 5 501 -20 -スマイル 😹️ 5 5 501 -20 -ナミダ 😹️ 5 5 501 -20 -ネコ 😹️ 5 5 501 -20 -エガオ 😻️ 5 5 501 -20 -カオ 😻️ 5 5 501 -20 -スマイル 😻️ 5 5 501 -20 -ネコ 😻️ 5 5 501 -20 -ハート 😻️ 5 5 501 -20 -メガハートノネコ 😻️ 5 5 501 -20 -カオ 😼️ 5 5 501 -20 -ニヤリ 😼️ 5 5 501 -20 -ニヤリトスルネコ 😼️ 5 5 501 -20 -ネコ 😼️ 5 5 501 -20 -フッ 😼️ 5 5 501 -20 -カオ 😽️ 5 5 501 -20 -キス 😽️ 5 5 501 -20 -チュッ 😽️ 5 5 501 -20 -ネコ 😽️ 5 5 501 -20 -ネコノキス 😽️ 5 5 501 -20 -カオ 🙀️ 5 5 501 -20 -ガーン 🙀️ 5 5 501 -20 -ショック 🙀️ 5 5 501 -20 -ゼツボウスルネコ 🙀️ 5 5 501 -20 -ネコ 🙀️ 5 5 501 -20 -ビックリ 🙀️ 5 5 501 -20 -カオ 😿️ 5 5 501 -20 -カナシイ 😿️ 5 5 501 -20 -ナイテイルネコ 😿️ 5 5 501 -20 -ナミダ 😿️ 5 5 501 -20 -ネコ 😿️ 5 5 501 -20 -カオ 😾️ 5 5 501 -20 -ネコ 😾️ 5 5 501 -20 -フキゲン 😾️ 5 5 501 -20 -フキゲンナネコ 😾️ 5 5 501 -20 -プンプン 😾️ 5 5 501 -20 -サル 🙈️ 5 5 501 -20 -サンザル 🙈️ 5 5 501 -20 -ミザル 🙈️ 5 5 501 -20 -キカザル 🙉️ 5 5 501 -20 -サル 🙉️ 5 5 501 -20 -サンザル 🙉️ 5 5 501 -20 -イワザル 🙊️ 5 5 501 -20 -サル 🙊️ 5 5 501 -20 -サンザル 🙊️ 5 5 501 -20 -コイブミ 💌️ 5 5 501 -20 -テガミ 💌️ 5 5 501 -20 -ハート 💌️ 5 5 501 -20 -フウトウ 💌️ 5 5 501 -20 -ラブレター 💌️ 5 5 501 -20 -キューピッド 💘️ 5 5 501 -20 -ハート 💘️ 5 5 501 -20 -ハートニヤ 💘️ 5 5 501 -20 -ハートノヤ 💘️ 5 5 501 -20 -ヤ 💘️ 5 5 501 -20 -ハート 💝️ 5 5 501 -20 -ハートニリボン 💝️ 5 5 501 -20 -バレンタイン 💝️ 5 5 501 -20 -バレンタインデー 💝️ 5 5 501 -20 -リボン 💝️ 5 5 501 -20 -キラキラ 💖️ 5 5 501 -20 -キラキラハート 💖️ 5 5 501 -20 -ハート 💖️ 5 5 501 -20 -ピカピカハート 💖️ 5 5 501 -20 -オオキクナルハート 💗️ 5 5 501 -20 -トキメキ 💗️ 5 5 501 -20 -ドキドキ 💗️ 5 5 501 -20 -ハート 💗️ 5 5 501 -20 -ドキドキ 💓️ 5 5 501 -20 -ドキドキスルハート 💓️ 5 5 501 -20 -ハート 💓️ 5 5 501 -20 -カイテンスルハート 💞️ 5 5 501 -20 -カワイイ 💞️ 5 5 501 -20 -ハート 💞️ 5 5 501 -20 -2ツノハート 💕️ 5 5 501 -20 -ハート 💕️ 5 5 501 -20 -フタツノハート 💕️ 5 5 501 -20 -ラブ 💕️ 5 5 501 -20 -ハート 💟️ 5 5 501 -20 -ハートデコ 💟️ 5 5 501 -20 -ハートデコレーション 💟️ 5 5 501 -20 -エクスクラメーションマーク ❣️️ 5 5 501 -20 -ハート ❣️️ 5 5 501 -20 -ハートノビックリ ❣️️ 5 5 501 -20 -ビックリマーク ❣️️ 5 5 501 -20 -シツレン 💔️ 5 5 501 -20 -ハート 💔️ 5 5 501 -20 -ハートブレイク 💔️ 5 5 501 -20 -ワカレタ 💔️ 5 5 501 -20 -ワレタハート 💔️ 5 5 501 -20 -アイ ❤️‍🔥️ 5 5 501 -20 -セイナルシンゾウ ❤️‍🔥️ 5 5 501 -20 -ネツイ ❤️‍🔥️ 5 5 501 -20 -ハート ❤️‍🔥️ 5 5 501 -20 -ヒノツイタ ❤️‍🔥️ 5 5 501 -20 -フンキ ❤️‍🔥️ 5 5 501 -20 -ホノオ ❤️‍🔥️ 5 5 501 -20 -モエルハート ❤️‍🔥️ 5 5 501 -20 -ヤルキ ❤️‍🔥️ 5 5 501 -20 -カイフクチュウ ❤️‍🩹️ 5 5 501 -20 -キズツイタ ❤️‍🩹️ 5 5 501 -20 -ケガ ❤️‍🩹️ 5 5 501 -20 -ショウシン ❤️‍🩹️ 5 5 501 -20 -チリョウチュウ ❤️‍🩹️ 5 5 501 -20 -ツライ ❤️‍🩹️ 5 5 501 -20 -ドウジョウ ❤️‍🩹️ 5 5 501 -20 -ハート ❤️‍🩹️ 5 5 501 -20 -ホウタイ ❤️‍🩹️ 5 5 501 -20 -ホウタイヲマイタハート ❤️‍🩹️ 5 5 501 -20 -アカイハート ❤️️ 5 5 501 -20 -クロハート ❤️️ 5 5 501 -20 -ハート ❤️️ 5 5 501 -20 -ハートマーク ❤️️ 5 5 501 -20 -オレンジノハート 🧡️ 5 5 501 -20 -ハート 🧡️ 5 5 501 -20 -キイロノハート 💛️ 5 5 501 -20 -ハート 💛️ 5 5 501 -20 -ハート 💚️ 5 5 501 -20 -ミドリノハート 💚️ 5 5 501 -20 -アオイハート 💙️ 5 5 501 -20 -ハート 💙️ 5 5 501 -20 -ハート 💜️ 5 5 501 -20 -ムラサキノハート 💜️ 5 5 501 -20 -チャイロイハート 🤎️ 5 5 501 -20 -ハート 🤎️ 5 5 501 -20 -クロイハート 🖤️ 5 5 501 -20 -ハート 🖤️ 5 5 501 -20 -シロイハート 🤍️ 5 5 501 -20 -ハート 🤍️ 5 5 501 -20 -キス 💋️ 5 5 501 -20 -キスマーク 💋️ 5 5 501 -20 -クチビル 💋️ 5 5 501 -20 -チュッ 💋️ 5 5 501 -20 -100 💯️ 5 5 501 -20 -100テン 💯️ 5 5 501 -20 -100テンマンテン 💯️ 5 5 501 -20 -ゼンモンセイカイ 💯️ 5 5 501 -20 -ヒャクテンマンテン 💯️ 5 5 501 -20 -マンテン 💯️ 5 5 501 -20 -イカリ 💢️ 5 5 501 -20 -ムカッ 💢️ 5 5 501 -20 -ショウゲキ 💥️ 5 5 501 -20 -ショウトツ 💥️ 5 5 501 -20 -ドンッ 💥️ 5 5 501 -20 -クラクラ 💫️ 5 5 501 -20 -ホシ 💫️ 5 5 501 -20 -メガマワル 💫️ 5 5 501 -20 -アセ 💦️ 5 5 501 -20 -アセアセ 💦️ 5 5 501 -20 -イソグ 💨️ 5 5 501 -20 -イソゲ 💨️ 5 5 501 -20 -ダッシュ 💨️ 5 5 501 -20 -ハシル 💨️ 5 5 501 -20 -アナ 🕳️️ 5 5 501 -20 -カイワ 💬️ 5 5 501 -20 -カイワノフキダシ 💬️ 5 5 501 -20 -セリフ 💬️ 5 5 501 -20 -フキダシ 💬️ 5 5 501 -20 -フキダシ 👁️‍🗨️️ 5 5 501 -20 -フキダシノメ 👁️‍🗨️️ 5 5 501 -20 -メ 👁️‍🗨️️ 5 5 501 -20 -モクゲキ 👁️‍🗨️️ 5 5 501 -20 -カイワ 🗨️️ 5 5 501 -20 -セリフ 🗨️️ 5 5 501 -20 -フキダシ 🗨️️ 5 5 501 -20 -フキダシヒダリ 🗨️️ 5 5 501 -20 -イカリノフキダシ 🗯️️ 5 5 501 -20 -フキダシ 🗯️️ 5 5 501 -20 -カンガエゴト 💭️ 5 5 501 -20 -クモガタノフキダシ 💭️ 5 5 501 -20 -フキダシ 💭️ 5 5 501 -20 -モクモク 💭️ 5 5 501 -20 -zzz 💤️ 5 5 501 -20 -イビキ 💤️ 5 5 501 -20 -グーグー 💤️ 5 5 501 -20 -ネル 💤️ 5 5 501 -20 -サヨナラ 👋️ 5 5 501 -20 -テ 👋️ 5 5 501 -20 -テヲフル 👋️ 5 5 501 -20 -バイバイ 👋️ 5 5 501 -20 -テ 🤚️ 5 5 501 -20 -テノコウ 🤚️ 5 5 501 -20 -テ 🖐️️ 5 5 501 -20 -パー 🖐️️ 5 5 501 -20 -ヒライタテ 🖐️️ 5 5 501 -20 -キョシュ ✋️ 5 5 501 -20 -テ ✋️ 5 5 501 -20 -テノヒラ ✋️ 5 5 501 -20 -パー ✋️ 5 5 501 -20 -スポック 🖖️ 5 5 501 -20 -テ 🖖️ 5 5 501 -20 -バルカンジン 🖖️ 5 5 501 -20 -バルカンノアイサツ 🖖️ 5 5 501 -20 -ok 👌️ 5 5 501 -20 -オッケー 👌️ 5 5 501 -20 -オーケー 👌️ 5 5 501 -20 -オーケーノテ 👌️ 5 5 501 -20 -テ 👌️ 5 5 501 -20 -ウワムキニスボメタテ 🤌️ 5 5 501 -20 -ジェスチャー 🤌️ 5 5 501 -20 -スボメル 🤌️ 5 5 501 -20 -テ 🤌️ 5 5 501 -20 -ユビ 🤌️ 5 5 501 -20 -スコシダケ 🤏️ 5 5 501 -20 -チョット 🤏️ 5 5 501 -20 -ツマンデイルユビ 🤏️ 5 5 501 -20 -テ 🤏️ 5 5 501 -20 -ユビ 🤏️ 5 5 501 -20 -チョキ ✌️️ 5 5 501 -20 -テ ✌️️ 5 5 501 -20 -ピース ✌️️ 5 5 501 -20 -ブイサイン ✌️️ 5 5 501 -20 -テ 🤞️ 5 5 501 -20 -ユビ 🤞️ 5 5 501 -20 -ユビヲクロス 🤞️ 5 5 501 -20 -アイシテル 🤟️ 5 5 501 -20 -アイラブユー 🤟️ 5 5 501 -20 -テ 🤟️ 5 5 501 -20 -キツネ 🤘️ 5 5 501 -20 -ツノノユビサイン 🤘️ 5 5 501 -20 -テ 🤘️ 5 5 501 -20 -テ 🤙️ 5 5 501 -20 -デンワ 🤙️ 5 5 501 -20 -デンワノアイズ 🤙️ 5 5 501 -20 -デンワノジェスチャー 🤙️ 5 5 501 -20 -テ 👈️ 5 5 501 -20 -ヒダリ 👈️ 5 5 501 -20 -ヒダリユビサシ 👈️ 5 5 501 -20 -ヤジルシ 👈️ 5 5 501 -20 -ユビサシ 👈️ 5 5 501 -20 -ユビサス 👈️ 5 5 501 -20 -テ 👉️ 5 5 501 -20 -ミギ 👉️ 5 5 501 -20 -ミギユビサシ 👉️ 5 5 501 -20 -ヤジルシ 👉️ 5 5 501 -20 -ユビサシ 👉️ 5 5 501 -20 -ユビサス 👉️ 5 5 501 -20 -ウエ 👆️ 5 5 501 -20 -テ 👆️ 5 5 501 -20 -テノコウウエユビサシ 👆️ 5 5 501 -20 -テノコウジョウユビサシ 👆️ 5 5 501 -20 -ヤジルシ 👆️ 5 5 501 -20 -ユビサシ 👆️ 5 5 501 -20 -ユビサス 👆️ 5 5 501 -20 -ウエ 🖕️ 5 5 501 -20 -タテタナカユビ 🖕️ 5 5 501 -20 -テ 🖕️ 5 5 501 -20 -ナカユビ 🖕️ 5 5 501 -20 -ユビサシ 🖕️ 5 5 501 -20 -シタ 👇️ 5 5 501 -20 -シタユビサシ 👇️ 5 5 501 -20 -テ 👇️ 5 5 501 -20 -ヤジルシ 👇️ 5 5 501 -20 -ユビサシ 👇️ 5 5 501 -20 -ユビサス 👇️ 5 5 501 -20 -ウエ ☝️️ 5 5 501 -20 -ウエユビサシ ☝️️ 5 5 501 -20 -テ ☝️️ 5 5 501 -20 -ヒトサシユビ ☝️️ 5 5 501 -20 -ユビサシ ☝️️ 5 5 501 -20 -ok 👍️ 5 5 501 -20 -ウエ 👍️ 5 5 501 -20 -オッケー 👍️ 5 5 501 -20 -オヤユビ 👍️ 5 5 501 -20 -オヤユビサイン 👍️ 5 5 501 -20 -オーケー 👍️ 5 5 501 -20 -グッド 👍️ 5 5 501 -20 -サムアップ 👍️ 5 5 501 -20 -サムズアップ 👍️ 5 5 501 -20 -テ 👍️ 5 5 501 -20 -ng 👎️ 5 5 501 -20 -エヌジー 👎️ 5 5 501 -20 -サムズダウン 👎️ 5 5 501 -20 -シタ 👎️ 5 5 501 -20 -ダメ 👎️ 5 5 501 -20 -テ 👎️ 5 5 501 -20 -ブーイング 👎️ 5 5 501 -20 -ボツ 👎️ 5 5 501 -20 -グー ✊️ 5 5 501 -20 -ゲンコツ ✊️ 5 5 501 -20 -テ ✊️ 5 5 501 -20 -グー 👊️ 5 5 501 -20 -ゲンコツ 👊️ 5 5 501 -20 -テ 👊️ 5 5 501 -20 -パンチ 👊️ 5 5 501 -20 -コブシ 🤛️ 5 5 501 -20 -テ 🤛️ 5 5 501 -20 -パンチ 🤛️ 5 5 501 -20 -ヒダリ 🤛️ 5 5 501 -20 -ヒダリムキノコブシ 🤛️ 5 5 501 -20 -コブシ 🤜️ 5 5 501 -20 -テ 🤜️ 5 5 501 -20 -パンチ 🤜️ 5 5 501 -20 -ミギ 🤜️ 5 5 501 -20 -ミギムキノコブシ 🤜️ 5 5 501 -20 -テ 👏️ 5 5 501 -20 -ハクシュ 👏️ 5 5 501 -20 -パチパチ 👏️ 5 5 501 -20 -テ 🙌️ 5 5 501 -20 -テヲアゲル 🙌️ 5 5 501 -20 -バンザイ 🙌️ 5 5 501 -20 -リョウテ 🙌️ 5 5 501 -20 -オッハー 👐️ 5 5 501 -20 -テ 👐️ 5 5 501 -20 -テノヒラ 👐️ 5 5 501 -20 -リョウテノヒラ 👐️ 5 5 501 -20 -イノリ 🤲️ 5 5 501 -20 -テ 🤲️ 5 5 501 -20 -テノヒラヲソロエタリョウテ 🤲️ 5 5 501 -20 -リョウテ 🤲️ 5 5 501 -20 -アクシュ 🤝️ 5 5 501 -20 -ゴウイ 🤝️ 5 5 501 -20 -テ 🤝️ 5 5 501 -20 -ヨロシク 🤝️ 5 5 501 -20 -イノリ 🙏️ 5 5 501 -20 -イノル 🙏️ 5 5 501 -20 -オネガイ 🙏️ 5 5 501 -20 -ガッショウ 🙏️ 5 5 501 -20 -ゴメンナサイ 🙏️ 5 5 501 -20 -リョウテ 🙏️ 5 5 501 -20 -カイテイルテ ✍️️ 5 5 501 -20 -テ ✍️️ 5 5 501 -20 -テガキ ✍️️ 5 5 501 -20 -テデカク ✍️️ 5 5 501 -20 -ツメ 💅️ 5 5 501 -20 -ネイル 💅️ 5 5 501 -20 -マニキュア 💅️ 5 5 501 -20 -マニキュアヲヌルテ 💅️ 5 5 501 -20 -ジドリ 🤳️ 5 5 501 -20 -ジブンドリ 🤳️ 5 5 501 -20 -スマホ 🤳️ 5 5 501 -20 -セルフィー 🤳️ 5 5 501 -20 -キントレ 💪️ 5 5 501 -20 -キンニク 💪️ 5 5 501 -20 -チカラコブ 💪️ 5 5 501 -20 -ムキムキ 💪️ 5 5 501 -20 -アクセシビリティ 🦾️ 5 5 501 -20 -ウデ 🦾️ 5 5 501 -20 -ギシュ 🦾️ 5 5 501 -20 -ジンコウソウグ 🦾️ 5 5 501 -20 -テ 🦾️ 5 5 501 -20 -アクセシビリティ 🦿️ 5 5 501 -20 -アシ 🦿️ 5 5 501 -20 -ギソク 🦿️ 5 5 501 -20 -ジンコウソウグ 🦿️ 5 5 501 -20 -アシ 🦵️ 5 5 501 -20 -キック 🦵️ 5 5 501 -20 -アシ 🦶️ 5 5 501 -20 -キック 🦶️ 5 5 501 -20 -ダンス 🦶️ 5 5 501 -20 -フミツケル 🦶️ 5 5 501 -20 -カオ 👂️ 5 5 501 -20 -カラダ 👂️ 5 5 501 -20 -ミミ 👂️ 5 5 501 -20 -アクセシビリティ 🦻️ 5 5 501 -20 -チョウカク 🦻️ 5 5 501 -20 -ホチョウキヲツケタミミ 🦻️ 5 5 501 -20 -ミミ 🦻️ 5 5 501 -20 -カオ 👃️ 5 5 501 -20 -カラダ 👃️ 5 5 501 -20 -ハナ 👃️ 5 5 501 -20 -アタマ 🧠️ 5 5 501 -20 -チシキ 🧠️ 5 5 501 -20 -ノウ 🧠️ 5 5 501 -20 -ノウミソ 🧠️ 5 5 501 -20 -コドウ 🫀️ 5 5 501 -20 -シンゾウ 🫀️ 5 5 501 -20 -シンパク 🫀️ 5 5 501 -20 -ゾウキ 🫀️ 5 5 501 -20 -ミャク 🫀️ 5 5 501 -20 -コキュウ 🫁️ 5 5 501 -20 -ゾウキ 🫁️ 5 5 501 -20 -ハイ 🫁️ 5 5 501 -20 -ハ 🦷️ 5 5 501 -20 -ハイシャ 🦷️ 5 5 501 -20 -コッカク 🦴️ 5 5 501 -20 -ホネ 🦴️ 5 5 501 -20 -カオ 👀️ 5 5 501 -20 -カラダ 👀️ 5 5 501 -20 -メ 👀️ 5 5 501 -20 -リョウメ 👀️ 5 5 501 -20 -カタメ 👁️️ 5 5 501 -20 -ヒトツメ 👁️️ 5 5 501 -20 -メ 👁️️ 5 5 501 -20 -カオ 👅️ 5 5 501 -20 -シタ 👅️ 5 5 501 -20 -ベロ 👅️ 5 5 501 -20 -ベー 👅️ 5 5 501 -20 -カオ 👄️ 5 5 501 -20 -キス 👄️ 5 5 501 -20 -クチ 👄️ 5 5 501 -20 -クチビル 👄️ 5 5 501 -20 -アカチャン 👶️ 5 5 501 -20 -アカンボウ 👶️ 5 5 501 -20 -カオ 👶️ 5 5 501 -20 -ベビー 👶️ 5 5 501 -20 -カオ 🧒️ 5 5 501 -20 -コドモ 🧒️ 5 5 501 -20 -オトコノコ 👦️ 5 5 501 -20 -カオ 👦️ 5 5 501 -20 -コドモ 👦️ 5 5 501 -20 -ショウネン 👦️ 5 5 501 -20 -オンナ 👧️ 5 5 501 -20 -オンナノコ 👧️ 5 5 501 -20 -カオ 👧️ 5 5 501 -20 -コドモ 👧️ 5 5 501 -20 -ショウジョ 👧️ 5 5 501 -20 -オトナ 🧑️ 5 5 501 -20 -カオ 🧑️ 5 5 501 -20 -セイジン 🧑️ 5 5 501 -20 -カオ 👱️ 5 5 501 -20 -キンパツ 👱️ 5 5 501 -20 -キンパツノヒト 👱️ 5 5 501 -20 -ヒト 👱️ 5 5 501 -20 -ブロンド 👱️ 5 5 501 -20 -オトコ 👨️ 5 5 501 -20 -オトナ 👨️ 5 5 501 -20 -カオ 👨️ 5 5 501 -20 -ダンセイ 👨️ 5 5 501 -20 -アゴヒゲ 🧔️ 5 5 501 -20 -アゴヒゲノダンセイ 🧔️ 5 5 501 -20 -アゴヒゲノヒト 🧔️ 5 5 501 -20 -カオ 🧔️ 5 5 501 -20 -ヒゲ 🧔️ 5 5 501 -20 -ヒゲノハエタヒト 🧔️ 5 5 501 -20 -ヒト 🧔️ 5 5 501 -20 -アゴヒゲ 🧔‍♂️️ 5 5 501 -20 -アゴヒゲノダンセイ 🧔‍♂️️ 5 5 501 -20 -オトコ 🧔‍♂️️ 5 5 501 -20 -カオ 🧔‍♂️️ 5 5 501 -20 -ダンセイ 🧔‍♂️️ 5 5 501 -20 -ヒゲ 🧔‍♂️️ 5 5 501 -20 -ヒゲノハエタダンセイ 🧔‍♂️️ 5 5 501 -20 -アゴヒゲ 🧔‍♀️️ 5 5 501 -20 -アゴヒゲノジョセイ 🧔‍♀️️ 5 5 501 -20 -オンナ 🧔‍♀️️ 5 5 501 -20 -カオ 🧔‍♀️️ 5 5 501 -20 -ジョセイ 🧔‍♀️️ 5 5 501 -20 -ヒゲ 🧔‍♀️️ 5 5 501 -20 -ヒゲノハエタジョセイ 🧔‍♀️️ 5 5 501 -20 -アカゲ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦰️ 5 5 501 -20 -オトナ 👨‍🦰️ 5 5 501 -20 -カオ 👨‍🦰️ 5 5 501 -20 -ダンセイ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦰️ 5 5 501 -20 -カオ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦱️ 5 5 501 -20 -オトナ 👨‍🦱️ 5 5 501 -20 -カオ 👨‍🦱️ 5 5 501 -20 -ダンセイ 👨‍🦱️ 5 5 501 -20 -マキゲ 👨‍🦱️ 5 5 501 -20 -オトコ 👨‍🦱️ 5 5 501 -20 -カオ 👨‍🦱️ 5 5 501 -20 -カール 👨‍🦱️ 5 5 501 -20 -オトコ 👨‍🦳️ 5 5 501 -20 -オトナ 👨‍🦳️ 5 5 501 -20 -カオ 👨‍🦳️ 5 5 501 -20 -シラガ 👨‍🦳️ 5 5 501 -20 -ダンセイ 👨‍🦳️ 5 5 501 -20 -オトコ 👨‍🦳️ 5 5 501 -20 -カオ 👨‍🦳️ 5 5 501 -20 -オトコ 👨‍🦲️ 5 5 501 -20 -オトナ 👨‍🦲️ 5 5 501 -20 -カオ 👨‍🦲️ 5 5 501 -20 -ダンセイ 👨‍🦲️ 5 5 501 -20 -ハゲアタマ 👨‍🦲️ 5 5 501 -20 -オトコ 👨‍🦲️ 5 5 501 -20 -カオ 👨‍🦲️ 5 5 501 -20 -ハゲ 👨‍🦲️ 5 5 501 -20 -オトナ 👩️ 5 5 501 -20 -オンナ 👩️ 5 5 501 -20 -カオ 👩️ 5 5 501 -20 -ジョセイ 👩️ 5 5 501 -20 -アカゲ 👩‍🦰️ 5 5 501 -20 -オトナ 👩‍🦰️ 5 5 501 -20 -オンナ 👩‍🦰️ 5 5 501 -20 -カオ 👩‍🦰️ 5 5 501 -20 -ジョセイ 👩‍🦰️ 5 5 501 -20 -オンナ 👩‍🦰️ 5 5 501 -20 -カオ 👩‍🦰️ 5 5 501 -20 -アカゲ 🧑‍🦰️ 5 5 501 -20 -オトナ 🧑‍🦰️ 5 5 501 -20 -カオ 🧑‍🦰️ 5 5 501 -20 -セイジン 🧑‍🦰️ 5 5 501 -20 -カオ 🧑‍🦰️ 5 5 501 -20 -オトナ 👩‍🦱️ 5 5 501 -20 -オンナ 👩‍🦱️ 5 5 501 -20 -カオ 👩‍🦱️ 5 5 501 -20 -ジョセイ 👩‍🦱️ 5 5 501 -20 -マキゲ 👩‍🦱️ 5 5 501 -20 -オンナ 👩‍🦱️ 5 5 501 -20 -カオ 👩‍🦱️ 5 5 501 -20 -カール 👩‍🦱️ 5 5 501 -20 -オトナ 🧑‍🦱️ 5 5 501 -20 -カオ 🧑‍🦱️ 5 5 501 -20 -セイジン 🧑‍🦱️ 5 5 501 -20 -マキゲ 🧑‍🦱️ 5 5 501 -20 -カオ 🧑‍🦱️ 5 5 501 -20 -カール 🧑‍🦱️ 5 5 501 -20 -オトナ 👩‍🦳️ 5 5 501 -20 -オンナ 👩‍🦳️ 5 5 501 -20 -カオ 👩‍🦳️ 5 5 501 -20 -シラガ 👩‍🦳️ 5 5 501 -20 -ジョセイ 👩‍🦳️ 5 5 501 -20 -オンナ 👩‍🦳️ 5 5 501 -20 -カオ 👩‍🦳️ 5 5 501 -20 -オトナ 🧑‍🦳️ 5 5 501 -20 -カオ 🧑‍🦳️ 5 5 501 -20 -シラガ 🧑‍🦳️ 5 5 501 -20 -セイジン 🧑‍🦳️ 5 5 501 -20 -カオ 🧑‍🦳️ 5 5 501 -20 -オトナ 👩‍🦲️ 5 5 501 -20 -オンナ 👩‍🦲️ 5 5 501 -20 -カオ 👩‍🦲️ 5 5 501 -20 -ジョセイ 👩‍🦲️ 5 5 501 -20 -ハゲアタマ 👩‍🦲️ 5 5 501 -20 -オンナ 👩‍🦲️ 5 5 501 -20 -カオ 👩‍🦲️ 5 5 501 -20 -ハゲ 👩‍🦲️ 5 5 501 -20 -オトナ 🧑‍🦲️ 5 5 501 -20 -カオ 🧑‍🦲️ 5 5 501 -20 -セイジン 🧑‍🦲️ 5 5 501 -20 -ハゲアタマ 🧑‍🦲️ 5 5 501 -20 -カオ 🧑‍🦲️ 5 5 501 -20 -ハゲ 🧑‍🦲️ 5 5 501 -20 -オンナ 👱‍♀️️ 5 5 501 -20 -キンパツ 👱‍♀️️ 5 5 501 -20 -キンパツノジョセイ 👱‍♀️️ 5 5 501 -20 -ジョセイ 👱‍♀️️ 5 5 501 -20 -ブロンド 👱‍♀️️ 5 5 501 -20 -オトコ 👱‍♂️️ 5 5 501 -20 -キンパツ 👱‍♂️️ 5 5 501 -20 -キンパツノダンセイ 👱‍♂️️ 5 5 501 -20 -ダンセイ 👱‍♂️️ 5 5 501 -20 -ブロンド 👱‍♂️️ 5 5 501 -20 -オトシヨリ 🧓️ 5 5 501 -20 -カオ 🧓️ 5 5 501 -20 -コウレイシャ 🧓️ 5 5 501 -20 -ロウジン 🧓️ 5 5 501 -20 -オジイサン 👴️ 5 5 501 -20 -オトシヨリ 👴️ 5 5 501 -20 -カオ 👴️ 5 5 501 -20 -コウレイシャ 👴️ 5 5 501 -20 -ダンセイ 👴️ 5 5 501 -20 -ロウジン 👴️ 5 5 501 -20 -オトシヨリ 👵️ 5 5 501 -20 -オバアサン 👵️ 5 5 501 -20 -カオ 👵️ 5 5 501 -20 -コウレイシャ 👵️ 5 5 501 -20 -ジョセイ 👵️ 5 5 501 -20 -ロウジン 👵️ 5 5 501 -20 -キャラクター 🙍️ 5 5 501 -20 -シカメガオ 🙍️ 5 5 501 -20 -シカメッツラ 🙍️ 5 5 501 -20 -シカメッツラノヒト 🙍️ 5 5 501 -20 -シカメツラ 🙍️ 5 5 501 -20 -シカメツラノヒト 🙍️ 5 5 501 -20 -オトコ 🙍‍♂️️ 5 5 501 -20 -シカメガオ 🙍‍♂️️ 5 5 501 -20 -シカメッツラ 🙍‍♂️️ 5 5 501 -20 -シカメッツラノオトコ 🙍‍♂️️ 5 5 501 -20 -シカメツラノオトコ 🙍‍♂️️ 5 5 501 -20 -ダンセイ 🙍‍♂️️ 5 5 501 -20 -オンナ 🙍‍♀️️ 5 5 501 -20 -シカメガオ 🙍‍♀️️ 5 5 501 -20 -シカメッツラ 🙍‍♀️️ 5 5 501 -20 -シカメッツラノオンナ 🙍‍♀️️ 5 5 501 -20 -シカメツラノオンナ 🙍‍♀️️ 5 5 501 -20 -ジョセイ 🙍‍♀️️ 5 5 501 -20 -キャラクター 🙎️ 5 5 501 -20 -ヒト 🙎️ 5 5 501 -20 -フキゲン 🙎️ 5 5 501 -20 -フキゲンナヒト 🙎️ 5 5 501 -20 -プンプン 🙎️ 5 5 501 -20 -オトコ 🙎‍♂️️ 5 5 501 -20 -ダンセイ 🙎‍♂️️ 5 5 501 -20 -フキゲン 🙎‍♂️️ 5 5 501 -20 -フキゲンナオトコ 🙎‍♂️️ 5 5 501 -20 -プンプン 🙎‍♂️️ 5 5 501 -20 -オンナ 🙎‍♀️️ 5 5 501 -20 -ジョセイ 🙎‍♀️️ 5 5 501 -20 -フキゲン 🙎‍♀️️ 5 5 501 -20 -フキゲンナオンナ 🙎‍♀️️ 5 5 501 -20 -プンプン 🙎‍♀️️ 5 5 501 -20 -ng 🙅️ 5 5 501 -20 -エヌジー 🙅️ 5 5 501 -20 -ジェスチャー 🙅️ 5 5 501 -20 -ダメ 🙅️ 5 5 501 -20 -ダメノポーズヲスルヒト 🙅️ 5 5 501 -20 -バツ 🙅️ 5 5 501 -20 -ヒト 🙅️ 5 5 501 -20 -ng 🙅‍♂️️ 5 5 501 -20 -エヌジー 🙅‍♂️️ 5 5 501 -20 -オトコ 🙅‍♂️️ 5 5 501 -20 -ジェスチャー 🙅‍♂️️ 5 5 501 -20 -ダメノポーズヲスルオトコ 🙅‍♂️️ 5 5 501 -20 -ダンセイ 🙅‍♂️️ 5 5 501 -20 -バツ 🙅‍♂️️ 5 5 501 -20 -ng 🙅‍♀️️ 5 5 501 -20 -エヌジー 🙅‍♀️️ 5 5 501 -20 -オンナ 🙅‍♀️️ 5 5 501 -20 -ジェスチャー 🙅‍♀️️ 5 5 501 -20 -ジョセイ 🙅‍♀️️ 5 5 501 -20 -ダメノポーズヲスルオンナ 🙅‍♀️️ 5 5 501 -20 -バツ 🙅‍♀️️ 5 5 501 -20 -ok 🙆️ 5 5 501 -20 -オーケー 🙆️ 5 5 501 -20 -オーケーノポーズヲスルヒト 🙆️ 5 5 501 -20 -ジェスチャー 🙆️ 5 5 501 -20 -ヒト 🙆️ 5 5 501 -20 -マル 🙆️ 5 5 501 -20 -ok 🙆‍♂️️ 5 5 501 -20 -オッケー 🙆‍♂️️ 5 5 501 -20 -オーケー 🙆‍♂️️ 5 5 501 -20 -オーケーノポーズヲスルオトコ 🙆‍♂️️ 5 5 501 -20 -ジェスチャー 🙆‍♂️️ 5 5 501 -20 -ダンセイ 🙆‍♂️️ 5 5 501 -20 -マル 🙆‍♂️️ 5 5 501 -20 -ok 🙆‍♀️️ 5 5 501 -20 -オッケー 🙆‍♀️️ 5 5 501 -20 -オーケー 🙆‍♀️️ 5 5 501 -20 -オーケーノポーズヲスルオンナ 🙆‍♀️️ 5 5 501 -20 -ジェスチャー 🙆‍♀️️ 5 5 501 -20 -ジョセイ 🙆‍♀️️ 5 5 501 -20 -マル 🙆‍♀️️ 5 5 501 -20 -アンナイ 💁️ 5 5 501 -20 -アンナイスルヒト 💁️ 5 5 501 -20 -ウケツケ 💁️ 5 5 501 -20 -ウケツケジョウ 💁️ 5 5 501 -20 -カオ 💁️ 5 5 501 -20 -アンナイ 💁‍♂️️ 5 5 501 -20 -アンナイスルオトコ 💁‍♂️️ 5 5 501 -20 -オトコ 💁‍♂️️ 5 5 501 -20 -ジェスチャー 💁‍♂️️ 5 5 501 -20 -ダンセイ 💁‍♂️️ 5 5 501 -20 -アンナイ 💁‍♀️️ 5 5 501 -20 -アンナイスルオンナ 💁‍♀️️ 5 5 501 -20 -オンナ 💁‍♀️️ 5 5 501 -20 -ジェスチャー 💁‍♀️️ 5 5 501 -20 -ジョセイ 💁‍♀️️ 5 5 501 -20 -キョシュ 🙋️ 5 5 501 -20 -テヲアゲル 🙋️ 5 5 501 -20 -テヲアゲルジン 🙋️ 5 5 501 -20 -テヲアゲルヒト 🙋️ 5 5 501 -20 -ヒト 🙋️ 5 5 501 -20 -オトコ 🙋‍♂️️ 5 5 501 -20 -キョシュ 🙋‍♂️️ 5 5 501 -20 -ダンセイ 🙋‍♂️️ 5 5 501 -20 -テヲアゲル 🙋‍♂️️ 5 5 501 -20 -テヲアゲルオトコ 🙋‍♂️️ 5 5 501 -20 -オンナ 🙋‍♀️️ 5 5 501 -20 -キョシュ 🙋‍♀️️ 5 5 501 -20 -ジョセイ 🙋‍♀️️ 5 5 501 -20 -テヲアゲル 🙋‍♀️️ 5 5 501 -20 -テヲアゲルオンナ 🙋‍♀️️ 5 5 501 -20 -アクセシビリティ 🧏️ 5 5 501 -20 -キコエナイ 🧏️ 5 5 501 -20 -ショウガイ 🧏️ 5 5 501 -20 -チョウカク 🧏️ 5 5 501 -20 -ヒト 🧏️ 5 5 501 -20 -ミミノフジユウナヒト 🧏️ 5 5 501 -20 -アクセシビリティ 🧏‍♂️️ 5 5 501 -20 -ショウガイ 🧏‍♂️️ 5 5 501 -20 -ダンセイ 🧏‍♂️️ 5 5 501 -20 -チョウカク 🧏‍♂️️ 5 5 501 -20 -ミミノフジユウナダンセイ 🧏‍♂️️ 5 5 501 -20 -アクセシビリティ 🧏‍♀️️ 5 5 501 -20 -ショウガイ 🧏‍♀️️ 5 5 501 -20 -ジョセイ 🧏‍♀️️ 5 5 501 -20 -チョウカク 🧏‍♀️️ 5 5 501 -20 -ミミノフジユウナジョセイ 🧏‍♀️️ 5 5 501 -20 -オジギ 🙇️ 5 5 501 -20 -オジギスルヒト 🙇️ 5 5 501 -20 -ゴメンナサイ 🙇️ 5 5 501 -20 -ドゲザ 🙇️ 5 5 501 -20 -オジギ 🙇‍♂️️ 5 5 501 -20 -オジギスルオトコ 🙇‍♂️️ 5 5 501 -20 -オトコ 🙇‍♂️️ 5 5 501 -20 -ゴメンナサイ 🙇‍♂️️ 5 5 501 -20 -ダンセイ 🙇‍♂️️ 5 5 501 -20 -ドゲザ 🙇‍♂️️ 5 5 501 -20 -オジギ 🙇‍♀️️ 5 5 501 -20 -オジギスルオンナ 🙇‍♀️️ 5 5 501 -20 -オンナ 🙇‍♀️️ 5 5 501 -20 -ゴメンナサイ 🙇‍♀️️ 5 5 501 -20 -ジョセイ 🙇‍♀️️ 5 5 501 -20 -ドゲザ 🙇‍♀️️ 5 5 501 -20 -アチャー 🤦️ 5 5 501 -20 -ジェスチャー 🤦️ 5 5 501 -20 -ヒタイニテ 🤦️ 5 5 501 -20 -ヒタイニテヲアテルヒト 🤦️ 5 5 501 -20 -アチャー 🤦‍♂️️ 5 5 501 -20 -オトコ 🤦‍♂️️ 5 5 501 -20 -ジェスチャー 🤦‍♂️️ 5 5 501 -20 -ダンセイ 🤦‍♂️️ 5 5 501 -20 -ヒタイニテ 🤦‍♂️️ 5 5 501 -20 -ヒタイニテヲアテルオトコ 🤦‍♂️️ 5 5 501 -20 -アチャー 🤦‍♀️️ 5 5 501 -20 -オンナ 🤦‍♀️️ 5 5 501 -20 -ジェスチャー 🤦‍♀️️ 5 5 501 -20 -ジョセイ 🤦‍♀️️ 5 5 501 -20 -ヒタイニテ 🤦‍♀️️ 5 5 501 -20 -ヒタイニテヲアテルオンナ 🤦‍♀️️ 5 5 501 -20 -オテアゲ 🤷️ 5 5 501 -20 -オテアゲスルヒト 🤷️ 5 5 501 -20 -ジェスチャー 🤷️ 5 5 501 -20 -オテアゲ 🤷‍♂️️ 5 5 501 -20 -オテアゲスルオトコ 🤷‍♂️️ 5 5 501 -20 -オトコ 🤷‍♂️️ 5 5 501 -20 -ジェスチャー 🤷‍♂️️ 5 5 501 -20 -ダンセイ 🤷‍♂️️ 5 5 501 -20 -オテアゲ 🤷‍♀️️ 5 5 501 -20 -オテアゲスルオンナ 🤷‍♀️️ 5 5 501 -20 -オンナ 🤷‍♀️️ 5 5 501 -20 -ジェスチャー 🤷‍♀️️ 5 5 501 -20 -ジョセイ 🤷‍♀️️ 5 5 501 -20 -イシ 🧑‍⚕️️ 5 5 501 -20 -イシャ 🧑‍⚕️️ 5 5 501 -20 -セラピスト 🧑‍⚕️️ 5 5 501 -20 -イシ 👨‍⚕️️ 5 5 501 -20 -イシャ 👨‍⚕️️ 5 5 501 -20 -オトコ 👨‍⚕️️ 5 5 501 -20 -ダンセイ 👨‍⚕️️ 5 5 501 -20 -ダンセイノイシャ 👨‍⚕️️ 5 5 501 -20 -イシ 👩‍⚕️️ 5 5 501 -20 -イシャ 👩‍⚕️️ 5 5 501 -20 -オンナ 👩‍⚕️️ 5 5 501 -20 -ジョセイ 👩‍⚕️️ 5 5 501 -20 -ジョセイノイシャ 👩‍⚕️️ 5 5 501 -20 -カクボウ 🧑‍🎓️ 5 5 501 -20 -ガクセイ 🧑‍🎓️ 5 5 501 -20 -ソツギョウ 🧑‍🎓️ 5 5 501 -20 -オトコ 👨‍🎓️ 5 5 501 -20 -カクボウ 👨‍🎓️ 5 5 501 -20 -ガクセイ 👨‍🎓️ 5 5 501 -20 -ソツギョウ 👨‍🎓️ 5 5 501 -20 -ダンシガクセイ 👨‍🎓️ 5 5 501 -20 -ダンセイ 👨‍🎓️ 5 5 501 -20 -オンナ 👩‍🎓️ 5 5 501 -20 -カクボウ 👩‍🎓️ 5 5 501 -20 -ガクセイ 👩‍🎓️ 5 5 501 -20 -ジョシガクセイ 👩‍🎓️ 5 5 501 -20 -ジョセイ 👩‍🎓️ 5 5 501 -20 -ソツギョウ 👩‍🎓️ 5 5 501 -20 -キョウシ 🧑‍🏫️ 5 5 501 -20 -キョウジュ 🧑‍🏫️ 5 5 501 -20 -コウシ 🧑‍🏫️ 5 5 501 -20 -センセイ 🧑‍🏫️ 5 5 501 -20 -タンニン 🧑‍🏫️ 5 5 501 -20 -オトコ 👨‍🏫️ 5 5 501 -20 -キョウシ 👨‍🏫️ 5 5 501 -20 -キョウジュ 👨‍🏫️ 5 5 501 -20 -センセイ 👨‍🏫️ 5 5 501 -20 -ダンセイ 👨‍🏫️ 5 5 501 -20 -ダンセイノキョウシ 👨‍🏫️ 5 5 501 -20 -オンナ 👩‍🏫️ 5 5 501 -20 -キョウシ 👩‍🏫️ 5 5 501 -20 -キョウジュ 👩‍🏫️ 5 5 501 -20 -ジョセイ 👩‍🏫️ 5 5 501 -20 -ジョセイノキョウシ 👩‍🏫️ 5 5 501 -20 -センセイ 👩‍🏫️ 5 5 501 -20 -サイバン 🧑‍⚖️️ 5 5 501 -20 -サイバンカン 🧑‍⚖️️ 5 5 501 -20 -オトコ 👨‍⚖️️ 5 5 501 -20 -サイバン 👨‍⚖️️ 5 5 501 -20 -サイバンカン 👨‍⚖️️ 5 5 501 -20 -ダンセイ 👨‍⚖️️ 5 5 501 -20 -ダンセイノサイバンカン 👨‍⚖️️ 5 5 501 -20 -オンナ 👩‍⚖️️ 5 5 501 -20 -サイバン 👩‍⚖️️ 5 5 501 -20 -サイバンカン 👩‍⚖️️ 5 5 501 -20 -ジョセイ 👩‍⚖️️ 5 5 501 -20 -ジョセイノサイバンカン 👩‍⚖️️ 5 5 501 -20 -ガーデナー 🧑‍🌾️ 5 5 501 -20 -ノウカ 🧑‍🌾️ 5 5 501 -20 -ノウギョウ 🧑‍🌾️ 5 5 501 -20 -ノウジョウヌシ 🧑‍🌾️ 5 5 501 -20 -オトコ 👨‍🌾️ 5 5 501 -20 -ダンセイ 👨‍🌾️ 5 5 501 -20 -ノウカ 👨‍🌾️ 5 5 501 -20 -ノウカノダンセイ 👨‍🌾️ 5 5 501 -20 -ノウフ 👨‍🌾️ 5 5 501 -20 -オンナ 👩‍🌾️ 5 5 501 -20 -ジョセイ 👩‍🌾️ 5 5 501 -20 -ノウカ 👩‍🌾️ 5 5 501 -20 -ノウカノジョセイ 👩‍🌾️ 5 5 501 -20 -コック 🧑‍🍳️ 5 5 501 -20 -シェフ 🧑‍🍳️ 5 5 501 -20 -リョウリ 🧑‍🍳️ 5 5 501 -20 -オトコ 👨‍🍳️ 5 5 501 -20 -コック 👨‍🍳️ 5 5 501 -20 -シェフ 👨‍🍳️ 5 5 501 -20 -ダンセイ 👨‍🍳️ 5 5 501 -20 -ダンセイノコック 👨‍🍳️ 5 5 501 -20 -リョウリ 👨‍🍳️ 5 5 501 -20 -オンナ 👩‍🍳️ 5 5 501 -20 -コック 👩‍🍳️ 5 5 501 -20 -シェフ 👩‍🍳️ 5 5 501 -20 -ジョセイ 👩‍🍳️ 5 5 501 -20 -ジョセイノコック 👩‍🍳️ 5 5 501 -20 -リョウリ 👩‍🍳️ 5 5 501 -20 -コウサク 🧑‍🔧️ 5 5 501 -20 -サギョウイン 🧑‍🔧️ 5 5 501 -20 -スパナ 🧑‍🔧️ 5 5 501 -20 -セイビシ 🧑‍🔧️ 5 5 501 -20 -メカニック 🧑‍🔧️ 5 5 501 -20 -オトコ 👨‍🔧️ 5 5 501 -20 -コウサク 👨‍🔧️ 5 5 501 -20 -スパナ 👨‍🔧️ 5 5 501 -20 -ダンセイ 👨‍🔧️ 5 5 501 -20 -ダンセイノセイビシ 👨‍🔧️ 5 5 501 -20 -メカニック 👨‍🔧️ 5 5 501 -20 -オンナ 👩‍🔧️ 5 5 501 -20 -コウサク 👩‍🔧️ 5 5 501 -20 -ジョセイ 👩‍🔧️ 5 5 501 -20 -ジョセイノセイビシ 👩‍🔧️ 5 5 501 -20 -スパナ 👩‍🔧️ 5 5 501 -20 -メカニック 👩‍🔧️ 5 5 501 -20 -コウイン 🧑‍🏭️ 5 5 501 -20 -コウジョウ 🧑‍🏭️ 5 5 501 -20 -モノヅクリ 🧑‍🏭️ 5 5 501 -20 -ヨウセツコウ 🧑‍🏭️ 5 5 501 -20 -オトコ 👨‍🏭️ 5 5 501 -20 -ダンセイ 👨‍🏭️ 5 5 501 -20 -ダンセイノヨウセツコウ 👨‍🏭️ 5 5 501 -20 -ヨウセツ 👨‍🏭️ 5 5 501 -20 -オンナ 👩‍🏭️ 5 5 501 -20 -ジョセイ 👩‍🏭️ 5 5 501 -20 -ジョセイノヨウセツコウ 👩‍🏭️ 5 5 501 -20 -ヨウセツ 👩‍🏭️ 5 5 501 -20 -カイシャイン 🧑‍💼️ 5 5 501 -20 -サラリーマン 🧑‍💼️ 5 5 501 -20 -ビジネスパーソン 🧑‍💼️ 5 5 501 -20 -カイシャイン 👨‍💼️ 5 5 501 -20 -サラリーマン 👨‍💼️ 5 5 501 -20 -ダンセイ 👨‍💼️ 5 5 501 -20 -ダンセイカイシャイン 👨‍💼️ 5 5 501 -20 -ビジネスパーソン 👨‍💼️ 5 5 501 -20 -ビジネスマン 👨‍💼️ 5 5 501 -20 -ol 👩‍💼️ 5 5 501 -20 -オーエル 👩‍💼️ 5 5 501 -20 -オール 👩‍💼️ 5 5 501 -20 -カイシャイン 👩‍💼️ 5 5 501 -20 -サラリーマン 👩‍💼️ 5 5 501 -20 -ジョセイ 👩‍💼️ 5 5 501 -20 -ジョセイカイシャイン 👩‍💼️ 5 5 501 -20 -ビジネスパーソン 👩‍💼️ 5 5 501 -20 -カガクシャ 🧑‍🔬️ 5 5 501 -20 -セイブツガクシャ 🧑‍🔬️ 5 5 501 -20 -ブツリガクシャ 🧑‍🔬️ 5 5 501 -20 -オトコ 👨‍🔬️ 5 5 501 -20 -カガクシャ 👨‍🔬️ 5 5 501 -20 -ダンセイ 👨‍🔬️ 5 5 501 -20 -ダンセイカガクシャ 👨‍🔬️ 5 5 501 -20 -オンナ 👩‍🔬️ 5 5 501 -20 -カガクシャ 👩‍🔬️ 5 5 501 -20 -ジョセイ 👩‍🔬️ 5 5 501 -20 -ジョセイカガクシャ 👩‍🔬️ 5 5 501 -20 -カイハツシャ 🧑‍💻️ 5 5 501 -20 -ギジュツシャ 🧑‍💻️ 5 5 501 -20 -コンピュータ 🧑‍💻️ 5 5 501 -20 -パソコン 🧑‍💻️ 5 5 501 -20 -プログラマ 🧑‍💻️ 5 5 501 -20 -カイハツシャ 👨‍💻️ 5 5 501 -20 -コンピュータ 👨‍💻️ 5 5 501 -20 -ダンセイ 👨‍💻️ 5 5 501 -20 -ダンセイギジュツシャ 👨‍💻️ 5 5 501 -20 -デベロッパ 👨‍💻️ 5 5 501 -20 -パソコン 👨‍💻️ 5 5 501 -20 -プログラマ 👨‍💻️ 5 5 501 -20 -カイハツシャ 👩‍💻️ 5 5 501 -20 -コンピュータ 👩‍💻️ 5 5 501 -20 -ジョセイ 👩‍💻️ 5 5 501 -20 -ジョセイギジュツシャ 👩‍💻️ 5 5 501 -20 -デベロッパ 👩‍💻️ 5 5 501 -20 -パソコン 👩‍💻️ 5 5 501 -20 -プログラマ 👩‍💻️ 5 5 501 -20 -アーティスト 🧑‍🎤️ 5 5 501 -20 -カシュ 🧑‍🎤️ 5 5 501 -20 -シンガー 🧑‍🎤️ 5 5 501 -20 -スター 🧑‍🎤️ 5 5 501 -20 -ロッカー 🧑‍🎤️ 5 5 501 -20 -アーティスト 👨‍🎤️ 5 5 501 -20 -オトコ 👨‍🎤️ 5 5 501 -20 -カシュ 👨‍🎤️ 5 5 501 -20 -シンガー 👨‍🎤️ 5 5 501 -20 -ダンセイ 👨‍🎤️ 5 5 501 -20 -ダンセイカシュ 👨‍🎤️ 5 5 501 -20 -アーティスト 👩‍🎤️ 5 5 501 -20 -オンナ 👩‍🎤️ 5 5 501 -20 -カシュ 👩‍🎤️ 5 5 501 -20 -シンガー 👩‍🎤️ 5 5 501 -20 -ジョセイ 👩‍🎤️ 5 5 501 -20 -ジョセイカシュ 👩‍🎤️ 5 5 501 -20 -アーティスト 🧑‍🎨️ 5 5 501 -20 -エカキ 🧑‍🎨️ 5 5 501 -20 -ガカ 🧑‍🎨️ 5 5 501 -20 -ゲイジュツカ 🧑‍🎨️ 5 5 501 -20 -アーティスト 👨‍🎨️ 5 5 501 -20 -オトコ 👨‍🎨️ 5 5 501 -20 -ガカ 👨‍🎨️ 5 5 501 -20 -ゲイジュツカ 👨‍🎨️ 5 5 501 -20 -ダンセイ 👨‍🎨️ 5 5 501 -20 -ダンセイノゲイジュツカ 👨‍🎨️ 5 5 501 -20 -アーティスト 👩‍🎨️ 5 5 501 -20 -オンナ 👩‍🎨️ 5 5 501 -20 -ガカ 👩‍🎨️ 5 5 501 -20 -ゲイジュツカ 👩‍🎨️ 5 5 501 -20 -ジョセイ 👩‍🎨️ 5 5 501 -20 -ジョセイノゲイジュツカ 👩‍🎨️ 5 5 501 -20 -キチョウ 🧑‍✈️️ 5 5 501 -20 -ソウジュウシ 🧑‍✈️️ 5 5 501 -20 -パイロット 🧑‍✈️️ 5 5 501 -20 -オトコ 👨‍✈️️ 5 5 501 -20 -ソウジュウシ 👨‍✈️️ 5 5 501 -20 -ダンセイ 👨‍✈️️ 5 5 501 -20 -ダンセイパイロット 👨‍✈️️ 5 5 501 -20 -オンナ 👩‍✈️️ 5 5 501 -20 -ジョセイ 👩‍✈️️ 5 5 501 -20 -ジョセイパイロット 👩‍✈️️ 5 5 501 -20 -ソウジュウシ 👩‍✈️️ 5 5 501 -20 -ウチュウヒコウシ 🧑‍🚀️ 5 5 501 -20 -ロケット 🧑‍🚀️ 5 5 501 -20 -ウチュウヒコウシ 👨‍🚀️ 5 5 501 -20 -オトコ 👨‍🚀️ 5 5 501 -20 -ダンセイ 👨‍🚀️ 5 5 501 -20 -ダンセイウチュウヒコウシ 👨‍🚀️ 5 5 501 -20 -ウチュウヒコウシ 👩‍🚀️ 5 5 501 -20 -オンナ 👩‍🚀️ 5 5 501 -20 -ジョセイ 👩‍🚀️ 5 5 501 -20 -ジョセイウチュウヒコウシ 👩‍🚀️ 5 5 501 -20 -キュウジョタイ 🧑‍🚒️ 5 5 501 -20 -ショウボウシ 🧑‍🚒️ 5 5 501 -20 -レスキュー 🧑‍🚒️ 5 5 501 -20 -オトコ 👨‍🚒️ 5 5 501 -20 -ショウボウシ 👨‍🚒️ 5 5 501 -20 -ダンセイ 👨‍🚒️ 5 5 501 -20 -ダンセイショウボウシ 👨‍🚒️ 5 5 501 -20 -オンナ 👩‍🚒️ 5 5 501 -20 -ショウボウシ 👩‍🚒️ 5 5 501 -20 -ジョセイ 👩‍🚒️ 5 5 501 -20 -ジョセイショウボウシ 👩‍🚒️ 5 5 501 -20 -オマワリサン 👮️ 5 5 501 -20 -カオ 👮️ 5 5 501 -20 -ケイカン 👮️ 5 5 501 -20 -ケイサツ 👮️ 5 5 501 -20 -ケイサツカン 👮️ 5 5 501 -20 -ポリス 👮️ 5 5 501 -20 -オマワリサン 👮‍♂️️ 5 5 501 -20 -ケイカン 👮‍♂️️ 5 5 501 -20 -ケイサツ 👮‍♂️️ 5 5 501 -20 -ケイサツカン 👮‍♂️️ 5 5 501 -20 -ダンセイ 👮‍♂️️ 5 5 501 -20 -ダンセイケイサツカン 👮‍♂️️ 5 5 501 -20 -オマワリサン 👮‍♀️️ 5 5 501 -20 -ケイカン 👮‍♀️️ 5 5 501 -20 -ケイサツ 👮‍♀️️ 5 5 501 -20 -ケイサツカン 👮‍♀️️ 5 5 501 -20 -ジョセイ 👮‍♀️️ 5 5 501 -20 -ジョセイケイサツカン 👮‍♀️️ 5 5 501 -20 -スパイ 🕵️️ 5 5 501 -20 -タンテイ 🕵️️ 5 5 501 -20 -ムシメガネ 🕵️️ 5 5 501 -20 -オトコ 🕵️‍♂️️ 5 5 501 -20 -タンテイ 🕵️‍♂️️ 5 5 501 -20 -ダンセイ 🕵️‍♂️️ 5 5 501 -20 -ダンセイノタンテイ 🕵️‍♂️️ 5 5 501 -20 -ムシメガネ 🕵️‍♂️️ 5 5 501 -20 -オンナ 🕵️‍♀️️ 5 5 501 -20 -ジョセイ 🕵️‍♀️️ 5 5 501 -20 -ジョセイノタンテイ 🕵️‍♀️️ 5 5 501 -20 -タンテイ 🕵️‍♀️️ 5 5 501 -20 -ムシメガネ 🕵️‍♀️️ 5 5 501 -20 -エイヘイ 💂️ 5 5 501 -20 -カオ 💂️ 5 5 501 -20 -ケイビ 💂️ 5 5 501 -20 -シュエイ 💂️ 5 5 501 -20 -モンバン 💂️ 5 5 501 -20 -エイヘイ 💂‍♂️️ 5 5 501 -20 -ケイビ 💂‍♂️️ 5 5 501 -20 -シュエイ 💂‍♂️️ 5 5 501 -20 -ダンセイ 💂‍♂️️ 5 5 501 -20 -ダンセイノエイヘイ 💂‍♂️️ 5 5 501 -20 -モンバン 💂‍♂️️ 5 5 501 -20 -エイヘイ 💂‍♀️️ 5 5 501 -20 -ケイビ 💂‍♀️️ 5 5 501 -20 -シュエイ 💂‍♀️️ 5 5 501 -20 -ジョセイ 💂‍♀️️ 5 5 501 -20 -ジョセイノエイヘイ 💂‍♀️️ 5 5 501 -20 -モンバン 💂‍♀️️ 5 5 501 -20 -オンミツ 🥷️ 5 5 501 -20 -クサノモノ 🥷️ 5 5 501 -20 -シノビ 🥷️ 5 5 501 -20 -スパイ 🥷️ 5 5 501 -20 -ニンジャ 🥷️ 5 5 501 -20 -ニンジュツ 🥷️ 5 5 501 -20 -カオ 👷️ 5 5 501 -20 -カナヅチ 👷️ 5 5 501 -20 -ケンセツサギョウイン 👷️ 5 5 501 -20 -コウジ 👷️ 5 5 501 -20 -ハンマー 👷️ 5 5 501 -20 -ヘルメット 👷️ 5 5 501 -20 -ケンセツサギョウイン 👷‍♂️️ 5 5 501 -20 -コウジ 👷‍♂️️ 5 5 501 -20 -ダンセイ 👷‍♂️️ 5 5 501 -20 -ダンセイノケンセツサギョウイン 👷‍♂️️ 5 5 501 -20 -ハンマー 👷‍♂️️ 5 5 501 -20 -ヘルメット 👷‍♂️️ 5 5 501 -20 -ケンセツサギョウイン 👷‍♀️️ 5 5 501 -20 -コウジ 👷‍♀️️ 5 5 501 -20 -ジョセイ 👷‍♀️️ 5 5 501 -20 -ジョセイノケンセツサギョウイン 👷‍♀️️ 5 5 501 -20 -ハンマー 👷‍♀️️ 5 5 501 -20 -ヘルメット 👷‍♀️️ 5 5 501 -20 -オウジ 🤴️ 5 5 501 -20 -オトコ 🤴️ 5 5 501 -20 -ダンセイ 🤴️ 5 5 501 -20 -プリンス 🤴️ 5 5 501 -20 -オウジョ 👸️ 5 5 501 -20 -オヒメサマ 👸️ 5 5 501 -20 -オンナ 👸️ 5 5 501 -20 -カオ 👸️ 5 5 501 -20 -クイーン 👸️ 5 5 501 -20 -ジョセイ 👸️ 5 5 501 -20 -プリンセス 👸️ 5 5 501 -20 -カオ 👳️ 5 5 501 -20 -ターバン 👳️ 5 5 501 -20 -ターバンノヒト 👳️ 5 5 501 -20 -オトコ 👳‍♂️️ 5 5 501 -20 -ターバン 👳‍♂️️ 5 5 501 -20 -ターバンノダンセイ 👳‍♂️️ 5 5 501 -20 -ダンセイ 👳‍♂️️ 5 5 501 -20 -オンナ 👳‍♀️️ 5 5 501 -20 -ジョセイ 👳‍♀️️ 5 5 501 -20 -ターバン 👳‍♀️️ 5 5 501 -20 -ターバンノジョセイ 👳‍♀️️ 5 5 501 -20 -オトコ 👲️ 5 5 501 -20 -オワンボウ 👲️ 5 5 501 -20 -カオ 👲️ 5 5 501 -20 -ダンセイ 👲️ 5 5 501 -20 -チュウカボウノダンセイ 👲️ 5 5 501 -20 -オンナ 🧕️ 5 5 501 -20 -ジョセイ 🧕️ 5 5 501 -20 -スカーフ 🧕️ 5 5 501 -20 -スカーフノジョセイ 🧕️ 5 5 501 -20 -ヒジャブ 🧕️ 5 5 501 -20 -ベール 🧕️ 5 5 501 -20 -オトコ 🤵️ 5 5 501 -20 -ケッコン 🤵️ 5 5 501 -20 -タキシード 🤵️ 5 5 501 -20 -タキシードノヒト 🤵️ 5 5 501 -20 -ダンセイ 🤵️ 5 5 501 -20 -ハナムコ 🤵️ 5 5 501 -20 -オトコ 🤵‍♂️️ 5 5 501 -20 -タキシード 🤵‍♂️️ 5 5 501 -20 -タキシードノオトコ 🤵‍♂️️ 5 5 501 -20 -タキシードノダンセイ 🤵‍♂️️ 5 5 501 -20 -ダンセイ 🤵‍♂️️ 5 5 501 -20 -オンナ 🤵‍♀️️ 5 5 501 -20 -ジョセイ 🤵‍♀️️ 5 5 501 -20 -タキシード 🤵‍♀️️ 5 5 501 -20 -タキシードノオンナ 🤵‍♀️️ 5 5 501 -20 -タキシードノジョセイ 🤵‍♀️️ 5 5 501 -20 -オンナ 👰️ 5 5 501 -20 -カオ 👰️ 5 5 501 -20 -ケッコン 👰️ 5 5 501 -20 -ジョセイ 👰️ 5 5 501 -20 -ハナヨメ 👰️ 5 5 501 -20 -ベールノヒト 👰️ 5 5 501 -20 -オトコ 👰‍♂️️ 5 5 501 -20 -ダンセイ 👰‍♂️️ 5 5 501 -20 -ベール 👰‍♂️️ 5 5 501 -20 -ベールノダンセイ 👰‍♂️️ 5 5 501 -20 -オンナ 👰‍♀️️ 5 5 501 -20 -ジョセイ 👰‍♀️️ 5 5 501 -20 -ベール 👰‍♀️️ 5 5 501 -20 -ベールノジョセイ 👰‍♀️️ 5 5 501 -20 -オンナ 🤰️ 5 5 501 -20 -ジョセイ 🤰️ 5 5 501 -20 -ニンシン 🤰️ 5 5 501 -20 -ニンプ 🤰️ 5 5 501 -20 -アカチャン 🤱️ 5 5 501 -20 -オンナ 🤱️ 5 5 501 -20 -ジュニュウ 🤱️ 5 5 501 -20 -ジョセイ 🤱️ 5 5 501 -20 -ミルク 🤱️ 5 5 501 -20 -アカチャン 👩‍🍼️ 5 5 501 -20 -オンナ 👩‍🍼️ 5 5 501 -20 -ジュニュウ 👩‍🍼️ 5 5 501 -20 -ジュニュウスルジョセイ 👩‍🍼️ 5 5 501 -20 -ジョセイ 👩‍🍼️ 5 5 501 -20 -アカチャン 👨‍🍼️ 5 5 501 -20 -オトコ 👨‍🍼️ 5 5 501 -20 -ジュニュウ 👨‍🍼️ 5 5 501 -20 -ジュニュウスルダンセイ 👨‍🍼️ 5 5 501 -20 -ダンセイ 👨‍🍼️ 5 5 501 -20 -アカチャン 🧑‍🍼️ 5 5 501 -20 -ジュニュウ 🧑‍🍼️ 5 5 501 -20 -ジュニュウスルヒト 🧑‍🍼️ 5 5 501 -20 -ヒト 🧑‍🍼️ 5 5 501 -20 -エンジェル 👼️ 5 5 501 -20 -カオ 👼️ 5 5 501 -20 -テンシ 👼️ 5 5 501 -20 -カオ 🎅️ 5 5 501 -20 -クリスマス 🎅️ 5 5 501 -20 -サンタ 🎅️ 5 5 501 -20 -サンタクロース 🎅️ 5 5 501 -20 -オンナ 🤶️ 5 5 501 -20 -クリスマス 🤶️ 5 5 501 -20 -サンタクロース 🤶️ 5 5 501 -20 -ジョセイ 🤶️ 5 5 501 -20 -ジョセイノサンタ 🤶️ 5 5 501 -20 -クリスマス 🧑‍🎄️ 5 5 501 -20 -サンタクロース 🧑‍🎄️ 5 5 501 -20 -サンタサン 🧑‍🎄️ 5 5 501 -20 -スーパーヒーロー 🦸️ 5 5 501 -20 -ゼン 🦸️ 5 5 501 -20 -チョウジン 🦸️ 5 5 501 -20 -ヒロイン 🦸️ 5 5 501 -20 -ヒーロー 🦸️ 5 5 501 -20 -ゼン 🦸‍♂️️ 5 5 501 -20 -ダンセイ 🦸‍♂️️ 5 5 501 -20 -ダンセイノスーパーヒーロー 🦸‍♂️️ 5 5 501 -20 -チョウジン 🦸‍♂️️ 5 5 501 -20 -ヒーロー 🦸‍♂️️ 5 5 501 -20 -ジョセイ 🦸‍♀️️ 5 5 501 -20 -ジョセイノスーパーヒーロー 🦸‍♀️️ 5 5 501 -20 -ゼン 🦸‍♀️️ 5 5 501 -20 -チョウジン 🦸‍♀️️ 5 5 501 -20 -ヒロイン 🦸‍♀️️ 5 5 501 -20 -ヒーロー 🦸‍♀️️ 5 5 501 -20 -アク 🦹️ 5 5 501 -20 -アクヤク 🦹️ 5 5 501 -20 -チョウジン 🦹️ 5 5 501 -20 -ハンニン 🦹️ 5 5 501 -20 -ワル 🦹️ 5 5 501 -20 -ヴィラン 🦹️ 5 5 501 -20 -アク 🦹‍♂️️ 5 5 501 -20 -ダンセイ 🦹‍♂️️ 5 5 501 -20 -ダンセイノアクヤク 🦹‍♂️️ 5 5 501 -20 -チョウジン 🦹‍♂️️ 5 5 501 -20 -ハンニン 🦹‍♂️️ 5 5 501 -20 -ワル 🦹‍♂️️ 5 5 501 -20 -ヴィラン 🦹‍♂️️ 5 5 501 -20 -アク 🦹‍♀️️ 5 5 501 -20 -ジョセイ 🦹‍♀️️ 5 5 501 -20 -ジョセイノアクヤク 🦹‍♀️️ 5 5 501 -20 -チョウジン 🦹‍♀️️ 5 5 501 -20 -ハンニン 🦹‍♀️️ 5 5 501 -20 -ワル 🦹‍♀️️ 5 5 501 -20 -ヴィラン 🦹‍♀️️ 5 5 501 -20 -マジョ 🧙️ 5 5 501 -20 -マホウ 🧙️ 5 5 501 -20 -マホウツカイ 🧙️ 5 5 501 -20 -オトコ 🧙‍♂️️ 5 5 501 -20 -オトコノマホウツカイ 🧙‍♂️️ 5 5 501 -20 -ダンセイ 🧙‍♂️️ 5 5 501 -20 -マホウツカイ 🧙‍♂️️ 5 5 501 -20 -オンナ 🧙‍♀️️ 5 5 501 -20 -オンナノマホウツカイ 🧙‍♀️️ 5 5 501 -20 -ジョセイ 🧙‍♀️️ 5 5 501 -20 -マジョ 🧙‍♀️️ 5 5 501 -20 -マホウツカイ 🧙‍♀️️ 5 5 501 -20 -オベロン 🧚️ 5 5 501 -20 -デンセツ 🧚️ 5 5 501 -20 -パック 🧚️ 5 5 501 -20 -マホウ 🧚️ 5 5 501 -20 -ヨウセイ 🧚️ 5 5 501 -20 -オトコ 🧚‍♂️️ 5 5 501 -20 -オトコノヨウセイ 🧚‍♂️️ 5 5 501 -20 -ダンセイ 🧚‍♂️️ 5 5 501 -20 -ヨウセイ 🧚‍♂️️ 5 5 501 -20 -オンナ 🧚‍♀️️ 5 5 501 -20 -オンナノヨウセイ 🧚‍♀️️ 5 5 501 -20 -ジョセイ 🧚‍♀️️ 5 5 501 -20 -ヨウセイ 🧚‍♀️️ 5 5 501 -20 -キュウケツキ 🧛️ 5 5 501 -20 -ドラキュラ 🧛️ 5 5 501 -20 -バンパイア 🧛️ 5 5 501 -20 -オトコ 🧛‍♂️️ 5 5 501 -20 -オトコノキュウケツキ 🧛‍♂️️ 5 5 501 -20 -キュウケツキ 🧛‍♂️️ 5 5 501 -20 -ダンセイ 🧛‍♂️️ 5 5 501 -20 -ドラキュラ 🧛‍♂️️ 5 5 501 -20 -バンパイア 🧛‍♂️️ 5 5 501 -20 -オンナ 🧛‍♀️️ 5 5 501 -20 -オンナノキュウケツキ 🧛‍♀️️ 5 5 501 -20 -キュウケツキ 🧛‍♀️️ 5 5 501 -20 -ジョセイ 🧛‍♀️️ 5 5 501 -20 -ドラキュラ 🧛‍♀️️ 5 5 501 -20 -バンパイア 🧛‍♀️️ 5 5 501 -20 -ニンギョ 🧜️ 5 5 501 -20 -マーマン 🧜️ 5 5 501 -20 -マーメイド 🧜️ 5 5 501 -20 -オトコ 🧜‍♂️️ 5 5 501 -20 -ダンセイ 🧜‍♂️️ 5 5 501 -20 -ニンギョ 🧜‍♂️️ 5 5 501 -20 -マーマン 🧜‍♂️️ 5 5 501 -20 -オンナ 🧜‍♀️️ 5 5 501 -20 -ジョセイ 🧜‍♀️️ 5 5 501 -20 -ニンギョ 🧜‍♀️️ 5 5 501 -20 -マーメイド 🧜‍♀️️ 5 5 501 -20 -エルフ 🧝️ 5 5 501 -20 -コヨウセイ 🧝️ 5 5 501 -20 -ヨウセイ 🧝️ 5 5 501 -20 -エルフ 🧝‍♂️️ 5 5 501 -20 -オトコ 🧝‍♂️️ 5 5 501 -20 -オトコノエルフ 🧝‍♂️️ 5 5 501 -20 -ダンセイ 🧝‍♂️️ 5 5 501 -20 -エルフ 🧝‍♀️️ 5 5 501 -20 -オンナ 🧝‍♀️️ 5 5 501 -20 -オンナノエルフ 🧝‍♀️️ 5 5 501 -20 -ジョセイ 🧝‍♀️️ 5 5 501 -20 -セイレイ 🧞️ 5 5 501 -20 -マジン 🧞️ 5 5 501 -20 -オトコ 🧞‍♂️️ 5 5 501 -20 -オトコノセイレイ 🧞‍♂️️ 5 5 501 -20 -セイレイ 🧞‍♂️️ 5 5 501 -20 -ダンセイ 🧞‍♂️️ 5 5 501 -20 -マジン 🧞‍♂️️ 5 5 501 -20 -オンナ 🧞‍♀️️ 5 5 501 -20 -オンナノセイレイ 🧞‍♀️️ 5 5 501 -20 -ジョセイ 🧞‍♀️️ 5 5 501 -20 -セイレイ 🧞‍♀️️ 5 5 501 -20 -マジン 🧞‍♀️️ 5 5 501 -20 -ゾンビ 🧟️ 5 5 501 -20 -ホラー 🧟️ 5 5 501 -20 -オトコ 🧟‍♂️️ 5 5 501 -20 -オトコノゾンビ 🧟‍♂️️ 5 5 501 -20 -ゾンビ 🧟‍♂️️ 5 5 501 -20 -ダンセイ 🧟‍♂️️ 5 5 501 -20 -ホラー 🧟‍♂️️ 5 5 501 -20 -オンナ 🧟‍♀️️ 5 5 501 -20 -オンナノゾンビ 🧟‍♀️️ 5 5 501 -20 -ジョセイ 🧟‍♀️️ 5 5 501 -20 -ゾンビ 🧟‍♀️️ 5 5 501 -20 -ホラー 🧟‍♀️️ 5 5 501 -20 -エステ 💆️ 5 5 501 -20 -フェイスマッサージ 💆️ 5 5 501 -20 -フェイスマッサージチュウノヒト 💆️ 5 5 501 -20 -マッサージ 💆️ 5 5 501 -20 -エステ 💆‍♂️️ 5 5 501 -20 -オトコ 💆‍♂️️ 5 5 501 -20 -ダンセイ 💆‍♂️️ 5 5 501 -20 -フェイスマッサージ 💆‍♂️️ 5 5 501 -20 -フェイスマッサージチュウノオトコ 💆‍♂️️ 5 5 501 -20 -マッサージ 💆‍♂️️ 5 5 501 -20 -エステ 💆‍♀️️ 5 5 501 -20 -オンナ 💆‍♀️️ 5 5 501 -20 -ジョセイ 💆‍♀️️ 5 5 501 -20 -フェイスマッサージ 💆‍♀️️ 5 5 501 -20 -フェイスマッサージチュウノオンナ 💆‍♀️️ 5 5 501 -20 -マッサージ 💆‍♀️️ 5 5 501 -20 -サンパツ 💇️ 5 5 501 -20 -サンパツサレルヒト 💇️ 5 5 501 -20 -トコヤ 💇️ 5 5 501 -20 -ビヨウイン 💇️ 5 5 501 -20 -ビヨウシツ 💇️ 5 5 501 -20 -ヘアカット 💇️ 5 5 501 -20 -サンパツサレルオトコ 💇‍♂️️ 5 5 501 -20 -ダンセイ 💇‍♂️️ 5 5 501 -20 -トコヤ 💇‍♂️️ 5 5 501 -20 -ビヨウイン 💇‍♂️️ 5 5 501 -20 -ビヨウシツ 💇‍♂️️ 5 5 501 -20 -ヘアカット 💇‍♂️️ 5 5 501 -20 -サンパツサレルオンナ 💇‍♀️️ 5 5 501 -20 -ジョセイ 💇‍♀️️ 5 5 501 -20 -トコヤ 💇‍♀️️ 5 5 501 -20 -ビヨウイン 💇‍♀️️ 5 5 501 -20 -ビヨウシツ 💇‍♀️️ 5 5 501 -20 -ヘアカット 💇‍♀️️ 5 5 501 -20 -アルクヒト 🚶️ 5 5 501 -20 -ウォーキング 🚶️ 5 5 501 -20 -ホコウ 🚶️ 5 5 501 -20 -ホコウシャ 🚶️ 5 5 501 -20 -アルクオトコ 🚶‍♂️️ 5 5 501 -20 -ウォーキング 🚶‍♂️️ 5 5 501 -20 -ダンセイ 🚶‍♂️️ 5 5 501 -20 -ホコウ 🚶‍♂️️ 5 5 501 -20 -ホコウシャ 🚶‍♂️️ 5 5 501 -20 -アルクオンナ 🚶‍♀️️ 5 5 501 -20 -ウォーキング 🚶‍♀️️ 5 5 501 -20 -ジョセイ 🚶‍♀️️ 5 5 501 -20 -ホコウ 🚶‍♀️️ 5 5 501 -20 -ホコウシャ 🚶‍♀️️ 5 5 501 -20 -キリツ 🧍️ 5 5 501 -20 -タッテイル 🧍️ 5 5 501 -20 -タツヒト 🧍️ 5 5 501 -20 -ヒト 🧍️ 5 5 501 -20 -キリツ 🧍‍♂️️ 5 5 501 -20 -タツオトコ 🧍‍♂️️ 5 5 501 -20 -ダンセイ 🧍‍♂️️ 5 5 501 -20 -キリツ 🧍‍♀️️ 5 5 501 -20 -ジョセイ 🧍‍♀️️ 5 5 501 -20 -タツオンナ 🧍‍♀️️ 5 5 501 -20 -スワル 🧎️ 5 5 501 -20 -セイザスルヒト 🧎️ 5 5 501 -20 -ヒザマズク 🧎️ 5 5 501 -20 -ヒト 🧎️ 5 5 501 -20 -スワル 🧎‍♂️️ 5 5 501 -20 -セイザスルダンセイ 🧎‍♂️️ 5 5 501 -20 -ダンセイ 🧎‍♂️️ 5 5 501 -20 -ヒザマズク 🧎‍♂️️ 5 5 501 -20 -ジョセイ 🧎‍♀️️ 5 5 501 -20 -スワル 🧎‍♀️️ 5 5 501 -20 -セイザスルジョセイ 🧎‍♀️️ 5 5 501 -20 -ヒザマズク 🧎‍♀️️ 5 5 501 -20 -アクセシビリティ 🧑‍🦯️ 5 5 501 -20 -シカク 🧑‍🦯️ 5 5 501 -20 -ショウガイ 🧑‍🦯️ 5 5 501 -20 -ツエヲツイタヒト 🧑‍🦯️ 5 5 501 -20 -メ 🧑‍🦯️ 5 5 501 -20 -アクセシビリティ 👨‍🦯️ 5 5 501 -20 -シカク 👨‍🦯️ 5 5 501 -20 -ショウガイ 👨‍🦯️ 5 5 501 -20 -ダンセイ 👨‍🦯️ 5 5 501 -20 -ツエヲツイタダンセイ 👨‍🦯️ 5 5 501 -20 -メ 👨‍🦯️ 5 5 501 -20 -アクセシビリティ 👩‍🦯️ 5 5 501 -20 -シカク 👩‍🦯️ 5 5 501 -20 -ショウガイ 👩‍🦯️ 5 5 501 -20 -ジョセイ 👩‍🦯️ 5 5 501 -20 -ツエヲツイタジョセイ 👩‍🦯️ 5 5 501 -20 -メ 👩‍🦯️ 5 5 501 -20 -アクセシビリティ 🧑‍🦼️ 5 5 501 -20 -クルマイス 🧑‍🦼️ 5 5 501 -20 -ショウガイ 🧑‍🦼️ 5 5 501 -20 -デンドウクルマイスノヒト 🧑‍🦼️ 5 5 501 -20 -アクセシビリティ 👨‍🦼️ 5 5 501 -20 -クルマイス 👨‍🦼️ 5 5 501 -20 -ショウガイ 👨‍🦼️ 5 5 501 -20 -ダンセイ 👨‍🦼️ 5 5 501 -20 -デンドウクルマイスノダンセイ 👨‍🦼️ 5 5 501 -20 -アクセシビリティ 👩‍🦼️ 5 5 501 -20 -クルマイス 👩‍🦼️ 5 5 501 -20 -ショウガイ 👩‍🦼️ 5 5 501 -20 -ジョセイ 👩‍🦼️ 5 5 501 -20 -デンドウクルマイスノジョセイ 👩‍🦼️ 5 5 501 -20 -アクセシビリティ 🧑‍🦽️ 5 5 501 -20 -クルマイス 🧑‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノヒト 🧑‍🦽️ 5 5 501 -20 -ショウガイ 🧑‍🦽️ 5 5 501 -20 -アクセシビリティ 👨‍🦽️ 5 5 501 -20 -クルマイス 👨‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノダンセイ 👨‍🦽️ 5 5 501 -20 -ショウガイ 👨‍🦽️ 5 5 501 -20 -ダンセイ 👨‍🦽️ 5 5 501 -20 -アクセシビリティ 👩‍🦽️ 5 5 501 -20 -クルマイス 👩‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノジョセイ 👩‍🦽️ 5 5 501 -20 -ショウガイ 👩‍🦽️ 5 5 501 -20 -ジョセイ 👩‍🦽️ 5 5 501 -20 -ジョギング 🏃️ 5 5 501 -20 -スポーツ 🏃️ 5 5 501 -20 -ハシルヒト 🏃️ 5 5 501 -20 -マラソン 🏃️ 5 5 501 -20 -ランナー 🏃️ 5 5 501 -20 -ランニング 🏃️ 5 5 501 -20 -ジョギング 🏃‍♂️️ 5 5 501 -20 -ダンセイ 🏃‍♂️️ 5 5 501 -20 -ハシルオトコ 🏃‍♂️️ 5 5 501 -20 -マラソン 🏃‍♂️️ 5 5 501 -20 -ランナー 🏃‍♂️️ 5 5 501 -20 -ランニング 🏃‍♂️️ 5 5 501 -20 -ジョギング 🏃‍♀️️ 5 5 501 -20 -ジョセイ 🏃‍♀️️ 5 5 501 -20 -ハシルオンナ 🏃‍♀️️ 5 5 501 -20 -マラソン 🏃‍♀️️ 5 5 501 -20 -ランナー 🏃‍♀️️ 5 5 501 -20 -ランニング 🏃‍♀️️ 5 5 501 -20 -オドリコ 💃️ 5 5 501 -20 -オドルオンナ 💃️ 5 5 501 -20 -ジョセイ 💃️ 5 5 501 -20 -ダンサー 💃️ 5 5 501 -20 -ダンス 💃️ 5 5 501 -20 -フラメンコ 💃️ 5 5 501 -20 -オトコ 🕺️ 5 5 501 -20 -オドルオトコ 🕺️ 5 5 501 -20 -ダンサー 🕺️ 5 5 501 -20 -ダンス 🕺️ 5 5 501 -20 -ダンセイ 🕺️ 5 5 501 -20 -ウイテルビジネスマン 🕴️️ 5 5 501 -20 -オトコ 🕴️️ 5 5 501 -20 -クウチュウフユウ 🕴️️ 5 5 501 -20 -スーツ 🕴️️ 5 5 501 -20 -ダンセイ 🕴️️ 5 5 501 -20 -ビジネスマン 🕴️️ 5 5 501 -20 -ウサミミ 👯️ 5 5 501 -20 -カオ 👯️ 5 5 501 -20 -ダンサー 👯️ 5 5 501 -20 -バニー 👯️ 5 5 501 -20 -バニーガール 👯️ 5 5 501 -20 -バニーボーイ 👯️ 5 5 501 -20 -パーティー 👯️ 5 5 501 -20 -ウサミミ 👯‍♂️️ 5 5 501 -20 -オトコ 👯‍♂️️ 5 5 501 -20 -ダンサー 👯‍♂️️ 5 5 501 -20 -ダンセイ 👯‍♂️️ 5 5 501 -20 -バニーボーイ 👯‍♂️️ 5 5 501 -20 -パーティー 👯‍♂️️ 5 5 501 -20 -ウサミミ 👯‍♀️️ 5 5 501 -20 -オンナ 👯‍♀️️ 5 5 501 -20 -ジョセイ 👯‍♀️️ 5 5 501 -20 -ダンサー 👯‍♀️️ 5 5 501 -20 -バニーガール 👯‍♀️️ 5 5 501 -20 -パーティー 👯‍♀️️ 5 5 501 -20 -サウナ 🧖️ 5 5 501 -20 -サウナニハイルヒト 🧖️ 5 5 501 -20 -オトコ 🧖‍♂️️ 5 5 501 -20 -サウナ 🧖‍♂️️ 5 5 501 -20 -サウナニハイルオトコ 🧖‍♂️️ 5 5 501 -20 -ダンセイ 🧖‍♂️️ 5 5 501 -20 -オンナ 🧖‍♀️️ 5 5 501 -20 -サウナ 🧖‍♀️️ 5 5 501 -20 -サウナニハイルオンナ 🧖‍♀️️ 5 5 501 -20 -ジョセイ 🧖‍♀️️ 5 5 501 -20 -トザン 🧗️ 5 5 501 -20 -ヤマノボリ 🧗️ 5 5 501 -20 -ヤマヲノボルヒト 🧗️ 5 5 501 -20 -オトコ 🧗‍♂️️ 5 5 501 -20 -ダンセイ 🧗‍♂️️ 5 5 501 -20 -トザン 🧗‍♂️️ 5 5 501 -20 -ヤマノボリ 🧗‍♂️️ 5 5 501 -20 -ヤマヲノボルオトコ 🧗‍♂️️ 5 5 501 -20 -オンナ 🧗‍♀️️ 5 5 501 -20 -ジョセイ 🧗‍♀️️ 5 5 501 -20 -トザン 🧗‍♀️️ 5 5 501 -20 -ヤマノボリ 🧗‍♀️️ 5 5 501 -20 -ヤマヲノボルオンナ 🧗‍♀️️ 5 5 501 -20 -スポーツ 🤺️ 5 5 501 -20 -フェンシング 🤺️ 5 5 501 -20 -フェンシングヲスルヒト 🤺️ 5 5 501 -20 -キシュ 🏇️ 5 5 501 -20 -ケイバ 🏇️ 5 5 501 -20 -ジョウバ 🏇️ 5 5 501 -20 -ジョッキー 🏇️ 5 5 501 -20 -スポーツ 🏇️ 5 5 501 -20 -スキー ⛷️️ 5 5 501 -20 -スキーヤー ⛷️️ 5 5 501 -20 -ストック ⛷️️ 5 5 501 -20 -スポーツ ⛷️️ 5 5 501 -20 -スノボ 🏂️ 5 5 501 -20 -スノーボーダー 🏂️ 5 5 501 -20 -スノーボード 🏂️ 5 5 501 -20 -スポーツ 🏂️ 5 5 501 -20 -ゴルフ 🏌️️ 5 5 501 -20 -ゴルファー 🏌️️ 5 5 501 -20 -ゴルフヲスルヒト 🏌️️ 5 5 501 -20 -スポーツ 🏌️️ 5 5 501 -20 -オトコ 🏌️‍♂️️ 5 5 501 -20 -ゴルフ 🏌️‍♂️️ 5 5 501 -20 -ゴルファー 🏌️‍♂️️ 5 5 501 -20 -ゴルフヲスルオトコ 🏌️‍♂️️ 5 5 501 -20 -スポーツ 🏌️‍♂️️ 5 5 501 -20 -ダンセイ 🏌️‍♂️️ 5 5 501 -20 -オンナ 🏌️‍♀️️ 5 5 501 -20 -ゴルフ 🏌️‍♀️️ 5 5 501 -20 -ゴルファー 🏌️‍♀️️ 5 5 501 -20 -ゴルフヲスルオンナ 🏌️‍♀️️ 5 5 501 -20 -ジョセイ 🏌️‍♀️️ 5 5 501 -20 -スポーツ 🏌️‍♀️️ 5 5 501 -20 -サーファー 🏄️ 5 5 501 -20 -サーフィン 🏄️ 5 5 501 -20 -サーフィンスルヒト 🏄️ 5 5 501 -20 -スポーツ 🏄️ 5 5 501 -20 -ナミノリ 🏄️ 5 5 501 -20 -オトコ 🏄‍♂️️ 5 5 501 -20 -サーファー 🏄‍♂️️ 5 5 501 -20 -サーフィンスルオトコ 🏄‍♂️️ 5 5 501 -20 -スポーツ 🏄‍♂️️ 5 5 501 -20 -ダンセイ 🏄‍♂️️ 5 5 501 -20 -ナミノリ 🏄‍♂️️ 5 5 501 -20 -オンナ 🏄‍♀️️ 5 5 501 -20 -サーファー 🏄‍♀️️ 5 5 501 -20 -サーフィンスルオンナ 🏄‍♀️️ 5 5 501 -20 -ジョセイ 🏄‍♀️️ 5 5 501 -20 -スポーツ 🏄‍♀️️ 5 5 501 -20 -ナミノリ 🏄‍♀️️ 5 5 501 -20 -カヌー 🚣️ 5 5 501 -20 -カヤック 🚣️ 5 5 501 -20 -スポーツ 🚣️ 5 5 501 -20 -ノリモノ 🚣️ 5 5 501 -20 -フネ 🚣️ 5 5 501 -20 -ボートヲコグヒト 🚣️ 5 5 501 -20 -カヌー 🚣‍♂️️ 5 5 501 -20 -カヤック 🚣‍♂️️ 5 5 501 -20 -スポーツ 🚣‍♂️️ 5 5 501 -20 -ダンセイ 🚣‍♂️️ 5 5 501 -20 -フネ 🚣‍♂️️ 5 5 501 -20 -ボートヲコグオトコ 🚣‍♂️️ 5 5 501 -20 -カヌー 🚣‍♀️️ 5 5 501 -20 -カヤック 🚣‍♀️️ 5 5 501 -20 -ジョセイ 🚣‍♀️️ 5 5 501 -20 -スポーツ 🚣‍♀️️ 5 5 501 -20 -フネ 🚣‍♀️️ 5 5 501 -20 -ボートヲコグオンナ 🚣‍♀️️ 5 5 501 -20 -オヨグヒト 🏊️ 5 5 501 -20 -スイエイ 🏊️ 5 5 501 -20 -スイマー 🏊️ 5 5 501 -20 -スイミング 🏊️ 5 5 501 -20 -スイム 🏊️ 5 5 501 -20 -スポーツ 🏊️ 5 5 501 -20 -オヨグオトコ 🏊‍♂️️ 5 5 501 -20 -スイエイ 🏊‍♂️️ 5 5 501 -20 -スイマー 🏊‍♂️️ 5 5 501 -20 -スイミング 🏊‍♂️️ 5 5 501 -20 -スイム 🏊‍♂️️ 5 5 501 -20 -スポーツ 🏊‍♂️️ 5 5 501 -20 -ダンセイ 🏊‍♂️️ 5 5 501 -20 -オヨグオンナ 🏊‍♀️️ 5 5 501 -20 -ジョセイ 🏊‍♀️️ 5 5 501 -20 -スイエイ 🏊‍♀️️ 5 5 501 -20 -スイマー 🏊‍♀️️ 5 5 501 -20 -スイミング 🏊‍♀️️ 5 5 501 -20 -スイム 🏊‍♀️️ 5 5 501 -20 -スポーツ 🏊‍♀️️ 5 5 501 -20 -キュウギ ⛹️️ 5 5 501 -20 -スポーツ ⛹️️ 5 5 501 -20 -バスケ ⛹️️ 5 5 501 -20 -バスケットボール ⛹️️ 5 5 501 -20 -バスケットボールヲスルヒト ⛹️️ 5 5 501 -20 -キュウギ ⛹️‍♂️️ 5 5 501 -20 -スポーツ ⛹️‍♂️️ 5 5 501 -20 -ダンセイ ⛹️‍♂️️ 5 5 501 -20 -バスケ ⛹️‍♂️️ 5 5 501 -20 -バスケットボール ⛹️‍♂️️ 5 5 501 -20 -バスケットボールヲスルオトコ ⛹️‍♂️️ 5 5 501 -20 -キュウギ ⛹️‍♀️️ 5 5 501 -20 -ジョセイ ⛹️‍♀️️ 5 5 501 -20 -スポーツ ⛹️‍♀️️ 5 5 501 -20 -バスケ ⛹️‍♀️️ 5 5 501 -20 -バスケットボール ⛹️‍♀️️ 5 5 501 -20 -バスケットボールヲスルオンナ ⛹️‍♀️️ 5 5 501 -20 -ウェイトリフティング 🏋️️ 5 5 501 -20 -ジュウリョウアゲ 🏋️️ 5 5 501 -20 -ジュウリョウアゲヲスルヒト 🏋️️ 5 5 501 -20 -スポーツ 🏋️️ 5 5 501 -20 -ウェイトリフティング 🏋️‍♂️️ 5 5 501 -20 -オトコ 🏋️‍♂️️ 5 5 501 -20 -ジュウリョウアゲヲスルオトコ 🏋️‍♂️️ 5 5 501 -20 -スポーツ 🏋️‍♂️️ 5 5 501 -20 -ダンセイ 🏋️‍♂️️ 5 5 501 -20 -ウェイトリフティング 🏋️‍♀️️ 5 5 501 -20 -オンナ 🏋️‍♀️️ 5 5 501 -20 -ジュウリョウアゲヲスルオンナ 🏋️‍♀️️ 5 5 501 -20 -ジョセイ 🏋️‍♀️️ 5 5 501 -20 -スポーツ 🏋️‍♀️️ 5 5 501 -20 -ケイリン 🚴️ 5 5 501 -20 -サイクリング 🚴️ 5 5 501 -20 -ジテンシャニノルジン 🚴️ 5 5 501 -20 -ジテンシャニノルヒト 🚴️ 5 5 501 -20 -スポーツ 🚴️ 5 5 501 -20 -ロードバイク 🚴️ 5 5 501 -20 -ロードレース 🚴️ 5 5 501 -20 -ケイリン 🚴‍♂️️ 5 5 501 -20 -サイクリング 🚴‍♂️️ 5 5 501 -20 -ジテンシャニノルオトコ 🚴‍♂️️ 5 5 501 -20 -スポーツ 🚴‍♂️️ 5 5 501 -20 -ダンセイ 🚴‍♂️️ 5 5 501 -20 -ロードレース 🚴‍♂️️ 5 5 501 -20 -ケイリン 🚴‍♀️️ 5 5 501 -20 -サイクリング 🚴‍♀️️ 5 5 501 -20 -ジテンシャニノルオンナ 🚴‍♀️️ 5 5 501 -20 -ジョセイ 🚴‍♀️️ 5 5 501 -20 -スポーツ 🚴‍♀️️ 5 5 501 -20 -ロードレース 🚴‍♀️️ 5 5 501 -20 -サイクリング 🚵️ 5 5 501 -20 -ジテンシャ 🚵️ 5 5 501 -20 -スポーツ 🚵️ 5 5 501 -20 -マウンテンバイク 🚵️ 5 5 501 -20 -マウンテンバイクニノルヒト 🚵️ 5 5 501 -20 -オトコ 🚵‍♂️️ 5 5 501 -20 -サイクリング 🚵‍♂️️ 5 5 501 -20 -ジテンシャ 🚵‍♂️️ 5 5 501 -20 -スポーツ 🚵‍♂️️ 5 5 501 -20 -ダンセイ 🚵‍♂️️ 5 5 501 -20 -マウンテンバイクニノルオトコ 🚵‍♂️️ 5 5 501 -20 -オンナ 🚵‍♀️️ 5 5 501 -20 -サイクリング 🚵‍♀️️ 5 5 501 -20 -ジテンシャ 🚵‍♀️️ 5 5 501 -20 -ジョセイ 🚵‍♀️️ 5 5 501 -20 -スポーツ 🚵‍♀️️ 5 5 501 -20 -マウンテンバイクニノルオンナ 🚵‍♀️️ 5 5 501 -20 -スポーツ 🤸️ 5 5 501 -20 -ソクテン 🤸️ 5 5 501 -20 -ソクテンスルヒト 🤸️ 5 5 501 -20 -タイソウ 🤸️ 5 5 501 -20 -オトコ 🤸‍♂️️ 5 5 501 -20 -スポーツ 🤸‍♂️️ 5 5 501 -20 -ソクテン 🤸‍♂️️ 5 5 501 -20 -ソクテンスルオトコ 🤸‍♂️️ 5 5 501 -20 -タイソウ 🤸‍♂️️ 5 5 501 -20 -ダンセイ 🤸‍♂️️ 5 5 501 -20 -オンナ 🤸‍♀️️ 5 5 501 -20 -ジョセイ 🤸‍♀️️ 5 5 501 -20 -スポーツ 🤸‍♀️️ 5 5 501 -20 -ソクテン 🤸‍♀️️ 5 5 501 -20 -ソクテンスルオンナ 🤸‍♀️️ 5 5 501 -20 -タイソウ 🤸‍♀️️ 5 5 501 -20 -スポーツ 🤼️ 5 5 501 -20 -レスラー 🤼️ 5 5 501 -20 -レスリング 🤼️ 5 5 501 -20 -レスリングスルヒト 🤼️ 5 5 501 -20 -レスリングヲスルヒト 🤼️ 5 5 501 -20 -オトコ 🤼‍♂️️ 5 5 501 -20 -スポーツ 🤼‍♂️️ 5 5 501 -20 -ダンセイ 🤼‍♂️️ 5 5 501 -20 -レスリング 🤼‍♂️️ 5 5 501 -20 -レスリングスルオトコ 🤼‍♂️️ 5 5 501 -20 -レスリングヲスルオトコ 🤼‍♂️️ 5 5 501 -20 -オンナ 🤼‍♀️️ 5 5 501 -20 -ジョセイ 🤼‍♀️️ 5 5 501 -20 -スポーツ 🤼‍♀️️ 5 5 501 -20 -レスリング 🤼‍♀️️ 5 5 501 -20 -レスリングスルオンナ 🤼‍♀️️ 5 5 501 -20 -レスリングヲスルオンナ 🤼‍♀️️ 5 5 501 -20 -キュウギ 🤽️ 5 5 501 -20 -スイキュウ 🤽️ 5 5 501 -20 -スイキュウヲスルヒト 🤽️ 5 5 501 -20 -スポーツ 🤽️ 5 5 501 -20 -オトコ 🤽‍♂️️ 5 5 501 -20 -キュウギ 🤽‍♂️️ 5 5 501 -20 -スイキュウ 🤽‍♂️️ 5 5 501 -20 -スイキュウヲスルオトコ 🤽‍♂️️ 5 5 501 -20 -スポーツ 🤽‍♂️️ 5 5 501 -20 -ダンセイ 🤽‍♂️️ 5 5 501 -20 -オンナ 🤽‍♀️️ 5 5 501 -20 -キュウギ 🤽‍♀️️ 5 5 501 -20 -ジョセイ 🤽‍♀️️ 5 5 501 -20 -スイキュウ 🤽‍♀️️ 5 5 501 -20 -スイキュウヲスルオンナ 🤽‍♀️️ 5 5 501 -20 -スポーツ 🤽‍♀️️ 5 5 501 -20 -キュウギ 🤾️ 5 5 501 -20 -スポーツ 🤾️ 5 5 501 -20 -ハンドボール 🤾️ 5 5 501 -20 -ハンドボールヲスルヒト 🤾️ 5 5 501 -20 -オトコ 🤾‍♂️️ 5 5 501 -20 -キュウギ 🤾‍♂️️ 5 5 501 -20 -スポーツ 🤾‍♂️️ 5 5 501 -20 -ダンセイ 🤾‍♂️️ 5 5 501 -20 -ハンドボール 🤾‍♂️️ 5 5 501 -20 -ハンドボールヲスルオトコ 🤾‍♂️️ 5 5 501 -20 -オンナ 🤾‍♀️️ 5 5 501 -20 -キュウギ 🤾‍♀️️ 5 5 501 -20 -ジョセイ 🤾‍♀️️ 5 5 501 -20 -スポーツ 🤾‍♀️️ 5 5 501 -20 -ハンドボール 🤾‍♀️️ 5 5 501 -20 -ハンドボールヲスルオンナ 🤾‍♀️️ 5 5 501 -20 -ジャグラー 🤹️ 5 5 501 -20 -ジャグリング 🤹️ 5 5 501 -20 -ジャグリングヲスルヒト 🤹️ 5 5 501 -20 -ダイドウゲイ 🤹️ 5 5 501 -20 -オトコ 🤹‍♂️️ 5 5 501 -20 -ジャグラー 🤹‍♂️️ 5 5 501 -20 -ジャグリング 🤹‍♂️️ 5 5 501 -20 -ジャグリングヲスルオトコ 🤹‍♂️️ 5 5 501 -20 -ダイドウゲイ 🤹‍♂️️ 5 5 501 -20 -ダンセイ 🤹‍♂️️ 5 5 501 -20 -オンナ 🤹‍♀️️ 5 5 501 -20 -ジャグラー 🤹‍♀️️ 5 5 501 -20 -ジャグリング 🤹‍♀️️ 5 5 501 -20 -ジャグリングヲスルオンナ 🤹‍♀️️ 5 5 501 -20 -ジョセイ 🤹‍♀️️ 5 5 501 -20 -ダイドウゲイ 🤹‍♀️️ 5 5 501 -20 -メイソウ 🧘️ 5 5 501 -20 -ヨガ 🧘️ 5 5 501 -20 -ヨガノポーズヲスルヒト 🧘️ 5 5 501 -20 -オトコ 🧘‍♂️️ 5 5 501 -20 -ダンセイ 🧘‍♂️️ 5 5 501 -20 -メイソウ 🧘‍♂️️ 5 5 501 -20 -ヨガ 🧘‍♂️️ 5 5 501 -20 -ヨガノポーズヲスルオトコ 🧘‍♂️️ 5 5 501 -20 -オンナ 🧘‍♀️️ 5 5 501 -20 -ジョセイ 🧘‍♀️️ 5 5 501 -20 -メイソウ 🧘‍♀️️ 5 5 501 -20 -ヨガ 🧘‍♀️️ 5 5 501 -20 -ヨガノポーズヲスルオンナ 🧘‍♀️️ 5 5 501 -20 -バスタブ 🛀️ 5 5 501 -20 -フロ 🛀️ 5 5 501 -20 -フロニハイルジン 🛀️ 5 5 501 -20 -フロニハイルヒト 🛀️ 5 5 501 -20 -ヨクソウ 🛀️ 5 5 501 -20 -ネル 🛌️ 5 5 501 -20 -ベッド 🛌️ 5 5 501 -20 -ベッドニネルヒト 🛌️ 5 5 501 -20 -ホテル 🛌️ 5 5 501 -20 -カップル 🧑‍🤝‍🧑️ 5 5 501 -20 -コイビト 🧑‍🤝‍🧑️ 5 5 501 -20 -ツナグ 🧑‍🤝‍🧑️ 5 5 501 -20 -テ 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグ 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグ2ニン 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグフタリ 🧑‍🤝‍🧑️ 5 5 501 -20 -トモダチ 🧑‍🤝‍🧑️ 5 5 501 -20 -ヒト 🧑‍🤝‍🧑️ 5 5 501 -20 -オンナ 👭️ 5 5 501 -20 -カップル 👭️ 5 5 501 -20 -コイビト 👭️ 5 5 501 -20 -テヲツナグジョセイ 👭️ 5 5 501 -20 -トモダチ 👭️ 5 5 501 -20 -ドウセイ 👭️ 5 5 501 -20 -イセイ 👫️ 5 5 501 -20 -カップル 👫️ 5 5 501 -20 -コイビト 👫️ 5 5 501 -20 -ダンジョ 👫️ 5 5 501 -20 -テヲツナグダンジョ 👫️ 5 5 501 -20 -トモダチ 👫️ 5 5 501 -20 -フタリ 👫️ 5 5 501 -20 -オトコ 👬️ 5 5 501 -20 -カップル 👬️ 5 5 501 -20 -コイビト 👬️ 5 5 501 -20 -テヲツナグダンセイ 👬️ 5 5 501 -20 -トモダチ 👬️ 5 5 501 -20 -ドウセイ 👬️ 5 5 501 -20 -2ニンデキス 💏️ 5 5 501 -20 -カップル 💏️ 5 5 501 -20 -キス 💏️ 5 5 501 -20 -チュッ 💏️ 5 5 501 -20 -ハート 💏️ 5 5 501 -20 -フタリデキス 💏️ 5 5 501 -20 -2ニンデキス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -カップル 👩‍❤️‍💋‍👨️ 5 5 501 -20 -キス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ジョセイ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ジョセイトダンセイデキス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -チュッ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ハート 👩‍❤️‍💋‍👨️ 5 5 501 -20 -2ニンデキス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -カップル 👨‍❤️‍💋‍👨️ 5 5 501 -20 -キス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイ 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイトダンセイデキス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -チュッ 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ハート 👨‍❤️‍💋‍👨️ 5 5 501 -20 -2ニンデキス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -カップル 👩‍❤️‍💋‍👩️ 5 5 501 -20 -キス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ジョセイ 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ジョセイトジョセイデキス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -チュッ 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ハート 👩‍❤️‍💋‍👩️ 5 5 501 -20 -アツアツ 💑️ 5 5 501 -20 -カップル 💑️ 5 5 501 -20 -カップルトハート 💑️ 5 5 501 -20 -コイビト 💑️ 5 5 501 -20 -ハート 💑️ 5 5 501 -20 -アツアツ 👩‍❤️‍👨️ 5 5 501 -20 -カップル 👩‍❤️‍👨️ 5 5 501 -20 -カップルトハート 👩‍❤️‍👨️ 5 5 501 -20 -コイビト 👩‍❤️‍👨️ 5 5 501 -20 -ジョセイ 👩‍❤️‍👨️ 5 5 501 -20 -ジョセイトダンセイノカップル 👩‍❤️‍👨️ 5 5 501 -20 -ダンセイ 👩‍❤️‍👨️ 5 5 501 -20 -ハート 👩‍❤️‍👨️ 5 5 501 -20 -アツアツ 👨‍❤️‍👨️ 5 5 501 -20 -カップル 👨‍❤️‍👨️ 5 5 501 -20 -カップルトハート 👨‍❤️‍👨️ 5 5 501 -20 -コイビト 👨‍❤️‍👨️ 5 5 501 -20 -ダンセイ 👨‍❤️‍👨️ 5 5 501 -20 -ダンセイトダンセイノカップル 👨‍❤️‍👨️ 5 5 501 -20 -ハート 👨‍❤️‍👨️ 5 5 501 -20 -アツアツ 👩‍❤️‍👩️ 5 5 501 -20 -カップル 👩‍❤️‍👩️ 5 5 501 -20 -カップルトハート 👩‍❤️‍👩️ 5 5 501 -20 -コイビト 👩‍❤️‍👩️ 5 5 501 -20 -ジョセイ 👩‍❤️‍👩️ 5 5 501 -20 -ジョセイトジョセイノカップル 👩‍❤️‍👩️ 5 5 501 -20 -ハート 👩‍❤️‍👩️ 5 5 501 -20 -オトコノコ 👨‍👩‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👦️ 5 5 501 -20 -ダンセイトジョセイトオトコノコノカゾク 👨‍👩‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧️ 5 5 501 -20 -カゾク 👨‍👩‍👧️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧️ 5 5 501 -20 -ダンセイトジョセイトオンナノコノカゾク 👨‍👩‍👧️ 5 5 501 -20 -オトコノコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧‍👦️ 5 5 501 -20 -ダンセイトジョセイトオンナノコトオトコノコノカゾク 👨‍👩‍👧‍👦️ 5 5 501 -20 -オトコノコ 👨‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👦‍👦️ 5 5 501 -20 -ダンセイトジョセイトオトコノコトオトコノコノカゾク 👨‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧‍👧️ 5 5 501 -20 -ダンセイトジョセイトオンナノコトオンナノコノカゾク 👨‍👩‍👧‍👧️ 5 5 501 -20 -オトコノコ 👨‍👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👦️ 5 5 501 -20 -ダンセイトダンセイトオトコノコノカゾク 👨‍👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧️ 5 5 501 -20 -カゾク 👨‍👨‍👧️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧️ 5 5 501 -20 -ダンセイトダンセイトオンナノコノカゾク 👨‍👨‍👧️ 5 5 501 -20 -オトコノコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧‍👦️ 5 5 501 -20 -ダンセイトダンセイトオンナノコトオトコノコノカゾク 👨‍👨‍👧‍👦️ 5 5 501 -20 -オトコノコ 👨‍👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👦‍👦️ 5 5 501 -20 -ダンセイトダンセイトオトコノコトオトコノコノカゾク 👨‍👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👨‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧‍👧️ 5 5 501 -20 -ダンセイトダンセイトオンナノコトオンナノコノカゾク 👨‍👨‍👧‍👧️ 5 5 501 -20 -オトコノコ 👩‍👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👦️ 5 5 501 -20 -ジョセイトジョセイトオトコノコノカゾク 👩‍👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧️ 5 5 501 -20 -カゾク 👩‍👩‍👧️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧️ 5 5 501 -20 -ジョセイトジョセイトオンナノコノカゾク 👩‍👩‍👧️ 5 5 501 -20 -オトコノコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイトジョセイトオンナノコトオトコノコノカゾク 👩‍👩‍👧‍👦️ 5 5 501 -20 -オトコノコ 👩‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👦‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイトジョセイトオトコノコトオトコノコノカゾク 👩‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧‍👧️ 5 5 501 -20 -カゾク 👩‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイトジョセイトオンナノコトオンナノコノカゾク 👩‍👩‍👧‍👧️ 5 5 501 -20 -オトコノコ 👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👦️ 5 5 501 -20 -カゾク 👨‍👦️ 5 5 501 -20 -ダンセイ 👨‍👦️ 5 5 501 -20 -ダンセイトオトコノコノカゾク 👨‍👦️ 5 5 501 -20 -オトコノコ 👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👦‍👦️ 5 5 501 -20 -ダンセイトオトコノコトオトコノコノカゾク 👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👧️ 5 5 501 -20 -オンナノコ 👨‍👧️ 5 5 501 -20 -カゾク 👨‍👧️ 5 5 501 -20 -ダンセイ 👨‍👧️ 5 5 501 -20 -ダンセイトオンナノコノカゾク 👨‍👧️ 5 5 501 -20 -オトコノコ 👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👧‍👦️ 5 5 501 -20 -ダンセイトオンナノコトオトコノコノカゾク 👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👧‍👧️ 5 5 501 -20 -ダンセイトオンナノコトオンナノコノカゾク 👨‍👧‍👧️ 5 5 501 -20 -オトコノコ 👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👦️ 5 5 501 -20 -カゾク 👩‍👦️ 5 5 501 -20 -ジョセイ 👩‍👦️ 5 5 501 -20 -ジョセイトオトコノコノカゾク 👩‍👦️ 5 5 501 -20 -オトコノコ 👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👦‍👦️ 5 5 501 -20 -カゾク 👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👩‍👦‍👦️ 5 5 501 -20 -ジョセイトオトコノコトオトコノコノカゾク 👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👧️ 5 5 501 -20 -オンナノコ 👩‍👧️ 5 5 501 -20 -カゾク 👩‍👧️ 5 5 501 -20 -ジョセイ 👩‍👧️ 5 5 501 -20 -ジョセイトオンナノコノカゾク 👩‍👧️ 5 5 501 -20 -オトコノコ 👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👩‍👧‍👦️ 5 5 501 -20 -カゾク 👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👩‍👧‍👦️ 5 5 501 -20 -ジョセイトオンナノコトオトコノコノカゾク 👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👩‍👧‍👧️ 5 5 501 -20 -カゾク 👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👩‍👧‍👧️ 5 5 501 -20 -ジョセイトオンナノコトオンナノコノカゾク 👩‍👧‍👧️ 5 5 501 -20 -カオ 🗣️️ 5 5 501 -20 -シルエット 🗣️️ 5 5 501 -20 -ハナス 🗣️️ 5 5 501 -20 -ハナスヒトノシルエット 🗣️️ 5 5 501 -20 -1ニン 👤️ 5 5 501 -20 -カゲ 👤️ 5 5 501 -20 -ゲスト 👤️ 5 5 501 -20 -ゲストアカウント 👤️ 5 5 501 -20 -シルエット 👤️ 5 5 501 -20 -ジョウハンシン 👤️ 5 5 501 -20 -ヒトカゲ 👤️ 5 5 501 -20 -ヒトノシルエット 👤️ 5 5 501 -20 -ヒトリ 👤️ 5 5 501 -20 -2ニン 👥️ 5 5 501 -20 -2ニンノシルエット 👥️ 5 5 501 -20 -シルエット 👥️ 5 5 501 -20 -ジョウハンシン 👥️ 5 5 501 -20 -フタリ 👥️ 5 5 501 -20 -アイサツ 🫂️ 5 5 501 -20 -アリガトウ 🫂️ 5 5 501 -20 -オワカレ 🫂️ 5 5 501 -20 -コンニチハ 🫂️ 5 5 501 -20 -サヨウナラ 🫂️ 5 5 501 -20 -ハグスルヒト 🫂️ 5 5 501 -20 -オヤコ 👪️ 5 5 501 -20 -カゾク 👪️ 5 5 501 -20 -アシ 👣️ 5 5 501 -20 -アシアト 👣️ 5 5 501 -20 -アカゲ 🦰️ 5 5 501 -20 -アカゲノヒト 🦰️ 5 5 501 -20 -アカチャ 🦰️ 5 5 501 -20 -アフロ 🦱️ 5 5 501 -20 -カール 🦱️ 5 5 501 -20 -クセゲ 🦱️ 5 5 501 -20 -パンチパーマ 🦱️ 5 5 501 -20 -マキゲ 🦱️ 5 5 501 -20 -グレー 🦳️ 5 5 501 -20 -コウレイシャ 🦳️ 5 5 501 -20 -シラガ 🦳️ 5 5 501 -20 -ネンパイ 🦳️ 5 5 501 -20 -ロウジン 🦳️ 5 5 501 -20 -カガクリョウホウ 🦲️ 5 5 501 -20 -ケガナイ 🦲️ 5 5 501 -20 -スキンヘッド 🦲️ 5 5 501 -20 -ハゲアタマ 🦲️ 5 5 501 -20 -ボウズ 🦲️ 5 5 501 -20 -カオ 🐵️ 5 5 501 -20 -サル 🐵️ 5 5 501 -20 -サルノカオ 🐵️ 5 5 501 -20 -ドウブツ 🐵️ 5 5 501 -20 -サル 🐒️ 5 5 501 -20 -ドウブツ 🐒️ 5 5 501 -20 -カオ 🦍️ 5 5 501 -20 -ゴリラ 🦍️ 5 5 501 -20 -ドウブツ 🦍️ 5 5 501 -20 -オランウータン 🦧️ 5 5 501 -20 -サル 🦧️ 5 5 501 -20 -ドウブツ 🦧️ 5 5 501 -20 -モリノヒト 🦧️ 5 5 501 -20 -イヌ 🐶️ 5 5 501 -20 -イヌノカオ 🐶️ 5 5 501 -20 -カオ 🐶️ 5 5 501 -20 -ドウブツ 🐶️ 5 5 501 -20 -ペット 🐶️ 5 5 501 -20 -イヌ 🐕️ 5 5 501 -20 -ドウブツ 🐕️ 5 5 501 -20 -ペット 🐕️ 5 5 501 -20 -アクセシビリティ 🦮️ 5 5 501 -20 -イヌ 🦮️ 5 5 501 -20 -シカク 🦮️ 5 5 501 -20 -ショウガイ 🦮️ 5 5 501 -20 -ホジョ 🦮️ 5 5 501 -20 -ホジョケン 🦮️ 5 5 501 -20 -モウドウケン 🦮️ 5 5 501 -20 -アクセシビリティ 🐕‍🦺️ 5 5 501 -20 -イヌ 🐕‍🦺️ 5 5 501 -20 -カイジョケン 🐕‍🦺️ 5 5 501 -20 -サービス 🐕‍🦺️ 5 5 501 -20 -ホジョ 🐕‍🦺️ 5 5 501 -20 -イヌ 🐩️ 5 5 501 -20 -ドウブツ 🐩️ 5 5 501 -20 -プードル 🐩️ 5 5 501 -20 -ペット 🐩️ 5 5 501 -20 -オオカミ 🐺️ 5 5 501 -20 -オオカミノカオ 🐺️ 5 5 501 -20 -カオ 🐺️ 5 5 501 -20 -ドウブツ 🐺️ 5 5 501 -20 -カオ 🦊️ 5 5 501 -20 -キツネ 🦊️ 5 5 501 -20 -キツネノカオ 🦊️ 5 5 501 -20 -ドウブツ 🦊️ 5 5 501 -20 -アライグマ 🦝️ 5 5 501 -20 -コウキシン 🦝️ 5 5 501 -20 -ズルガシコイ 🦝️ 5 5 501 -20 -センサクズキ 🦝️ 5 5 501 -20 -ドウブツ 🦝️ 5 5 501 -20 -カオ 🐱️ 5 5 501 -20 -ドウブツ 🐱️ 5 5 501 -20 -ネコ 🐱️ 5 5 501 -20 -ネコノカsオ 🐱️ 5 5 501 -20 -ネコノカオ 🐱️ 5 5 501 -20 -ペット 🐱️ 5 5 501 -20 -ドウブツ 🐈️ 5 5 501 -20 -ネコ 🐈️ 5 5 501 -20 -ペット 🐈️ 5 5 501 -20 -クロ 🐈‍⬛️ 5 5 501 -20 -クロネコ 🐈‍⬛️ 5 5 501 -20 -ドウブツ 🐈‍⬛️ 5 5 501 -20 -ネコ 🐈‍⬛️ 5 5 501 -20 -フキツ 🐈‍⬛️ 5 5 501 -20 -カオ 🦁️ 5 5 501 -20 -ドウブツ 🦁️ 5 5 501 -20 -ライオン 🦁️ 5 5 501 -20 -ライオンノカオ 🦁️ 5 5 501 -20 -エト 🐯️ 5 5 501 -20 -カオ 🐯️ 5 5 501 -20 -シシ 🐯️ 5 5 501 -20 -ジュウニシ 🐯️ 5 5 501 -20 -トラ 🐯️ 5 5 501 -20 -トラノカオ 🐯️ 5 5 501 -20 -ドウブツ 🐯️ 5 5 501 -20 -トラ 🐅️ 5 5 501 -20 -ドウブツ 🐅️ 5 5 501 -20 -ドウブツ 🐆️ 5 5 501 -20 -ヒョウ 🐆️ 5 5 501 -20 -ウマ 🐴️ 5 5 501 -20 -ウマノカオ 🐴️ 5 5 501 -20 -カオ 🐴️ 5 5 501 -20 -ドウブツ 🐴️ 5 5 501 -20 -ウマ 🐎️ 5 5 501 -20 -ケイバ 🐎️ 5 5 501 -20 -ジョウバ 🐎️ 5 5 501 -20 -ドウブツ 🐎️ 5 5 501 -20 -イッカクジュウ 🦄️ 5 5 501 -20 -カオ 🦄️ 5 5 501 -20 -ドウブツ 🦄️ 5 5 501 -20 -ユニコーン 🦄️ 5 5 501 -20 -ユニコーンノカオ 🦄️ 5 5 501 -20 -シマウマ 🦓️ 5 5 501 -20 -シマシマ 🦓️ 5 5 501 -20 -ドウブツ 🦓️ 5 5 501 -20 -カオ 🦌️ 5 5 501 -20 -シカ 🦌️ 5 5 501 -20 -ドウブツ 🦌️ 5 5 501 -20 -ウシ 🦬️ 5 5 501 -20 -ドウブツ 🦬️ 5 5 501 -20 -バイソン 🦬️ 5 5 501 -20 -バッファロー 🦬️ 5 5 501 -20 -ムレ 🦬️ 5 5 501 -20 -ヤギュウ 🦬️ 5 5 501 -20 -ウシ 🐮️ 5 5 501 -20 -ウシノカオ 🐮️ 5 5 501 -20 -エト 🐮️ 5 5 501 -20 -カオ 🐮️ 5 5 501 -20 -ジュウニシ 🐮️ 5 5 501 -20 -ドウブツ 🐮️ 5 5 501 -20 -ウシ 🐂️ 5 5 501 -20 -オウシ 🐂️ 5 5 501 -20 -セイザ 🐂️ 5 5 501 -20 -ドウブツ 🐂️ 5 5 501 -20 -ウシ 🐃️ 5 5 501 -20 -スイギュウ 🐃️ 5 5 501 -20 -ドウブツ 🐃️ 5 5 501 -20 -バッファロー 🐃️ 5 5 501 -20 -ウシ 🐄️ 5 5 501 -20 -ドウブツ 🐄️ 5 5 501 -20 -メウシ 🐄️ 5 5 501 -20 -カオ 🐷️ 5 5 501 -20 -ドウブツ 🐷️ 5 5 501 -20 -ブタ 🐷️ 5 5 501 -20 -ブタノカオ 🐷️ 5 5 501 -20 -ドウブツ 🐖️ 5 5 501 -20 -ブタ 🐖️ 5 5 501 -20 -イノシシ 🐗️ 5 5 501 -20 -カオ 🐗️ 5 5 501 -20 -ドウブツ 🐗️ 5 5 501 -20 -ノブタ 🐗️ 5 5 501 -20 -カオ 🐽️ 5 5 501 -20 -ハナ 🐽️ 5 5 501 -20 -ブタ 🐽️ 5 5 501 -20 -ブタハナ 🐽️ 5 5 501 -20 -ブタバナ 🐽️ 5 5 501 -20 -オヒツジ 🐏️ 5 5 501 -20 -セイザ 🐏️ 5 5 501 -20 -ドウブツ 🐏️ 5 5 501 -20 -ヒツジ 🐏️ 5 5 501 -20 -ドウブツ 🐑️ 5 5 501 -20 -ヒツジ 🐑️ 5 5 501 -20 -セイザ 🐐️ 5 5 501 -20 -ドウブツ 🐐️ 5 5 501 -20 -ヤギ 🐐️ 5 5 501 -20 -ドウブツ 🐪️ 5 5 501 -20 -ラクダ 🐪️ 5 5 501 -20 -ドウブツ 🐫️ 5 5 501 -20 -フタコブ 🐫️ 5 5 501 -20 -フタコブラクダ 🐫️ 5 5 501 -20 -ラクダ 🐫️ 5 5 501 -20 -アルパカ 🦙️ 5 5 501 -20 -グアナコ 🦙️ 5 5 501 -20 -ドウブツ 🦙️ 5 5 501 -20 -ビクーナ 🦙️ 5 5 501 -20 -ヨウモウ 🦙️ 5 5 501 -20 -ラマ 🦙️ 5 5 501 -20 -キリン 🦒️ 5 5 501 -20 -ドウブツ 🦒️ 5 5 501 -20 -ゾウ 🐘️ 5 5 501 -20 -ドウブツ 🐘️ 5 5 501 -20 -キバ 🦣️ 5 5 501 -20 -キョダイ 🦣️ 5 5 501 -20 -ゼツメツ 🦣️ 5 5 501 -20 -ドウブツ 🦣️ 5 5 501 -20 -マンモス 🦣️ 5 5 501 -20 -カオ 🦏️ 5 5 501 -20 -サイ 🦏️ 5 5 501 -20 -ドウブツ 🦏️ 5 5 501 -20 -カバ 🦛️ 5 5 501 -20 -ドウブツ 🦛️ 5 5 501 -20 -エト 🐭️ 5 5 501 -20 -カオ 🐭️ 5 5 501 -20 -ジュウニシ 🐭️ 5 5 501 -20 -ドウブツ 🐭️ 5 5 501 -20 -ネ 🐭️ 5 5 501 -20 -ネズミ 🐭️ 5 5 501 -20 -ネズミノカオ 🐭️ 5 5 501 -20 -ドウブツ 🐁️ 5 5 501 -20 -ネズミ 🐁️ 5 5 501 -20 -ハツカネズミ 🐁️ 5 5 501 -20 -マウス 🐁️ 5 5 501 -20 -ドウブツ 🐀️ 5 5 501 -20 -ネズミ 🐀️ 5 5 501 -20 -ラット 🐀️ 5 5 501 -20 -カオ 🐹️ 5 5 501 -20 -ドウブツ 🐹️ 5 5 501 -20 -ネズミ 🐹️ 5 5 501 -20 -ハムスター 🐹️ 5 5 501 -20 -ハムスターノカオ 🐹️ 5 5 501 -20 -ペット 🐹️ 5 5 501 -20 -ウ 🐰️ 5 5 501 -20 -ウサギ 🐰️ 5 5 501 -20 -ウサギノカオ 🐰️ 5 5 501 -20 -エト 🐰️ 5 5 501 -20 -カオ 🐰️ 5 5 501 -20 -ジュウニシ 🐰️ 5 5 501 -20 -ドウブツ 🐰️ 5 5 501 -20 -ペット 🐰️ 5 5 501 -20 -ウサギ 🐇️ 5 5 501 -20 -ドウブツ 🐇️ 5 5 501 -20 -ペット 🐇️ 5 5 501 -20 -ドウブツ 🐿️️ 5 5 501 -20 -リス 🐿️️ 5 5 501 -20 -ダムヅクリ 🦫️ 5 5 501 -20 -ドウブツ 🦫️ 5 5 501 -20 -ビーバー 🦫️ 5 5 501 -20 -トゲ 🦔️ 5 5 501 -20 -ドウブツ 🦔️ 5 5 501 -20 -ハリネズミ 🦔️ 5 5 501 -20 -キュウケツキ 🦇️ 5 5 501 -20 -コウモリ 🦇️ 5 5 501 -20 -ドウブツ 🦇️ 5 5 501 -20 -バンパイア 🦇️ 5 5 501 -20 -カオ 🐻️ 5 5 501 -20 -クマ 🐻️ 5 5 501 -20 -クマノカオ 🐻️ 5 5 501 -20 -ドウブツ 🐻️ 5 5 501 -20 -クマ 🐻‍❄️️ 5 5 501 -20 -シロ 🐻‍❄️️ 5 5 501 -20 -シロクマ 🐻‍❄️️ 5 5 501 -20 -ドウブツ 🐻‍❄️️ 5 5 501 -20 -ホッキョク 🐻‍❄️️ 5 5 501 -20 -ホッキョクグマ 🐻‍❄️️ 5 5 501 -20 -カオ 🐨️ 5 5 501 -20 -コアラ 🐨️ 5 5 501 -20 -ドウブツ 🐨️ 5 5 501 -20 -カオ 🐼️ 5 5 501 -20 -ドウブツ 🐼️ 5 5 501 -20 -パンダ 🐼️ 5 5 501 -20 -パンダノカオ 🐼️ 5 5 501 -20 -ドウブツ 🦥️ 5 5 501 -20 -ナマケモノ 🦥️ 5 5 501 -20 -ノンビリ 🦥️ 5 5 501 -20 -モノグサ 🦥️ 5 5 501 -20 -アソビスキ 🦦️ 5 5 501 -20 -カワウソ 🦦️ 5 5 501 -20 -サカナヲタベル 🦦️ 5 5 501 -20 -ドウブツ 🦦️ 5 5 501 -20 -ラッコ 🦦️ 5 5 501 -20 -アクシュウ 🦨️ 5 5 501 -20 -スカンク 🦨️ 5 5 501 -20 -ドウブツ 🦨️ 5 5 501 -20 -オーストラリア 🦘️ 5 5 501 -20 -カンガルー 🦘️ 5 5 501 -20 -ジャンプ 🦘️ 5 5 501 -20 -ジョーイ 🦘️ 5 5 501 -20 -ユウタイルイ 🦘️ 5 5 501 -20 -アナグマ 🦡️ 5 5 501 -20 -ドウブツ 🦡️ 5 5 501 -20 -ミツアナグマ 🦡️ 5 5 501 -20 -アシアト 🐾️ 5 5 501 -20 -イヌ 🐾️ 5 5 501 -20 -ドウブツ 🐾️ 5 5 501 -20 -ニクキュウ 🐾️ 5 5 501 -20 -ネコ 🐾️ 5 5 501 -20 -シチメンチョウ 🦃️ 5 5 501 -20 -ターキー 🦃️ 5 5 501 -20 -トリ 🦃️ 5 5 501 -20 -ドウブツ 🦃️ 5 5 501 -20 -カオ 🐔️ 5 5 501 -20 -トリ 🐔️ 5 5 501 -20 -ドウブツ 🐔️ 5 5 501 -20 -ニワトリ 🐔️ 5 5 501 -20 -オンドリ 🐓️ 5 5 501 -20 -トリ 🐓️ 5 5 501 -20 -ドウブツ 🐓️ 5 5 501 -20 -カオ 🐣️ 5 5 501 -20 -タマゴ 🐣️ 5 5 501 -20 -タマゴカラカエッタヒヨコ 🐣️ 5 5 501 -20 -トリ 🐣️ 5 5 501 -20 -ドウブツ 🐣️ 5 5 501 -20 -ヒナ 🐣️ 5 5 501 -20 -ヒナドリ 🐣️ 5 5 501 -20 -ヒヨコ 🐣️ 5 5 501 -20 -フカ 🐣️ 5 5 501 -20 -カオ 🐤️ 5 5 501 -20 -トリ 🐤️ 5 5 501 -20 -ドウブツ 🐤️ 5 5 501 -20 -ヒナ 🐤️ 5 5 501 -20 -ヒヨコ 🐤️ 5 5 501 -20 -ヨコヲムイテイルヒヨコ 🐤️ 5 5 501 -20 -トリ 🐥️ 5 5 501 -20 -ドウブツ 🐥️ 5 5 501 -20 -ヒナ 🐥️ 5 5 501 -20 -ヒヨコ 🐥️ 5 5 501 -20 -マエヲムイテイルヒヨコ 🐥️ 5 5 501 -20 -カオ 🐦️ 5 5 501 -20 -トリ 🐦️ 5 5 501 -20 -ドウブツ 🐦️ 5 5 501 -20 -トリ 🐧️ 5 5 501 -20 -ドウブツ 🐧️ 5 5 501 -20 -ペンギン 🐧️ 5 5 501 -20 -トリ 🕊️️ 5 5 501 -20 -ドウブツ 🕊️️ 5 5 501 -20 -ハト 🕊️️ 5 5 501 -20 -ヘイワ 🕊️️ 5 5 501 -20 -トリ 🦅️ 5 5 501 -20 -ドウブツ 🦅️ 5 5 501 -20 -ワシ 🦅️ 5 5 501 -20 -カモ 🦆️ 5 5 501 -20 -トリ 🦆️ 5 5 501 -20 -ドウブツ 🦆️ 5 5 501 -20 -トリ 🦢️ 5 5 501 -20 -ハクチョウ 🦢️ 5 5 501 -20 -ヒナ 🦢️ 5 5 501 -20 -ミニクイアヒルノコ 🦢️ 5 5 501 -20 -トリ 🦉️ 5 5 501 -20 -ドウブツ 🦉️ 5 5 501 -20 -フクロウ 🦉️ 5 5 501 -20 -ゼツメツ 🦤️ 5 5 501 -20 -トベナイトリ 🦤️ 5 5 501 -20 -トリ 🦤️ 5 5 501 -20 -ドードー 🦤️ 5 5 501 -20 -モーリシャストウ 🦤️ 5 5 501 -20 -ウモウ 🪶️ 5 5 501 -20 -カルイ 🪶️ 5 5 501 -20 -トブ 🪶️ 5 5 501 -20 -トリ 🪶️ 5 5 501 -20 -ハネ 🪶️ 5 5 501 -20 -トリ 🦩️ 5 5 501 -20 -ドウブツ 🦩️ 5 5 501 -20 -ネッタイ 🦩️ 5 5 501 -20 -ピンクイロ 🦩️ 5 5 501 -20 -フラミンゴ 🦩️ 5 5 501 -20 -クジャク 🦚️ 5 5 501 -20 -トリ 🦚️ 5 5 501 -20 -ハデ 🦚️ 5 5 501 -20 -ピーコック 🦚️ 5 5 501 -20 -オウム 🦜️ 5 5 501 -20 -カイゾク 🦜️ 5 5 501 -20 -シャベル 🦜️ 5 5 501 -20 -トリ 🦜️ 5 5 501 -20 -カエル 🐸️ 5 5 501 -20 -カエルノカオ 🐸️ 5 5 501 -20 -カオ 🐸️ 5 5 501 -20 -ドウブツ 🐸️ 5 5 501 -20 -ドウブツ 🐊️ 5 5 501 -20 -ハチュウルイ 🐊️ 5 5 501 -20 -ワニ 🐊️ 5 5 501 -20 -カメ 🐢️ 5 5 501 -20 -ドウブツ 🐢️ 5 5 501 -20 -ハチュウルイ 🐢️ 5 5 501 -20 -トカゲ 🦎️ 5 5 501 -20 -ドウブツ 🦎️ 5 5 501 -20 -ハチュウルイ 🦎️ 5 5 501 -20 -セイザ 🐍️ 5 5 501 -20 -ドウブツ 🐍️ 5 5 501 -20 -ドク 🐍️ 5 5 501 -20 -ハチュウルイ 🐍️ 5 5 501 -20 -ヘビ 🐍️ 5 5 501 -20 -エト 🐲️ 5 5 501 -20 -カオ 🐲️ 5 5 501 -20 -ジュウニシ 🐲️ 5 5 501 -20 -タツ 🐲️ 5 5 501 -20 -ドウブツ 🐲️ 5 5 501 -20 -ドラゴン 🐲️ 5 5 501 -20 -ドラゴンノカオ 🐲️ 5 5 501 -20 -リュウ 🐲️ 5 5 501 -20 -ドウブツ 🐉️ 5 5 501 -20 -ドラゴン 🐉️ 5 5 501 -20 -リュウ 🐉️ 5 5 501 -20 -キョウリュウ 🦕️ 5 5 501 -20 -ソウショクキョウリュウ 🦕️ 5 5 501 -20 -ディプロドクス 🦕️ 5 5 501 -20 -ブラキオサウルス 🦕️ 5 5 501 -20 -リュウキャクルイ 🦕️ 5 5 501 -20 -キョウリュウ 🦖️ 5 5 501 -20 -ティラノサウルス 🦖️ 5 5 501 -20 -クジラ 🐳️ 5 5 501 -20 -シオ 🐳️ 5 5 501 -20 -シオフキ 🐳️ 5 5 501 -20 -シオフキクジラ 🐳️ 5 5 501 -20 -ドウブツ 🐳️ 5 5 501 -20 -クジラ 🐋️ 5 5 501 -20 -ドウブツ 🐋️ 5 5 501 -20 -イルカ 🐬️ 5 5 501 -20 -ドウブツ 🐬️ 5 5 501 -20 -アザラシ 🦭️ 5 5 501 -20 -アシカ 🦭️ 5 5 501 -20 -カイジュウ 🦭️ 5 5 501 -20 -トド 🦭️ 5 5 501 -20 -ドウブツ 🦭️ 5 5 501 -20 -サカナ 🐟️ 5 5 501 -20 -セイザ 🐟️ 5 5 501 -20 -ドウブツ 🐟️ 5 5 501 -20 -サカナ 🐠️ 5 5 501 -20 -ドウブツ 🐠️ 5 5 501 -20 -ネッタイギョ 🐠️ 5 5 501 -20 -サカナ 🐡️ 5 5 501 -20 -ドウブツ 🐡️ 5 5 501 -20 -フグ 🐡️ 5 5 501 -20 -サカナ 🦈️ 5 5 501 -20 -サメ 🦈️ 5 5 501 -20 -ドウブツ 🦈️ 5 5 501 -20 -タコ 🐙️ 5 5 501 -20 -ドウブツ 🐙️ 5 5 501 -20 -カイ 🐚️ 5 5 501 -20 -ドウブツ 🐚️ 5 5 501 -20 -マキガイ 🐚️ 5 5 501 -20 -カタツムリ 🐌️ 5 5 501 -20 -デンデンムシ 🐌️ 5 5 501 -20 -ムシ 🐌️ 5 5 501 -20 -チョウ 🦋️ 5 5 501 -20 -ムシ 🦋️ 5 5 501 -20 -イモムシ 🐛️ 5 5 501 -20 -ケムシ 🐛️ 5 5 501 -20 -ゲジゲジ 🐛️ 5 5 501 -20 -ムシ 🐛️ 5 5 501 -20 -アリ 🐜️ 5 5 501 -20 -ムシ 🐜️ 5 5 501 -20 -ハチ 🐝️ 5 5 501 -20 -ミツバチ 🐝️ 5 5 501 -20 -ムシ 🐝️ 5 5 501 -20 -カブトムシ 🪲️ 5 5 501 -20 -コンチュウ 🪲️ 5 5 501 -20 -ツノ 🪲️ 5 5 501 -20 -ムシ 🪲️ 5 5 501 -20 -テントウムシ 🐞️ 5 5 501 -20 -ムシ 🐞️ 5 5 501 -20 -コオロギ 🦗️ 5 5 501 -20 -バッタ 🦗️ 5 5 501 -20 -ムシ 🦗️ 5 5 501 -20 -ガイチュウ 🪳️ 5 5 501 -20 -ゴキブリ 🪳️ 5 5 501 -20 -ムシ 🪳️ 5 5 501 -20 -クモ 🕷️️ 5 5 501 -20 -スパイダー 🕷️️ 5 5 501 -20 -ムシ 🕷️️ 5 5 501 -20 -クモ 🕸️️ 5 5 501 -20 -クモノス 🕸️️ 5 5 501 -20 -サソリ 🦂️ 5 5 501 -20 -セイザ 🦂️ 5 5 501 -20 -ムシ 🦂️ 5 5 501 -20 -ウイルス 🦟️ 5 5 501 -20 -カ 🦟️ 5 5 501 -20 -ネツ 🦟️ 5 5 501 -20 -ビョウキ 🦟️ 5 5 501 -20 -マラリア 🦟️ 5 5 501 -20 -ムシ 🦟️ 5 5 501 -20 -ガイチュウ 🪰️ 5 5 501 -20 -ハエ 🪰️ 5 5 501 -20 -ビョウゲンキン 🪰️ 5 5 501 -20 -フケツ 🪰️ 5 5 501 -20 -ムシ 🪰️ 5 5 501 -20 -キセイチュウ 🪱️ 5 5 501 -20 -ミミズ 🪱️ 5 5 501 -20 -ムシ 🪱️ 5 5 501 -20 -アメーバ 🦠️ 5 5 501 -20 -ウイルス 🦠️ 5 5 501 -20 -サイキン 🦠️ 5 5 501 -20 -バクテリア 🦠️ 5 5 501 -20 -ビセイブツ 🦠️ 5 5 501 -20 -ハナ 💐️ 5 5 501 -20 -ハナタバ 💐️ 5 5 501 -20 -ブーケ 💐️ 5 5 501 -20 -サクラ 🌸️ 5 5 501 -20 -ハナ 🌸️ 5 5 501 -20 -タイヘンヨクデキマシタ 💮️ 5 5 501 -20 -ハナ 💮️ 5 5 501 -20 -ハナマル 💮️ 5 5 501 -20 -ヨクデキマシタ 💮️ 5 5 501 -20 -ショクブツ 🏵️️ 5 5 501 -20 -ハナ 🏵️️ 5 5 501 -20 -ハナカザリ 🏵️️ 5 5 501 -20 -ハナ 🌹️ 5 5 501 -20 -バラ 🌹️ 5 5 501 -20 -シオレタ 🥀️ 5 5 501 -20 -シオレタハナ 🥀️ 5 5 501 -20 -ハナ 🥀️ 5 5 501 -20 -ハイビスカス 🌺️ 5 5 501 -20 -ハナ 🌺️ 5 5 501 -20 -ハナ 🌻️ 5 5 501 -20 -ヒマワリ 🌻️ 5 5 501 -20 -カイカ 🌼️ 5 5 501 -20 -サイタハナ 🌼️ 5 5 501 -20 -ハナ 🌼️ 5 5 501 -20 -チューリップ 🌷️ 5 5 501 -20 -ハナ 🌷️ 5 5 501 -20 -シンメ 🌱️ 5 5 501 -20 -フタバ 🌱️ 5 5 501 -20 -メ 🌱️ 5 5 501 -20 -ウエキバチ 🪴️ 5 5 501 -20 -ショクブツ 🪴️ 5 5 501 -20 -ナエ 🪴️ 5 5 501 -20 -ハチウエ 🪴️ 5 5 501 -20 -ベランダ 🪴️ 5 5 501 -20 -ミズヤリ 🪴️ 5 5 501 -20 -ミドリ 🪴️ 5 5 501 -20 -キ 🌲️ 5 5 501 -20 -ジョウリョクジュ 🌲️ 5 5 501 -20 -キ 🌳️ 5 5 501 -20 -ラクヨウジュ 🌳️ 5 5 501 -20 -キ 🌴️ 5 5 501 -20 -ヤシ 🌴️ 5 5 501 -20 -ヤシノキ 🌴️ 5 5 501 -20 -サボテン 🌵️ 5 5 501 -20 -ショクブツ 🌵️ 5 5 501 -20 -イナホ 🌾️ 5 5 501 -20 -イネ 🌾️ 5 5 501 -20 -クサ 🌾️ 5 5 501 -20 -ススキ 🌾️ 5 5 501 -20 -クサ 🌿️ 5 5 501 -20 -ハ 🌿️ 5 5 501 -20 -ハッパ 🌿️ 5 5 501 -20 -ハーブ 🌿️ 5 5 501 -20 -ヤクソウ 🌿️ 5 5 501 -20 -クサ ☘️️ 5 5 501 -20 -クローバー ☘️️ 5 5 501 -20 -ハ ☘️️ 5 5 501 -20 -4 🍀️ 5 5 501 -20 -クサ 🍀️ 5 5 501 -20 -クローバー 🍀️ 5 5 501 -20 -ハ 🍀️ 5 5 501 -20 -ヨツバ 🍀️ 5 5 501 -20 -ヨツバノクローバー 🍀️ 5 5 501 -20 -カエデ 🍁️ 5 5 501 -20 -コウヨウ 🍁️ 5 5 501 -20 -モミジ 🍁️ 5 5 501 -20 -オチバ 🍂️ 5 5 501 -20 -カレハ 🍂️ 5 5 501 -20 -コノハ 🍂️ 5 5 501 -20 -オチバ 🍃️ 5 5 501 -20 -カゼ 🍃️ 5 5 501 -20 -カゼニユレルハ 🍃️ 5 5 501 -20 -コノハ 🍃️ 5 5 501 -20 -ビュウビュウ 🍃️ 5 5 501 -20 -キノコ 🍄️ 5 5 501 -20 -ドク 🍄️ 5 5 501 -20 -マッシュルーム 🍄️ 5 5 501 -20 -ヤサイ 🍄️ 5 5 501 -20 -クダモノ 🍇️ 5 5 501 -20 -グレープ 🍇️ 5 5 501 -20 -ブドウ 🍇️ 5 5 501 -20 -クダモノ 🍈️ 5 5 501 -20 -メロン 🍈️ 5 5 501 -20 -ヤサイ 🍈️ 5 5 501 -20 -クダモノ 🍉️ 5 5 501 -20 -スイカ 🍉️ 5 5 501 -20 -ヤサイ 🍉️ 5 5 501 -20 -オレンジ 🍊️ 5 5 501 -20 -クダモノ 🍊️ 5 5 501 -20 -ミカン 🍊️ 5 5 501 -20 -クダモノ 🍋️ 5 5 501 -20 -レモン 🍋️ 5 5 501 -20 -クダモノ 🍌️ 5 5 501 -20 -バナナ 🍌️ 5 5 501 -20 -クダモノ 🍍️ 5 5 501 -20 -トロピカル 🍍️ 5 5 501 -20 -パイナップル 🍍️ 5 5 501 -20 -パイン 🍍️ 5 5 501 -20 -クダモノ 🥭️ 5 5 501 -20 -トロピカル 🥭️ 5 5 501 -20 -マンゴー 🥭️ 5 5 501 -20 -アカリンゴ 🍎️ 5 5 501 -20 -アップル 🍎️ 5 5 501 -20 -クダモノ 🍎️ 5 5 501 -20 -リンゴ 🍎️ 5 5 501 -20 -アオリンゴ 🍏️ 5 5 501 -20 -アップル 🍏️ 5 5 501 -20 -クダモノ 🍏️ 5 5 501 -20 -リンゴ 🍏️ 5 5 501 -20 -クダモノ 🍐️ 5 5 501 -20 -セイヨウナシ 🍐️ 5 5 501 -20 -ナシ 🍐️ 5 5 501 -20 -ヨウナシ 🍐️ 5 5 501 -20 -クダモノ 🍑️ 5 5 501 -20 -ピーチ 🍑️ 5 5 501 -20 -モモ 🍑️ 5 5 501 -20 -クダモノ 🍒️ 5 5 501 -20 -サクランボ 🍒️ 5 5 501 -20 -チェリー 🍒️ 5 5 501 -20 -イチゴ 🍓️ 5 5 501 -20 -クダモノ 🍓️ 5 5 501 -20 -ストロベリー 🍓️ 5 5 501 -20 -クダモノ 🫐️ 5 5 501 -20 -ビルベリー 🫐️ 5 5 501 -20 -ブルーベリー 🫐️ 5 5 501 -20 -ベリー 🫐️ 5 5 501 -20 -キウイ 🥝️ 5 5 501 -20 -キウイフルーツ 🥝️ 5 5 501 -20 -クダモノ 🥝️ 5 5 501 -20 -クダモノ 🍅️ 5 5 501 -20 -トマト 🍅️ 5 5 501 -20 -ヤサイ 🍅️ 5 5 501 -20 -オリーブ 🫒️ 5 5 501 -20 -カジツ 🫒️ 5 5 501 -20 -ジツ 🫒️ 5 5 501 -20 -ミ 🫒️ 5 5 501 -20 -クダモノ 🥥️ 5 5 501 -20 -ココナッツ 🥥️ 5 5 501 -20 -ココナツ 🥥️ 5 5 501 -20 -ヤシノミ 🥥️ 5 5 501 -20 -アボカド 🥑️ 5 5 501 -20 -アボガド 🥑️ 5 5 501 -20 -クダモノ 🥑️ 5 5 501 -20 -ヤサイ 🥑️ 5 5 501 -20 -ナス 🍆️ 5 5 501 -20 -ヤサイ 🍆️ 5 5 501 -20 -イモ 🥔️ 5 5 501 -20 -ジャガイモ 🥔️ 5 5 501 -20 -ポテト 🥔️ 5 5 501 -20 -ヤサイ 🥔️ 5 5 501 -20 -ニンジン 🥕️ 5 5 501 -20 -ヤサイ 🥕️ 5 5 501 -20 -コーン 🌽️ 5 5 501 -20 -トウモロコシ 🌽️ 5 5 501 -20 -ヤサイ 🌽️ 5 5 501 -20 -カライ 🌶️️ 5 5 501 -20 -コウシンリョウ 🌶️️ 5 5 501 -20 -トウガラシ 🌶️️ 5 5 501 -20 -ヤサイ 🌶️️ 5 5 501 -20 -アカピーマン 🫑️ 5 5 501 -20 -トウガラシ 🫑️ 5 5 501 -20 -パプリカ 🫑️ 5 5 501 -20 -ピーマン 🫑️ 5 5 501 -20 -ヤサイ 🫑️ 5 5 501 -20 -キュウリ 🥒️ 5 5 501 -20 -ツケモノ 🥒️ 5 5 501 -20 -ピクルス 🥒️ 5 5 501 -20 -ヤサイ 🥒️ 5 5 501 -20 -キャベツ 🥬️ 5 5 501 -20 -ケール 🥬️ 5 5 501 -20 -チンゲンサイ 🥬️ 5 5 501 -20 -ハヤサイ 🥬️ 5 5 501 -20 -レタス 🥬️ 5 5 501 -20 -ブロッコリー 🥦️ 5 5 501 -20 -ヤサイ 🥦️ 5 5 501 -20 -カオリ 🧄️ 5 5 501 -20 -ニオイ 🧄️ 5 5 501 -20 -ニンニク 🧄️ 5 5 501 -20 -ヤクミ 🧄️ 5 5 501 -20 -ヤサイ 🧄️ 5 5 501 -20 -タマネギ 🧅️ 5 5 501 -20 -ネギ 🧅️ 5 5 501 -20 -ヤクミ 🧅️ 5 5 501 -20 -ヤサイ 🧅️ 5 5 501 -20 -ナッツ 🥜️ 5 5 501 -20 -ピーナッツ 🥜️ 5 5 501 -20 -ヤサイ 🥜️ 5 5 501 -20 -ラッカセイ 🥜️ 5 5 501 -20 -クリ 🌰️ 5 5 501 -20 -ヤサイ 🌰️ 5 5 501 -20 -ショクパン 🍞️ 5 5 501 -20 -パン 🍞️ 5 5 501 -20 -ベーカリー 🍞️ 5 5 501 -20 -クロワッサン 🥐️ 5 5 501 -20 -パン 🥐️ 5 5 501 -20 -フランス 🥐️ 5 5 501 -20 -ベーカリー 🥐️ 5 5 501 -20 -バゲット 🥖️ 5 5 501 -20 -パン 🥖️ 5 5 501 -20 -フランスパン 🥖️ 5 5 501 -20 -ベーカリー 🥖️ 5 5 501 -20 -アレパ 🫓️ 5 5 501 -20 -ナン 🫓️ 5 5 501 -20 -パン 🫓️ 5 5 501 -20 -ピタパン 🫓️ 5 5 501 -20 -フラットブレッド 🫓️ 5 5 501 -20 -ラバシ 🫓️ 5 5 501 -20 -ネジリ 🥨️ 5 5 501 -20 -パン 🥨️ 5 5 501 -20 -プレッツェル 🥨️ 5 5 501 -20 -クリームチーズ 🥯️ 5 5 501 -20 -パンヤ 🥯️ 5 5 501 -20 -ベーカリー 🥯️ 5 5 501 -20 -ベーグル 🥯️ 5 5 501 -20 -パンケーキ 🥞️ 5 5 501 -20 -ホットケーキ 🥞️ 5 5 501 -20 -フンワリ 🧇️ 5 5 501 -20 -ヤキガシ 🧇️ 5 5 501 -20 -ワッフル 🧇️ 5 5 501 -20 -チーズ 🧀️ 5 5 501 -20 -ニク 🍖️ 5 5 501 -20 -ホネツキニク 🍖️ 5 5 501 -20 -モモニク 🍖️ 5 5 501 -20 -チキン 🍗️ 5 5 501 -20 -トリモモニク 🍗️ 5 5 501 -20 -ニク 🍗️ 5 5 501 -20 -ニワトリモモニク 🍗️ 5 5 501 -20 -ホネツキニク 🍗️ 5 5 501 -20 -モモニク 🍗️ 5 5 501 -20 -ステーキ 🥩️ 5 5 501 -20 -ステーキニク 🥩️ 5 5 501 -20 -ニク 🥩️ 5 5 501 -20 -ビーフ 🥩️ 5 5 501 -20 -ポーク 🥩️ 5 5 501 -20 -ラム 🥩️ 5 5 501 -20 -ニク 🥓️ 5 5 501 -20 -ベーコン 🥓️ 5 5 501 -20 -ハンバーガー 🍔️ 5 5 501 -20 -バーガー 🍔️ 5 5 501 -20 -フライドポテト 🍟️ 5 5 501 -20 -フレンチフライ 🍟️ 5 5 501 -20 -ポテト 🍟️ 5 5 501 -20 -ポテトフライ 🍟️ 5 5 501 -20 -チーズ 🍕️ 5 5 501 -20 -ピザ 🍕️ 5 5 501 -20 -ピッツァ 🍕️ 5 5 501 -20 -ソーセージ 🌭️ 5 5 501 -20 -フランクフルト 🌭️ 5 5 501 -20 -ホットドッグ 🌭️ 5 5 501 -20 -サンドイッチ 🥪️ 5 5 501 -20 -パン 🥪️ 5 5 501 -20 -タコス 🌮️ 5 5 501 -20 -メキシカン 🌮️ 5 5 501 -20 -ソフトタコス 🌯️ 5 5 501 -20 -ブリトー 🌯️ 5 5 501 -20 -メキシカン 🌯️ 5 5 501 -20 -タマル 🫔️ 5 5 501 -20 -タマレス 🫔️ 5 5 501 -20 -チマキ 🫔️ 5 5 501 -20 -メキシカン 🫔️ 5 5 501 -20 -ケバブ 🥙️ 5 5 501 -20 -ケバブサンド 🥙️ 5 5 501 -20 -ラップサンド 🥙️ 5 5 501 -20 -コロッケ 🧆️ 5 5 501 -20 -ニクダンゴ 🧆️ 5 5 501 -20 -ヒヨコマメ 🧆️ 5 5 501 -20 -ファラフェル 🧆️ 5 5 501 -20 -タマゴ 🥚️ 5 5 501 -20 -タマゴ 🍳️ 5 5 501 -20 -フライパン 🍳️ 5 5 501 -20 -メダマヤキ 🍳️ 5 5 501 -20 -リョウリ 🍳️ 5 5 501 -20 -シーフード 🥘️ 5 5 501 -20 -パエリア 🥘️ 5 5 501 -20 -シチュー 🍲️ 5 5 501 -20 -ナベ 🍲️ 5 5 501 -20 -ナベリョウリ 🍲️ 5 5 501 -20 -ニコミ 🍲️ 5 5 501 -20 -ニモノ 🍲️ 5 5 501 -20 -スイス 🫕️ 5 5 501 -20 -チョコ 🫕️ 5 5 501 -20 -チーズ 🫕️ 5 5 501 -20 -トカス 🫕️ 5 5 501 -20 -ナベ 🫕️ 5 5 501 -20 -フォンデュ 🫕️ 5 5 501 -20 -オカユ 🥣️ 5 5 501 -20 -シリアル 🥣️ 5 5 501 -20 -チョウショク 🥣️ 5 5 501 -20 -ボウルトスプーン 🥣️ 5 5 501 -20 -グリーン 🥗️ 5 5 501 -20 -グリーンサラダ 🥗️ 5 5 501 -20 -サラダ 🥗️ 5 5 501 -20 -オカシ 🍿️ 5 5 501 -20 -ポップコーン 🍿️ 5 5 501 -20 -ニュウセイヒン 🧈️ 5 5 501 -20 -バター 🧈️ 5 5 501 -20 -シオ 🧂️ 5 5 501 -20 -チョウミリョウ 🧂️ 5 5 501 -20 -フリカケヨウキ 🧂️ 5 5 501 -20 -ヤクミ 🧂️ 5 5 501 -20 -カン 🥫️ 5 5 501 -20 -カンヅメ 🥫️ 5 5 501 -20 -ヒジョウショク 🥫️ 5 5 501 -20 -エキベン 🍱️ 5 5 501 -20 -ベントウ 🍱️ 5 5 501 -20 -マクノウチ 🍱️ 5 5 501 -20 -オカシ 🍘️ 5 5 501 -20 -オセンベイ 🍘️ 5 5 501 -20 -センベイ 🍘️ 5 5 501 -20 -オニギリ 🍙️ 5 5 501 -20 -オムスビ 🍙️ 5 5 501 -20 -コメ 🍙️ 5 5 501 -20 -コメ 🍚️ 5 5 501 -20 -ゴハン 🍚️ 5 5 501 -20 -チャワン 🍚️ 5 5 501 -20 -ライス 🍚️ 5 5 501 -20 -カレー 🍛️ 5 5 501 -20 -カレーライス 🍛️ 5 5 501 -20 -ライス 🍛️ 5 5 501 -20 -アツアツ 🍜️ 5 5 501 -20 -ドンブリ 🍜️ 5 5 501 -20 -ラーメン 🍜️ 5 5 501 -20 -スパゲッティ 🍝️ 5 5 501 -20 -スパゲッティー 🍝️ 5 5 501 -20 -パスタ 🍝️ 5 5 501 -20 -イモ 🍠️ 5 5 501 -20 -サツマイモ 🍠️ 5 5 501 -20 -ヤキイモ 🍠️ 5 5 501 -20 -オデン 🍢️ 5 5 501 -20 -オスシ 🍣️ 5 5 501 -20 -スシ 🍣️ 5 5 501 -20 -エビ 🍤️ 5 5 501 -20 -エビフライ 🍤️ 5 5 501 -20 -テンプラ 🍤️ 5 5 501 -20 -フライ 🍤️ 5 5 501 -20 -ウズ 🍥️ 5 5 501 -20 -ウズマキ 🍥️ 5 5 501 -20 -ナルト 🍥️ 5 5 501 -20 -ネリモノ 🍥️ 5 5 501 -20 -アキ 🥮️ 5 5 501 -20 -オイワイ 🥮️ 5 5 501 -20 -ゲッペイ 🥮️ 5 5 501 -20 -チュウカカシ 🥮️ 5 5 501 -20 -チュウシュウセツ 🥮️ 5 5 501 -20 -チュウシュウブシ 🥮️ 5 5 501 -20 -オダンゴ 🍡️ 5 5 501 -20 -ダンゴ 🍡️ 5 5 501 -20 -ワガシ 🍡️ 5 5 501 -20 -ギョウザ 🥟️ 5 5 501 -20 -テンシン 🥟️ 5 5 501 -20 -ニクマン 🥟️ 5 5 501 -20 -オミクジ 🥠️ 5 5 501 -20 -フォーチュンクッキー 🥠️ 5 5 501 -20 -チュウカ 🥡️ 5 5 501 -20 -テイクアウトベントウ 🥡️ 5 5 501 -20 -ベントウ 🥡️ 5 5 501 -20 -モチカエリ 🥡️ 5 5 501 -20 -カニ 🦀️ 5 5 501 -20 -セイザ 🦀️ 5 5 501 -20 -ドウブツ 🦀️ 5 5 501 -20 -ザリガニ 🦞️ 5 5 501 -20 -シーフード 🦞️ 5 5 501 -20 -ハサミ 🦞️ 5 5 501 -20 -ビスク 🦞️ 5 5 501 -20 -ロブスター 🦞️ 5 5 501 -20 -エビ 🦐️ 5 5 501 -20 -シュリンプ 🦐️ 5 5 501 -20 -シーフード 🦐️ 5 5 501 -20 -ドウブツ 🦐️ 5 5 501 -20 -イカ 🦑️ 5 5 501 -20 -シーフード 🦑️ 5 5 501 -20 -ドウブツ 🦑️ 5 5 501 -20 -オイスター 🦪️ 5 5 501 -20 -カイ 🦪️ 5 5 501 -20 -カキ 🦪️ 5 5 501 -20 -ギョカイ 🦪️ 5 5 501 -20 -シーフード 🦪️ 5 5 501 -20 -ナマガキ 🦪️ 5 5 501 -20 -アイス 🍦️ 5 5 501 -20 -オカシ 🍦️ 5 5 501 -20 -スイーツ 🍦️ 5 5 501 -20 -ソフト 🍦️ 5 5 501 -20 -ソフトクリーム 🍦️ 5 5 501 -20 -デザート 🍦️ 5 5 501 -20 -アイス 🍧️ 5 5 501 -20 -オカシ 🍧️ 5 5 501 -20 -カキゴオリ 🍧️ 5 5 501 -20 -コオリ 🍧️ 5 5 501 -20 -デザート 🍧️ 5 5 501 -20 -アイス 🍨️ 5 5 501 -20 -アイスクリーム 🍨️ 5 5 501 -20 -オカシ 🍨️ 5 5 501 -20 -スイーツ 🍨️ 5 5 501 -20 -デザート 🍨️ 5 5 501 -20 -オカシ 🍩️ 5 5 501 -20 -スイーツ 🍩️ 5 5 501 -20 -デザート 🍩️ 5 5 501 -20 -ドーナツ 🍩️ 5 5 501 -20 -オカシ 🍪️ 5 5 501 -20 -クッキー 🍪️ 5 5 501 -20 -スイーツ 🍪️ 5 5 501 -20 -デザート 🍪️ 5 5 501 -20 -オタンジョウビ 🎂️ 5 5 501 -20 -ケーキ 🎂️ 5 5 501 -20 -タンジョウビ 🎂️ 5 5 501 -20 -バースデー 🎂️ 5 5 501 -20 -バースデーケーキ 🎂️ 5 5 501 -20 -オカシ 🍰️ 5 5 501 -20 -ケーキ 🍰️ 5 5 501 -20 -ショートケーキ 🍰️ 5 5 501 -20 -スイーツ 🍰️ 5 5 501 -20 -デザート 🍰️ 5 5 501 -20 -オカシ 🧁️ 5 5 501 -20 -カップケーキ 🧁️ 5 5 501 -20 -ケーキ 🧁️ 5 5 501 -20 -スイーツ 🧁️ 5 5 501 -20 -ベーカリー 🧁️ 5 5 501 -20 -オカシ 🥧️ 5 5 501 -20 -タルト 🥧️ 5 5 501 -20 -パイ 🥧️ 5 5 501 -20 -オカシ 🍫️ 5 5 501 -20 -スイーツ 🍫️ 5 5 501 -20 -チョコ 🍫️ 5 5 501 -20 -チョコレート 🍫️ 5 5 501 -20 -デザート 🍫️ 5 5 501 -20 -アメ 🍬️ 5 5 501 -20 -オカシ 🍬️ 5 5 501 -20 -キャンディ 🍬️ 5 5 501 -20 -キャンディー 🍬️ 5 5 501 -20 -アメ 🍭️ 5 5 501 -20 -オカシ 🍭️ 5 5 501 -20 -キャンディ 🍭️ 5 5 501 -20 -キャンディー 🍭️ 5 5 501 -20 -ペロペロキャンディ 🍭️ 5 5 501 -20 -ボウツキキャンディ 🍭️ 5 5 501 -20 -オカシ 🍮️ 5 5 501 -20 -スイーツ 🍮️ 5 5 501 -20 -デザート 🍮️ 5 5 501 -20 -プリン 🍮️ 5 5 501 -20 -アマイ 🍯️ 5 5 501 -20 -ハチミツ 🍯️ 5 5 501 -20 -ハニー 🍯️ 5 5 501 -20 -ハニーポット 🍯️ 5 5 501 -20 -ミツビン 🍯️ 5 5 501 -20 -アカチャン 🍼️ 5 5 501 -20 -ホニュウビン 🍼️ 5 5 501 -20 -ミルク 🍼️ 5 5 501 -20 -ギュウニュウ 🥛️ 5 5 501 -20 -ギュウニュウイリノコップ 🥛️ 5 5 501 -20 -コップ 🥛️ 5 5 501 -20 -ミルク 🥛️ 5 5 501 -20 -アタタカイノミモノ ☕️ 5 5 501 -20 -カップ ☕️ 5 5 501 -20 -キッサテン ☕️ 5 5 501 -20 -コウチャ ☕️ 5 5 501 -20 -コーヒー ☕️ 5 5 501 -20 -ノミモノ ☕️ 5 5 501 -20 -ホットドリンク ☕️ 5 5 501 -20 -オチャ 🫖️ 5 5 501 -20 -キュウス 🫖️ 5 5 501 -20 -チャキ 🫖️ 5 5 501 -20 -ティーポット 🫖️ 5 5 501 -20 -ノミモノ 🫖️ 5 5 501 -20 -オチャ 🍵️ 5 5 501 -20 -ノミモノ 🍵️ 5 5 501 -20 -ユノミ 🍵️ 5 5 501 -20 -リョクチャ 🍵️ 5 5 501 -20 -サケ 🍶️ 5 5 501 -20 -トックリ 🍶️ 5 5 501 -20 -ニホンシュ 🍶️ 5 5 501 -20 -アワ 🍾️ 5 5 501 -20 -シャンパン 🍾️ 5 5 501 -20 -シャンペン 🍾️ 5 5 501 -20 -スパークリングワイン 🍾️ 5 5 501 -20 -スプマンテ 🍾️ 5 5 501 -20 -ボトル 🍾️ 5 5 501 -20 -グラス 🍷️ 5 5 501 -20 -バー 🍷️ 5 5 501 -20 -ワイン 🍷️ 5 5 501 -20 -ワイングラス 🍷️ 5 5 501 -20 -カクテル 🍸️ 5 5 501 -20 -カクテルグラス 🍸️ 5 5 501 -20 -グラス 🍸️ 5 5 501 -20 -バー 🍸️ 5 5 501 -20 -カクテル 🍹️ 5 5 501 -20 -トロピカル 🍹️ 5 5 501 -20 -トロピカルドリンク 🍹️ 5 5 501 -20 -バー 🍹️ 5 5 501 -20 -イザカヤ 🍺️ 5 5 501 -20 -ジョッキ 🍺️ 5 5 501 -20 -バー 🍺️ 5 5 501 -20 -ビール 🍺️ 5 5 501 -20 -ビールジョッキ 🍺️ 5 5 501 -20 -エンカイ 🍻️ 5 5 501 -20 -カンパイ 🍻️ 5 5 501 -20 -ジョッキ 🍻️ 5 5 501 -20 -ビール 🍻️ 5 5 501 -20 -ビールデカンパイ 🍻️ 5 5 501 -20 -カンパイ 🥂️ 5 5 501 -20 -グラスデカンパイ 🥂️ 5 5 501 -20 -シャンパン 🥂️ 5 5 501 -20 -シャンペン 🥂️ 5 5 501 -20 -スパークリングワイン 🥂️ 5 5 501 -20 -スプマンテ 🥂️ 5 5 501 -20 -ウィスキー 🥃️ 5 5 501 -20 -ウイスキー 🥃️ 5 5 501 -20 -グラス 🥃️ 5 5 501 -20 -タンブラー 🥃️ 5 5 501 -20 -タンブラーグラス 🥃️ 5 5 501 -20 -コップ 🥤️ 5 5 501 -20 -ジュース 🥤️ 5 5 501 -20 -ストローカップ 🥤️ 5 5 501 -20 -オチャ 🧋️ 5 5 501 -20 -タピオカ 🧋️ 5 5 501 -20 -タピオカドリンク 🧋️ 5 5 501 -20 -ドリンク 🧋️ 5 5 501 -20 -バブルティー 🧋️ 5 5 501 -20 -ミルクティー 🧋️ 5 5 501 -20 -カミパックインリョウ 🧃️ 5 5 501 -20 -ジュース 🧃️ 5 5 501 -20 -ドリンク 🧃️ 5 5 501 -20 -ノミモノ 🧃️ 5 5 501 -20 -オチャ 🧉️ 5 5 501 -20 -ドリンク 🧉️ 5 5 501 -20 -ノミモノ 🧉️ 5 5 501 -20 -マテチャ 🧉️ 5 5 501 -20 -カクゴオリ 🧊️ 5 5 501 -20 -コオリ 🧊️ 5 5 501 -20 -ツメタイ 🧊️ 5 5 501 -20 -オハシ 🥢️ 5 5 501 -20 -ハシ 🥢️ 5 5 501 -20 -オサラ 🍽️️ 5 5 501 -20 -サラ 🍽️️ 5 5 501 -20 -ナイフ 🍽️️ 5 5 501 -20 -ナイフトフォークトサラ 🍽️️ 5 5 501 -20 -フォーク 🍽️️ 5 5 501 -20 -カトラリー 🍴️ 5 5 501 -20 -ナイフ 🍴️ 5 5 501 -20 -ナイフトフォーク 🍴️ 5 5 501 -20 -ナイフ・フォーク 🍴️ 5 5 501 -20 -フォーク 🍴️ 5 5 501 -20 -レストラン 🍴️ 5 5 501 -20 -カトラリー 🥄️ 5 5 501 -20 -ショッキ 🥄️ 5 5 501 -20 -スプーン 🥄️ 5 5 501 -20 -ナイフ 🔪️ 5 5 501 -20 -ホウチョウ 🔪️ 5 5 501 -20 -リョウリ 🔪️ 5 5 501 -20 -カメ 🏺️ 5 5 501 -20 -セイザ 🏺️ 5 5 501 -20 -ツボ 🏺️ 5 5 501 -20 -ミズガメ 🏺️ 5 5 501 -20 -アフリカ 🌍️ 5 5 501 -20 -チキュウ 🌍️ 5 5 501 -20 -ヨーロッパ 🌍️ 5 5 501 -20 -アメリカ 🌎️ 5 5 501 -20 -アメリカタイリク 🌎️ 5 5 501 -20 -チキュウ 🌎️ 5 5 501 -20 -アジア 🌏️ 5 5 501 -20 -オーストラリア 🌏️ 5 5 501 -20 -チキュウ 🌏️ 5 5 501 -20 -シゴセン 🌐️ 5 5 501 -20 -シゴセンノアルチキュウ 🌐️ 5 5 501 -20 -チキュウ 🌐️ 5 5 501 -20 -セカイ 🗺️️ 5 5 501 -20 -セカイチズ 🗺️️ 5 5 501 -20 -チズ 🗺️️ 5 5 501 -20 -チズ 🗾️ 5 5 501 -20 -ニッポン 🗾️ 5 5 501 -20 -ニッポンチズ 🗾️ 5 5 501 -20 -ニホン 🗾️ 5 5 501 -20 -ニホンチズ 🗾️ 5 5 501 -20 -オリエンテーリング 🧭️ 5 5 501 -20 -コウカイ 🧭️ 5 5 501 -20 -コウクウ 🧭️ 5 5 501 -20 -コンパス 🧭️ 5 5 501 -20 -ジシャク 🧭️ 5 5 501 -20 -カンセツ 🏔️️ 5 5 501 -20 -ヤマ 🏔️️ 5 5 501 -20 -ユキ 🏔️️ 5 5 501 -20 -ユキヤマ 🏔️️ 5 5 501 -20 -サンガク ⛰️️ 5 5 501 -20 -ヤマ ⛰️️ 5 5 501 -20 -カザン 🌋️ 5 5 501 -20 -フンカ 🌋️ 5 5 501 -20 -ヤマ 🌋️ 5 5 501 -20 -フジサン 🗻️ 5 5 501 -20 -ヤマ 🗻️ 5 5 501 -20 -キャンプ 🏕️️ 5 5 501 -20 -テント 🏕️️ 5 5 501 -20 -ヤマ 🏕️️ 5 5 501 -20 -スナハマ 🏖️️ 5 5 501 -20 -パラソル 🏖️️ 5 5 501 -20 -ビーチ 🏖️️ 5 5 501 -20 -ビーチパラソル 🏖️️ 5 5 501 -20 -サバク 🏜️️ 5 5 501 -20 -サボテン 🏜️️ 5 5 501 -20 -サボテンノアルサバク 🏜️️ 5 5 501 -20 -シマ 🏝️️ 5 5 501 -20 -ムジントウ 🏝️️ 5 5 501 -20 -ヤシ 🏝️️ 5 5 501 -20 -ヤシノキノアルシマ 🏝️️ 5 5 501 -20 -コウエン 🏞️️ 5 5 501 -20 -コクリツコウエン 🏞️️ 5 5 501 -20 -シゼン 🏞️️ 5 5 501 -20 -キョウギジョウ 🏟️️ 5 5 501 -20 -スタジアム 🏟️️ 5 5 501 -20 -ヤキュウジョウ 🏟️️ 5 5 501 -20 -シセキ 🏛️️ 5 5 501 -20 -レキシ 🏛️️ 5 5 501 -20 -レキシテキケンゾウブツ 🏛️️ 5 5 501 -20 -レキシテキナタテモノ 🏛️️ 5 5 501 -20 -クレーン 🏗️️ 5 5 501 -20 -ケンセツ 🏗️️ 5 5 501 -20 -ケンセツチュウ 🏗️️ 5 5 501 -20 -コウジ 🏗️️ 5 5 501 -20 -カベ 🧱️ 5 5 501 -20 -シックイ 🧱️ 5 5 501 -20 -ネンド 🧱️ 5 5 501 -20 -モルタル 🧱️ 5 5 501 -20 -レンガ 🧱️ 5 5 501 -20 -オモタイ 🪨️ 5 5 501 -20 -カタイ 🪨️ 5 5 501 -20 -ガンセキ 🪨️ 5 5 501 -20 -キョガン 🪨️ 5 5 501 -20 -セキザイ 🪨️ 5 5 501 -20 -ザイモク 🪵️ 5 5 501 -20 -ジュモク 🪵️ 5 5 501 -20 -マルタ 🪵️ 5 5 501 -20 -モクザイ 🪵️ 5 5 501 -20 -ログ 🪵️ 5 5 501 -20 -コヤ 🛖️ 5 5 501 -20 -バンガロー 🛖️ 5 5 501 -20 -ユルト 🛖️ 5 5 501 -20 -ワラブキコヤ 🛖️ 5 5 501 -20 -イエ 🏘️️ 5 5 501 -20 -ジュウタクガイ 🏘️️ 5 5 501 -20 -フクスウノイエ 🏘️️ 5 5 501 -20 -マチ 🏘️️ 5 5 501 -20 -アキヤ 🏚️️ 5 5 501 -20 -イエ 🏚️️ 5 5 501 -20 -タテモノ 🏚️️ 5 5 501 -20 -ハイオク 🏚️️ 5 5 501 -20 -イエ 🏠️ 5 5 501 -20 -カオク 🏠️ 5 5 501 -20 -タテモノ 🏠️ 5 5 501 -20 -マイホーム 🏠️ 5 5 501 -20 -イエ 🏡️ 5 5 501 -20 -ウチ 🏡️ 5 5 501 -20 -タテモノ 🏡️ 5 5 501 -20 -ニワ 🏡️ 5 5 501 -20 -ニワツキノイエ 🏡️ 5 5 501 -20 -ホーム 🏡️ 5 5 501 -20 -マイホーム 🏡️ 5 5 501 -20 -オフィスビル 🏢️ 5 5 501 -20 -タテモノ 🏢️ 5 5 501 -20 -ビル 🏢️ 5 5 501 -20 -タテモノ 🏣️ 5 5 501 -20 -ユウビン 🏣️ 5 5 501 -20 -ユウビンキョク 🏣️ 5 5 501 -20 -セイヨウノユウビンキョク 🏤️ 5 5 501 -20 -タテモノ 🏤️ 5 5 501 -20 -ユウビン 🏤️ 5 5 501 -20 -イシャ 🏥️ 5 5 501 -20 -クスリ 🏥️ 5 5 501 -20 -タテモノ 🏥️ 5 5 501 -20 -ビョウイン 🏥️ 5 5 501 -20 -ギンコウ 🏦️ 5 5 501 -20 -タテモノ 🏦️ 5 5 501 -20 -タテモノ 🏨️ 5 5 501 -20 -ホテル 🏨️ 5 5 501 -20 -タテモノ 🏩️ 5 5 501 -20 -ホテル 🏩️ 5 5 501 -20 -ラブホ 🏩️ 5 5 501 -20 -ラブホテル 🏩️ 5 5 501 -20 -コンビニ 🏪️ 5 5 501 -20 -コンビニエンスストア 🏪️ 5 5 501 -20 -タテモノ 🏪️ 5 5 501 -20 -ガッコウ 🏫️ 5 5 501 -20 -タテモノ 🏫️ 5 5 501 -20 -タテモノ 🏬️ 5 5 501 -20 -デパート 🏬️ 5 5 501 -20 -ヒャッカテン 🏬️ 5 5 501 -20 -コウジョウ 🏭️ 5 5 501 -20 -コウバ 🏭️ 5 5 501 -20 -タテモノ 🏭️ 5 5 501 -20 -オシロ 🏯️ 5 5 501 -20 -シロ 🏯️ 5 5 501 -20 -タテモノ 🏯️ 5 5 501 -20 -ニッポン 🏯️ 5 5 501 -20 -ニホン 🏯️ 5 5 501 -20 -オシロ 🏰️ 5 5 501 -20 -キャッスル 🏰️ 5 5 501 -20 -シロ 🏰️ 5 5 501 -20 -セイヨウノシロ 🏰️ 5 5 501 -20 -タテモノ 🏰️ 5 5 501 -20 -キョウカイ 💒️ 5 5 501 -20 -ケッコン 💒️ 5 5 501 -20 -ケッコンシキ 💒️ 5 5 501 -20 -シキジョウ 💒️ 5 5 501 -20 -タテモノ 💒️ 5 5 501 -20 -タワー 🗼️ 5 5 501 -20 -トウキョウ 🗼️ 5 5 501 -20 -トウキョウタワー 🗼️ 5 5 501 -20 -アメリカ 🗽️ 5 5 501 -20 -ジユウノメガミ 🗽️ 5 5 501 -20 -チョウゾウ 🗽️ 5 5 501 -20 -ニューヨーク 🗽️ 5 5 501 -20 -メガミ 🗽️ 5 5 501 -20 -キョウカイ ⛪️ 5 5 501 -20 -キリストキョウ ⛪️ 5 5 501 -20 -シュウキョウ ⛪️ 5 5 501 -20 -タテモノ ⛪️ 5 5 501 -20 -チャペル ⛪️ 5 5 501 -20 -イスラムキョウ 🕌️ 5 5 501 -20 -シュウキョウ 🕌️ 5 5 501 -20 -タテモノ 🕌️ 5 5 501 -20 -モスク 🕌️ 5 5 501 -20 -シュウキョウ 🛕️ 5 5 501 -20 -タテモノ 🛕️ 5 5 501 -20 -テラ 🛕️ 5 5 501 -20 -ヒンズーキョウ 🛕️ 5 5 501 -20 -ヒンドゥーキョウノジイン 🛕️ 5 5 501 -20 -シナゴーグ 🕍️ 5 5 501 -20 -シュウキョウ 🕍️ 5 5 501 -20 -タテモノ 🕍️ 5 5 501 -20 -ユダヤキョウ 🕍️ 5 5 501 -20 -シュウキョウ ⛩️️ 5 5 501 -20 -シントウ ⛩️️ 5 5 501 -20 -ジンジャ ⛩️️ 5 5 501 -20 -タテモノ ⛩️️ 5 5 501 -20 -トリイ ⛩️️ 5 5 501 -20 -イスラムキョウ 🕋️ 5 5 501 -20 -カーバ 🕋️ 5 5 501 -20 -シュウキョウ 🕋️ 5 5 501 -20 -セイチ 🕋️ 5 5 501 -20 -タテモノ 🕋️ 5 5 501 -20 -メッカ 🕋️ 5 5 501 -20 -コウエン ⛲️ 5 5 501 -20 -フンスイ ⛲️ 5 5 501 -20 -キャンプ ⛺️ 5 5 501 -20 -テント ⛺️ 5 5 501 -20 -キリ 🌁️ 5 5 501 -20 -キリノトカイ 🌁️ 5 5 501 -20 -トカイ 🌁️ 5 5 501 -20 -ナガレボシ 🌃️ 5 5 501 -20 -ホシ 🌃️ 5 5 501 -20 -ヤケイ 🌃️ 5 5 501 -20 -ヨル 🌃️ 5 5 501 -20 -ヨルノトカイ 🌃️ 5 5 501 -20 -コウソウビル 🏙️️ 5 5 501 -20 -トカイ 🏙️️ 5 5 501 -20 -ビルグン 🏙️️ 5 5 501 -20 -アサ 🌄️ 5 5 501 -20 -アサヒ 🌄️ 5 5 501 -20 -ゴライコウ 🌄️ 5 5 501 -20 -タイヨウ 🌄️ 5 5 501 -20 -ヒノデ 🌄️ 5 5 501 -20 -ヤマカラヒノデ 🌄️ 5 5 501 -20 -アサ 🌅️ 5 5 501 -20 -アサヒ 🌅️ 5 5 501 -20 -タイヨウ 🌅️ 5 5 501 -20 -ヒノデ 🌅️ 5 5 501 -20 -トカイ 🌆️ 5 5 501 -20 -ユウガタ 🌆️ 5 5 501 -20 -ユウグレ 🌆️ 5 5 501 -20 -ユウグレノトカイ 🌆️ 5 5 501 -20 -ユウヒ 🌆️ 5 5 501 -20 -ヨル 🌆️ 5 5 501 -20 -タイヨウ 🌇️ 5 5 501 -20 -ユウガタ 🌇️ 5 5 501 -20 -ユウグレ 🌇️ 5 5 501 -20 -ユウヒ 🌇️ 5 5 501 -20 -ハシ 🌉️ 5 5 501 -20 -ヤケイ 🌉️ 5 5 501 -20 -ヨル 🌉️ 5 5 501 -20 -ヨルノハシ 🌉️ 5 5 501 -20 -イイキブン ♨️️ 5 5 501 -20 -オンセン ♨️️ 5 5 501 -20 -オンセンマーク ♨️️ 5 5 501 -20 -メリーゴーランド 🎠️ 5 5 501 -20 -ユウエンチ 🎠️ 5 5 501 -20 -カンランシャ 🎡️ 5 5 501 -20 -ユウエンチ 🎡️ 5 5 501 -20 -コースター 🎢️ 5 5 501 -20 -ジェットコースター 🎢️ 5 5 501 -20 -ユウエンチ 🎢️ 5 5 501 -20 -サンパツ 💈️ 5 5 501 -20 -トコヤ 💈️ 5 5 501 -20 -バーバー 💈️ 5 5 501 -20 -ビヨウイン 💈️ 5 5 501 -20 -ビヨウシツ 💈️ 5 5 501 -20 -ヘアサロン 💈️ 5 5 501 -20 -リハツテン 💈️ 5 5 501 -20 -イベント 🎪️ 5 5 501 -20 -サーカス 🎪️ 5 5 501 -20 -サーカステント 🎪️ 5 5 501 -20 -テント 🎪️ 5 5 501 -20 -sl 🚂️ 5 5 501 -20 -エスエル 🚂️ 5 5 501 -20 -ジョウキキカンシャ 🚂️ 5 5 501 -20 -ノリモノ 🚂️ 5 5 501 -20 -レッシャ 🚂️ 5 5 501 -20 -デンシャ 🚃️ 5 5 501 -20 -ノリモノ 🚃️ 5 5 501 -20 -レッシャ 🚃️ 5 5 501 -20 -シンカンセン 🚄️ 5 5 501 -20 -デンシャ 🚄️ 5 5 501 -20 -ノリモノ 🚄️ 5 5 501 -20 -0ケイ 🚅️ 5 5 501 -20 -シンカンセン 🚅️ 5 5 501 -20 -ゼロケイシンカンセン 🚅️ 5 5 501 -20 -デンシャ 🚅️ 5 5 501 -20 -ノゾミ 🚅️ 5 5 501 -20 -ノリモノ 🚅️ 5 5 501 -20 -マルイシンカンセン 🚅️ 5 5 501 -20 -デンシャ 🚆️ 5 5 501 -20 -デンシャショウメン 🚆️ 5 5 501 -20 -ノリモノ 🚆️ 5 5 501 -20 -レッシャ 🚆️ 5 5 501 -20 -チカテツ 🚇️ 5 5 501 -20 -デンシャ 🚇️ 5 5 501 -20 -ノリモノ 🚇️ 5 5 501 -20 -メトロ 🚇️ 5 5 501 -20 -デンシャ 🚈️ 5 5 501 -20 -ノリモノ 🚈️ 5 5 501 -20 -ライトレール 🚈️ 5 5 501 -20 -エキ 🚉️ 5 5 501 -20 -デンシャ 🚉️ 5 5 501 -20 -ノリモノ 🚉️ 5 5 501 -20 -フミキリ 🚉️ 5 5 501 -20 -レッシャ 🚉️ 5 5 501 -20 -デンシャ 🚊️ 5 5 501 -20 -ノリモノ 🚊️ 5 5 501 -20 -ロメンデンシャ 🚊️ 5 5 501 -20 -ロメンデンシャショウメン 🚊️ 5 5 501 -20 -デンシャ 🚝️ 5 5 501 -20 -ノリモノ 🚝️ 5 5 501 -20 -モノレール 🚝️ 5 5 501 -20 -デンシャ 🚞️ 5 5 501 -20 -トザンテツドウ 🚞️ 5 5 501 -20 -トザンデンシャ 🚞️ 5 5 501 -20 -ノリモノ 🚞️ 5 5 501 -20 -デンシャ 🚋️ 5 5 501 -20 -ノリモノ 🚋️ 5 5 501 -20 -ロメンデンシャ 🚋️ 5 5 501 -20 -ノリモノ 🚌️ 5 5 501 -20 -バス 🚌️ 5 5 501 -20 -ノリモノ 🚍️ 5 5 501 -20 -バス 🚍️ 5 5 501 -20 -バスショウメン 🚍️ 5 5 501 -20 -トロリーバス 🚎️ 5 5 501 -20 -ノリモノ 🚎️ 5 5 501 -20 -バス 🚎️ 5 5 501 -20 -ノリモノ 🚐️ 5 5 501 -20 -バス 🚐️ 5 5 501 -20 -マイクロバス 🚐️ 5 5 501 -20 -キュウキュウシャ 🚑️ 5 5 501 -20 -ノリモノ 🚑️ 5 5 501 -20 -ショウボウシャ 🚒️ 5 5 501 -20 -ノリモノ 🚒️ 5 5 501 -20 -ケイサツ 🚓️ 5 5 501 -20 -ノリモノ 🚓️ 5 5 501 -20 -パトカー 🚓️ 5 5 501 -20 -ケイサツ 🚔️ 5 5 501 -20 -ノリモノ 🚔️ 5 5 501 -20 -パトカー 🚔️ 5 5 501 -20 -パトカーショウメン 🚔️ 5 5 501 -20 -タクシー 🚕️ 5 5 501 -20 -ノリモノ 🚕️ 5 5 501 -20 -タクシー 🚖️ 5 5 501 -20 -タクシーショウメン 🚖️ 5 5 501 -20 -ノリモノ 🚖️ 5 5 501 -20 -クルマ 🚗️ 5 5 501 -20 -ジドウシャ 🚗️ 5 5 501 -20 -ノリモノ 🚗️ 5 5 501 -20 -クルマ 🚘️ 5 5 501 -20 -ジドウシャ 🚘️ 5 5 501 -20 -ジドウシャショウメン 🚘️ 5 5 501 -20 -ノリモノ 🚘️ 5 5 501 -20 -rv 🚙️ 5 5 501 -20 -suv 🚙️ 5 5 501 -20 -suvクルマ 🚙️ 5 5 501 -20 -アールブイシャ 🚙️ 5 5 501 -20 -エスユーブイシャ 🚙️ 5 5 501 -20 -クルマ 🚙️ 5 5 501 -20 -ジドウシャ 🚙️ 5 5 501 -20 -ノリモノ 🚙️ 5 5 501 -20 -クルマ 🛻️ 5 5 501 -20 -ケイトラック 🛻️ 5 5 501 -20 -トラック 🛻️ 5 5 501 -20 -ノリモノ 🛻️ 5 5 501 -20 -ハイタツ 🛻️ 5 5 501 -20 -ピックアップトラック 🛻️ 5 5 501 -20 -クルマ 🚚️ 5 5 501 -20 -トラック 🚚️ 5 5 501 -20 -ノリモノ 🚚️ 5 5 501 -20 -ハイタツ 🚚️ 5 5 501 -20 -クルマ 🚛️ 5 5 501 -20 -トラック 🚛️ 5 5 501 -20 -トレーラー 🚛️ 5 5 501 -20 -ノリモノ 🚛️ 5 5 501 -20 -クルマ 🚜️ 5 5 501 -20 -トラクター 🚜️ 5 5 501 -20 -ノリモノ 🚜️ 5 5 501 -20 -f1 🏎️️ 5 5 501 -20 -エフワン 🏎️️ 5 5 501 -20 -クルマ 🏎️️ 5 5 501 -20 -スポーツ 🏎️️ 5 5 501 -20 -ノリモノ 🏎️️ 5 5 501 -20 -モータースポーツ 🏎️️ 5 5 501 -20 -レーシングカー 🏎️️ 5 5 501 -20 -オートバイ 🏍️️ 5 5 501 -20 -オートレース 🏍️️ 5 5 501 -20 -スポーツ 🏍️️ 5 5 501 -20 -ノリモノ 🏍️️ 5 5 501 -20 -バイク 🏍️️ 5 5 501 -20 -モータースポーツ 🏍️️ 5 5 501 -20 -ゲンツキ 🛵️ 5 5 501 -20 -スクーター 🛵️ 5 5 501 -20 -アクセシビリティ 🦽️ 5 5 501 -20 -イス 🦽️ 5 5 501 -20 -クルマイス 🦽️ 5 5 501 -20 -シュドウシキクルマイス 🦽️ 5 5 501 -20 -アクセシビリティ 🦼️ 5 5 501 -20 -イス 🦼️ 5 5 501 -20 -クルマイス 🦼️ 5 5 501 -20 -デンドウクルマイス 🦼️ 5 5 501 -20 -オートリクシャー 🛺️ 5 5 501 -20 -サンリンタクシー 🛺️ 5 5 501 -20 -タクシー 🛺️ 5 5 501 -20 -トゥクトゥク 🛺️ 5 5 501 -20 -リクシャー 🛺️ 5 5 501 -20 -ジテンシャ 🚲️ 5 5 501 -20 -ノリモノ 🚲️ 5 5 501 -20 -キックスクーター 🛴️ 5 5 501 -20 -キックスケーター 🛴️ 5 5 501 -20 -キックボード 🛴️ 5 5 501 -20 -スケボー 🛹️ 5 5 501 -20 -スケートボード 🛹️ 5 5 501 -20 -ボード 🛹️ 5 5 501 -20 -スケート 🛼️ 5 5 501 -20 -スポーツ 🛼️ 5 5 501 -20 -ローラースケート 🛼️ 5 5 501 -20 -ノリモノ 🚏️ 5 5 501 -20 -バステイ 🚏️ 5 5 501 -20 -バスノリバ 🚏️ 5 5 501 -20 -コウソク 🛣️️ 5 5 501 -20 -コウソクドウロ 🛣️️ 5 5 501 -20 -ドウロ 🛣️️ 5 5 501 -20 -センロ 🛤️️ 5 5 501 -20 -テツドウ 🛤️️ 5 5 501 -20 -セキユ 🛢️️ 5 5 501 -20 -ドラムカン 🛢️️ 5 5 501 -20 -ガススタンド ⛽️ 5 5 501 -20 -ガソリン ⛽️ 5 5 501 -20 -ガソリンスタンド ⛽️ 5 5 501 -20 -ガソリンノズル ⛽️ 5 5 501 -20 -パトカー 🚨️ 5 5 501 -20 -パトランプ 🚨️ 5 5 501 -20 -シンゴウ 🚥️ 5 5 501 -20 -シンゴウキ 🚥️ 5 5 501 -20 -シンゴウヨコ 🚥️ 5 5 501 -20 -シンゴウ 🚦️ 5 5 501 -20 -シンゴウキ 🚦️ 5 5 501 -20 -シンゴウタテ 🚦️ 5 5 501 -20 -ストップ 🛑️ 5 5 501 -20 -トマレ 🛑️ 5 5 501 -20 -トマレノヒョウシキ 🛑️ 5 5 501 -20 -ヒョウシキ 🛑️ 5 5 501 -20 -コウジチュウ 🚧️ 5 5 501 -20 -サイン 🚧️ 5 5 501 -20 -ツウコウドメ 🚧️ 5 5 501 -20 -イカリ ⚓️ 5 5 501 -20 -フネ ⚓️ 5 5 501 -20 -ミナト ⚓️ 5 5 501 -20 -ノリモノ ⛵️ 5 5 501 -20 -ハンセン ⛵️ 5 5 501 -20 -フネ ⛵️ 5 5 501 -20 -ボート ⛵️ 5 5 501 -20 -ヨット ⛵️ 5 5 501 -20 -リゾート ⛵️ 5 5 501 -20 -カヌー 🛶️ 5 5 501 -20 -カヤック 🛶️ 5 5 501 -20 -ノリモノ 🛶️ 5 5 501 -20 -フネ 🛶️ 5 5 501 -20 -ボート 🛶️ 5 5 501 -20 -スピードボート 🚤️ 5 5 501 -20 -ノリモノ 🚤️ 5 5 501 -20 -フネ 🚤️ 5 5 501 -20 -ボート 🚤️ 5 5 501 -20 -キャクセン 🛳️️ 5 5 501 -20 -ノリモノ 🛳️️ 5 5 501 -20 -フネ 🛳️️ 5 5 501 -20 -リョカクセン 🛳️️ 5 5 501 -20 -ノリモノ ⛴️️ 5 5 501 -20 -フェリー ⛴️️ 5 5 501 -20 -フネ ⛴️️ 5 5 501 -20 -ノリモノ 🛥️️ 5 5 501 -20 -フネ 🛥️️ 5 5 501 -20 -ボート 🛥️️ 5 5 501 -20 -モーターボート 🛥️️ 5 5 501 -20 -ノリモノ 🚢️ 5 5 501 -20 -フネ 🚢️ 5 5 501 -20 -ノリモノ ✈️️ 5 5 501 -20 -ヒコウキ ✈️️ 5 5 501 -20 -コガタキ 🛩️️ 5 5 501 -20 -コガタヒコウキ 🛩️️ 5 5 501 -20 -ノリモノ 🛩️️ 5 5 501 -20 -ヒコウキ 🛩️️ 5 5 501 -20 -ノリモノ 🛫️ 5 5 501 -20 -ヒコウキ 🛫️ 5 5 501 -20 -ヒコウキリリク 🛫️ 5 5 501 -20 -リリク 🛫️ 5 5 501 -20 -チャクリク 🛬️ 5 5 501 -20 -ノリモノ 🛬️ 5 5 501 -20 -ヒコウキ 🛬️ 5 5 501 -20 -ヒコウキチャクリク 🛬️ 5 5 501 -20 -スカイダイビング 🪂️ 5 5 501 -20 -パラグライダー 🪂️ 5 5 501 -20 -パラシュート 🪂️ 5 5 501 -20 -イス 💺️ 5 5 501 -20 -ザセキ 💺️ 5 5 501 -20 -セキ 💺️ 5 5 501 -20 -ノリモノ 🚁️ 5 5 501 -20 -ヘリ 🚁️ 5 5 501 -20 -ヘリコプター 🚁️ 5 5 501 -20 -ケンスイシキモノレール 🚟️ 5 5 501 -20 -デンシャ 🚟️ 5 5 501 -20 -ノリモノ 🚟️ 5 5 501 -20 -モノレール 🚟️ 5 5 501 -20 -ケーブルカー 🚠️ 5 5 501 -20 -ゴンドラ 🚠️ 5 5 501 -20 -ノリモノ 🚠️ 5 5 501 -20 -ゴンドラ 🚡️ 5 5 501 -20 -ノリモノ 🚡️ 5 5 501 -20 -ロープウェイ 🚡️ 5 5 501 -20 -ウチュウ 🛰️️ 5 5 501 -20 -ジンコウエイセイ 🛰️️ 5 5 501 -20 -ウチュウ 🚀️ 5 5 501 -20 -ノリモノ 🚀️ 5 5 501 -20 -ロケット 🚀️ 5 5 501 -20 -ufo 🛸️ 5 5 501 -20 -ウチュウ 🛸️ 5 5 501 -20 -ソラトブエンバン 🛸️ 5 5 501 -20 -ノリモノ 🛸️ 5 5 501 -20 -ユーフォー 🛸️ 5 5 501 -20 -ベル 🛎️️ 5 5 501 -20 -ベルボーイベル 🛎️️ 5 5 501 -20 -ホテル 🛎️️ 5 5 501 -20 -スーツケース 🧳️ 5 5 501 -20 -パッキング 🧳️ 5 5 501 -20 -リョコウ 🧳️ 5 5 501 -20 -リョコウカバン 🧳️ 5 5 501 -20 -スナ ⌛️ 5 5 501 -20 -スナドケイ ⌛️ 5 5 501 -20 -トケイ ⌛️ 5 5 501 -20 -スナ ⏳️ 5 5 501 -20 -スナガオチテイルスナドケイ ⏳️ 5 5 501 -20 -スナドケイ ⏳️ 5 5 501 -20 -トケイ ⏳️ 5 5 501 -20 -ウデドケイ ⌚️ 5 5 501 -20 -トケイ ⌚️ 5 5 501 -20 -アラーム ⏰️ 5 5 501 -20 -トケイ ⏰️ 5 5 501 -20 -メザマシ ⏰️ 5 5 501 -20 -メザマシドケイ ⏰️ 5 5 501 -20 -ストップウォッチ ⏱️️ 5 5 501 -20 -トケイ ⏱️️ 5 5 501 -20 -タイマー ⏲️️ 5 5 501 -20 -トケイ ⏲️️ 5 5 501 -20 -オキドケイ 🕰️️ 5 5 501 -20 -トケイ 🕰️️ 5 5 501 -20 -マンテルクロック 🕰️️ 5 5 501 -20 -12ジ 🕛️ 5 5 501 -20 -ショウゴ 🕛️ 5 5 501 -20 -ジュウニジ 🕛️ 5 5 501 -20 -トケイ 🕛️ 5 5 501 -20 -12ジハン 🕧️ 5 5 501 -20 -トケイ 🕧️ 5 5 501 -20 -1ジ 🕐️ 5 5 501 -20 -イチジ 🕐️ 5 5 501 -20 -トケイ 🕐️ 5 5 501 -20 -1ジハン 🕜️ 5 5 501 -20 -トケイ 🕜️ 5 5 501 -20 -2ジ 🕑️ 5 5 501 -20 -トケイ 🕑️ 5 5 501 -20 -ニジ 🕑️ 5 5 501 -20 -2ジハン 🕝️ 5 5 501 -20 -トケイ 🕝️ 5 5 501 -20 -3ジ 🕒️ 5 5 501 -20 -サンジ 🕒️ 5 5 501 -20 -トケイ 🕒️ 5 5 501 -20 -3ジハン 🕞️ 5 5 501 -20 -トケイ 🕞️ 5 5 501 -20 -4ジ 🕓️ 5 5 501 -20 -トケイ 🕓️ 5 5 501 -20 -ヨジ 🕓️ 5 5 501 -20 -4ジハン 🕟️ 5 5 501 -20 -トケイ 🕟️ 5 5 501 -20 -5ジ 🕔️ 5 5 501 -20 -ゴジ 🕔️ 5 5 501 -20 -トケイ 🕔️ 5 5 501 -20 -5ジハン 🕠️ 5 5 501 -20 -トケイ 🕠️ 5 5 501 -20 -6ジ 🕕️ 5 5 501 -20 -トケイ 🕕️ 5 5 501 -20 -ロクジ 🕕️ 5 5 501 -20 -6ジハン 🕡️ 5 5 501 -20 -トケイ 🕡️ 5 5 501 -20 -7ジ 🕖️ 5 5 501 -20 -シチジ 🕖️ 5 5 501 -20 -トケイ 🕖️ 5 5 501 -20 -ナナジ 🕖️ 5 5 501 -20 -7ジハン 🕢️ 5 5 501 -20 -トケイ 🕢️ 5 5 501 -20 -8ジ 🕗️ 5 5 501 -20 -トケイ 🕗️ 5 5 501 -20 -ハチジ 🕗️ 5 5 501 -20 -8ジハン 🕣️ 5 5 501 -20 -トケイ 🕣️ 5 5 501 -20 -9ジ 🕘️ 5 5 501 -20 -クジ 🕘️ 5 5 501 -20 -トケイ 🕘️ 5 5 501 -20 -9ジハン 🕤️ 5 5 501 -20 -トケイ 🕤️ 5 5 501 -20 -10ジ 🕙️ 5 5 501 -20 -ジュウジ 🕙️ 5 5 501 -20 -トケイ 🕙️ 5 5 501 -20 -メザマシ 🕙️ 5 5 501 -20 -10ジハン 🕥️ 5 5 501 -20 -トケイ 🕥️ 5 5 501 -20 -11ジ 🕚️ 5 5 501 -20 -ジュウイチジ 🕚️ 5 5 501 -20 -トケイ 🕚️ 5 5 501 -20 -11ジハン 🕦️ 5 5 501 -20 -トケイ 🕦️ 5 5 501 -20 -シンゲツ 🌑️ 5 5 501 -20 -ツキ 🌑️ 5 5 501 -20 -ツキ 🌒️ 5 5 501 -20 -ハツカヅキ 🌒️ 5 5 501 -20 -ハツヅキ 🌒️ 5 5 501 -20 -ミカヅキ 🌒️ 5 5 501 -20 -ジョウゲン 🌓️ 5 5 501 -20 -ジョウゲンノツキ 🌓️ 5 5 501 -20 -ツキ 🌓️ 5 5 501 -20 -ハンゲツ 🌓️ 5 5 501 -20 -カケヅキ 🌔️ 5 5 501 -20 -ジュウサンヤツキ 🌔️ 5 5 501 -20 -ジュウサンヨツキ 🌔️ 5 5 501 -20 -ツキ 🌔️ 5 5 501 -20 -トオカヤノツキ 🌔️ 5 5 501 -20 -トオカンヤノツキ 🌔️ 5 5 501 -20 -ツキ 🌕️ 5 5 501 -20 -マンゲツ 🌕️ 5 5 501 -20 -イマチヅキ 🌖️ 5 5 501 -20 -ツキ 🌖️ 5 5 501 -20 -ネマチヅキ 🌖️ 5 5 501 -20 -ネマチノツキ 🌖️ 5 5 501 -20 -カゲン 🌗️ 5 5 501 -20 -カゲンノツキ 🌗️ 5 5 501 -20 -ツキ 🌗️ 5 5 501 -20 -ハンゲツ 🌗️ 5 5 501 -20 -アリアケヅキ 🌘️ 5 5 501 -20 -ツキ 🌘️ 5 5 501 -20 -ミカヅキ 🌘️ 5 5 501 -20 -ツキ 🌙️ 5 5 501 -20 -ミカヅキ 🌙️ 5 5 501 -20 -カオ 🌚️ 5 5 501 -20 -カオノアルシンゲツ 🌚️ 5 5 501 -20 -シンゲツ 🌚️ 5 5 501 -20 -ツキ 🌚️ 5 5 501 -20 -カオ 🌛️ 5 5 501 -20 -カオノアルジョウゲンノツキ 🌛️ 5 5 501 -20 -ジョウゲンノツキ 🌛️ 5 5 501 -20 -ツキ 🌛️ 5 5 501 -20 -ミカヅキ 🌛️ 5 5 501 -20 -カオ 🌜️ 5 5 501 -20 -カオノアルカゲンノツキ 🌜️ 5 5 501 -20 -カゲンノツキ 🌜️ 5 5 501 -20 -ツキ 🌜️ 5 5 501 -20 -オンド 🌡️️ 5 5 501 -20 -オンドケイ 🌡️️ 5 5 501 -20 -キオン 🌡️️ 5 5 501 -20 -テンキ 🌡️️ 5 5 501 -20 -タイヨウ ☀️️ 5 5 501 -20 -ハレ ☀️️ 5 5 501 -20 -カオ 🌝️ 5 5 501 -20 -カオノアルマンゲツ 🌝️ 5 5 501 -20 -ツキ 🌝️ 5 5 501 -20 -カオ 🌞️ 5 5 501 -20 -カオノアルタイヨウ 🌞️ 5 5 501 -20 -タイヨウ 🌞️ 5 5 501 -20 -テンタイ 🪐️ 5 5 501 -20 -ドセイ 🪐️ 5 5 501 -20 -ホシ 🪐️ 5 5 501 -20 -リング 🪐️ 5 5 501 -20 -ワクセイ 🪐️ 5 5 501 -20 -ワノアルワクセイ 🪐️ 5 5 501 -20 -スター ⭐️ 5 5 501 -20 -ホシ ⭐️ 5 5 501 -20 -カガヤキ 🌟️ 5 5 501 -20 -キラキラ 🌟️ 5 5 501 -20 -キラキラボシ 🌟️ 5 5 501 -20 -スター 🌟️ 5 5 501 -20 -ホシ 🌟️ 5 5 501 -20 -スター 🌠️ 5 5 501 -20 -ナガレボシ 🌠️ 5 5 501 -20 -ホシ 🌠️ 5 5 501 -20 -アマノガワ 🌌️ 5 5 501 -20 -ギンガ 🌌️ 5 5 501 -20 -ホシゾラ 🌌️ 5 5 501 -20 -ミルキーウェイ 🌌️ 5 5 501 -20 -ヨゾラ 🌌️ 5 5 501 -20 -クモ ☁️️ 5 5 501 -20 -クモリ ☁️️ 5 5 501 -20 -テンキ ☁️️ 5 5 501 -20 -クモ ⛅️ 5 5 501 -20 -クモリ ⛅️ 5 5 501 -20 -クモリトキドキハレ ⛅️ 5 5 501 -20 -タイヨウ ⛅️ 5 5 501 -20 -テンキ ⛅️ 5 5 501 -20 -トキドキクモリ ⛅️ 5 5 501 -20 -アメ ⛈️️ 5 5 501 -20 -イナズマ ⛈️️ 5 5 501 -20 -イナヅマ ⛈️️ 5 5 501 -20 -カミナリ ⛈️️ 5 5 501 -20 -クモ ⛈️️ 5 5 501 -20 -テンキ ⛈️️ 5 5 501 -20 -ライウ ⛈️️ 5 5 501 -20 -クモ 🌤️️ 5 5 501 -20 -タイヨウ 🌤️️ 5 5 501 -20 -テンキ 🌤️️ 5 5 501 -20 -ハレ 🌤️️ 5 5 501 -20 -ハレトキドキクモリ 🌤️️ 5 5 501 -20 -クモ 🌥️️ 5 5 501 -20 -クモリ 🌥️️ 5 5 501 -20 -クモリイチジハレ 🌥️️ 5 5 501 -20 -タイヨウ 🌥️️ 5 5 501 -20 -テンキ 🌥️️ 5 5 501 -20 -アメトキドキハレ 🌦️️ 5 5 501 -20 -アメノチハレ 🌦️️ 5 5 501 -20 -クモ 🌦️️ 5 5 501 -20 -クモリ 🌦️️ 5 5 501 -20 -タイヨウ 🌦️️ 5 5 501 -20 -テンキ 🌦️️ 5 5 501 -20 -テンキアメ 🌦️️ 5 5 501 -20 -アマグモ 🌧️️ 5 5 501 -20 -アメ 🌧️️ 5 5 501 -20 -クモ 🌧️️ 5 5 501 -20 -テンキ 🌧️️ 5 5 501 -20 -クモ 🌨️️ 5 5 501 -20 -テンキ 🌨️️ 5 5 501 -20 -ユキ 🌨️️ 5 5 501 -20 -ユキグモ 🌨️️ 5 5 501 -20 -イナズマ 🌩️️ 5 5 501 -20 -イナヅマ 🌩️️ 5 5 501 -20 -カミナリ 🌩️️ 5 5 501 -20 -クモ 🌩️️ 5 5 501 -20 -テンキ 🌩️️ 5 5 501 -20 -ライウン 🌩️️ 5 5 501 -20 -タツマキ 🌪️️ 5 5 501 -20 -テンキ 🌪️️ 5 5 501 -20 -トップウ 🌪️️ 5 5 501 -20 -キリ 🌫️️ 5 5 501 -20 -テンキ 🌫️️ 5 5 501 -20 -カオ 🌬️️ 5 5 501 -20 -カオノアルカゼ 🌬️️ 5 5 501 -20 -カゼ 🌬️️ 5 5 501 -20 -ウズ 🌀️ 5 5 501 -20 -ウズマキ 🌀️ 5 5 501 -20 -クルクル 🌀️ 5 5 501 -20 -グルグル 🌀️ 5 5 501 -20 -サイクロン 🌀️ 5 5 501 -20 -タイフウ 🌀️ 5 5 501 -20 -ハリケーン 🌀️ 5 5 501 -20 -メマイ 🌀️ 5 5 501 -20 -モヤモヤ 🌀️ 5 5 501 -20 -ニジ 🌈️ 5 5 501 -20 -レインボー 🌈️ 5 5 501 -20 -アメ 🌂️ 5 5 501 -20 -カサ 🌂️ 5 5 501 -20 -テンキ 🌂️ 5 5 501 -20 -トジタカサ 🌂️ 5 5 501 -20 -モチモノ 🌂️ 5 5 501 -20 -アメ ☂️️ 5 5 501 -20 -カサ ☂️️ 5 5 501 -20 -テンキ ☂️️ 5 5 501 -20 -モチモノ ☂️️ 5 5 501 -20 -アメ ☔️ 5 5 501 -20 -カサ ☔️ 5 5 501 -20 -カサトアメ ☔️ 5 5 501 -20 -テンキ ☔️ 5 5 501 -20 -モチモノ ☔️ 5 5 501 -20 -カサ ⛱️️ 5 5 501 -20 -スナハマ ⛱️️ 5 5 501 -20 -パラソル ⛱️️ 5 5 501 -20 -ビーチ ⛱️️ 5 5 501 -20 -イナズマ ⚡️ 5 5 501 -20 -イナヅマ ⚡️ 5 5 501 -20 -カミナリ ⚡️ 5 5 501 -20 -キケン ⚡️ 5 5 501 -20 -コウデンアツ ⚡️ 5 5 501 -20 -デンキ ⚡️ 5 5 501 -20 -ケッショウ ❄️️ 5 5 501 -20 -ユキ ❄️️ 5 5 501 -20 -ユキノケッショウ ❄️️ 5 5 501 -20 -ユキ ☃️️ 5 5 501 -20 -ユキダルマ ☃️️ 5 5 501 -20 -ユキダルマトユキ ☃️️ 5 5 501 -20 -ユキ ⛄️ 5 5 501 -20 -ユキダルマ ⛄️ 5 5 501 -20 -ウチュウ ☄️️ 5 5 501 -20 -スイセイ ☄️️ 5 5 501 -20 -ヒ 🔥️ 5 5 501 -20 -ファイアー 🔥️ 5 5 501 -20 -ファイヤー 🔥️ 5 5 501 -20 -ホノオ 🔥️ 5 5 501 -20 -アセ 💧️ 5 5 501 -20 -シズク 💧️ 5 5 501 -20 -スイテキ 💧️ 5 5 501 -20 -タラーッ 💧️ 5 5 501 -20 -ナミダ 💧️ 5 5 501 -20 -ウミ 🌊️ 5 5 501 -20 -テンキ 🌊️ 5 5 501 -20 -ナミ 🌊️ 5 5 501 -20 -ハロウ 🌊️ 5 5 501 -20 -カボチャ 🎃️ 5 5 501 -20 -ハロウィン 🎃️ 5 5 501 -20 -ハロウィンカボチャ 🎃️ 5 5 501 -20 -ハロウィーン 🎃️ 5 5 501 -20 -クリスマス 🎄️ 5 5 501 -20 -クリスマスイブ 🎄️ 5 5 501 -20 -クリスマスツリー 🎄️ 5 5 501 -20 -ツリー 🎄️ 5 5 501 -20 -ウチアゲハナビ 🎆️ 5 5 501 -20 -オマツリ 🎆️ 5 5 501 -20 -ハナビ 🎆️ 5 5 501 -20 -ハナビタイカイ 🎆️ 5 5 501 -20 -オマツリ 🎇️ 5 5 501 -20 -センコウハナビ 🎇️ 5 5 501 -20 -ハナビ 🎇️ 5 5 501 -20 -カヤク 🧨️ 5 5 501 -20 -ダイナマイト 🧨️ 5 5 501 -20 -バクチク 🧨️ 5 5 501 -20 -バクハツ 🧨️ 5 5 501 -20 -バクヤク 🧨️ 5 5 501 -20 -キラキラ ✨️ 5 5 501 -20 -スター ✨️ 5 5 501 -20 -ピカピカ ✨️ 5 5 501 -20 -ホシ ✨️ 5 5 501 -20 -バルーン 🎈️ 5 5 501 -20 -フウセン 🎈️ 5 5 501 -20 -オイワイ 🎉️ 5 5 501 -20 -クラッカー 🎉️ 5 5 501 -20 -パーティー 🎉️ 5 5 501 -20 -パーティークラッカー 🎉️ 5 5 501 -20 -オイワイ 🎊️ 5 5 501 -20 -クスダマ 🎊️ 5 5 501 -20 -パーティー 🎊️ 5 5 501 -20 -タナバタ 🎋️ 5 5 501 -20 -タンザク 🎋️ 5 5 501 -20 -ニッポン 🎋️ 5 5 501 -20 -ニホン 🎋️ 5 5 501 -20 -ワ 🎋️ 5 5 501 -20 -オイワイ 🎍️ 5 5 501 -20 -カドマツ 🎍️ 5 5 501 -20 -ショウガツ 🎍️ 5 5 501 -20 -タケ 🎍️ 5 5 501 -20 -ニッポン 🎍️ 5 5 501 -20 -ニホン 🎍️ 5 5 501 -20 -ワ 🎍️ 5 5 501 -20 -オイワイ 🎎️ 5 5 501 -20 -オダイリサマ 🎎️ 5 5 501 -20 -オダイリヨウ 🎎️ 5 5 501 -20 -オヒナサマ 🎎️ 5 5 501 -20 -ニッポン 🎎️ 5 5 501 -20 -ニホン 🎎️ 5 5 501 -20 -ニンギョウ 🎎️ 5 5 501 -20 -ヒナマツリ 🎎️ 5 5 501 -20 -ワ 🎎️ 5 5 501 -20 -オイワイ 🎏️ 5 5 501 -20 -コイノボリ 🎏️ 5 5 501 -20 -コドモノヒ 🎏️ 5 5 501 -20 -カゼ 🎐️ 5 5 501 -20 -スズ 🎐️ 5 5 501 -20 -ナツ 🎐️ 5 5 501 -20 -フウリン 🎐️ 5 5 501 -20 -ジュウゴヤ 🎑️ 5 5 501 -20 -ジュウゴヨ 🎑️ 5 5 501 -20 -ススキ 🎑️ 5 5 501 -20 -ツキ 🎑️ 5 5 501 -20 -ツキミ 🎑️ 5 5 501 -20 -アカイフウトウ 🧧️ 5 5 501 -20 -オカネ 🧧️ 5 5 501 -20 -オトシダマ 🧧️ 5 5 501 -20 -コウウン 🧧️ 5 5 501 -20 -ゴシュウギ 🧧️ 5 5 501 -20 -ホンパオ 🧧️ 5 5 501 -20 -ホンボア 🧧️ 5 5 501 -20 -オイワイ 🎀️ 5 5 501 -20 -リボン 🎀️ 5 5 501 -20 -オイワイ 🎁️ 5 5 501 -20 -ギフト 🎁️ 5 5 501 -20 -ハコ 🎁️ 5 5 501 -20 -プレゼント 🎁️ 5 5 501 -20 -オイワイ 🎗️️ 5 5 501 -20 -リボン 🎗️️ 5 5 501 -20 -リマインダー 🎗️️ 5 5 501 -20 -リマインダーリボン 🎗️️ 5 5 501 -20 -チケット 🎟️️ 5 5 501 -20 -ニュウジョウケン 🎟️️ 5 5 501 -20 -ニュウジョウパス 🎟️️ 5 5 501 -20 -ハンケン 🎟️️ 5 5 501 -20 -キップ 🎫️ 5 5 501 -20 -チケット 🎫️ 5 5 501 -20 -オイワイ 🎖️️ 5 5 501 -20 -クンショウ 🎖️️ 5 5 501 -20 -ヒョウショウ 🎖️️ 5 5 501 -20 -メダル 🎖️️ 5 5 501 -20 -カップ 🏆️ 5 5 501 -20 -ショウハイ 🏆️ 5 5 501 -20 -トロフィー 🏆️ 5 5 501 -20 -ヒョウショウ 🏆️ 5 5 501 -20 -ユウショウカップ 🏆️ 5 5 501 -20 -スポーツ 🏅️ 5 5 501 -20 -ヒョウショウ 🏅️ 5 5 501 -20 -メダル 🏅️ 5 5 501 -20 -1イ 🥇️ 5 5 501 -20 -キン 🥇️ 5 5 501 -20 -キンメダル 🥇️ 5 5 501 -20 -ゴールド 🥇️ 5 5 501 -20 -メダル 🥇️ 5 5 501 -20 -2イ 🥈️ 5 5 501 -20 -ギン 🥈️ 5 5 501 -20 -ギンメダル 🥈️ 5 5 501 -20 -シルバー 🥈️ 5 5 501 -20 -メダル 🥈️ 5 5 501 -20 -3イ 🥉️ 5 5 501 -20 -ドウ 🥉️ 5 5 501 -20 -ドウメダル 🥉️ 5 5 501 -20 -ブロンズ 🥉️ 5 5 501 -20 -メダル 🥉️ 5 5 501 -20 -サッカー ⚽️ 5 5 501 -20 -サッカーボール ⚽️ 5 5 501 -20 -スポーツ ⚽️ 5 5 501 -20 -ボール ⚽️ 5 5 501 -20 -スポーツ ⚾️ 5 5 501 -20 -ボール ⚾️ 5 5 501 -20 -ヤキュウ ⚾️ 5 5 501 -20 -ヤキュウボール ⚾️ 5 5 501 -20 -スポーツ 🥎️ 5 5 501 -20 -ソフトボール 🥎️ 5 5 501 -20 -ヘタナゲ 🥎️ 5 5 501 -20 -ボール 🥎️ 5 5 501 -20 -スポーツ 🏀️ 5 5 501 -20 -バスケ 🏀️ 5 5 501 -20 -バスケットボール 🏀️ 5 5 501 -20 -ボール 🏀️ 5 5 501 -20 -スポーツ 🏐️ 5 5 501 -20 -バレー 🏐️ 5 5 501 -20 -バレーボール 🏐️ 5 5 501 -20 -ボール 🏐️ 5 5 501 -20 -アメフト 🏈️ 5 5 501 -20 -アメリカンフットボール 🏈️ 5 5 501 -20 -スポーツ 🏈️ 5 5 501 -20 -ボール 🏈️ 5 5 501 -20 -ラグビー 🏈️ 5 5 501 -20 -ラグビーボール 🏈️ 5 5 501 -20 -スポーツ 🏉️ 5 5 501 -20 -ボール 🏉️ 5 5 501 -20 -ラグビー 🏉️ 5 5 501 -20 -ラグビーボール 🏉️ 5 5 501 -20 -スポーツ 🎾️ 5 5 501 -20 -テニス 🎾️ 5 5 501 -20 -テニスボール 🎾️ 5 5 501 -20 -ボール 🎾️ 5 5 501 -20 -ラケット 🎾️ 5 5 501 -20 -アルティメット 🥏️ 5 5 501 -20 -フライングディスク 🥏️ 5 5 501 -20 -フリスビー 🥏️ 5 5 501 -20 -スポーツ 🎳️ 5 5 501 -20 -タマ 🎳️ 5 5 501 -20 -ボウリング 🎳️ 5 5 501 -20 -ボール 🎳️ 5 5 501 -20 -クリケット 🏏️ 5 5 501 -20 -スポーツ 🏏️ 5 5 501 -20 -バット 🏏️ 5 5 501 -20 -ボール 🏏️ 5 5 501 -20 -スティック 🏑️ 5 5 501 -20 -スポーツ 🏑️ 5 5 501 -20 -フィールドホッケー 🏑️ 5 5 501 -20 -ホッケー 🏑️ 5 5 501 -20 -ボール 🏑️ 5 5 501 -20 -アイスホッケー 🏒️ 5 5 501 -20 -スティック 🏒️ 5 5 501 -20 -スポーツ 🏒️ 5 5 501 -20 -パック 🏒️ 5 5 501 -20 -ホッケー 🏒️ 5 5 501 -20 -ゴール 🥍️ 5 5 501 -20 -スティック 🥍️ 5 5 501 -20 -スポーツ 🥍️ 5 5 501 -20 -ボール 🥍️ 5 5 501 -20 -ラクロス 🥍️ 5 5 501 -20 -スポーツ 🏓️ 5 5 501 -20 -タッキュウ 🏓️ 5 5 501 -20 -ピンポン 🏓️ 5 5 501 -20 -ボール 🏓️ 5 5 501 -20 -ラケット 🏓️ 5 5 501 -20 -シャトル 🏸️ 5 5 501 -20 -スポーツ 🏸️ 5 5 501 -20 -バドミントン 🏸️ 5 5 501 -20 -ラケット 🏸️ 5 5 501 -20 -グローブ 🥊️ 5 5 501 -20 -スポーツ 🥊️ 5 5 501 -20 -ボクシング 🥊️ 5 5 501 -20 -ボクシンググローブ 🥊️ 5 5 501 -20 -カラテ 🥋️ 5 5 501 -20 -ジュウドウ 🥋️ 5 5 501 -20 -スポーツ 🥋️ 5 5 501 -20 -テコンドー 🥋️ 5 5 501 -20 -ドウギ 🥋️ 5 5 501 -20 -ブドウ 🥋️ 5 5 501 -20 -ゴール 🥅️ 5 5 501 -20 -ゴールネット 🥅️ 5 5 501 -20 -スポーツ 🥅️ 5 5 501 -20 -ネット 🥅️ 5 5 501 -20 -ゴルフ ⛳️ 5 5 501 -20 -スポーツ ⛳️ 5 5 501 -20 -ハタ ⛳️ 5 5 501 -20 -フラグ ⛳️ 5 5 501 -20 -フラッグ ⛳️ 5 5 501 -20 -ホール ⛳️ 5 5 501 -20 -アイススケート ⛸️️ 5 5 501 -20 -スケート ⛸️️ 5 5 501 -20 -スポーツ ⛸️️ 5 5 501 -20 -フィギュアスケート ⛸️️ 5 5 501 -20 -サカナ 🎣️ 5 5 501 -20 -スポーツ 🎣️ 5 5 501 -20 -ツリ 🎣️ 5 5 501 -20 -ツリザオ 🎣️ 5 5 501 -20 -シュノーケリング 🤿️ 5 5 501 -20 -スキューバ 🤿️ 5 5 501 -20 -スポーツ 🤿️ 5 5 501 -20 -ダイビングマスク 🤿️ 5 5 501 -20 -マスク 🤿️ 5 5 501 -20 -エキデン 🎽️ 5 5 501 -20 -シャツ 🎽️ 5 5 501 -20 -スポーツ 🎽️ 5 5 501 -20 -タスキ 🎽️ 5 5 501 -20 -チョウキョリソウ 🎽️ 5 5 501 -20 -マラソン 🎽️ 5 5 501 -20 -ランニング 🎽️ 5 5 501 -20 -ランニングシャツ 🎽️ 5 5 501 -20 -イタ 🎿️ 5 5 501 -20 -スキー 🎿️ 5 5 501 -20 -スキーブーツ 🎿️ 5 5 501 -20 -ストック 🎿️ 5 5 501 -20 -スポーツ 🎿️ 5 5 501 -20 -ユキ 🎿️ 5 5 501 -20 -スケルトン 🛷️ 5 5 501 -20 -スポーツ 🛷️ 5 5 501 -20 -ソリ 🛷️ 5 5 501 -20 -ソリキョウギ 🛷️ 5 5 501 -20 -ボブスレー 🛷️ 5 5 501 -20 -リュージュ 🛷️ 5 5 501 -20 -カーリング 🥌️ 5 5 501 -20 -ストーン 🥌️ 5 5 501 -20 -スポーツ 🥌️ 5 5 501 -20 -アタリ 🎯️ 5 5 501 -20 -スポーツ 🎯️ 5 5 501 -20 -ダーツ 🎯️ 5 5 501 -20 -テキ 🎯️ 5 5 501 -20 -ブルズアイ 🎯️ 5 5 501 -20 -マト 🎯️ 5 5 501 -20 -オモチャ 🪀️ 5 5 501 -20 -カイテン 🪀️ 5 5 501 -20 -ガング 🪀️ 5 5 501 -20 -ヨーヨー 🪀️ 5 5 501 -20 -オモチャ 🪁️ 5 5 501 -20 -カイト 🪁️ 5 5 501 -20 -ガング 🪁️ 5 5 501 -20 -タコ 🪁️ 5 5 501 -20 -タコアゲ 🪁️ 5 5 501 -20 -ケンジュウ 🔫️ 5 5 501 -20 -ジュウ 🔫️ 5 5 501 -20 -ピストル 🔫️ 5 5 501 -20 -ブキ 🔫️ 5 5 501 -20 -ミズデッポウ 🔫️ 5 5 501 -20 -リボルバー 🔫️ 5 5 501 -20 -エイトボール 🎱️ 5 5 501 -20 -スポーツ 🎱️ 5 5 501 -20 -ビリヤード 🎱️ 5 5 501 -20 -ボール 🎱️ 5 5 501 -20 -ウラナイ 🔮️ 5 5 501 -20 -ウンメイ 🔮️ 5 5 501 -20 -スイショウ 🔮️ 5 5 501 -20 -スイショウダマ 🔮️ 5 5 501 -20 -タマ 🔮️ 5 5 501 -20 -ツエ 🪄️ 5 5 501 -20 -マジュツ 🪄️ 5 5 501 -20 -マホウノツエ 🪄️ 5 5 501 -20 -ゲーム 🎮️ 5 5 501 -20 -コントローラ 🎮️ 5 5 501 -20 -コントローラー 🎮️ 5 5 501 -20 -テレビゲーム 🎮️ 5 5 501 -20 -ビデオゲーム 🎮️ 5 5 501 -20 -ゲーム 🕹️️ 5 5 501 -20 -コントローラ 🕹️️ 5 5 501 -20 -ジョイスティック 🕹️️ 5 5 501 -20 -スティック 🕹️️ 5 5 501 -20 -テレビゲーム 🕹️️ 5 5 501 -20 -スリーセブン 🎰️ 5 5 501 -20 -スロット 🎰️ 5 5 501 -20 -スロットマシン 🎰️ 5 5 501 -20 -ゲーム 🎲️ 5 5 501 -20 -サイコロ 🎲️ 5 5 501 -20 -ダイス 🎲️ 5 5 501 -20 -カギ 🧩️ 5 5 501 -20 -クミアワセ 🧩️ 5 5 501 -20 -ジグソーパズル 🧩️ 5 5 501 -20 -パズル 🧩️ 5 5 501 -20 -ピース 🧩️ 5 5 501 -20 -オモチャ 🧸️ 5 5 501 -20 -ガング 🧸️ 5 5 501 -20 -クマ 🧸️ 5 5 501 -20 -テディベア 🧸️ 5 5 501 -20 -ヌイグルミ 🧸️ 5 5 501 -20 -オイワイ 🪅️ 5 5 501 -20 -タンジョウビ 🪅️ 5 5 501 -20 -ニンギョウ 🪅️ 5 5 501 -20 -パーティー 🪅️ 5 5 501 -20 -ピニャータ 🪅️ 5 5 501 -20 -イレコ 🪆️ 5 5 501 -20 -ニンギョウ 🪆️ 5 5 501 -20 -マトリョーシカ 🪆️ 5 5 501 -20 -ロシア 🪆️ 5 5 501 -20 -カード ♠️️ 5 5 501 -20 -スペード ♠️️ 5 5 501 -20 -トランプ ♠️️ 5 5 501 -20 -カード ♥️️ 5 5 501 -20 -トランプ ♥️️ 5 5 501 -20 -ハート ♥️️ 5 5 501 -20 -カード ♦️️ 5 5 501 -20 -ダイア ♦️️ 5 5 501 -20 -ダイヤ ♦️️ 5 5 501 -20 -トランプ ♦️️ 5 5 501 -20 -カード ♣️️ 5 5 501 -20 -クラブ ♣️️ 5 5 501 -20 -クローバー ♣️️ 5 5 501 -20 -トランプ ♣️️ 5 5 501 -20 -コマ ♟️️ 5 5 501 -20 -ステコマ ♟️️ 5 5 501 -20 -ステゴマ ♟️️ 5 5 501 -20 -チェス ♟️️ 5 5 501 -20 -チェスノコマ ♟️️ 5 5 501 -20 -カード 🃏️ 5 5 501 -20 -ジジ 🃏️ 5 5 501 -20 -ジョーカー 🃏️ 5 5 501 -20 -トランプ 🃏️ 5 5 501 -20 -ババ 🃏️ 5 5 501 -20 -ゲーム 🀄️ 5 5 501 -20 -ジャンパイ 🀄️ 5 5 501 -20 -パイ 🀄️ 5 5 501 -20 -マージャン 🀄️ 5 5 501 -20 -マージャンパイ 🀄️ 5 5 501 -20 -カード 🎴️ 5 5 501 -20 -ゲーム 🎴️ 5 5 501 -20 -ハナフダ 🎴️ 5 5 501 -20 -エンゲイ 🎭️ 5 5 501 -20 -エンゲキ 🎭️ 5 5 501 -20 -カメン 🎭️ 5 5 501 -20 -ゲイジュツ 🎭️ 5 5 501 -20 -ゲキジョウ 🎭️ 5 5 501 -20 -ブタイゲイジュツ 🎭️ 5 5 501 -20 -エ 🖼️️ 5 5 501 -20 -カイガ 🖼️️ 5 5 501 -20 -ゲイジュツ 🖼️️ 5 5 501 -20 -ビジュツカン 🖼️️ 5 5 501 -20 -アート 🎨️ 5 5 501 -20 -エ 🎨️ 5 5 501 -20 -エノグパレット 🎨️ 5 5 501 -20 -パレット 🎨️ 5 5 501 -20 -ビジュツカン 🎨️ 5 5 501 -20 -フデ 🎨️ 5 5 501 -20 -イト 🧵️ 5 5 501 -20 -イトマキ 🧵️ 5 5 501 -20 -サイホウ 🧵️ 5 5 501 -20 -ヌイバリ 🧵️ 5 5 501 -20 -ヒモ 🧵️ 5 5 501 -20 -サイホウ 🪡️ 5 5 501 -20 -シシュウ 🪡️ 5 5 501 -20 -ステッチ 🪡️ 5 5 501 -20 -ヌイバリ 🪡️ 5 5 501 -20 -ヌウ 🪡️ 5 5 501 -20 -ハリ 🪡️ 5 5 501 -20 -アミモノ 🧶️ 5 5 501 -20 -カギバリ 🧶️ 5 5 501 -20 -ケイト 🧶️ 5 5 501 -20 -ケイトダマ 🧶️ 5 5 501 -20 -ニット 🧶️ 5 5 501 -20 -ツナ 🪢️ 5 5 501 -20 -ネジレ 🪢️ 5 5 501 -20 -ノット 🪢️ 5 5 501 -20 -ヒモ 🪢️ 5 5 501 -20 -ムスビメ 🪢️ 5 5 501 -20 -ロープ 🪢️ 5 5 501 -20 -メガネ 👓️ 5 5 501 -20 -サングラス 🕶️️ 5 5 501 -20 -メガネ 🕶️️ 5 5 501 -20 -ゴーグル 🥽️ 5 5 501 -20 -スイエイ 🥽️ 5 5 501 -20 -ホゴメガネ 🥽️ 5 5 501 -20 -ヨウセツ 🥽️ 5 5 501 -20 -イシャ 🥼️ 5 5 501 -20 -カガクシャ 🥼️ 5 5 501 -20 -ジッケン 🥼️ 5 5 501 -20 -ハクイ 🥼️ 5 5 501 -20 -アンゼンベスト 🦺️ 5 5 501 -20 -キンキュウ 🦺️ 5 5 501 -20 -コウジ 🦺️ 5 5 501 -20 -チョッキ 🦺️ 5 5 501 -20 -ハンシャ 🦺️ 5 5 501 -20 -ベスト 🦺️ 5 5 501 -20 -シャツ 👔️ 5 5 501 -20 -タイ 👔️ 5 5 501 -20 -ネクタイ 👔️ 5 5 501 -20 -フク 👔️ 5 5 501 -20 -ワイシャツ 👔️ 5 5 501 -20 -tシャツ 👕️ 5 5 501 -20 -シャツ 👕️ 5 5 501 -20 -ティーシャツ 👕️ 5 5 501 -20 -フク 👕️ 5 5 501 -20 -ジーパン 👖️ 5 5 501 -20 -ジーンズ 👖️ 5 5 501 -20 -ズボン 👖️ 5 5 501 -20 -デニム 👖️ 5 5 501 -20 -パンツ 👖️ 5 5 501 -20 -フク 👖️ 5 5 501 -20 -エリマキ 🧣️ 5 5 501 -20 -クビマキ 🧣️ 5 5 501 -20 -スカーフ 🧣️ 5 5 501 -20 -マフラー 🧣️ 5 5 501 -20 -テブクロ 🧤️ 5 5 501 -20 -アウター 🧥️ 5 5 501 -20 -オーバー 🧥️ 5 5 501 -20 -コート 🧥️ 5 5 501 -20 -ジャケット 🧥️ 5 5 501 -20 -フク 🧥️ 5 5 501 -20 -クツシタ 🧦️ 5 5 501 -20 -ソックス 🧦️ 5 5 501 -20 -ドレス 👗️ 5 5 501 -20 -フク 👗️ 5 5 501 -20 -ワンピース 👗️ 5 5 501 -20 -キモノ 👘️ 5 5 501 -20 -フク 👘️ 5 5 501 -20 -サリー 🥻️ 5 5 501 -20 -フク 🥻️ 5 5 501 -20 -ミンゾクイショウ 🥻️ 5 5 501 -20 -スイムウェア 🩱️ 5 5 501 -20 -ミズギ 🩱️ 5 5 501 -20 -ワンピースノミズギ 🩱️ 5 5 501 -20 -シタギ 🩲️ 5 5 501 -20 -スイムウェア 🩲️ 5 5 501 -20 -パンツ 🩲️ 5 5 501 -20 -ブリーフ 🩲️ 5 5 501 -20 -ミズギ 🩲️ 5 5 501 -20 -シタギ 🩳️ 5 5 501 -20 -ショーツ 🩳️ 5 5 501 -20 -スイムウェア 🩳️ 5 5 501 -20 -パンツ 🩳️ 5 5 501 -20 -ミズギ 🩳️ 5 5 501 -20 -ビキニ 👙️ 5 5 501 -20 -フク 👙️ 5 5 501 -20 -ミズギ 👙️ 5 5 501 -20 -シャツ 👚️ 5 5 501 -20 -フク 👚️ 5 5 501 -20 -フジンフク 👚️ 5 5 501 -20 -ブラウス 👚️ 5 5 501 -20 -ガマグチ 👛️ 5 5 501 -20 -ガマグチザイフ 👛️ 5 5 501 -20 -コゼニイレ 👛️ 5 5 501 -20 -サイフ 👛️ 5 5 501 -20 -カバン 👜️ 5 5 501 -20 -ハンドバッグ 👜️ 5 5 501 -20 -バッグ 👜️ 5 5 501 -20 -バッグ 👝️ 5 5 501 -20 -ポーチ 👝️ 5 5 501 -20 -カミテサゲ 🛍️️ 5 5 501 -20 -カミブクロ 🛍️️ 5 5 501 -20 -ショッピングバッグ 🛍️️ 5 5 501 -20 -バッグ 🛍️️ 5 5 501 -20 -カバン 🎒️ 5 5 501 -20 -ガッコウ 🎒️ 5 5 501 -20 -ショウガクセイ 🎒️ 5 5 501 -20 -ショウガッコウ 🎒️ 5 5 501 -20 -バックパック 🎒️ 5 5 501 -20 -ランドセル 🎒️ 5 5 501 -20 -リュックサック 🎒️ 5 5 501 -20 -クツ 🩴️ 5 5 501 -20 -ゴムゾウリ 🩴️ 5 5 501 -20 -サンダル 🩴️ 5 5 501 -20 -トングサンダル 🩴️ 5 5 501 -20 -ビーサン 🩴️ 5 5 501 -20 -ビーチサンダル 🩴️ 5 5 501 -20 -カワグツ 👞️ 5 5 501 -20 -クツ 👞️ 5 5 501 -20 -シンシグツ 👞️ 5 5 501 -20 -ローファー 👞️ 5 5 501 -20 -アスレチックシューズ 👟️ 5 5 501 -20 -クツ 👟️ 5 5 501 -20 -シューズ 👟️ 5 5 501 -20 -スニーカー 👟️ 5 5 501 -20 -キャンプ 🥾️ 5 5 501 -20 -トザンクツ 🥾️ 5 5 501 -20 -トザングツ 🥾️ 5 5 501 -20 -ハイキング 🥾️ 5 5 501 -20 -ハイキングシューズ 🥾️ 5 5 501 -20 -バックパック 🥾️ 5 5 501 -20 -ブーツ 🥾️ 5 5 501 -20 -スリッポン 🥿️ 5 5 501 -20 -バレエシューズ 🥿️ 5 5 501 -20 -フラットシューズ 🥿️ 5 5 501 -20 -ペタンコクツ 🥿️ 5 5 501 -20 -クツ 👠️ 5 5 501 -20 -ハイヒール 👠️ 5 5 501 -20 -ヒール 👠️ 5 5 501 -20 -ピンヒール 👠️ 5 5 501 -20 -フク 👠️ 5 5 501 -20 -クツ 👡️ 5 5 501 -20 -サンダル 👡️ 5 5 501 -20 -フク 👡️ 5 5 501 -20 -クツ 🩰️ 5 5 501 -20 -シューズ 🩰️ 5 5 501 -20 -ダンス 🩰️ 5 5 501 -20 -トウシューズ 🩰️ 5 5 501 -20 -バレエ 🩰️ 5 5 501 -20 -クツ 👢️ 5 5 501 -20 -フク 👢️ 5 5 501 -20 -ブーツ 👢️ 5 5 501 -20 -ロングブーツ 👢️ 5 5 501 -20 -オウカン 👑️ 5 5 501 -20 -カンムリ 👑️ 5 5 501 -20 -クラウン 👑️ 5 5 501 -20 -オンナノボウシ 👒️ 5 5 501 -20 -フジンボウシ 👒️ 5 5 501 -20 -ボウシ 👒️ 5 5 501 -20 -ムギワラ 👒️ 5 5 501 -20 -ムギワラボウシ 👒️ 5 5 501 -20 -シルクハット 🎩️ 5 5 501 -20 -ボウシ 🎩️ 5 5 501 -20 -カクボウ 🎓️ 5 5 501 -20 -ソツギョウ 🎓️ 5 5 501 -20 -ソツギョウシキ 🎓️ 5 5 501 -20 -ボウシ 🎓️ 5 5 501 -20 -キャップ 🧢️ 5 5 501 -20 -ボウシ 🧢️ 5 5 501 -20 -ヤキュウボウ 🧢️ 5 5 501 -20 -グンタイ 🪖️ 5 5 501 -20 -グンヨウヘルメット 🪖️ 5 5 501 -20 -セントウ 🪖️ 5 5 501 -20 -ヘイシ 🪖️ 5 5 501 -20 -ヘルメット 🪖️ 5 5 501 -20 -ミリタリー 🪖️ 5 5 501 -20 -キュウキュウ ⛑️️ 5 5 501 -20 -シロジュウジ ⛑️️ 5 5 501 -20 -シロジュウジヘルメット ⛑️️ 5 5 501 -20 -ハクジュウジ ⛑️️ 5 5 501 -20 -ハクジュウジヘルメット ⛑️️ 5 5 501 -20 -ヘルメット ⛑️️ 5 5 501 -20 -イノル 📿️ 5 5 501 -20 -ジュズ 📿️ 5 5 501 -20 -ネックレス 📿️ 5 5 501 -20 -ネンジュ 📿️ 5 5 501 -20 -ネンズ 📿️ 5 5 501 -20 -ロザリオ 📿️ 5 5 501 -20 -クチベニ 💄️ 5 5 501 -20 -ケショウ 💄️ 5 5 501 -20 -リップ 💄️ 5 5 501 -20 -リップスティック 💄️ 5 5 501 -20 -ジュエリー 💍️ 5 5 501 -20 -ダイア 💍️ 5 5 501 -20 -ダイヤ 💍️ 5 5 501 -20 -ユビワ 💍️ 5 5 501 -20 -リング 💍️ 5 5 501 -20 -ジュエリー 💎️ 5 5 501 -20 -ダイア 💎️ 5 5 501 -20 -ダイヤ 💎️ 5 5 501 -20 -ホウセキ 💎️ 5 5 501 -20 -オトナシ 🔇️ 5 5 501 -20 -ショウオン 🔇️ 5 5 501 -20 -スピーカー 🔇️ 5 5 501 -20 -スピーカーショウオン 🔇️ 5 5 501 -20 -ミュート 🔇️ 5 5 501 -20 -オンリョウ 🔈️ 5 5 501 -20 -スピーカー 🔈️ 5 5 501 -20 -ボリューム 🔈️ 5 5 501 -20 -オンリョウ 🔉️ 5 5 501 -20 -オンリョウショウ 🔉️ 5 5 501 -20 -スピーカー 🔉️ 5 5 501 -20 -スピーカーオンリョウショウ 🔉️ 5 5 501 -20 -ボリューム 🔉️ 5 5 501 -20 -オンリョウ 🔊️ 5 5 501 -20 -オンリョウダイ 🔊️ 5 5 501 -20 -スピーカー 🔊️ 5 5 501 -20 -スピーカーオンリョウダイ 🔊️ 5 5 501 -20 -ダイオンリョウ 🔊️ 5 5 501 -20 -ボリューム 🔊️ 5 5 501 -20 -カクセイキ 📢️ 5 5 501 -20 -スピーカー 📢️ 5 5 501 -20 -メガホン 📢️ 5 5 501 -20 -カクセイキ 📣️ 5 5 501 -20 -スピーカー 📣️ 5 5 501 -20 -メガホン 📣️ 5 5 501 -20 -ユウビン 📯️ 5 5 501 -20 -ユウビンラッパ 📯️ 5 5 501 -20 -ラッパ 📯️ 5 5 501 -20 -カネ 🔔️ 5 5 501 -20 -スズ 🔔️ 5 5 501 -20 -チャペル 🔔️ 5 5 501 -20 -ベル 🔔️ 5 5 501 -20 -オトナシ 🔕️ 5 5 501 -20 -カネ 🔕️ 5 5 501 -20 -ショウオン 🔕️ 5 5 501 -20 -スズ 🔕️ 5 5 501 -20 -ベルショウオン 🔕️ 5 5 501 -20 -ミュート 🔕️ 5 5 501 -20 -オンガク 🎼️ 5 5 501 -20 -ガクフ 🎼️ 5 5 501 -20 -ゴセン 🎼️ 5 5 501 -20 -ゴセンフ 🎼️ 5 5 501 -20 -スコア 🎼️ 5 5 501 -20 -トオンキゴウ 🎼️ 5 5 501 -20 -オンガク 🎵️ 5 5 501 -20 -オンプ 🎵️ 5 5 501 -20 -ハチブオンプ 🎵️ 5 5 501 -20 -レンプ 🎵️ 5 5 501 -20 -オンガク 🎶️ 5 5 501 -20 -オンプ 🎶️ 5 5 501 -20 -ハチブオンプ 🎶️ 5 5 501 -20 -フクスウノオンプ 🎶️ 5 5 501 -20 -オンガク 🎙️️ 5 5 501 -20 -スタジオマイク 🎙️️ 5 5 501 -20 -マイク 🎙️️ 5 5 501 -20 -オンガク 🎚️️ 5 5 501 -20 -スライダー 🎚️️ 5 5 501 -20 -レベル 🎚️️ 5 5 501 -20 -レベルスライダー 🎚️️ 5 5 501 -20 -オンガク 🎛️️ 5 5 501 -20 -コントロール 🎛️️ 5 5 501 -20 -コントロールツマミ 🎛️️ 5 5 501 -20 -ツマミ 🎛️️ 5 5 501 -20 -ノブ 🎛️️ 5 5 501 -20 -ウタ 🎤️ 5 5 501 -20 -オンガク 🎤️ 5 5 501 -20 -カラオケ 🎤️ 5 5 501 -20 -マイク 🎤️ 5 5 501 -20 -イヤフォン 🎧️ 5 5 501 -20 -イヤホン 🎧️ 5 5 501 -20 -オンガク 🎧️ 5 5 501 -20 -ヘッドフォン 🎧️ 5 5 501 -20 -ヘッドホン 🎧️ 5 5 501 -20 -オンガク 📻️ 5 5 501 -20 -ジュシンキ 📻️ 5 5 501 -20 -ホウソウ 📻️ 5 5 501 -20 -ラジオ 📻️ 5 5 501 -20 -オンガク 🎷️ 5 5 501 -20 -ガッキ 🎷️ 5 5 501 -20 -サキソフォン 🎷️ 5 5 501 -20 -サクソフォン 🎷️ 5 5 501 -20 -サックス 🎷️ 5 5 501 -20 -アコーディオン 🪗️ 5 5 501 -20 -オンガク 🪗️ 5 5 501 -20 -ガッキ 🪗️ 5 5 501 -20 -ジャバラ 🪗️ 5 5 501 -20 -オンガク 🎸️ 5 5 501 -20 -ガッキ 🎸️ 5 5 501 -20 -ギター 🎸️ 5 5 501 -20 -オンガク 🎹️ 5 5 501 -20 -ガッキ 🎹️ 5 5 501 -20 -キーボード 🎹️ 5 5 501 -20 -ケンバン 🎹️ 5 5 501 -20 -ピアノ 🎹️ 5 5 501 -20 -オンガク 🎺️ 5 5 501 -20 -ガッキ 🎺️ 5 5 501 -20 -トランペット 🎺️ 5 5 501 -20 -ラッパ 🎺️ 5 5 501 -20 -オンガク 🎻️ 5 5 501 -20 -ガッキ 🎻️ 5 5 501 -20 -バイオリン 🎻️ 5 5 501 -20 -ヴィオラ 🎻️ 5 5 501 -20 -オンガク 🪕️ 5 5 501 -20 -ガッキ 🪕️ 5 5 501 -20 -バンジョー 🪕️ 5 5 501 -20 -オンガク 🥁️ 5 5 501 -20 -ガッキ 🥁️ 5 5 501 -20 -タイコ 🥁️ 5 5 501 -20 -ドラム 🥁️ 5 5 501 -20 -オンガク 🪘️ 5 5 501 -20 -ガッキ 🪘️ 5 5 501 -20 -コンガ 🪘️ 5 5 501 -20 -タイコ 🪘️ 5 5 501 -20 -ビート 🪘️ 5 5 501 -20 -リズム 🪘️ 5 5 501 -20 -ケイタイ 📱️ 5 5 501 -20 -ケイタイデンワ 📱️ 5 5 501 -20 -スマホ 📱️ 5 5 501 -20 -スマートフォン 📱️ 5 5 501 -20 -ケイタイ 📲️ 5 5 501 -20 -ケイタイジュシン 📲️ 5 5 501 -20 -ケイタイデンワ 📲️ 5 5 501 -20 -ジュシン 📲️ 5 5 501 -20 -スマホ 📲️ 5 5 501 -20 -スマートフォン 📲️ 5 5 501 -20 -チャクシンチュウ 📲️ 5 5 501 -20 -デンワハッシン 📲️ 5 5 501 -20 -オヤキ ☎️️ 5 5 501 -20 -クロデンワ ☎️️ 5 5 501 -20 -コテイデンワ ☎️️ 5 5 501 -20 -デンワ ☎️️ 5 5 501 -20 -プッシュホン ☎️️ 5 5 501 -20 -ボタンシキデンワ ☎️️ 5 5 501 -20 -コキ 📞️ 5 5 501 -20 -ジュワキ 📞️ 5 5 501 -20 -デンワ 📞️ 5 5 501 -20 -ページャー 📟️ 5 5 501 -20 -ポケットベル 📟️ 5 5 501 -20 -ポケベル 📟️ 5 5 501 -20 -fax 📠️ 5 5 501 -20 -デンワ 📠️ 5 5 501 -20 -ファックス 📠️ 5 5 501 -20 -フクゴウキ 📠️ 5 5 501 -20 -カンデンチ 🔋️ 5 5 501 -20 -デンチ 🔋️ 5 5 501 -20 -バッテリー 🔋️ 5 5 501 -20 -コンセント 🔌️ 5 5 501 -20 -デンゲン 🔌️ 5 5 501 -20 -プラグ 🔌️ 5 5 501 -20 -pc 💻️ 5 5 501 -20 -コンピュータ 💻️ 5 5 501 -20 -コンピューター 💻️ 5 5 501 -20 -ノートパソコン 💻️ 5 5 501 -20 -パソコン 💻️ 5 5 501 -20 -ラップトップ 💻️ 5 5 501 -20 -pc 🖥️️ 5 5 501 -20 -コンピューター 🖥️️ 5 5 501 -20 -デスクトップ 🖥️️ 5 5 501 -20 -デスクトップパソコン 🖥️️ 5 5 501 -20 -パソコン 🖥️️ 5 5 501 -20 -ピーシー 🖥️️ 5 5 501 -20 -インサツキ 🖨️️ 5 5 501 -20 -コピーキ 🖨️️ 5 5 501 -20 -フクゴウキ 🖨️️ 5 5 501 -20 -プリンタ 🖨️️ 5 5 501 -20 -プリンター 🖨️️ 5 5 501 -20 -pc ⌨️️ 5 5 501 -20 -キーボード ⌨️️ 5 5 501 -20 -コンピューター ⌨️️ 5 5 501 -20 -パソコン ⌨️️ 5 5 501 -20 -ピーシー ⌨️️ 5 5 501 -20 -pc 🖱️️ 5 5 501 -20 -コンピューター 🖱️️ 5 5 501 -20 -パソコン 🖱️️ 5 5 501 -20 -ピーシー 🖱️️ 5 5 501 -20 -マウス 🖱️️ 5 5 501 -20 -pc 🖲️️ 5 5 501 -20 -コンピューター 🖲️️ 5 5 501 -20 -トラックボール 🖲️️ 5 5 501 -20 -パソコン 🖲️️ 5 5 501 -20 -ピーシー 🖲️️ 5 5 501 -20 -md 💽️ 5 5 501 -20 -mo 💽️ 5 5 501 -20 -エムオー 💽️ 5 5 501 -20 -エムディー 💽️ 5 5 501 -20 -コンピューター 💽️ 5 5 501 -20 -ミニディスク 💽️ 5 5 501 -20 -fd 💾️ 5 5 501 -20 -エフディー 💾️ 5 5 501 -20 -コンピューター 💾️ 5 5 501 -20 -ディスク 💾️ 5 5 501 -20 -フロッピー 💾️ 5 5 501 -20 -フロッピーディスク 💾️ 5 5 501 -20 -cd 💿️ 5 5 501 -20 -dvd 💿️ 5 5 501 -20 -シーディー 💿️ 5 5 501 -20 -ディスク 💿️ 5 5 501 -20 -ブルレイ 💿️ 5 5 501 -20 -ブルーレイ 💿️ 5 5 501 -20 -cd 📀️ 5 5 501 -20 -dvd 📀️ 5 5 501 -20 -シーディー 📀️ 5 5 501 -20 -ディスク 📀️ 5 5 501 -20 -ブルレイ 📀️ 5 5 501 -20 -ブルーレイ 📀️ 5 5 501 -20 -アバカス 🧮️ 5 5 501 -20 -ソロバン 🧮️ 5 5 501 -20 -エイガ 🎥️ 5 5 501 -20 -エイガカメラ 🎥️ 5 5 501 -20 -カメラ 🎥️ 5 5 501 -20 -ムービー 🎥️ 5 5 501 -20 -エイガ 🎞️️ 5 5 501 -20 -エイガフィルム 🎞️️ 5 5 501 -20 -フィルム 🎞️️ 5 5 501 -20 -フレーム 🎞️️ 5 5 501 -20 -ムービー 🎞️️ 5 5 501 -20 -エイガ 📽️️ 5 5 501 -20 -エイシャキ 📽️️ 5 5 501 -20 -プロジェクター 📽️️ 5 5 501 -20 -ムービー 📽️️ 5 5 501 -20 -エイガ 🎬️ 5 5 501 -20 -カチンコ 🎬️ 5 5 501 -20 -テレビ 📺️ 5 5 501 -20 -ビデオ 📺️ 5 5 501 -20 -カメラ 📷️ 5 5 501 -20 -シャシン 📷️ 5 5 501 -20 -カメラ 📸️ 5 5 501 -20 -カメラフラッシュ 📸️ 5 5 501 -20 -シャシン 📸️ 5 5 501 -20 -フラッシュ 📸️ 5 5 501 -20 -フラッシュヲタイテイルカメラ 📸️ 5 5 501 -20 -カメラ 📹️ 5 5 501 -20 -ドウガ 📹️ 5 5 501 -20 -ビデオ 📹️ 5 5 501 -20 -ビデオカメラ 📹️ 5 5 501 -20 -ムービー 📹️ 5 5 501 -20 -vhs 📼️ 5 5 501 -20 -ドウガ 📼️ 5 5 501 -20 -ビデオ 📼️ 5 5 501 -20 -ビデオカセット 📼️ 5 5 501 -20 -ビデオテープ 📼️ 5 5 501 -20 -ブイエッチエス 📼️ 5 5 501 -20 -ケンサク 🔍️ 5 5 501 -20 -ムシメガネ 🔍️ 5 5 501 -20 -ムシメガネヒダリ 🔍️ 5 5 501 -20 -ルーペ 🔍️ 5 5 501 -20 -ケンサク 🔎️ 5 5 501 -20 -ショウサイ 🔎️ 5 5 501 -20 -ムシメガネ 🔎️ 5 5 501 -20 -ムシメガネミギ 🔎️ 5 5 501 -20 -ルーペ 🔎️ 5 5 501 -20 -アカリ 🕯️️ 5 5 501 -20 -キャンドル 🕯️️ 5 5 501 -20 -ロウソク 🕯️️ 5 5 501 -20 -アカリ 💡️ 5 5 501 -20 -デンキュウ 💡️ 5 5 501 -20 -ヒラメキ 💡️ 5 5 501 -20 -ピコーン 💡️ 5 5 501 -20 -アカリ 🔦️ 5 5 501 -20 -カイチュウデントウ 🔦️ 5 5 501 -20 -デントウ 🔦️ 5 5 501 -20 -ライト 🔦️ 5 5 501 -20 -アカチョウチン 🏮️ 5 5 501 -20 -イザカヤ 🏮️ 5 5 501 -20 -チョウチン 🏮️ 5 5 501 -20 -ノミヤ 🏮️ 5 5 501 -20 -アカリ 🪔️ 5 5 501 -20 -オイル 🪔️ 5 5 501 -20 -ディヤランプ 🪔️ 5 5 501 -20 -ランプ 🪔️ 5 5 501 -20 -ノート 📔️ 5 5 501 -20 -ヒョウシツキノート 📔️ 5 5 501 -20 -ブング 📔️ 5 5 501 -20 -ブンボウグ 📔️ 5 5 501 -20 -ショセキ 📕️ 5 5 501 -20 -トジタホン 📕️ 5 5 501 -20 -ブンボウグ 📕️ 5 5 501 -20 -ホン 📕️ 5 5 501 -20 -ショセキ 📖️ 5 5 501 -20 -ヒライタホン 📖️ 5 5 501 -20 -ブンボウグ 📖️ 5 5 501 -20 -ホン 📖️ 5 5 501 -20 -ショセキ 📗️ 5 5 501 -20 -ブンボウグ 📗️ 5 5 501 -20 -ホン 📗️ 5 5 501 -20 -ミドリノホン 📗️ 5 5 501 -20 -アオイホン 📘️ 5 5 501 -20 -アオノホン 📘️ 5 5 501 -20 -ショセキ 📘️ 5 5 501 -20 -ブンボウグ 📘️ 5 5 501 -20 -ホン 📘️ 5 5 501 -20 -オレンジノホン 📙️ 5 5 501 -20 -ショセキ 📙️ 5 5 501 -20 -ブンボウグ 📙️ 5 5 501 -20 -ホン 📙️ 5 5 501 -20 -ショセキ 📚️ 5 5 501 -20 -ブンボウグ 📚️ 5 5 501 -20 -ホン 📚️ 5 5 501 -20 -ホンノヤマ 📚️ 5 5 501 -20 -ノート 📓️ 5 5 501 -20 -ブング 📓️ 5 5 501 -20 -ブンボウグ 📓️ 5 5 501 -20 -ダイチョウ 📒️ 5 5 501 -20 -ノート 📒️ 5 5 501 -20 -ブング 📒️ 5 5 501 -20 -ブンボウグ 📒️ 5 5 501 -20 -リングノート 📒️ 5 5 501 -20 -カール 📃️ 5 5 501 -20 -ショルイ 📃️ 5 5 501 -20 -ブンショ 📃️ 5 5 501 -20 -マキページ 📃️ 5 5 501 -20 -ショルイ 📜️ 5 5 501 -20 -スクロール 📜️ 5 5 501 -20 -ブンショ 📜️ 5 5 501 -20 -ブンボウグ 📜️ 5 5 501 -20 -マキモノ 📜️ 5 5 501 -20 -ショルイ 📄️ 5 5 501 -20 -ブンショ 📄️ 5 5 501 -20 -ページ 📄️ 5 5 501 -20 -シンブン 📰️ 5 5 501 -20 -シンブンシ 📰️ 5 5 501 -20 -ニュース 📰️ 5 5 501 -20 -シンブン 🗞️️ 5 5 501 -20 -シンブンシ 🗞️️ 5 5 501 -20 -ニュース 🗞️️ 5 5 501 -20 -マルメタシンブン 🗞️️ 5 5 501 -20 -フセン 📑️ 5 5 501 -20 -ブング 📑️ 5 5 501 -20 -ブンボウグ 📑️ 5 5 501 -20 -ページニフセン 📑️ 5 5 501 -20 -ページマーク 📑️ 5 5 501 -20 -マーク 📑️ 5 5 501 -20 -シオリ 🔖️ 5 5 501 -20 -タグ 🔖️ 5 5 501 -20 -フセン 🔖️ 5 5 501 -20 -ブックマーク 🔖️ 5 5 501 -20 -タグ 🏷️️ 5 5 501 -20 -ニフダ 🏷️️ 5 5 501 -20 -ラベル 🏷️️ 5 5 501 -20 -オカネ 💰️ 5 5 501 -20 -カネブクロ 💰️ 5 5 501 -20 -キンブクロ 💰️ 5 5 501 -20 -ショウキン 💰️ 5 5 501 -20 -ドル 💰️ 5 5 501 -20 -ドルブクロ 💰️ 5 5 501 -20 -オカネ 🪙️ 5 5 501 -20 -キンカ 🪙️ 5 5 501 -20 -ギンカ 🪙️ 5 5 501 -20 -コイン 🪙️ 5 5 501 -20 -コウカ 🪙️ 5 5 501 -20 -コゼニ 🪙️ 5 5 501 -20 -エン 💴️ 5 5 501 -20 -エンサツ 💴️ 5 5 501 -20 -オカネ 💴️ 5 5 501 -20 -オサツ 💴️ 5 5 501 -20 -コギッテ 💴️ 5 5 501 -20 -サツタバ 💴️ 5 5 501 -20 -ツウカ 💴️ 5 5 501 -20 -ユウリョウ 💴️ 5 5 501 -20 -オカネ 💵️ 5 5 501 -20 -オサツ 💵️ 5 5 501 -20 -サツタバ 💵️ 5 5 501 -20 -ツウカ 💵️ 5 5 501 -20 -ドル 💵️ 5 5 501 -20 -ドルサツ 💵️ 5 5 501 -20 -オカネ 💶️ 5 5 501 -20 -オサツ 💶️ 5 5 501 -20 -サツタバ 💶️ 5 5 501 -20 -ツウカ 💶️ 5 5 501 -20 -ユーロ 💶️ 5 5 501 -20 -ユーロサツ 💶️ 5 5 501 -20 -オカネ 💷️ 5 5 501 -20 -オサツ 💷️ 5 5 501 -20 -サツタバ 💷️ 5 5 501 -20 -ツウカ 💷️ 5 5 501 -20 -ポンド 💷️ 5 5 501 -20 -ポンドサツ 💷️ 5 5 501 -20 -オカネ 💸️ 5 5 501 -20 -オサツ 💸️ 5 5 501 -20 -サツタバ 💸️ 5 5 501 -20 -ドル 💸️ 5 5 501 -20 -ハネガハエタオカネ 💸️ 5 5 501 -20 -オカネ 💳️ 5 5 501 -20 -カード 💳️ 5 5 501 -20 -キャッシュカード 💳️ 5 5 501 -20 -ギンコウ 💳️ 5 5 501 -20 -クレジットカード 💳️ 5 5 501 -20 -カイケイ 🧾️ 5 5 501 -20 -ボキ 🧾️ 5 5 501 -20 -リョウシュウショ 🧾️ 5 5 501 -20 -レシート 🧾️ 5 5 501 -20 -イチバ 💹️ 5 5 501 -20 -カブ 💹️ 5 5 501 -20 -カブカ 💹️ 5 5 501 -20 -カワセ 💹️ 5 5 501 -20 -グラフ 💹️ 5 5 501 -20 -シジョウ 💹️ 5 5 501 -20 -チャート 💹️ 5 5 501 -20 -イーメール ✉️️ 5 5 501 -20 -テガミ ✉️️ 5 5 501 -20 -デンシメール ✉️️ 5 5 501 -20 -フウトウ ✉️️ 5 5 501 -20 -メール ✉️️ 5 5 501 -20 -ユウビン ✉️️ 5 5 501 -20 -eメール 📧️ 5 5 501 -20 -イーメール 📧️ 5 5 501 -20 -テガミ 📧️ 5 5 501 -20 -デンシメール 📧️ 5 5 501 -20 -フウトウ 📧️ 5 5 501 -20 -メール 📧️ 5 5 501 -20 -ユウビン 📧️ 5 5 501 -20 -eメール 📨️ 5 5 501 -20 -イーメール 📨️ 5 5 501 -20 -ジュシン 📨️ 5 5 501 -20 -ジュシンスル 📨️ 5 5 501 -20 -ジュシンチュウ 📨️ 5 5 501 -20 -デンシメール 📨️ 5 5 501 -20 -メール 📨️ 5 5 501 -20 -メールジュシンチュウ 📨️ 5 5 501 -20 -eメール 📩️ 5 5 501 -20 -イーメール 📩️ 5 5 501 -20 -ソウシン 📩️ 5 5 501 -20 -ソウシンスル 📩️ 5 5 501 -20 -デンシメール 📩️ 5 5 501 -20 -メール 📩️ 5 5 501 -20 -メールジュシン 📩️ 5 5 501 -20 -メールスル 📩️ 5 5 501 -20 -イーメール 📤️ 5 5 501 -20 -ソウシン 📤️ 5 5 501 -20 -ソウシントレイ 📤️ 5 5 501 -20 -デンシメール 📤️ 5 5 501 -20 -トレイ 📤️ 5 5 501 -20 -メール 📤️ 5 5 501 -20 -イーメール 📥️ 5 5 501 -20 -ジュシン 📥️ 5 5 501 -20 -ジュシントレイ 📥️ 5 5 501 -20 -デンシメール 📥️ 5 5 501 -20 -トレイ 📥️ 5 5 501 -20 -メール 📥️ 5 5 501 -20 -コヅツミ 📦️ 5 5 501 -20 -タクハイビン 📦️ 5 5 501 -20 -タッキュウビン 📦️ 5 5 501 -20 -ダンボール 📦️ 5 5 501 -20 -ニモツ 📦️ 5 5 501 -20 -パック 📦️ 5 5 501 -20 -パッケージ 📦️ 5 5 501 -20 -テガミアリ 📫️ 5 5 501 -20 -トジタ 📫️ 5 5 501 -20 -トジタユウビンウケ 📫️ 5 5 501 -20 -ハタツキポスト 📫️ 5 5 501 -20 -ポスト 📫️ 5 5 501 -20 -メール 📫️ 5 5 501 -20 -ユウビン 📫️ 5 5 501 -20 -ユウビンウケ 📫️ 5 5 501 -20 -ユウビンバコ 📫️ 5 5 501 -20 -テガミナシ 📪️ 5 5 501 -20 -トジタ 📪️ 5 5 501 -20 -トジタユウビンウケ 📪️ 5 5 501 -20 -ハタツキポスト 📪️ 5 5 501 -20 -ポスト 📪️ 5 5 501 -20 -メール 📪️ 5 5 501 -20 -ユウビン 📪️ 5 5 501 -20 -ユウビンウケ 📪️ 5 5 501 -20 -ユウビンバコ 📪️ 5 5 501 -20 -テガミアリ 📬️ 5 5 501 -20 -ヒライタ 📬️ 5 5 501 -20 -ヒライタユウビンウケ 📬️ 5 5 501 -20 -ポスト 📬️ 5 5 501 -20 -ユウビンウケ 📬️ 5 5 501 -20 -ユウビンバコ 📬️ 5 5 501 -20 -テガミナシ 📭️ 5 5 501 -20 -ヒライタ 📭️ 5 5 501 -20 -ヒライタユウビンウケ 📭️ 5 5 501 -20 -ポスト 📭️ 5 5 501 -20 -ユウビンウケ 📭️ 5 5 501 -20 -ユウビンバコ 📭️ 5 5 501 -20 -テガミ 📮️ 5 5 501 -20 -ポスト 📮️ 5 5 501 -20 -ユウビン 📮️ 5 5 501 -20 -ユウビンバコ 📮️ 5 5 501 -20 -ユウビンポスト 📮️ 5 5 501 -20 -センキョ 🗳️️ 5 5 501 -20 -トウヒョウバコ 🗳️️ 5 5 501 -20 -エンピツ ✏️️ 5 5 501 -20 -ブング ✏️️ 5 5 501 -20 -ブンボウグ ✏️️ 5 5 501 -20 -エディット ✒️️ 5 5 501 -20 -ブング ✒️️ 5 5 501 -20 -ブンボウグ ✒️️ 5 5 501 -20 -ペン ✒️️ 5 5 501 -20 -ペンサキ ✒️️ 5 5 501 -20 -マンネンヒツ ✒️️ 5 5 501 -20 -ブング 🖋️️ 5 5 501 -20 -ブンボウグ 🖋️️ 5 5 501 -20 -マンネンヒツ 🖋️️ 5 5 501 -20 -ブング 🖊️️ 5 5 501 -20 -ブンボウグ 🖊️️ 5 5 501 -20 -ペン 🖊️️ 5 5 501 -20 -ボールペン 🖊️️ 5 5 501 -20 -エノグ 🖌️️ 5 5 501 -20 -エフデ 🖌️️ 5 5 501 -20 -ブング 🖌️️ 5 5 501 -20 -ブンボウグ 🖌️️ 5 5 501 -20 -クレヨン 🖍️️ 5 5 501 -20 -ブング 🖍️️ 5 5 501 -20 -ブンボウグ 🖍️️ 5 5 501 -20 -エンピツトメモ 📝️ 5 5 501 -20 -カミトエンピツ 📝️ 5 5 501 -20 -ブング 📝️ 5 5 501 -20 -ブンボウグ 📝️ 5 5 501 -20 -メモ 📝️ 5 5 501 -20 -カバン 💼️ 5 5 501 -20 -ブリーフケース 💼️ 5 5 501 -20 -ファイル 📁️ 5 5 501 -20 -フォルダー 📁️ 5 5 501 -20 -ブング 📁️ 5 5 501 -20 -ブンボウグ 📁️ 5 5 501 -20 -ヒライタフォルダー 📂️ 5 5 501 -20 -ファイル 📂️ 5 5 501 -20 -フォルダー 📂️ 5 5 501 -20 -ブング 📂️ 5 5 501 -20 -ブンボウグ 📂️ 5 5 501 -20 -インデックス 🗂️️ 5 5 501 -20 -カードフォルダー 🗂️️ 5 5 501 -20 -フォルダー 🗂️️ 5 5 501 -20 -ブング 🗂️️ 5 5 501 -20 -ブンボウグ 🗂️️ 5 5 501 -20 -カレンダー 📅️ 5 5 501 -20 -スケジュール 📅️ 5 5 501 -20 -ヒヅケ 📅️ 5 5 501 -20 -ヨテイ 📅️ 5 5 501 -20 -カレンダー 📆️ 5 5 501 -20 -スケジュール 📆️ 5 5 501 -20 -ヒヅケ 📆️ 5 5 501 -20 -ヒメクリ 📆️ 5 5 501 -20 -ヒメクリカレンダー 📆️ 5 5 501 -20 -ヨテイ 📆️ 5 5 501 -20 -ノート 🗒️️ 5 5 501 -20 -ブング 🗒️️ 5 5 501 -20 -ブンボウグ 🗒️️ 5 5 501 -20 -メモチョウ 🗒️️ 5 5 501 -20 -リングメモ 🗒️️ 5 5 501 -20 -カレンダー 🗓️️ 5 5 501 -20 -スケジュール 🗓️️ 5 5 501 -20 -ツキメクリカレンダー 🗓️️ 5 5 501 -20 -ヒヅケ 🗓️️ 5 5 501 -20 -ヨテイ 🗓️️ 5 5 501 -20 -カードインデックス 📇️ 5 5 501 -20 -ブング 📇️ 5 5 501 -20 -ブンボウグ 📇️ 5 5 501 -20 -メイシホルダー 📇️ 5 5 501 -20 -ローロデックス 📇️ 5 5 501 -20 -ウエムキ 📈️ 5 5 501 -20 -ウワムキ 📈️ 5 5 501 -20 -オレセングラフ 📈️ 5 5 501 -20 -グラフ 📈️ 5 5 501 -20 -グラフウエムキ 📈️ 5 5 501 -20 -グラフウワムキ 📈️ 5 5 501 -20 -ジョウショウ 📈️ 5 5 501 -20 -オレセングラフ 📉️ 5 5 501 -20 -カコウ 📉️ 5 5 501 -20 -グラフ 📉️ 5 5 501 -20 -グラフシタムキ 📉️ 5 5 501 -20 -シタムキ 📉️ 5 5 501 -20 -グラフ 📊️ 5 5 501 -20 -チャート 📊️ 5 5 501 -20 -ボウグラフ 📊️ 5 5 501 -20 -クリップ 📋️ 5 5 501 -20 -クリップボード 📋️ 5 5 501 -20 -ブング 📋️ 5 5 501 -20 -ブンボウグ 📋️ 5 5 501 -20 -オシピン 📌️ 5 5 501 -20 -ガビョウ 📌️ 5 5 501 -20 -ピン 📌️ 5 5 501 -20 -ブング 📌️ 5 5 501 -20 -ブンボウグ 📌️ 5 5 501 -20 -プッシュピン 📌️ 5 5 501 -20 -オシピン 📍️ 5 5 501 -20 -ガビョウ 📍️ 5 5 501 -20 -ピン 📍️ 5 5 501 -20 -ブング 📍️ 5 5 501 -20 -ブンボウグ 📍️ 5 5 501 -20 -プッシュピン 📍️ 5 5 501 -20 -マルイオシピン 📍️ 5 5 501 -20 -カミクリップ 📎️ 5 5 501 -20 -クリップ 📎️ 5 5 501 -20 -ゼムクリップ 📎️ 5 5 501 -20 -ブング 📎️ 5 5 501 -20 -ブンボウグ 📎️ 5 5 501 -20 -ペーパークリップ 📎️ 5 5 501 -20 -カミクリップ 🖇️️ 5 5 501 -20 -ツナガッタクリップ 🖇️️ 5 5 501 -20 -ブング 🖇️️ 5 5 501 -20 -ブンボウグ 🖇️️ 5 5 501 -20 -ペーパークリップ 🖇️️ 5 5 501 -20 -ジョウギ 📏️ 5 5 501 -20 -ブング 📏️ 5 5 501 -20 -ブンボウグ 📏️ 5 5 501 -20 -モノサシ 📏️ 5 5 501 -20 -サンカクジョウギ 📐️ 5 5 501 -20 -ジョウギ 📐️ 5 5 501 -20 -ブング 📐️ 5 5 501 -20 -ブンボウグ 📐️ 5 5 501 -20 -カット ✂️️ 5 5 501 -20 -キル ✂️️ 5 5 501 -20 -ハサミ ✂️️ 5 5 501 -20 -ビヨウイン ✂️️ 5 5 501 -20 -ブング ✂️️ 5 5 501 -20 -ブンボウグ ✂️️ 5 5 501 -20 -カードファイルボックス 🗃️️ 5 5 501 -20 -ハコ 🗃️️ 5 5 501 -20 -ファイル 🗃️️ 5 5 501 -20 -ブング 🗃️️ 5 5 501 -20 -ブンボウグ 🗃️️ 5 5 501 -20 -ボックス 🗃️️ 5 5 501 -20 -キャビネット 🗄️️ 5 5 501 -20 -ヒキダシ 🗄️️ 5 5 501 -20 -ファイル 🗄️️ 5 5 501 -20 -ファイルキャビネット 🗄️️ 5 5 501 -20 -クズカゴ 🗑️️ 5 5 501 -20 -ゴミカゴ 🗑️️ 5 5 501 -20 -ゴミバコ 🗑️️ 5 5 501 -20 -カギ 🔒️ 5 5 501 -20 -ジョウ 🔒️ 5 5 501 -20 -セジョウ 🔒️ 5 5 501 -20 -トジタジョウ 🔒️ 5 5 501 -20 -ロック 🔒️ 5 5 501 -20 -ロックオン 🔒️ 5 5 501 -20 -カイジョウ 🔓️ 5 5 501 -20 -カギ 🔓️ 5 5 501 -20 -ジョウ 🔓️ 5 5 501 -20 -ヒライタジョウ 🔓️ 5 5 501 -20 -ロック 🔓️ 5 5 501 -20 -ロックオフ 🔓️ 5 5 501 -20 -カギ 🔏️ 5 5 501 -20 -トジタジョウトペン 🔏️ 5 5 501 -20 -プライバシー 🔏️ 5 5 501 -20 -ロック 🔏️ 5 5 501 -20 -アンゼン 🔐️ 5 5 501 -20 -カギ 🔐️ 5 5 501 -20 -キー 🔐️ 5 5 501 -20 -セキュリティ 🔐️ 5 5 501 -20 -トジタジョウトカギ 🔐️ 5 5 501 -20 -ロック 🔐️ 5 5 501 -20 -ロックカクニン 🔐️ 5 5 501 -20 -カギ 🔑️ 5 5 501 -20 -キー 🔑️ 5 5 501 -20 -パスワード 🔑️ 5 5 501 -20 -キー 🗝️️ 5 5 501 -20 -テガカリ 🗝️️ 5 5 501 -20 -パスワード 🗝️️ 5 5 501 -20 -フルイカギ 🗝️️ 5 5 501 -20 -カナヅチ 🔨️ 5 5 501 -20 -コウグ 🔨️ 5 5 501 -20 -トンカチ 🔨️ 5 5 501 -20 -ハンマー 🔨️ 5 5 501 -20 -オノ 🪓️ 5 5 501 -20 -キ 🪓️ 5 5 501 -20 -コウグ 🪓️ 5 5 501 -20 -ハチェット 🪓️ 5 5 501 -20 -マキワリ 🪓️ 5 5 501 -20 -コウグ ⛏️️ 5 5 501 -20 -サイクツ ⛏️️ 5 5 501 -20 -ツルハシ ⛏️️ 5 5 501 -20 -カナヅチ ⚒️️ 5 5 501 -20 -コウグ ⚒️️ 5 5 501 -20 -ツルハシ ⚒️️ 5 5 501 -20 -トンカチ ⚒️️ 5 5 501 -20 -ハンマー ⚒️️ 5 5 501 -20 -ハンマートツルハシ ⚒️️ 5 5 501 -20 -カナヅチ 🛠️️ 5 5 501 -20 -コウグ 🛠️️ 5 5 501 -20 -トンカチ 🛠️️ 5 5 501 -20 -ハンマートレンチ 🛠️️ 5 5 501 -20 -レンチ 🛠️️ 5 5 501 -20 -タントウ 🗡️️ 5 5 501 -20 -ダガー 🗡️️ 5 5 501 -20 -ナイフ 🗡️️ 5 5 501 -20 -ブキ 🗡️️ 5 5 501 -20 -カタナ ⚔️️ 5 5 501 -20 -クロスシタケン ⚔️️ 5 5 501 -20 -ケン ⚔️️ 5 5 501 -20 -ツルギ ⚔️️ 5 5 501 -20 -ブキ ⚔️️ 5 5 501 -20 -バクダン 💣️ 5 5 501 -20 -オモチャ 🪃️ 5 5 501 -20 -オーストラリア 🪃️ 5 5 501 -20 -カエッテクル 🪃️ 5 5 501 -20 -ガング 🪃️ 5 5 501 -20 -ハネカエリ 🪃️ 5 5 501 -20 -ブキ 🪃️ 5 5 501 -20 -ブーメラン 🪃️ 5 5 501 -20 -イテ 🏹️ 5 5 501 -20 -シャシュ 🏹️ 5 5 501 -20 -セイザ 🏹️ 5 5 501 -20 -ブキ 🏹️ 5 5 501 -20 -ヤ 🏹️ 5 5 501 -20 -ユミヤ 🏹️ 5 5 501 -20 -シールド 🛡️️ 5 5 501 -20 -タテ 🛡️️ 5 5 501 -20 -ボウグ 🛡️️ 5 5 501 -20 -コウグ 🪚️ 5 5 501 -20 -ダイク 🪚️ 5 5 501 -20 -ノコ 🪚️ 5 5 501 -20 -ノコギリ 🪚️ 5 5 501 -20 -ハ 🪚️ 5 5 501 -20 -モッコウ 🪚️ 5 5 501 -20 -コウグ 🔧️ 5 5 501 -20 -スパナ 🔧️ 5 5 501 -20 -レンチ 🔧️ 5 5 501 -20 -コウグ 🪛️ 5 5 501 -20 -スクリュードライバー 🪛️ 5 5 501 -20 -ドライバー 🪛️ 5 5 501 -20 -ネジマワシ 🪛️ 5 5 501 -20 -コウグ 🔩️ 5 5 501 -20 -ナット 🔩️ 5 5 501 -20 -ボルト 🔩️ 5 5 501 -20 -ボルトトナット 🔩️ 5 5 501 -20 -ギア ⚙️️ 5 5 501 -20 -コウグ ⚙️️ 5 5 501 -20 -ハグルマ ⚙️️ 5 5 501 -20 -クランプ 🗜️️ 5 5 501 -20 -コウグ 🗜️️ 5 5 501 -20 -バイス 🗜️️ 5 5 501 -20 -マンリキ 🗜️️ 5 5 501 -20 -カガク ⚖️️ 5 5 501 -20 -ジッケン ⚖️️ 5 5 501 -20 -セイザ ⚖️️ 5 5 501 -20 -テンビン ⚖️️ 5 5 501 -20 -ハカリ ⚖️️ 5 5 501 -20 -アクセシビリティ 🦯️ 5 5 501 -20 -シカク 🦯️ 5 5 501 -20 -ショウガイ 🦯️ 5 5 501 -20 -シロツエ 🦯️ 5 5 501 -20 -ツエ 🦯️ 5 5 501 -20 -ハクジョウ 🦯️ 5 5 501 -20 -リンク 🔗️ 5 5 501 -20 -リンクシンボル 🔗️ 5 5 501 -20 -クサリ ⛓️️ 5 5 501 -20 -チェーン ⛓️️ 5 5 501 -20 -カケガネ 🪝️ 5 5 501 -20 -カケキン 🪝️ 5 5 501 -20 -トメガネ 🪝️ 5 5 501 -20 -ヒッカケ 🪝️ 5 5 501 -20 -フック 🪝️ 5 5 501 -20 -キカイコウ 🧰️ 5 5 501 -20 -コウグバコ 🧰️ 5 5 501 -20 -セイビシ 🧰️ 5 5 501 -20 -ツールボックス 🧰️ 5 5 501 -20 -メカニック 🧰️ 5 5 501 -20 -テイテツ 🧲️ 5 5 501 -20 -マグネット 🧲️ 5 5 501 -20 -ユージガタジシャク 🧲️ 5 5 501 -20 -コウショサギョウ 🪜️ 5 5 501 -20 -ステッパー 🪜️ 5 5 501 -20 -ノボル 🪜️ 5 5 501 -20 -ハシゴ 🪜️ 5 5 501 -20 -カガク ⚗️️ 5 5 501 -20 -ジッケン ⚗️️ 5 5 501 -20 -ジョウリュウキ ⚗️️ 5 5 501 -20 -カガク 🧪️ 5 5 501 -20 -シケンカン 🧪️ 5 5 501 -20 -ジッケン 🧪️ 5 5 501 -20 -ラボ 🧪️ 5 5 501 -20 -セイブツガク 🧫️ 5 5 501 -20 -バイヨウ 🧫️ 5 5 501 -20 -バクテリア 🧫️ 5 5 501 -20 -ペトリサラ 🧫️ 5 5 501 -20 -dna 🧬️ 5 5 501 -20 -イデンシ 🧬️ 5 5 501 -20 -シンカ 🧬️ 5 5 501 -20 -セイブツガク 🧬️ 5 5 501 -20 -ディーエヌエー 🧬️ 5 5 501 -20 -カガク 🔬️ 5 5 501 -20 -ケンキュウ 🔬️ 5 5 501 -20 -ケンビキョウ 🔬️ 5 5 501 -20 -サイエンス 🔬️ 5 5 501 -20 -カガク 🔭️ 5 5 501 -20 -カンソク 🔭️ 5 5 501 -20 -サイエンス 🔭️ 5 5 501 -20 -テンタイカンソク 🔭️ 5 5 501 -20 -ボウエンキョウ 🔭️ 5 5 501 -20 -アンテナ 📡️ 5 5 501 -20 -エイセイアンテナ 📡️ 5 5 501 -20 -デンパ 📡️ 5 5 501 -20 -パラボラ 📡️ 5 5 501 -20 -パラボラアンテナ 📡️ 5 5 501 -20 -イシャ 💉️ 5 5 501 -20 -クスリ 💉️ 5 5 501 -20 -チュウシャ 💉️ 5 5 501 -20 -チュウシャキ 💉️ 5 5 501 -20 -ビョウキ 💉️ 5 5 501 -20 -イシャ 🩸️ 5 5 501 -20 -ケガ 🩸️ 5 5 501 -20 -ケツエキ 🩸️ 5 5 501 -20 -ケンケツ 🩸️ 5 5 501 -20 -セイリ 🩸️ 5 5 501 -20 -イシャ 💊️ 5 5 501 -20 -カゼグスリ 💊️ 5 5 501 -20 -カプセル 💊️ 5 5 501 -20 -クスリ 💊️ 5 5 501 -20 -ビョウキ 💊️ 5 5 501 -20 -キズ 🩹️ 5 5 501 -20 -クスリ 🩹️ 5 5 501 -20 -ケガ 🩹️ 5 5 501 -20 -テアテ 🩹️ 5 5 501 -20 -バンソウコウ 🩹️ 5 5 501 -20 -イシャ 🩺️ 5 5 501 -20 -シンゾウ 🩺️ 5 5 501 -20 -チョウシンキ 🩺️ 5 5 501 -20 -ビョウキ 🩺️ 5 5 501 -20 -ト 🚪️ 5 5 501 -20 -トビラ 🚪️ 5 5 501 -20 -ドア 🚪️ 5 5 501 -20 -アクセシビリティ 🛗️ 5 5 501 -20 -エレベーター 🛗️ 5 5 501 -20 -ショウコウキ 🛗️ 5 5 501 -20 -バリアフリー 🛗️ 5 5 501 -20 -リフト 🛗️ 5 5 501 -20 -カガミ 🪞️ 5 5 501 -20 -スガタミ 🪞️ 5 5 501 -20 -ハンシャ 🪞️ 5 5 501 -20 -ミダシナミ 🪞️ 5 5 501 -20 -ミラー 🪞️ 5 5 501 -20 -アケル 🪟️ 5 5 501 -20 -カンキ 🪟️ 5 5 501 -20 -ナガメ 🪟️ 5 5 501 -20 -フレーム 🪟️ 5 5 501 -20 -マド 🪟️ 5 5 501 -20 -スイミン 🛏️️ 5 5 501 -20 -ネル 🛏️️ 5 5 501 -20 -ベッド 🛏️️ 5 5 501 -20 -ホテル 🛏️️ 5 5 501 -20 -ソファ 🛋️️ 5 5 501 -20 -ソファトランプ 🛋️️ 5 5 501 -20 -ホテル 🛋️️ 5 5 501 -20 -ランプ 🛋️️ 5 5 501 -20 -イス 🪑️ 5 5 501 -20 -カグ 🪑️ 5 5 501 -20 -コシカケ 🪑️ 5 5 501 -20 -シート 🪑️ 5 5 501 -20 -チェア 🪑️ 5 5 501 -20 -オテアライ 🚽️ 5 5 501 -20 -トイレ 🚽️ 5 5 501 -20 -ベンキ 🚽️ 5 5 501 -20 -ベンザ 🚽️ 5 5 501 -20 -キュウインカップ 🪠️ 5 5 501 -20 -スッポン 🪠️ 5 5 501 -20 -ツウスイカップ 🪠️ 5 5 501 -20 -トイレ 🪠️ 5 5 501 -20 -プランジャー 🪠️ 5 5 501 -20 -ラバーカップ 🪠️ 5 5 501 -20 -シャワー 🚿️ 5 5 501 -20 -フロ 🚿️ 5 5 501 -20 -バスタブ 🛁️ 5 5 501 -20 -フロ 🛁️ 5 5 501 -20 -ヨクソウ 🛁️ 5 5 501 -20 -オビキヨセル 🪤️ 5 5 501 -20 -シカケ 🪤️ 5 5 501 -20 -ネズミトリ 🪤️ 5 5 501 -20 -バネ 🪤️ 5 5 501 -20 -マウストラップ 🪤️ 5 5 501 -20 -ワナ 🪤️ 5 5 501 -20 -カミソリ 🪒️ 5 5 501 -20 -ハ 🪒️ 5 5 501 -20 -ヒゲソリ 🪒️ 5 5 501 -20 -レーザー 🪒️ 5 5 501 -20 -ケショウスイ 🧴️ 5 5 501 -20 -シャンプー 🧴️ 5 5 501 -20 -ヒヤケドメ 🧴️ 5 5 501 -20 -ローション 🧴️ 5 5 501 -20 -アンゼンピン 🧷️ 5 5 501 -20 -トメピン 🧷️ 5 5 501 -20 -ソウジ 🧹️ 5 5 501 -20 -ハク 🧹️ 5 5 501 -20 -ホウキ 🧹️ 5 5 501 -20 -マジョ 🧹️ 5 5 501 -20 -カゴ 🧺️ 5 5 501 -20 -シュウカク 🧺️ 5 5 501 -20 -センタク 🧺️ 5 5 501 -20 -ピクニック 🧺️ 5 5 501 -20 -キッチンペーパー 🧻️ 5 5 501 -20 -トイレットペーパー 🧻️ 5 5 501 -20 -ペーパータオル 🧻️ 5 5 501 -20 -オケ 🪣️ 5 5 501 -20 -バケツ 🪣️ 5 5 501 -20 -ポリバケツ 🪣️ 5 5 501 -20 -ヨウキ 🪣️ 5 5 501 -20 -セッケン 🧼️ 5 5 501 -20 -ソープ 🧼️ 5 5 501 -20 -フロ 🧼️ 5 5 501 -20 -エイセイ 🪥️ 5 5 501 -20 -オテイレ 🪥️ 5 5 501 -20 -センメンジョ 🪥️ 5 5 501 -20 -ハブラシ 🪥️ 5 5 501 -20 -ハミガキ 🪥️ 5 5 501 -20 -ムシバ 🪥️ 5 5 501 -20 -カイメン 🧽️ 5 5 501 -20 -キュウシュウ 🧽️ 5 5 501 -20 -スポンジ 🧽️ 5 5 501 -20 -ソウジ 🧽️ 5 5 501 -20 -ショウカ 🧯️ 5 5 501 -20 -ショウカキ 🧯️ 5 5 501 -20 -ショウカキグ 🧯️ 5 5 501 -20 -ショウボウ 🧯️ 5 5 501 -20 -カイモノ 🛒️ 5 5 501 -20 -カート 🛒️ 5 5 501 -20 -ショッピング 🛒️ 5 5 501 -20 -ショッピングカート 🛒️ 5 5 501 -20 -スーパー 🛒️ 5 5 501 -20 -キツエン 🚬️ 5 5 501 -20 -タバコ 🚬️ 5 5 501 -20 -カンオケ ⚰️️ 5 5 501 -20 -シ ⚰️️ 5 5 501 -20 -ヒツギ ⚰️️ 5 5 501 -20 -マイソウ ⚰️️ 5 5 501 -20 -オハカ 🪦️ 5 5 501 -20 -セキヒ 🪦️ 5 5 501 -20 -ハカバ 🪦️ 5 5 501 -20 -ボセキ 🪦️ 5 5 501 -20 -ボチ 🪦️ 5 5 501 -20 -マイソウ 🪦️ 5 5 501 -20 -イハイ ⚱️️ 5 5 501 -20 -コツツボ ⚱️️ 5 5 501 -20 -シ ⚱️️ 5 5 501 -20 -ソウギ ⚱️️ 5 5 501 -20 -マイソウ ⚱️️ 5 5 501 -20 -オマモリ 🧿️ 5 5 501 -20 -ジャシ 🧿️ 5 5 501 -20 -ナザール 🧿️ 5 5 501 -20 -ナザールボンジュウ 🧿️ 5 5 501 -20 -ナザール・ボンジュウ 🧿️ 5 5 501 -20 -ビーズ 🧿️ 5 5 501 -20 -マヨケ 🧿️ 5 5 501 -20 -カオ 🗿️ 5 5 501 -20 -ゾウ 🗿️ 5 5 501 -20 -モアイ 🗿️ 5 5 501 -20 -モヤイ 🗿️ 5 5 501 -20 -イギ 🪧️ 5 5 501 -20 -カンバン 🪧️ 5 5 501 -20 -コウギ 🪧️ 5 5 501 -20 -シュチョウ 🪧️ 5 5 501 -20 -デモ 🪧️ 5 5 501 -20 -プラカード 🪧️ 5 5 501 -20 -atm 🏧️ 5 5 501 -20 -エーティーエム 🏧️ 5 5 501 -20 -ギンコウ 🏧️ 5 5 501 -20 -ゲンキンジドウアズケバライキ 🏧️ 5 5 501 -20 -クズカゴ 🚮️ 5 5 501 -20 -ゴミステ 🚮️ 5 5 501 -20 -ゴミバコ 🚮️ 5 5 501 -20 -インリョウスイ 🚰️ 5 5 501 -20 -スイドウ 🚰️ 5 5 501 -20 -ノミミズ 🚰️ 5 5 501 -20 -ミズ 🚰️ 5 5 501 -20 -クルマイス ♿️ 5 5 501 -20 -バリアフリー ♿️ 5 5 501 -20 -バリヤフリー ♿️ 5 5 501 -20 -wc 🚹️ 5 5 501 -20 -オテアライ 🚹️ 5 5 501 -20 -ケショウシツ 🚹️ 5 5 501 -20 -ダンシ 🚹️ 5 5 501 -20 -ダンシトイレ 🚹️ 5 5 501 -20 -ダンセイ 🚹️ 5 5 501 -20 -トイレ 🚹️ 5 5 501 -20 -wc 🚺️ 5 5 501 -20 -オテアライ 🚺️ 5 5 501 -20 -ケショウシツ 🚺️ 5 5 501 -20 -ジョシ 🚺️ 5 5 501 -20 -ジョシトイレ 🚺️ 5 5 501 -20 -ジョセイ 🚺️ 5 5 501 -20 -トイレ 🚺️ 5 5 501 -20 -wc 🚻️ 5 5 501 -20 -オテアライ 🚻️ 5 5 501 -20 -ケショウシツ 🚻️ 5 5 501 -20 -ダブリューシー 🚻️ 5 5 501 -20 -トイレ 🚻️ 5 5 501 -20 -アカチャン 🚼️ 5 5 501 -20 -アカンボウ 🚼️ 5 5 501 -20 -ベビー 🚼️ 5 5 501 -20 -ベビーシート 🚼️ 5 5 501 -20 -wc 🚾️ 5 5 501 -20 -オテアライ 🚾️ 5 5 501 -20 -ケショウシツ 🚾️ 5 5 501 -20 -ダブリューシー 🚾️ 5 5 501 -20 -トイレ 🚾️ 5 5 501 -20 -シュツニュウコク 🛂️ 5 5 501 -20 -シュツニュウコクシンサ 🛂️ 5 5 501 -20 -ニュウシュッコク 🛂️ 5 5 501 -20 -パスポートコントロール 🛂️ 5 5 501 -20 -ゼイカン 🛃️ 5 5 501 -20 -ツウカン 🛃️ 5 5 501 -20 -スーツケース 🛄️ 5 5 501 -20 -テニモツ 🛄️ 5 5 501 -20 -テニモツウケトリ 🛄️ 5 5 501 -20 -バゲッジクレーム 🛄️ 5 5 501 -20 -スーツケース 🛅️ 5 5 501 -20 -テニモツ 🛅️ 5 5 501 -20 -テニモツアズカリ 🛅️ 5 5 501 -20 -ロッカー 🛅️ 5 5 501 -20 -キケン ⚠️️ 5 5 501 -20 -ケイコク ⚠️️ 5 5 501 -20 -チュウイ ⚠️️ 5 5 501 -20 -ヒョウシキ ⚠️️ 5 5 501 -20 -コドモ 🚸️ 5 5 501 -20 -ジドウオウダン 🚸️ 5 5 501 -20 -ツウガクロ 🚸️ 5 5 501 -20 -ヒョウシキ 🚸️ 5 5 501 -20 -キセイ ⛔️ 5 5 501 -20 -シャリョウシンニュウキンシ ⛔️ 5 5 501 -20 -タチイリキンシ ⛔️ 5 5 501 -20 -ドウロ ⛔️ 5 5 501 -20 -ヒョウシキ ⛔️ 5 5 501 -20 -キセイ 🚫️ 5 5 501 -20 -キンシ 🚫️ 5 5 501 -20 -シャリョウツウコウドメ 🚫️ 5 5 501 -20 -ドウロ 🚫️ 5 5 501 -20 -ヒョウシキ 🚫️ 5 5 501 -20 -キセイ 🚳️ 5 5 501 -20 -キンシ 🚳️ 5 5 501 -20 -ジテンシャ 🚳️ 5 5 501 -20 -ジテンシャキンシ 🚳️ 5 5 501 -20 -ドウロ 🚳️ 5 5 501 -20 -ヒョウシキ 🚳️ 5 5 501 -20 -キンエン 🚭️ 5 5 501 -20 -キンシ 🚭️ 5 5 501 -20 -タバコ 🚭️ 5 5 501 -20 -キンシ 🚯️ 5 5 501 -20 -ゴミ 🚯️ 5 5 501 -20 -ゴミステキンシ 🚯️ 5 5 501 -20 -ポイステキンシ 🚯️ 5 5 501 -20 -インヨウフカ 🚱️ 5 5 501 -20 -キンシ 🚱️ 5 5 501 -20 -ノメナイミズ 🚱️ 5 5 501 -20 -キセイ 🚷️ 5 5 501 -20 -キンシ 🚷️ 5 5 501 -20 -ドウロ 🚷️ 5 5 501 -20 -ヒョウシキ 🚷️ 5 5 501 -20 -ホコウシャタチイリキンシ 🚷️ 5 5 501 -20 -ケイタイキンシ 📵️ 5 5 501 -20 -ケイタイデンワキンシ 📵️ 5 5 501 -20 -スマホキンシ 📵️ 5 5 501 -20 -スマートフォンキンシ 📵️ 5 5 501 -20 -18キン 🔞️ 5 5 501 -20 -18サイミマンキンシ 🔞️ 5 5 501 -20 -キンシ 🔞️ 5 5 501 -20 -ミセイネン 🔞️ 5 5 501 -20 -キケン ☢️️ 5 5 501 -20 -ホウシャセイ ☢️️ 5 5 501 -20 -ホウシャセン ☢️️ 5 5 501 -20 -ホウシャノウ ☢️️ 5 5 501 -20 -キケン ☣️️ 5 5 501 -20 -バイオハザード ☣️️ 5 5 501 -20 -ユウガイブッシツ ☣️️ 5 5 501 -20 -ウエ ⬆️️ 5 5 501 -20 -ウエヤジルシ ⬆️️ 5 5 501 -20 -キタ ⬆️️ 5 5 501 -20 -ヤジルシ ⬆️️ 5 5 501 -20 -ホクトウ ↗️️ 5 5 501 -20 -ミギウエ ↗️️ 5 5 501 -20 -ミギウエヤジルシ ↗️️ 5 5 501 -20 -ヤジルシ ↗️️ 5 5 501 -20 -ヒガシ ➡️️ 5 5 501 -20 -ミギ ➡️️ 5 5 501 -20 -ミギヤジルシ ➡️️ 5 5 501 -20 -ヤジルシ ➡️️ 5 5 501 -20 -ナントウ ↘️️ 5 5 501 -20 -ミギシタ ↘️️ 5 5 501 -20 -ミギシタヤジルシ ↘️️ 5 5 501 -20 -ヤジルシ ↘️️ 5 5 501 -20 -シタ ⬇️️ 5 5 501 -20 -シタヤジルシ ⬇️️ 5 5 501 -20 -ミナミ ⬇️️ 5 5 501 -20 -ヤジルシ ⬇️️ 5 5 501 -20 -ナンセイ ↙️️ 5 5 501 -20 -ヒダリシタ ↙️️ 5 5 501 -20 -ヒダリシタヤジルシ ↙️️ 5 5 501 -20 -ヤジルシ ↙️️ 5 5 501 -20 -ニシ ⬅️️ 5 5 501 -20 -ヒダリ ⬅️️ 5 5 501 -20 -ヒダリヤジルシ ⬅️️ 5 5 501 -20 -ヤジルシ ⬅️️ 5 5 501 -20 -ヒダリウエ ↖️️ 5 5 501 -20 -ヒダリウエヤジルシ ↖️️ 5 5 501 -20 -ホクセイ ↖️️ 5 5 501 -20 -ヤジルシ ↖️️ 5 5 501 -20 -ジョウゲ ↕️️ 5 5 501 -20 -ジョウゲヤジルシ ↕️️ 5 5 501 -20 -ヤジルシ ↕️️ 5 5 501 -20 -ヤジルシジョウゲ ↕️️ 5 5 501 -20 -サユウ ↔️️ 5 5 501 -20 -サユウヤジルシ ↔️️ 5 5 501 -20 -ヤジルシ ↔️️ 5 5 501 -20 -ヤジルシサユウ ↔️️ 5 5 501 -20 -カーブ ↩️️ 5 5 501 -20 -キョクセン ↩️️ 5 5 501 -20 -ヒダリ ↩️️ 5 5 501 -20 -ミギカーブヤジルシ ↩️️ 5 5 501 -20 -ヤジルシ ↩️️ 5 5 501 -20 -カーブ ↪️️ 5 5 501 -20 -キョクセン ↪️️ 5 5 501 -20 -ヒダリカーブヤジルシ ↪️️ 5 5 501 -20 -ミギ ↪️️ 5 5 501 -20 -ヤジルシ ↪️️ 5 5 501 -20 -ウエ ⤴️️ 5 5 501 -20 -ウエカーブヤジルシ ⤴️️ 5 5 501 -20 -ウエヤジルシ ⤴️️ 5 5 501 -20 -カーブ ⤴️️ 5 5 501 -20 -キョクセン ⤴️️ 5 5 501 -20 -グッド ⤴️️ 5 5 501 -20 -ヤジルシ ⤴️️ 5 5 501 -20 -カーブ ⤵️️ 5 5 501 -20 -キョクセン ⤵️️ 5 5 501 -20 -シタ ⤵️️ 5 5 501 -20 -シタカーブヤジルシ ⤵️️ 5 5 501 -20 -シタヤジルシ ⤵️️ 5 5 501 -20 -バッド ⤵️️ 5 5 501 -20 -ヤジルシ ⤵️️ 5 5 501 -20 -クリカエシ 🔃️ 5 5 501 -20 -サイヨミコミ 🔃️ 5 5 501 -20 -トケイマワリ 🔃️ 5 5 501 -20 -ミギマワリ 🔃️ 5 5 501 -20 -ミギマワリタテヤジルシ 🔃️ 5 5 501 -20 -ヤジルシ 🔃️ 5 5 501 -20 -リロード 🔃️ 5 5 501 -20 -クリカエシ 🔄️ 5 5 501 -20 -ハントケイマワリ 🔄️ 5 5 501 -20 -ヒダリマワリヤジルシ 🔄️ 5 5 501 -20 -ヤジルシ 🔄️ 5 5 501 -20 -リピート 🔄️ 5 5 501 -20 -back 🔙️ 5 5 501 -20 -backヤジルシ 🔙️ 5 5 501 -20 -バック 🔙️ 5 5 501 -20 -バックヤジルシ 🔙️ 5 5 501 -20 -モドル 🔙️ 5 5 501 -20 -ヤジルシ 🔙️ 5 5 501 -20 -end 🔚️ 5 5 501 -20 -endヤジルシ 🔚️ 5 5 501 -20 -エンド 🔚️ 5 5 501 -20 -エンドヤジルシ 🔚️ 5 5 501 -20 -オワリ 🔚️ 5 5 501 -20 -ヤジルシ 🔚️ 5 5 501 -20 -on 🔛️ 5 5 501 -20 -onヤジルシ 🔛️ 5 5 501 -20 -オン 🔛️ 5 5 501 -20 -オンヤジルシ 🔛️ 5 5 501 -20 -ヤジルシ 🔛️ 5 5 501 -20 -soon 🔜️ 5 5 501 -20 -soonヤジルシ 🔜️ 5 5 501 -20 -スグ 🔜️ 5 5 501 -20 -スーン 🔜️ 5 5 501 -20 -スーンヤジルシ 🔜️ 5 5 501 -20 -ヤジルシ 🔜️ 5 5 501 -20 -top 🔝️ 5 5 501 -20 -topヤジルシ 🔝️ 5 5 501 -20 -ウエ 🔝️ 5 5 501 -20 -トップ 🔝️ 5 5 501 -20 -トップヤジルシ 🔝️ 5 5 501 -20 -ヤジルシ 🔝️ 5 5 501 -20 -イノリ 🛐️ 5 5 501 -20 -シュウキョウ 🛐️ 5 5 501 -20 -レイハイジョ 🛐️ 5 5 501 -20 -ゲンシ ⚛️️ 5 5 501 -20 -ゲンシノシンボル ⚛️️ 5 5 501 -20 -ゲンソ ⚛️️ 5 5 501 -20 -ブンシ ⚛️️ 5 5 501 -20 -ムシンロン ⚛️️ 5 5 501 -20 -オーム 🕉️️ 5 5 501 -20 -シュウキョウ 🕉️️ 5 5 501 -20 -ヒンドゥーキョウ 🕉️️ 5 5 501 -20 -シュウキョウ ✡️️ 5 5 501 -20 -ダビデノホシ ✡️️ 5 5 501 -20 -ホシ ✡️️ 5 5 501 -20 -ユダヤキョウ ✡️️ 5 5 501 -20 -シュウキョウ ☸️️ 5 5 501 -20 -テンボウリン ☸️️ 5 5 501 -20 -テンポウリン ☸️️ 5 5 501 -20 -ブッキョウ ☸️️ 5 5 501 -20 -ホウリン ☸️️ 5 5 501 -20 -インヤン ☯️️ 5 5 501 -20 -インヨウ ☯️️ 5 5 501 -20 -シュウキョウ ☯️️ 5 5 501 -20 -ドウキョウ ☯️️ 5 5 501 -20 -キリストキョウ ✝️️ 5 5 501 -20 -クロス ✝️️ 5 5 501 -20 -シュウキョウ ✝️️ 5 5 501 -20 -ジュウジカ ✝️️ 5 5 501 -20 -キリストキョウ ☦️️ 5 5 501 -20 -シュウキョウ ☦️️ 5 5 501 -20 -ジュウジカ ☦️️ 5 5 501 -20 -ハッタンジュウジカ ☦️️ 5 5 501 -20 -イスラムキョウ ☪️️ 5 5 501 -20 -シュウキョウ ☪️️ 5 5 501 -20 -ホシ ☪️️ 5 5 501 -20 -ホシトミカヅキ ☪️️ 5 5 501 -20 -ミカヅキ ☪️️ 5 5 501 -20 -ピースマーク ☮️️ 5 5 501 -20 -ヘイワ ☮️️ 5 5 501 -20 -シュウキョウ 🕎️ 5 5 501 -20 -ショクダイ 🕎️ 5 5 501 -20 -メノラー 🕎️ 5 5 501 -20 -メノーラー 🕎️ 5 5 501 -20 -ユダヤキョウ 🕎️ 5 5 501 -20 -ウラナイ 🔯️ 5 5 501 -20 -ダビデ 🔯️ 5 5 501 -20 -ホシ 🔯️ 5 5 501 -20 -ロクボウセイ 🔯️ 5 5 501 -20 -ロッカクセイ 🔯️ 5 5 501 -20 -オヒツジザ ♈️ 5 5 501 -20 -セイザ ♈️ 5 5 501 -20 -オウシザ ♉️ 5 5 501 -20 -セイザ ♉️ 5 5 501 -20 -セイザ ♊️ 5 5 501 -20 -フタゴザ ♊️ 5 5 501 -20 -カニザ ♋️ 5 5 501 -20 -セイザ ♋️ 5 5 501 -20 -シシザ ♌️ 5 5 501 -20 -セイザ ♌️ 5 5 501 -20 -オトメザ ♍️ 5 5 501 -20 -セイザ ♍️ 5 5 501 -20 -セイザ ♎️ 5 5 501 -20 -テンビンザ ♎️ 5 5 501 -20 -サソリザ ♏️ 5 5 501 -20 -セイザ ♏️ 5 5 501 -20 -イテザ ♐️ 5 5 501 -20 -セイザ ♐️ 5 5 501 -20 -セイザ ♑️ 5 5 501 -20 -ヤギザ ♑️ 5 5 501 -20 -セイザ ♒️ 5 5 501 -20 -ミズガメザ ♒️ 5 5 501 -20 -ウオザ ♓️ 5 5 501 -20 -セイザ ♓️ 5 5 501 -20 -セイザ ⛎️ 5 5 501 -20 -ヘビツカイザ ⛎️ 5 5 501 -20 -ヘビツカザ ⛎️ 5 5 501 -20 -コウサ 🔀️ 5 5 501 -20 -シャッフル 🔀️ 5 5 501 -20 -シャッフルボタン 🔀️ 5 5 501 -20 -ボタン 🔀️ 5 5 501 -20 -ヤジルシ 🔀️ 5 5 501 -20 -クリカエシ 🔁️ 5 5 501 -20 -ゼンキョク 🔁️ 5 5 501 -20 -ボタン 🔁️ 5 5 501 -20 -ヤジルシ 🔁️ 5 5 501 -20 -リピートボタン 🔁️ 5 5 501 -20 -1キョクリピートボタン 🔂️ 5 5 501 -20 -クリカエシ 🔂️ 5 5 501 -20 -ボタン 🔂️ 5 5 501 -20 -ヤジルシ 🔂️ 5 5 501 -20 -リピート 🔂️ 5 5 501 -20 -サイセイ ▶️️ 5 5 501 -20 -サイセイボタン ▶️️ 5 5 501 -20 -ツギヘ ▶️️ 5 5 501 -20 -プレイ ▶️️ 5 5 501 -20 -ボタン ▶️️ 5 5 501 -20 -ミギムキサンカク ▶️️ 5 5 501 -20 -ヤジルシ ▶️️ 5 5 501 -20 -ハヤオクリ ⏩️ 5 5 501 -20 -ハヤオクリボタン ⏩️ 5 5 501 -20 -ボタン ⏩️ 5 5 501 -20 -ミギ ⏩️ 5 5 501 -20 -ヤジルシ ⏩️ 5 5 501 -20 -ツギノキョクボタン ⏭️️ 5 5 501 -20 -ツギノシーン ⏭️️ 5 5 501 -20 -ツギノトラック ⏭️️ 5 5 501 -20 -ボタン ⏭️️ 5 5 501 -20 -ヤジルシ ⏭️️ 5 5 501 -20 -イチジテイシ ⏯️️ 5 5 501 -20 -イチジテイシボタン ⏯️️ 5 5 501 -20 -サイセイ ⏯️️ 5 5 501 -20 -サイセイボタン ⏯️️ 5 5 501 -20 -ボタン ⏯️️ 5 5 501 -20 -ヤジルシ ⏯️️ 5 5 501 -20 -ギャクサイセイ ◀️️ 5 5 501 -20 -ギャクサイセイボタン ◀️️ 5 5 501 -20 -ヒダリムキサンカク ◀️️ 5 5 501 -20 -ボタン ◀️️ 5 5 501 -20 -マキモドシ ◀️️ 5 5 501 -20 -モドル ◀️️ 5 5 501 -20 -ヤジルシ ◀️️ 5 5 501 -20 -ハヤモドシ ⏪️ 5 5 501 -20 -ハヤモドシボタン ⏪️ 5 5 501 -20 -ヒダリ ⏪️ 5 5 501 -20 -マキモドシ ⏪️ 5 5 501 -20 -モドル ⏪️ 5 5 501 -20 -ヤジルシ ⏪️ 5 5 501 -20 -ボタン ⏮️️ 5 5 501 -20 -マエノキョクボタン ⏮️️ 5 5 501 -20 -マエノシーン ⏮️️ 5 5 501 -20 -マエノトラック ⏮️️ 5 5 501 -20 -ヤジルシ ⏮️️ 5 5 501 -20 -ウエ 🔼️ 5 5 501 -20 -ウエボタン 🔼️ 5 5 501 -20 -ウエムキサンカク 🔼️ 5 5 501 -20 -サンカク 🔼️ 5 5 501 -20 -ボタン 🔼️ 5 5 501 -20 -ヤジルシ 🔼️ 5 5 501 -20 -ウエ ⏫️ 5 5 501 -20 -コウソクジョウボタン ⏫️ 5 5 501 -20 -ニジュウ ⏫️ 5 5 501 -20 -ボタン ⏫️ 5 5 501 -20 -ヤジルシ ⏫️ 5 5 501 -20 -サンカク 🔽️ 5 5 501 -20 -シタ 🔽️ 5 5 501 -20 -シタボタン 🔽️ 5 5 501 -20 -シタムキサンカク 🔽️ 5 5 501 -20 -ボタン 🔽️ 5 5 501 -20 -ヤジルシ 🔽️ 5 5 501 -20 -コウソクシタボタン ⏬️ 5 5 501 -20 -シタ ⏬️ 5 5 501 -20 -ニジュウ ⏬️ 5 5 501 -20 -ボタン ⏬️ 5 5 501 -20 -ヤジルシ ⏬️ 5 5 501 -20 -イチジテイシ ⏸️️ 5 5 501 -20 -イチジテイシボタン ⏸️️ 5 5 501 -20 -ボタン ⏸️️ 5 5 501 -20 -ポーズ ⏸️️ 5 5 501 -20 -ストップ ⏹️️ 5 5 501 -20 -テイシ ⏹️️ 5 5 501 -20 -テイシボタン ⏹️️ 5 5 501 -20 -ボタン ⏹️️ 5 5 501 -20 -ボタン ⏺️️ 5 5 501 -20 -ロクオン ⏺️️ 5 5 501 -20 -ロクオンロクガボタン ⏺️️ 5 5 501 -20 -ロクガ ⏺️️ 5 5 501 -20 -イジェクト ⏏️️ 5 5 501 -20 -トリダシ ⏏️️ 5 5 501 -20 -トリダシボタン ⏏️️ 5 5 501 -20 -ボタン ⏏️️ 5 5 501 -20 -エイガ 🎦️ 5 5 501 -20 -エイガカン 🎦️ 5 5 501 -20 -カメラ 🎦️ 5 5 501 -20 -ドウガ 🎦️ 5 5 501 -20 -アカルサ 🔅️ 5 5 501 -20 -キド 🔅️ 5 5 501 -20 -クライ 🔅️ 5 5 501 -20 -テイキド 🔅️ 5 5 501 -20 -ブライトネス 🔅️ 5 5 501 -20 -アカルイ 🔆️ 5 5 501 -20 -アカルサ 🔆️ 5 5 501 -20 -キド 🔆️ 5 5 501 -20 -コウキド 🔆️ 5 5 501 -20 -ブライトネス 🔆️ 5 5 501 -20 -アンテナマーク 📶️ 5 5 501 -20 -ケイタイ 📶️ 5 5 501 -20 -ケイタイデンワ 📶️ 5 5 501 -20 -ケンナイ 📶️ 5 5 501 -20 -スマホ 📶️ 5 5 501 -20 -スマートフォン 📶️ 5 5 501 -20 -デンパ 📶️ 5 5 501 -20 -ケイタイ 📳️ 5 5 501 -20 -ケイタイデンワ 📳️ 5 5 501 -20 -スマホ 📳️ 5 5 501 -20 -スマートフォン 📳️ 5 5 501 -20 -マナーモード 📳️ 5 5 501 -20 -ケイタイ 📴️ 5 5 501 -20 -ケイタイデンワ 📴️ 5 5 501 -20 -ケイタイデンワデンゲンオフ 📴️ 5 5 501 -20 -スマホ 📴️ 5 5 501 -20 -スマートフォン 📴️ 5 5 501 -20 -デンゲンオフ 📴️ 5 5 501 -20 -オンナ ♀️️ 5 5 501 -20 -シンボル ♀️️ 5 5 501 -20 -ジョセイ ♀️️ 5 5 501 -20 -ジョセイノマーク ♀️️ 5 5 501 -20 -オトコ ♂️️ 5 5 501 -20 -シンボル ♂️️ 5 5 501 -20 -ダンセイ ♂️️ 5 5 501 -20 -ダンセイノマーク ♂️️ 5 5 501 -20 -lgbt ⚧️️ 5 5 501 -20 -シンボル ⚧️️ 5 5 501 -20 -セイベツ ⚧️️ 5 5 501 -20 -ティージー ⚧️️ 5 5 501 -20 -トランスジェンダーノマーク ⚧️️ 5 5 501 -20 -カケザン ✖️️ 5 5 501 -20 -カケル ✖️️ 5 5 501 -20 -キゴウ ✖️️ 5 5 501 -20 -キャンセル ✖️️ 5 5 501 -20 -ジョウザン ✖️️ 5 5 501 -20 -バツ ✖️️ 5 5 501 -20 -ペケ ✖️️ 5 5 501 -20 -カサン ➕️ 5 5 501 -20 -キゴウ ➕️ 5 5 501 -20 -タシザン ➕️ 5 5 501 -20 -タス ➕️ 5 5 501 -20 -プラス ➕️ 5 5 501 -20 -キゴウ ➖️ 5 5 501 -20 -ゲンザン ➖️ 5 5 501 -20 -ヒキザン ➖️ 5 5 501 -20 -ヒク ➖️ 5 5 501 -20 -マイナス ➖️ 5 5 501 -20 -ー ➖️ 5 5 501 -20 -キゴウ ➗️ 5 5 501 -20 -ジョサン ➗️ 5 5 501 -20 -ワリザン ➗️ 5 5 501 -20 -ワル ➗️ 5 5 501 -20 -・ ➗️ 5 5 501 -20 -エイエン ♾️️ 5 5 501 -20 -バンブツ ♾️️ 5 5 501 -20 -ムゲン ♾️️ 5 5 501 -20 -ムゲンダイ ♾️️ 5 5 501 -20 -エクスクラメーションマーク ‼️️ 5 5 501 -20 -キゴウ ‼️️ 5 5 501 -20 -ニジュウカンタンフ ‼️️ 5 5 501 -20 -ビックリマーク ‼️️ 5 5 501 -20 -ヤクモノ ‼️️ 5 5 501 -20 -カンタンフギモンフ ⁉️️ 5 5 501 -20 -キゴウ ⁉️️ 5 5 501 -20 -ハテナマーク ⁉️️ 5 5 501 -20 -ビックリマーク ⁉️️ 5 5 501 -20 -アカイギモンフ ❓️ 5 5 501 -20 -キゴウ ❓️ 5 5 501 -20 -ギモンフ ❓️ 5 5 501 -20 -クエスチョン ❓️ 5 5 501 -20 -クエスチョンマーク ❓️ 5 5 501 -20 -ハテナ ❓️ 5 5 501 -20 -ハテナマーク ❓️ 5 5 501 -20 -ヤクモノ ❓️ 5 5 501 -20 -キゴウ ❔️ 5 5 501 -20 -クエスチョン ❔️ 5 5 501 -20 -クエスチョンマーク ❔️ 5 5 501 -20 -シロイギモンフ ❔️ 5 5 501 -20 -ハテナ ❔️ 5 5 501 -20 -ハテナマーク ❔️ 5 5 501 -20 -ヤクモノ ❔️ 5 5 501 -20 -エクスクラメーションマーク ❕️ 5 5 501 -20 -キゴウ ❕️ 5 5 501 -20 -シロイカンタンフ ❕️ 5 5 501 -20 -ビックリ ❕️ 5 5 501 -20 -ビックリマーク ❕️ 5 5 501 -20 -ヤクモノ ❕️ 5 5 501 -20 -アカイカンタンフ ❗️ 5 5 501 -20 -エクスクラメーションマーク ❗️ 5 5 501 -20 -カンタンフ ❗️ 5 5 501 -20 -キゴウ ❗️ 5 5 501 -20 -ビックリマーク ❗️ 5 5 501 -20 -ヤクモノ ❗️ 5 5 501 -20 -キゴウ 〰️️ 5 5 501 -20 -チョウオンキゴウ 〰️️ 5 5 501 -20 -ナミセン 〰️️ 5 5 501 -20 -ハセン 〰️️ 5 5 501 -20 -ヤクモノ 〰️️ 5 5 501 -20 -ー 〰️️ 5 5 501 -20 -エン 💱️ 5 5 501 -20 -オカネ 💱️ 5 5 501 -20 -ガイカリョウガエ 💱️ 5 5 501 -20 -ツウカ 💱️ 5 5 501 -20 -ドル 💱️ 5 5 501 -20 -リョウガエ 💱️ 5 5 501 -20 -オカネ 💲️ 5 5 501 -20 -ツウカ 💲️ 5 5 501 -20 -ドル 💲️ 5 5 501 -20 -ドルキゴウ 💲️ 5 5 501 -20 -アスクレピオスノツエ ⚕️️ 5 5 501 -20 -イシャ ⚕️️ 5 5 501 -20 -イリョウ ⚕️️ 5 5 501 -20 -イリョウノシンボル ⚕️️ 5 5 501 -20 -チリョウ ⚕️️ 5 5 501 -20 -サイセイ ♻️️ 5 5 501 -20 -サイリヨウ ♻️️ 5 5 501 -20 -ジュンカンヤジルシ ♻️️ 5 5 501 -20 -リサイクル ♻️️ 5 5 501 -20 -リサイクルマーク ♻️️ 5 5 501 -20 -エンブレム ⚜️️ 5 5 501 -20 -フランスオウケ ⚜️️ 5 5 501 -20 -フルールドリス ⚜️️ 5 5 501 -20 -モンショウ ⚜️️ 5 5 501 -20 -ユリ ⚜️️ 5 5 501 -20 -イカリ 🔱️ 5 5 501 -20 -ウミ 🔱️ 5 5 501 -20 -エンブレム 🔱️ 5 5 501 -20 -トライデント 🔱️ 5 5 501 -20 -ミツマタ 🔱️ 5 5 501 -20 -ナフダ 📛️ 5 5 501 -20 -ホイクエン 📛️ 5 5 501 -20 -ホイクショ 📛️ 5 5 501 -20 -ヨウチエン 📛️ 5 5 501 -20 -ショシンシャ 🔰️ 5 5 501 -20 -ショシンシャマーク 🔰️ 5 5 501 -20 -ハツ 🔰️ 5 5 501 -20 -ワカバマーク 🔰️ 5 5 501 -20 -エン ⭕️ 5 5 501 -20 -キゴウ ⭕️ 5 5 501 -20 -フトイマル ⭕️ 5 5 501 -20 -マル ⭕️ 5 5 501 -20 -ワ ⭕️ 5 5 501 -20 -キゴウ ✅️ 5 5 501 -20 -シロヌキノチェック ✅️ 5 5 501 -20 -チェック ✅️ 5 5 501 -20 -チェックマーク ✅️ 5 5 501 -20 -ピン ✅️ 5 5 501 -20 -キゴウ ☑️️ 5 5 501 -20 -チェック ☑️️ 5 5 501 -20 -チェックボックス ☑️️ 5 5 501 -20 -チェックマーク ☑️️ 5 5 501 -20 -キゴウ ✔️️ 5 5 501 -20 -チェック ✔️️ 5 5 501 -20 -チェックマーク ✔️️ 5 5 501 -20 -フトジノチェック ✔️️ 5 5 501 -20 -カケザン ❌️ 5 5 501 -20 -キゴウ ❌️ 5 5 501 -20 -キャンセル ❌️ 5 5 501 -20 -ジョウザン ❌️ 5 5 501 -20 -バツ ❌️ 5 5 501 -20 -ペケ ❌️ 5 5 501 -20 -カケザン ❎️ 5 5 501 -20 -キゴウ ❎️ 5 5 501 -20 -キャンセル ❎️ 5 5 501 -20 -シロヌキノバツ ❎️ 5 5 501 -20 -ジョウザン ❎️ 5 5 501 -20 -バツ ❎️ 5 5 501 -20 -ペケ ❎️ 5 5 501 -20 -キゴウ ➰️ 5 5 501 -20 -チョウオン ➰️ 5 5 501 -20 -ループ ➰️ 5 5 501 -20 -ワッカ ➰️ 5 5 501 -20 -キゴウ ➿️ 5 5 501 -20 -ダブルループ ➿️ 5 5 501 -20 -フリーダイヤル ➿️ 5 5 501 -20 -ループ ➿️ 5 5 501 -20 -ワッカ ➿️ 5 5 501 -20 -アンテン 〽️️ 5 5 501 -20 -イオリテン 〽️️ 5 5 501 -20 -ウタキゴウ 〽️️ 5 5 501 -20 -キゴウ 〽️️ 5 5 501 -20 -ヤクモノ 〽️️ 5 5 501 -20 -アスタリスク ✳️️ 5 5 501 -20 -カザリ ✳️️ 5 5 501 -20 -キゴウ ✳️️ 5 5 501 -20 -ハッカクアスタリスク ✳️️ 5 5 501 -20 -ホシ ✳️️ 5 5 501 -20 -ヤクモノ ✳️️ 5 5 501 -20 -カザリ ✴️️ 5 5 501 -20 -キゴウ ✴️️ 5 5 501 -20 -スパーク ✴️️ 5 5 501 -20 -ハッカクセイ ✴️️ 5 5 501 -20 -ホシ ✴️️ 5 5 501 -20 -ヤクモノ ✴️️ 5 5 501 -20 -アスタリスク ❇️️ 5 5 501 -20 -キゴウ ❇️️ 5 5 501 -20 -スパーク ❇️️ 5 5 501 -20 -スパークル ❇️️ 5 5 501 -20 -ヤクモノ ❇️️ 5 5 501 -20 -cマーク ©️️ 5 5 501 -20 -キゴウ ©️️ 5 5 501 -20 -コピーライト ©️️ 5 5 501 -20 -シーマーク ©️️ 5 5 501 -20 -チョサクケン ©️️ 5 5 501 -20 -チョサクケンマーク ©️️ 5 5 501 -20 -アールマーク ®️️ 5 5 501 -20 -キゴウ ®️️ 5 5 501 -20 -トウロクショウヒョウ ®️️ 5 5 501 -20 -トウロクショウヒョウマーク ®️️ 5 5 501 -20 -tmマーク ™️️ 5 5 501 -20 -キゴウ ™️️ 5 5 501 -20 -ショウヒョウ ™️️ 5 5 501 -20 -ショウヒョウマーク ™️️ 5 5 501 -20 -ティーエムマーク ™️️ 5 5 501 -20 -トレードマーク ™️️ 5 5 501 -20 -カコミスウジ #️⃣️ 5 5 501 -20 -シャープ #️⃣️ 5 5 501 -20 -シャープダイヤル #️⃣️ 5 5 501 -20 -カコミスウジ *️⃣️ 5 5 501 -20 -0 0️⃣️ 5 5 501 -20 -カコミスウジ 0️⃣️ 5 5 501 -20 -1 1️⃣️ 5 5 501 -20 -カコミスウジ 1️⃣️ 5 5 501 -20 -2 2️⃣️ 5 5 501 -20 -カコミスウジ 2️⃣️ 5 5 501 -20 -3 3️⃣️ 5 5 501 -20 -カコミスウジ 3️⃣️ 5 5 501 -20 -4 4️⃣️ 5 5 501 -20 -カコミスウジ 4️⃣️ 5 5 501 -20 -5 5️⃣️ 5 5 501 -20 -カコミスウジ 5️⃣️ 5 5 501 -20 -6 6️⃣️ 5 5 501 -20 -カコミスウジ 6️⃣️ 5 5 501 -20 -7 7️⃣️ 5 5 501 -20 -カコミスウジ 7️⃣️ 5 5 501 -20 -8 8️⃣️ 5 5 501 -20 -カコミスウジ 8️⃣️ 5 5 501 -20 -9 9️⃣️ 5 5 501 -20 -カコミスウジ 9️⃣️ 5 5 501 -20 -10 🔟️ 5 5 501 -20 -カコミスウジ 🔟️ 5 5 501 -20 -abcd 🔠️ 5 5 501 -20 -アルファベット 🔠️ 5 5 501 -20 -エイオオモジノニュウリョク 🔠️ 5 5 501 -20 -エイジ 🔠️ 5 5 501 -20 -エービーシーディ 🔠️ 5 5 501 -20 -オオモジ 🔠️ 5 5 501 -20 -ダイモンジ 🔠️ 5 5 501 -20 -ローマジ 🔠️ 5 5 501 -20 -abcd 🔡️ 5 5 501 -20 -アルファベット 🔡️ 5 5 501 -20 -エイコモジノニュウリョク 🔡️ 5 5 501 -20 -エイジ 🔡️ 5 5 501 -20 -エービーシーディー 🔡️ 5 5 501 -20 -コモジ 🔡️ 5 5 501 -20 -ローマジ 🔡️ 5 5 501 -20 -1234 🔢️ 5 5 501 -20 -スウジ 🔢️ 5 5 501 -20 -スウジノニュウリョク 🔢️ 5 5 501 -20 -ニュウリョク 🔢️ 5 5 501 -20 -キゴウ 🔣️ 5 5 501 -20 -キゴウノニュウリョク 🔣️ 5 5 501 -20 -ニュウリョク 🔣️ 5 5 501 -20 -abc 🔤️ 5 5 501 -20 -アルファベット 🔤️ 5 5 501 -20 -エイゴ 🔤️ 5 5 501 -20 -エイジ 🔤️ 5 5 501 -20 -エイジノニュウリョク 🔤️ 5 5 501 -20 -エイビーシー 🔤️ 5 5 501 -20 -エービーシー 🔤️ 5 5 501 -20 -ローマジ 🔤️ 5 5 501 -20 -a 🅰️️ 5 5 501 -20 -エイガタ 🅰️️ 5 5 501 -20 -エーガタ 🅰️️ 5 5 501 -20 -ケツエキガタ 🅰️️ 5 5 501 -20 -ケツエキガタエイガタ 🅰️️ 5 5 501 -20 -ケツエキガタエーガタ 🅰️️ 5 5 501 -20 -ab 🆎️ 5 5 501 -20 -エイビーガタ 🆎️ 5 5 501 -20 -エービーガタ 🆎️ 5 5 501 -20 -ケツエキガタ 🆎️ 5 5 501 -20 -ケツエキガタエイビーガタ 🆎️ 5 5 501 -20 -ケツエキガタエービーガタ 🆎️ 5 5 501 -20 -b 🅱️️ 5 5 501 -20 -ケツエキガタ 🅱️️ 5 5 501 -20 -ケツエキガタビーガタ 🅱️️ 5 5 501 -20 -ビーガタ 🅱️️ 5 5 501 -20 -cl 🆑️ 5 5 501 -20 -clマーク 🆑️ 5 5 501 -20 -クリア 🆑️ 5 5 501 -20 -シーエル 🆑️ 5 5 501 -20 -シーエルマーク 🆑️ 5 5 501 -20 -cool 🆒️ 5 5 501 -20 -coolマーク 🆒️ 5 5 501 -20 -クール 🆒️ 5 5 501 -20 -クールマーク 🆒️ 5 5 501 -20 -freeマーク 🆓️ 5 5 501 -20 -タダ 🆓️ 5 5 501 -20 -フリー 🆓️ 5 5 501 -20 -フリーマーク 🆓️ 5 5 501 -20 -ムリョウ 🆓️ 5 5 501 -20 -i ℹ️️ 5 5 501 -20 -iマーク ℹ️️ 5 5 501 -20 -アイ ℹ️️ 5 5 501 -20 -アイマーク ℹ️️ 5 5 501 -20 -インフォメーション ℹ️️ 5 5 501 -20 -インフォメーションシンボル ℹ️️ 5 5 501 -20 -ジョウホウ ℹ️️ 5 5 501 -20 -id 🆔️ 5 5 501 -20 -idマーク 🆔️ 5 5 501 -20 -アイディー 🆔️ 5 5 501 -20 -アイディーマーク 🆔️ 5 5 501 -20 -m Ⓜ️️ 5 5 501 -20 -エム Ⓜ️️ 5 5 501 -20 -チカテツ Ⓜ️️ 5 5 501 -20 -マル Ⓜ️️ 5 5 501 -20 -マルイエムマーク Ⓜ️️ 5 5 501 -20 -new 🆕️ 5 5 501 -20 -newマーク 🆕️ 5 5 501 -20 -アタラシイ 🆕️ 5 5 501 -20 -ニュー 🆕️ 5 5 501 -20 -ニューマーク 🆕️ 5 5 501 -20 -ng 🆖️ 5 5 501 -20 -ngマーク 🆖️ 5 5 501 -20 -エヌジー 🆖️ 5 5 501 -20 -エヌジーマーク 🆖️ 5 5 501 -20 -ボツ 🆖️ 5 5 501 -20 -o 🅾️️ 5 5 501 -20 -オーガタ 🅾️️ 5 5 501 -20 -ケツエキガタ 🅾️️ 5 5 501 -20 -ケツエキガタオーガタ 🅾️️ 5 5 501 -20 -ok 🆗️ 5 5 501 -20 -okマーク 🆗️ 5 5 501 -20 -オッケー 🆗️ 5 5 501 -20 -オーケー 🆗️ 5 5 501 -20 -オーケーマーク 🆗️ 5 5 501 -20 -p 🅿️️ 5 5 501 -20 -チュウシャ 🅿️️ 5 5 501 -20 -チュウシャジョウ 🅿️️ 5 5 501 -20 -パーキング 🅿️️ 5 5 501 -20 -ピー 🅿️️ 5 5 501 -20 -ピーマーク 🅿️️ 5 5 501 -20 -sos 🆘️ 5 5 501 -20 -sosマーク 🆘️ 5 5 501 -20 -エスオーエス 🆘️ 5 5 501 -20 -エスオーエスマーク 🆘️ 5 5 501 -20 -タスケテ 🆘️ 5 5 501 -20 -up 🆙️ 5 5 501 -20 -upマーク 🆙️ 5 5 501 -20 -アップ 🆙️ 5 5 501 -20 -アップマーク 🆙️ 5 5 501 -20 -コウシン 🆙️ 5 5 501 -20 -vs 🆚️ 5 5 501 -20 -vsマーク 🆚️ 5 5 501 -20 -バーサス 🆚️ 5 5 501 -20 -バーサスマーク 🆚️ 5 5 501 -20 -ブイエス 🆚️ 5 5 501 -20 -ブイエスマーク 🆚️ 5 5 501 -20 -ヴァーサス 🆚️ 5 5 501 -20 -ヴィエス 🆚️ 5 5 501 -20 -ココ 🈁️ 5 5 501 -20 -ココノマーク 🈁️ 5 5 501 -20 -サ 🈂️️ 5 5 501 -20 -サノマーク 🈂️️ 5 5 501 -20 -サービス 🈂️️ 5 5 501 -20 -サービスリョウ 🈂️️ 5 5 501 -20 -ゲツガク 🈷️️ 5 5 501 -20 -ツキ 🈷️️ 5 5 501 -20 -ツキギメ 🈷️️ 5 5 501 -20 -ツキマーク 🈷️️ 5 5 501 -20 -ユウ 🈶️ 5 5 501 -20 -ユウゲン 🈶️ 5 5 501 -20 -ユウマーク 🈶️ 5 5 501 -20 -ユウリョウ 🈶️ 5 5 501 -20 -シテイ 🈯️ 5 5 501 -20 -シテイセキ 🈯️ 5 5 501 -20 -ユビ 🈯️ 5 5 501 -20 -ユビマーク 🈯️ 5 5 501 -20 -オトク 🉐️ 5 5 501 -20 -トク 🉐️ 5 5 501 -20 -マルトク 🉐️ 5 5 501 -20 -ディスカウント 🈹️ 5 5 501 -20 -ワリ 🈹️ 5 5 501 -20 -ワリビキ 🈹️ 5 5 501 -20 -ワリマーク 🈹️ 5 5 501 -20 -タダ 🈚️ 5 5 501 -20 -ム 🈚️ 5 5 501 -20 -ムマーク 🈚️ 5 5 501 -20 -ムリョウ 🈚️ 5 5 501 -20 -キン 🈲️ 5 5 501 -20 -キンシ 🈲️ 5 5 501 -20 -キンマーク 🈲️ 5 5 501 -20 -ゲンキン 🈲️ 5 5 501 -20 -カ 🉑️ 5 5 501 -20 -カノウ 🉑️ 5 5 501 -20 -カマーク 🉑️ 5 5 501 -20 -キョカ 🉑️ 5 5 501 -20 -シン 🈸️ 5 5 501 -20 -シンセイ 🈸️ 5 5 501 -20 -シンマーク 🈸️ 5 5 501 -20 -モウシコミ 🈸️ 5 5 501 -20 -モウシコミマーク 🈸️ 5 5 501 -20 -ゴウ 🈴️ 5 5 501 -20 -ゴウカク 🈴️ 5 5 501 -20 -ゴウマーク 🈴️ 5 5 501 -20 -アキ 🈳️ 5 5 501 -20 -アキマーク 🈳️ 5 5 501 -20 -カラ 🈳️ 5 5 501 -20 -クウ 🈳️ 5 5 501 -20 -クウシツ 🈳️ 5 5 501 -20 -クウセキ 🈳️ 5 5 501 -20 -ソラ 🈳️ 5 5 501 -20 -ソラマーク 🈳️ 5 5 501 -20 -イワイ ㊗️️ 5 5 501 -20 -イワイマーク ㊗️️ 5 5 501 -20 -オイワイ ㊗️️ 5 5 501 -20 -オメデトウ ㊗️️ 5 5 501 -20 -シュク ㊗️️ 5 5 501 -20 -シュクマーク ㊗️️ 5 5 501 -20 -ゴクヒ ㊙️️ 5 5 501 -20 -シャガイヒ ㊙️️ 5 5 501 -20 -ヒ ㊙️️ 5 5 501 -20 -ヒミツ ㊙️️ 5 5 501 -20 -マルヒ ㊙️️ 5 5 501 -20 -エイ 🈺️ 5 5 501 -20 -エイギョウ 🈺️ 5 5 501 -20 -エイギョウチュウ 🈺️ 5 5 501 -20 -エイギョウビ 🈺️ 5 5 501 -20 -エイマーク 🈺️ 5 5 501 -20 -マン 🈵️ 5 5 501 -20 -マンイン 🈵️ 5 5 501 -20 -マンシツ 🈵️ 5 5 501 -20 -マンシャ 🈵️ 5 5 501 -20 -マンセキ 🈵️ 5 5 501 -20 -マンマーク 🈵️ 5 5 501 -20 -アカ 🔴️ 5 5 501 -20 -アカイマル 🔴️ 5 5 501 -20 -オオキイマル 🔴️ 5 5 501 -20 -オオマル 🔴️ 5 5 501 -20 -マル 🔴️ 5 5 501 -20 -マルイボタン 🔴️ 5 5 501 -20 -オレンジ 🟠️ 5 5 501 -20 -オレンジノマル 🟠️ 5 5 501 -20 -マル 🟠️ 5 5 501 -20 -マルイボタン 🟠️ 5 5 501 -20 -キイロ 🟡️ 5 5 501 -20 -キイロイマル 🟡️ 5 5 501 -20 -マル 🟡️ 5 5 501 -20 -マルイボタン 🟡️ 5 5 501 -20 -マル 🟢️ 5 5 501 -20 -マルイボタン 🟢️ 5 5 501 -20 -ミドリ 🟢️ 5 5 501 -20 -ミドリノマル 🟢️ 5 5 501 -20 -アオ 🔵️ 5 5 501 -20 -アオイマル 🔵️ 5 5 501 -20 -オオキイマル 🔵️ 5 5 501 -20 -オオマル 🔵️ 5 5 501 -20 -マル 🔵️ 5 5 501 -20 -マルイボタン 🔵️ 5 5 501 -20 -マル 🟣️ 5 5 501 -20 -マルイボタン 🟣️ 5 5 501 -20 -ムラサキ 🟣️ 5 5 501 -20 -ムラサキノマル 🟣️ 5 5 501 -20 -チャイロ 🟤️ 5 5 501 -20 -チャイロノマル 🟤️ 5 5 501 -20 -マル 🟤️ 5 5 501 -20 -マルイボタン 🟤️ 5 5 501 -20 -クロ ⚫️ 5 5 501 -20 -クロイマル ⚫️ 5 5 501 -20 -マル ⚫️ 5 5 501 -20 -マルイボタン ⚫️ 5 5 501 -20 -シロ ⚪️ 5 5 501 -20 -シロイマル ⚪️ 5 5 501 -20 -マル ⚪️ 5 5 501 -20 -マルイボタン ⚪️ 5 5 501 -20 -アカ 🟥️ 5 5 501 -20 -アカイシカク 🟥️ 5 5 501 -20 -シカク 🟥️ 5 5 501 -20 -セイホウケイ 🟥️ 5 5 501 -20 -オレンジ 🟧️ 5 5 501 -20 -オレンジノシカク 🟧️ 5 5 501 -20 -シカク 🟧️ 5 5 501 -20 -セイホウケイ 🟧️ 5 5 501 -20 -キイロ 🟨️ 5 5 501 -20 -キイロイシカク 🟨️ 5 5 501 -20 -シカク 🟨️ 5 5 501 -20 -セイホウケイ 🟨️ 5 5 501 -20 -シカク 🟩️ 5 5 501 -20 -セイホウケイ 🟩️ 5 5 501 -20 -ミドリ 🟩️ 5 5 501 -20 -ミドリノシカク 🟩️ 5 5 501 -20 -アオ 🟦️ 5 5 501 -20 -アオイシカク 🟦️ 5 5 501 -20 -シカク 🟦️ 5 5 501 -20 -セイホウケイ 🟦️ 5 5 501 -20 -シカク 🟪️ 5 5 501 -20 -セイホウケイ 🟪️ 5 5 501 -20 -ムラサキ 🟪️ 5 5 501 -20 -ムラサキノシカク 🟪️ 5 5 501 -20 -シカク 🟫️ 5 5 501 -20 -セイホウケイ 🟫️ 5 5 501 -20 -チャイロ 🟫️ 5 5 501 -20 -チャイロイシカク 🟫️ 5 5 501 -20 -クロ ⬛️ 5 5 501 -20 -クロシカクトクダイ ⬛️ 5 5 501 -20 -シカク ⬛️ 5 5 501 -20 -セイホウケイ ⬛️ 5 5 501 -20 -シカク ⬜️ 5 5 501 -20 -シロ ⬜️ 5 5 501 -20 -シロシカクトクダイ ⬜️ 5 5 501 -20 -セイホウケイ ⬜️ 5 5 501 -20 -クロ ◼️️ 5 5 501 -20 -クロシカクダイ ◼️️ 5 5 501 -20 -シカク ◼️️ 5 5 501 -20 -セイホウケイ ◼️️ 5 5 501 -20 -シカク ◻️️ 5 5 501 -20 -シロ ◻️️ 5 5 501 -20 -シロシカクダイ ◻️️ 5 5 501 -20 -セイホウケイ ◻️️ 5 5 501 -20 -クロ ◾️ 5 5 501 -20 -クロシカクチュウ ◾️ 5 5 501 -20 -シカク ◾️ 5 5 501 -20 -セイホウケイ ◾️ 5 5 501 -20 -シカク ◽️ 5 5 501 -20 -シロ ◽️ 5 5 501 -20 -シロシカクチュウ ◽️ 5 5 501 -20 -セイホウケイ ◽️ 5 5 501 -20 -クロ ▪️️ 5 5 501 -20 -クロシカクショウ ▪️️ 5 5 501 -20 -シカク ▪️️ 5 5 501 -20 -セイホウケイ ▪️️ 5 5 501 -20 -シカク ▫️️ 5 5 501 -20 -シロ ▫️️ 5 5 501 -20 -シロシカクショウ ▫️️ 5 5 501 -20 -セイホウケイ ▫️️ 5 5 501 -20 -オオキイオレンジノヒシガタ 🔶️ 5 5 501 -20 -オオキイヒシガタ 🔶️ 5 5 501 -20 -オレンジ 🔶️ 5 5 501 -20 -シカク 🔶️ 5 5 501 -20 -ダイア 🔶️ 5 5 501 -20 -ダイヤ 🔶️ 5 5 501 -20 -ヒシガタ 🔶️ 5 5 501 -20 -アオ 🔷️ 5 5 501 -20 -オオキイアオノヒシガタ 🔷️ 5 5 501 -20 -オオキイヒシガタ 🔷️ 5 5 501 -20 -シカク 🔷️ 5 5 501 -20 -ダイア 🔷️ 5 5 501 -20 -ダイヤ 🔷️ 5 5 501 -20 -ヒシガタ 🔷️ 5 5 501 -20 -オレンジ 🔸️ 5 5 501 -20 -シカク 🔸️ 5 5 501 -20 -ダイア 🔸️ 5 5 501 -20 -ダイヤ 🔸️ 5 5 501 -20 -チイサイオレンジノヒシガタ 🔸️ 5 5 501 -20 -チイサイヒシガタ 🔸️ 5 5 501 -20 -ヒシガタ 🔸️ 5 5 501 -20 -アオ 🔹️ 5 5 501 -20 -シカク 🔹️ 5 5 501 -20 -ダイア 🔹️ 5 5 501 -20 -ダイヤ 🔹️ 5 5 501 -20 -チイサイアオノヒシガタ 🔹️ 5 5 501 -20 -チイサイヒシガタ 🔹️ 5 5 501 -20 -ヒシガタ 🔹️ 5 5 501 -20 -アカ 🔺️ 5 5 501 -20 -アカイウエサンカク 🔺️ 5 5 501 -20 -ウエ 🔺️ 5 5 501 -20 -ウエムキサンカク 🔺️ 5 5 501 -20 -サンカク 🔺️ 5 5 501 -20 -アカ 🔻️ 5 5 501 -20 -アカイシタサンカク 🔻️ 5 5 501 -20 -サンカク 🔻️ 5 5 501 -20 -シタ 🔻️ 5 5 501 -20 -シタムキサンカク 🔻️ 5 5 501 -20 -カワイイ 💠️ 5 5 501 -20 -ダイア 💠️ 5 5 501 -20 -ダイヤ 💠️ 5 5 501 -20 -ドットツキヒシガタ 💠️ 5 5 501 -20 -ヒシガタ 💠️ 5 5 501 -20 -ニジュウマル 🔘️ 5 5 501 -20 -ボタン 🔘️ 5 5 501 -20 -ラジオボタン 🔘️ 5 5 501 -20 -シカク 🔳️ 5 5 501 -20 -シカクボタン 🔳️ 5 5 501 -20 -シロワクシカク 🔳️ 5 5 501 -20 -セイホウケイ 🔳️ 5 5 501 -20 -ボタン 🔳️ 5 5 501 -20 -クロワクシカク 🔲️ 5 5 501 -20 -シカク 🔲️ 5 5 501 -20 -シカクボタン 🔲️ 5 5 501 -20 -セイホウケイ 🔲️ 5 5 501 -20 -ボタン 🔲️ 5 5 501 -20 -スポーツ 🏁️ 5 5 501 -20 -チェッカー 🏁️ 5 5 501 -20 -チェッカーフラグ 🏁️ 5 5 501 -20 -チェッカーフラッグ 🏁️ 5 5 501 -20 -ハタ 🏁️ 5 5 501 -20 -フラグ 🏁️ 5 5 501 -20 -フラッグ 🏁️ 5 5 501 -20 -レース 🏁️ 5 5 501 -20 -ゴルフ 🚩️ 5 5 501 -20 -サンカクノハタ 🚩️ 5 5 501 -20 -スポーツ 🚩️ 5 5 501 -20 -ハタ 🚩️ 5 5 501 -20 -フラグ 🚩️ 5 5 501 -20 -フラッグ 🚩️ 5 5 501 -20 -シュクジツ 🎌️ 5 5 501 -20 -シュクジツノハタ 🎌️ 5 5 501 -20 -ハタ 🎌️ 5 5 501 -20 -ヒノマル 🎌️ 5 5 501 -20 -フラグ 🎌️ 5 5 501 -20 -フラッグ 🎌️ 5 5 501 -20 -クロ 🏴️ 5 5 501 -20 -クロハタ 🏴️ 5 5 501 -20 -コッキ 🏴️ 5 5 501 -20 -ハタ 🏴️ 5 5 501 -20 -フラグ 🏴️ 5 5 501 -20 -フラッグ 🏴️ 5 5 501 -20 -シラハタ 🏳️️ 5 5 501 -20 -シロ 🏳️️ 5 5 501 -20 -シロハタ 🏳️️ 5 5 501 -20 -ハタ 🏳️️ 5 5 501 -20 -ハッキ 🏳️️ 5 5 501 -20 -フラグ 🏳️️ 5 5 501 -20 -フラッグ 🏳️️ 5 5 501 -20 -lgbt 🏳️‍🌈️ 5 5 501 -20 -ニジイロノハタ 🏳️‍🌈️ 5 5 501 -20 -ハタ 🏳️‍🌈️ 5 5 501 -20 -フラグ 🏳️‍🌈️ 5 5 501 -20 -フラッグ 🏳️‍🌈️ 5 5 501 -20 -レインボー 🏳️‍🌈️ 5 5 501 -20 -レインボーフラッグ 🏳️‍🌈️ 5 5 501 -20 -lgbt 🏳️‍⚧️️ 5 5 501 -20 -ティージー 🏳️‍⚧️️ 5 5 501 -20 -トランスジェンダー 🏳️‍⚧️️ 5 5 501 -20 -トランスジェンダーフラッグ 🏳️‍⚧️️ 5 5 501 -20 -ハタ 🏳️‍⚧️️ 5 5 501 -20 -フラグ 🏳️‍⚧️️ 5 5 501 -20 -フラッグ 🏳️‍⚧️️ 5 5 501 -20 -カイゾク 🏴‍☠️️ 5 5 501 -20 -カイゾクキ 🏴‍☠️️ 5 5 501 -20 -ジョリーロジャー 🏴‍☠️️ 5 5 501 -20 -タカラモノ 🏴‍☠️️ 5 5 501 -20 -ホウモツ 🏴‍☠️️ 5 5 501 -20 -リャクダツ 🏴‍☠️️ 5 5 501 -20 -アセンショントウ 🇦🇨️ 5 5 501 -20 -コッキ 🇦🇨️ 5 5 501 -20 -ハタ 🇦🇨️ 5 5 501 -20 -フラグ 🇦🇨️ 5 5 501 -20 -フラッグ 🇦🇨️ 5 5 501 -20 -アンドラ 🇦🇩️ 5 5 501 -20 -コッキ 🇦🇩️ 5 5 501 -20 -ハタ 🇦🇩️ 5 5 501 -20 -フラグ 🇦🇩️ 5 5 501 -20 -フラッグ 🇦🇩️ 5 5 501 -20 -アラブ 🇦🇪️ 5 5 501 -20 -アラブシュチョウコクレンポウ 🇦🇪️ 5 5 501 -20 -コッキ 🇦🇪️ 5 5 501 -20 -ハタ 🇦🇪️ 5 5 501 -20 -フラグ 🇦🇪️ 5 5 501 -20 -フラッグ 🇦🇪️ 5 5 501 -20 -アフガニスタン 🇦🇫️ 5 5 501 -20 -コッキ 🇦🇫️ 5 5 501 -20 -ハタ 🇦🇫️ 5 5 501 -20 -フラグ 🇦🇫️ 5 5 501 -20 -フラッグ 🇦🇫️ 5 5 501 -20 -アンティグアバーブーダ 🇦🇬️ 5 5 501 -20 -アンティグア・バーブーダ 🇦🇬️ 5 5 501 -20 -コッキ 🇦🇬️ 5 5 501 -20 -ハタ 🇦🇬️ 5 5 501 -20 -フラグ 🇦🇬️ 5 5 501 -20 -フラッグ 🇦🇬️ 5 5 501 -20 -アンギラ 🇦🇮️ 5 5 501 -20 -コッキ 🇦🇮️ 5 5 501 -20 -ハタ 🇦🇮️ 5 5 501 -20 -フラグ 🇦🇮️ 5 5 501 -20 -フラッグ 🇦🇮️ 5 5 501 -20 -アルバニア 🇦🇱️ 5 5 501 -20 -コッキ 🇦🇱️ 5 5 501 -20 -ハタ 🇦🇱️ 5 5 501 -20 -フラグ 🇦🇱️ 5 5 501 -20 -フラッグ 🇦🇱️ 5 5 501 -20 -アルメニア 🇦🇲️ 5 5 501 -20 -コッキ 🇦🇲️ 5 5 501 -20 -ハタ 🇦🇲️ 5 5 501 -20 -フラグ 🇦🇲️ 5 5 501 -20 -フラッグ 🇦🇲️ 5 5 501 -20 -アンゴラ 🇦🇴️ 5 5 501 -20 -コッキ 🇦🇴️ 5 5 501 -20 -ハタ 🇦🇴️ 5 5 501 -20 -フラグ 🇦🇴️ 5 5 501 -20 -フラッグ 🇦🇴️ 5 5 501 -20 -コッキ 🇦🇶️ 5 5 501 -20 -ナンキョク 🇦🇶️ 5 5 501 -20 -ナンキョクタイリク 🇦🇶️ 5 5 501 -20 -ハタ 🇦🇶️ 5 5 501 -20 -フラグ 🇦🇶️ 5 5 501 -20 -フラッグ 🇦🇶️ 5 5 501 -20 -アルゼンチン 🇦🇷️ 5 5 501 -20 -コッキ 🇦🇷️ 5 5 501 -20 -ハタ 🇦🇷️ 5 5 501 -20 -フラグ 🇦🇷️ 5 5 501 -20 -フラッグ 🇦🇷️ 5 5 501 -20 -アメリカリョウサモア 🇦🇸️ 5 5 501 -20 -コッキ 🇦🇸️ 5 5 501 -20 -ハタ 🇦🇸️ 5 5 501 -20 -フラグ 🇦🇸️ 5 5 501 -20 -フラッグ 🇦🇸️ 5 5 501 -20 -ベイリョウサモア 🇦🇸️ 5 5 501 -20 -オーストリア 🇦🇹️ 5 5 501 -20 -コッキ 🇦🇹️ 5 5 501 -20 -ハタ 🇦🇹️ 5 5 501 -20 -フラグ 🇦🇹️ 5 5 501 -20 -フラッグ 🇦🇹️ 5 5 501 -20 -オーストラリア 🇦🇺️ 5 5 501 -20 -コッキ 🇦🇺️ 5 5 501 -20 -ハタ 🇦🇺️ 5 5 501 -20 -フラグ 🇦🇺️ 5 5 501 -20 -フラッグ 🇦🇺️ 5 5 501 -20 -アルバ 🇦🇼️ 5 5 501 -20 -コッキ 🇦🇼️ 5 5 501 -20 -ハタ 🇦🇼️ 5 5 501 -20 -フラグ 🇦🇼️ 5 5 501 -20 -フラッグ 🇦🇼️ 5 5 501 -20 -オーランドショトウ 🇦🇽️ 5 5 501 -20 -コッキ 🇦🇽️ 5 5 501 -20 -ハタ 🇦🇽️ 5 5 501 -20 -フラグ 🇦🇽️ 5 5 501 -20 -フラッグ 🇦🇽️ 5 5 501 -20 -アゼルバイジャン 🇦🇿️ 5 5 501 -20 -コッキ 🇦🇿️ 5 5 501 -20 -ハタ 🇦🇿️ 5 5 501 -20 -フラグ 🇦🇿️ 5 5 501 -20 -フラッグ 🇦🇿️ 5 5 501 -20 -コッキ 🇧🇦️ 5 5 501 -20 -ハタ 🇧🇦️ 5 5 501 -20 -フラグ 🇧🇦️ 5 5 501 -20 -フラッグ 🇧🇦️ 5 5 501 -20 -ボスニアヘルツェゴビナ 🇧🇦️ 5 5 501 -20 -ボスニア・ヘルツェゴビナ 🇧🇦️ 5 5 501 -20 -コッキ 🇧🇧️ 5 5 501 -20 -ハタ 🇧🇧️ 5 5 501 -20 -バルバドス 🇧🇧️ 5 5 501 -20 -フラグ 🇧🇧️ 5 5 501 -20 -フラッグ 🇧🇧️ 5 5 501 -20 -コッキ 🇧🇩️ 5 5 501 -20 -ハタ 🇧🇩️ 5 5 501 -20 -バングラデシュ 🇧🇩️ 5 5 501 -20 -フラグ 🇧🇩️ 5 5 501 -20 -フラッグ 🇧🇩️ 5 5 501 -20 -コッキ 🇧🇪️ 5 5 501 -20 -ハタ 🇧🇪️ 5 5 501 -20 -フラグ 🇧🇪️ 5 5 501 -20 -フラッグ 🇧🇪️ 5 5 501 -20 -ベルギー 🇧🇪️ 5 5 501 -20 -コッキ 🇧🇫️ 5 5 501 -20 -ハタ 🇧🇫️ 5 5 501 -20 -フラグ 🇧🇫️ 5 5 501 -20 -フラッグ 🇧🇫️ 5 5 501 -20 -ブルキナファソ 🇧🇫️ 5 5 501 -20 -コッキ 🇧🇬️ 5 5 501 -20 -ハタ 🇧🇬️ 5 5 501 -20 -フラグ 🇧🇬️ 5 5 501 -20 -フラッグ 🇧🇬️ 5 5 501 -20 -ブルガリア 🇧🇬️ 5 5 501 -20 -コッキ 🇧🇭️ 5 5 501 -20 -ハタ 🇧🇭️ 5 5 501 -20 -バーレーン 🇧🇭️ 5 5 501 -20 -フラグ 🇧🇭️ 5 5 501 -20 -フラッグ 🇧🇭️ 5 5 501 -20 -コッキ 🇧🇮️ 5 5 501 -20 -ハタ 🇧🇮️ 5 5 501 -20 -フラグ 🇧🇮️ 5 5 501 -20 -フラッグ 🇧🇮️ 5 5 501 -20 -ブルンジ 🇧🇮️ 5 5 501 -20 -コッキ 🇧🇯️ 5 5 501 -20 -ハタ 🇧🇯️ 5 5 501 -20 -フラグ 🇧🇯️ 5 5 501 -20 -フラッグ 🇧🇯️ 5 5 501 -20 -ベナン 🇧🇯️ 5 5 501 -20 -コッキ 🇧🇱️ 5 5 501 -20 -サンバルテルミー 🇧🇱️ 5 5 501 -20 -サン・バルテルミー 🇧🇱️ 5 5 501 -20 -ハタ 🇧🇱️ 5 5 501 -20 -フラグ 🇧🇱️ 5 5 501 -20 -フラッグ 🇧🇱️ 5 5 501 -20 -コッキ 🇧🇲️ 5 5 501 -20 -ハタ 🇧🇲️ 5 5 501 -20 -バミューダ 🇧🇲️ 5 5 501 -20 -フラグ 🇧🇲️ 5 5 501 -20 -フラッグ 🇧🇲️ 5 5 501 -20 -コッキ 🇧🇳️ 5 5 501 -20 -ハタ 🇧🇳️ 5 5 501 -20 -フラグ 🇧🇳️ 5 5 501 -20 -フラッグ 🇧🇳️ 5 5 501 -20 -ブルネイ 🇧🇳️ 5 5 501 -20 -コッキ 🇧🇴️ 5 5 501 -20 -ハタ 🇧🇴️ 5 5 501 -20 -フラグ 🇧🇴️ 5 5 501 -20 -フラッグ 🇧🇴️ 5 5 501 -20 -ボリビア 🇧🇴️ 5 5 501 -20 -オランダリョウカリブ 🇧🇶️ 5 5 501 -20 -コッキ 🇧🇶️ 5 5 501 -20 -ハタ 🇧🇶️ 5 5 501 -20 -フラグ 🇧🇶️ 5 5 501 -20 -フラッグ 🇧🇶️ 5 5 501 -20 -コッキ 🇧🇷️ 5 5 501 -20 -ハタ 🇧🇷️ 5 5 501 -20 -フラグ 🇧🇷️ 5 5 501 -20 -フラッグ 🇧🇷️ 5 5 501 -20 -ブラジル 🇧🇷️ 5 5 501 -20 -コッキ 🇧🇸️ 5 5 501 -20 -ハタ 🇧🇸️ 5 5 501 -20 -バハマ 🇧🇸️ 5 5 501 -20 -フラグ 🇧🇸️ 5 5 501 -20 -フラッグ 🇧🇸️ 5 5 501 -20 -コッキ 🇧🇹️ 5 5 501 -20 -ハタ 🇧🇹️ 5 5 501 -20 -フラグ 🇧🇹️ 5 5 501 -20 -フラッグ 🇧🇹️ 5 5 501 -20 -ブータン 🇧🇹️ 5 5 501 -20 -コッキ 🇧🇻️ 5 5 501 -20 -ハタ 🇧🇻️ 5 5 501 -20 -フラグ 🇧🇻️ 5 5 501 -20 -フラッグ 🇧🇻️ 5 5 501 -20 -ブーベトウ 🇧🇻️ 5 5 501 -20 -コッキ 🇧🇼️ 5 5 501 -20 -ハタ 🇧🇼️ 5 5 501 -20 -フラグ 🇧🇼️ 5 5 501 -20 -フラッグ 🇧🇼️ 5 5 501 -20 -ボツワナ 🇧🇼️ 5 5 501 -20 -コッキ 🇧🇾️ 5 5 501 -20 -ハタ 🇧🇾️ 5 5 501 -20 -フラグ 🇧🇾️ 5 5 501 -20 -フラッグ 🇧🇾️ 5 5 501 -20 -ベラルーシ 🇧🇾️ 5 5 501 -20 -コッキ 🇧🇿️ 5 5 501 -20 -ハタ 🇧🇿️ 5 5 501 -20 -フラグ 🇧🇿️ 5 5 501 -20 -フラッグ 🇧🇿️ 5 5 501 -20 -ベリーズ 🇧🇿️ 5 5 501 -20 -カナダ 🇨🇦️ 5 5 501 -20 -コッキ 🇨🇦️ 5 5 501 -20 -ハタ 🇨🇦️ 5 5 501 -20 -フラグ 🇨🇦️ 5 5 501 -20 -フラッグ 🇨🇦️ 5 5 501 -20 -キーリングショトウ 🇨🇨️ 5 5 501 -20 -ココスショトウ 🇨🇨️ 5 5 501 -20 -コッキ 🇨🇨️ 5 5 501 -20 -ハタ 🇨🇨️ 5 5 501 -20 -フラグ 🇨🇨️ 5 5 501 -20 -フラッグ 🇨🇨️ 5 5 501 -20 -キンシャサ 🇨🇩️ 5 5 501 -20 -コッキ 🇨🇩️ 5 5 501 -20 -コンゴミンシュキョウワコク 🇨🇩️ 5 5 501 -20 -ハタ 🇨🇩️ 5 5 501 -20 -フラグ 🇨🇩️ 5 5 501 -20 -フラッグ 🇨🇩️ 5 5 501 -20 -コッキ 🇨🇫️ 5 5 501 -20 -チュウオウアフリカキョウワコク 🇨🇫️ 5 5 501 -20 -ハタ 🇨🇫️ 5 5 501 -20 -フラグ 🇨🇫️ 5 5 501 -20 -フラッグ 🇨🇫️ 5 5 501 -20 -コッキ 🇨🇬️ 5 5 501 -20 -コンゴキョウワコク 🇨🇬️ 5 5 501 -20 -ハタ 🇨🇬️ 5 5 501 -20 -フラグ 🇨🇬️ 5 5 501 -20 -フラッグ 🇨🇬️ 5 5 501 -20 -ブラザビル 🇨🇬️ 5 5 501 -20 -コッキ 🇨🇭️ 5 5 501 -20 -スイス 🇨🇭️ 5 5 501 -20 -ハタ 🇨🇭️ 5 5 501 -20 -フラグ 🇨🇭️ 5 5 501 -20 -フラッグ 🇨🇭️ 5 5 501 -20 -コッキ 🇨🇮️ 5 5 501 -20 -コートジボワール 🇨🇮️ 5 5 501 -20 -ハタ 🇨🇮️ 5 5 501 -20 -フラグ 🇨🇮️ 5 5 501 -20 -フラッグ 🇨🇮️ 5 5 501 -20 -クックショトウ 🇨🇰️ 5 5 501 -20 -コッキ 🇨🇰️ 5 5 501 -20 -ハタ 🇨🇰️ 5 5 501 -20 -フラグ 🇨🇰️ 5 5 501 -20 -フラッグ 🇨🇰️ 5 5 501 -20 -コッキ 🇨🇱️ 5 5 501 -20 -チリ 🇨🇱️ 5 5 501 -20 -ハタ 🇨🇱️ 5 5 501 -20 -フラグ 🇨🇱️ 5 5 501 -20 -フラッグ 🇨🇱️ 5 5 501 -20 -カメルーン 🇨🇲️ 5 5 501 -20 -コッキ 🇨🇲️ 5 5 501 -20 -ハタ 🇨🇲️ 5 5 501 -20 -フラグ 🇨🇲️ 5 5 501 -20 -フラッグ 🇨🇲️ 5 5 501 -20 -コッキ 🇨🇳️ 5 5 501 -20 -チュウゴク 🇨🇳️ 5 5 501 -20 -ハタ 🇨🇳️ 5 5 501 -20 -フラグ 🇨🇳️ 5 5 501 -20 -フラッグ 🇨🇳️ 5 5 501 -20 -コッキ 🇨🇴️ 5 5 501 -20 -コロンビア 🇨🇴️ 5 5 501 -20 -ハタ 🇨🇴️ 5 5 501 -20 -フラグ 🇨🇴️ 5 5 501 -20 -フラッグ 🇨🇴️ 5 5 501 -20 -クリッパートントウ 🇨🇵️ 5 5 501 -20 -コッキ 🇨🇵️ 5 5 501 -20 -ハタ 🇨🇵️ 5 5 501 -20 -フラグ 🇨🇵️ 5 5 501 -20 -フラッグ 🇨🇵️ 5 5 501 -20 -コスタリカ 🇨🇷️ 5 5 501 -20 -コッキ 🇨🇷️ 5 5 501 -20 -ハタ 🇨🇷️ 5 5 501 -20 -フラグ 🇨🇷️ 5 5 501 -20 -フラッグ 🇨🇷️ 5 5 501 -20 -キューバ 🇨🇺️ 5 5 501 -20 -コッキ 🇨🇺️ 5 5 501 -20 -ハタ 🇨🇺️ 5 5 501 -20 -フラグ 🇨🇺️ 5 5 501 -20 -フラッグ 🇨🇺️ 5 5 501 -20 -カーボベルデ 🇨🇻️ 5 5 501 -20 -コッキ 🇨🇻️ 5 5 501 -20 -ハタ 🇨🇻️ 5 5 501 -20 -フラグ 🇨🇻️ 5 5 501 -20 -フラッグ 🇨🇻️ 5 5 501 -20 -キュラソー 🇨🇼️ 5 5 501 -20 -キュラソートウ 🇨🇼️ 5 5 501 -20 -コッキ 🇨🇼️ 5 5 501 -20 -ハタ 🇨🇼️ 5 5 501 -20 -フラグ 🇨🇼️ 5 5 501 -20 -フラッグ 🇨🇼️ 5 5 501 -20 -クリスマストウ 🇨🇽️ 5 5 501 -20 -コッキ 🇨🇽️ 5 5 501 -20 -ハタ 🇨🇽️ 5 5 501 -20 -フラグ 🇨🇽️ 5 5 501 -20 -フラッグ 🇨🇽️ 5 5 501 -20 -キプロス 🇨🇾️ 5 5 501 -20 -コッキ 🇨🇾️ 5 5 501 -20 -ハタ 🇨🇾️ 5 5 501 -20 -フラグ 🇨🇾️ 5 5 501 -20 -フラッグ 🇨🇾️ 5 5 501 -20 -コッキ 🇨🇿️ 5 5 501 -20 -チェコ 🇨🇿️ 5 5 501 -20 -ハタ 🇨🇿️ 5 5 501 -20 -フラグ 🇨🇿️ 5 5 501 -20 -フラッグ 🇨🇿️ 5 5 501 -20 -コッキ 🇩🇪️ 5 5 501 -20 -ドイツ 🇩🇪️ 5 5 501 -20 -ハタ 🇩🇪️ 5 5 501 -20 -フラグ 🇩🇪️ 5 5 501 -20 -フラッグ 🇩🇪️ 5 5 501 -20 -コッキ 🇩🇬️ 5 5 501 -20 -ディエゴガルシアトウ 🇩🇬️ 5 5 501 -20 -ハタ 🇩🇬️ 5 5 501 -20 -フラグ 🇩🇬️ 5 5 501 -20 -フラッグ 🇩🇬️ 5 5 501 -20 -コッキ 🇩🇯️ 5 5 501 -20 -ジブチ 🇩🇯️ 5 5 501 -20 -ハタ 🇩🇯️ 5 5 501 -20 -フラグ 🇩🇯️ 5 5 501 -20 -フラッグ 🇩🇯️ 5 5 501 -20 -コッキ 🇩🇰️ 5 5 501 -20 -デンマーク 🇩🇰️ 5 5 501 -20 -ハタ 🇩🇰️ 5 5 501 -20 -フラグ 🇩🇰️ 5 5 501 -20 -フラッグ 🇩🇰️ 5 5 501 -20 -コッキ 🇩🇲️ 5 5 501 -20 -ドミニカコク 🇩🇲️ 5 5 501 -20 -ハタ 🇩🇲️ 5 5 501 -20 -フラグ 🇩🇲️ 5 5 501 -20 -フラッグ 🇩🇲️ 5 5 501 -20 -コッキ 🇩🇴️ 5 5 501 -20 -ドミニカキョウワコク 🇩🇴️ 5 5 501 -20 -ハタ 🇩🇴️ 5 5 501 -20 -フラグ 🇩🇴️ 5 5 501 -20 -フラッグ 🇩🇴️ 5 5 501 -20 -アルジェリア 🇩🇿️ 5 5 501 -20 -コッキ 🇩🇿️ 5 5 501 -20 -ハタ 🇩🇿️ 5 5 501 -20 -フラグ 🇩🇿️ 5 5 501 -20 -フラッグ 🇩🇿️ 5 5 501 -20 -コッキ 🇪🇦️ 5 5 501 -20 -セウタトメリリャ 🇪🇦️ 5 5 501 -20 -セウタ・メリリャ 🇪🇦️ 5 5 501 -20 -ハタ 🇪🇦️ 5 5 501 -20 -フラグ 🇪🇦️ 5 5 501 -20 -フラッグ 🇪🇦️ 5 5 501 -20 -エクアドル 🇪🇨️ 5 5 501 -20 -コッキ 🇪🇨️ 5 5 501 -20 -ハタ 🇪🇨️ 5 5 501 -20 -フラグ 🇪🇨️ 5 5 501 -20 -フラッグ 🇪🇨️ 5 5 501 -20 -エストニア 🇪🇪️ 5 5 501 -20 -コッキ 🇪🇪️ 5 5 501 -20 -ハタ 🇪🇪️ 5 5 501 -20 -フラグ 🇪🇪️ 5 5 501 -20 -フラッグ 🇪🇪️ 5 5 501 -20 -エジプト 🇪🇬️ 5 5 501 -20 -コッキ 🇪🇬️ 5 5 501 -20 -ハタ 🇪🇬️ 5 5 501 -20 -フラグ 🇪🇬️ 5 5 501 -20 -フラッグ 🇪🇬️ 5 5 501 -20 -コッキ 🇪🇭️ 5 5 501 -20 -ニシサハラ 🇪🇭️ 5 5 501 -20 -ハタ 🇪🇭️ 5 5 501 -20 -フラグ 🇪🇭️ 5 5 501 -20 -フラッグ 🇪🇭️ 5 5 501 -20 -エリトリア 🇪🇷️ 5 5 501 -20 -コッキ 🇪🇷️ 5 5 501 -20 -ハタ 🇪🇷️ 5 5 501 -20 -フラグ 🇪🇷️ 5 5 501 -20 -フラッグ 🇪🇷️ 5 5 501 -20 -コッキ 🇪🇸️ 5 5 501 -20 -スペイン 🇪🇸️ 5 5 501 -20 -ハタ 🇪🇸️ 5 5 501 -20 -フラグ 🇪🇸️ 5 5 501 -20 -フラッグ 🇪🇸️ 5 5 501 -20 -エチオピア 🇪🇹️ 5 5 501 -20 -コッキ 🇪🇹️ 5 5 501 -20 -ハタ 🇪🇹️ 5 5 501 -20 -フラグ 🇪🇹️ 5 5 501 -20 -フラッグ 🇪🇹️ 5 5 501 -20 -eu 🇪🇺️ 5 5 501 -20 -イーユー 🇪🇺️ 5 5 501 -20 -オウシュウレンゴウ 🇪🇺️ 5 5 501 -20 -コッキ 🇪🇺️ 5 5 501 -20 -ハタ 🇪🇺️ 5 5 501 -20 -フラグ 🇪🇺️ 5 5 501 -20 -フラッグ 🇪🇺️ 5 5 501 -20 -コッキ 🇫🇮️ 5 5 501 -20 -ハタ 🇫🇮️ 5 5 501 -20 -フィンランド 🇫🇮️ 5 5 501 -20 -フラグ 🇫🇮️ 5 5 501 -20 -フラッグ 🇫🇮️ 5 5 501 -20 -コッキ 🇫🇯️ 5 5 501 -20 -ハタ 🇫🇯️ 5 5 501 -20 -フィジー 🇫🇯️ 5 5 501 -20 -フラグ 🇫🇯️ 5 5 501 -20 -フラッグ 🇫🇯️ 5 5 501 -20 -コッキ 🇫🇰️ 5 5 501 -20 -ハタ 🇫🇰️ 5 5 501 -20 -フォークランドショトウ 🇫🇰️ 5 5 501 -20 -フラグ 🇫🇰️ 5 5 501 -20 -フラッグ 🇫🇰️ 5 5 501 -20 -コッキ 🇫🇲️ 5 5 501 -20 -ハタ 🇫🇲️ 5 5 501 -20 -フラグ 🇫🇲️ 5 5 501 -20 -フラッグ 🇫🇲️ 5 5 501 -20 -ミクロネシア 🇫🇲️ 5 5 501 -20 -ミクロネシアレンポウ 🇫🇲️ 5 5 501 -20 -コッキ 🇫🇴️ 5 5 501 -20 -ハタ 🇫🇴️ 5 5 501 -20 -フェローショトウ 🇫🇴️ 5 5 501 -20 -フラグ 🇫🇴️ 5 5 501 -20 -フラッグ 🇫🇴️ 5 5 501 -20 -コッキ 🇫🇷️ 5 5 501 -20 -ハタ 🇫🇷️ 5 5 501 -20 -フラグ 🇫🇷️ 5 5 501 -20 -フラッグ 🇫🇷️ 5 5 501 -20 -フランス 🇫🇷️ 5 5 501 -20 -ガボン 🇬🇦️ 5 5 501 -20 -コッキ 🇬🇦️ 5 5 501 -20 -ハタ 🇬🇦️ 5 5 501 -20 -フラグ 🇬🇦️ 5 5 501 -20 -フラッグ 🇬🇦️ 5 5 501 -20 -イギリス 🇬🇧️ 5 5 501 -20 -コッキ 🇬🇧️ 5 5 501 -20 -ハタ 🇬🇧️ 5 5 501 -20 -フラグ 🇬🇧️ 5 5 501 -20 -フラッグ 🇬🇧️ 5 5 501 -20 -グレナダ 🇬🇩️ 5 5 501 -20 -コッキ 🇬🇩️ 5 5 501 -20 -ハタ 🇬🇩️ 5 5 501 -20 -フラグ 🇬🇩️ 5 5 501 -20 -フラッグ 🇬🇩️ 5 5 501 -20 -コッキ 🇬🇪️ 5 5 501 -20 -ジョージア 🇬🇪️ 5 5 501 -20 -ハタ 🇬🇪️ 5 5 501 -20 -フラグ 🇬🇪️ 5 5 501 -20 -フラッグ 🇬🇪️ 5 5 501 -20 -コッキ 🇬🇫️ 5 5 501 -20 -ハタ 🇬🇫️ 5 5 501 -20 -フツリョウギアナ 🇬🇫️ 5 5 501 -20 -フラグ 🇬🇫️ 5 5 501 -20 -フラッグ 🇬🇫️ 5 5 501 -20 -フランスリョウギアナ 🇬🇫️ 5 5 501 -20 -ガーンジー 🇬🇬️ 5 5 501 -20 -コッキ 🇬🇬️ 5 5 501 -20 -ハタ 🇬🇬️ 5 5 501 -20 -フラグ 🇬🇬️ 5 5 501 -20 -フラッグ 🇬🇬️ 5 5 501 -20 -ガーナ 🇬🇭️ 5 5 501 -20 -コッキ 🇬🇭️ 5 5 501 -20 -ハタ 🇬🇭️ 5 5 501 -20 -フラグ 🇬🇭️ 5 5 501 -20 -フラッグ 🇬🇭️ 5 5 501 -20 -コッキ 🇬🇮️ 5 5 501 -20 -ジブラルタル 🇬🇮️ 5 5 501 -20 -ハタ 🇬🇮️ 5 5 501 -20 -フラグ 🇬🇮️ 5 5 501 -20 -フラッグ 🇬🇮️ 5 5 501 -20 -グリーンランド 🇬🇱️ 5 5 501 -20 -コッキ 🇬🇱️ 5 5 501 -20 -ハタ 🇬🇱️ 5 5 501 -20 -フラグ 🇬🇱️ 5 5 501 -20 -フラッグ 🇬🇱️ 5 5 501 -20 -ガンビア 🇬🇲️ 5 5 501 -20 -コッキ 🇬🇲️ 5 5 501 -20 -ハタ 🇬🇲️ 5 5 501 -20 -フラグ 🇬🇲️ 5 5 501 -20 -フラッグ 🇬🇲️ 5 5 501 -20 -ギニア 🇬🇳️ 5 5 501 -20 -コッキ 🇬🇳️ 5 5 501 -20 -ハタ 🇬🇳️ 5 5 501 -20 -フラグ 🇬🇳️ 5 5 501 -20 -フラッグ 🇬🇳️ 5 5 501 -20 -グアドループ 🇬🇵️ 5 5 501 -20 -コッキ 🇬🇵️ 5 5 501 -20 -ハタ 🇬🇵️ 5 5 501 -20 -フラグ 🇬🇵️ 5 5 501 -20 -フラッグ 🇬🇵️ 5 5 501 -20 -コッキ 🇬🇶️ 5 5 501 -20 -セキドウギニア 🇬🇶️ 5 5 501 -20 -ハタ 🇬🇶️ 5 5 501 -20 -フラグ 🇬🇶️ 5 5 501 -20 -フラッグ 🇬🇶️ 5 5 501 -20 -ギリシャ 🇬🇷️ 5 5 501 -20 -コッキ 🇬🇷️ 5 5 501 -20 -ハタ 🇬🇷️ 5 5 501 -20 -フラグ 🇬🇷️ 5 5 501 -20 -フラッグ 🇬🇷️ 5 5 501 -20 -コッキ 🇬🇸️ 5 5 501 -20 -サウスジョージア・サウスサンドウィッチショトウ 🇬🇸️ 5 5 501 -20 -ハタ 🇬🇸️ 5 5 501 -20 -フラグ 🇬🇸️ 5 5 501 -20 -フラッグ 🇬🇸️ 5 5 501 -20 -グアテマラ 🇬🇹️ 5 5 501 -20 -コッキ 🇬🇹️ 5 5 501 -20 -ハタ 🇬🇹️ 5 5 501 -20 -フラグ 🇬🇹️ 5 5 501 -20 -フラッグ 🇬🇹️ 5 5 501 -20 -グアム 🇬🇺️ 5 5 501 -20 -コッキ 🇬🇺️ 5 5 501 -20 -ハタ 🇬🇺️ 5 5 501 -20 -フラグ 🇬🇺️ 5 5 501 -20 -フラッグ 🇬🇺️ 5 5 501 -20 -ギニアビサウ 🇬🇼️ 5 5 501 -20 -コッキ 🇬🇼️ 5 5 501 -20 -ハタ 🇬🇼️ 5 5 501 -20 -フラグ 🇬🇼️ 5 5 501 -20 -フラッグ 🇬🇼️ 5 5 501 -20 -ガイアナ 🇬🇾️ 5 5 501 -20 -コッキ 🇬🇾️ 5 5 501 -20 -ハタ 🇬🇾️ 5 5 501 -20 -フラグ 🇬🇾️ 5 5 501 -20 -フラッグ 🇬🇾️ 5 5 501 -20 -コッキ 🇭🇰️ 5 5 501 -20 -チュウカジンミンキョウワコクホンコントクベツギョウセイク 🇭🇰️ 5 5 501 -20 -ハタ 🇭🇰️ 5 5 501 -20 -フラグ 🇭🇰️ 5 5 501 -20 -フラッグ 🇭🇰️ 5 5 501 -20 -ホンコン 🇭🇰️ 5 5 501 -20 -コッキ 🇭🇲️ 5 5 501 -20 -ハタ 🇭🇲️ 5 5 501 -20 -ハードトウ 🇭🇲️ 5 5 501 -20 -ハードトウトマクドナルドショトウ 🇭🇲️ 5 5 501 -20 -ハードトウ・マクドナルドショトウ 🇭🇲️ 5 5 501 -20 -フラグ 🇭🇲️ 5 5 501 -20 -フラッグ 🇭🇲️ 5 5 501 -20 -マクドナルドショトウ 🇭🇲️ 5 5 501 -20 -コッキ 🇭🇳️ 5 5 501 -20 -ハタ 🇭🇳️ 5 5 501 -20 -フラグ 🇭🇳️ 5 5 501 -20 -フラッグ 🇭🇳️ 5 5 501 -20 -ホンジュラス 🇭🇳️ 5 5 501 -20 -クロアチア 🇭🇷️ 5 5 501 -20 -コッキ 🇭🇷️ 5 5 501 -20 -ハタ 🇭🇷️ 5 5 501 -20 -フラグ 🇭🇷️ 5 5 501 -20 -フラッグ 🇭🇷️ 5 5 501 -20 -コッキ 🇭🇹️ 5 5 501 -20 -ハイチ 🇭🇹️ 5 5 501 -20 -ハタ 🇭🇹️ 5 5 501 -20 -フラグ 🇭🇹️ 5 5 501 -20 -フラッグ 🇭🇹️ 5 5 501 -20 -コッキ 🇭🇺️ 5 5 501 -20 -ハタ 🇭🇺️ 5 5 501 -20 -ハンガリー 🇭🇺️ 5 5 501 -20 -フラグ 🇭🇺️ 5 5 501 -20 -フラッグ 🇭🇺️ 5 5 501 -20 -カナリアショトウ 🇮🇨️ 5 5 501 -20 -コッキ 🇮🇨️ 5 5 501 -20 -ハタ 🇮🇨️ 5 5 501 -20 -フラグ 🇮🇨️ 5 5 501 -20 -フラッグ 🇮🇨️ 5 5 501 -20 -インドネシア 🇮🇩️ 5 5 501 -20 -コッキ 🇮🇩️ 5 5 501 -20 -ハタ 🇮🇩️ 5 5 501 -20 -フラグ 🇮🇩️ 5 5 501 -20 -フラッグ 🇮🇩️ 5 5 501 -20 -アイルランド 🇮🇪️ 5 5 501 -20 -コッキ 🇮🇪️ 5 5 501 -20 -ハタ 🇮🇪️ 5 5 501 -20 -フラグ 🇮🇪️ 5 5 501 -20 -フラッグ 🇮🇪️ 5 5 501 -20 -イスラエル 🇮🇱️ 5 5 501 -20 -コッキ 🇮🇱️ 5 5 501 -20 -ハタ 🇮🇱️ 5 5 501 -20 -フラグ 🇮🇱️ 5 5 501 -20 -フラッグ 🇮🇱️ 5 5 501 -20 -コッキ 🇮🇲️ 5 5 501 -20 -ハタ 🇮🇲️ 5 5 501 -20 -フラグ 🇮🇲️ 5 5 501 -20 -フラッグ 🇮🇲️ 5 5 501 -20 -マントウ 🇮🇲️ 5 5 501 -20 -インド 🇮🇳️ 5 5 501 -20 -コッキ 🇮🇳️ 5 5 501 -20 -ハタ 🇮🇳️ 5 5 501 -20 -フラグ 🇮🇳️ 5 5 501 -20 -フラッグ 🇮🇳️ 5 5 501 -20 -イギリスリョウインドヨウチイキ 🇮🇴️ 5 5 501 -20 -エイリョウインドヨウチイキ 🇮🇴️ 5 5 501 -20 -コッキ 🇮🇴️ 5 5 501 -20 -ハタ 🇮🇴️ 5 5 501 -20 -フラグ 🇮🇴️ 5 5 501 -20 -フラッグ 🇮🇴️ 5 5 501 -20 -イラク 🇮🇶️ 5 5 501 -20 -コッキ 🇮🇶️ 5 5 501 -20 -ハタ 🇮🇶️ 5 5 501 -20 -フラグ 🇮🇶️ 5 5 501 -20 -フラッグ 🇮🇶️ 5 5 501 -20 -イラン 🇮🇷️ 5 5 501 -20 -コッキ 🇮🇷️ 5 5 501 -20 -ハタ 🇮🇷️ 5 5 501 -20 -フラグ 🇮🇷️ 5 5 501 -20 -フラッグ 🇮🇷️ 5 5 501 -20 -アイスランド 🇮🇸️ 5 5 501 -20 -コッキ 🇮🇸️ 5 5 501 -20 -ハタ 🇮🇸️ 5 5 501 -20 -フラグ 🇮🇸️ 5 5 501 -20 -フラッグ 🇮🇸️ 5 5 501 -20 -イタリア 🇮🇹️ 5 5 501 -20 -コッキ 🇮🇹️ 5 5 501 -20 -ハタ 🇮🇹️ 5 5 501 -20 -フラグ 🇮🇹️ 5 5 501 -20 -フラッグ 🇮🇹️ 5 5 501 -20 -コッキ 🇯🇪️ 5 5 501 -20 -ジャージー 🇯🇪️ 5 5 501 -20 -ハタ 🇯🇪️ 5 5 501 -20 -フラグ 🇯🇪️ 5 5 501 -20 -フラッグ 🇯🇪️ 5 5 501 -20 -コッキ 🇯🇲️ 5 5 501 -20 -ジャマイカ 🇯🇲️ 5 5 501 -20 -ハタ 🇯🇲️ 5 5 501 -20 -フラグ 🇯🇲️ 5 5 501 -20 -フラッグ 🇯🇲️ 5 5 501 -20 -コッキ 🇯🇴️ 5 5 501 -20 -ハタ 🇯🇴️ 5 5 501 -20 -フラグ 🇯🇴️ 5 5 501 -20 -フラッグ 🇯🇴️ 5 5 501 -20 -ヨルダン 🇯🇴️ 5 5 501 -20 -コッキ 🇯🇵️ 5 5 501 -20 -シュクジツ 🇯🇵️ 5 5 501 -20 -ニッポン 🇯🇵️ 5 5 501 -20 -ニホン 🇯🇵️ 5 5 501 -20 -ハタ 🇯🇵️ 5 5 501 -20 -ヒノマル 🇯🇵️ 5 5 501 -20 -フラグ 🇯🇵️ 5 5 501 -20 -フラッグ 🇯🇵️ 5 5 501 -20 -ケニア 🇰🇪️ 5 5 501 -20 -コッキ 🇰🇪️ 5 5 501 -20 -ハタ 🇰🇪️ 5 5 501 -20 -フラグ 🇰🇪️ 5 5 501 -20 -フラッグ 🇰🇪️ 5 5 501 -20 -キルギス 🇰🇬️ 5 5 501 -20 -コッキ 🇰🇬️ 5 5 501 -20 -ハタ 🇰🇬️ 5 5 501 -20 -フラグ 🇰🇬️ 5 5 501 -20 -フラッグ 🇰🇬️ 5 5 501 -20 -カンボジア 🇰🇭️ 5 5 501 -20 -コッキ 🇰🇭️ 5 5 501 -20 -コロンビア 🇰🇭️ 5 5 501 -20 -ハタ 🇰🇭️ 5 5 501 -20 -フラグ 🇰🇭️ 5 5 501 -20 -フラッグ 🇰🇭️ 5 5 501 -20 -キリバス 🇰🇮️ 5 5 501 -20 -コッキ 🇰🇮️ 5 5 501 -20 -ハタ 🇰🇮️ 5 5 501 -20 -フラグ 🇰🇮️ 5 5 501 -20 -フラッグ 🇰🇮️ 5 5 501 -20 -コッキ 🇰🇲️ 5 5 501 -20 -コモロ 🇰🇲️ 5 5 501 -20 -ハタ 🇰🇲️ 5 5 501 -20 -フラグ 🇰🇲️ 5 5 501 -20 -フラッグ 🇰🇲️ 5 5 501 -20 -コッキ 🇰🇳️ 5 5 501 -20 -セントクリストファーネーヴィス 🇰🇳️ 5 5 501 -20 -セントクリストファー・ネーヴィス 🇰🇳️ 5 5 501 -20 -ハタ 🇰🇳️ 5 5 501 -20 -フラグ 🇰🇳️ 5 5 501 -20 -フラッグ 🇰🇳️ 5 5 501 -20 -キタチョウセン 🇰🇵️ 5 5 501 -20 -コッキ 🇰🇵️ 5 5 501 -20 -ハタ 🇰🇵️ 5 5 501 -20 -フラグ 🇰🇵️ 5 5 501 -20 -フラッグ 🇰🇵️ 5 5 501 -20 -カンコク 🇰🇷️ 5 5 501 -20 -コッキ 🇰🇷️ 5 5 501 -20 -ハタ 🇰🇷️ 5 5 501 -20 -フラグ 🇰🇷️ 5 5 501 -20 -フラッグ 🇰🇷️ 5 5 501 -20 -クウェート 🇰🇼️ 5 5 501 -20 -コッキ 🇰🇼️ 5 5 501 -20 -ハタ 🇰🇼️ 5 5 501 -20 -フラグ 🇰🇼️ 5 5 501 -20 -フラッグ 🇰🇼️ 5 5 501 -20 -ケイマンショトウ 🇰🇾️ 5 5 501 -20 -コッキ 🇰🇾️ 5 5 501 -20 -ハタ 🇰🇾️ 5 5 501 -20 -フラグ 🇰🇾️ 5 5 501 -20 -フラッグ 🇰🇾️ 5 5 501 -20 -カザフスタン 🇰🇿️ 5 5 501 -20 -コッキ 🇰🇿️ 5 5 501 -20 -ハタ 🇰🇿️ 5 5 501 -20 -フラグ 🇰🇿️ 5 5 501 -20 -フラッグ 🇰🇿️ 5 5 501 -20 -コッキ 🇱🇦️ 5 5 501 -20 -ハタ 🇱🇦️ 5 5 501 -20 -フラグ 🇱🇦️ 5 5 501 -20 -フラッグ 🇱🇦️ 5 5 501 -20 -ラオス 🇱🇦️ 5 5 501 -20 -コッキ 🇱🇧️ 5 5 501 -20 -ハタ 🇱🇧️ 5 5 501 -20 -フラグ 🇱🇧️ 5 5 501 -20 -フラッグ 🇱🇧️ 5 5 501 -20 -レバノン 🇱🇧️ 5 5 501 -20 -コッキ 🇱🇨️ 5 5 501 -20 -セントルシア 🇱🇨️ 5 5 501 -20 -ハタ 🇱🇨️ 5 5 501 -20 -フラグ 🇱🇨️ 5 5 501 -20 -フラッグ 🇱🇨️ 5 5 501 -20 -コッキ 🇱🇮️ 5 5 501 -20 -ハタ 🇱🇮️ 5 5 501 -20 -フラグ 🇱🇮️ 5 5 501 -20 -フラッグ 🇱🇮️ 5 5 501 -20 -リヒテンシュタイン 🇱🇮️ 5 5 501 -20 -コッキ 🇱🇰️ 5 5 501 -20 -スリランカ 🇱🇰️ 5 5 501 -20 -ハタ 🇱🇰️ 5 5 501 -20 -フラグ 🇱🇰️ 5 5 501 -20 -フラッグ 🇱🇰️ 5 5 501 -20 -コッキ 🇱🇷️ 5 5 501 -20 -ハタ 🇱🇷️ 5 5 501 -20 -フラグ 🇱🇷️ 5 5 501 -20 -フラッグ 🇱🇷️ 5 5 501 -20 -リベリア 🇱🇷️ 5 5 501 -20 -コッキ 🇱🇸️ 5 5 501 -20 -ハタ 🇱🇸️ 5 5 501 -20 -フラグ 🇱🇸️ 5 5 501 -20 -フラッグ 🇱🇸️ 5 5 501 -20 -レソト 🇱🇸️ 5 5 501 -20 -コッキ 🇱🇹️ 5 5 501 -20 -ハタ 🇱🇹️ 5 5 501 -20 -フラグ 🇱🇹️ 5 5 501 -20 -フラッグ 🇱🇹️ 5 5 501 -20 -リトアニア 🇱🇹️ 5 5 501 -20 -コッキ 🇱🇺️ 5 5 501 -20 -ハタ 🇱🇺️ 5 5 501 -20 -フラグ 🇱🇺️ 5 5 501 -20 -フラッグ 🇱🇺️ 5 5 501 -20 -ルクセンブルク 🇱🇺️ 5 5 501 -20 -ルクセンブルグ 🇱🇺️ 5 5 501 -20 -コッキ 🇱🇻️ 5 5 501 -20 -ハタ 🇱🇻️ 5 5 501 -20 -フラグ 🇱🇻️ 5 5 501 -20 -フラッグ 🇱🇻️ 5 5 501 -20 -ラトビア 🇱🇻️ 5 5 501 -20 -コッキ 🇱🇾️ 5 5 501 -20 -ハタ 🇱🇾️ 5 5 501 -20 -フラグ 🇱🇾️ 5 5 501 -20 -フラッグ 🇱🇾️ 5 5 501 -20 -リビア 🇱🇾️ 5 5 501 -20 -コッキ 🇲🇦️ 5 5 501 -20 -ハタ 🇲🇦️ 5 5 501 -20 -フラグ 🇲🇦️ 5 5 501 -20 -フラッグ 🇲🇦️ 5 5 501 -20 -モロッコ 🇲🇦️ 5 5 501 -20 -コッキ 🇲🇨️ 5 5 501 -20 -ハタ 🇲🇨️ 5 5 501 -20 -フラグ 🇲🇨️ 5 5 501 -20 -フラッグ 🇲🇨️ 5 5 501 -20 -モナコ 🇲🇨️ 5 5 501 -20 -コッキ 🇲🇩️ 5 5 501 -20 -ハタ 🇲🇩️ 5 5 501 -20 -フラグ 🇲🇩️ 5 5 501 -20 -フラッグ 🇲🇩️ 5 5 501 -20 -モルドバ 🇲🇩️ 5 5 501 -20 -コッキ 🇲🇪️ 5 5 501 -20 -ハタ 🇲🇪️ 5 5 501 -20 -フラグ 🇲🇪️ 5 5 501 -20 -フラッグ 🇲🇪️ 5 5 501 -20 -モンテネグロ 🇲🇪️ 5 5 501 -20 -コッキ 🇲🇫️ 5 5 501 -20 -サンマルタン 🇲🇫️ 5 5 501 -20 -サン・マルタン 🇲🇫️ 5 5 501 -20 -ハタ 🇲🇫️ 5 5 501 -20 -フラグ 🇲🇫️ 5 5 501 -20 -フラッグ 🇲🇫️ 5 5 501 -20 -コッキ 🇲🇬️ 5 5 501 -20 -ハタ 🇲🇬️ 5 5 501 -20 -フラグ 🇲🇬️ 5 5 501 -20 -フラッグ 🇲🇬️ 5 5 501 -20 -マダガスカル 🇲🇬️ 5 5 501 -20 -コッキ 🇲🇭️ 5 5 501 -20 -ハタ 🇲🇭️ 5 5 501 -20 -フラグ 🇲🇭️ 5 5 501 -20 -フラッグ 🇲🇭️ 5 5 501 -20 -マーシャルショトウ 🇲🇭️ 5 5 501 -20 -キタマケドニア 🇲🇰️ 5 5 501 -20 -コッキ 🇲🇰️ 5 5 501 -20 -ハタ 🇲🇰️ 5 5 501 -20 -フラグ 🇲🇰️ 5 5 501 -20 -フラッグ 🇲🇰️ 5 5 501 -20 -マケドニア 🇲🇰️ 5 5 501 -20 -コッキ 🇲🇱️ 5 5 501 -20 -ハタ 🇲🇱️ 5 5 501 -20 -フラグ 🇲🇱️ 5 5 501 -20 -フラッグ 🇲🇱️ 5 5 501 -20 -マリ 🇲🇱️ 5 5 501 -20 -コッキ 🇲🇲️ 5 5 501 -20 -ハタ 🇲🇲️ 5 5 501 -20 -ビルマ 🇲🇲️ 5 5 501 -20 -フラグ 🇲🇲️ 5 5 501 -20 -フラッグ 🇲🇲️ 5 5 501 -20 -ミャンマー 🇲🇲️ 5 5 501 -20 -コッキ 🇲🇳️ 5 5 501 -20 -ハタ 🇲🇳️ 5 5 501 -20 -フラグ 🇲🇳️ 5 5 501 -20 -フラッグ 🇲🇳️ 5 5 501 -20 -モンゴル 🇲🇳️ 5 5 501 -20 -コッキ 🇲🇴️ 5 5 501 -20 -チュウカジンミンキョウワコクマカオトクベツギョウセイク 🇲🇴️ 5 5 501 -20 -ハタ 🇲🇴️ 5 5 501 -20 -フラグ 🇲🇴️ 5 5 501 -20 -フラッグ 🇲🇴️ 5 5 501 -20 -マカオ 🇲🇴️ 5 5 501 -20 -キタマリアナショトウ 🇲🇵️ 5 5 501 -20 -コッキ 🇲🇵️ 5 5 501 -20 -ハタ 🇲🇵️ 5 5 501 -20 -フラグ 🇲🇵️ 5 5 501 -20 -フラッグ 🇲🇵️ 5 5 501 -20 -コッキ 🇲🇶️ 5 5 501 -20 -ハタ 🇲🇶️ 5 5 501 -20 -フラグ 🇲🇶️ 5 5 501 -20 -フラッグ 🇲🇶️ 5 5 501 -20 -マルティニーク 🇲🇶️ 5 5 501 -20 -コッキ 🇲🇷️ 5 5 501 -20 -ハタ 🇲🇷️ 5 5 501 -20 -フラグ 🇲🇷️ 5 5 501 -20 -フラッグ 🇲🇷️ 5 5 501 -20 -モーリタニア 🇲🇷️ 5 5 501 -20 -コッキ 🇲🇸️ 5 5 501 -20 -ハタ 🇲🇸️ 5 5 501 -20 -フラグ 🇲🇸️ 5 5 501 -20 -フラッグ 🇲🇸️ 5 5 501 -20 -モントセラト 🇲🇸️ 5 5 501 -20 -コッキ 🇲🇹️ 5 5 501 -20 -ハタ 🇲🇹️ 5 5 501 -20 -フラグ 🇲🇹️ 5 5 501 -20 -フラッグ 🇲🇹️ 5 5 501 -20 -マルタ 🇲🇹️ 5 5 501 -20 -コッキ 🇲🇺️ 5 5 501 -20 -ハタ 🇲🇺️ 5 5 501 -20 -フラグ 🇲🇺️ 5 5 501 -20 -フラッグ 🇲🇺️ 5 5 501 -20 -モーリシャス 🇲🇺️ 5 5 501 -20 -コッキ 🇲🇻️ 5 5 501 -20 -ハタ 🇲🇻️ 5 5 501 -20 -フラグ 🇲🇻️ 5 5 501 -20 -フラッグ 🇲🇻️ 5 5 501 -20 -モルディブ 🇲🇻️ 5 5 501 -20 -コッキ 🇲🇼️ 5 5 501 -20 -ハタ 🇲🇼️ 5 5 501 -20 -フラグ 🇲🇼️ 5 5 501 -20 -フラッグ 🇲🇼️ 5 5 501 -20 -マラウィ 🇲🇼️ 5 5 501 -20 -マラウイ 🇲🇼️ 5 5 501 -20 -コッキ 🇲🇽️ 5 5 501 -20 -ハタ 🇲🇽️ 5 5 501 -20 -フラグ 🇲🇽️ 5 5 501 -20 -フラッグ 🇲🇽️ 5 5 501 -20 -メキシコ 🇲🇽️ 5 5 501 -20 -コッキ 🇲🇾️ 5 5 501 -20 -ハタ 🇲🇾️ 5 5 501 -20 -フラグ 🇲🇾️ 5 5 501 -20 -フラッグ 🇲🇾️ 5 5 501 -20 -マレーシア 🇲🇾️ 5 5 501 -20 -コッキ 🇲🇿️ 5 5 501 -20 -ハタ 🇲🇿️ 5 5 501 -20 -フラグ 🇲🇿️ 5 5 501 -20 -フラッグ 🇲🇿️ 5 5 501 -20 -モザンビーク 🇲🇿️ 5 5 501 -20 -コッキ 🇳🇦️ 5 5 501 -20 -ナミビア 🇳🇦️ 5 5 501 -20 -ハタ 🇳🇦️ 5 5 501 -20 -フラグ 🇳🇦️ 5 5 501 -20 -フラッグ 🇳🇦️ 5 5 501 -20 -コッキ 🇳🇨️ 5 5 501 -20 -ニューカレドニア 🇳🇨️ 5 5 501 -20 -ハタ 🇳🇨️ 5 5 501 -20 -フラグ 🇳🇨️ 5 5 501 -20 -フラッグ 🇳🇨️ 5 5 501 -20 -コッキ 🇳🇪️ 5 5 501 -20 -ニジェール 🇳🇪️ 5 5 501 -20 -ハタ 🇳🇪️ 5 5 501 -20 -フラグ 🇳🇪️ 5 5 501 -20 -フラッグ 🇳🇪️ 5 5 501 -20 -コッキ 🇳🇫️ 5 5 501 -20 -ノーフォークトウ 🇳🇫️ 5 5 501 -20 -ハタ 🇳🇫️ 5 5 501 -20 -フラグ 🇳🇫️ 5 5 501 -20 -フラッグ 🇳🇫️ 5 5 501 -20 -コッキ 🇳🇬️ 5 5 501 -20 -ナイジェリア 🇳🇬️ 5 5 501 -20 -ハタ 🇳🇬️ 5 5 501 -20 -フラグ 🇳🇬️ 5 5 501 -20 -フラッグ 🇳🇬️ 5 5 501 -20 -コッキ 🇳🇮️ 5 5 501 -20 -ニカラグア 🇳🇮️ 5 5 501 -20 -ハタ 🇳🇮️ 5 5 501 -20 -フラグ 🇳🇮️ 5 5 501 -20 -フラッグ 🇳🇮️ 5 5 501 -20 -オランダ 🇳🇱️ 5 5 501 -20 -コッキ 🇳🇱️ 5 5 501 -20 -ハタ 🇳🇱️ 5 5 501 -20 -フラグ 🇳🇱️ 5 5 501 -20 -フラッグ 🇳🇱️ 5 5 501 -20 -コッキ 🇳🇴️ 5 5 501 -20 -ノルウェー 🇳🇴️ 5 5 501 -20 -ハタ 🇳🇴️ 5 5 501 -20 -フラグ 🇳🇴️ 5 5 501 -20 -フラッグ 🇳🇴️ 5 5 501 -20 -コッキ 🇳🇵️ 5 5 501 -20 -ネパール 🇳🇵️ 5 5 501 -20 -ハタ 🇳🇵️ 5 5 501 -20 -フラグ 🇳🇵️ 5 5 501 -20 -フラッグ 🇳🇵️ 5 5 501 -20 -コッキ 🇳🇷️ 5 5 501 -20 -ナウル 🇳🇷️ 5 5 501 -20 -ハタ 🇳🇷️ 5 5 501 -20 -フラグ 🇳🇷️ 5 5 501 -20 -フラッグ 🇳🇷️ 5 5 501 -20 -コッキ 🇳🇺️ 5 5 501 -20 -ニウエ 🇳🇺️ 5 5 501 -20 -ハタ 🇳🇺️ 5 5 501 -20 -フラグ 🇳🇺️ 5 5 501 -20 -フラッグ 🇳🇺️ 5 5 501 -20 -コッキ 🇳🇿️ 5 5 501 -20 -ニュージーランド 🇳🇿️ 5 5 501 -20 -ハタ 🇳🇿️ 5 5 501 -20 -フラグ 🇳🇿️ 5 5 501 -20 -フラッグ 🇳🇿️ 5 5 501 -20 -オマーン 🇴🇲️ 5 5 501 -20 -コッキ 🇴🇲️ 5 5 501 -20 -ハタ 🇴🇲️ 5 5 501 -20 -フラグ 🇴🇲️ 5 5 501 -20 -フラッグ 🇴🇲️ 5 5 501 -20 -コッキ 🇵🇦️ 5 5 501 -20 -ハタ 🇵🇦️ 5 5 501 -20 -パナマ 🇵🇦️ 5 5 501 -20 -フラグ 🇵🇦️ 5 5 501 -20 -フラッグ 🇵🇦️ 5 5 501 -20 -コッキ 🇵🇪️ 5 5 501 -20 -ハタ 🇵🇪️ 5 5 501 -20 -フラグ 🇵🇪️ 5 5 501 -20 -フラッグ 🇵🇪️ 5 5 501 -20 -ペルー 🇵🇪️ 5 5 501 -20 -コッキ 🇵🇫️ 5 5 501 -20 -ハタ 🇵🇫️ 5 5 501 -20 -フツリョウポリネシア 🇵🇫️ 5 5 501 -20 -フラグ 🇵🇫️ 5 5 501 -20 -フラッグ 🇵🇫️ 5 5 501 -20 -フランスリョウポリネシア 🇵🇫️ 5 5 501 -20 -コッキ 🇵🇬️ 5 5 501 -20 -ハタ 🇵🇬️ 5 5 501 -20 -パプアニューギニア 🇵🇬️ 5 5 501 -20 -フラグ 🇵🇬️ 5 5 501 -20 -フラッグ 🇵🇬️ 5 5 501 -20 -コッキ 🇵🇭️ 5 5 501 -20 -ハタ 🇵🇭️ 5 5 501 -20 -フィリピン 🇵🇭️ 5 5 501 -20 -フラグ 🇵🇭️ 5 5 501 -20 -フラッグ 🇵🇭️ 5 5 501 -20 -コッキ 🇵🇰️ 5 5 501 -20 -ハタ 🇵🇰️ 5 5 501 -20 -パキスタン 🇵🇰️ 5 5 501 -20 -フラグ 🇵🇰️ 5 5 501 -20 -フラッグ 🇵🇰️ 5 5 501 -20 -コッキ 🇵🇱️ 5 5 501 -20 -ハタ 🇵🇱️ 5 5 501 -20 -フラグ 🇵🇱️ 5 5 501 -20 -フラッグ 🇵🇱️ 5 5 501 -20 -ポーランド 🇵🇱️ 5 5 501 -20 -コッキ 🇵🇲️ 5 5 501 -20 -サンピエールシマ・ミクロントウ 🇵🇲️ 5 5 501 -20 -サンピエールトウ 🇵🇲️ 5 5 501 -20 -サンピエールトウ・ミクロントウ 🇵🇲️ 5 5 501 -20 -ハタ 🇵🇲️ 5 5 501 -20 -フラグ 🇵🇲️ 5 5 501 -20 -フラッグ 🇵🇲️ 5 5 501 -20 -ミクロントウ 🇵🇲️ 5 5 501 -20 -コッキ 🇵🇳️ 5 5 501 -20 -ハタ 🇵🇳️ 5 5 501 -20 -ピトケアンショトウ 🇵🇳️ 5 5 501 -20 -フラグ 🇵🇳️ 5 5 501 -20 -フラッグ 🇵🇳️ 5 5 501 -20 -コッキ 🇵🇷️ 5 5 501 -20 -ハタ 🇵🇷️ 5 5 501 -20 -フラグ 🇵🇷️ 5 5 501 -20 -フラッグ 🇵🇷️ 5 5 501 -20 -プエルトリコ 🇵🇷️ 5 5 501 -20 -コッキ 🇵🇸️ 5 5 501 -20 -ハタ 🇵🇸️ 5 5 501 -20 -パレスチナジチク 🇵🇸️ 5 5 501 -20 -フラグ 🇵🇸️ 5 5 501 -20 -フラッグ 🇵🇸️ 5 5 501 -20 -コッキ 🇵🇹️ 5 5 501 -20 -ハタ 🇵🇹️ 5 5 501 -20 -フラグ 🇵🇹️ 5 5 501 -20 -フラッグ 🇵🇹️ 5 5 501 -20 -ポルトガル 🇵🇹️ 5 5 501 -20 -コッキ 🇵🇼️ 5 5 501 -20 -ハタ 🇵🇼️ 5 5 501 -20 -パラオ 🇵🇼️ 5 5 501 -20 -フラグ 🇵🇼️ 5 5 501 -20 -フラッグ 🇵🇼️ 5 5 501 -20 -コッキ 🇵🇾️ 5 5 501 -20 -ハタ 🇵🇾️ 5 5 501 -20 -パラグアイ 🇵🇾️ 5 5 501 -20 -フラグ 🇵🇾️ 5 5 501 -20 -フラッグ 🇵🇾️ 5 5 501 -20 -カタール 🇶🇦️ 5 5 501 -20 -コッキ 🇶🇦️ 5 5 501 -20 -ハタ 🇶🇦️ 5 5 501 -20 -フラグ 🇶🇦️ 5 5 501 -20 -フラッグ 🇶🇦️ 5 5 501 -20 -コッキ 🇷🇪️ 5 5 501 -20 -ハタ 🇷🇪️ 5 5 501 -20 -フラグ 🇷🇪️ 5 5 501 -20 -フラッグ 🇷🇪️ 5 5 501 -20 -レユニオン 🇷🇪️ 5 5 501 -20 -コッキ 🇷🇴️ 5 5 501 -20 -ハタ 🇷🇴️ 5 5 501 -20 -フラグ 🇷🇴️ 5 5 501 -20 -フラッグ 🇷🇴️ 5 5 501 -20 -ルーマニア 🇷🇴️ 5 5 501 -20 -コッキ 🇷🇸️ 5 5 501 -20 -セルビア 🇷🇸️ 5 5 501 -20 -ハタ 🇷🇸️ 5 5 501 -20 -フラグ 🇷🇸️ 5 5 501 -20 -フラッグ 🇷🇸️ 5 5 501 -20 -コッキ 🇷🇺️ 5 5 501 -20 -ハタ 🇷🇺️ 5 5 501 -20 -フラグ 🇷🇺️ 5 5 501 -20 -フラッグ 🇷🇺️ 5 5 501 -20 -ロシア 🇷🇺️ 5 5 501 -20 -コッキ 🇷🇼️ 5 5 501 -20 -ハタ 🇷🇼️ 5 5 501 -20 -フラグ 🇷🇼️ 5 5 501 -20 -フラッグ 🇷🇼️ 5 5 501 -20 -ルワンダ 🇷🇼️ 5 5 501 -20 -コッキ 🇸🇦️ 5 5 501 -20 -サウジアラビア 🇸🇦️ 5 5 501 -20 -ハタ 🇸🇦️ 5 5 501 -20 -フラグ 🇸🇦️ 5 5 501 -20 -フラッグ 🇸🇦️ 5 5 501 -20 -コッキ 🇸🇧️ 5 5 501 -20 -ソロモンショトウ 🇸🇧️ 5 5 501 -20 -ハタ 🇸🇧️ 5 5 501 -20 -フラグ 🇸🇧️ 5 5 501 -20 -フラッグ 🇸🇧️ 5 5 501 -20 -コッキ 🇸🇨️ 5 5 501 -20 -セーシェル 🇸🇨️ 5 5 501 -20 -ハタ 🇸🇨️ 5 5 501 -20 -フラグ 🇸🇨️ 5 5 501 -20 -フラッグ 🇸🇨️ 5 5 501 -20 -コッキ 🇸🇩️ 5 5 501 -20 -スーダン 🇸🇩️ 5 5 501 -20 -ハタ 🇸🇩️ 5 5 501 -20 -フラグ 🇸🇩️ 5 5 501 -20 -フラッグ 🇸🇩️ 5 5 501 -20 -コッキ 🇸🇪️ 5 5 501 -20 -スウェーデン 🇸🇪️ 5 5 501 -20 -ハタ 🇸🇪️ 5 5 501 -20 -フラグ 🇸🇪️ 5 5 501 -20 -フラッグ 🇸🇪️ 5 5 501 -20 -コッキ 🇸🇬️ 5 5 501 -20 -シンガポール 🇸🇬️ 5 5 501 -20 -ハタ 🇸🇬️ 5 5 501 -20 -フラグ 🇸🇬️ 5 5 501 -20 -フラッグ 🇸🇬️ 5 5 501 -20 -コッキ 🇸🇭️ 5 5 501 -20 -セントヘレナ 🇸🇭️ 5 5 501 -20 -ハタ 🇸🇭️ 5 5 501 -20 -フラグ 🇸🇭️ 5 5 501 -20 -フラッグ 🇸🇭️ 5 5 501 -20 -コッキ 🇸🇮️ 5 5 501 -20 -スロベニア 🇸🇮️ 5 5 501 -20 -ハタ 🇸🇮️ 5 5 501 -20 -フラグ 🇸🇮️ 5 5 501 -20 -フラッグ 🇸🇮️ 5 5 501 -20 -コッキ 🇸🇯️ 5 5 501 -20 -スバールバルショトウ 🇸🇯️ 5 5 501 -20 -スバールバルショトウ・ヤンマイエントウ 🇸🇯️ 5 5 501 -20 -スヴァールバルショトウオヨビヤンマイエントウ 🇸🇯️ 5 5 501 -20 -ハタ 🇸🇯️ 5 5 501 -20 -フラグ 🇸🇯️ 5 5 501 -20 -フラッグ 🇸🇯️ 5 5 501 -20 -ヤンマイエントウ 🇸🇯️ 5 5 501 -20 -コッキ 🇸🇰️ 5 5 501 -20 -スロバキア 🇸🇰️ 5 5 501 -20 -ハタ 🇸🇰️ 5 5 501 -20 -フラグ 🇸🇰️ 5 5 501 -20 -フラッグ 🇸🇰️ 5 5 501 -20 -コッキ 🇸🇱️ 5 5 501 -20 -シエラレオネ 🇸🇱️ 5 5 501 -20 -ハタ 🇸🇱️ 5 5 501 -20 -フラグ 🇸🇱️ 5 5 501 -20 -フラッグ 🇸🇱️ 5 5 501 -20 -コッキ 🇸🇲️ 5 5 501 -20 -サンマリノ 🇸🇲️ 5 5 501 -20 -ハタ 🇸🇲️ 5 5 501 -20 -フラグ 🇸🇲️ 5 5 501 -20 -フラッグ 🇸🇲️ 5 5 501 -20 -コッキ 🇸🇳️ 5 5 501 -20 -セネガル 🇸🇳️ 5 5 501 -20 -ハタ 🇸🇳️ 5 5 501 -20 -フラグ 🇸🇳️ 5 5 501 -20 -フラッグ 🇸🇳️ 5 5 501 -20 -コッキ 🇸🇴️ 5 5 501 -20 -ソマリア 🇸🇴️ 5 5 501 -20 -ハタ 🇸🇴️ 5 5 501 -20 -フラグ 🇸🇴️ 5 5 501 -20 -フラッグ 🇸🇴️ 5 5 501 -20 -コッキ 🇸🇷️ 5 5 501 -20 -スリナム 🇸🇷️ 5 5 501 -20 -ハタ 🇸🇷️ 5 5 501 -20 -フラグ 🇸🇷️ 5 5 501 -20 -フラッグ 🇸🇷️ 5 5 501 -20 -コッキ 🇸🇸️ 5 5 501 -20 -ハタ 🇸🇸️ 5 5 501 -20 -フラグ 🇸🇸️ 5 5 501 -20 -フラッグ 🇸🇸️ 5 5 501 -20 -ミナミスーダン 🇸🇸️ 5 5 501 -20 -コッキ 🇸🇹️ 5 5 501 -20 -サントメプリンシペ 🇸🇹️ 5 5 501 -20 -サントメ・プリンシペ 🇸🇹️ 5 5 501 -20 -ハタ 🇸🇹️ 5 5 501 -20 -フラグ 🇸🇹️ 5 5 501 -20 -フラッグ 🇸🇹️ 5 5 501 -20 -エルサルバドル 🇸🇻️ 5 5 501 -20 -コッキ 🇸🇻️ 5 5 501 -20 -ハタ 🇸🇻️ 5 5 501 -20 -フラグ 🇸🇻️ 5 5 501 -20 -フラッグ 🇸🇻️ 5 5 501 -20 -コッキ 🇸🇽️ 5 5 501 -20 -シントマールテン 🇸🇽️ 5 5 501 -20 -シント・マールテン 🇸🇽️ 5 5 501 -20 -ハタ 🇸🇽️ 5 5 501 -20 -フラグ 🇸🇽️ 5 5 501 -20 -フラッグ 🇸🇽️ 5 5 501 -20 -コッキ 🇸🇾️ 5 5 501 -20 -シリア 🇸🇾️ 5 5 501 -20 -ハタ 🇸🇾️ 5 5 501 -20 -フラグ 🇸🇾️ 5 5 501 -20 -フラッグ 🇸🇾️ 5 5 501 -20 -エスワティニ 🇸🇿️ 5 5 501 -20 -コッキ 🇸🇿️ 5 5 501 -20 -スワジランド 🇸🇿️ 5 5 501 -20 -ハタ 🇸🇿️ 5 5 501 -20 -フラグ 🇸🇿️ 5 5 501 -20 -フラッグ 🇸🇿️ 5 5 501 -20 -コッキ 🇹🇦️ 5 5 501 -20 -トリスタンダクーニャ 🇹🇦️ 5 5 501 -20 -トリスタン・ダ・クーニャ 🇹🇦️ 5 5 501 -20 -ハタ 🇹🇦️ 5 5 501 -20 -フラグ 🇹🇦️ 5 5 501 -20 -フラッグ 🇹🇦️ 5 5 501 -20 -コッキ 🇹🇨️ 5 5 501 -20 -タークスカイコスショトウ 🇹🇨️ 5 5 501 -20 -ハタ 🇹🇨️ 5 5 501 -20 -フラグ 🇹🇨️ 5 5 501 -20 -フラッグ 🇹🇨️ 5 5 501 -20 -コッキ 🇹🇩️ 5 5 501 -20 -チャド 🇹🇩️ 5 5 501 -20 -ハタ 🇹🇩️ 5 5 501 -20 -フラグ 🇹🇩️ 5 5 501 -20 -フラッグ 🇹🇩️ 5 5 501 -20 -コッキ 🇹🇫️ 5 5 501 -20 -ハタ 🇹🇫️ 5 5 501 -20 -フツリョウキョクナンショトウ 🇹🇫️ 5 5 501 -20 -フラグ 🇹🇫️ 5 5 501 -20 -フラッグ 🇹🇫️ 5 5 501 -20 -コッキ 🇹🇬️ 5 5 501 -20 -トーゴ 🇹🇬️ 5 5 501 -20 -ハタ 🇹🇬️ 5 5 501 -20 -フラグ 🇹🇬️ 5 5 501 -20 -フラッグ 🇹🇬️ 5 5 501 -20 -コッキ 🇹🇭️ 5 5 501 -20 -タイ 🇹🇭️ 5 5 501 -20 -ハタ 🇹🇭️ 5 5 501 -20 -フラグ 🇹🇭️ 5 5 501 -20 -フラッグ 🇹🇭️ 5 5 501 -20 -コッキ 🇹🇯️ 5 5 501 -20 -タジキスタン 🇹🇯️ 5 5 501 -20 -ハタ 🇹🇯️ 5 5 501 -20 -フラグ 🇹🇯️ 5 5 501 -20 -フラッグ 🇹🇯️ 5 5 501 -20 -コッキ 🇹🇰️ 5 5 501 -20 -トケラウ 🇹🇰️ 5 5 501 -20 -ハタ 🇹🇰️ 5 5 501 -20 -フラグ 🇹🇰️ 5 5 501 -20 -フラッグ 🇹🇰️ 5 5 501 -20 -コッキ 🇹🇱️ 5 5 501 -20 -ハタ 🇹🇱️ 5 5 501 -20 -ヒガシティモール 🇹🇱️ 5 5 501 -20 -フラグ 🇹🇱️ 5 5 501 -20 -フラッグ 🇹🇱️ 5 5 501 -20 -コッキ 🇹🇲️ 5 5 501 -20 -トルクメニスタン 🇹🇲️ 5 5 501 -20 -ハタ 🇹🇲️ 5 5 501 -20 -フラグ 🇹🇲️ 5 5 501 -20 -フラッグ 🇹🇲️ 5 5 501 -20 -コッキ 🇹🇳️ 5 5 501 -20 -チュニジア 🇹🇳️ 5 5 501 -20 -ハタ 🇹🇳️ 5 5 501 -20 -フラグ 🇹🇳️ 5 5 501 -20 -フラッグ 🇹🇳️ 5 5 501 -20 -コッキ 🇹🇴️ 5 5 501 -20 -トンガ 🇹🇴️ 5 5 501 -20 -ハタ 🇹🇴️ 5 5 501 -20 -フラグ 🇹🇴️ 5 5 501 -20 -フラッグ 🇹🇴️ 5 5 501 -20 -コッキ 🇹🇷️ 5 5 501 -20 -トルコ 🇹🇷️ 5 5 501 -20 -ハタ 🇹🇷️ 5 5 501 -20 -フラグ 🇹🇷️ 5 5 501 -20 -フラッグ 🇹🇷️ 5 5 501 -20 -コッキ 🇹🇹️ 5 5 501 -20 -トリニダードトバゴ 🇹🇹️ 5 5 501 -20 -トリニダード・トバゴ 🇹🇹️ 5 5 501 -20 -ハタ 🇹🇹️ 5 5 501 -20 -フラグ 🇹🇹️ 5 5 501 -20 -フラッグ 🇹🇹️ 5 5 501 -20 -コッキ 🇹🇻️ 5 5 501 -20 -ツバル 🇹🇻️ 5 5 501 -20 -ハタ 🇹🇻️ 5 5 501 -20 -フラグ 🇹🇻️ 5 5 501 -20 -フラッグ 🇹🇻️ 5 5 501 -20 -コッキ 🇹🇼️ 5 5 501 -20 -タイワン 🇹🇼️ 5 5 501 -20 -ハタ 🇹🇼️ 5 5 501 -20 -フラグ 🇹🇼️ 5 5 501 -20 -フラッグ 🇹🇼️ 5 5 501 -20 -コッキ 🇹🇿️ 5 5 501 -20 -タンザニア 🇹🇿️ 5 5 501 -20 -ハタ 🇹🇿️ 5 5 501 -20 -フラグ 🇹🇿️ 5 5 501 -20 -フラッグ 🇹🇿️ 5 5 501 -20 -ウクライナ 🇺🇦️ 5 5 501 -20 -コッキ 🇺🇦️ 5 5 501 -20 -ハタ 🇺🇦️ 5 5 501 -20 -フラグ 🇺🇦️ 5 5 501 -20 -フラッグ 🇺🇦️ 5 5 501 -20 -ウガンダ 🇺🇬️ 5 5 501 -20 -コッキ 🇺🇬️ 5 5 501 -20 -ハタ 🇺🇬️ 5 5 501 -20 -フラグ 🇺🇬️ 5 5 501 -20 -フラッグ 🇺🇬️ 5 5 501 -20 -ガッシュウコクリョウユウショウリトウ 🇺🇲️ 5 5 501 -20 -コッキ 🇺🇲️ 5 5 501 -20 -ハタ 🇺🇲️ 5 5 501 -20 -フラグ 🇺🇲️ 5 5 501 -20 -フラッグ 🇺🇲️ 5 5 501 -20 -コクサイレンゴウ 🇺🇳️ 5 5 501 -20 -コクレン 🇺🇳️ 5 5 501 -20 -コッキ 🇺🇳️ 5 5 501 -20 -ハタ 🇺🇳️ 5 5 501 -20 -フラグ 🇺🇳️ 5 5 501 -20 -フラッグ 🇺🇳️ 5 5 501 -20 -アメリカ 🇺🇸️ 5 5 501 -20 -アメリカガッシュウコク 🇺🇸️ 5 5 501 -20 -コッキ 🇺🇸️ 5 5 501 -20 -ハタ 🇺🇸️ 5 5 501 -20 -フラグ 🇺🇸️ 5 5 501 -20 -フラッグ 🇺🇸️ 5 5 501 -20 -ウルグアイ 🇺🇾️ 5 5 501 -20 -コッキ 🇺🇾️ 5 5 501 -20 -ハタ 🇺🇾️ 5 5 501 -20 -フラグ 🇺🇾️ 5 5 501 -20 -フラッグ 🇺🇾️ 5 5 501 -20 -ウズベキスタン 🇺🇿️ 5 5 501 -20 -コッキ 🇺🇿️ 5 5 501 -20 -ハタ 🇺🇿️ 5 5 501 -20 -フラグ 🇺🇿️ 5 5 501 -20 -フラッグ 🇺🇿️ 5 5 501 -20 -コッキ 🇻🇦️ 5 5 501 -20 -ハタ 🇻🇦️ 5 5 501 -20 -バチカン 🇻🇦️ 5 5 501 -20 -バチカンシコク 🇻🇦️ 5 5 501 -20 -フラグ 🇻🇦️ 5 5 501 -20 -フラッグ 🇻🇦️ 5 5 501 -20 -コッキ 🇻🇨️ 5 5 501 -20 -セントビンセントオヨビグレナディーンショトウ 🇻🇨️ 5 5 501 -20 -ハタ 🇻🇨️ 5 5 501 -20 -フラグ 🇻🇨️ 5 5 501 -20 -フラッグ 🇻🇨️ 5 5 501 -20 -コッキ 🇻🇪️ 5 5 501 -20 -ハタ 🇻🇪️ 5 5 501 -20 -フラグ 🇻🇪️ 5 5 501 -20 -フラッグ 🇻🇪️ 5 5 501 -20 -ベネズエラ 🇻🇪️ 5 5 501 -20 -イギリスリョウヴァージンショトウ 🇻🇬️ 5 5 501 -20 -エイリョウヴァージンショトウ 🇻🇬️ 5 5 501 -20 -コッキ 🇻🇬️ 5 5 501 -20 -ハタ 🇻🇬️ 5 5 501 -20 -フラグ 🇻🇬️ 5 5 501 -20 -フラッグ 🇻🇬️ 5 5 501 -20 -アメリカリョウヴァージンショトウ 🇻🇮️ 5 5 501 -20 -コッキ 🇻🇮️ 5 5 501 -20 -ハタ 🇻🇮️ 5 5 501 -20 -フラグ 🇻🇮️ 5 5 501 -20 -フラッグ 🇻🇮️ 5 5 501 -20 -ベイリョウヴァージンショトウ 🇻🇮️ 5 5 501 -20 -コッキ 🇻🇳️ 5 5 501 -20 -ハタ 🇻🇳️ 5 5 501 -20 -フラグ 🇻🇳️ 5 5 501 -20 -フラッグ 🇻🇳️ 5 5 501 -20 -ベトナム 🇻🇳️ 5 5 501 -20 -コッキ 🇻🇺️ 5 5 501 -20 -ハタ 🇻🇺️ 5 5 501 -20 -バヌアツ 🇻🇺️ 5 5 501 -20 -フラグ 🇻🇺️ 5 5 501 -20 -フラッグ 🇻🇺️ 5 5 501 -20 -ウォリスフツナ 🇼🇫️ 5 5 501 -20 -ウォリス・フツナ 🇼🇫️ 5 5 501 -20 -コッキ 🇼🇫️ 5 5 501 -20 -ハタ 🇼🇫️ 5 5 501 -20 -フラグ 🇼🇫️ 5 5 501 -20 -フラッグ 🇼🇫️ 5 5 501 -20 -コッキ 🇼🇸️ 5 5 501 -20 -サモア 🇼🇸️ 5 5 501 -20 -ハタ 🇼🇸️ 5 5 501 -20 -フラグ 🇼🇸️ 5 5 501 -20 -フラッグ 🇼🇸️ 5 5 501 -20 -コソボ 🇽🇰️ 5 5 501 -20 -コッキ 🇽🇰️ 5 5 501 -20 -ハタ 🇽🇰️ 5 5 501 -20 -フラグ 🇽🇰️ 5 5 501 -20 -フラッグ 🇽🇰️ 5 5 501 -20 -イエメン 🇾🇪️ 5 5 501 -20 -コッキ 🇾🇪️ 5 5 501 -20 -ハタ 🇾🇪️ 5 5 501 -20 -フラグ 🇾🇪️ 5 5 501 -20 -フラッグ 🇾🇪️ 5 5 501 -20 -コッキ 🇾🇹️ 5 5 501 -20 -ハタ 🇾🇹️ 5 5 501 -20 -フラグ 🇾🇹️ 5 5 501 -20 -フラッグ 🇾🇹️ 5 5 501 -20 -マヨット 🇾🇹️ 5 5 501 -20 -コッキ 🇿🇦️ 5 5 501 -20 -ハタ 🇿🇦️ 5 5 501 -20 -フラグ 🇿🇦️ 5 5 501 -20 -フラッグ 🇿🇦️ 5 5 501 -20 -ミナミアフリカ 🇿🇦️ 5 5 501 -20 -コッキ 🇿🇲️ 5 5 501 -20 -ザンビア 🇿🇲️ 5 5 501 -20 -ハタ 🇿🇲️ 5 5 501 -20 -フラグ 🇿🇲️ 5 5 501 -20 -フラッグ 🇿🇲️ 5 5 501 -20 -コッキ 🇿🇼️ 5 5 501 -20 -ジンバブエ 🇿🇼️ 5 5 501 -20 -ハタ 🇿🇼️ 5 5 501 -20 -フラグ 🇿🇼️ 5 5 501 -20 -フラッグ 🇿🇼️ 5 5 501 -20 -イングランド 🏴󠁧󠁢󠁥󠁮󠁧󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁥󠁮󠁧󠁿️ 5 5 501 -20 -スコットランド 🏴󠁧󠁢󠁳󠁣󠁴󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁳󠁣󠁴󠁿️ 5 5 501 -20 -ウェールズ 🏴󠁧󠁢󠁷󠁬󠁳󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁷󠁬󠁳󠁿️ 5 5 501 -20 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E14.0.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E14.0.txt deleted file mode 100644 index 9eebc68..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E14.0.txt +++ /dev/null @@ -1,8387 +0,0 @@ -エガオ 😀️ 5 5 501 -20 -カオ 😀️ 5 5 501 -20 -スマイル 😀️ 5 5 501 -20 -ニッコリ 😀️ 5 5 501 -20 -ニッコリワラウ 😀️ 5 5 501 -20 -ワラウ 😀️ 5 5 501 -20 -エガオ 😃️ 5 5 501 -20 -カオ 😃️ 5 5 501 -20 -スマイル 😃️ 5 5 501 -20 -ワーイ 😃️ 5 5 501 -20 -エガオ 😄️ 5 5 501 -20 -カオ 😄️ 5 5 501 -20 -スマイル 😄️ 5 5 501 -20 -ワーイ 😄️ 5 5 501 -20 -エガオ 😁️ 5 5 501 -20 -カオ 😁️ 5 5 501 -20 -スマイル 😁️ 5 5 501 -20 -ニヤットワラウ 😁️ 5 5 501 -20 -ワライ 😁️ 5 5 501 -20 -ワラウ 😁️ 5 5 501 -20 -ウレシイ 😆️ 5 5 501 -20 -エガオ 😆️ 5 5 501 -20 -カオ 😆️ 5 5 501 -20 -キャー 😆️ 5 5 501 -20 -スマイル 😆️ 5 5 501 -20 -マンゾク 😆️ 5 5 501 -20 -アセ 😅️ 5 5 501 -20 -エガオ 😅️ 5 5 501 -20 -カオ 😅️ 5 5 501 -20 -スマイル 😅️ 5 5 501 -20 -ヒヤアセ 😅️ 5 5 501 -20 -ヒヤアセエガオ 😅️ 5 5 501 -20 -ワーイ 😅️ 5 5 501 -20 -エガオ 🤣️ 5 5 501 -20 -カオ 🤣️ 5 5 501 -20 -スマイル 🤣️ 5 5 501 -20 -ワライコロゲル 🤣️ 5 5 501 -20 -ワラウ 🤣️ 5 5 501 -20 -ウレシナキ 😂️ 5 5 501 -20 -エガオ 😂️ 5 5 501 -20 -カオ 😂️ 5 5 501 -20 -スマイル 😂️ 5 5 501 -20 -ナミダ 😂️ 5 5 501 -20 -ワライ 😂️ 5 5 501 -20 -ワラウ 😂️ 5 5 501 -20 -エガオ 🙂️ 5 5 501 -20 -カオ 🙂️ 5 5 501 -20 -スマイル 🙂️ 5 5 501 -20 -ホホエミ 🙂️ 5 5 501 -20 -ホホエム 🙂️ 5 5 501 -20 -カオ 🙃️ 5 5 501 -20 -サカサマ 🙃️ 5 5 501 -20 -サカサマノカオ 🙃️ 5 5 501 -20 -エキタイ 🫠️ 5 5 501 -20 -カオ 🫠️ 5 5 501 -20 -トケソウ 🫠️ 5 5 501 -20 -トケテイルカオ 🫠️ 5 5 501 -20 -トケル 🫠️ 5 5 501 -20 -トロケル 🫠️ 5 5 501 -20 -トロトロ 🫠️ 5 5 501 -20 -ヨウカイ 🫠️ 5 5 501 -20 -ウィンク 😉️ 5 5 501 -20 -ウインク 😉️ 5 5 501 -20 -カオ 😉️ 5 5 501 -20 -エガオ 😊️ 5 5 501 -20 -カオ 😊️ 5 5 501 -20 -スマイル 😊️ 5 5 501 -20 -ニコニコ 😊️ 5 5 501 -20 -ホオヲアカラメル 😊️ 5 5 501 -20 -ホホエミ 😊️ 5 5 501 -20 -ホホヲアカラメル 😊️ 5 5 501 -20 -メヲホソメル 😊️ 5 5 501 -20 -エガオ 😇️ 5 5 501 -20 -カオ 😇️ 5 5 501 -20 -スマイル 😇️ 5 5 501 -20 -テンシ 😇️ 5 5 501 -20 -テンシノワ 😇️ 5 5 501 -20 -テンシノワガツイタエガオ 😇️ 5 5 501 -20 -エガオ 🥰️ 5 5 501 -20 -カオ 🥰️ 5 5 501 -20 -ハートノエガオ 🥰️ 5 5 501 -20 -ムチュウ 🥰️ 5 5 501 -20 -メロメロ 🥰️ 5 5 501 -20 -ラブ 🥰️ 5 5 501 -20 -エガオ 😍️ 5 5 501 -20 -カオ 😍️ 5 5 501 -20 -スマイル 😍️ 5 5 501 -20 -ハート 😍️ 5 5 501 -20 -メガハートノエガオ 😍️ 5 5 501 -20 -ラブ 😍️ 5 5 501 -20 -エガオ 🤩️ 5 5 501 -20 -カオ 🤩️ 5 5 501 -20 -スマイル 🤩️ 5 5 501 -20 -ホシ 🤩️ 5 5 501 -20 -メガホシノエガオ 🤩️ 5 5 501 -20 -カオ 😘️ 5 5 501 -20 -キス 😘️ 5 5 501 -20 -チュッ 😘️ 5 5 501 -20 -ナゲキッス 😘️ 5 5 501 -20 -ハート 😘️ 5 5 501 -20 -カオ 😗️ 5 5 501 -20 -キス 😗️ 5 5 501 -20 -チュッ 😗️ 5 5 501 -20 -エガオ ☺️️ 5 5 501 -20 -カオ ☺️️ 5 5 501 -20 -スマイリー ☺️️ 5 5 501 -20 -スマイル ☺️️ 5 5 501 -20 -ホッ ☺️️ 5 5 501 -20 -カオ 😚️ 5 5 501 -20 -キス 😚️ 5 5 501 -20 -チュッ 😚️ 5 5 501 -20 -メヲトジル 😚️ 5 5 501 -20 -エガオ 😙️ 5 5 501 -20 -カオ 😙️ 5 5 501 -20 -キス 😙️ 5 5 501 -20 -スマイル 😙️ 5 5 501 -20 -チュッ 😙️ 5 5 501 -20 -ニッコリキス 😙️ 5 5 501 -20 -ウレシナミダノカオ 🥲️ 5 5 501 -20 -カオ 🥲️ 5 5 501 -20 -カンドウ 🥲️ 5 5 501 -20 -ジーン 🥲️ 5 5 501 -20 -ナク 🥲️ 5 5 501 -20 -ナミダ 🥲️ 5 5 501 -20 -ウマイ 😋️ 5 5 501 -20 -エガオ 😋️ 5 5 501 -20 -オイシイ 😋️ 5 5 501 -20 -カオ 😋️ 5 5 501 -20 -スマイル 😋️ 5 5 501 -20 -ニコニコ 😋️ 5 5 501 -20 -ニコニコペロリ 😋️ 5 5 501 -20 -カオ 😛️ 5 5 501 -20 -シタ 😛️ 5 5 501 -20 -シタヲダシタカオ 😛️ 5 5 501 -20 -ベロ 😛️ 5 5 501 -20 -ベー 😛️ 5 5 501 -20 -アッカンベー 😜️ 5 5 501 -20 -カオ 😜️ 5 5 501 -20 -シタ 😜️ 5 5 501 -20 -ジョウダン 😜️ 5 5 501 -20 -ジョーク 😜️ 5 5 501 -20 -ベー 😜️ 5 5 501 -20 -オカシイ 🤪️ 5 5 501 -20 -カオ 🤪️ 5 5 501 -20 -ジョーク 🤪️ 5 5 501 -20 -フザケ 🤪️ 5 5 501 -20 -フザケタカオ 🤪️ 5 5 501 -20 -カオ 😝️ 5 5 501 -20 -シタ 😝️ 5 5 501 -20 -ベロ 😝️ 5 5 501 -20 -ベー 😝️ 5 5 501 -20 -メヲトジテベー 😝️ 5 5 501 -20 -ワーイ 😝️ 5 5 501 -20 -オカネノカオ 🤑️ 5 5 501 -20 -カオ 🤑️ 5 5 501 -20 -シタ 🤑️ 5 5 501 -20 -ベロ 🤑️ 5 5 501 -20 -ベー 🤑️ 5 5 501 -20 -エガオ 🤗️ 5 5 501 -20 -カオ 🤗️ 5 5 501 -20 -スマイル 🤗️ 5 5 501 -20 -ハグ 🤗️ 5 5 501 -20 -エガオ 🤭️ 5 5 501 -20 -カオ 🤭️ 5 5 501 -20 -クスクス 🤭️ 5 5 501 -20 -クチニテヲアテタカオ 🤭️ 5 5 501 -20 -スマイル 🤭️ 5 5 501 -20 -ナイショ 🤭️ 5 5 501 -20 -イワナイ 🫢️ 5 5 501 -20 -エッ 🫢️ 5 5 501 -20 -オソレ 🫢️ 5 5 501 -20 -オドロキ 🫢️ 5 5 501 -20 -オノノキ 🫢️ 5 5 501 -20 -カオ 🫢️ 5 5 501 -20 -ヒミツ 🫢️ 5 5 501 -20 -ビックリ 🫢️ 5 5 501 -20 -メヲアケテクチニテヲアテタカオ 🫢️ 5 5 501 -20 -カオ 🫣️ 5 5 501 -20 -キニナル 🫣️ 5 5 501 -20 -コワイモノミタサ 🫣️ 5 5 501 -20 -コワゴワ 🫣️ 5 5 501 -20 -ヌスミミ 🫣️ 5 5 501 -20 -ノゾキミ 🫣️ 5 5 501 -20 -ハズカシイ 🫣️ 5 5 501 -20 -ユビノマカラノゾキミルカオ 🫣️ 5 5 501 -20 -カオ 🤫️ 5 5 501 -20 -シズカニ 🤫️ 5 5 501 -20 -シッ 🤫️ 5 5 501 -20 -シー 🤫️ 5 5 501 -20 -シーッ 🤫️ 5 5 501 -20 -ダマレ 🤫️ 5 5 501 -20 -ウーン 🤔️ 5 5 501 -20 -カオ 🤔️ 5 5 501 -20 -カンガエチュウ 🤔️ 5 5 501 -20 -カンガエル 🤔️ 5 5 501 -20 -カンガエルカオ 🤔️ 5 5 501 -20 -イエッサー 🫡️ 5 5 501 -20 -オーケー 🫡️ 5 5 501 -20 -カオ 🫡️ 5 5 501 -20 -グンタイ 🫡️ 5 5 501 -20 -ケイレイ 🫡️ 5 5 501 -20 -ケイレイスルカオ 🫡️ 5 5 501 -20 -ショウチ 🫡️ 5 5 501 -20 -リョウカイ 🫡️ 5 5 501 -20 -ワカッタ 🫡️ 5 5 501 -20 -カオ 🤐️ 5 5 501 -20 -クチ 🤐️ 5 5 501 -20 -クチチャック 🤐️ 5 5 501 -20 -チャック 🤐️ 5 5 501 -20 -ウタガイ 🤨️ 5 5 501 -20 -オドロキ 🤨️ 5 5 501 -20 -カオ 🤨️ 5 5 501 -20 -マユヲアゲタカオ 🤨️ 5 5 501 -20 -カオ 😐️ 5 5 501 -20 -ポーカーフェイス 😐️ 5 5 501 -20 -ムヒョウジョウ 😐️ 5 5 501 -20 -カオ 😑️ 5 5 501 -20 -ムカンジョウ 😑️ 5 5 501 -20 -ムヒョウジョウ 😑️ 5 5 501 -20 -カオ 😶️ 5 5 501 -20 -クチナシ 😶️ 5 5 501 -20 -クチノナイカオ 😶️ 5 5 501 -20 -ダンマリ 😶️ 5 5 501 -20 -チンモク 😶️ 5 5 501 -20 -ウチキ 🫥️ 5 5 501 -20 -カオ 🫥️ 5 5 501 -20 -テンセンノカオ 🫥️ 5 5 501 -20 -ナイコウテキ 🫥️ 5 5 501 -20 -ムムム 🫥️ 5 5 501 -20 -ユウウツ 🫥️ 5 5 501 -20 -ラクタン 🫥️ 5 5 501 -20 -ウワノソラ 😶‍🌫️️ 5 5 501 -20 -カオ 😶‍🌫️️ 5 5 501 -20 -クモ 😶‍🌫️️ 5 5 501 -20 -クモノナカ 😶‍🌫️️ 5 5 501 -20 -クモノナカノカオ 😶‍🌫️️ 5 5 501 -20 -コッソリ 😶‍🌫️️ 5 5 501 -20 -ホウシンジョウタイ 😶‍🌫️️ 5 5 501 -20 -ボンヤリ 😶‍🌫️️ 5 5 501 -20 -ムチュウ 😶‍🌫️️ 5 5 501 -20 -ウスワライヲスルカオ 😏️ 5 5 501 -20 -カオ 😏️ 5 5 501 -20 -ニヤリ 😏️ 5 5 501 -20 -フッ 😏️ 5 5 501 -20 -カオ 😒️ 5 5 501 -20 -シラケ 😒️ 5 5 501 -20 -シラケタ 😒️ 5 5 501 -20 -シラケル 😒️ 5 5 501 -20 -ジトメ 😒️ 5 5 501 -20 -ウエヲミルカオ 🙄️ 5 5 501 -20 -ウワメ 🙄️ 5 5 501 -20 -カオ 🙄️ 5 5 501 -20 -イー 😬️ 5 5 501 -20 -カオ 😬️ 5 5 501 -20 -シカメガオ 😬️ 5 5 501 -20 -シカメッツラ 😬️ 5 5 501 -20 -シカメツラ 😬️ 5 5 501 -20 -アキラメ 😮‍💨️ 5 5 501 -20 -アンシン 😮‍💨️ 5 5 501 -20 -イキヲハクカオ 😮‍💨️ 5 5 501 -20 -カオ 😮‍💨️ 5 5 501 -20 -コキュウ 😮‍💨️ 5 5 501 -20 -タメイキ 😮‍💨️ 5 5 501 -20 -ハァ 😮‍💨️ 5 5 501 -20 -ヒトアンシン 😮‍💨️ 5 5 501 -20 -ホットシタ 😮‍💨️ 5 5 501 -20 -ウソツキ 🤥️ 5 5 501 -20 -ウソツキノカオ 🤥️ 5 5 501 -20 -カオ 🤥️ 5 5 501 -20 -ピノキオノカオ 🤥️ 5 5 501 -20 -アンシン 😌️ 5 5 501 -20 -カオ 😌️ 5 5 501 -20 -ホッ 😌️ 5 5 501 -20 -ホットシタカオ 😌️ 5 5 501 -20 -カオ 😔️ 5 5 501 -20 -ショボーン 😔️ 5 5 501 -20 -ションボリ 😔️ 5 5 501 -20 -カオ 😪️ 5 5 501 -20 -ネムイ 😪️ 5 5 501 -20 -ネムル 😪️ 5 5 501 -20 -ネル 😪️ 5 5 501 -20 -カオ 🤤️ 5 5 501 -20 -ヨダレ 🤤️ 5 5 501 -20 -ヨダレヲタラシタカオ 🤤️ 5 5 501 -20 -zzz 😴️ 5 5 501 -20 -カオ 😴️ 5 5 501 -20 -ネムイ 😴️ 5 5 501 -20 -ネムル 😴️ 5 5 501 -20 -ネル 😴️ 5 5 501 -20 -カオ 😷️ 5 5 501 -20 -カゼ 😷️ 5 5 501 -20 -カフンショウ 😷️ 5 5 501 -20 -ビョウキ 😷️ 5 5 501 -20 -マスク 😷️ 5 5 501 -20 -マスクガオ 😷️ 5 5 501 -20 -カオ 🤒️ 5 5 501 -20 -カゼ 🤒️ 5 5 501 -20 -タイオンケイ 🤒️ 5 5 501 -20 -ネツガアルカオ 🤒️ 5 5 501 -20 -ネツヲハカル 🤒️ 5 5 501 -20 -ビョウキ 🤒️ 5 5 501 -20 -カオ 🤕️ 5 5 501 -20 -ケガ 🤕️ 5 5 501 -20 -ケガシテルカオ 🤕️ 5 5 501 -20 -ホウタイ 🤕️ 5 5 501 -20 -ホウタイヲマイタカオ 🤕️ 5 5 501 -20 -カオ 🤢️ 5 5 501 -20 -キモチワルイ 🤢️ 5 5 501 -20 -グアイノワルイカオ 🤢️ 5 5 501 -20 -ハキケヲモヨオシテイルカオ 🤢️ 5 5 501 -20 -ビョウキ 🤢️ 5 5 501 -20 -オウトスルカオ 🤮️ 5 5 501 -20 -カオ 🤮️ 5 5 501 -20 -キモチワルイ 🤮️ 5 5 501 -20 -ゲロ 🤮️ 5 5 501 -20 -ビョウキ 🤮️ 5 5 501 -20 -カオ 🤧️ 5 5 501 -20 -カゼ 🤧️ 5 5 501 -20 -カフンショウ 🤧️ 5 5 501 -20 -クシャミ 🤧️ 5 5 501 -20 -クシャミスルカオ 🤧️ 5 5 501 -20 -アカイカオ 🥵️ 5 5 501 -20 -アセ 🥵️ 5 5 501 -20 -アツイカオ 🥵️ 5 5 501 -20 -アツサ 🥵️ 5 5 501 -20 -ネッチュウショウ 🥵️ 5 5 501 -20 -ハツネツ 🥵️ 5 5 501 -20 -アオイカオ 🥶️ 5 5 501 -20 -コゴエ 🥶️ 5 5 501 -20 -サムイカオ 🥶️ 5 5 501 -20 -サムサ 🥶️ 5 5 501 -20 -シモヤケ 🥶️ 5 5 501 -20 -ツララ 🥶️ 5 5 501 -20 -ウツロナメ 🥴️ 5 5 501 -20 -チュウドク 🥴️ 5 5 501 -20 -フラフラノカオ 🥴️ 5 5 501 -20 -ベロンベロン 🥴️ 5 5 501 -20 -ホロヨイ 🥴️ 5 5 501 -20 -メマイ 🥴️ 5 5 501 -20 -カオ 😵️ 5 5 501 -20 -フラフラ 😵️ 5 5 501 -20 -メマイ 😵️ 5 5 501 -20 -ウズマキ 😵‍💫️ 5 5 501 -20 -カオ 😵‍💫️ 5 5 501 -20 -グルグル 😵‍💫️ 5 5 501 -20 -コマル 😵‍💫️ 5 5 501 -20 -コンラン 😵‍💫️ 5 5 501 -20 -フラフラ 😵‍💫️ 5 5 501 -20 -メガグルグル 😵‍💫️ 5 5 501 -20 -メガマワル 😵‍💫️ 5 5 501 -20 -メマイ 😵‍💫️ 5 5 501 -20 -メヲマワシタカオ 😵‍💫️ 5 5 501 -20 -アタマバクハツ 🤯️ 5 5 501 -20 -オドロキ 🤯️ 5 5 501 -20 -カオ 🤯️ 5 5 501 -20 -ショック 🤯️ 5 5 501 -20 -バクハツ 🤯️ 5 5 501 -20 -ボンッ 🤯️ 5 5 501 -20 -カウガール 🤠️ 5 5 501 -20 -カウボーイ 🤠️ 5 5 501 -20 -カウボーイノカオ 🤠️ 5 5 501 -20 -カオ 🤠️ 5 5 501 -20 -オイワイ 🥳️ 5 5 501 -20 -パーティー 🥳️ 5 5 501 -20 -パーティーノカオ 🥳️ 5 5 501 -20 -フエ 🥳️ 5 5 501 -20 -ボウシ 🥳️ 5 5 501 -20 -カオ 🥸️ 5 5 501 -20 -カソウ 🥸️ 5 5 501 -20 -ヒゲ 🥸️ 5 5 501 -20 -ヘンソウ 🥸️ 5 5 501 -20 -ヘンソウシタカオ 🥸️ 5 5 501 -20 -メガネ 🥸️ 5 5 501 -20 -エガオ 😎️ 5 5 501 -20 -カオ 😎️ 5 5 501 -20 -クール 😎️ 5 5 501 -20 -サングラスデエガオ 😎️ 5 5 501 -20 -スマイル 😎️ 5 5 501 -20 -オタク 🤓️ 5 5 501 -20 -カオ 🤓️ 5 5 501 -20 -マニア 🤓️ 5 5 501 -20 -メガネ 🤓️ 5 5 501 -20 -カオ 🧐️ 5 5 501 -20 -カタメガネ 🧐️ 5 5 501 -20 -カンガエル 🧐️ 5 5 501 -20 -メガネ 🧐️ 5 5 501 -20 -モノクルヲツケタカオ 🧐️ 5 5 501 -20 -カオ 😕️ 5 5 501 -20 -コンラン 😕️ 5 5 501 -20 -コンワク 😕️ 5 5 501 -20 -カオ 🫤️ 5 5 501 -20 -ガッカリ 🫤️ 5 5 501 -20 -クチガナナメノカオ 🫤️ 5 5 501 -20 -コンワク 🫤️ 5 5 501 -20 -フフク 🫤️ 5 5 501 -20 -フマン 🫤️ 5 5 501 -20 -ムカンシン 🫤️ 5 5 501 -20 -ムキリョク 🫤️ 5 5 501 -20 -カオ 😟️ 5 5 501 -20 -シンパイ 😟️ 5 5 501 -20 -ナヤムカオ 😟️ 5 5 501 -20 -カオ 🙁️ 5 5 501 -20 -コマッタ 🙁️ 5 5 501 -20 -シカメッツラ 🙁️ 5 5 501 -20 -シカメツラ 🙁️ 5 5 501 -20 -スコシコマッタ 🙁️ 5 5 501 -20 -スコシコマッタカオ 🙁️ 5 5 501 -20 -カオ ☹️️ 5 5 501 -20 -コマッタ ☹️️ 5 5 501 -20 -コマッタカオ ☹️️ 5 5 501 -20 -シカメッツラ ☹️️ 5 5 501 -20 -シカメツラ ☹️️ 5 5 501 -20 -カオ 😮️ 5 5 501 -20 -キョウカン 😮️ 5 5 501 -20 -クチガヒライタカオ 😮️ 5 5 501 -20 -ヘー 😮️ 5 5 501 -20 -オドロキ 😯️ 5 5 501 -20 -カオ 😯️ 5 5 501 -20 -ビックリ 😯️ 5 5 501 -20 -ビックリガオ 😯️ 5 5 501 -20 -ポカーン 😯️ 5 5 501 -20 -オドロキ 😲️ 5 5 501 -20 -カオ 😲️ 5 5 501 -20 -キョウガク 😲️ 5 5 501 -20 -ビックリ 😲️ 5 5 501 -20 -ビックリシタカオ 😲️ 5 5 501 -20 -アカクナル 😳️ 5 5 501 -20 -カオ 😳️ 5 5 501 -20 -セキメン 😳️ 5 5 501 -20 -ウッタエルヨウナカオ 🥺️ 5 5 501 -20 -カオ 🥺️ 5 5 501 -20 -コイヌノメ 🥺️ 5 5 501 -20 -コンガン 🥺️ 5 5 501 -20 -ナサケ 🥺️ 5 5 501 -20 -ピエン 🥺️ 5 5 501 -20 -アリガトウ 🥹️ 5 5 501 -20 -ウルウル 🥹️ 5 5 501 -20 -ウレシイ 🥹️ 5 5 501 -20 -ウレシナミダ 🥹️ 5 5 501 -20 -カオ 🥹️ 5 5 501 -20 -コンガン 🥹️ 5 5 501 -20 -ナキガオ 🥹️ 5 5 501 -20 -ナミダ 🥹️ 5 5 501 -20 -ナミダヲコラエタカオ 🥹️ 5 5 501 -20 -アキレガオ 😦️ 5 5 501 -20 -カオ 😦️ 5 5 501 -20 -シカメガオ 😦️ 5 5 501 -20 -シカメッツラ 😦️ 5 5 501 -20 -シカメツラ 😦️ 5 5 501 -20 -フホンイ 😦️ 5 5 501 -20 -フマン 😦️ 5 5 501 -20 -カオ 😧️ 5 5 501 -20 -クノウ 😧️ 5 5 501 -20 -クモン 😧️ 5 5 501 -20 -アオザメ 😨️ 5 5 501 -20 -カオ 😨️ 5 5 501 -20 -ガーン 😨️ 5 5 501 -20 -アオザメ 😰️ 5 5 501 -20 -カオ 😰️ 5 5 501 -20 -ヒヤアセ 😰️ 5 5 501 -20 -ヒヤアセアオザメ 😰️ 5 5 501 -20 -アセ 😥️ 5 5 501 -20 -カオ 😥️ 5 5 501 -20 -コマッタ 😥️ 5 5 501 -20 -ドウシヨウ 😥️ 5 5 501 -20 -カオ 😢️ 5 5 501 -20 -カナシイ 😢️ 5 5 501 -20 -ナキガオ 😢️ 5 5 501 -20 -ナク 😢️ 5 5 501 -20 -ナミダ 😢️ 5 5 501 -20 -オオナキ 😭️ 5 5 501 -20 -カオ 😭️ 5 5 501 -20 -カナシイ 😭️ 5 5 501 -20 -ゴウキュウ 😭️ 5 5 501 -20 -ナク 😭️ 5 5 501 -20 -ナミダ 😭️ 5 5 501 -20 -カオ 😱️ 5 5 501 -20 -ガーン 😱️ 5 5 501 -20 -キョウフ 😱️ 5 5 501 -20 -サケビ 😱️ 5 5 501 -20 -ショック 😱️ 5 5 501 -20 -カオ 😖️ 5 5 501 -20 -コンラン 😖️ 5 5 501 -20 -コンワク 😖️ 5 5 501 -20 -コンワクシタカオ 😖️ 5 5 501 -20 -カオ 😣️ 5 5 501 -20 -ガマン 😣️ 5 5 501 -20 -カオ 😞️ 5 5 501 -20 -ガッカリ 😞️ 5 5 501 -20 -ガックリ 😞️ 5 5 501 -20 -シツボウシタカオ 😞️ 5 5 501 -20 -アセ 😓️ 5 5 501 -20 -カオ 😓️ 5 5 501 -20 -キモヲヒヤシタ 😓️ 5 5 501 -20 -ヒヤアセ 😓️ 5 5 501 -20 -アキラメ 😩️ 5 5 501 -20 -カオ 😩️ 5 5 501 -20 -ツカレ 😩️ 5 5 501 -20 -カオ 😫️ 5 5 501 -20 -ゲンカイ 😫️ 5 5 501 -20 -ツカレ 😫️ 5 5 501 -20 -ツカレタ 😫️ 5 5 501 -20 -アクビシタカオ 🥱️ 5 5 501 -20 -カオ 🥱️ 5 5 501 -20 -タイクツ 🥱️ 5 5 501 -20 -ツカレ 🥱️ 5 5 501 -20 -ネムイ 🥱️ 5 5 501 -20 -フアー 🥱️ 5 5 501 -20 -カオ 😤️ 5 5 501 -20 -カチホコッタカオ 😤️ 5 5 501 -20 -トクイゲ 😤️ 5 5 501 -20 -ハナイキ 😤️ 5 5 501 -20 -フンッ 😤️ 5 5 501 -20 -イカリ 😡️ 5 5 501 -20 -カオ 😡️ 5 5 501 -20 -カンカン 😡️ 5 5 501 -20 -ゲキド 😡️ 5 5 501 -20 -フクレッツラ 😡️ 5 5 501 -20 -プンプン 😡️ 5 5 501 -20 -イカリ 😠️ 5 5 501 -20 -カオ 😠️ 5 5 501 -20 -プンプン 😠️ 5 5 501 -20 -イカリ 🤬️ 5 5 501 -20 -カオ 🤬️ 5 5 501 -20 -ノノシリ 🤬️ 5 5 501 -20 -ノノシル 🤬️ 5 5 501 -20 -アクマ 😈️ 5 5 501 -20 -エガオ 😈️ 5 5 501 -20 -カオ 😈️ 5 5 501 -20 -スマイル 😈️ 5 5 501 -20 -デビル 😈️ 5 5 501 -20 -ワラッタアクマ 😈️ 5 5 501 -20 -アクマ 👿️ 5 5 501 -20 -オコッタアクマ 👿️ 5 5 501 -20 -カオ 👿️ 5 5 501 -20 -カンカン 👿️ 5 5 501 -20 -ゲキド 👿️ 5 5 501 -20 -デビル 👿️ 5 5 501 -20 -カオ 💀️ 5 5 501 -20 -ガイコツ 💀️ 5 5 501 -20 -シ 💀️ 5 5 501 -20 -スカル 💀️ 5 5 501 -20 -ドクロ 💀️ 5 5 501 -20 -カオ ☠️️ 5 5 501 -20 -ガイコツ ☠️️ 5 5 501 -20 -スカル ☠️️ 5 5 501 -20 -ドクロ ☠️️ 5 5 501 -20 -ドクロトホネ ☠️️ 5 5 501 -20 -ウンコ 💩️ 5 5 501 -20 -ウンチ 💩️ 5 5 501 -20 -カオ 💩️ 5 5 501 -20 -カオ 🤡️ 5 5 501 -20 -ピエロ 🤡️ 5 5 501 -20 -ピエロノカオ 🤡️ 5 5 501 -20 -オニ 👹️ 5 5 501 -20 -オメン 👹️ 5 5 501 -20 -カオ 👹️ 5 5 501 -20 -ナマハゲ 👹️ 5 5 501 -20 -バケモノ 👹️ 5 5 501 -20 -オメン 👺️ 5 5 501 -20 -カオ 👺️ 5 5 501 -20 -テング 👺️ 5 5 501 -20 -オバケ 👻️ 5 5 501 -20 -ゴースト 👻️ 5 5 501 -20 -ユウレイ 👻️ 5 5 501 -20 -ユーレイ 👻️ 5 5 501 -20 -イセイジン 👽️ 5 5 501 -20 -ウチュウジン 👽️ 5 5 501 -20 -エイリアン 👽️ 5 5 501 -20 -カオ 👽️ 5 5 501 -20 -グレイ 👽️ 5 5 501 -20 -ユーフォー 👽️ 5 5 501 -20 -イセイジン 👾️ 5 5 501 -20 -インベーダー 👾️ 5 5 501 -20 -ウチュウジン 👾️ 5 5 501 -20 -エイリアン 👾️ 5 5 501 -20 -カオ 👾️ 5 5 501 -20 -モンスター 👾️ 5 5 501 -20 -カオ 🤖️ 5 5 501 -20 -ロボット 🤖️ 5 5 501 -20 -エガオ 😺️ 5 5 501 -20 -カオ 😺️ 5 5 501 -20 -スマイル 😺️ 5 5 501 -20 -ニッコリワラウネコ 😺️ 5 5 501 -20 -ネコ 😺️ 5 5 501 -20 -エガオ 😸️ 5 5 501 -20 -カオ 😸️ 5 5 501 -20 -スマイル 😸️ 5 5 501 -20 -ニヤットワラウネコ 😸️ 5 5 501 -20 -ネコ 😸️ 5 5 501 -20 -ワラウ 😸️ 5 5 501 -20 -ウレシナキスルネコ 😹️ 5 5 501 -20 -エガオ 😹️ 5 5 501 -20 -カオ 😹️ 5 5 501 -20 -スマイル 😹️ 5 5 501 -20 -ナミダ 😹️ 5 5 501 -20 -ネコ 😹️ 5 5 501 -20 -エガオ 😻️ 5 5 501 -20 -カオ 😻️ 5 5 501 -20 -スマイル 😻️ 5 5 501 -20 -ネコ 😻️ 5 5 501 -20 -ハート 😻️ 5 5 501 -20 -メガハートノネコ 😻️ 5 5 501 -20 -カオ 😼️ 5 5 501 -20 -ニヤリ 😼️ 5 5 501 -20 -ニヤリトスルネコ 😼️ 5 5 501 -20 -ネコ 😼️ 5 5 501 -20 -フッ 😼️ 5 5 501 -20 -カオ 😽️ 5 5 501 -20 -キス 😽️ 5 5 501 -20 -チュッ 😽️ 5 5 501 -20 -ネコ 😽️ 5 5 501 -20 -ネコノキス 😽️ 5 5 501 -20 -カオ 🙀️ 5 5 501 -20 -ガーン 🙀️ 5 5 501 -20 -ショック 🙀️ 5 5 501 -20 -ゼツボウスルネコ 🙀️ 5 5 501 -20 -ネコ 🙀️ 5 5 501 -20 -ビックリ 🙀️ 5 5 501 -20 -カオ 😿️ 5 5 501 -20 -カナシイ 😿️ 5 5 501 -20 -ナイテイルネコ 😿️ 5 5 501 -20 -ナミダ 😿️ 5 5 501 -20 -ネコ 😿️ 5 5 501 -20 -カオ 😾️ 5 5 501 -20 -ネコ 😾️ 5 5 501 -20 -フキゲン 😾️ 5 5 501 -20 -フキゲンナネコ 😾️ 5 5 501 -20 -プンプン 😾️ 5 5 501 -20 -サル 🙈️ 5 5 501 -20 -サンザル 🙈️ 5 5 501 -20 -ミザル 🙈️ 5 5 501 -20 -キカザル 🙉️ 5 5 501 -20 -サル 🙉️ 5 5 501 -20 -サンザル 🙉️ 5 5 501 -20 -イワザル 🙊️ 5 5 501 -20 -サル 🙊️ 5 5 501 -20 -サンザル 🙊️ 5 5 501 -20 -コイブミ 💌️ 5 5 501 -20 -テガミ 💌️ 5 5 501 -20 -ハート 💌️ 5 5 501 -20 -フウトウ 💌️ 5 5 501 -20 -ラブレター 💌️ 5 5 501 -20 -キューピッド 💘️ 5 5 501 -20 -ハート 💘️ 5 5 501 -20 -ハートニヤ 💘️ 5 5 501 -20 -ハートノヤ 💘️ 5 5 501 -20 -ヤ 💘️ 5 5 501 -20 -ハート 💝️ 5 5 501 -20 -ハートニリボン 💝️ 5 5 501 -20 -バレンタイン 💝️ 5 5 501 -20 -バレンタインデー 💝️ 5 5 501 -20 -リボン 💝️ 5 5 501 -20 -キラキラ 💖️ 5 5 501 -20 -キラキラハート 💖️ 5 5 501 -20 -ハート 💖️ 5 5 501 -20 -ピカピカハート 💖️ 5 5 501 -20 -オオキクナルハート 💗️ 5 5 501 -20 -トキメキ 💗️ 5 5 501 -20 -ドキドキ 💗️ 5 5 501 -20 -ハート 💗️ 5 5 501 -20 -ドキドキ 💓️ 5 5 501 -20 -ドキドキスルハート 💓️ 5 5 501 -20 -ハート 💓️ 5 5 501 -20 -カイテンスルハート 💞️ 5 5 501 -20 -カワイイ 💞️ 5 5 501 -20 -ハート 💞️ 5 5 501 -20 -2ツノハート 💕️ 5 5 501 -20 -ハート 💕️ 5 5 501 -20 -フタツノハート 💕️ 5 5 501 -20 -ラブ 💕️ 5 5 501 -20 -ハート 💟️ 5 5 501 -20 -ハートデコ 💟️ 5 5 501 -20 -ハートデコレーション 💟️ 5 5 501 -20 -エクスクラメーションマーク ❣️️ 5 5 501 -20 -ハート ❣️️ 5 5 501 -20 -ハートノビックリ ❣️️ 5 5 501 -20 -ビックリマーク ❣️️ 5 5 501 -20 -シツレン 💔️ 5 5 501 -20 -ハート 💔️ 5 5 501 -20 -ハートブレイク 💔️ 5 5 501 -20 -ワカレタ 💔️ 5 5 501 -20 -ワレタハート 💔️ 5 5 501 -20 -アイ ❤️‍🔥️ 5 5 501 -20 -セイナルシンゾウ ❤️‍🔥️ 5 5 501 -20 -ネツイ ❤️‍🔥️ 5 5 501 -20 -ハート ❤️‍🔥️ 5 5 501 -20 -ヒノツイタ ❤️‍🔥️ 5 5 501 -20 -フンキ ❤️‍🔥️ 5 5 501 -20 -ホノオ ❤️‍🔥️ 5 5 501 -20 -モエルハート ❤️‍🔥️ 5 5 501 -20 -ヤルキ ❤️‍🔥️ 5 5 501 -20 -カイフクチュウ ❤️‍🩹️ 5 5 501 -20 -キズツイタ ❤️‍🩹️ 5 5 501 -20 -ケガ ❤️‍🩹️ 5 5 501 -20 -ショウシン ❤️‍🩹️ 5 5 501 -20 -チリョウチュウ ❤️‍🩹️ 5 5 501 -20 -ツライ ❤️‍🩹️ 5 5 501 -20 -ドウジョウ ❤️‍🩹️ 5 5 501 -20 -ハート ❤️‍🩹️ 5 5 501 -20 -ホウタイ ❤️‍🩹️ 5 5 501 -20 -ホウタイヲマイタハート ❤️‍🩹️ 5 5 501 -20 -アカイハート ❤️️ 5 5 501 -20 -クロハート ❤️️ 5 5 501 -20 -ハート ❤️️ 5 5 501 -20 -ハートマーク ❤️️ 5 5 501 -20 -オレンジノハート 🧡️ 5 5 501 -20 -ハート 🧡️ 5 5 501 -20 -キイロノハート 💛️ 5 5 501 -20 -ハート 💛️ 5 5 501 -20 -ハート 💚️ 5 5 501 -20 -ミドリノハート 💚️ 5 5 501 -20 -アオイハート 💙️ 5 5 501 -20 -ハート 💙️ 5 5 501 -20 -ハート 💜️ 5 5 501 -20 -ムラサキノハート 💜️ 5 5 501 -20 -チャイロイハート 🤎️ 5 5 501 -20 -ハート 🤎️ 5 5 501 -20 -クロイハート 🖤️ 5 5 501 -20 -ハート 🖤️ 5 5 501 -20 -シロイハート 🤍️ 5 5 501 -20 -ハート 🤍️ 5 5 501 -20 -キス 💋️ 5 5 501 -20 -キスマーク 💋️ 5 5 501 -20 -クチビル 💋️ 5 5 501 -20 -チュッ 💋️ 5 5 501 -20 -100 💯️ 5 5 501 -20 -100テン 💯️ 5 5 501 -20 -100テンマンテン 💯️ 5 5 501 -20 -ゼンモンセイカイ 💯️ 5 5 501 -20 -ヒャクテンマンテン 💯️ 5 5 501 -20 -マンテン 💯️ 5 5 501 -20 -イカリ 💢️ 5 5 501 -20 -ムカッ 💢️ 5 5 501 -20 -ショウゲキ 💥️ 5 5 501 -20 -ショウトツ 💥️ 5 5 501 -20 -ドンッ 💥️ 5 5 501 -20 -クラクラ 💫️ 5 5 501 -20 -ホシ 💫️ 5 5 501 -20 -メガマワル 💫️ 5 5 501 -20 -アセ 💦️ 5 5 501 -20 -アセアセ 💦️ 5 5 501 -20 -イソグ 💨️ 5 5 501 -20 -イソゲ 💨️ 5 5 501 -20 -ダッシュ 💨️ 5 5 501 -20 -ハシル 💨️ 5 5 501 -20 -アナ 🕳️️ 5 5 501 -20 -カイワ 💬️ 5 5 501 -20 -カイワノフキダシ 💬️ 5 5 501 -20 -セリフ 💬️ 5 5 501 -20 -フキダシ 💬️ 5 5 501 -20 -フキダシ 👁️‍🗨️️ 5 5 501 -20 -フキダシノメ 👁️‍🗨️️ 5 5 501 -20 -メ 👁️‍🗨️️ 5 5 501 -20 -モクゲキ 👁️‍🗨️️ 5 5 501 -20 -カイワ 🗨️️ 5 5 501 -20 -セリフ 🗨️️ 5 5 501 -20 -フキダシ 🗨️️ 5 5 501 -20 -フキダシヒダリ 🗨️️ 5 5 501 -20 -イカリノフキダシ 🗯️️ 5 5 501 -20 -フキダシ 🗯️️ 5 5 501 -20 -カンガエゴト 💭️ 5 5 501 -20 -クモガタノフキダシ 💭️ 5 5 501 -20 -フキダシ 💭️ 5 5 501 -20 -モクモク 💭️ 5 5 501 -20 -zzz 💤️ 5 5 501 -20 -イビキ 💤️ 5 5 501 -20 -グーグー 💤️ 5 5 501 -20 -ネル 💤️ 5 5 501 -20 -サヨナラ 👋️ 5 5 501 -20 -テ 👋️ 5 5 501 -20 -テヲフル 👋️ 5 5 501 -20 -バイバイ 👋️ 5 5 501 -20 -テ 🤚️ 5 5 501 -20 -テノコウ 🤚️ 5 5 501 -20 -テ 🖐️️ 5 5 501 -20 -パー 🖐️️ 5 5 501 -20 -ヒライタテ 🖐️️ 5 5 501 -20 -キョシュ ✋️ 5 5 501 -20 -テ ✋️ 5 5 501 -20 -テノヒラ ✋️ 5 5 501 -20 -パー ✋️ 5 5 501 -20 -スポック 🖖️ 5 5 501 -20 -テ 🖖️ 5 5 501 -20 -バルカンジン 🖖️ 5 5 501 -20 -バルカンノアイサツ 🖖️ 5 5 501 -20 -テ 🫱️ 5 5 501 -20 -ホウコウ 🫱️ 5 5 501 -20 -ミギ 🫱️ 5 5 501 -20 -ミギガワ 🫱️ 5 5 501 -20 -ミギニムケタテ 🫱️ 5 5 501 -20 -テ 🫲️ 5 5 501 -20 -ヒダリ 🫲️ 5 5 501 -20 -ヒダリガワ 🫲️ 5 5 501 -20 -ヒダリニムケタテ 🫲️ 5 5 501 -20 -ホウコウ 🫲️ 5 5 501 -20 -オトス 🫳️ 5 5 501 -20 -シタ 🫳️ 5 5 501 -20 -シタガワ 🫳️ 5 5 501 -20 -シタニムケタテ 🫳️ 5 5 501 -20 -テ 🫳️ 5 5 501 -20 -ウエ 🫴️ 5 5 501 -20 -ウエガワ 🫴️ 5 5 501 -20 -ウエニムケタテ 🫴️ 5 5 501 -20 -ウケル 🫴️ 5 5 501 -20 -テ 🫴️ 5 5 501 -20 -ok 👌️ 5 5 501 -20 -オッケー 👌️ 5 5 501 -20 -オーケー 👌️ 5 5 501 -20 -オーケーノテ 👌️ 5 5 501 -20 -テ 👌️ 5 5 501 -20 -ウワムキニスボメタテ 🤌️ 5 5 501 -20 -ジェスチャー 🤌️ 5 5 501 -20 -スボメル 🤌️ 5 5 501 -20 -テ 🤌️ 5 5 501 -20 -ユビ 🤌️ 5 5 501 -20 -スコシダケ 🤏️ 5 5 501 -20 -チョット 🤏️ 5 5 501 -20 -ツマンデイルユビ 🤏️ 5 5 501 -20 -テ 🤏️ 5 5 501 -20 -ユビ 🤏️ 5 5 501 -20 -チョキ ✌️️ 5 5 501 -20 -テ ✌️️ 5 5 501 -20 -ピース ✌️️ 5 5 501 -20 -ブイサイン ✌️️ 5 5 501 -20 -テ 🤞️ 5 5 501 -20 -ユビ 🤞️ 5 5 501 -20 -ユビヲクロス 🤞️ 5 5 501 -20 -オヤユビトヒトサシユビヲクロス 🫰️ 5 5 501 -20 -ダイスキ 🫰️ 5 5 501 -20 -テ 🫰️ 5 5 501 -20 -ハート 🫰️ 5 5 501 -20 -ユビ 🫰️ 5 5 501 -20 -ユビハート 🫰️ 5 5 501 -20 -ユビヲクロス 🫰️ 5 5 501 -20 -アイシテル 🤟️ 5 5 501 -20 -アイラブユー 🤟️ 5 5 501 -20 -テ 🤟️ 5 5 501 -20 -キツネ 🤘️ 5 5 501 -20 -ツノノユビサイン 🤘️ 5 5 501 -20 -テ 🤘️ 5 5 501 -20 -テ 🤙️ 5 5 501 -20 -デンワ 🤙️ 5 5 501 -20 -デンワノアイズ 🤙️ 5 5 501 -20 -デンワノジェスチャー 🤙️ 5 5 501 -20 -テ 👈️ 5 5 501 -20 -ヒダリ 👈️ 5 5 501 -20 -ヒダリユビサシ 👈️ 5 5 501 -20 -ヤジルシ 👈️ 5 5 501 -20 -ユビサシ 👈️ 5 5 501 -20 -ユビサス 👈️ 5 5 501 -20 -テ 👉️ 5 5 501 -20 -ミギ 👉️ 5 5 501 -20 -ミギユビサシ 👉️ 5 5 501 -20 -ヤジルシ 👉️ 5 5 501 -20 -ユビサシ 👉️ 5 5 501 -20 -ユビサス 👉️ 5 5 501 -20 -ウエ 👆️ 5 5 501 -20 -テ 👆️ 5 5 501 -20 -テノコウウエユビサシ 👆️ 5 5 501 -20 -テノコウジョウユビサシ 👆️ 5 5 501 -20 -ヤジルシ 👆️ 5 5 501 -20 -ユビサシ 👆️ 5 5 501 -20 -ユビサス 👆️ 5 5 501 -20 -ウエ 🖕️ 5 5 501 -20 -タテタナカユビ 🖕️ 5 5 501 -20 -テ 🖕️ 5 5 501 -20 -ナカユビ 🖕️ 5 5 501 -20 -ユビサシ 🖕️ 5 5 501 -20 -シタ 👇️ 5 5 501 -20 -シタユビサシ 👇️ 5 5 501 -20 -テ 👇️ 5 5 501 -20 -ヤジルシ 👇️ 5 5 501 -20 -ユビサシ 👇️ 5 5 501 -20 -ユビサス 👇️ 5 5 501 -20 -ウエ ☝️️ 5 5 501 -20 -ウエユビサシ ☝️️ 5 5 501 -20 -テ ☝️️ 5 5 501 -20 -ヒトサシユビ ☝️️ 5 5 501 -20 -ユビサシ ☝️️ 5 5 501 -20 -m9 🫵️ 5 5 501 -20 -オマエダ 🫵️ 5 5 501 -20 -テ 🫵️ 5 5 501 -20 -ヒトヲユビサシテイルテ 🫵️ 5 5 501 -20 -プギャー 🫵️ 5 5 501 -20 -ユビサシ 🫵️ 5 5 501 -20 -ok 👍️ 5 5 501 -20 -ウエ 👍️ 5 5 501 -20 -オッケー 👍️ 5 5 501 -20 -オヤユビ 👍️ 5 5 501 -20 -オヤユビサイン 👍️ 5 5 501 -20 -オーケー 👍️ 5 5 501 -20 -グッド 👍️ 5 5 501 -20 -サムアップ 👍️ 5 5 501 -20 -サムズアップ 👍️ 5 5 501 -20 -テ 👍️ 5 5 501 -20 -ng 👎️ 5 5 501 -20 -エヌジー 👎️ 5 5 501 -20 -サムズダウン 👎️ 5 5 501 -20 -シタ 👎️ 5 5 501 -20 -ダメ 👎️ 5 5 501 -20 -テ 👎️ 5 5 501 -20 -ブーイング 👎️ 5 5 501 -20 -ボツ 👎️ 5 5 501 -20 -グー ✊️ 5 5 501 -20 -ゲンコツ ✊️ 5 5 501 -20 -テ ✊️ 5 5 501 -20 -グー 👊️ 5 5 501 -20 -ゲンコツ 👊️ 5 5 501 -20 -テ 👊️ 5 5 501 -20 -パンチ 👊️ 5 5 501 -20 -コブシ 🤛️ 5 5 501 -20 -テ 🤛️ 5 5 501 -20 -パンチ 🤛️ 5 5 501 -20 -ヒダリ 🤛️ 5 5 501 -20 -ヒダリムキノコブシ 🤛️ 5 5 501 -20 -コブシ 🤜️ 5 5 501 -20 -テ 🤜️ 5 5 501 -20 -パンチ 🤜️ 5 5 501 -20 -ミギ 🤜️ 5 5 501 -20 -ミギムキノコブシ 🤜️ 5 5 501 -20 -テ 👏️ 5 5 501 -20 -ハクシュ 👏️ 5 5 501 -20 -パチパチ 👏️ 5 5 501 -20 -テ 🙌️ 5 5 501 -20 -テヲアゲル 🙌️ 5 5 501 -20 -バンザイ 🙌️ 5 5 501 -20 -リョウテ 🙌️ 5 5 501 -20 -アイ 🫶️ 5 5 501 -20 -テ 🫶️ 5 5 501 -20 -ハート 🫶️ 5 5 501 -20 -ハートガタノテ 🫶️ 5 5 501 -20 -ハートポーズ 🫶️ 5 5 501 -20 -ラブ 🫶️ 5 5 501 -20 -オッハー 👐️ 5 5 501 -20 -テ 👐️ 5 5 501 -20 -テノヒラ 👐️ 5 5 501 -20 -リョウテノヒラ 👐️ 5 5 501 -20 -イノリ 🤲️ 5 5 501 -20 -テ 🤲️ 5 5 501 -20 -テノヒラヲソロエタリョウテ 🤲️ 5 5 501 -20 -リョウテ 🤲️ 5 5 501 -20 -アクシュ 🤝️ 5 5 501 -20 -ゴウイ 🤝️ 5 5 501 -20 -テ 🤝️ 5 5 501 -20 -ヨロシク 🤝️ 5 5 501 -20 -イノリ 🙏️ 5 5 501 -20 -イノル 🙏️ 5 5 501 -20 -オネガイ 🙏️ 5 5 501 -20 -ガッショウ 🙏️ 5 5 501 -20 -ゴメンナサイ 🙏️ 5 5 501 -20 -リョウテ 🙏️ 5 5 501 -20 -カイテイルテ ✍️️ 5 5 501 -20 -テ ✍️️ 5 5 501 -20 -テガキ ✍️️ 5 5 501 -20 -テデカク ✍️️ 5 5 501 -20 -ツメ 💅️ 5 5 501 -20 -ネイル 💅️ 5 5 501 -20 -マニキュア 💅️ 5 5 501 -20 -マニキュアヲヌルテ 💅️ 5 5 501 -20 -ジドリ 🤳️ 5 5 501 -20 -ジブンドリ 🤳️ 5 5 501 -20 -スマホ 🤳️ 5 5 501 -20 -セルフィー 🤳️ 5 5 501 -20 -キントレ 💪️ 5 5 501 -20 -キンニク 💪️ 5 5 501 -20 -チカラコブ 💪️ 5 5 501 -20 -ムキムキ 💪️ 5 5 501 -20 -アクセシビリティ 🦾️ 5 5 501 -20 -ウデ 🦾️ 5 5 501 -20 -ギシュ 🦾️ 5 5 501 -20 -ジンコウソウグ 🦾️ 5 5 501 -20 -テ 🦾️ 5 5 501 -20 -アクセシビリティ 🦿️ 5 5 501 -20 -アシ 🦿️ 5 5 501 -20 -ギソク 🦿️ 5 5 501 -20 -ジンコウソウグ 🦿️ 5 5 501 -20 -アシ 🦵️ 5 5 501 -20 -キック 🦵️ 5 5 501 -20 -アシ 🦶️ 5 5 501 -20 -キック 🦶️ 5 5 501 -20 -ダンス 🦶️ 5 5 501 -20 -フミツケル 🦶️ 5 5 501 -20 -カオ 👂️ 5 5 501 -20 -カラダ 👂️ 5 5 501 -20 -ミミ 👂️ 5 5 501 -20 -アクセシビリティ 🦻️ 5 5 501 -20 -チョウカク 🦻️ 5 5 501 -20 -ホチョウキヲツケタミミ 🦻️ 5 5 501 -20 -ミミ 🦻️ 5 5 501 -20 -カオ 👃️ 5 5 501 -20 -カラダ 👃️ 5 5 501 -20 -ハナ 👃️ 5 5 501 -20 -アタマ 🧠️ 5 5 501 -20 -チシキ 🧠️ 5 5 501 -20 -ノウ 🧠️ 5 5 501 -20 -ノウミソ 🧠️ 5 5 501 -20 -コドウ 🫀️ 5 5 501 -20 -シンゾウ 🫀️ 5 5 501 -20 -シンパク 🫀️ 5 5 501 -20 -ゾウキ 🫀️ 5 5 501 -20 -ミャク 🫀️ 5 5 501 -20 -コキュウ 🫁️ 5 5 501 -20 -ゾウキ 🫁️ 5 5 501 -20 -ハイ 🫁️ 5 5 501 -20 -ハ 🦷️ 5 5 501 -20 -ハイシャ 🦷️ 5 5 501 -20 -コッカク 🦴️ 5 5 501 -20 -ホネ 🦴️ 5 5 501 -20 -カオ 👀️ 5 5 501 -20 -カラダ 👀️ 5 5 501 -20 -メ 👀️ 5 5 501 -20 -リョウメ 👀️ 5 5 501 -20 -カタメ 👁️️ 5 5 501 -20 -ヒトツメ 👁️️ 5 5 501 -20 -メ 👁️️ 5 5 501 -20 -カオ 👅️ 5 5 501 -20 -シタ 👅️ 5 5 501 -20 -ベロ 👅️ 5 5 501 -20 -ベー 👅️ 5 5 501 -20 -カオ 👄️ 5 5 501 -20 -キス 👄️ 5 5 501 -20 -クチ 👄️ 5 5 501 -20 -クチビル 👄️ 5 5 501 -20 -クチ 🫦️ 5 5 501 -20 -クチビル 🫦️ 5 5 501 -20 -クチビルヲカム 🫦️ 5 5 501 -20 -クチビルヲカンデイルクチ 🫦️ 5 5 501 -20 -クヤシイ 🫦️ 5 5 501 -20 -クヤシサ 🫦️ 5 5 501 -20 -ユウワク 🫦️ 5 5 501 -20 -アカチャン 👶️ 5 5 501 -20 -アカンボウ 👶️ 5 5 501 -20 -カオ 👶️ 5 5 501 -20 -ベビー 👶️ 5 5 501 -20 -カオ 🧒️ 5 5 501 -20 -コドモ 🧒️ 5 5 501 -20 -オトコノコ 👦️ 5 5 501 -20 -カオ 👦️ 5 5 501 -20 -コドモ 👦️ 5 5 501 -20 -ショウネン 👦️ 5 5 501 -20 -オンナ 👧️ 5 5 501 -20 -オンナノコ 👧️ 5 5 501 -20 -カオ 👧️ 5 5 501 -20 -コドモ 👧️ 5 5 501 -20 -ショウジョ 👧️ 5 5 501 -20 -オトナ 🧑️ 5 5 501 -20 -カオ 🧑️ 5 5 501 -20 -セイジン 🧑️ 5 5 501 -20 -カオ 👱️ 5 5 501 -20 -キンパツ 👱️ 5 5 501 -20 -キンパツノヒト 👱️ 5 5 501 -20 -ヒト 👱️ 5 5 501 -20 -ブロンド 👱️ 5 5 501 -20 -オトコ 👨️ 5 5 501 -20 -オトナ 👨️ 5 5 501 -20 -カオ 👨️ 5 5 501 -20 -ダンセイ 👨️ 5 5 501 -20 -アゴヒゲ 🧔️ 5 5 501 -20 -アゴヒゲノダンセイ 🧔️ 5 5 501 -20 -アゴヒゲノヒト 🧔️ 5 5 501 -20 -カオ 🧔️ 5 5 501 -20 -ヒゲ 🧔️ 5 5 501 -20 -ヒゲノハエタヒト 🧔️ 5 5 501 -20 -ヒト 🧔️ 5 5 501 -20 -アゴヒゲ 🧔‍♂️️ 5 5 501 -20 -アゴヒゲノダンセイ 🧔‍♂️️ 5 5 501 -20 -オトコ 🧔‍♂️️ 5 5 501 -20 -カオ 🧔‍♂️️ 5 5 501 -20 -ダンセイ 🧔‍♂️️ 5 5 501 -20 -ヒゲ 🧔‍♂️️ 5 5 501 -20 -ヒゲノハエタダンセイ 🧔‍♂️️ 5 5 501 -20 -アゴヒゲ 🧔‍♀️️ 5 5 501 -20 -アゴヒゲノジョセイ 🧔‍♀️️ 5 5 501 -20 -オンナ 🧔‍♀️️ 5 5 501 -20 -カオ 🧔‍♀️️ 5 5 501 -20 -ジョセイ 🧔‍♀️️ 5 5 501 -20 -ヒゲ 🧔‍♀️️ 5 5 501 -20 -ヒゲノハエタジョセイ 🧔‍♀️️ 5 5 501 -20 -アカゲ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦰️ 5 5 501 -20 -オトナ 👨‍🦰️ 5 5 501 -20 -カオ 👨‍🦰️ 5 5 501 -20 -ダンセイ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦰️ 5 5 501 -20 -カオ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦱️ 5 5 501 -20 -オトナ 👨‍🦱️ 5 5 501 -20 -カオ 👨‍🦱️ 5 5 501 -20 -ダンセイ 👨‍🦱️ 5 5 501 -20 -マキゲ 👨‍🦱️ 5 5 501 -20 -オトコ 👨‍🦱️ 5 5 501 -20 -カオ 👨‍🦱️ 5 5 501 -20 -カール 👨‍🦱️ 5 5 501 -20 -オトコ 👨‍🦳️ 5 5 501 -20 -オトナ 👨‍🦳️ 5 5 501 -20 -カオ 👨‍🦳️ 5 5 501 -20 -シラガ 👨‍🦳️ 5 5 501 -20 -ダンセイ 👨‍🦳️ 5 5 501 -20 -オトコ 👨‍🦳️ 5 5 501 -20 -カオ 👨‍🦳️ 5 5 501 -20 -オトコ 👨‍🦲️ 5 5 501 -20 -オトナ 👨‍🦲️ 5 5 501 -20 -カオ 👨‍🦲️ 5 5 501 -20 -ダンセイ 👨‍🦲️ 5 5 501 -20 -ハゲアタマ 👨‍🦲️ 5 5 501 -20 -オトコ 👨‍🦲️ 5 5 501 -20 -カオ 👨‍🦲️ 5 5 501 -20 -ハゲ 👨‍🦲️ 5 5 501 -20 -オトナ 👩️ 5 5 501 -20 -オンナ 👩️ 5 5 501 -20 -カオ 👩️ 5 5 501 -20 -ジョセイ 👩️ 5 5 501 -20 -アカゲ 👩‍🦰️ 5 5 501 -20 -オトナ 👩‍🦰️ 5 5 501 -20 -オンナ 👩‍🦰️ 5 5 501 -20 -カオ 👩‍🦰️ 5 5 501 -20 -ジョセイ 👩‍🦰️ 5 5 501 -20 -オンナ 👩‍🦰️ 5 5 501 -20 -カオ 👩‍🦰️ 5 5 501 -20 -アカゲ 🧑‍🦰️ 5 5 501 -20 -オトナ 🧑‍🦰️ 5 5 501 -20 -カオ 🧑‍🦰️ 5 5 501 -20 -セイジン 🧑‍🦰️ 5 5 501 -20 -カオ 🧑‍🦰️ 5 5 501 -20 -オトナ 👩‍🦱️ 5 5 501 -20 -オンナ 👩‍🦱️ 5 5 501 -20 -カオ 👩‍🦱️ 5 5 501 -20 -ジョセイ 👩‍🦱️ 5 5 501 -20 -マキゲ 👩‍🦱️ 5 5 501 -20 -オンナ 👩‍🦱️ 5 5 501 -20 -カオ 👩‍🦱️ 5 5 501 -20 -カール 👩‍🦱️ 5 5 501 -20 -オトナ 🧑‍🦱️ 5 5 501 -20 -カオ 🧑‍🦱️ 5 5 501 -20 -セイジン 🧑‍🦱️ 5 5 501 -20 -マキゲ 🧑‍🦱️ 5 5 501 -20 -カオ 🧑‍🦱️ 5 5 501 -20 -カール 🧑‍🦱️ 5 5 501 -20 -オトナ 👩‍🦳️ 5 5 501 -20 -オンナ 👩‍🦳️ 5 5 501 -20 -カオ 👩‍🦳️ 5 5 501 -20 -シラガ 👩‍🦳️ 5 5 501 -20 -ジョセイ 👩‍🦳️ 5 5 501 -20 -オンナ 👩‍🦳️ 5 5 501 -20 -カオ 👩‍🦳️ 5 5 501 -20 -オトナ 🧑‍🦳️ 5 5 501 -20 -カオ 🧑‍🦳️ 5 5 501 -20 -シラガ 🧑‍🦳️ 5 5 501 -20 -セイジン 🧑‍🦳️ 5 5 501 -20 -カオ 🧑‍🦳️ 5 5 501 -20 -オトナ 👩‍🦲️ 5 5 501 -20 -オンナ 👩‍🦲️ 5 5 501 -20 -カオ 👩‍🦲️ 5 5 501 -20 -ジョセイ 👩‍🦲️ 5 5 501 -20 -ハゲアタマ 👩‍🦲️ 5 5 501 -20 -オンナ 👩‍🦲️ 5 5 501 -20 -カオ 👩‍🦲️ 5 5 501 -20 -ハゲ 👩‍🦲️ 5 5 501 -20 -オトナ 🧑‍🦲️ 5 5 501 -20 -カオ 🧑‍🦲️ 5 5 501 -20 -セイジン 🧑‍🦲️ 5 5 501 -20 -ハゲアタマ 🧑‍🦲️ 5 5 501 -20 -カオ 🧑‍🦲️ 5 5 501 -20 -ハゲ 🧑‍🦲️ 5 5 501 -20 -オンナ 👱‍♀️️ 5 5 501 -20 -キンパツ 👱‍♀️️ 5 5 501 -20 -キンパツノジョセイ 👱‍♀️️ 5 5 501 -20 -ジョセイ 👱‍♀️️ 5 5 501 -20 -ブロンド 👱‍♀️️ 5 5 501 -20 -オトコ 👱‍♂️️ 5 5 501 -20 -キンパツ 👱‍♂️️ 5 5 501 -20 -キンパツノダンセイ 👱‍♂️️ 5 5 501 -20 -ダンセイ 👱‍♂️️ 5 5 501 -20 -ブロンド 👱‍♂️️ 5 5 501 -20 -オトシヨリ 🧓️ 5 5 501 -20 -カオ 🧓️ 5 5 501 -20 -コウレイシャ 🧓️ 5 5 501 -20 -ロウジン 🧓️ 5 5 501 -20 -オジイサン 👴️ 5 5 501 -20 -オトシヨリ 👴️ 5 5 501 -20 -カオ 👴️ 5 5 501 -20 -コウレイシャ 👴️ 5 5 501 -20 -ダンセイ 👴️ 5 5 501 -20 -ロウジン 👴️ 5 5 501 -20 -オトシヨリ 👵️ 5 5 501 -20 -オバアサン 👵️ 5 5 501 -20 -カオ 👵️ 5 5 501 -20 -コウレイシャ 👵️ 5 5 501 -20 -ジョセイ 👵️ 5 5 501 -20 -ロウジン 👵️ 5 5 501 -20 -キャラクター 🙍️ 5 5 501 -20 -シカメガオ 🙍️ 5 5 501 -20 -シカメッツラ 🙍️ 5 5 501 -20 -シカメッツラノヒト 🙍️ 5 5 501 -20 -シカメツラ 🙍️ 5 5 501 -20 -シカメツラノヒト 🙍️ 5 5 501 -20 -オトコ 🙍‍♂️️ 5 5 501 -20 -シカメガオ 🙍‍♂️️ 5 5 501 -20 -シカメッツラ 🙍‍♂️️ 5 5 501 -20 -シカメッツラノオトコ 🙍‍♂️️ 5 5 501 -20 -シカメツラノオトコ 🙍‍♂️️ 5 5 501 -20 -ダンセイ 🙍‍♂️️ 5 5 501 -20 -オンナ 🙍‍♀️️ 5 5 501 -20 -シカメガオ 🙍‍♀️️ 5 5 501 -20 -シカメッツラ 🙍‍♀️️ 5 5 501 -20 -シカメッツラノオンナ 🙍‍♀️️ 5 5 501 -20 -シカメツラノオンナ 🙍‍♀️️ 5 5 501 -20 -ジョセイ 🙍‍♀️️ 5 5 501 -20 -キャラクター 🙎️ 5 5 501 -20 -ヒト 🙎️ 5 5 501 -20 -フキゲン 🙎️ 5 5 501 -20 -フキゲンナヒト 🙎️ 5 5 501 -20 -プンプン 🙎️ 5 5 501 -20 -オトコ 🙎‍♂️️ 5 5 501 -20 -ダンセイ 🙎‍♂️️ 5 5 501 -20 -フキゲン 🙎‍♂️️ 5 5 501 -20 -フキゲンナオトコ 🙎‍♂️️ 5 5 501 -20 -プンプン 🙎‍♂️️ 5 5 501 -20 -オンナ 🙎‍♀️️ 5 5 501 -20 -ジョセイ 🙎‍♀️️ 5 5 501 -20 -フキゲン 🙎‍♀️️ 5 5 501 -20 -フキゲンナオンナ 🙎‍♀️️ 5 5 501 -20 -プンプン 🙎‍♀️️ 5 5 501 -20 -ng 🙅️ 5 5 501 -20 -エヌジー 🙅️ 5 5 501 -20 -ジェスチャー 🙅️ 5 5 501 -20 -ダメ 🙅️ 5 5 501 -20 -ダメノポーズヲスルヒト 🙅️ 5 5 501 -20 -バツ 🙅️ 5 5 501 -20 -ヒト 🙅️ 5 5 501 -20 -ng 🙅‍♂️️ 5 5 501 -20 -エヌジー 🙅‍♂️️ 5 5 501 -20 -オトコ 🙅‍♂️️ 5 5 501 -20 -ジェスチャー 🙅‍♂️️ 5 5 501 -20 -ダメノポーズヲスルオトコ 🙅‍♂️️ 5 5 501 -20 -ダンセイ 🙅‍♂️️ 5 5 501 -20 -バツ 🙅‍♂️️ 5 5 501 -20 -ng 🙅‍♀️️ 5 5 501 -20 -エヌジー 🙅‍♀️️ 5 5 501 -20 -オンナ 🙅‍♀️️ 5 5 501 -20 -ジェスチャー 🙅‍♀️️ 5 5 501 -20 -ジョセイ 🙅‍♀️️ 5 5 501 -20 -ダメノポーズヲスルオンナ 🙅‍♀️️ 5 5 501 -20 -バツ 🙅‍♀️️ 5 5 501 -20 -ok 🙆️ 5 5 501 -20 -オーケー 🙆️ 5 5 501 -20 -オーケーノポーズヲスルヒト 🙆️ 5 5 501 -20 -ジェスチャー 🙆️ 5 5 501 -20 -ヒト 🙆️ 5 5 501 -20 -マル 🙆️ 5 5 501 -20 -ok 🙆‍♂️️ 5 5 501 -20 -オッケー 🙆‍♂️️ 5 5 501 -20 -オーケー 🙆‍♂️️ 5 5 501 -20 -オーケーノポーズヲスルオトコ 🙆‍♂️️ 5 5 501 -20 -ジェスチャー 🙆‍♂️️ 5 5 501 -20 -ダンセイ 🙆‍♂️️ 5 5 501 -20 -マル 🙆‍♂️️ 5 5 501 -20 -ok 🙆‍♀️️ 5 5 501 -20 -オッケー 🙆‍♀️️ 5 5 501 -20 -オーケー 🙆‍♀️️ 5 5 501 -20 -オーケーノポーズヲスルオンナ 🙆‍♀️️ 5 5 501 -20 -ジェスチャー 🙆‍♀️️ 5 5 501 -20 -ジョセイ 🙆‍♀️️ 5 5 501 -20 -マル 🙆‍♀️️ 5 5 501 -20 -アンナイ 💁️ 5 5 501 -20 -アンナイスルヒト 💁️ 5 5 501 -20 -ウケツケ 💁️ 5 5 501 -20 -ウケツケジョウ 💁️ 5 5 501 -20 -カオ 💁️ 5 5 501 -20 -アンナイ 💁‍♂️️ 5 5 501 -20 -アンナイスルオトコ 💁‍♂️️ 5 5 501 -20 -オトコ 💁‍♂️️ 5 5 501 -20 -ジェスチャー 💁‍♂️️ 5 5 501 -20 -ダンセイ 💁‍♂️️ 5 5 501 -20 -アンナイ 💁‍♀️️ 5 5 501 -20 -アンナイスルオンナ 💁‍♀️️ 5 5 501 -20 -オンナ 💁‍♀️️ 5 5 501 -20 -ジェスチャー 💁‍♀️️ 5 5 501 -20 -ジョセイ 💁‍♀️️ 5 5 501 -20 -キョシュ 🙋️ 5 5 501 -20 -テヲアゲル 🙋️ 5 5 501 -20 -テヲアゲルジン 🙋️ 5 5 501 -20 -テヲアゲルヒト 🙋️ 5 5 501 -20 -ヒト 🙋️ 5 5 501 -20 -オトコ 🙋‍♂️️ 5 5 501 -20 -キョシュ 🙋‍♂️️ 5 5 501 -20 -ダンセイ 🙋‍♂️️ 5 5 501 -20 -テヲアゲル 🙋‍♂️️ 5 5 501 -20 -テヲアゲルオトコ 🙋‍♂️️ 5 5 501 -20 -オンナ 🙋‍♀️️ 5 5 501 -20 -キョシュ 🙋‍♀️️ 5 5 501 -20 -ジョセイ 🙋‍♀️️ 5 5 501 -20 -テヲアゲル 🙋‍♀️️ 5 5 501 -20 -テヲアゲルオンナ 🙋‍♀️️ 5 5 501 -20 -アクセシビリティ 🧏️ 5 5 501 -20 -キコエナイ 🧏️ 5 5 501 -20 -ショウガイ 🧏️ 5 5 501 -20 -チョウカク 🧏️ 5 5 501 -20 -ヒト 🧏️ 5 5 501 -20 -ミミノフジユウナヒト 🧏️ 5 5 501 -20 -アクセシビリティ 🧏‍♂️️ 5 5 501 -20 -ショウガイ 🧏‍♂️️ 5 5 501 -20 -ダンセイ 🧏‍♂️️ 5 5 501 -20 -チョウカク 🧏‍♂️️ 5 5 501 -20 -ミミノフジユウナダンセイ 🧏‍♂️️ 5 5 501 -20 -アクセシビリティ 🧏‍♀️️ 5 5 501 -20 -ショウガイ 🧏‍♀️️ 5 5 501 -20 -ジョセイ 🧏‍♀️️ 5 5 501 -20 -チョウカク 🧏‍♀️️ 5 5 501 -20 -ミミノフジユウナジョセイ 🧏‍♀️️ 5 5 501 -20 -オジギ 🙇️ 5 5 501 -20 -オジギスルヒト 🙇️ 5 5 501 -20 -ゴメンナサイ 🙇️ 5 5 501 -20 -ドゲザ 🙇️ 5 5 501 -20 -オジギ 🙇‍♂️️ 5 5 501 -20 -オジギスルオトコ 🙇‍♂️️ 5 5 501 -20 -オトコ 🙇‍♂️️ 5 5 501 -20 -ゴメンナサイ 🙇‍♂️️ 5 5 501 -20 -ダンセイ 🙇‍♂️️ 5 5 501 -20 -ドゲザ 🙇‍♂️️ 5 5 501 -20 -オジギ 🙇‍♀️️ 5 5 501 -20 -オジギスルオンナ 🙇‍♀️️ 5 5 501 -20 -オンナ 🙇‍♀️️ 5 5 501 -20 -ゴメンナサイ 🙇‍♀️️ 5 5 501 -20 -ジョセイ 🙇‍♀️️ 5 5 501 -20 -ドゲザ 🙇‍♀️️ 5 5 501 -20 -アチャー 🤦️ 5 5 501 -20 -ジェスチャー 🤦️ 5 5 501 -20 -ヒタイニテ 🤦️ 5 5 501 -20 -ヒタイニテヲアテルヒト 🤦️ 5 5 501 -20 -アチャー 🤦‍♂️️ 5 5 501 -20 -オトコ 🤦‍♂️️ 5 5 501 -20 -ジェスチャー 🤦‍♂️️ 5 5 501 -20 -ダンセイ 🤦‍♂️️ 5 5 501 -20 -ヒタイニテ 🤦‍♂️️ 5 5 501 -20 -ヒタイニテヲアテルオトコ 🤦‍♂️️ 5 5 501 -20 -アチャー 🤦‍♀️️ 5 5 501 -20 -オンナ 🤦‍♀️️ 5 5 501 -20 -ジェスチャー 🤦‍♀️️ 5 5 501 -20 -ジョセイ 🤦‍♀️️ 5 5 501 -20 -ヒタイニテ 🤦‍♀️️ 5 5 501 -20 -ヒタイニテヲアテルオンナ 🤦‍♀️️ 5 5 501 -20 -オテアゲ 🤷️ 5 5 501 -20 -オテアゲスルヒト 🤷️ 5 5 501 -20 -ジェスチャー 🤷️ 5 5 501 -20 -オテアゲ 🤷‍♂️️ 5 5 501 -20 -オテアゲスルオトコ 🤷‍♂️️ 5 5 501 -20 -オトコ 🤷‍♂️️ 5 5 501 -20 -ジェスチャー 🤷‍♂️️ 5 5 501 -20 -ダンセイ 🤷‍♂️️ 5 5 501 -20 -オテアゲ 🤷‍♀️️ 5 5 501 -20 -オテアゲスルオンナ 🤷‍♀️️ 5 5 501 -20 -オンナ 🤷‍♀️️ 5 5 501 -20 -ジェスチャー 🤷‍♀️️ 5 5 501 -20 -ジョセイ 🤷‍♀️️ 5 5 501 -20 -イシ 🧑‍⚕️️ 5 5 501 -20 -イシャ 🧑‍⚕️️ 5 5 501 -20 -セラピスト 🧑‍⚕️️ 5 5 501 -20 -イシ 👨‍⚕️️ 5 5 501 -20 -イシャ 👨‍⚕️️ 5 5 501 -20 -オトコ 👨‍⚕️️ 5 5 501 -20 -ダンセイ 👨‍⚕️️ 5 5 501 -20 -ダンセイノイシャ 👨‍⚕️️ 5 5 501 -20 -イシ 👩‍⚕️️ 5 5 501 -20 -イシャ 👩‍⚕️️ 5 5 501 -20 -オンナ 👩‍⚕️️ 5 5 501 -20 -ジョセイ 👩‍⚕️️ 5 5 501 -20 -ジョセイノイシャ 👩‍⚕️️ 5 5 501 -20 -カクボウ 🧑‍🎓️ 5 5 501 -20 -ガクセイ 🧑‍🎓️ 5 5 501 -20 -ソツギョウ 🧑‍🎓️ 5 5 501 -20 -オトコ 👨‍🎓️ 5 5 501 -20 -カクボウ 👨‍🎓️ 5 5 501 -20 -ガクセイ 👨‍🎓️ 5 5 501 -20 -ソツギョウ 👨‍🎓️ 5 5 501 -20 -ダンシガクセイ 👨‍🎓️ 5 5 501 -20 -ダンセイ 👨‍🎓️ 5 5 501 -20 -オンナ 👩‍🎓️ 5 5 501 -20 -カクボウ 👩‍🎓️ 5 5 501 -20 -ガクセイ 👩‍🎓️ 5 5 501 -20 -ジョシガクセイ 👩‍🎓️ 5 5 501 -20 -ジョセイ 👩‍🎓️ 5 5 501 -20 -ソツギョウ 👩‍🎓️ 5 5 501 -20 -キョウシ 🧑‍🏫️ 5 5 501 -20 -キョウジュ 🧑‍🏫️ 5 5 501 -20 -コウシ 🧑‍🏫️ 5 5 501 -20 -センセイ 🧑‍🏫️ 5 5 501 -20 -タンニン 🧑‍🏫️ 5 5 501 -20 -オトコ 👨‍🏫️ 5 5 501 -20 -キョウシ 👨‍🏫️ 5 5 501 -20 -キョウジュ 👨‍🏫️ 5 5 501 -20 -センセイ 👨‍🏫️ 5 5 501 -20 -ダンセイ 👨‍🏫️ 5 5 501 -20 -ダンセイノキョウシ 👨‍🏫️ 5 5 501 -20 -オンナ 👩‍🏫️ 5 5 501 -20 -キョウシ 👩‍🏫️ 5 5 501 -20 -キョウジュ 👩‍🏫️ 5 5 501 -20 -ジョセイ 👩‍🏫️ 5 5 501 -20 -ジョセイノキョウシ 👩‍🏫️ 5 5 501 -20 -センセイ 👩‍🏫️ 5 5 501 -20 -サイバン 🧑‍⚖️️ 5 5 501 -20 -サイバンカン 🧑‍⚖️️ 5 5 501 -20 -オトコ 👨‍⚖️️ 5 5 501 -20 -サイバン 👨‍⚖️️ 5 5 501 -20 -サイバンカン 👨‍⚖️️ 5 5 501 -20 -ダンセイ 👨‍⚖️️ 5 5 501 -20 -ダンセイノサイバンカン 👨‍⚖️️ 5 5 501 -20 -オンナ 👩‍⚖️️ 5 5 501 -20 -サイバン 👩‍⚖️️ 5 5 501 -20 -サイバンカン 👩‍⚖️️ 5 5 501 -20 -ジョセイ 👩‍⚖️️ 5 5 501 -20 -ジョセイノサイバンカン 👩‍⚖️️ 5 5 501 -20 -ガーデナー 🧑‍🌾️ 5 5 501 -20 -ノウカ 🧑‍🌾️ 5 5 501 -20 -ノウギョウ 🧑‍🌾️ 5 5 501 -20 -ノウジョウヌシ 🧑‍🌾️ 5 5 501 -20 -オトコ 👨‍🌾️ 5 5 501 -20 -ダンセイ 👨‍🌾️ 5 5 501 -20 -ノウカ 👨‍🌾️ 5 5 501 -20 -ノウカノダンセイ 👨‍🌾️ 5 5 501 -20 -ノウフ 👨‍🌾️ 5 5 501 -20 -オンナ 👩‍🌾️ 5 5 501 -20 -ジョセイ 👩‍🌾️ 5 5 501 -20 -ノウカ 👩‍🌾️ 5 5 501 -20 -ノウカノジョセイ 👩‍🌾️ 5 5 501 -20 -コック 🧑‍🍳️ 5 5 501 -20 -シェフ 🧑‍🍳️ 5 5 501 -20 -リョウリ 🧑‍🍳️ 5 5 501 -20 -オトコ 👨‍🍳️ 5 5 501 -20 -コック 👨‍🍳️ 5 5 501 -20 -シェフ 👨‍🍳️ 5 5 501 -20 -ダンセイ 👨‍🍳️ 5 5 501 -20 -ダンセイノコック 👨‍🍳️ 5 5 501 -20 -リョウリ 👨‍🍳️ 5 5 501 -20 -オンナ 👩‍🍳️ 5 5 501 -20 -コック 👩‍🍳️ 5 5 501 -20 -シェフ 👩‍🍳️ 5 5 501 -20 -ジョセイ 👩‍🍳️ 5 5 501 -20 -ジョセイノコック 👩‍🍳️ 5 5 501 -20 -リョウリ 👩‍🍳️ 5 5 501 -20 -コウサク 🧑‍🔧️ 5 5 501 -20 -サギョウイン 🧑‍🔧️ 5 5 501 -20 -スパナ 🧑‍🔧️ 5 5 501 -20 -セイビシ 🧑‍🔧️ 5 5 501 -20 -メカニック 🧑‍🔧️ 5 5 501 -20 -オトコ 👨‍🔧️ 5 5 501 -20 -コウサク 👨‍🔧️ 5 5 501 -20 -スパナ 👨‍🔧️ 5 5 501 -20 -ダンセイ 👨‍🔧️ 5 5 501 -20 -ダンセイノセイビシ 👨‍🔧️ 5 5 501 -20 -メカニック 👨‍🔧️ 5 5 501 -20 -オンナ 👩‍🔧️ 5 5 501 -20 -コウサク 👩‍🔧️ 5 5 501 -20 -ジョセイ 👩‍🔧️ 5 5 501 -20 -ジョセイノセイビシ 👩‍🔧️ 5 5 501 -20 -スパナ 👩‍🔧️ 5 5 501 -20 -メカニック 👩‍🔧️ 5 5 501 -20 -コウイン 🧑‍🏭️ 5 5 501 -20 -コウジョウ 🧑‍🏭️ 5 5 501 -20 -モノヅクリ 🧑‍🏭️ 5 5 501 -20 -ヨウセツコウ 🧑‍🏭️ 5 5 501 -20 -オトコ 👨‍🏭️ 5 5 501 -20 -ダンセイ 👨‍🏭️ 5 5 501 -20 -ダンセイノヨウセツコウ 👨‍🏭️ 5 5 501 -20 -ヨウセツ 👨‍🏭️ 5 5 501 -20 -オンナ 👩‍🏭️ 5 5 501 -20 -ジョセイ 👩‍🏭️ 5 5 501 -20 -ジョセイノヨウセツコウ 👩‍🏭️ 5 5 501 -20 -ヨウセツ 👩‍🏭️ 5 5 501 -20 -カイシャイン 🧑‍💼️ 5 5 501 -20 -サラリーマン 🧑‍💼️ 5 5 501 -20 -ビジネスパーソン 🧑‍💼️ 5 5 501 -20 -カイシャイン 👨‍💼️ 5 5 501 -20 -サラリーマン 👨‍💼️ 5 5 501 -20 -ダンセイ 👨‍💼️ 5 5 501 -20 -ダンセイカイシャイン 👨‍💼️ 5 5 501 -20 -ビジネスパーソン 👨‍💼️ 5 5 501 -20 -ビジネスマン 👨‍💼️ 5 5 501 -20 -ol 👩‍💼️ 5 5 501 -20 -オーエル 👩‍💼️ 5 5 501 -20 -オール 👩‍💼️ 5 5 501 -20 -カイシャイン 👩‍💼️ 5 5 501 -20 -サラリーマン 👩‍💼️ 5 5 501 -20 -ジョセイ 👩‍💼️ 5 5 501 -20 -ジョセイカイシャイン 👩‍💼️ 5 5 501 -20 -ビジネスパーソン 👩‍💼️ 5 5 501 -20 -カガクシャ 🧑‍🔬️ 5 5 501 -20 -セイブツガクシャ 🧑‍🔬️ 5 5 501 -20 -ブツリガクシャ 🧑‍🔬️ 5 5 501 -20 -オトコ 👨‍🔬️ 5 5 501 -20 -カガクシャ 👨‍🔬️ 5 5 501 -20 -ダンセイ 👨‍🔬️ 5 5 501 -20 -ダンセイカガクシャ 👨‍🔬️ 5 5 501 -20 -オンナ 👩‍🔬️ 5 5 501 -20 -カガクシャ 👩‍🔬️ 5 5 501 -20 -ジョセイ 👩‍🔬️ 5 5 501 -20 -ジョセイカガクシャ 👩‍🔬️ 5 5 501 -20 -カイハツシャ 🧑‍💻️ 5 5 501 -20 -ギジュツシャ 🧑‍💻️ 5 5 501 -20 -コンピュータ 🧑‍💻️ 5 5 501 -20 -パソコン 🧑‍💻️ 5 5 501 -20 -プログラマ 🧑‍💻️ 5 5 501 -20 -カイハツシャ 👨‍💻️ 5 5 501 -20 -コンピュータ 👨‍💻️ 5 5 501 -20 -ダンセイ 👨‍💻️ 5 5 501 -20 -ダンセイギジュツシャ 👨‍💻️ 5 5 501 -20 -デベロッパ 👨‍💻️ 5 5 501 -20 -パソコン 👨‍💻️ 5 5 501 -20 -プログラマ 👨‍💻️ 5 5 501 -20 -カイハツシャ 👩‍💻️ 5 5 501 -20 -コンピュータ 👩‍💻️ 5 5 501 -20 -ジョセイ 👩‍💻️ 5 5 501 -20 -ジョセイギジュツシャ 👩‍💻️ 5 5 501 -20 -デベロッパ 👩‍💻️ 5 5 501 -20 -パソコン 👩‍💻️ 5 5 501 -20 -プログラマ 👩‍💻️ 5 5 501 -20 -アーティスト 🧑‍🎤️ 5 5 501 -20 -カシュ 🧑‍🎤️ 5 5 501 -20 -シンガー 🧑‍🎤️ 5 5 501 -20 -スター 🧑‍🎤️ 5 5 501 -20 -ロッカー 🧑‍🎤️ 5 5 501 -20 -アーティスト 👨‍🎤️ 5 5 501 -20 -オトコ 👨‍🎤️ 5 5 501 -20 -カシュ 👨‍🎤️ 5 5 501 -20 -シンガー 👨‍🎤️ 5 5 501 -20 -ダンセイ 👨‍🎤️ 5 5 501 -20 -ダンセイカシュ 👨‍🎤️ 5 5 501 -20 -アーティスト 👩‍🎤️ 5 5 501 -20 -オンナ 👩‍🎤️ 5 5 501 -20 -カシュ 👩‍🎤️ 5 5 501 -20 -シンガー 👩‍🎤️ 5 5 501 -20 -ジョセイ 👩‍🎤️ 5 5 501 -20 -ジョセイカシュ 👩‍🎤️ 5 5 501 -20 -アーティスト 🧑‍🎨️ 5 5 501 -20 -エカキ 🧑‍🎨️ 5 5 501 -20 -ガカ 🧑‍🎨️ 5 5 501 -20 -ゲイジュツカ 🧑‍🎨️ 5 5 501 -20 -アーティスト 👨‍🎨️ 5 5 501 -20 -オトコ 👨‍🎨️ 5 5 501 -20 -ガカ 👨‍🎨️ 5 5 501 -20 -ゲイジュツカ 👨‍🎨️ 5 5 501 -20 -ダンセイ 👨‍🎨️ 5 5 501 -20 -ダンセイノゲイジュツカ 👨‍🎨️ 5 5 501 -20 -アーティスト 👩‍🎨️ 5 5 501 -20 -オンナ 👩‍🎨️ 5 5 501 -20 -ガカ 👩‍🎨️ 5 5 501 -20 -ゲイジュツカ 👩‍🎨️ 5 5 501 -20 -ジョセイ 👩‍🎨️ 5 5 501 -20 -ジョセイノゲイジュツカ 👩‍🎨️ 5 5 501 -20 -キチョウ 🧑‍✈️️ 5 5 501 -20 -ソウジュウシ 🧑‍✈️️ 5 5 501 -20 -パイロット 🧑‍✈️️ 5 5 501 -20 -オトコ 👨‍✈️️ 5 5 501 -20 -ソウジュウシ 👨‍✈️️ 5 5 501 -20 -ダンセイ 👨‍✈️️ 5 5 501 -20 -ダンセイパイロット 👨‍✈️️ 5 5 501 -20 -オンナ 👩‍✈️️ 5 5 501 -20 -ジョセイ 👩‍✈️️ 5 5 501 -20 -ジョセイパイロット 👩‍✈️️ 5 5 501 -20 -ソウジュウシ 👩‍✈️️ 5 5 501 -20 -ウチュウヒコウシ 🧑‍🚀️ 5 5 501 -20 -ロケット 🧑‍🚀️ 5 5 501 -20 -ウチュウヒコウシ 👨‍🚀️ 5 5 501 -20 -オトコ 👨‍🚀️ 5 5 501 -20 -ダンセイ 👨‍🚀️ 5 5 501 -20 -ダンセイウチュウヒコウシ 👨‍🚀️ 5 5 501 -20 -ウチュウヒコウシ 👩‍🚀️ 5 5 501 -20 -オンナ 👩‍🚀️ 5 5 501 -20 -ジョセイ 👩‍🚀️ 5 5 501 -20 -ジョセイウチュウヒコウシ 👩‍🚀️ 5 5 501 -20 -キュウジョタイ 🧑‍🚒️ 5 5 501 -20 -ショウボウシ 🧑‍🚒️ 5 5 501 -20 -レスキュー 🧑‍🚒️ 5 5 501 -20 -オトコ 👨‍🚒️ 5 5 501 -20 -ショウボウシ 👨‍🚒️ 5 5 501 -20 -ダンセイ 👨‍🚒️ 5 5 501 -20 -ダンセイショウボウシ 👨‍🚒️ 5 5 501 -20 -オンナ 👩‍🚒️ 5 5 501 -20 -ショウボウシ 👩‍🚒️ 5 5 501 -20 -ジョセイ 👩‍🚒️ 5 5 501 -20 -ジョセイショウボウシ 👩‍🚒️ 5 5 501 -20 -オマワリサン 👮️ 5 5 501 -20 -カオ 👮️ 5 5 501 -20 -ケイカン 👮️ 5 5 501 -20 -ケイサツ 👮️ 5 5 501 -20 -ケイサツカン 👮️ 5 5 501 -20 -ポリス 👮️ 5 5 501 -20 -オマワリサン 👮‍♂️️ 5 5 501 -20 -ケイカン 👮‍♂️️ 5 5 501 -20 -ケイサツ 👮‍♂️️ 5 5 501 -20 -ケイサツカン 👮‍♂️️ 5 5 501 -20 -ダンセイ 👮‍♂️️ 5 5 501 -20 -ダンセイケイサツカン 👮‍♂️️ 5 5 501 -20 -オマワリサン 👮‍♀️️ 5 5 501 -20 -ケイカン 👮‍♀️️ 5 5 501 -20 -ケイサツ 👮‍♀️️ 5 5 501 -20 -ケイサツカン 👮‍♀️️ 5 5 501 -20 -ジョセイ 👮‍♀️️ 5 5 501 -20 -ジョセイケイサツカン 👮‍♀️️ 5 5 501 -20 -スパイ 🕵️️ 5 5 501 -20 -タンテイ 🕵️️ 5 5 501 -20 -ムシメガネ 🕵️️ 5 5 501 -20 -オトコ 🕵️‍♂️️ 5 5 501 -20 -タンテイ 🕵️‍♂️️ 5 5 501 -20 -ダンセイ 🕵️‍♂️️ 5 5 501 -20 -ダンセイノタンテイ 🕵️‍♂️️ 5 5 501 -20 -ムシメガネ 🕵️‍♂️️ 5 5 501 -20 -オンナ 🕵️‍♀️️ 5 5 501 -20 -ジョセイ 🕵️‍♀️️ 5 5 501 -20 -ジョセイノタンテイ 🕵️‍♀️️ 5 5 501 -20 -タンテイ 🕵️‍♀️️ 5 5 501 -20 -ムシメガネ 🕵️‍♀️️ 5 5 501 -20 -エイヘイ 💂️ 5 5 501 -20 -カオ 💂️ 5 5 501 -20 -ケイビ 💂️ 5 5 501 -20 -シュエイ 💂️ 5 5 501 -20 -モンバン 💂️ 5 5 501 -20 -エイヘイ 💂‍♂️️ 5 5 501 -20 -ケイビ 💂‍♂️️ 5 5 501 -20 -シュエイ 💂‍♂️️ 5 5 501 -20 -ダンセイ 💂‍♂️️ 5 5 501 -20 -ダンセイノエイヘイ 💂‍♂️️ 5 5 501 -20 -モンバン 💂‍♂️️ 5 5 501 -20 -エイヘイ 💂‍♀️️ 5 5 501 -20 -ケイビ 💂‍♀️️ 5 5 501 -20 -シュエイ 💂‍♀️️ 5 5 501 -20 -ジョセイ 💂‍♀️️ 5 5 501 -20 -ジョセイノエイヘイ 💂‍♀️️ 5 5 501 -20 -モンバン 💂‍♀️️ 5 5 501 -20 -オンミツ 🥷️ 5 5 501 -20 -クサノモノ 🥷️ 5 5 501 -20 -シノビ 🥷️ 5 5 501 -20 -スパイ 🥷️ 5 5 501 -20 -ニンジャ 🥷️ 5 5 501 -20 -ニンジュツ 🥷️ 5 5 501 -20 -カオ 👷️ 5 5 501 -20 -カナヅチ 👷️ 5 5 501 -20 -ケンセツサギョウイン 👷️ 5 5 501 -20 -コウジ 👷️ 5 5 501 -20 -ハンマー 👷️ 5 5 501 -20 -ヘルメット 👷️ 5 5 501 -20 -ケンセツサギョウイン 👷‍♂️️ 5 5 501 -20 -コウジ 👷‍♂️️ 5 5 501 -20 -ダンセイ 👷‍♂️️ 5 5 501 -20 -ダンセイノケンセツサギョウイン 👷‍♂️️ 5 5 501 -20 -ハンマー 👷‍♂️️ 5 5 501 -20 -ヘルメット 👷‍♂️️ 5 5 501 -20 -ケンセツサギョウイン 👷‍♀️️ 5 5 501 -20 -コウジ 👷‍♀️️ 5 5 501 -20 -ジョセイ 👷‍♀️️ 5 5 501 -20 -ジョセイノケンセツサギョウイン 👷‍♀️️ 5 5 501 -20 -ハンマー 👷‍♀️️ 5 5 501 -20 -ヘルメット 👷‍♀️️ 5 5 501 -20 -オウカンヲカブッタヒト 🫅️ 5 5 501 -20 -オウケ 🫅️ 5 5 501 -20 -オウサマ 🫅️ 5 5 501 -20 -オウゾク 🫅️ 5 5 501 -20 -クンシュ 🫅️ 5 5 501 -20 -ヒト 🫅️ 5 5 501 -20 -オウジ 🤴️ 5 5 501 -20 -オトコ 🤴️ 5 5 501 -20 -ダンセイ 🤴️ 5 5 501 -20 -プリンス 🤴️ 5 5 501 -20 -オウジョ 👸️ 5 5 501 -20 -オヒメサマ 👸️ 5 5 501 -20 -オンナ 👸️ 5 5 501 -20 -カオ 👸️ 5 5 501 -20 -クイーン 👸️ 5 5 501 -20 -ジョセイ 👸️ 5 5 501 -20 -プリンセス 👸️ 5 5 501 -20 -カオ 👳️ 5 5 501 -20 -ターバン 👳️ 5 5 501 -20 -ターバンノヒト 👳️ 5 5 501 -20 -オトコ 👳‍♂️️ 5 5 501 -20 -ターバン 👳‍♂️️ 5 5 501 -20 -ターバンノダンセイ 👳‍♂️️ 5 5 501 -20 -ダンセイ 👳‍♂️️ 5 5 501 -20 -オンナ 👳‍♀️️ 5 5 501 -20 -ジョセイ 👳‍♀️️ 5 5 501 -20 -ターバン 👳‍♀️️ 5 5 501 -20 -ターバンノジョセイ 👳‍♀️️ 5 5 501 -20 -オトコ 👲️ 5 5 501 -20 -オワンボウ 👲️ 5 5 501 -20 -カオ 👲️ 5 5 501 -20 -ダンセイ 👲️ 5 5 501 -20 -チュウカボウノダンセイ 👲️ 5 5 501 -20 -オンナ 🧕️ 5 5 501 -20 -ジョセイ 🧕️ 5 5 501 -20 -スカーフ 🧕️ 5 5 501 -20 -スカーフノジョセイ 🧕️ 5 5 501 -20 -ヒジャブ 🧕️ 5 5 501 -20 -ベール 🧕️ 5 5 501 -20 -オトコ 🤵️ 5 5 501 -20 -ケッコン 🤵️ 5 5 501 -20 -タキシード 🤵️ 5 5 501 -20 -タキシードノヒト 🤵️ 5 5 501 -20 -ダンセイ 🤵️ 5 5 501 -20 -ハナムコ 🤵️ 5 5 501 -20 -オトコ 🤵‍♂️️ 5 5 501 -20 -タキシード 🤵‍♂️️ 5 5 501 -20 -タキシードノオトコ 🤵‍♂️️ 5 5 501 -20 -タキシードノダンセイ 🤵‍♂️️ 5 5 501 -20 -ダンセイ 🤵‍♂️️ 5 5 501 -20 -オンナ 🤵‍♀️️ 5 5 501 -20 -ジョセイ 🤵‍♀️️ 5 5 501 -20 -タキシード 🤵‍♀️️ 5 5 501 -20 -タキシードノオンナ 🤵‍♀️️ 5 5 501 -20 -タキシードノジョセイ 🤵‍♀️️ 5 5 501 -20 -オンナ 👰️ 5 5 501 -20 -カオ 👰️ 5 5 501 -20 -ケッコン 👰️ 5 5 501 -20 -ジョセイ 👰️ 5 5 501 -20 -ハナヨメ 👰️ 5 5 501 -20 -ベールノヒト 👰️ 5 5 501 -20 -オトコ 👰‍♂️️ 5 5 501 -20 -ダンセイ 👰‍♂️️ 5 5 501 -20 -ベール 👰‍♂️️ 5 5 501 -20 -ベールノダンセイ 👰‍♂️️ 5 5 501 -20 -オンナ 👰‍♀️️ 5 5 501 -20 -ジョセイ 👰‍♀️️ 5 5 501 -20 -ベール 👰‍♀️️ 5 5 501 -20 -ベールノジョセイ 👰‍♀️️ 5 5 501 -20 -オンナ 🤰️ 5 5 501 -20 -ジョセイ 🤰️ 5 5 501 -20 -ニンシン 🤰️ 5 5 501 -20 -ニンプ 🤰️ 5 5 501 -20 -オトコ 🫃️ 5 5 501 -20 -ダンセイ 🫃️ 5 5 501 -20 -ニンシン 🫃️ 5 5 501 -20 -ニンシンシタダンセイ 🫃️ 5 5 501 -20 -ニンシンシタヒト 🫃️ 5 5 501 -20 -ニンプ 🫃️ 5 5 501 -20 -ヒト 🫃️ 5 5 501 -20 -オナカ 🫄️ 5 5 501 -20 -ニンシン 🫄️ 5 5 501 -20 -ニンシンシタヒト 🫄️ 5 5 501 -20 -ニンプ 🫄️ 5 5 501 -20 -ヒト 🫄️ 5 5 501 -20 -アカチャン 🤱️ 5 5 501 -20 -オンナ 🤱️ 5 5 501 -20 -ジュニュウ 🤱️ 5 5 501 -20 -ジョセイ 🤱️ 5 5 501 -20 -ミルク 🤱️ 5 5 501 -20 -アカチャン 👩‍🍼️ 5 5 501 -20 -オンナ 👩‍🍼️ 5 5 501 -20 -ジュニュウ 👩‍🍼️ 5 5 501 -20 -ジュニュウスルジョセイ 👩‍🍼️ 5 5 501 -20 -ジョセイ 👩‍🍼️ 5 5 501 -20 -アカチャン 👨‍🍼️ 5 5 501 -20 -オトコ 👨‍🍼️ 5 5 501 -20 -ジュニュウ 👨‍🍼️ 5 5 501 -20 -ジュニュウスルダンセイ 👨‍🍼️ 5 5 501 -20 -ダンセイ 👨‍🍼️ 5 5 501 -20 -アカチャン 🧑‍🍼️ 5 5 501 -20 -ジュニュウ 🧑‍🍼️ 5 5 501 -20 -ジュニュウスルヒト 🧑‍🍼️ 5 5 501 -20 -ヒト 🧑‍🍼️ 5 5 501 -20 -エンジェル 👼️ 5 5 501 -20 -カオ 👼️ 5 5 501 -20 -テンシ 👼️ 5 5 501 -20 -カオ 🎅️ 5 5 501 -20 -クリスマス 🎅️ 5 5 501 -20 -サンタ 🎅️ 5 5 501 -20 -サンタクロース 🎅️ 5 5 501 -20 -オンナ 🤶️ 5 5 501 -20 -クリスマス 🤶️ 5 5 501 -20 -サンタクロース 🤶️ 5 5 501 -20 -ジョセイ 🤶️ 5 5 501 -20 -ジョセイノサンタ 🤶️ 5 5 501 -20 -クリスマス 🧑‍🎄️ 5 5 501 -20 -サンタクロース 🧑‍🎄️ 5 5 501 -20 -サンタサン 🧑‍🎄️ 5 5 501 -20 -スーパーヒーロー 🦸️ 5 5 501 -20 -ゼン 🦸️ 5 5 501 -20 -チョウジン 🦸️ 5 5 501 -20 -ヒロイン 🦸️ 5 5 501 -20 -ヒーロー 🦸️ 5 5 501 -20 -ゼン 🦸‍♂️️ 5 5 501 -20 -ダンセイ 🦸‍♂️️ 5 5 501 -20 -ダンセイノスーパーヒーロー 🦸‍♂️️ 5 5 501 -20 -チョウジン 🦸‍♂️️ 5 5 501 -20 -ヒーロー 🦸‍♂️️ 5 5 501 -20 -ジョセイ 🦸‍♀️️ 5 5 501 -20 -ジョセイノスーパーヒーロー 🦸‍♀️️ 5 5 501 -20 -ゼン 🦸‍♀️️ 5 5 501 -20 -チョウジン 🦸‍♀️️ 5 5 501 -20 -ヒロイン 🦸‍♀️️ 5 5 501 -20 -ヒーロー 🦸‍♀️️ 5 5 501 -20 -アク 🦹️ 5 5 501 -20 -アクヤク 🦹️ 5 5 501 -20 -チョウジン 🦹️ 5 5 501 -20 -ハンニン 🦹️ 5 5 501 -20 -ワル 🦹️ 5 5 501 -20 -ヴィラン 🦹️ 5 5 501 -20 -アク 🦹‍♂️️ 5 5 501 -20 -ダンセイ 🦹‍♂️️ 5 5 501 -20 -ダンセイノアクヤク 🦹‍♂️️ 5 5 501 -20 -チョウジン 🦹‍♂️️ 5 5 501 -20 -ハンニン 🦹‍♂️️ 5 5 501 -20 -ワル 🦹‍♂️️ 5 5 501 -20 -ヴィラン 🦹‍♂️️ 5 5 501 -20 -アク 🦹‍♀️️ 5 5 501 -20 -ジョセイ 🦹‍♀️️ 5 5 501 -20 -ジョセイノアクヤク 🦹‍♀️️ 5 5 501 -20 -チョウジン 🦹‍♀️️ 5 5 501 -20 -ハンニン 🦹‍♀️️ 5 5 501 -20 -ワル 🦹‍♀️️ 5 5 501 -20 -ヴィラン 🦹‍♀️️ 5 5 501 -20 -マジョ 🧙️ 5 5 501 -20 -マホウ 🧙️ 5 5 501 -20 -マホウツカイ 🧙️ 5 5 501 -20 -オトコ 🧙‍♂️️ 5 5 501 -20 -オトコノマホウツカイ 🧙‍♂️️ 5 5 501 -20 -ダンセイ 🧙‍♂️️ 5 5 501 -20 -マホウツカイ 🧙‍♂️️ 5 5 501 -20 -オンナ 🧙‍♀️️ 5 5 501 -20 -オンナノマホウツカイ 🧙‍♀️️ 5 5 501 -20 -ジョセイ 🧙‍♀️️ 5 5 501 -20 -マジョ 🧙‍♀️️ 5 5 501 -20 -マホウツカイ 🧙‍♀️️ 5 5 501 -20 -オベロン 🧚️ 5 5 501 -20 -デンセツ 🧚️ 5 5 501 -20 -パック 🧚️ 5 5 501 -20 -マホウ 🧚️ 5 5 501 -20 -ヨウセイ 🧚️ 5 5 501 -20 -オトコ 🧚‍♂️️ 5 5 501 -20 -オトコノヨウセイ 🧚‍♂️️ 5 5 501 -20 -ダンセイ 🧚‍♂️️ 5 5 501 -20 -ヨウセイ 🧚‍♂️️ 5 5 501 -20 -オンナ 🧚‍♀️️ 5 5 501 -20 -オンナノヨウセイ 🧚‍♀️️ 5 5 501 -20 -ジョセイ 🧚‍♀️️ 5 5 501 -20 -ヨウセイ 🧚‍♀️️ 5 5 501 -20 -キュウケツキ 🧛️ 5 5 501 -20 -ドラキュラ 🧛️ 5 5 501 -20 -バンパイア 🧛️ 5 5 501 -20 -オトコ 🧛‍♂️️ 5 5 501 -20 -オトコノキュウケツキ 🧛‍♂️️ 5 5 501 -20 -キュウケツキ 🧛‍♂️️ 5 5 501 -20 -ダンセイ 🧛‍♂️️ 5 5 501 -20 -ドラキュラ 🧛‍♂️️ 5 5 501 -20 -バンパイア 🧛‍♂️️ 5 5 501 -20 -オンナ 🧛‍♀️️ 5 5 501 -20 -オンナノキュウケツキ 🧛‍♀️️ 5 5 501 -20 -キュウケツキ 🧛‍♀️️ 5 5 501 -20 -ジョセイ 🧛‍♀️️ 5 5 501 -20 -ドラキュラ 🧛‍♀️️ 5 5 501 -20 -バンパイア 🧛‍♀️️ 5 5 501 -20 -ニンギョ 🧜️ 5 5 501 -20 -マーマン 🧜️ 5 5 501 -20 -マーメイド 🧜️ 5 5 501 -20 -オトコ 🧜‍♂️️ 5 5 501 -20 -ダンセイ 🧜‍♂️️ 5 5 501 -20 -ニンギョ 🧜‍♂️️ 5 5 501 -20 -マーマン 🧜‍♂️️ 5 5 501 -20 -オンナ 🧜‍♀️️ 5 5 501 -20 -ジョセイ 🧜‍♀️️ 5 5 501 -20 -ニンギョ 🧜‍♀️️ 5 5 501 -20 -マーメイド 🧜‍♀️️ 5 5 501 -20 -エルフ 🧝️ 5 5 501 -20 -コヨウセイ 🧝️ 5 5 501 -20 -ヨウセイ 🧝️ 5 5 501 -20 -エルフ 🧝‍♂️️ 5 5 501 -20 -オトコ 🧝‍♂️️ 5 5 501 -20 -オトコノエルフ 🧝‍♂️️ 5 5 501 -20 -ダンセイ 🧝‍♂️️ 5 5 501 -20 -エルフ 🧝‍♀️️ 5 5 501 -20 -オンナ 🧝‍♀️️ 5 5 501 -20 -オンナノエルフ 🧝‍♀️️ 5 5 501 -20 -ジョセイ 🧝‍♀️️ 5 5 501 -20 -セイレイ 🧞️ 5 5 501 -20 -マジン 🧞️ 5 5 501 -20 -オトコ 🧞‍♂️️ 5 5 501 -20 -オトコノセイレイ 🧞‍♂️️ 5 5 501 -20 -セイレイ 🧞‍♂️️ 5 5 501 -20 -ダンセイ 🧞‍♂️️ 5 5 501 -20 -マジン 🧞‍♂️️ 5 5 501 -20 -オンナ 🧞‍♀️️ 5 5 501 -20 -オンナノセイレイ 🧞‍♀️️ 5 5 501 -20 -ジョセイ 🧞‍♀️️ 5 5 501 -20 -セイレイ 🧞‍♀️️ 5 5 501 -20 -マジン 🧞‍♀️️ 5 5 501 -20 -ゾンビ 🧟️ 5 5 501 -20 -ホラー 🧟️ 5 5 501 -20 -オトコ 🧟‍♂️️ 5 5 501 -20 -オトコノゾンビ 🧟‍♂️️ 5 5 501 -20 -ゾンビ 🧟‍♂️️ 5 5 501 -20 -ダンセイ 🧟‍♂️️ 5 5 501 -20 -ホラー 🧟‍♂️️ 5 5 501 -20 -オンナ 🧟‍♀️️ 5 5 501 -20 -オンナノゾンビ 🧟‍♀️️ 5 5 501 -20 -ジョセイ 🧟‍♀️️ 5 5 501 -20 -ゾンビ 🧟‍♀️️ 5 5 501 -20 -ホラー 🧟‍♀️️ 5 5 501 -20 -オトギバナシ 🧌️ 5 5 501 -20 -トロール 🧌️ 5 5 501 -20 -ファンタジー 🧌️ 5 5 501 -20 -モンスター 🧌️ 5 5 501 -20 -エステ 💆️ 5 5 501 -20 -フェイスマッサージ 💆️ 5 5 501 -20 -フェイスマッサージチュウノヒト 💆️ 5 5 501 -20 -マッサージ 💆️ 5 5 501 -20 -エステ 💆‍♂️️ 5 5 501 -20 -オトコ 💆‍♂️️ 5 5 501 -20 -ダンセイ 💆‍♂️️ 5 5 501 -20 -フェイスマッサージ 💆‍♂️️ 5 5 501 -20 -フェイスマッサージチュウノオトコ 💆‍♂️️ 5 5 501 -20 -マッサージ 💆‍♂️️ 5 5 501 -20 -エステ 💆‍♀️️ 5 5 501 -20 -オンナ 💆‍♀️️ 5 5 501 -20 -ジョセイ 💆‍♀️️ 5 5 501 -20 -フェイスマッサージ 💆‍♀️️ 5 5 501 -20 -フェイスマッサージチュウノオンナ 💆‍♀️️ 5 5 501 -20 -マッサージ 💆‍♀️️ 5 5 501 -20 -サンパツ 💇️ 5 5 501 -20 -サンパツサレルヒト 💇️ 5 5 501 -20 -トコヤ 💇️ 5 5 501 -20 -ビヨウイン 💇️ 5 5 501 -20 -ビヨウシツ 💇️ 5 5 501 -20 -ヘアカット 💇️ 5 5 501 -20 -サンパツサレルオトコ 💇‍♂️️ 5 5 501 -20 -ダンセイ 💇‍♂️️ 5 5 501 -20 -トコヤ 💇‍♂️️ 5 5 501 -20 -ビヨウイン 💇‍♂️️ 5 5 501 -20 -ビヨウシツ 💇‍♂️️ 5 5 501 -20 -ヘアカット 💇‍♂️️ 5 5 501 -20 -サンパツサレルオンナ 💇‍♀️️ 5 5 501 -20 -ジョセイ 💇‍♀️️ 5 5 501 -20 -トコヤ 💇‍♀️️ 5 5 501 -20 -ビヨウイン 💇‍♀️️ 5 5 501 -20 -ビヨウシツ 💇‍♀️️ 5 5 501 -20 -ヘアカット 💇‍♀️️ 5 5 501 -20 -アルクヒト 🚶️ 5 5 501 -20 -ウォーキング 🚶️ 5 5 501 -20 -ホコウ 🚶️ 5 5 501 -20 -ホコウシャ 🚶️ 5 5 501 -20 -アルクオトコ 🚶‍♂️️ 5 5 501 -20 -ウォーキング 🚶‍♂️️ 5 5 501 -20 -ダンセイ 🚶‍♂️️ 5 5 501 -20 -ホコウ 🚶‍♂️️ 5 5 501 -20 -ホコウシャ 🚶‍♂️️ 5 5 501 -20 -アルクオンナ 🚶‍♀️️ 5 5 501 -20 -ウォーキング 🚶‍♀️️ 5 5 501 -20 -ジョセイ 🚶‍♀️️ 5 5 501 -20 -ホコウ 🚶‍♀️️ 5 5 501 -20 -ホコウシャ 🚶‍♀️️ 5 5 501 -20 -キリツ 🧍️ 5 5 501 -20 -タッテイル 🧍️ 5 5 501 -20 -タツヒト 🧍️ 5 5 501 -20 -ヒト 🧍️ 5 5 501 -20 -キリツ 🧍‍♂️️ 5 5 501 -20 -タツオトコ 🧍‍♂️️ 5 5 501 -20 -ダンセイ 🧍‍♂️️ 5 5 501 -20 -キリツ 🧍‍♀️️ 5 5 501 -20 -ジョセイ 🧍‍♀️️ 5 5 501 -20 -タツオンナ 🧍‍♀️️ 5 5 501 -20 -スワル 🧎️ 5 5 501 -20 -セイザスルヒト 🧎️ 5 5 501 -20 -ヒザマズク 🧎️ 5 5 501 -20 -ヒト 🧎️ 5 5 501 -20 -スワル 🧎‍♂️️ 5 5 501 -20 -セイザスルダンセイ 🧎‍♂️️ 5 5 501 -20 -ダンセイ 🧎‍♂️️ 5 5 501 -20 -ヒザマズク 🧎‍♂️️ 5 5 501 -20 -ジョセイ 🧎‍♀️️ 5 5 501 -20 -スワル 🧎‍♀️️ 5 5 501 -20 -セイザスルジョセイ 🧎‍♀️️ 5 5 501 -20 -ヒザマズク 🧎‍♀️️ 5 5 501 -20 -アクセシビリティ 🧑‍🦯️ 5 5 501 -20 -シカク 🧑‍🦯️ 5 5 501 -20 -ショウガイ 🧑‍🦯️ 5 5 501 -20 -ツエヲツイタヒト 🧑‍🦯️ 5 5 501 -20 -メ 🧑‍🦯️ 5 5 501 -20 -アクセシビリティ 👨‍🦯️ 5 5 501 -20 -シカク 👨‍🦯️ 5 5 501 -20 -ショウガイ 👨‍🦯️ 5 5 501 -20 -ダンセイ 👨‍🦯️ 5 5 501 -20 -ツエヲツイタダンセイ 👨‍🦯️ 5 5 501 -20 -メ 👨‍🦯️ 5 5 501 -20 -アクセシビリティ 👩‍🦯️ 5 5 501 -20 -シカク 👩‍🦯️ 5 5 501 -20 -ショウガイ 👩‍🦯️ 5 5 501 -20 -ジョセイ 👩‍🦯️ 5 5 501 -20 -ツエヲツイタジョセイ 👩‍🦯️ 5 5 501 -20 -メ 👩‍🦯️ 5 5 501 -20 -アクセシビリティ 🧑‍🦼️ 5 5 501 -20 -クルマイス 🧑‍🦼️ 5 5 501 -20 -ショウガイ 🧑‍🦼️ 5 5 501 -20 -デンドウクルマイスノヒト 🧑‍🦼️ 5 5 501 -20 -アクセシビリティ 👨‍🦼️ 5 5 501 -20 -クルマイス 👨‍🦼️ 5 5 501 -20 -ショウガイ 👨‍🦼️ 5 5 501 -20 -ダンセイ 👨‍🦼️ 5 5 501 -20 -デンドウクルマイスノダンセイ 👨‍🦼️ 5 5 501 -20 -アクセシビリティ 👩‍🦼️ 5 5 501 -20 -クルマイス 👩‍🦼️ 5 5 501 -20 -ショウガイ 👩‍🦼️ 5 5 501 -20 -ジョセイ 👩‍🦼️ 5 5 501 -20 -デンドウクルマイスノジョセイ 👩‍🦼️ 5 5 501 -20 -アクセシビリティ 🧑‍🦽️ 5 5 501 -20 -クルマイス 🧑‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノヒト 🧑‍🦽️ 5 5 501 -20 -ショウガイ 🧑‍🦽️ 5 5 501 -20 -アクセシビリティ 👨‍🦽️ 5 5 501 -20 -クルマイス 👨‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノダンセイ 👨‍🦽️ 5 5 501 -20 -ショウガイ 👨‍🦽️ 5 5 501 -20 -ダンセイ 👨‍🦽️ 5 5 501 -20 -アクセシビリティ 👩‍🦽️ 5 5 501 -20 -クルマイス 👩‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノジョセイ 👩‍🦽️ 5 5 501 -20 -ショウガイ 👩‍🦽️ 5 5 501 -20 -ジョセイ 👩‍🦽️ 5 5 501 -20 -ジョギング 🏃️ 5 5 501 -20 -スポーツ 🏃️ 5 5 501 -20 -ハシルヒト 🏃️ 5 5 501 -20 -マラソン 🏃️ 5 5 501 -20 -ランナー 🏃️ 5 5 501 -20 -ランニング 🏃️ 5 5 501 -20 -ジョギング 🏃‍♂️️ 5 5 501 -20 -ダンセイ 🏃‍♂️️ 5 5 501 -20 -ハシルオトコ 🏃‍♂️️ 5 5 501 -20 -マラソン 🏃‍♂️️ 5 5 501 -20 -ランナー 🏃‍♂️️ 5 5 501 -20 -ランニング 🏃‍♂️️ 5 5 501 -20 -ジョギング 🏃‍♀️️ 5 5 501 -20 -ジョセイ 🏃‍♀️️ 5 5 501 -20 -ハシルオンナ 🏃‍♀️️ 5 5 501 -20 -マラソン 🏃‍♀️️ 5 5 501 -20 -ランナー 🏃‍♀️️ 5 5 501 -20 -ランニング 🏃‍♀️️ 5 5 501 -20 -オドリコ 💃️ 5 5 501 -20 -オドルオンナ 💃️ 5 5 501 -20 -ジョセイ 💃️ 5 5 501 -20 -ダンサー 💃️ 5 5 501 -20 -ダンス 💃️ 5 5 501 -20 -フラメンコ 💃️ 5 5 501 -20 -オトコ 🕺️ 5 5 501 -20 -オドルオトコ 🕺️ 5 5 501 -20 -ダンサー 🕺️ 5 5 501 -20 -ダンス 🕺️ 5 5 501 -20 -ダンセイ 🕺️ 5 5 501 -20 -ウイテルビジネスマン 🕴️️ 5 5 501 -20 -オトコ 🕴️️ 5 5 501 -20 -クウチュウフユウ 🕴️️ 5 5 501 -20 -スーツ 🕴️️ 5 5 501 -20 -ダンセイ 🕴️️ 5 5 501 -20 -ビジネスマン 🕴️️ 5 5 501 -20 -ウサミミ 👯️ 5 5 501 -20 -カオ 👯️ 5 5 501 -20 -ダンサー 👯️ 5 5 501 -20 -バニー 👯️ 5 5 501 -20 -バニーガール 👯️ 5 5 501 -20 -バニーボーイ 👯️ 5 5 501 -20 -パーティー 👯️ 5 5 501 -20 -ウサミミ 👯‍♂️️ 5 5 501 -20 -オトコ 👯‍♂️️ 5 5 501 -20 -ダンサー 👯‍♂️️ 5 5 501 -20 -ダンセイ 👯‍♂️️ 5 5 501 -20 -バニーボーイ 👯‍♂️️ 5 5 501 -20 -パーティー 👯‍♂️️ 5 5 501 -20 -ウサミミ 👯‍♀️️ 5 5 501 -20 -オンナ 👯‍♀️️ 5 5 501 -20 -ジョセイ 👯‍♀️️ 5 5 501 -20 -ダンサー 👯‍♀️️ 5 5 501 -20 -バニーガール 👯‍♀️️ 5 5 501 -20 -パーティー 👯‍♀️️ 5 5 501 -20 -サウナ 🧖️ 5 5 501 -20 -サウナニハイルヒト 🧖️ 5 5 501 -20 -オトコ 🧖‍♂️️ 5 5 501 -20 -サウナ 🧖‍♂️️ 5 5 501 -20 -サウナニハイルオトコ 🧖‍♂️️ 5 5 501 -20 -ダンセイ 🧖‍♂️️ 5 5 501 -20 -オンナ 🧖‍♀️️ 5 5 501 -20 -サウナ 🧖‍♀️️ 5 5 501 -20 -サウナニハイルオンナ 🧖‍♀️️ 5 5 501 -20 -ジョセイ 🧖‍♀️️ 5 5 501 -20 -トザン 🧗️ 5 5 501 -20 -ヤマノボリ 🧗️ 5 5 501 -20 -ヤマヲノボルヒト 🧗️ 5 5 501 -20 -オトコ 🧗‍♂️️ 5 5 501 -20 -ダンセイ 🧗‍♂️️ 5 5 501 -20 -トザン 🧗‍♂️️ 5 5 501 -20 -ヤマノボリ 🧗‍♂️️ 5 5 501 -20 -ヤマヲノボルオトコ 🧗‍♂️️ 5 5 501 -20 -オンナ 🧗‍♀️️ 5 5 501 -20 -ジョセイ 🧗‍♀️️ 5 5 501 -20 -トザン 🧗‍♀️️ 5 5 501 -20 -ヤマノボリ 🧗‍♀️️ 5 5 501 -20 -ヤマヲノボルオンナ 🧗‍♀️️ 5 5 501 -20 -スポーツ 🤺️ 5 5 501 -20 -フェンシング 🤺️ 5 5 501 -20 -フェンシングヲスルヒト 🤺️ 5 5 501 -20 -キシュ 🏇️ 5 5 501 -20 -ケイバ 🏇️ 5 5 501 -20 -ジョウバ 🏇️ 5 5 501 -20 -ジョッキー 🏇️ 5 5 501 -20 -スポーツ 🏇️ 5 5 501 -20 -スキー ⛷️️ 5 5 501 -20 -スキーヤー ⛷️️ 5 5 501 -20 -ストック ⛷️️ 5 5 501 -20 -スポーツ ⛷️️ 5 5 501 -20 -スノボ 🏂️ 5 5 501 -20 -スノーボーダー 🏂️ 5 5 501 -20 -スノーボード 🏂️ 5 5 501 -20 -スポーツ 🏂️ 5 5 501 -20 -ゴルフ 🏌️️ 5 5 501 -20 -ゴルファー 🏌️️ 5 5 501 -20 -ゴルフヲスルヒト 🏌️️ 5 5 501 -20 -スポーツ 🏌️️ 5 5 501 -20 -オトコ 🏌️‍♂️️ 5 5 501 -20 -ゴルフ 🏌️‍♂️️ 5 5 501 -20 -ゴルファー 🏌️‍♂️️ 5 5 501 -20 -ゴルフヲスルオトコ 🏌️‍♂️️ 5 5 501 -20 -スポーツ 🏌️‍♂️️ 5 5 501 -20 -ダンセイ 🏌️‍♂️️ 5 5 501 -20 -オンナ 🏌️‍♀️️ 5 5 501 -20 -ゴルフ 🏌️‍♀️️ 5 5 501 -20 -ゴルファー 🏌️‍♀️️ 5 5 501 -20 -ゴルフヲスルオンナ 🏌️‍♀️️ 5 5 501 -20 -ジョセイ 🏌️‍♀️️ 5 5 501 -20 -スポーツ 🏌️‍♀️️ 5 5 501 -20 -サーファー 🏄️ 5 5 501 -20 -サーフィン 🏄️ 5 5 501 -20 -サーフィンスルヒト 🏄️ 5 5 501 -20 -スポーツ 🏄️ 5 5 501 -20 -ナミノリ 🏄️ 5 5 501 -20 -オトコ 🏄‍♂️️ 5 5 501 -20 -サーファー 🏄‍♂️️ 5 5 501 -20 -サーフィンスルオトコ 🏄‍♂️️ 5 5 501 -20 -スポーツ 🏄‍♂️️ 5 5 501 -20 -ダンセイ 🏄‍♂️️ 5 5 501 -20 -ナミノリ 🏄‍♂️️ 5 5 501 -20 -オンナ 🏄‍♀️️ 5 5 501 -20 -サーファー 🏄‍♀️️ 5 5 501 -20 -サーフィンスルオンナ 🏄‍♀️️ 5 5 501 -20 -ジョセイ 🏄‍♀️️ 5 5 501 -20 -スポーツ 🏄‍♀️️ 5 5 501 -20 -ナミノリ 🏄‍♀️️ 5 5 501 -20 -カヌー 🚣️ 5 5 501 -20 -カヤック 🚣️ 5 5 501 -20 -スポーツ 🚣️ 5 5 501 -20 -ノリモノ 🚣️ 5 5 501 -20 -フネ 🚣️ 5 5 501 -20 -ボートヲコグヒト 🚣️ 5 5 501 -20 -カヌー 🚣‍♂️️ 5 5 501 -20 -カヤック 🚣‍♂️️ 5 5 501 -20 -スポーツ 🚣‍♂️️ 5 5 501 -20 -ダンセイ 🚣‍♂️️ 5 5 501 -20 -フネ 🚣‍♂️️ 5 5 501 -20 -ボートヲコグオトコ 🚣‍♂️️ 5 5 501 -20 -カヌー 🚣‍♀️️ 5 5 501 -20 -カヤック 🚣‍♀️️ 5 5 501 -20 -ジョセイ 🚣‍♀️️ 5 5 501 -20 -スポーツ 🚣‍♀️️ 5 5 501 -20 -フネ 🚣‍♀️️ 5 5 501 -20 -ボートヲコグオンナ 🚣‍♀️️ 5 5 501 -20 -オヨグヒト 🏊️ 5 5 501 -20 -スイエイ 🏊️ 5 5 501 -20 -スイマー 🏊️ 5 5 501 -20 -スイミング 🏊️ 5 5 501 -20 -スイム 🏊️ 5 5 501 -20 -スポーツ 🏊️ 5 5 501 -20 -オヨグオトコ 🏊‍♂️️ 5 5 501 -20 -スイエイ 🏊‍♂️️ 5 5 501 -20 -スイマー 🏊‍♂️️ 5 5 501 -20 -スイミング 🏊‍♂️️ 5 5 501 -20 -スイム 🏊‍♂️️ 5 5 501 -20 -スポーツ 🏊‍♂️️ 5 5 501 -20 -ダンセイ 🏊‍♂️️ 5 5 501 -20 -オヨグオンナ 🏊‍♀️️ 5 5 501 -20 -ジョセイ 🏊‍♀️️ 5 5 501 -20 -スイエイ 🏊‍♀️️ 5 5 501 -20 -スイマー 🏊‍♀️️ 5 5 501 -20 -スイミング 🏊‍♀️️ 5 5 501 -20 -スイム 🏊‍♀️️ 5 5 501 -20 -スポーツ 🏊‍♀️️ 5 5 501 -20 -キュウギ ⛹️️ 5 5 501 -20 -スポーツ ⛹️️ 5 5 501 -20 -バスケ ⛹️️ 5 5 501 -20 -バスケットボール ⛹️️ 5 5 501 -20 -バスケットボールヲスルヒト ⛹️️ 5 5 501 -20 -キュウギ ⛹️‍♂️️ 5 5 501 -20 -スポーツ ⛹️‍♂️️ 5 5 501 -20 -ダンセイ ⛹️‍♂️️ 5 5 501 -20 -バスケ ⛹️‍♂️️ 5 5 501 -20 -バスケットボール ⛹️‍♂️️ 5 5 501 -20 -バスケットボールヲスルオトコ ⛹️‍♂️️ 5 5 501 -20 -キュウギ ⛹️‍♀️️ 5 5 501 -20 -ジョセイ ⛹️‍♀️️ 5 5 501 -20 -スポーツ ⛹️‍♀️️ 5 5 501 -20 -バスケ ⛹️‍♀️️ 5 5 501 -20 -バスケットボール ⛹️‍♀️️ 5 5 501 -20 -バスケットボールヲスルオンナ ⛹️‍♀️️ 5 5 501 -20 -ウェイトリフティング 🏋️️ 5 5 501 -20 -ジュウリョウアゲ 🏋️️ 5 5 501 -20 -ジュウリョウアゲヲスルヒト 🏋️️ 5 5 501 -20 -スポーツ 🏋️️ 5 5 501 -20 -ウェイトリフティング 🏋️‍♂️️ 5 5 501 -20 -オトコ 🏋️‍♂️️ 5 5 501 -20 -ジュウリョウアゲヲスルオトコ 🏋️‍♂️️ 5 5 501 -20 -スポーツ 🏋️‍♂️️ 5 5 501 -20 -ダンセイ 🏋️‍♂️️ 5 5 501 -20 -ウェイトリフティング 🏋️‍♀️️ 5 5 501 -20 -オンナ 🏋️‍♀️️ 5 5 501 -20 -ジュウリョウアゲヲスルオンナ 🏋️‍♀️️ 5 5 501 -20 -ジョセイ 🏋️‍♀️️ 5 5 501 -20 -スポーツ 🏋️‍♀️️ 5 5 501 -20 -ケイリン 🚴️ 5 5 501 -20 -サイクリング 🚴️ 5 5 501 -20 -ジテンシャニノルジン 🚴️ 5 5 501 -20 -ジテンシャニノルヒト 🚴️ 5 5 501 -20 -スポーツ 🚴️ 5 5 501 -20 -ロードバイク 🚴️ 5 5 501 -20 -ロードレース 🚴️ 5 5 501 -20 -ケイリン 🚴‍♂️️ 5 5 501 -20 -サイクリング 🚴‍♂️️ 5 5 501 -20 -ジテンシャニノルオトコ 🚴‍♂️️ 5 5 501 -20 -スポーツ 🚴‍♂️️ 5 5 501 -20 -ダンセイ 🚴‍♂️️ 5 5 501 -20 -ロードレース 🚴‍♂️️ 5 5 501 -20 -ケイリン 🚴‍♀️️ 5 5 501 -20 -サイクリング 🚴‍♀️️ 5 5 501 -20 -ジテンシャニノルオンナ 🚴‍♀️️ 5 5 501 -20 -ジョセイ 🚴‍♀️️ 5 5 501 -20 -スポーツ 🚴‍♀️️ 5 5 501 -20 -ロードレース 🚴‍♀️️ 5 5 501 -20 -サイクリング 🚵️ 5 5 501 -20 -ジテンシャ 🚵️ 5 5 501 -20 -スポーツ 🚵️ 5 5 501 -20 -マウンテンバイク 🚵️ 5 5 501 -20 -マウンテンバイクニノルヒト 🚵️ 5 5 501 -20 -オトコ 🚵‍♂️️ 5 5 501 -20 -サイクリング 🚵‍♂️️ 5 5 501 -20 -ジテンシャ 🚵‍♂️️ 5 5 501 -20 -スポーツ 🚵‍♂️️ 5 5 501 -20 -ダンセイ 🚵‍♂️️ 5 5 501 -20 -マウンテンバイクニノルオトコ 🚵‍♂️️ 5 5 501 -20 -オンナ 🚵‍♀️️ 5 5 501 -20 -サイクリング 🚵‍♀️️ 5 5 501 -20 -ジテンシャ 🚵‍♀️️ 5 5 501 -20 -ジョセイ 🚵‍♀️️ 5 5 501 -20 -スポーツ 🚵‍♀️️ 5 5 501 -20 -マウンテンバイクニノルオンナ 🚵‍♀️️ 5 5 501 -20 -スポーツ 🤸️ 5 5 501 -20 -ソクテン 🤸️ 5 5 501 -20 -ソクテンスルヒト 🤸️ 5 5 501 -20 -タイソウ 🤸️ 5 5 501 -20 -オトコ 🤸‍♂️️ 5 5 501 -20 -スポーツ 🤸‍♂️️ 5 5 501 -20 -ソクテン 🤸‍♂️️ 5 5 501 -20 -ソクテンスルオトコ 🤸‍♂️️ 5 5 501 -20 -タイソウ 🤸‍♂️️ 5 5 501 -20 -ダンセイ 🤸‍♂️️ 5 5 501 -20 -オンナ 🤸‍♀️️ 5 5 501 -20 -ジョセイ 🤸‍♀️️ 5 5 501 -20 -スポーツ 🤸‍♀️️ 5 5 501 -20 -ソクテン 🤸‍♀️️ 5 5 501 -20 -ソクテンスルオンナ 🤸‍♀️️ 5 5 501 -20 -タイソウ 🤸‍♀️️ 5 5 501 -20 -スポーツ 🤼️ 5 5 501 -20 -レスラー 🤼️ 5 5 501 -20 -レスリング 🤼️ 5 5 501 -20 -レスリングスルヒト 🤼️ 5 5 501 -20 -レスリングヲスルヒト 🤼️ 5 5 501 -20 -オトコ 🤼‍♂️️ 5 5 501 -20 -スポーツ 🤼‍♂️️ 5 5 501 -20 -ダンセイ 🤼‍♂️️ 5 5 501 -20 -レスリング 🤼‍♂️️ 5 5 501 -20 -レスリングスルオトコ 🤼‍♂️️ 5 5 501 -20 -レスリングヲスルオトコ 🤼‍♂️️ 5 5 501 -20 -オンナ 🤼‍♀️️ 5 5 501 -20 -ジョセイ 🤼‍♀️️ 5 5 501 -20 -スポーツ 🤼‍♀️️ 5 5 501 -20 -レスリング 🤼‍♀️️ 5 5 501 -20 -レスリングスルオンナ 🤼‍♀️️ 5 5 501 -20 -レスリングヲスルオンナ 🤼‍♀️️ 5 5 501 -20 -キュウギ 🤽️ 5 5 501 -20 -スイキュウ 🤽️ 5 5 501 -20 -スイキュウヲスルヒト 🤽️ 5 5 501 -20 -スポーツ 🤽️ 5 5 501 -20 -オトコ 🤽‍♂️️ 5 5 501 -20 -キュウギ 🤽‍♂️️ 5 5 501 -20 -スイキュウ 🤽‍♂️️ 5 5 501 -20 -スイキュウヲスルオトコ 🤽‍♂️️ 5 5 501 -20 -スポーツ 🤽‍♂️️ 5 5 501 -20 -ダンセイ 🤽‍♂️️ 5 5 501 -20 -オンナ 🤽‍♀️️ 5 5 501 -20 -キュウギ 🤽‍♀️️ 5 5 501 -20 -ジョセイ 🤽‍♀️️ 5 5 501 -20 -スイキュウ 🤽‍♀️️ 5 5 501 -20 -スイキュウヲスルオンナ 🤽‍♀️️ 5 5 501 -20 -スポーツ 🤽‍♀️️ 5 5 501 -20 -キュウギ 🤾️ 5 5 501 -20 -スポーツ 🤾️ 5 5 501 -20 -ハンドボール 🤾️ 5 5 501 -20 -ハンドボールヲスルヒト 🤾️ 5 5 501 -20 -オトコ 🤾‍♂️️ 5 5 501 -20 -キュウギ 🤾‍♂️️ 5 5 501 -20 -スポーツ 🤾‍♂️️ 5 5 501 -20 -ダンセイ 🤾‍♂️️ 5 5 501 -20 -ハンドボール 🤾‍♂️️ 5 5 501 -20 -ハンドボールヲスルオトコ 🤾‍♂️️ 5 5 501 -20 -オンナ 🤾‍♀️️ 5 5 501 -20 -キュウギ 🤾‍♀️️ 5 5 501 -20 -ジョセイ 🤾‍♀️️ 5 5 501 -20 -スポーツ 🤾‍♀️️ 5 5 501 -20 -ハンドボール 🤾‍♀️️ 5 5 501 -20 -ハンドボールヲスルオンナ 🤾‍♀️️ 5 5 501 -20 -ジャグラー 🤹️ 5 5 501 -20 -ジャグリング 🤹️ 5 5 501 -20 -ジャグリングヲスルヒト 🤹️ 5 5 501 -20 -ダイドウゲイ 🤹️ 5 5 501 -20 -オトコ 🤹‍♂️️ 5 5 501 -20 -ジャグラー 🤹‍♂️️ 5 5 501 -20 -ジャグリング 🤹‍♂️️ 5 5 501 -20 -ジャグリングヲスルオトコ 🤹‍♂️️ 5 5 501 -20 -ダイドウゲイ 🤹‍♂️️ 5 5 501 -20 -ダンセイ 🤹‍♂️️ 5 5 501 -20 -オンナ 🤹‍♀️️ 5 5 501 -20 -ジャグラー 🤹‍♀️️ 5 5 501 -20 -ジャグリング 🤹‍♀️️ 5 5 501 -20 -ジャグリングヲスルオンナ 🤹‍♀️️ 5 5 501 -20 -ジョセイ 🤹‍♀️️ 5 5 501 -20 -ダイドウゲイ 🤹‍♀️️ 5 5 501 -20 -メイソウ 🧘️ 5 5 501 -20 -ヨガ 🧘️ 5 5 501 -20 -ヨガノポーズヲスルヒト 🧘️ 5 5 501 -20 -オトコ 🧘‍♂️️ 5 5 501 -20 -ダンセイ 🧘‍♂️️ 5 5 501 -20 -メイソウ 🧘‍♂️️ 5 5 501 -20 -ヨガ 🧘‍♂️️ 5 5 501 -20 -ヨガノポーズヲスルオトコ 🧘‍♂️️ 5 5 501 -20 -オンナ 🧘‍♀️️ 5 5 501 -20 -ジョセイ 🧘‍♀️️ 5 5 501 -20 -メイソウ 🧘‍♀️️ 5 5 501 -20 -ヨガ 🧘‍♀️️ 5 5 501 -20 -ヨガノポーズヲスルオンナ 🧘‍♀️️ 5 5 501 -20 -バスタブ 🛀️ 5 5 501 -20 -フロ 🛀️ 5 5 501 -20 -フロニハイルジン 🛀️ 5 5 501 -20 -フロニハイルヒト 🛀️ 5 5 501 -20 -ヨクソウ 🛀️ 5 5 501 -20 -ネル 🛌️ 5 5 501 -20 -ベッド 🛌️ 5 5 501 -20 -ベッドニネルヒト 🛌️ 5 5 501 -20 -ホテル 🛌️ 5 5 501 -20 -カップル 🧑‍🤝‍🧑️ 5 5 501 -20 -コイビト 🧑‍🤝‍🧑️ 5 5 501 -20 -ツナグ 🧑‍🤝‍🧑️ 5 5 501 -20 -テ 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグ 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグ2ニン 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグフタリ 🧑‍🤝‍🧑️ 5 5 501 -20 -トモダチ 🧑‍🤝‍🧑️ 5 5 501 -20 -ヒト 🧑‍🤝‍🧑️ 5 5 501 -20 -オンナ 👭️ 5 5 501 -20 -カップル 👭️ 5 5 501 -20 -コイビト 👭️ 5 5 501 -20 -テヲツナグジョセイ 👭️ 5 5 501 -20 -トモダチ 👭️ 5 5 501 -20 -ドウセイ 👭️ 5 5 501 -20 -イセイ 👫️ 5 5 501 -20 -カップル 👫️ 5 5 501 -20 -コイビト 👫️ 5 5 501 -20 -ダンジョ 👫️ 5 5 501 -20 -テヲツナグダンジョ 👫️ 5 5 501 -20 -トモダチ 👫️ 5 5 501 -20 -フタリ 👫️ 5 5 501 -20 -オトコ 👬️ 5 5 501 -20 -カップル 👬️ 5 5 501 -20 -コイビト 👬️ 5 5 501 -20 -テヲツナグダンセイ 👬️ 5 5 501 -20 -トモダチ 👬️ 5 5 501 -20 -ドウセイ 👬️ 5 5 501 -20 -2ニンデキス 💏️ 5 5 501 -20 -カップル 💏️ 5 5 501 -20 -キス 💏️ 5 5 501 -20 -チュッ 💏️ 5 5 501 -20 -ハート 💏️ 5 5 501 -20 -フタリデキス 💏️ 5 5 501 -20 -2ニンデキス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -カップル 👩‍❤️‍💋‍👨️ 5 5 501 -20 -キス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ジョセイ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ジョセイトダンセイデキス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -チュッ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ハート 👩‍❤️‍💋‍👨️ 5 5 501 -20 -2ニンデキス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -カップル 👨‍❤️‍💋‍👨️ 5 5 501 -20 -キス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイ 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイトダンセイデキス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -チュッ 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ハート 👨‍❤️‍💋‍👨️ 5 5 501 -20 -2ニンデキス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -カップル 👩‍❤️‍💋‍👩️ 5 5 501 -20 -キス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ジョセイ 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ジョセイトジョセイデキス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -チュッ 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ハート 👩‍❤️‍💋‍👩️ 5 5 501 -20 -アツアツ 💑️ 5 5 501 -20 -カップル 💑️ 5 5 501 -20 -カップルトハート 💑️ 5 5 501 -20 -コイビト 💑️ 5 5 501 -20 -ハート 💑️ 5 5 501 -20 -アツアツ 👩‍❤️‍👨️ 5 5 501 -20 -カップル 👩‍❤️‍👨️ 5 5 501 -20 -カップルトハート 👩‍❤️‍👨️ 5 5 501 -20 -コイビト 👩‍❤️‍👨️ 5 5 501 -20 -ジョセイ 👩‍❤️‍👨️ 5 5 501 -20 -ジョセイトダンセイノカップル 👩‍❤️‍👨️ 5 5 501 -20 -ダンセイ 👩‍❤️‍👨️ 5 5 501 -20 -ハート 👩‍❤️‍👨️ 5 5 501 -20 -アツアツ 👨‍❤️‍👨️ 5 5 501 -20 -カップル 👨‍❤️‍👨️ 5 5 501 -20 -カップルトハート 👨‍❤️‍👨️ 5 5 501 -20 -コイビト 👨‍❤️‍👨️ 5 5 501 -20 -ダンセイ 👨‍❤️‍👨️ 5 5 501 -20 -ダンセイトダンセイノカップル 👨‍❤️‍👨️ 5 5 501 -20 -ハート 👨‍❤️‍👨️ 5 5 501 -20 -アツアツ 👩‍❤️‍👩️ 5 5 501 -20 -カップル 👩‍❤️‍👩️ 5 5 501 -20 -カップルトハート 👩‍❤️‍👩️ 5 5 501 -20 -コイビト 👩‍❤️‍👩️ 5 5 501 -20 -ジョセイ 👩‍❤️‍👩️ 5 5 501 -20 -ジョセイトジョセイノカップル 👩‍❤️‍👩️ 5 5 501 -20 -ハート 👩‍❤️‍👩️ 5 5 501 -20 -オトコノコ 👨‍👩‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👦️ 5 5 501 -20 -ダンセイトジョセイトオトコノコノカゾク 👨‍👩‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧️ 5 5 501 -20 -カゾク 👨‍👩‍👧️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧️ 5 5 501 -20 -ダンセイトジョセイトオンナノコノカゾク 👨‍👩‍👧️ 5 5 501 -20 -オトコノコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧‍👦️ 5 5 501 -20 -ダンセイトジョセイトオンナノコトオトコノコノカゾク 👨‍👩‍👧‍👦️ 5 5 501 -20 -オトコノコ 👨‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👦‍👦️ 5 5 501 -20 -ダンセイトジョセイトオトコノコトオトコノコノカゾク 👨‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧‍👧️ 5 5 501 -20 -ダンセイトジョセイトオンナノコトオンナノコノカゾク 👨‍👩‍👧‍👧️ 5 5 501 -20 -オトコノコ 👨‍👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👦️ 5 5 501 -20 -ダンセイトダンセイトオトコノコノカゾク 👨‍👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧️ 5 5 501 -20 -カゾク 👨‍👨‍👧️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧️ 5 5 501 -20 -ダンセイトダンセイトオンナノコノカゾク 👨‍👨‍👧️ 5 5 501 -20 -オトコノコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧‍👦️ 5 5 501 -20 -ダンセイトダンセイトオンナノコトオトコノコノカゾク 👨‍👨‍👧‍👦️ 5 5 501 -20 -オトコノコ 👨‍👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👦‍👦️ 5 5 501 -20 -ダンセイトダンセイトオトコノコトオトコノコノカゾク 👨‍👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👨‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧‍👧️ 5 5 501 -20 -ダンセイトダンセイトオンナノコトオンナノコノカゾク 👨‍👨‍👧‍👧️ 5 5 501 -20 -オトコノコ 👩‍👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👦️ 5 5 501 -20 -ジョセイトジョセイトオトコノコノカゾク 👩‍👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧️ 5 5 501 -20 -カゾク 👩‍👩‍👧️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧️ 5 5 501 -20 -ジョセイトジョセイトオンナノコノカゾク 👩‍👩‍👧️ 5 5 501 -20 -オトコノコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイトジョセイトオンナノコトオトコノコノカゾク 👩‍👩‍👧‍👦️ 5 5 501 -20 -オトコノコ 👩‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👦‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイトジョセイトオトコノコトオトコノコノカゾク 👩‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧‍👧️ 5 5 501 -20 -カゾク 👩‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイトジョセイトオンナノコトオンナノコノカゾク 👩‍👩‍👧‍👧️ 5 5 501 -20 -オトコノコ 👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👦️ 5 5 501 -20 -カゾク 👨‍👦️ 5 5 501 -20 -ダンセイ 👨‍👦️ 5 5 501 -20 -ダンセイトオトコノコノカゾク 👨‍👦️ 5 5 501 -20 -オトコノコ 👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👦‍👦️ 5 5 501 -20 -ダンセイトオトコノコトオトコノコノカゾク 👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👧️ 5 5 501 -20 -オンナノコ 👨‍👧️ 5 5 501 -20 -カゾク 👨‍👧️ 5 5 501 -20 -ダンセイ 👨‍👧️ 5 5 501 -20 -ダンセイトオンナノコノカゾク 👨‍👧️ 5 5 501 -20 -オトコノコ 👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👧‍👦️ 5 5 501 -20 -ダンセイトオンナノコトオトコノコノカゾク 👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👧‍👧️ 5 5 501 -20 -ダンセイトオンナノコトオンナノコノカゾク 👨‍👧‍👧️ 5 5 501 -20 -オトコノコ 👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👦️ 5 5 501 -20 -カゾク 👩‍👦️ 5 5 501 -20 -ジョセイ 👩‍👦️ 5 5 501 -20 -ジョセイトオトコノコノカゾク 👩‍👦️ 5 5 501 -20 -オトコノコ 👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👦‍👦️ 5 5 501 -20 -カゾク 👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👩‍👦‍👦️ 5 5 501 -20 -ジョセイトオトコノコトオトコノコノカゾク 👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👧️ 5 5 501 -20 -オンナノコ 👩‍👧️ 5 5 501 -20 -カゾク 👩‍👧️ 5 5 501 -20 -ジョセイ 👩‍👧️ 5 5 501 -20 -ジョセイトオンナノコノカゾク 👩‍👧️ 5 5 501 -20 -オトコノコ 👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👩‍👧‍👦️ 5 5 501 -20 -カゾク 👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👩‍👧‍👦️ 5 5 501 -20 -ジョセイトオンナノコトオトコノコノカゾク 👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👩‍👧‍👧️ 5 5 501 -20 -カゾク 👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👩‍👧‍👧️ 5 5 501 -20 -ジョセイトオンナノコトオンナノコノカゾク 👩‍👧‍👧️ 5 5 501 -20 -カオ 🗣️️ 5 5 501 -20 -シルエット 🗣️️ 5 5 501 -20 -ハナス 🗣️️ 5 5 501 -20 -ハナスヒトノシルエット 🗣️️ 5 5 501 -20 -1ニン 👤️ 5 5 501 -20 -カゲ 👤️ 5 5 501 -20 -ゲスト 👤️ 5 5 501 -20 -ゲストアカウント 👤️ 5 5 501 -20 -シルエット 👤️ 5 5 501 -20 -ジョウハンシン 👤️ 5 5 501 -20 -ヒトカゲ 👤️ 5 5 501 -20 -ヒトノシルエット 👤️ 5 5 501 -20 -ヒトリ 👤️ 5 5 501 -20 -2ニン 👥️ 5 5 501 -20 -2ニンノシルエット 👥️ 5 5 501 -20 -シルエット 👥️ 5 5 501 -20 -ジョウハンシン 👥️ 5 5 501 -20 -フタリ 👥️ 5 5 501 -20 -アイサツ 🫂️ 5 5 501 -20 -アリガトウ 🫂️ 5 5 501 -20 -オワカレ 🫂️ 5 5 501 -20 -コンニチハ 🫂️ 5 5 501 -20 -サヨウナラ 🫂️ 5 5 501 -20 -ハグスルヒト 🫂️ 5 5 501 -20 -オヤコ 👪️ 5 5 501 -20 -カゾク 👪️ 5 5 501 -20 -アシ 👣️ 5 5 501 -20 -アシアト 👣️ 5 5 501 -20 -アカゲ 🦰️ 5 5 501 -20 -アカゲノヒト 🦰️ 5 5 501 -20 -アカチャ 🦰️ 5 5 501 -20 -アフロ 🦱️ 5 5 501 -20 -カール 🦱️ 5 5 501 -20 -クセゲ 🦱️ 5 5 501 -20 -パンチパーマ 🦱️ 5 5 501 -20 -マキゲ 🦱️ 5 5 501 -20 -グレー 🦳️ 5 5 501 -20 -コウレイシャ 🦳️ 5 5 501 -20 -シラガ 🦳️ 5 5 501 -20 -ネンパイ 🦳️ 5 5 501 -20 -ロウジン 🦳️ 5 5 501 -20 -カガクリョウホウ 🦲️ 5 5 501 -20 -ケガナイ 🦲️ 5 5 501 -20 -スキンヘッド 🦲️ 5 5 501 -20 -ハゲアタマ 🦲️ 5 5 501 -20 -ボウズ 🦲️ 5 5 501 -20 -カオ 🐵️ 5 5 501 -20 -サル 🐵️ 5 5 501 -20 -サルノカオ 🐵️ 5 5 501 -20 -ドウブツ 🐵️ 5 5 501 -20 -サル 🐒️ 5 5 501 -20 -ドウブツ 🐒️ 5 5 501 -20 -カオ 🦍️ 5 5 501 -20 -ゴリラ 🦍️ 5 5 501 -20 -ドウブツ 🦍️ 5 5 501 -20 -オランウータン 🦧️ 5 5 501 -20 -サル 🦧️ 5 5 501 -20 -ドウブツ 🦧️ 5 5 501 -20 -モリノヒト 🦧️ 5 5 501 -20 -イヌ 🐶️ 5 5 501 -20 -イヌノカオ 🐶️ 5 5 501 -20 -カオ 🐶️ 5 5 501 -20 -ドウブツ 🐶️ 5 5 501 -20 -ペット 🐶️ 5 5 501 -20 -イヌ 🐕️ 5 5 501 -20 -ドウブツ 🐕️ 5 5 501 -20 -ペット 🐕️ 5 5 501 -20 -アクセシビリティ 🦮️ 5 5 501 -20 -イヌ 🦮️ 5 5 501 -20 -シカク 🦮️ 5 5 501 -20 -ショウガイ 🦮️ 5 5 501 -20 -ホジョ 🦮️ 5 5 501 -20 -ホジョケン 🦮️ 5 5 501 -20 -モウドウケン 🦮️ 5 5 501 -20 -アクセシビリティ 🐕‍🦺️ 5 5 501 -20 -イヌ 🐕‍🦺️ 5 5 501 -20 -カイジョケン 🐕‍🦺️ 5 5 501 -20 -サービス 🐕‍🦺️ 5 5 501 -20 -ホジョ 🐕‍🦺️ 5 5 501 -20 -イヌ 🐩️ 5 5 501 -20 -ドウブツ 🐩️ 5 5 501 -20 -プードル 🐩️ 5 5 501 -20 -ペット 🐩️ 5 5 501 -20 -オオカミ 🐺️ 5 5 501 -20 -オオカミノカオ 🐺️ 5 5 501 -20 -カオ 🐺️ 5 5 501 -20 -ドウブツ 🐺️ 5 5 501 -20 -カオ 🦊️ 5 5 501 -20 -キツネ 🦊️ 5 5 501 -20 -キツネノカオ 🦊️ 5 5 501 -20 -ドウブツ 🦊️ 5 5 501 -20 -アライグマ 🦝️ 5 5 501 -20 -コウキシン 🦝️ 5 5 501 -20 -ズルガシコイ 🦝️ 5 5 501 -20 -センサクズキ 🦝️ 5 5 501 -20 -ドウブツ 🦝️ 5 5 501 -20 -カオ 🐱️ 5 5 501 -20 -ドウブツ 🐱️ 5 5 501 -20 -ネコ 🐱️ 5 5 501 -20 -ネコノカsオ 🐱️ 5 5 501 -20 -ネコノカオ 🐱️ 5 5 501 -20 -ペット 🐱️ 5 5 501 -20 -ドウブツ 🐈️ 5 5 501 -20 -ネコ 🐈️ 5 5 501 -20 -ペット 🐈️ 5 5 501 -20 -クロ 🐈‍⬛️ 5 5 501 -20 -クロネコ 🐈‍⬛️ 5 5 501 -20 -ドウブツ 🐈‍⬛️ 5 5 501 -20 -ネコ 🐈‍⬛️ 5 5 501 -20 -フキツ 🐈‍⬛️ 5 5 501 -20 -カオ 🦁️ 5 5 501 -20 -ドウブツ 🦁️ 5 5 501 -20 -ライオン 🦁️ 5 5 501 -20 -ライオンノカオ 🦁️ 5 5 501 -20 -エト 🐯️ 5 5 501 -20 -カオ 🐯️ 5 5 501 -20 -シシ 🐯️ 5 5 501 -20 -ジュウニシ 🐯️ 5 5 501 -20 -トラ 🐯️ 5 5 501 -20 -トラノカオ 🐯️ 5 5 501 -20 -ドウブツ 🐯️ 5 5 501 -20 -トラ 🐅️ 5 5 501 -20 -ドウブツ 🐅️ 5 5 501 -20 -ドウブツ 🐆️ 5 5 501 -20 -ヒョウ 🐆️ 5 5 501 -20 -ウマ 🐴️ 5 5 501 -20 -ウマノカオ 🐴️ 5 5 501 -20 -カオ 🐴️ 5 5 501 -20 -ドウブツ 🐴️ 5 5 501 -20 -ウマ 🐎️ 5 5 501 -20 -ケイバ 🐎️ 5 5 501 -20 -ジョウバ 🐎️ 5 5 501 -20 -ドウブツ 🐎️ 5 5 501 -20 -イッカクジュウ 🦄️ 5 5 501 -20 -カオ 🦄️ 5 5 501 -20 -ドウブツ 🦄️ 5 5 501 -20 -ユニコーン 🦄️ 5 5 501 -20 -ユニコーンノカオ 🦄️ 5 5 501 -20 -シマウマ 🦓️ 5 5 501 -20 -シマシマ 🦓️ 5 5 501 -20 -ドウブツ 🦓️ 5 5 501 -20 -カオ 🦌️ 5 5 501 -20 -シカ 🦌️ 5 5 501 -20 -ドウブツ 🦌️ 5 5 501 -20 -ウシ 🦬️ 5 5 501 -20 -ドウブツ 🦬️ 5 5 501 -20 -バイソン 🦬️ 5 5 501 -20 -バッファロー 🦬️ 5 5 501 -20 -ムレ 🦬️ 5 5 501 -20 -ヤギュウ 🦬️ 5 5 501 -20 -ウシ 🐮️ 5 5 501 -20 -ウシノカオ 🐮️ 5 5 501 -20 -エト 🐮️ 5 5 501 -20 -カオ 🐮️ 5 5 501 -20 -ジュウニシ 🐮️ 5 5 501 -20 -ドウブツ 🐮️ 5 5 501 -20 -ウシ 🐂️ 5 5 501 -20 -オウシ 🐂️ 5 5 501 -20 -セイザ 🐂️ 5 5 501 -20 -ドウブツ 🐂️ 5 5 501 -20 -ウシ 🐃️ 5 5 501 -20 -スイギュウ 🐃️ 5 5 501 -20 -ドウブツ 🐃️ 5 5 501 -20 -バッファロー 🐃️ 5 5 501 -20 -ウシ 🐄️ 5 5 501 -20 -ドウブツ 🐄️ 5 5 501 -20 -メウシ 🐄️ 5 5 501 -20 -カオ 🐷️ 5 5 501 -20 -ドウブツ 🐷️ 5 5 501 -20 -ブタ 🐷️ 5 5 501 -20 -ブタノカオ 🐷️ 5 5 501 -20 -ドウブツ 🐖️ 5 5 501 -20 -ブタ 🐖️ 5 5 501 -20 -イノシシ 🐗️ 5 5 501 -20 -カオ 🐗️ 5 5 501 -20 -ドウブツ 🐗️ 5 5 501 -20 -ノブタ 🐗️ 5 5 501 -20 -カオ 🐽️ 5 5 501 -20 -ハナ 🐽️ 5 5 501 -20 -ブタ 🐽️ 5 5 501 -20 -ブタハナ 🐽️ 5 5 501 -20 -ブタバナ 🐽️ 5 5 501 -20 -オヒツジ 🐏️ 5 5 501 -20 -セイザ 🐏️ 5 5 501 -20 -ドウブツ 🐏️ 5 5 501 -20 -ヒツジ 🐏️ 5 5 501 -20 -ドウブツ 🐑️ 5 5 501 -20 -ヒツジ 🐑️ 5 5 501 -20 -セイザ 🐐️ 5 5 501 -20 -ドウブツ 🐐️ 5 5 501 -20 -ヤギ 🐐️ 5 5 501 -20 -ドウブツ 🐪️ 5 5 501 -20 -ラクダ 🐪️ 5 5 501 -20 -ドウブツ 🐫️ 5 5 501 -20 -フタコブ 🐫️ 5 5 501 -20 -フタコブラクダ 🐫️ 5 5 501 -20 -ラクダ 🐫️ 5 5 501 -20 -アルパカ 🦙️ 5 5 501 -20 -グアナコ 🦙️ 5 5 501 -20 -ドウブツ 🦙️ 5 5 501 -20 -ビクーナ 🦙️ 5 5 501 -20 -ヨウモウ 🦙️ 5 5 501 -20 -ラマ 🦙️ 5 5 501 -20 -キリン 🦒️ 5 5 501 -20 -ドウブツ 🦒️ 5 5 501 -20 -ゾウ 🐘️ 5 5 501 -20 -ドウブツ 🐘️ 5 5 501 -20 -キバ 🦣️ 5 5 501 -20 -キョダイ 🦣️ 5 5 501 -20 -ゼツメツ 🦣️ 5 5 501 -20 -ドウブツ 🦣️ 5 5 501 -20 -マンモス 🦣️ 5 5 501 -20 -カオ 🦏️ 5 5 501 -20 -サイ 🦏️ 5 5 501 -20 -ドウブツ 🦏️ 5 5 501 -20 -カバ 🦛️ 5 5 501 -20 -ドウブツ 🦛️ 5 5 501 -20 -エト 🐭️ 5 5 501 -20 -カオ 🐭️ 5 5 501 -20 -ジュウニシ 🐭️ 5 5 501 -20 -ドウブツ 🐭️ 5 5 501 -20 -ネ 🐭️ 5 5 501 -20 -ネズミ 🐭️ 5 5 501 -20 -ネズミノカオ 🐭️ 5 5 501 -20 -ドウブツ 🐁️ 5 5 501 -20 -ネズミ 🐁️ 5 5 501 -20 -ハツカネズミ 🐁️ 5 5 501 -20 -マウス 🐁️ 5 5 501 -20 -ドウブツ 🐀️ 5 5 501 -20 -ネズミ 🐀️ 5 5 501 -20 -ラット 🐀️ 5 5 501 -20 -カオ 🐹️ 5 5 501 -20 -ドウブツ 🐹️ 5 5 501 -20 -ネズミ 🐹️ 5 5 501 -20 -ハムスター 🐹️ 5 5 501 -20 -ハムスターノカオ 🐹️ 5 5 501 -20 -ペット 🐹️ 5 5 501 -20 -ウ 🐰️ 5 5 501 -20 -ウサギ 🐰️ 5 5 501 -20 -ウサギノカオ 🐰️ 5 5 501 -20 -エト 🐰️ 5 5 501 -20 -カオ 🐰️ 5 5 501 -20 -ジュウニシ 🐰️ 5 5 501 -20 -ドウブツ 🐰️ 5 5 501 -20 -ペット 🐰️ 5 5 501 -20 -ウサギ 🐇️ 5 5 501 -20 -ドウブツ 🐇️ 5 5 501 -20 -ペット 🐇️ 5 5 501 -20 -ドウブツ 🐿️️ 5 5 501 -20 -リス 🐿️️ 5 5 501 -20 -ダムヅクリ 🦫️ 5 5 501 -20 -ドウブツ 🦫️ 5 5 501 -20 -ビーバー 🦫️ 5 5 501 -20 -トゲ 🦔️ 5 5 501 -20 -ドウブツ 🦔️ 5 5 501 -20 -ハリネズミ 🦔️ 5 5 501 -20 -キュウケツキ 🦇️ 5 5 501 -20 -コウモリ 🦇️ 5 5 501 -20 -ドウブツ 🦇️ 5 5 501 -20 -バンパイア 🦇️ 5 5 501 -20 -カオ 🐻️ 5 5 501 -20 -クマ 🐻️ 5 5 501 -20 -クマノカオ 🐻️ 5 5 501 -20 -ドウブツ 🐻️ 5 5 501 -20 -クマ 🐻‍❄️️ 5 5 501 -20 -シロ 🐻‍❄️️ 5 5 501 -20 -シロクマ 🐻‍❄️️ 5 5 501 -20 -ドウブツ 🐻‍❄️️ 5 5 501 -20 -ホッキョク 🐻‍❄️️ 5 5 501 -20 -ホッキョクグマ 🐻‍❄️️ 5 5 501 -20 -カオ 🐨️ 5 5 501 -20 -コアラ 🐨️ 5 5 501 -20 -ドウブツ 🐨️ 5 5 501 -20 -カオ 🐼️ 5 5 501 -20 -ドウブツ 🐼️ 5 5 501 -20 -パンダ 🐼️ 5 5 501 -20 -パンダノカオ 🐼️ 5 5 501 -20 -ドウブツ 🦥️ 5 5 501 -20 -ナマケモノ 🦥️ 5 5 501 -20 -ノンビリ 🦥️ 5 5 501 -20 -モノグサ 🦥️ 5 5 501 -20 -アソビスキ 🦦️ 5 5 501 -20 -カワウソ 🦦️ 5 5 501 -20 -サカナヲタベル 🦦️ 5 5 501 -20 -ドウブツ 🦦️ 5 5 501 -20 -ラッコ 🦦️ 5 5 501 -20 -アクシュウ 🦨️ 5 5 501 -20 -スカンク 🦨️ 5 5 501 -20 -ドウブツ 🦨️ 5 5 501 -20 -オーストラリア 🦘️ 5 5 501 -20 -カンガルー 🦘️ 5 5 501 -20 -ジャンプ 🦘️ 5 5 501 -20 -ジョーイ 🦘️ 5 5 501 -20 -ユウタイルイ 🦘️ 5 5 501 -20 -アナグマ 🦡️ 5 5 501 -20 -ドウブツ 🦡️ 5 5 501 -20 -ミツアナグマ 🦡️ 5 5 501 -20 -アシアト 🐾️ 5 5 501 -20 -イヌ 🐾️ 5 5 501 -20 -ドウブツ 🐾️ 5 5 501 -20 -ニクキュウ 🐾️ 5 5 501 -20 -ネコ 🐾️ 5 5 501 -20 -シチメンチョウ 🦃️ 5 5 501 -20 -ターキー 🦃️ 5 5 501 -20 -トリ 🦃️ 5 5 501 -20 -ドウブツ 🦃️ 5 5 501 -20 -カオ 🐔️ 5 5 501 -20 -トリ 🐔️ 5 5 501 -20 -ドウブツ 🐔️ 5 5 501 -20 -ニワトリ 🐔️ 5 5 501 -20 -オンドリ 🐓️ 5 5 501 -20 -トリ 🐓️ 5 5 501 -20 -ドウブツ 🐓️ 5 5 501 -20 -カオ 🐣️ 5 5 501 -20 -タマゴ 🐣️ 5 5 501 -20 -タマゴカラカエッタヒヨコ 🐣️ 5 5 501 -20 -トリ 🐣️ 5 5 501 -20 -ドウブツ 🐣️ 5 5 501 -20 -ヒナ 🐣️ 5 5 501 -20 -ヒナドリ 🐣️ 5 5 501 -20 -ヒヨコ 🐣️ 5 5 501 -20 -フカ 🐣️ 5 5 501 -20 -カオ 🐤️ 5 5 501 -20 -トリ 🐤️ 5 5 501 -20 -ドウブツ 🐤️ 5 5 501 -20 -ヒナ 🐤️ 5 5 501 -20 -ヒヨコ 🐤️ 5 5 501 -20 -ヨコヲムイテイルヒヨコ 🐤️ 5 5 501 -20 -トリ 🐥️ 5 5 501 -20 -ドウブツ 🐥️ 5 5 501 -20 -ヒナ 🐥️ 5 5 501 -20 -ヒヨコ 🐥️ 5 5 501 -20 -マエヲムイテイルヒヨコ 🐥️ 5 5 501 -20 -カオ 🐦️ 5 5 501 -20 -トリ 🐦️ 5 5 501 -20 -ドウブツ 🐦️ 5 5 501 -20 -トリ 🐧️ 5 5 501 -20 -ドウブツ 🐧️ 5 5 501 -20 -ペンギン 🐧️ 5 5 501 -20 -トリ 🕊️️ 5 5 501 -20 -ドウブツ 🕊️️ 5 5 501 -20 -ハト 🕊️️ 5 5 501 -20 -ヘイワ 🕊️️ 5 5 501 -20 -トリ 🦅️ 5 5 501 -20 -ドウブツ 🦅️ 5 5 501 -20 -ワシ 🦅️ 5 5 501 -20 -カモ 🦆️ 5 5 501 -20 -トリ 🦆️ 5 5 501 -20 -ドウブツ 🦆️ 5 5 501 -20 -トリ 🦢️ 5 5 501 -20 -ハクチョウ 🦢️ 5 5 501 -20 -ヒナ 🦢️ 5 5 501 -20 -ミニクイアヒルノコ 🦢️ 5 5 501 -20 -トリ 🦉️ 5 5 501 -20 -ドウブツ 🦉️ 5 5 501 -20 -フクロウ 🦉️ 5 5 501 -20 -ゼツメツ 🦤️ 5 5 501 -20 -トベナイトリ 🦤️ 5 5 501 -20 -トリ 🦤️ 5 5 501 -20 -ドードー 🦤️ 5 5 501 -20 -モーリシャストウ 🦤️ 5 5 501 -20 -ウモウ 🪶️ 5 5 501 -20 -カルイ 🪶️ 5 5 501 -20 -トブ 🪶️ 5 5 501 -20 -トリ 🪶️ 5 5 501 -20 -ハネ 🪶️ 5 5 501 -20 -トリ 🦩️ 5 5 501 -20 -ドウブツ 🦩️ 5 5 501 -20 -ネッタイ 🦩️ 5 5 501 -20 -ピンクイロ 🦩️ 5 5 501 -20 -フラミンゴ 🦩️ 5 5 501 -20 -クジャク 🦚️ 5 5 501 -20 -トリ 🦚️ 5 5 501 -20 -ハデ 🦚️ 5 5 501 -20 -ピーコック 🦚️ 5 5 501 -20 -オウム 🦜️ 5 5 501 -20 -カイゾク 🦜️ 5 5 501 -20 -シャベル 🦜️ 5 5 501 -20 -トリ 🦜️ 5 5 501 -20 -カエル 🐸️ 5 5 501 -20 -カエルノカオ 🐸️ 5 5 501 -20 -カオ 🐸️ 5 5 501 -20 -ドウブツ 🐸️ 5 5 501 -20 -ドウブツ 🐊️ 5 5 501 -20 -ハチュウルイ 🐊️ 5 5 501 -20 -ワニ 🐊️ 5 5 501 -20 -カメ 🐢️ 5 5 501 -20 -ドウブツ 🐢️ 5 5 501 -20 -ハチュウルイ 🐢️ 5 5 501 -20 -トカゲ 🦎️ 5 5 501 -20 -ドウブツ 🦎️ 5 5 501 -20 -ハチュウルイ 🦎️ 5 5 501 -20 -セイザ 🐍️ 5 5 501 -20 -ドウブツ 🐍️ 5 5 501 -20 -ドク 🐍️ 5 5 501 -20 -ハチュウルイ 🐍️ 5 5 501 -20 -ヘビ 🐍️ 5 5 501 -20 -エト 🐲️ 5 5 501 -20 -カオ 🐲️ 5 5 501 -20 -ジュウニシ 🐲️ 5 5 501 -20 -タツ 🐲️ 5 5 501 -20 -ドウブツ 🐲️ 5 5 501 -20 -ドラゴン 🐲️ 5 5 501 -20 -ドラゴンノカオ 🐲️ 5 5 501 -20 -リュウ 🐲️ 5 5 501 -20 -ドウブツ 🐉️ 5 5 501 -20 -ドラゴン 🐉️ 5 5 501 -20 -リュウ 🐉️ 5 5 501 -20 -キョウリュウ 🦕️ 5 5 501 -20 -ソウショクキョウリュウ 🦕️ 5 5 501 -20 -ディプロドクス 🦕️ 5 5 501 -20 -ブラキオサウルス 🦕️ 5 5 501 -20 -リュウキャクルイ 🦕️ 5 5 501 -20 -キョウリュウ 🦖️ 5 5 501 -20 -ティラノサウルス 🦖️ 5 5 501 -20 -クジラ 🐳️ 5 5 501 -20 -シオ 🐳️ 5 5 501 -20 -シオフキ 🐳️ 5 5 501 -20 -シオフキクジラ 🐳️ 5 5 501 -20 -ドウブツ 🐳️ 5 5 501 -20 -クジラ 🐋️ 5 5 501 -20 -ドウブツ 🐋️ 5 5 501 -20 -イルカ 🐬️ 5 5 501 -20 -ドウブツ 🐬️ 5 5 501 -20 -アザラシ 🦭️ 5 5 501 -20 -アシカ 🦭️ 5 5 501 -20 -カイジュウ 🦭️ 5 5 501 -20 -トド 🦭️ 5 5 501 -20 -ドウブツ 🦭️ 5 5 501 -20 -サカナ 🐟️ 5 5 501 -20 -セイザ 🐟️ 5 5 501 -20 -ドウブツ 🐟️ 5 5 501 -20 -サカナ 🐠️ 5 5 501 -20 -ドウブツ 🐠️ 5 5 501 -20 -ネッタイギョ 🐠️ 5 5 501 -20 -サカナ 🐡️ 5 5 501 -20 -ドウブツ 🐡️ 5 5 501 -20 -フグ 🐡️ 5 5 501 -20 -サカナ 🦈️ 5 5 501 -20 -サメ 🦈️ 5 5 501 -20 -ドウブツ 🦈️ 5 5 501 -20 -タコ 🐙️ 5 5 501 -20 -ドウブツ 🐙️ 5 5 501 -20 -カイ 🐚️ 5 5 501 -20 -ドウブツ 🐚️ 5 5 501 -20 -マキガイ 🐚️ 5 5 501 -20 -ウミ 🪸️ 5 5 501 -20 -サンゴ 🪸️ 5 5 501 -20 -サンゴショウ 🪸️ 5 5 501 -20 -カタツムリ 🐌️ 5 5 501 -20 -デンデンムシ 🐌️ 5 5 501 -20 -ムシ 🐌️ 5 5 501 -20 -チョウ 🦋️ 5 5 501 -20 -ムシ 🦋️ 5 5 501 -20 -イモムシ 🐛️ 5 5 501 -20 -ケムシ 🐛️ 5 5 501 -20 -ゲジゲジ 🐛️ 5 5 501 -20 -ムシ 🐛️ 5 5 501 -20 -アリ 🐜️ 5 5 501 -20 -ムシ 🐜️ 5 5 501 -20 -ハチ 🐝️ 5 5 501 -20 -ミツバチ 🐝️ 5 5 501 -20 -ムシ 🐝️ 5 5 501 -20 -カブトムシ 🪲️ 5 5 501 -20 -コンチュウ 🪲️ 5 5 501 -20 -ツノ 🪲️ 5 5 501 -20 -ムシ 🪲️ 5 5 501 -20 -テントウムシ 🐞️ 5 5 501 -20 -ムシ 🐞️ 5 5 501 -20 -コオロギ 🦗️ 5 5 501 -20 -バッタ 🦗️ 5 5 501 -20 -ムシ 🦗️ 5 5 501 -20 -ガイチュウ 🪳️ 5 5 501 -20 -ゴキブリ 🪳️ 5 5 501 -20 -ムシ 🪳️ 5 5 501 -20 -クモ 🕷️️ 5 5 501 -20 -スパイダー 🕷️️ 5 5 501 -20 -ムシ 🕷️️ 5 5 501 -20 -クモ 🕸️️ 5 5 501 -20 -クモノス 🕸️️ 5 5 501 -20 -サソリ 🦂️ 5 5 501 -20 -セイザ 🦂️ 5 5 501 -20 -ムシ 🦂️ 5 5 501 -20 -ウイルス 🦟️ 5 5 501 -20 -カ 🦟️ 5 5 501 -20 -ネツ 🦟️ 5 5 501 -20 -ビョウキ 🦟️ 5 5 501 -20 -マラリア 🦟️ 5 5 501 -20 -ムシ 🦟️ 5 5 501 -20 -ガイチュウ 🪰️ 5 5 501 -20 -ハエ 🪰️ 5 5 501 -20 -ビョウゲンキン 🪰️ 5 5 501 -20 -フケツ 🪰️ 5 5 501 -20 -ムシ 🪰️ 5 5 501 -20 -キセイチュウ 🪱️ 5 5 501 -20 -ミミズ 🪱️ 5 5 501 -20 -ムシ 🪱️ 5 5 501 -20 -アメーバ 🦠️ 5 5 501 -20 -ウイルス 🦠️ 5 5 501 -20 -サイキン 🦠️ 5 5 501 -20 -バクテリア 🦠️ 5 5 501 -20 -ビセイブツ 🦠️ 5 5 501 -20 -ハナ 💐️ 5 5 501 -20 -ハナタバ 💐️ 5 5 501 -20 -ブーケ 💐️ 5 5 501 -20 -サクラ 🌸️ 5 5 501 -20 -ハナ 🌸️ 5 5 501 -20 -タイヘンヨクデキマシタ 💮️ 5 5 501 -20 -ハナ 💮️ 5 5 501 -20 -ハナマル 💮️ 5 5 501 -20 -ヨクデキマシタ 💮️ 5 5 501 -20 -セイジョウ 🪷️ 5 5 501 -20 -ハス 🪷️ 5 5 501 -20 -ハスノハナ 🪷️ 5 5 501 -20 -ハナ 🪷️ 5 5 501 -20 -ヒンドゥーキョウ 🪷️ 5 5 501 -20 -ブッキョウ 🪷️ 5 5 501 -20 -ロータス 🪷️ 5 5 501 -20 -ショクブツ 🏵️️ 5 5 501 -20 -ハナ 🏵️️ 5 5 501 -20 -ハナカザリ 🏵️️ 5 5 501 -20 -ハナ 🌹️ 5 5 501 -20 -バラ 🌹️ 5 5 501 -20 -シオレタ 🥀️ 5 5 501 -20 -シオレタハナ 🥀️ 5 5 501 -20 -ハナ 🥀️ 5 5 501 -20 -ハイビスカス 🌺️ 5 5 501 -20 -ハナ 🌺️ 5 5 501 -20 -ハナ 🌻️ 5 5 501 -20 -ヒマワリ 🌻️ 5 5 501 -20 -カイカ 🌼️ 5 5 501 -20 -サイタハナ 🌼️ 5 5 501 -20 -ハナ 🌼️ 5 5 501 -20 -チューリップ 🌷️ 5 5 501 -20 -ハナ 🌷️ 5 5 501 -20 -シンメ 🌱️ 5 5 501 -20 -フタバ 🌱️ 5 5 501 -20 -メ 🌱️ 5 5 501 -20 -ウエキバチ 🪴️ 5 5 501 -20 -ショクブツ 🪴️ 5 5 501 -20 -ナエ 🪴️ 5 5 501 -20 -ハチウエ 🪴️ 5 5 501 -20 -ベランダ 🪴️ 5 5 501 -20 -ミズヤリ 🪴️ 5 5 501 -20 -ミドリ 🪴️ 5 5 501 -20 -キ 🌲️ 5 5 501 -20 -ジョウリョクジュ 🌲️ 5 5 501 -20 -キ 🌳️ 5 5 501 -20 -ラクヨウジュ 🌳️ 5 5 501 -20 -キ 🌴️ 5 5 501 -20 -ヤシ 🌴️ 5 5 501 -20 -ヤシノキ 🌴️ 5 5 501 -20 -サボテン 🌵️ 5 5 501 -20 -ショクブツ 🌵️ 5 5 501 -20 -イナホ 🌾️ 5 5 501 -20 -イネ 🌾️ 5 5 501 -20 -クサ 🌾️ 5 5 501 -20 -ススキ 🌾️ 5 5 501 -20 -クサ 🌿️ 5 5 501 -20 -ハ 🌿️ 5 5 501 -20 -ハッパ 🌿️ 5 5 501 -20 -ハーブ 🌿️ 5 5 501 -20 -ヤクソウ 🌿️ 5 5 501 -20 -クサ ☘️️ 5 5 501 -20 -クローバー ☘️️ 5 5 501 -20 -ハ ☘️️ 5 5 501 -20 -4 🍀️ 5 5 501 -20 -クサ 🍀️ 5 5 501 -20 -クローバー 🍀️ 5 5 501 -20 -ハ 🍀️ 5 5 501 -20 -ヨツバ 🍀️ 5 5 501 -20 -ヨツバノクローバー 🍀️ 5 5 501 -20 -カエデ 🍁️ 5 5 501 -20 -コウヨウ 🍁️ 5 5 501 -20 -モミジ 🍁️ 5 5 501 -20 -オチバ 🍂️ 5 5 501 -20 -カレハ 🍂️ 5 5 501 -20 -コノハ 🍂️ 5 5 501 -20 -オチバ 🍃️ 5 5 501 -20 -カゼ 🍃️ 5 5 501 -20 -カゼニユレルハ 🍃️ 5 5 501 -20 -コノハ 🍃️ 5 5 501 -20 -ビュウビュウ 🍃️ 5 5 501 -20 -エイソウ 🪹️ 5 5 501 -20 -カラッポノス 🪹️ 5 5 501 -20 -ス 🪹️ 5 5 501 -20 -スヅクリ 🪹️ 5 5 501 -20 -トリノス 🪹️ 5 5 501 -20 -エイソウ 🪺️ 5 5 501 -20 -ス 🪺️ 5 5 501 -20 -スヅクリ 🪺️ 5 5 501 -20 -タマゴ 🪺️ 5 5 501 -20 -トリノス 🪺️ 5 5 501 -20 -トリノタマゴトス 🪺️ 5 5 501 -20 -キノコ 🍄️ 5 5 501 -20 -ドク 🍄️ 5 5 501 -20 -マッシュルーム 🍄️ 5 5 501 -20 -ヤサイ 🍄️ 5 5 501 -20 -クダモノ 🍇️ 5 5 501 -20 -グレープ 🍇️ 5 5 501 -20 -ブドウ 🍇️ 5 5 501 -20 -クダモノ 🍈️ 5 5 501 -20 -メロン 🍈️ 5 5 501 -20 -ヤサイ 🍈️ 5 5 501 -20 -クダモノ 🍉️ 5 5 501 -20 -スイカ 🍉️ 5 5 501 -20 -ヤサイ 🍉️ 5 5 501 -20 -オレンジ 🍊️ 5 5 501 -20 -クダモノ 🍊️ 5 5 501 -20 -ミカン 🍊️ 5 5 501 -20 -クダモノ 🍋️ 5 5 501 -20 -レモン 🍋️ 5 5 501 -20 -クダモノ 🍌️ 5 5 501 -20 -バナナ 🍌️ 5 5 501 -20 -クダモノ 🍍️ 5 5 501 -20 -トロピカル 🍍️ 5 5 501 -20 -パイナップル 🍍️ 5 5 501 -20 -パイン 🍍️ 5 5 501 -20 -クダモノ 🥭️ 5 5 501 -20 -トロピカル 🥭️ 5 5 501 -20 -マンゴー 🥭️ 5 5 501 -20 -アカリンゴ 🍎️ 5 5 501 -20 -アップル 🍎️ 5 5 501 -20 -クダモノ 🍎️ 5 5 501 -20 -リンゴ 🍎️ 5 5 501 -20 -アオリンゴ 🍏️ 5 5 501 -20 -アップル 🍏️ 5 5 501 -20 -クダモノ 🍏️ 5 5 501 -20 -リンゴ 🍏️ 5 5 501 -20 -クダモノ 🍐️ 5 5 501 -20 -セイヨウナシ 🍐️ 5 5 501 -20 -ナシ 🍐️ 5 5 501 -20 -ヨウナシ 🍐️ 5 5 501 -20 -クダモノ 🍑️ 5 5 501 -20 -ピーチ 🍑️ 5 5 501 -20 -モモ 🍑️ 5 5 501 -20 -クダモノ 🍒️ 5 5 501 -20 -サクランボ 🍒️ 5 5 501 -20 -チェリー 🍒️ 5 5 501 -20 -イチゴ 🍓️ 5 5 501 -20 -クダモノ 🍓️ 5 5 501 -20 -ストロベリー 🍓️ 5 5 501 -20 -クダモノ 🫐️ 5 5 501 -20 -ビルベリー 🫐️ 5 5 501 -20 -ブルーベリー 🫐️ 5 5 501 -20 -ベリー 🫐️ 5 5 501 -20 -キウイ 🥝️ 5 5 501 -20 -キウイフルーツ 🥝️ 5 5 501 -20 -クダモノ 🥝️ 5 5 501 -20 -クダモノ 🍅️ 5 5 501 -20 -トマト 🍅️ 5 5 501 -20 -ヤサイ 🍅️ 5 5 501 -20 -オリーブ 🫒️ 5 5 501 -20 -カジツ 🫒️ 5 5 501 -20 -ジツ 🫒️ 5 5 501 -20 -ミ 🫒️ 5 5 501 -20 -クダモノ 🥥️ 5 5 501 -20 -ココナッツ 🥥️ 5 5 501 -20 -ココナツ 🥥️ 5 5 501 -20 -ヤシノミ 🥥️ 5 5 501 -20 -アボカド 🥑️ 5 5 501 -20 -アボガド 🥑️ 5 5 501 -20 -クダモノ 🥑️ 5 5 501 -20 -ヤサイ 🥑️ 5 5 501 -20 -ナス 🍆️ 5 5 501 -20 -ヤサイ 🍆️ 5 5 501 -20 -イモ 🥔️ 5 5 501 -20 -ジャガイモ 🥔️ 5 5 501 -20 -ポテト 🥔️ 5 5 501 -20 -ヤサイ 🥔️ 5 5 501 -20 -ニンジン 🥕️ 5 5 501 -20 -ヤサイ 🥕️ 5 5 501 -20 -コーン 🌽️ 5 5 501 -20 -トウモロコシ 🌽️ 5 5 501 -20 -ヤサイ 🌽️ 5 5 501 -20 -カライ 🌶️️ 5 5 501 -20 -コウシンリョウ 🌶️️ 5 5 501 -20 -トウガラシ 🌶️️ 5 5 501 -20 -ヤサイ 🌶️️ 5 5 501 -20 -アカピーマン 🫑️ 5 5 501 -20 -トウガラシ 🫑️ 5 5 501 -20 -パプリカ 🫑️ 5 5 501 -20 -ピーマン 🫑️ 5 5 501 -20 -ヤサイ 🫑️ 5 5 501 -20 -キュウリ 🥒️ 5 5 501 -20 -ツケモノ 🥒️ 5 5 501 -20 -ピクルス 🥒️ 5 5 501 -20 -ヤサイ 🥒️ 5 5 501 -20 -キャベツ 🥬️ 5 5 501 -20 -ケール 🥬️ 5 5 501 -20 -チンゲンサイ 🥬️ 5 5 501 -20 -ハヤサイ 🥬️ 5 5 501 -20 -レタス 🥬️ 5 5 501 -20 -ブロッコリー 🥦️ 5 5 501 -20 -ヤサイ 🥦️ 5 5 501 -20 -カオリ 🧄️ 5 5 501 -20 -ニオイ 🧄️ 5 5 501 -20 -ニンニク 🧄️ 5 5 501 -20 -ヤクミ 🧄️ 5 5 501 -20 -ヤサイ 🧄️ 5 5 501 -20 -タマネギ 🧅️ 5 5 501 -20 -ネギ 🧅️ 5 5 501 -20 -ヤクミ 🧅️ 5 5 501 -20 -ヤサイ 🧅️ 5 5 501 -20 -ナッツ 🥜️ 5 5 501 -20 -ピーナッツ 🥜️ 5 5 501 -20 -ヤサイ 🥜️ 5 5 501 -20 -ラッカセイ 🥜️ 5 5 501 -20 -アズキ 🫘️ 5 5 501 -20 -キントキマメ 🫘️ 5 5 501 -20 -ビーンズ 🫘️ 5 5 501 -20 -マメ 🫘️ 5 5 501 -20 -レッドキドニー 🫘️ 5 5 501 -20 -クリ 🌰️ 5 5 501 -20 -ヤサイ 🌰️ 5 5 501 -20 -ショクパン 🍞️ 5 5 501 -20 -パン 🍞️ 5 5 501 -20 -ベーカリー 🍞️ 5 5 501 -20 -クロワッサン 🥐️ 5 5 501 -20 -パン 🥐️ 5 5 501 -20 -フランス 🥐️ 5 5 501 -20 -ベーカリー 🥐️ 5 5 501 -20 -バゲット 🥖️ 5 5 501 -20 -パン 🥖️ 5 5 501 -20 -フランスパン 🥖️ 5 5 501 -20 -ベーカリー 🥖️ 5 5 501 -20 -アレパ 🫓️ 5 5 501 -20 -ナン 🫓️ 5 5 501 -20 -パン 🫓️ 5 5 501 -20 -ピタパン 🫓️ 5 5 501 -20 -フラットブレッド 🫓️ 5 5 501 -20 -ラバシ 🫓️ 5 5 501 -20 -ネジリ 🥨️ 5 5 501 -20 -パン 🥨️ 5 5 501 -20 -プレッツェル 🥨️ 5 5 501 -20 -クリームチーズ 🥯️ 5 5 501 -20 -パンヤ 🥯️ 5 5 501 -20 -ベーカリー 🥯️ 5 5 501 -20 -ベーグル 🥯️ 5 5 501 -20 -パンケーキ 🥞️ 5 5 501 -20 -ホットケーキ 🥞️ 5 5 501 -20 -フンワリ 🧇️ 5 5 501 -20 -ヤキガシ 🧇️ 5 5 501 -20 -ワッフル 🧇️ 5 5 501 -20 -チーズ 🧀️ 5 5 501 -20 -ニク 🍖️ 5 5 501 -20 -ホネツキニク 🍖️ 5 5 501 -20 -モモニク 🍖️ 5 5 501 -20 -チキン 🍗️ 5 5 501 -20 -トリモモニク 🍗️ 5 5 501 -20 -ニク 🍗️ 5 5 501 -20 -ニワトリモモニク 🍗️ 5 5 501 -20 -ホネツキニク 🍗️ 5 5 501 -20 -モモニク 🍗️ 5 5 501 -20 -ステーキ 🥩️ 5 5 501 -20 -ステーキニク 🥩️ 5 5 501 -20 -ニク 🥩️ 5 5 501 -20 -ビーフ 🥩️ 5 5 501 -20 -ポーク 🥩️ 5 5 501 -20 -ラム 🥩️ 5 5 501 -20 -ニク 🥓️ 5 5 501 -20 -ベーコン 🥓️ 5 5 501 -20 -ハンバーガー 🍔️ 5 5 501 -20 -バーガー 🍔️ 5 5 501 -20 -フライドポテト 🍟️ 5 5 501 -20 -フレンチフライ 🍟️ 5 5 501 -20 -ポテト 🍟️ 5 5 501 -20 -ポテトフライ 🍟️ 5 5 501 -20 -チーズ 🍕️ 5 5 501 -20 -ピザ 🍕️ 5 5 501 -20 -ピッツァ 🍕️ 5 5 501 -20 -ソーセージ 🌭️ 5 5 501 -20 -フランクフルト 🌭️ 5 5 501 -20 -ホットドッグ 🌭️ 5 5 501 -20 -サンドイッチ 🥪️ 5 5 501 -20 -パン 🥪️ 5 5 501 -20 -タコス 🌮️ 5 5 501 -20 -メキシカン 🌮️ 5 5 501 -20 -ソフトタコス 🌯️ 5 5 501 -20 -ブリトー 🌯️ 5 5 501 -20 -メキシカン 🌯️ 5 5 501 -20 -タマル 🫔️ 5 5 501 -20 -タマレス 🫔️ 5 5 501 -20 -チマキ 🫔️ 5 5 501 -20 -メキシカン 🫔️ 5 5 501 -20 -ケバブ 🥙️ 5 5 501 -20 -ケバブサンド 🥙️ 5 5 501 -20 -ラップサンド 🥙️ 5 5 501 -20 -コロッケ 🧆️ 5 5 501 -20 -ニクダンゴ 🧆️ 5 5 501 -20 -ヒヨコマメ 🧆️ 5 5 501 -20 -ファラフェル 🧆️ 5 5 501 -20 -タマゴ 🥚️ 5 5 501 -20 -タマゴ 🍳️ 5 5 501 -20 -フライパン 🍳️ 5 5 501 -20 -メダマヤキ 🍳️ 5 5 501 -20 -リョウリ 🍳️ 5 5 501 -20 -シーフード 🥘️ 5 5 501 -20 -パエリア 🥘️ 5 5 501 -20 -シチュー 🍲️ 5 5 501 -20 -ナベ 🍲️ 5 5 501 -20 -ナベリョウリ 🍲️ 5 5 501 -20 -ニコミ 🍲️ 5 5 501 -20 -ニモノ 🍲️ 5 5 501 -20 -スイス 🫕️ 5 5 501 -20 -チョコ 🫕️ 5 5 501 -20 -チーズ 🫕️ 5 5 501 -20 -トカス 🫕️ 5 5 501 -20 -ナベ 🫕️ 5 5 501 -20 -フォンデュ 🫕️ 5 5 501 -20 -オカユ 🥣️ 5 5 501 -20 -シリアル 🥣️ 5 5 501 -20 -チョウショク 🥣️ 5 5 501 -20 -ボウルトスプーン 🥣️ 5 5 501 -20 -グリーン 🥗️ 5 5 501 -20 -グリーンサラダ 🥗️ 5 5 501 -20 -サラダ 🥗️ 5 5 501 -20 -オカシ 🍿️ 5 5 501 -20 -ポップコーン 🍿️ 5 5 501 -20 -ニュウセイヒン 🧈️ 5 5 501 -20 -バター 🧈️ 5 5 501 -20 -シオ 🧂️ 5 5 501 -20 -チョウミリョウ 🧂️ 5 5 501 -20 -フリカケヨウキ 🧂️ 5 5 501 -20 -ヤクミ 🧂️ 5 5 501 -20 -カン 🥫️ 5 5 501 -20 -カンヅメ 🥫️ 5 5 501 -20 -ヒジョウショク 🥫️ 5 5 501 -20 -エキベン 🍱️ 5 5 501 -20 -ベントウ 🍱️ 5 5 501 -20 -マクノウチ 🍱️ 5 5 501 -20 -オカシ 🍘️ 5 5 501 -20 -オセンベイ 🍘️ 5 5 501 -20 -センベイ 🍘️ 5 5 501 -20 -オニギリ 🍙️ 5 5 501 -20 -オムスビ 🍙️ 5 5 501 -20 -コメ 🍙️ 5 5 501 -20 -コメ 🍚️ 5 5 501 -20 -ゴハン 🍚️ 5 5 501 -20 -チャワン 🍚️ 5 5 501 -20 -ライス 🍚️ 5 5 501 -20 -カレー 🍛️ 5 5 501 -20 -カレーライス 🍛️ 5 5 501 -20 -ライス 🍛️ 5 5 501 -20 -アツアツ 🍜️ 5 5 501 -20 -ドンブリ 🍜️ 5 5 501 -20 -ラーメン 🍜️ 5 5 501 -20 -スパゲッティ 🍝️ 5 5 501 -20 -スパゲッティー 🍝️ 5 5 501 -20 -パスタ 🍝️ 5 5 501 -20 -イモ 🍠️ 5 5 501 -20 -サツマイモ 🍠️ 5 5 501 -20 -ヤキイモ 🍠️ 5 5 501 -20 -オデン 🍢️ 5 5 501 -20 -オスシ 🍣️ 5 5 501 -20 -スシ 🍣️ 5 5 501 -20 -エビ 🍤️ 5 5 501 -20 -エビフライ 🍤️ 5 5 501 -20 -テンプラ 🍤️ 5 5 501 -20 -フライ 🍤️ 5 5 501 -20 -ウズ 🍥️ 5 5 501 -20 -ウズマキ 🍥️ 5 5 501 -20 -ナルト 🍥️ 5 5 501 -20 -ネリモノ 🍥️ 5 5 501 -20 -アキ 🥮️ 5 5 501 -20 -オイワイ 🥮️ 5 5 501 -20 -ゲッペイ 🥮️ 5 5 501 -20 -チュウカカシ 🥮️ 5 5 501 -20 -チュウシュウセツ 🥮️ 5 5 501 -20 -チュウシュウブシ 🥮️ 5 5 501 -20 -オダンゴ 🍡️ 5 5 501 -20 -ダンゴ 🍡️ 5 5 501 -20 -ワガシ 🍡️ 5 5 501 -20 -ギョウザ 🥟️ 5 5 501 -20 -テンシン 🥟️ 5 5 501 -20 -ニクマン 🥟️ 5 5 501 -20 -オミクジ 🥠️ 5 5 501 -20 -フォーチュンクッキー 🥠️ 5 5 501 -20 -チュウカ 🥡️ 5 5 501 -20 -テイクアウトベントウ 🥡️ 5 5 501 -20 -ベントウ 🥡️ 5 5 501 -20 -モチカエリ 🥡️ 5 5 501 -20 -カニ 🦀️ 5 5 501 -20 -セイザ 🦀️ 5 5 501 -20 -ドウブツ 🦀️ 5 5 501 -20 -ザリガニ 🦞️ 5 5 501 -20 -シーフード 🦞️ 5 5 501 -20 -ハサミ 🦞️ 5 5 501 -20 -ビスク 🦞️ 5 5 501 -20 -ロブスター 🦞️ 5 5 501 -20 -エビ 🦐️ 5 5 501 -20 -シュリンプ 🦐️ 5 5 501 -20 -シーフード 🦐️ 5 5 501 -20 -ドウブツ 🦐️ 5 5 501 -20 -イカ 🦑️ 5 5 501 -20 -シーフード 🦑️ 5 5 501 -20 -ドウブツ 🦑️ 5 5 501 -20 -オイスター 🦪️ 5 5 501 -20 -カイ 🦪️ 5 5 501 -20 -カキ 🦪️ 5 5 501 -20 -ギョカイ 🦪️ 5 5 501 -20 -シーフード 🦪️ 5 5 501 -20 -ナマガキ 🦪️ 5 5 501 -20 -アイス 🍦️ 5 5 501 -20 -オカシ 🍦️ 5 5 501 -20 -スイーツ 🍦️ 5 5 501 -20 -ソフト 🍦️ 5 5 501 -20 -ソフトクリーム 🍦️ 5 5 501 -20 -デザート 🍦️ 5 5 501 -20 -アイス 🍧️ 5 5 501 -20 -オカシ 🍧️ 5 5 501 -20 -カキゴオリ 🍧️ 5 5 501 -20 -コオリ 🍧️ 5 5 501 -20 -デザート 🍧️ 5 5 501 -20 -アイス 🍨️ 5 5 501 -20 -アイスクリーム 🍨️ 5 5 501 -20 -オカシ 🍨️ 5 5 501 -20 -スイーツ 🍨️ 5 5 501 -20 -デザート 🍨️ 5 5 501 -20 -オカシ 🍩️ 5 5 501 -20 -スイーツ 🍩️ 5 5 501 -20 -デザート 🍩️ 5 5 501 -20 -ドーナツ 🍩️ 5 5 501 -20 -オカシ 🍪️ 5 5 501 -20 -クッキー 🍪️ 5 5 501 -20 -スイーツ 🍪️ 5 5 501 -20 -デザート 🍪️ 5 5 501 -20 -オタンジョウビ 🎂️ 5 5 501 -20 -ケーキ 🎂️ 5 5 501 -20 -タンジョウビ 🎂️ 5 5 501 -20 -バースデー 🎂️ 5 5 501 -20 -バースデーケーキ 🎂️ 5 5 501 -20 -オカシ 🍰️ 5 5 501 -20 -ケーキ 🍰️ 5 5 501 -20 -ショートケーキ 🍰️ 5 5 501 -20 -スイーツ 🍰️ 5 5 501 -20 -デザート 🍰️ 5 5 501 -20 -オカシ 🧁️ 5 5 501 -20 -カップケーキ 🧁️ 5 5 501 -20 -ケーキ 🧁️ 5 5 501 -20 -スイーツ 🧁️ 5 5 501 -20 -ベーカリー 🧁️ 5 5 501 -20 -オカシ 🥧️ 5 5 501 -20 -タルト 🥧️ 5 5 501 -20 -パイ 🥧️ 5 5 501 -20 -オカシ 🍫️ 5 5 501 -20 -スイーツ 🍫️ 5 5 501 -20 -チョコ 🍫️ 5 5 501 -20 -チョコレート 🍫️ 5 5 501 -20 -デザート 🍫️ 5 5 501 -20 -アメ 🍬️ 5 5 501 -20 -オカシ 🍬️ 5 5 501 -20 -キャンディ 🍬️ 5 5 501 -20 -キャンディー 🍬️ 5 5 501 -20 -アメ 🍭️ 5 5 501 -20 -オカシ 🍭️ 5 5 501 -20 -キャンディ 🍭️ 5 5 501 -20 -キャンディー 🍭️ 5 5 501 -20 -ペロペロキャンディ 🍭️ 5 5 501 -20 -ボウツキキャンディ 🍭️ 5 5 501 -20 -オカシ 🍮️ 5 5 501 -20 -スイーツ 🍮️ 5 5 501 -20 -デザート 🍮️ 5 5 501 -20 -プリン 🍮️ 5 5 501 -20 -アマイ 🍯️ 5 5 501 -20 -ハチミツ 🍯️ 5 5 501 -20 -ハニー 🍯️ 5 5 501 -20 -ハニーポット 🍯️ 5 5 501 -20 -ミツビン 🍯️ 5 5 501 -20 -アカチャン 🍼️ 5 5 501 -20 -ホニュウビン 🍼️ 5 5 501 -20 -ミルク 🍼️ 5 5 501 -20 -ギュウニュウ 🥛️ 5 5 501 -20 -ギュウニュウイリノコップ 🥛️ 5 5 501 -20 -コップ 🥛️ 5 5 501 -20 -ミルク 🥛️ 5 5 501 -20 -アタタカイノミモノ ☕️ 5 5 501 -20 -カップ ☕️ 5 5 501 -20 -キッサテン ☕️ 5 5 501 -20 -コウチャ ☕️ 5 5 501 -20 -コーヒー ☕️ 5 5 501 -20 -ノミモノ ☕️ 5 5 501 -20 -ホットドリンク ☕️ 5 5 501 -20 -オチャ 🫖️ 5 5 501 -20 -キュウス 🫖️ 5 5 501 -20 -チャキ 🫖️ 5 5 501 -20 -ティーポット 🫖️ 5 5 501 -20 -ノミモノ 🫖️ 5 5 501 -20 -オチャ 🍵️ 5 5 501 -20 -ノミモノ 🍵️ 5 5 501 -20 -ユノミ 🍵️ 5 5 501 -20 -リョクチャ 🍵️ 5 5 501 -20 -サケ 🍶️ 5 5 501 -20 -トックリ 🍶️ 5 5 501 -20 -ニホンシュ 🍶️ 5 5 501 -20 -アワ 🍾️ 5 5 501 -20 -シャンパン 🍾️ 5 5 501 -20 -シャンペン 🍾️ 5 5 501 -20 -スパークリングワイン 🍾️ 5 5 501 -20 -スプマンテ 🍾️ 5 5 501 -20 -ボトル 🍾️ 5 5 501 -20 -グラス 🍷️ 5 5 501 -20 -バー 🍷️ 5 5 501 -20 -ワイン 🍷️ 5 5 501 -20 -ワイングラス 🍷️ 5 5 501 -20 -カクテル 🍸️ 5 5 501 -20 -カクテルグラス 🍸️ 5 5 501 -20 -グラス 🍸️ 5 5 501 -20 -バー 🍸️ 5 5 501 -20 -カクテル 🍹️ 5 5 501 -20 -トロピカル 🍹️ 5 5 501 -20 -トロピカルドリンク 🍹️ 5 5 501 -20 -バー 🍹️ 5 5 501 -20 -イザカヤ 🍺️ 5 5 501 -20 -ジョッキ 🍺️ 5 5 501 -20 -バー 🍺️ 5 5 501 -20 -ビール 🍺️ 5 5 501 -20 -ビールジョッキ 🍺️ 5 5 501 -20 -エンカイ 🍻️ 5 5 501 -20 -カンパイ 🍻️ 5 5 501 -20 -ジョッキ 🍻️ 5 5 501 -20 -ビール 🍻️ 5 5 501 -20 -ビールデカンパイ 🍻️ 5 5 501 -20 -カンパイ 🥂️ 5 5 501 -20 -グラスデカンパイ 🥂️ 5 5 501 -20 -シャンパン 🥂️ 5 5 501 -20 -シャンペン 🥂️ 5 5 501 -20 -スパークリングワイン 🥂️ 5 5 501 -20 -スプマンテ 🥂️ 5 5 501 -20 -ウィスキー 🥃️ 5 5 501 -20 -ウイスキー 🥃️ 5 5 501 -20 -グラス 🥃️ 5 5 501 -20 -タンブラー 🥃️ 5 5 501 -20 -タンブラーグラス 🥃️ 5 5 501 -20 -エキタイ 🫗️ 5 5 501 -20 -ガラス 🫗️ 5 5 501 -20 -コップ 🫗️ 5 5 501 -20 -コップカラソソグ 🫗️ 5 5 501 -20 -コボス 🫗️ 5 5 501 -20 -ソソグ 🫗️ 5 5 501 -20 -ノミモノ 🫗️ 5 5 501 -20 -コップ 🥤️ 5 5 501 -20 -ジュース 🥤️ 5 5 501 -20 -ストローカップ 🥤️ 5 5 501 -20 -オチャ 🧋️ 5 5 501 -20 -タピオカ 🧋️ 5 5 501 -20 -タピオカドリンク 🧋️ 5 5 501 -20 -ドリンク 🧋️ 5 5 501 -20 -バブルティー 🧋️ 5 5 501 -20 -ミルクティー 🧋️ 5 5 501 -20 -カミパックインリョウ 🧃️ 5 5 501 -20 -ジュース 🧃️ 5 5 501 -20 -ドリンク 🧃️ 5 5 501 -20 -ノミモノ 🧃️ 5 5 501 -20 -オチャ 🧉️ 5 5 501 -20 -ドリンク 🧉️ 5 5 501 -20 -ノミモノ 🧉️ 5 5 501 -20 -マテチャ 🧉️ 5 5 501 -20 -カクゴオリ 🧊️ 5 5 501 -20 -コオリ 🧊️ 5 5 501 -20 -ツメタイ 🧊️ 5 5 501 -20 -オハシ 🥢️ 5 5 501 -20 -ハシ 🥢️ 5 5 501 -20 -オサラ 🍽️️ 5 5 501 -20 -サラ 🍽️️ 5 5 501 -20 -ナイフ 🍽️️ 5 5 501 -20 -ナイフトフォークトサラ 🍽️️ 5 5 501 -20 -フォーク 🍽️️ 5 5 501 -20 -カトラリー 🍴️ 5 5 501 -20 -ナイフ 🍴️ 5 5 501 -20 -ナイフトフォーク 🍴️ 5 5 501 -20 -ナイフ・フォーク 🍴️ 5 5 501 -20 -フォーク 🍴️ 5 5 501 -20 -レストラン 🍴️ 5 5 501 -20 -カトラリー 🥄️ 5 5 501 -20 -ショッキ 🥄️ 5 5 501 -20 -スプーン 🥄️ 5 5 501 -20 -ナイフ 🔪️ 5 5 501 -20 -ホウチョウ 🔪️ 5 5 501 -20 -リョウリ 🔪️ 5 5 501 -20 -アキ 🫙️ 5 5 501 -20 -アキビン 🫙️ 5 5 501 -20 -カラノビン 🫙️ 5 5 501 -20 -チョウミリョウ 🫙️ 5 5 501 -20 -ビン 🫙️ 5 5 501 -20 -ホゾン 🫙️ 5 5 501 -20 -ヨウキ 🫙️ 5 5 501 -20 -カメ 🏺️ 5 5 501 -20 -セイザ 🏺️ 5 5 501 -20 -ツボ 🏺️ 5 5 501 -20 -ミズガメ 🏺️ 5 5 501 -20 -アフリカ 🌍️ 5 5 501 -20 -チキュウ 🌍️ 5 5 501 -20 -ヨーロッパ 🌍️ 5 5 501 -20 -アメリカ 🌎️ 5 5 501 -20 -アメリカタイリク 🌎️ 5 5 501 -20 -チキュウ 🌎️ 5 5 501 -20 -アジア 🌏️ 5 5 501 -20 -オーストラリア 🌏️ 5 5 501 -20 -チキュウ 🌏️ 5 5 501 -20 -シゴセン 🌐️ 5 5 501 -20 -シゴセンノアルチキュウ 🌐️ 5 5 501 -20 -チキュウ 🌐️ 5 5 501 -20 -セカイ 🗺️️ 5 5 501 -20 -セカイチズ 🗺️️ 5 5 501 -20 -チズ 🗺️️ 5 5 501 -20 -チズ 🗾️ 5 5 501 -20 -ニッポン 🗾️ 5 5 501 -20 -ニッポンチズ 🗾️ 5 5 501 -20 -ニホン 🗾️ 5 5 501 -20 -ニホンチズ 🗾️ 5 5 501 -20 -オリエンテーリング 🧭️ 5 5 501 -20 -コウカイ 🧭️ 5 5 501 -20 -コウクウ 🧭️ 5 5 501 -20 -コンパス 🧭️ 5 5 501 -20 -ジシャク 🧭️ 5 5 501 -20 -カンセツ 🏔️️ 5 5 501 -20 -ヤマ 🏔️️ 5 5 501 -20 -ユキ 🏔️️ 5 5 501 -20 -ユキヤマ 🏔️️ 5 5 501 -20 -サンガク ⛰️️ 5 5 501 -20 -ヤマ ⛰️️ 5 5 501 -20 -カザン 🌋️ 5 5 501 -20 -フンカ 🌋️ 5 5 501 -20 -ヤマ 🌋️ 5 5 501 -20 -フジサン 🗻️ 5 5 501 -20 -ヤマ 🗻️ 5 5 501 -20 -キャンプ 🏕️️ 5 5 501 -20 -テント 🏕️️ 5 5 501 -20 -ヤマ 🏕️️ 5 5 501 -20 -スナハマ 🏖️️ 5 5 501 -20 -パラソル 🏖️️ 5 5 501 -20 -ビーチ 🏖️️ 5 5 501 -20 -ビーチパラソル 🏖️️ 5 5 501 -20 -サバク 🏜️️ 5 5 501 -20 -サボテン 🏜️️ 5 5 501 -20 -サボテンノアルサバク 🏜️️ 5 5 501 -20 -シマ 🏝️️ 5 5 501 -20 -ムジントウ 🏝️️ 5 5 501 -20 -ヤシ 🏝️️ 5 5 501 -20 -ヤシノキノアルシマ 🏝️️ 5 5 501 -20 -コウエン 🏞️️ 5 5 501 -20 -コクリツコウエン 🏞️️ 5 5 501 -20 -シゼン 🏞️️ 5 5 501 -20 -キョウギジョウ 🏟️️ 5 5 501 -20 -スタジアム 🏟️️ 5 5 501 -20 -ヤキュウジョウ 🏟️️ 5 5 501 -20 -シセキ 🏛️️ 5 5 501 -20 -レキシ 🏛️️ 5 5 501 -20 -レキシテキケンゾウブツ 🏛️️ 5 5 501 -20 -レキシテキナタテモノ 🏛️️ 5 5 501 -20 -クレーン 🏗️️ 5 5 501 -20 -ケンセツ 🏗️️ 5 5 501 -20 -ケンセツチュウ 🏗️️ 5 5 501 -20 -コウジ 🏗️️ 5 5 501 -20 -カベ 🧱️ 5 5 501 -20 -シックイ 🧱️ 5 5 501 -20 -ネンド 🧱️ 5 5 501 -20 -モルタル 🧱️ 5 5 501 -20 -レンガ 🧱️ 5 5 501 -20 -オモタイ 🪨️ 5 5 501 -20 -カタイ 🪨️ 5 5 501 -20 -ガンセキ 🪨️ 5 5 501 -20 -キョガン 🪨️ 5 5 501 -20 -セキザイ 🪨️ 5 5 501 -20 -ザイモク 🪵️ 5 5 501 -20 -ジュモク 🪵️ 5 5 501 -20 -マルタ 🪵️ 5 5 501 -20 -モクザイ 🪵️ 5 5 501 -20 -ログ 🪵️ 5 5 501 -20 -コヤ 🛖️ 5 5 501 -20 -バンガロー 🛖️ 5 5 501 -20 -ユルト 🛖️ 5 5 501 -20 -ワラブキコヤ 🛖️ 5 5 501 -20 -イエ 🏘️️ 5 5 501 -20 -ジュウタクガイ 🏘️️ 5 5 501 -20 -フクスウノイエ 🏘️️ 5 5 501 -20 -マチ 🏘️️ 5 5 501 -20 -アキヤ 🏚️️ 5 5 501 -20 -イエ 🏚️️ 5 5 501 -20 -タテモノ 🏚️️ 5 5 501 -20 -ハイオク 🏚️️ 5 5 501 -20 -イエ 🏠️ 5 5 501 -20 -カオク 🏠️ 5 5 501 -20 -タテモノ 🏠️ 5 5 501 -20 -マイホーム 🏠️ 5 5 501 -20 -イエ 🏡️ 5 5 501 -20 -ウチ 🏡️ 5 5 501 -20 -タテモノ 🏡️ 5 5 501 -20 -ニワ 🏡️ 5 5 501 -20 -ニワツキノイエ 🏡️ 5 5 501 -20 -ホーム 🏡️ 5 5 501 -20 -マイホーム 🏡️ 5 5 501 -20 -オフィスビル 🏢️ 5 5 501 -20 -タテモノ 🏢️ 5 5 501 -20 -ビル 🏢️ 5 5 501 -20 -タテモノ 🏣️ 5 5 501 -20 -ユウビン 🏣️ 5 5 501 -20 -ユウビンキョク 🏣️ 5 5 501 -20 -セイヨウノユウビンキョク 🏤️ 5 5 501 -20 -タテモノ 🏤️ 5 5 501 -20 -ユウビン 🏤️ 5 5 501 -20 -イシャ 🏥️ 5 5 501 -20 -クスリ 🏥️ 5 5 501 -20 -タテモノ 🏥️ 5 5 501 -20 -ビョウイン 🏥️ 5 5 501 -20 -ギンコウ 🏦️ 5 5 501 -20 -タテモノ 🏦️ 5 5 501 -20 -タテモノ 🏨️ 5 5 501 -20 -ホテル 🏨️ 5 5 501 -20 -タテモノ 🏩️ 5 5 501 -20 -ホテル 🏩️ 5 5 501 -20 -ラブホ 🏩️ 5 5 501 -20 -ラブホテル 🏩️ 5 5 501 -20 -コンビニ 🏪️ 5 5 501 -20 -コンビニエンスストア 🏪️ 5 5 501 -20 -タテモノ 🏪️ 5 5 501 -20 -ガッコウ 🏫️ 5 5 501 -20 -タテモノ 🏫️ 5 5 501 -20 -タテモノ 🏬️ 5 5 501 -20 -デパート 🏬️ 5 5 501 -20 -ヒャッカテン 🏬️ 5 5 501 -20 -コウジョウ 🏭️ 5 5 501 -20 -コウバ 🏭️ 5 5 501 -20 -タテモノ 🏭️ 5 5 501 -20 -オシロ 🏯️ 5 5 501 -20 -シロ 🏯️ 5 5 501 -20 -タテモノ 🏯️ 5 5 501 -20 -ニッポン 🏯️ 5 5 501 -20 -ニホン 🏯️ 5 5 501 -20 -オシロ 🏰️ 5 5 501 -20 -キャッスル 🏰️ 5 5 501 -20 -シロ 🏰️ 5 5 501 -20 -セイヨウノシロ 🏰️ 5 5 501 -20 -タテモノ 🏰️ 5 5 501 -20 -キョウカイ 💒️ 5 5 501 -20 -ケッコン 💒️ 5 5 501 -20 -ケッコンシキ 💒️ 5 5 501 -20 -シキジョウ 💒️ 5 5 501 -20 -タテモノ 💒️ 5 5 501 -20 -タワー 🗼️ 5 5 501 -20 -トウキョウ 🗼️ 5 5 501 -20 -トウキョウタワー 🗼️ 5 5 501 -20 -アメリカ 🗽️ 5 5 501 -20 -ジユウノメガミ 🗽️ 5 5 501 -20 -チョウゾウ 🗽️ 5 5 501 -20 -ニューヨーク 🗽️ 5 5 501 -20 -メガミ 🗽️ 5 5 501 -20 -キョウカイ ⛪️ 5 5 501 -20 -キリストキョウ ⛪️ 5 5 501 -20 -シュウキョウ ⛪️ 5 5 501 -20 -タテモノ ⛪️ 5 5 501 -20 -チャペル ⛪️ 5 5 501 -20 -イスラムキョウ 🕌️ 5 5 501 -20 -シュウキョウ 🕌️ 5 5 501 -20 -タテモノ 🕌️ 5 5 501 -20 -モスク 🕌️ 5 5 501 -20 -シュウキョウ 🛕️ 5 5 501 -20 -タテモノ 🛕️ 5 5 501 -20 -テラ 🛕️ 5 5 501 -20 -ヒンズーキョウ 🛕️ 5 5 501 -20 -ヒンドゥーキョウノジイン 🛕️ 5 5 501 -20 -シナゴーグ 🕍️ 5 5 501 -20 -シュウキョウ 🕍️ 5 5 501 -20 -タテモノ 🕍️ 5 5 501 -20 -ユダヤキョウ 🕍️ 5 5 501 -20 -シュウキョウ ⛩️️ 5 5 501 -20 -シントウ ⛩️️ 5 5 501 -20 -ジンジャ ⛩️️ 5 5 501 -20 -タテモノ ⛩️️ 5 5 501 -20 -トリイ ⛩️️ 5 5 501 -20 -イスラムキョウ 🕋️ 5 5 501 -20 -カーバ 🕋️ 5 5 501 -20 -シュウキョウ 🕋️ 5 5 501 -20 -セイチ 🕋️ 5 5 501 -20 -タテモノ 🕋️ 5 5 501 -20 -メッカ 🕋️ 5 5 501 -20 -コウエン ⛲️ 5 5 501 -20 -フンスイ ⛲️ 5 5 501 -20 -キャンプ ⛺️ 5 5 501 -20 -テント ⛺️ 5 5 501 -20 -キリ 🌁️ 5 5 501 -20 -キリノトカイ 🌁️ 5 5 501 -20 -トカイ 🌁️ 5 5 501 -20 -ナガレボシ 🌃️ 5 5 501 -20 -ホシ 🌃️ 5 5 501 -20 -ヤケイ 🌃️ 5 5 501 -20 -ヨル 🌃️ 5 5 501 -20 -ヨルノトカイ 🌃️ 5 5 501 -20 -コウソウビル 🏙️️ 5 5 501 -20 -トカイ 🏙️️ 5 5 501 -20 -ビルグン 🏙️️ 5 5 501 -20 -アサ 🌄️ 5 5 501 -20 -アサヒ 🌄️ 5 5 501 -20 -ゴライコウ 🌄️ 5 5 501 -20 -タイヨウ 🌄️ 5 5 501 -20 -ヒノデ 🌄️ 5 5 501 -20 -ヤマカラヒノデ 🌄️ 5 5 501 -20 -アサ 🌅️ 5 5 501 -20 -アサヒ 🌅️ 5 5 501 -20 -タイヨウ 🌅️ 5 5 501 -20 -ヒノデ 🌅️ 5 5 501 -20 -トカイ 🌆️ 5 5 501 -20 -ユウガタ 🌆️ 5 5 501 -20 -ユウグレ 🌆️ 5 5 501 -20 -ユウグレノトカイ 🌆️ 5 5 501 -20 -ユウヒ 🌆️ 5 5 501 -20 -ヨル 🌆️ 5 5 501 -20 -タイヨウ 🌇️ 5 5 501 -20 -ユウガタ 🌇️ 5 5 501 -20 -ユウグレ 🌇️ 5 5 501 -20 -ユウヒ 🌇️ 5 5 501 -20 -ハシ 🌉️ 5 5 501 -20 -ヤケイ 🌉️ 5 5 501 -20 -ヨル 🌉️ 5 5 501 -20 -ヨルノハシ 🌉️ 5 5 501 -20 -イイキブン ♨️️ 5 5 501 -20 -オンセン ♨️️ 5 5 501 -20 -オンセンマーク ♨️️ 5 5 501 -20 -メリーゴーランド 🎠️ 5 5 501 -20 -ユウエンチ 🎠️ 5 5 501 -20 -コウエン 🛝️ 5 5 501 -20 -スベリダイ 🛝️ 5 5 501 -20 -ユウグ 🛝️ 5 5 501 -20 -カンランシャ 🎡️ 5 5 501 -20 -ユウエンチ 🎡️ 5 5 501 -20 -コースター 🎢️ 5 5 501 -20 -ジェットコースター 🎢️ 5 5 501 -20 -ユウエンチ 🎢️ 5 5 501 -20 -サンパツ 💈️ 5 5 501 -20 -トコヤ 💈️ 5 5 501 -20 -バーバー 💈️ 5 5 501 -20 -ビヨウイン 💈️ 5 5 501 -20 -ビヨウシツ 💈️ 5 5 501 -20 -ヘアサロン 💈️ 5 5 501 -20 -リハツテン 💈️ 5 5 501 -20 -イベント 🎪️ 5 5 501 -20 -サーカス 🎪️ 5 5 501 -20 -サーカステント 🎪️ 5 5 501 -20 -テント 🎪️ 5 5 501 -20 -sl 🚂️ 5 5 501 -20 -エスエル 🚂️ 5 5 501 -20 -ジョウキキカンシャ 🚂️ 5 5 501 -20 -ノリモノ 🚂️ 5 5 501 -20 -レッシャ 🚂️ 5 5 501 -20 -デンシャ 🚃️ 5 5 501 -20 -ノリモノ 🚃️ 5 5 501 -20 -レッシャ 🚃️ 5 5 501 -20 -シンカンセン 🚄️ 5 5 501 -20 -デンシャ 🚄️ 5 5 501 -20 -ノリモノ 🚄️ 5 5 501 -20 -0ケイ 🚅️ 5 5 501 -20 -シンカンセン 🚅️ 5 5 501 -20 -ゼロケイシンカンセン 🚅️ 5 5 501 -20 -デンシャ 🚅️ 5 5 501 -20 -ノゾミ 🚅️ 5 5 501 -20 -ノリモノ 🚅️ 5 5 501 -20 -マルイシンカンセン 🚅️ 5 5 501 -20 -デンシャ 🚆️ 5 5 501 -20 -デンシャショウメン 🚆️ 5 5 501 -20 -ノリモノ 🚆️ 5 5 501 -20 -レッシャ 🚆️ 5 5 501 -20 -チカテツ 🚇️ 5 5 501 -20 -デンシャ 🚇️ 5 5 501 -20 -ノリモノ 🚇️ 5 5 501 -20 -メトロ 🚇️ 5 5 501 -20 -デンシャ 🚈️ 5 5 501 -20 -ノリモノ 🚈️ 5 5 501 -20 -ライトレール 🚈️ 5 5 501 -20 -エキ 🚉️ 5 5 501 -20 -デンシャ 🚉️ 5 5 501 -20 -ノリモノ 🚉️ 5 5 501 -20 -フミキリ 🚉️ 5 5 501 -20 -レッシャ 🚉️ 5 5 501 -20 -デンシャ 🚊️ 5 5 501 -20 -ノリモノ 🚊️ 5 5 501 -20 -ロメンデンシャ 🚊️ 5 5 501 -20 -ロメンデンシャショウメン 🚊️ 5 5 501 -20 -デンシャ 🚝️ 5 5 501 -20 -ノリモノ 🚝️ 5 5 501 -20 -モノレール 🚝️ 5 5 501 -20 -デンシャ 🚞️ 5 5 501 -20 -トザンテツドウ 🚞️ 5 5 501 -20 -トザンデンシャ 🚞️ 5 5 501 -20 -ノリモノ 🚞️ 5 5 501 -20 -デンシャ 🚋️ 5 5 501 -20 -ノリモノ 🚋️ 5 5 501 -20 -ロメンデンシャ 🚋️ 5 5 501 -20 -ノリモノ 🚌️ 5 5 501 -20 -バス 🚌️ 5 5 501 -20 -ノリモノ 🚍️ 5 5 501 -20 -バス 🚍️ 5 5 501 -20 -バスショウメン 🚍️ 5 5 501 -20 -トロリーバス 🚎️ 5 5 501 -20 -ノリモノ 🚎️ 5 5 501 -20 -バス 🚎️ 5 5 501 -20 -ノリモノ 🚐️ 5 5 501 -20 -バス 🚐️ 5 5 501 -20 -マイクロバス 🚐️ 5 5 501 -20 -キュウキュウシャ 🚑️ 5 5 501 -20 -ノリモノ 🚑️ 5 5 501 -20 -ショウボウシャ 🚒️ 5 5 501 -20 -ノリモノ 🚒️ 5 5 501 -20 -ケイサツ 🚓️ 5 5 501 -20 -ノリモノ 🚓️ 5 5 501 -20 -パトカー 🚓️ 5 5 501 -20 -ケイサツ 🚔️ 5 5 501 -20 -ノリモノ 🚔️ 5 5 501 -20 -パトカー 🚔️ 5 5 501 -20 -パトカーショウメン 🚔️ 5 5 501 -20 -タクシー 🚕️ 5 5 501 -20 -ノリモノ 🚕️ 5 5 501 -20 -タクシー 🚖️ 5 5 501 -20 -タクシーショウメン 🚖️ 5 5 501 -20 -ノリモノ 🚖️ 5 5 501 -20 -クルマ 🚗️ 5 5 501 -20 -ジドウシャ 🚗️ 5 5 501 -20 -ノリモノ 🚗️ 5 5 501 -20 -クルマ 🚘️ 5 5 501 -20 -ジドウシャ 🚘️ 5 5 501 -20 -ジドウシャショウメン 🚘️ 5 5 501 -20 -ノリモノ 🚘️ 5 5 501 -20 -rv 🚙️ 5 5 501 -20 -suv 🚙️ 5 5 501 -20 -suvクルマ 🚙️ 5 5 501 -20 -アールブイシャ 🚙️ 5 5 501 -20 -エスユーブイシャ 🚙️ 5 5 501 -20 -クルマ 🚙️ 5 5 501 -20 -ジドウシャ 🚙️ 5 5 501 -20 -ノリモノ 🚙️ 5 5 501 -20 -クルマ 🛻️ 5 5 501 -20 -ケイトラック 🛻️ 5 5 501 -20 -トラック 🛻️ 5 5 501 -20 -ノリモノ 🛻️ 5 5 501 -20 -ハイタツ 🛻️ 5 5 501 -20 -ピックアップトラック 🛻️ 5 5 501 -20 -クルマ 🚚️ 5 5 501 -20 -トラック 🚚️ 5 5 501 -20 -ノリモノ 🚚️ 5 5 501 -20 -ハイタツ 🚚️ 5 5 501 -20 -クルマ 🚛️ 5 5 501 -20 -トラック 🚛️ 5 5 501 -20 -トレーラー 🚛️ 5 5 501 -20 -ノリモノ 🚛️ 5 5 501 -20 -クルマ 🚜️ 5 5 501 -20 -トラクター 🚜️ 5 5 501 -20 -ノリモノ 🚜️ 5 5 501 -20 -f1 🏎️️ 5 5 501 -20 -エフワン 🏎️️ 5 5 501 -20 -クルマ 🏎️️ 5 5 501 -20 -スポーツ 🏎️️ 5 5 501 -20 -ノリモノ 🏎️️ 5 5 501 -20 -モータースポーツ 🏎️️ 5 5 501 -20 -レーシングカー 🏎️️ 5 5 501 -20 -オートバイ 🏍️️ 5 5 501 -20 -オートレース 🏍️️ 5 5 501 -20 -スポーツ 🏍️️ 5 5 501 -20 -ノリモノ 🏍️️ 5 5 501 -20 -バイク 🏍️️ 5 5 501 -20 -モータースポーツ 🏍️️ 5 5 501 -20 -ゲンツキ 🛵️ 5 5 501 -20 -スクーター 🛵️ 5 5 501 -20 -アクセシビリティ 🦽️ 5 5 501 -20 -イス 🦽️ 5 5 501 -20 -クルマイス 🦽️ 5 5 501 -20 -シュドウシキクルマイス 🦽️ 5 5 501 -20 -アクセシビリティ 🦼️ 5 5 501 -20 -イス 🦼️ 5 5 501 -20 -クルマイス 🦼️ 5 5 501 -20 -デンドウクルマイス 🦼️ 5 5 501 -20 -オートリクシャー 🛺️ 5 5 501 -20 -サンリンタクシー 🛺️ 5 5 501 -20 -タクシー 🛺️ 5 5 501 -20 -トゥクトゥク 🛺️ 5 5 501 -20 -リクシャー 🛺️ 5 5 501 -20 -ジテンシャ 🚲️ 5 5 501 -20 -ノリモノ 🚲️ 5 5 501 -20 -キックスクーター 🛴️ 5 5 501 -20 -キックスケーター 🛴️ 5 5 501 -20 -キックボード 🛴️ 5 5 501 -20 -スケボー 🛹️ 5 5 501 -20 -スケートボード 🛹️ 5 5 501 -20 -ボード 🛹️ 5 5 501 -20 -スケート 🛼️ 5 5 501 -20 -スポーツ 🛼️ 5 5 501 -20 -ローラースケート 🛼️ 5 5 501 -20 -ノリモノ 🚏️ 5 5 501 -20 -バステイ 🚏️ 5 5 501 -20 -バスノリバ 🚏️ 5 5 501 -20 -コウソク 🛣️️ 5 5 501 -20 -コウソクドウロ 🛣️️ 5 5 501 -20 -ドウロ 🛣️️ 5 5 501 -20 -センロ 🛤️️ 5 5 501 -20 -テツドウ 🛤️️ 5 5 501 -20 -セキユ 🛢️️ 5 5 501 -20 -ドラムカン 🛢️️ 5 5 501 -20 -ガススタンド ⛽️ 5 5 501 -20 -ガソリン ⛽️ 5 5 501 -20 -ガソリンスタンド ⛽️ 5 5 501 -20 -ガソリンノズル ⛽️ 5 5 501 -20 -シャリン 🛞️ 5 5 501 -20 -スポーク 🛞️ 5 5 501 -20 -タイヤ 🛞️ 5 5 501 -20 -ホイール 🛞️ 5 5 501 -20 -パトカー 🚨️ 5 5 501 -20 -パトランプ 🚨️ 5 5 501 -20 -シンゴウ 🚥️ 5 5 501 -20 -シンゴウキ 🚥️ 5 5 501 -20 -シンゴウヨコ 🚥️ 5 5 501 -20 -シンゴウ 🚦️ 5 5 501 -20 -シンゴウキ 🚦️ 5 5 501 -20 -シンゴウタテ 🚦️ 5 5 501 -20 -ストップ 🛑️ 5 5 501 -20 -トマレ 🛑️ 5 5 501 -20 -トマレノヒョウシキ 🛑️ 5 5 501 -20 -ヒョウシキ 🛑️ 5 5 501 -20 -コウジチュウ 🚧️ 5 5 501 -20 -サイン 🚧️ 5 5 501 -20 -ツウコウドメ 🚧️ 5 5 501 -20 -イカリ ⚓️ 5 5 501 -20 -フネ ⚓️ 5 5 501 -20 -ミナト ⚓️ 5 5 501 -20 -アンゼン 🛟️ 5 5 501 -20 -ウキワ 🛟️ 5 5 501 -20 -キュウメイグ 🛟️ 5 5 501 -20 -キュウメイフカン 🛟️ 5 5 501 -20 -ライフセーバー 🛟️ 5 5 501 -20 -レスキュー 🛟️ 5 5 501 -20 -ノリモノ ⛵️ 5 5 501 -20 -ハンセン ⛵️ 5 5 501 -20 -フネ ⛵️ 5 5 501 -20 -ボート ⛵️ 5 5 501 -20 -ヨット ⛵️ 5 5 501 -20 -リゾート ⛵️ 5 5 501 -20 -カヌー 🛶️ 5 5 501 -20 -カヤック 🛶️ 5 5 501 -20 -ノリモノ 🛶️ 5 5 501 -20 -フネ 🛶️ 5 5 501 -20 -ボート 🛶️ 5 5 501 -20 -スピードボート 🚤️ 5 5 501 -20 -ノリモノ 🚤️ 5 5 501 -20 -フネ 🚤️ 5 5 501 -20 -ボート 🚤️ 5 5 501 -20 -キャクセン 🛳️️ 5 5 501 -20 -ノリモノ 🛳️️ 5 5 501 -20 -フネ 🛳️️ 5 5 501 -20 -リョカクセン 🛳️️ 5 5 501 -20 -ノリモノ ⛴️️ 5 5 501 -20 -フェリー ⛴️️ 5 5 501 -20 -フネ ⛴️️ 5 5 501 -20 -ノリモノ 🛥️️ 5 5 501 -20 -フネ 🛥️️ 5 5 501 -20 -ボート 🛥️️ 5 5 501 -20 -モーターボート 🛥️️ 5 5 501 -20 -ノリモノ 🚢️ 5 5 501 -20 -フネ 🚢️ 5 5 501 -20 -ノリモノ ✈️️ 5 5 501 -20 -ヒコウキ ✈️️ 5 5 501 -20 -コガタキ 🛩️️ 5 5 501 -20 -コガタヒコウキ 🛩️️ 5 5 501 -20 -ノリモノ 🛩️️ 5 5 501 -20 -ヒコウキ 🛩️️ 5 5 501 -20 -ノリモノ 🛫️ 5 5 501 -20 -ヒコウキ 🛫️ 5 5 501 -20 -ヒコウキリリク 🛫️ 5 5 501 -20 -リリク 🛫️ 5 5 501 -20 -チャクリク 🛬️ 5 5 501 -20 -ノリモノ 🛬️ 5 5 501 -20 -ヒコウキ 🛬️ 5 5 501 -20 -ヒコウキチャクリク 🛬️ 5 5 501 -20 -スカイダイビング 🪂️ 5 5 501 -20 -パラグライダー 🪂️ 5 5 501 -20 -パラシュート 🪂️ 5 5 501 -20 -イス 💺️ 5 5 501 -20 -ザセキ 💺️ 5 5 501 -20 -セキ 💺️ 5 5 501 -20 -ノリモノ 🚁️ 5 5 501 -20 -ヘリ 🚁️ 5 5 501 -20 -ヘリコプター 🚁️ 5 5 501 -20 -ケンスイシキモノレール 🚟️ 5 5 501 -20 -デンシャ 🚟️ 5 5 501 -20 -ノリモノ 🚟️ 5 5 501 -20 -モノレール 🚟️ 5 5 501 -20 -ケーブルカー 🚠️ 5 5 501 -20 -ゴンドラ 🚠️ 5 5 501 -20 -ノリモノ 🚠️ 5 5 501 -20 -ゴンドラ 🚡️ 5 5 501 -20 -ノリモノ 🚡️ 5 5 501 -20 -ロープウェイ 🚡️ 5 5 501 -20 -ウチュウ 🛰️️ 5 5 501 -20 -ジンコウエイセイ 🛰️️ 5 5 501 -20 -ウチュウ 🚀️ 5 5 501 -20 -ノリモノ 🚀️ 5 5 501 -20 -ロケット 🚀️ 5 5 501 -20 -ufo 🛸️ 5 5 501 -20 -ウチュウ 🛸️ 5 5 501 -20 -ソラトブエンバン 🛸️ 5 5 501 -20 -ノリモノ 🛸️ 5 5 501 -20 -ユーフォー 🛸️ 5 5 501 -20 -ベル 🛎️️ 5 5 501 -20 -ベルボーイベル 🛎️️ 5 5 501 -20 -ホテル 🛎️️ 5 5 501 -20 -スーツケース 🧳️ 5 5 501 -20 -パッキング 🧳️ 5 5 501 -20 -リョコウ 🧳️ 5 5 501 -20 -リョコウカバン 🧳️ 5 5 501 -20 -スナ ⌛️ 5 5 501 -20 -スナドケイ ⌛️ 5 5 501 -20 -トケイ ⌛️ 5 5 501 -20 -スナ ⏳️ 5 5 501 -20 -スナガオチテイルスナドケイ ⏳️ 5 5 501 -20 -スナドケイ ⏳️ 5 5 501 -20 -トケイ ⏳️ 5 5 501 -20 -ウデドケイ ⌚️ 5 5 501 -20 -トケイ ⌚️ 5 5 501 -20 -アラーム ⏰️ 5 5 501 -20 -トケイ ⏰️ 5 5 501 -20 -メザマシ ⏰️ 5 5 501 -20 -メザマシドケイ ⏰️ 5 5 501 -20 -ストップウォッチ ⏱️️ 5 5 501 -20 -トケイ ⏱️️ 5 5 501 -20 -タイマー ⏲️️ 5 5 501 -20 -トケイ ⏲️️ 5 5 501 -20 -オキドケイ 🕰️️ 5 5 501 -20 -トケイ 🕰️️ 5 5 501 -20 -マンテルクロック 🕰️️ 5 5 501 -20 -12ジ 🕛️ 5 5 501 -20 -ショウゴ 🕛️ 5 5 501 -20 -ジュウニジ 🕛️ 5 5 501 -20 -トケイ 🕛️ 5 5 501 -20 -12ジハン 🕧️ 5 5 501 -20 -トケイ 🕧️ 5 5 501 -20 -1ジ 🕐️ 5 5 501 -20 -イチジ 🕐️ 5 5 501 -20 -トケイ 🕐️ 5 5 501 -20 -1ジハン 🕜️ 5 5 501 -20 -トケイ 🕜️ 5 5 501 -20 -2ジ 🕑️ 5 5 501 -20 -トケイ 🕑️ 5 5 501 -20 -ニジ 🕑️ 5 5 501 -20 -2ジハン 🕝️ 5 5 501 -20 -トケイ 🕝️ 5 5 501 -20 -3ジ 🕒️ 5 5 501 -20 -サンジ 🕒️ 5 5 501 -20 -トケイ 🕒️ 5 5 501 -20 -3ジハン 🕞️ 5 5 501 -20 -トケイ 🕞️ 5 5 501 -20 -4ジ 🕓️ 5 5 501 -20 -トケイ 🕓️ 5 5 501 -20 -ヨジ 🕓️ 5 5 501 -20 -4ジハン 🕟️ 5 5 501 -20 -トケイ 🕟️ 5 5 501 -20 -5ジ 🕔️ 5 5 501 -20 -ゴジ 🕔️ 5 5 501 -20 -トケイ 🕔️ 5 5 501 -20 -5ジハン 🕠️ 5 5 501 -20 -トケイ 🕠️ 5 5 501 -20 -6ジ 🕕️ 5 5 501 -20 -トケイ 🕕️ 5 5 501 -20 -ロクジ 🕕️ 5 5 501 -20 -6ジハン 🕡️ 5 5 501 -20 -トケイ 🕡️ 5 5 501 -20 -7ジ 🕖️ 5 5 501 -20 -シチジ 🕖️ 5 5 501 -20 -トケイ 🕖️ 5 5 501 -20 -ナナジ 🕖️ 5 5 501 -20 -7ジハン 🕢️ 5 5 501 -20 -トケイ 🕢️ 5 5 501 -20 -8ジ 🕗️ 5 5 501 -20 -トケイ 🕗️ 5 5 501 -20 -ハチジ 🕗️ 5 5 501 -20 -8ジハン 🕣️ 5 5 501 -20 -トケイ 🕣️ 5 5 501 -20 -9ジ 🕘️ 5 5 501 -20 -クジ 🕘️ 5 5 501 -20 -トケイ 🕘️ 5 5 501 -20 -9ジハン 🕤️ 5 5 501 -20 -トケイ 🕤️ 5 5 501 -20 -10ジ 🕙️ 5 5 501 -20 -ジュウジ 🕙️ 5 5 501 -20 -トケイ 🕙️ 5 5 501 -20 -メザマシ 🕙️ 5 5 501 -20 -10ジハン 🕥️ 5 5 501 -20 -トケイ 🕥️ 5 5 501 -20 -11ジ 🕚️ 5 5 501 -20 -ジュウイチジ 🕚️ 5 5 501 -20 -トケイ 🕚️ 5 5 501 -20 -11ジハン 🕦️ 5 5 501 -20 -トケイ 🕦️ 5 5 501 -20 -シンゲツ 🌑️ 5 5 501 -20 -ツキ 🌑️ 5 5 501 -20 -ツキ 🌒️ 5 5 501 -20 -ハツカヅキ 🌒️ 5 5 501 -20 -ハツヅキ 🌒️ 5 5 501 -20 -ミカヅキ 🌒️ 5 5 501 -20 -ジョウゲン 🌓️ 5 5 501 -20 -ジョウゲンノツキ 🌓️ 5 5 501 -20 -ツキ 🌓️ 5 5 501 -20 -ハンゲツ 🌓️ 5 5 501 -20 -カケヅキ 🌔️ 5 5 501 -20 -ジュウサンヤツキ 🌔️ 5 5 501 -20 -ジュウサンヨツキ 🌔️ 5 5 501 -20 -ツキ 🌔️ 5 5 501 -20 -トオカヤノツキ 🌔️ 5 5 501 -20 -トオカンヤノツキ 🌔️ 5 5 501 -20 -ツキ 🌕️ 5 5 501 -20 -マンゲツ 🌕️ 5 5 501 -20 -イマチヅキ 🌖️ 5 5 501 -20 -ツキ 🌖️ 5 5 501 -20 -ネマチヅキ 🌖️ 5 5 501 -20 -ネマチノツキ 🌖️ 5 5 501 -20 -カゲン 🌗️ 5 5 501 -20 -カゲンノツキ 🌗️ 5 5 501 -20 -ツキ 🌗️ 5 5 501 -20 -ハンゲツ 🌗️ 5 5 501 -20 -アリアケヅキ 🌘️ 5 5 501 -20 -ツキ 🌘️ 5 5 501 -20 -ミカヅキ 🌘️ 5 5 501 -20 -ツキ 🌙️ 5 5 501 -20 -ミカヅキ 🌙️ 5 5 501 -20 -カオ 🌚️ 5 5 501 -20 -カオノアルシンゲツ 🌚️ 5 5 501 -20 -シンゲツ 🌚️ 5 5 501 -20 -ツキ 🌚️ 5 5 501 -20 -カオ 🌛️ 5 5 501 -20 -カオノアルジョウゲンノツキ 🌛️ 5 5 501 -20 -ジョウゲンノツキ 🌛️ 5 5 501 -20 -ツキ 🌛️ 5 5 501 -20 -ミカヅキ 🌛️ 5 5 501 -20 -カオ 🌜️ 5 5 501 -20 -カオノアルカゲンノツキ 🌜️ 5 5 501 -20 -カゲンノツキ 🌜️ 5 5 501 -20 -ツキ 🌜️ 5 5 501 -20 -オンド 🌡️️ 5 5 501 -20 -オンドケイ 🌡️️ 5 5 501 -20 -キオン 🌡️️ 5 5 501 -20 -テンキ 🌡️️ 5 5 501 -20 -タイヨウ ☀️️ 5 5 501 -20 -ハレ ☀️️ 5 5 501 -20 -カオ 🌝️ 5 5 501 -20 -カオノアルマンゲツ 🌝️ 5 5 501 -20 -ツキ 🌝️ 5 5 501 -20 -カオ 🌞️ 5 5 501 -20 -カオノアルタイヨウ 🌞️ 5 5 501 -20 -タイヨウ 🌞️ 5 5 501 -20 -テンタイ 🪐️ 5 5 501 -20 -ドセイ 🪐️ 5 5 501 -20 -ホシ 🪐️ 5 5 501 -20 -リング 🪐️ 5 5 501 -20 -ワクセイ 🪐️ 5 5 501 -20 -ワノアルワクセイ 🪐️ 5 5 501 -20 -スター ⭐️ 5 5 501 -20 -ホシ ⭐️ 5 5 501 -20 -カガヤキ 🌟️ 5 5 501 -20 -キラキラ 🌟️ 5 5 501 -20 -キラキラボシ 🌟️ 5 5 501 -20 -スター 🌟️ 5 5 501 -20 -ホシ 🌟️ 5 5 501 -20 -スター 🌠️ 5 5 501 -20 -ナガレボシ 🌠️ 5 5 501 -20 -ホシ 🌠️ 5 5 501 -20 -アマノガワ 🌌️ 5 5 501 -20 -ギンガ 🌌️ 5 5 501 -20 -ホシゾラ 🌌️ 5 5 501 -20 -ミルキーウェイ 🌌️ 5 5 501 -20 -ヨゾラ 🌌️ 5 5 501 -20 -クモ ☁️️ 5 5 501 -20 -クモリ ☁️️ 5 5 501 -20 -テンキ ☁️️ 5 5 501 -20 -クモ ⛅️ 5 5 501 -20 -クモリ ⛅️ 5 5 501 -20 -クモリトキドキハレ ⛅️ 5 5 501 -20 -タイヨウ ⛅️ 5 5 501 -20 -テンキ ⛅️ 5 5 501 -20 -トキドキクモリ ⛅️ 5 5 501 -20 -アメ ⛈️️ 5 5 501 -20 -イナズマ ⛈️️ 5 5 501 -20 -イナヅマ ⛈️️ 5 5 501 -20 -カミナリ ⛈️️ 5 5 501 -20 -クモ ⛈️️ 5 5 501 -20 -テンキ ⛈️️ 5 5 501 -20 -ライウ ⛈️️ 5 5 501 -20 -クモ 🌤️️ 5 5 501 -20 -タイヨウ 🌤️️ 5 5 501 -20 -テンキ 🌤️️ 5 5 501 -20 -ハレ 🌤️️ 5 5 501 -20 -ハレトキドキクモリ 🌤️️ 5 5 501 -20 -クモ 🌥️️ 5 5 501 -20 -クモリ 🌥️️ 5 5 501 -20 -クモリイチジハレ 🌥️️ 5 5 501 -20 -タイヨウ 🌥️️ 5 5 501 -20 -テンキ 🌥️️ 5 5 501 -20 -アメトキドキハレ 🌦️️ 5 5 501 -20 -アメノチハレ 🌦️️ 5 5 501 -20 -クモ 🌦️️ 5 5 501 -20 -クモリ 🌦️️ 5 5 501 -20 -タイヨウ 🌦️️ 5 5 501 -20 -テンキ 🌦️️ 5 5 501 -20 -テンキアメ 🌦️️ 5 5 501 -20 -アマグモ 🌧️️ 5 5 501 -20 -アメ 🌧️️ 5 5 501 -20 -クモ 🌧️️ 5 5 501 -20 -テンキ 🌧️️ 5 5 501 -20 -クモ 🌨️️ 5 5 501 -20 -テンキ 🌨️️ 5 5 501 -20 -ユキ 🌨️️ 5 5 501 -20 -ユキグモ 🌨️️ 5 5 501 -20 -イナズマ 🌩️️ 5 5 501 -20 -イナヅマ 🌩️️ 5 5 501 -20 -カミナリ 🌩️️ 5 5 501 -20 -クモ 🌩️️ 5 5 501 -20 -テンキ 🌩️️ 5 5 501 -20 -ライウン 🌩️️ 5 5 501 -20 -タツマキ 🌪️️ 5 5 501 -20 -テンキ 🌪️️ 5 5 501 -20 -トップウ 🌪️️ 5 5 501 -20 -キリ 🌫️️ 5 5 501 -20 -テンキ 🌫️️ 5 5 501 -20 -カオ 🌬️️ 5 5 501 -20 -カオノアルカゼ 🌬️️ 5 5 501 -20 -カゼ 🌬️️ 5 5 501 -20 -ウズ 🌀️ 5 5 501 -20 -ウズマキ 🌀️ 5 5 501 -20 -クルクル 🌀️ 5 5 501 -20 -グルグル 🌀️ 5 5 501 -20 -サイクロン 🌀️ 5 5 501 -20 -タイフウ 🌀️ 5 5 501 -20 -ハリケーン 🌀️ 5 5 501 -20 -メマイ 🌀️ 5 5 501 -20 -モヤモヤ 🌀️ 5 5 501 -20 -ニジ 🌈️ 5 5 501 -20 -レインボー 🌈️ 5 5 501 -20 -アメ 🌂️ 5 5 501 -20 -カサ 🌂️ 5 5 501 -20 -テンキ 🌂️ 5 5 501 -20 -トジタカサ 🌂️ 5 5 501 -20 -モチモノ 🌂️ 5 5 501 -20 -アメ ☂️️ 5 5 501 -20 -カサ ☂️️ 5 5 501 -20 -テンキ ☂️️ 5 5 501 -20 -モチモノ ☂️️ 5 5 501 -20 -アメ ☔️ 5 5 501 -20 -カサ ☔️ 5 5 501 -20 -カサトアメ ☔️ 5 5 501 -20 -テンキ ☔️ 5 5 501 -20 -モチモノ ☔️ 5 5 501 -20 -カサ ⛱️️ 5 5 501 -20 -スナハマ ⛱️️ 5 5 501 -20 -パラソル ⛱️️ 5 5 501 -20 -ビーチ ⛱️️ 5 5 501 -20 -イナズマ ⚡️ 5 5 501 -20 -イナヅマ ⚡️ 5 5 501 -20 -カミナリ ⚡️ 5 5 501 -20 -キケン ⚡️ 5 5 501 -20 -コウデンアツ ⚡️ 5 5 501 -20 -デンキ ⚡️ 5 5 501 -20 -ケッショウ ❄️️ 5 5 501 -20 -ユキ ❄️️ 5 5 501 -20 -ユキノケッショウ ❄️️ 5 5 501 -20 -ユキ ☃️️ 5 5 501 -20 -ユキダルマ ☃️️ 5 5 501 -20 -ユキダルマトユキ ☃️️ 5 5 501 -20 -ユキ ⛄️ 5 5 501 -20 -ユキダルマ ⛄️ 5 5 501 -20 -ウチュウ ☄️️ 5 5 501 -20 -スイセイ ☄️️ 5 5 501 -20 -ヒ 🔥️ 5 5 501 -20 -ファイアー 🔥️ 5 5 501 -20 -ファイヤー 🔥️ 5 5 501 -20 -ホノオ 🔥️ 5 5 501 -20 -アセ 💧️ 5 5 501 -20 -シズク 💧️ 5 5 501 -20 -スイテキ 💧️ 5 5 501 -20 -タラーッ 💧️ 5 5 501 -20 -ナミダ 💧️ 5 5 501 -20 -ウミ 🌊️ 5 5 501 -20 -テンキ 🌊️ 5 5 501 -20 -ナミ 🌊️ 5 5 501 -20 -ハロウ 🌊️ 5 5 501 -20 -カボチャ 🎃️ 5 5 501 -20 -ハロウィン 🎃️ 5 5 501 -20 -ハロウィンカボチャ 🎃️ 5 5 501 -20 -ハロウィーン 🎃️ 5 5 501 -20 -クリスマス 🎄️ 5 5 501 -20 -クリスマスイブ 🎄️ 5 5 501 -20 -クリスマスツリー 🎄️ 5 5 501 -20 -ツリー 🎄️ 5 5 501 -20 -ウチアゲハナビ 🎆️ 5 5 501 -20 -オマツリ 🎆️ 5 5 501 -20 -ハナビ 🎆️ 5 5 501 -20 -ハナビタイカイ 🎆️ 5 5 501 -20 -オマツリ 🎇️ 5 5 501 -20 -センコウハナビ 🎇️ 5 5 501 -20 -ハナビ 🎇️ 5 5 501 -20 -カヤク 🧨️ 5 5 501 -20 -ダイナマイト 🧨️ 5 5 501 -20 -バクチク 🧨️ 5 5 501 -20 -バクハツ 🧨️ 5 5 501 -20 -バクヤク 🧨️ 5 5 501 -20 -キラキラ ✨️ 5 5 501 -20 -スター ✨️ 5 5 501 -20 -ピカピカ ✨️ 5 5 501 -20 -ホシ ✨️ 5 5 501 -20 -バルーン 🎈️ 5 5 501 -20 -フウセン 🎈️ 5 5 501 -20 -オイワイ 🎉️ 5 5 501 -20 -クラッカー 🎉️ 5 5 501 -20 -パーティー 🎉️ 5 5 501 -20 -パーティークラッカー 🎉️ 5 5 501 -20 -オイワイ 🎊️ 5 5 501 -20 -クスダマ 🎊️ 5 5 501 -20 -パーティー 🎊️ 5 5 501 -20 -タナバタ 🎋️ 5 5 501 -20 -タンザク 🎋️ 5 5 501 -20 -ニッポン 🎋️ 5 5 501 -20 -ニホン 🎋️ 5 5 501 -20 -ワ 🎋️ 5 5 501 -20 -オイワイ 🎍️ 5 5 501 -20 -カドマツ 🎍️ 5 5 501 -20 -ショウガツ 🎍️ 5 5 501 -20 -タケ 🎍️ 5 5 501 -20 -ニッポン 🎍️ 5 5 501 -20 -ニホン 🎍️ 5 5 501 -20 -ワ 🎍️ 5 5 501 -20 -オイワイ 🎎️ 5 5 501 -20 -オダイリサマ 🎎️ 5 5 501 -20 -オダイリヨウ 🎎️ 5 5 501 -20 -オヒナサマ 🎎️ 5 5 501 -20 -ニッポン 🎎️ 5 5 501 -20 -ニホン 🎎️ 5 5 501 -20 -ニンギョウ 🎎️ 5 5 501 -20 -ヒナマツリ 🎎️ 5 5 501 -20 -ワ 🎎️ 5 5 501 -20 -オイワイ 🎏️ 5 5 501 -20 -コイノボリ 🎏️ 5 5 501 -20 -コドモノヒ 🎏️ 5 5 501 -20 -カゼ 🎐️ 5 5 501 -20 -スズ 🎐️ 5 5 501 -20 -ナツ 🎐️ 5 5 501 -20 -フウリン 🎐️ 5 5 501 -20 -ジュウゴヤ 🎑️ 5 5 501 -20 -ジュウゴヨ 🎑️ 5 5 501 -20 -ススキ 🎑️ 5 5 501 -20 -ツキ 🎑️ 5 5 501 -20 -ツキミ 🎑️ 5 5 501 -20 -アカイフウトウ 🧧️ 5 5 501 -20 -オカネ 🧧️ 5 5 501 -20 -オトシダマ 🧧️ 5 5 501 -20 -コウウン 🧧️ 5 5 501 -20 -ゴシュウギ 🧧️ 5 5 501 -20 -ホンパオ 🧧️ 5 5 501 -20 -ホンボア 🧧️ 5 5 501 -20 -オイワイ 🎀️ 5 5 501 -20 -リボン 🎀️ 5 5 501 -20 -オイワイ 🎁️ 5 5 501 -20 -ギフト 🎁️ 5 5 501 -20 -ハコ 🎁️ 5 5 501 -20 -プレゼント 🎁️ 5 5 501 -20 -オイワイ 🎗️️ 5 5 501 -20 -リボン 🎗️️ 5 5 501 -20 -リマインダー 🎗️️ 5 5 501 -20 -リマインダーリボン 🎗️️ 5 5 501 -20 -チケット 🎟️️ 5 5 501 -20 -ニュウジョウケン 🎟️️ 5 5 501 -20 -ニュウジョウパス 🎟️️ 5 5 501 -20 -ハンケン 🎟️️ 5 5 501 -20 -キップ 🎫️ 5 5 501 -20 -チケット 🎫️ 5 5 501 -20 -オイワイ 🎖️️ 5 5 501 -20 -クンショウ 🎖️️ 5 5 501 -20 -ヒョウショウ 🎖️️ 5 5 501 -20 -メダル 🎖️️ 5 5 501 -20 -カップ 🏆️ 5 5 501 -20 -ショウハイ 🏆️ 5 5 501 -20 -トロフィー 🏆️ 5 5 501 -20 -ヒョウショウ 🏆️ 5 5 501 -20 -ユウショウカップ 🏆️ 5 5 501 -20 -スポーツ 🏅️ 5 5 501 -20 -ヒョウショウ 🏅️ 5 5 501 -20 -メダル 🏅️ 5 5 501 -20 -1イ 🥇️ 5 5 501 -20 -キン 🥇️ 5 5 501 -20 -キンメダル 🥇️ 5 5 501 -20 -ゴールド 🥇️ 5 5 501 -20 -メダル 🥇️ 5 5 501 -20 -2イ 🥈️ 5 5 501 -20 -ギン 🥈️ 5 5 501 -20 -ギンメダル 🥈️ 5 5 501 -20 -シルバー 🥈️ 5 5 501 -20 -メダル 🥈️ 5 5 501 -20 -3イ 🥉️ 5 5 501 -20 -ドウ 🥉️ 5 5 501 -20 -ドウメダル 🥉️ 5 5 501 -20 -ブロンズ 🥉️ 5 5 501 -20 -メダル 🥉️ 5 5 501 -20 -サッカー ⚽️ 5 5 501 -20 -サッカーボール ⚽️ 5 5 501 -20 -スポーツ ⚽️ 5 5 501 -20 -ボール ⚽️ 5 5 501 -20 -スポーツ ⚾️ 5 5 501 -20 -ボール ⚾️ 5 5 501 -20 -ヤキュウ ⚾️ 5 5 501 -20 -ヤキュウボール ⚾️ 5 5 501 -20 -スポーツ 🥎️ 5 5 501 -20 -ソフトボール 🥎️ 5 5 501 -20 -ヘタナゲ 🥎️ 5 5 501 -20 -ボール 🥎️ 5 5 501 -20 -スポーツ 🏀️ 5 5 501 -20 -バスケ 🏀️ 5 5 501 -20 -バスケットボール 🏀️ 5 5 501 -20 -ボール 🏀️ 5 5 501 -20 -スポーツ 🏐️ 5 5 501 -20 -バレー 🏐️ 5 5 501 -20 -バレーボール 🏐️ 5 5 501 -20 -ボール 🏐️ 5 5 501 -20 -アメフト 🏈️ 5 5 501 -20 -アメリカンフットボール 🏈️ 5 5 501 -20 -スポーツ 🏈️ 5 5 501 -20 -ボール 🏈️ 5 5 501 -20 -ラグビー 🏈️ 5 5 501 -20 -ラグビーボール 🏈️ 5 5 501 -20 -スポーツ 🏉️ 5 5 501 -20 -ボール 🏉️ 5 5 501 -20 -ラグビー 🏉️ 5 5 501 -20 -ラグビーボール 🏉️ 5 5 501 -20 -スポーツ 🎾️ 5 5 501 -20 -テニス 🎾️ 5 5 501 -20 -テニスボール 🎾️ 5 5 501 -20 -ボール 🎾️ 5 5 501 -20 -ラケット 🎾️ 5 5 501 -20 -アルティメット 🥏️ 5 5 501 -20 -フライングディスク 🥏️ 5 5 501 -20 -フリスビー 🥏️ 5 5 501 -20 -スポーツ 🎳️ 5 5 501 -20 -タマ 🎳️ 5 5 501 -20 -ボウリング 🎳️ 5 5 501 -20 -ボール 🎳️ 5 5 501 -20 -クリケット 🏏️ 5 5 501 -20 -スポーツ 🏏️ 5 5 501 -20 -バット 🏏️ 5 5 501 -20 -ボール 🏏️ 5 5 501 -20 -スティック 🏑️ 5 5 501 -20 -スポーツ 🏑️ 5 5 501 -20 -フィールドホッケー 🏑️ 5 5 501 -20 -ホッケー 🏑️ 5 5 501 -20 -ボール 🏑️ 5 5 501 -20 -アイスホッケー 🏒️ 5 5 501 -20 -スティック 🏒️ 5 5 501 -20 -スポーツ 🏒️ 5 5 501 -20 -パック 🏒️ 5 5 501 -20 -ホッケー 🏒️ 5 5 501 -20 -ゴール 🥍️ 5 5 501 -20 -スティック 🥍️ 5 5 501 -20 -スポーツ 🥍️ 5 5 501 -20 -ボール 🥍️ 5 5 501 -20 -ラクロス 🥍️ 5 5 501 -20 -スポーツ 🏓️ 5 5 501 -20 -タッキュウ 🏓️ 5 5 501 -20 -ピンポン 🏓️ 5 5 501 -20 -ボール 🏓️ 5 5 501 -20 -ラケット 🏓️ 5 5 501 -20 -シャトル 🏸️ 5 5 501 -20 -スポーツ 🏸️ 5 5 501 -20 -バドミントン 🏸️ 5 5 501 -20 -ラケット 🏸️ 5 5 501 -20 -グローブ 🥊️ 5 5 501 -20 -スポーツ 🥊️ 5 5 501 -20 -ボクシング 🥊️ 5 5 501 -20 -ボクシンググローブ 🥊️ 5 5 501 -20 -カラテ 🥋️ 5 5 501 -20 -ジュウドウ 🥋️ 5 5 501 -20 -スポーツ 🥋️ 5 5 501 -20 -テコンドー 🥋️ 5 5 501 -20 -ドウギ 🥋️ 5 5 501 -20 -ブドウ 🥋️ 5 5 501 -20 -ゴール 🥅️ 5 5 501 -20 -ゴールネット 🥅️ 5 5 501 -20 -スポーツ 🥅️ 5 5 501 -20 -ネット 🥅️ 5 5 501 -20 -ゴルフ ⛳️ 5 5 501 -20 -スポーツ ⛳️ 5 5 501 -20 -ハタ ⛳️ 5 5 501 -20 -フラグ ⛳️ 5 5 501 -20 -フラッグ ⛳️ 5 5 501 -20 -ホール ⛳️ 5 5 501 -20 -アイススケート ⛸️️ 5 5 501 -20 -スケート ⛸️️ 5 5 501 -20 -スポーツ ⛸️️ 5 5 501 -20 -フィギュアスケート ⛸️️ 5 5 501 -20 -サカナ 🎣️ 5 5 501 -20 -スポーツ 🎣️ 5 5 501 -20 -ツリ 🎣️ 5 5 501 -20 -ツリザオ 🎣️ 5 5 501 -20 -シュノーケリング 🤿️ 5 5 501 -20 -スキューバ 🤿️ 5 5 501 -20 -スポーツ 🤿️ 5 5 501 -20 -ダイビングマスク 🤿️ 5 5 501 -20 -マスク 🤿️ 5 5 501 -20 -エキデン 🎽️ 5 5 501 -20 -シャツ 🎽️ 5 5 501 -20 -スポーツ 🎽️ 5 5 501 -20 -タスキ 🎽️ 5 5 501 -20 -チョウキョリソウ 🎽️ 5 5 501 -20 -マラソン 🎽️ 5 5 501 -20 -ランニング 🎽️ 5 5 501 -20 -ランニングシャツ 🎽️ 5 5 501 -20 -イタ 🎿️ 5 5 501 -20 -スキー 🎿️ 5 5 501 -20 -スキーブーツ 🎿️ 5 5 501 -20 -ストック 🎿️ 5 5 501 -20 -スポーツ 🎿️ 5 5 501 -20 -ユキ 🎿️ 5 5 501 -20 -スケルトン 🛷️ 5 5 501 -20 -スポーツ 🛷️ 5 5 501 -20 -ソリ 🛷️ 5 5 501 -20 -ソリキョウギ 🛷️ 5 5 501 -20 -ボブスレー 🛷️ 5 5 501 -20 -リュージュ 🛷️ 5 5 501 -20 -カーリング 🥌️ 5 5 501 -20 -ストーン 🥌️ 5 5 501 -20 -スポーツ 🥌️ 5 5 501 -20 -アタリ 🎯️ 5 5 501 -20 -スポーツ 🎯️ 5 5 501 -20 -ダーツ 🎯️ 5 5 501 -20 -テキ 🎯️ 5 5 501 -20 -ブルズアイ 🎯️ 5 5 501 -20 -マト 🎯️ 5 5 501 -20 -オモチャ 🪀️ 5 5 501 -20 -カイテン 🪀️ 5 5 501 -20 -ガング 🪀️ 5 5 501 -20 -ヨーヨー 🪀️ 5 5 501 -20 -オモチャ 🪁️ 5 5 501 -20 -カイト 🪁️ 5 5 501 -20 -ガング 🪁️ 5 5 501 -20 -タコ 🪁️ 5 5 501 -20 -タコアゲ 🪁️ 5 5 501 -20 -ケンジュウ 🔫️ 5 5 501 -20 -ジュウ 🔫️ 5 5 501 -20 -ピストル 🔫️ 5 5 501 -20 -ブキ 🔫️ 5 5 501 -20 -ミズデッポウ 🔫️ 5 5 501 -20 -リボルバー 🔫️ 5 5 501 -20 -エイトボール 🎱️ 5 5 501 -20 -スポーツ 🎱️ 5 5 501 -20 -ビリヤード 🎱️ 5 5 501 -20 -ボール 🎱️ 5 5 501 -20 -ウラナイ 🔮️ 5 5 501 -20 -ウンメイ 🔮️ 5 5 501 -20 -スイショウ 🔮️ 5 5 501 -20 -スイショウダマ 🔮️ 5 5 501 -20 -タマ 🔮️ 5 5 501 -20 -ツエ 🪄️ 5 5 501 -20 -マジュツ 🪄️ 5 5 501 -20 -マホウノツエ 🪄️ 5 5 501 -20 -ゲーム 🎮️ 5 5 501 -20 -コントローラ 🎮️ 5 5 501 -20 -コントローラー 🎮️ 5 5 501 -20 -テレビゲーム 🎮️ 5 5 501 -20 -ビデオゲーム 🎮️ 5 5 501 -20 -ゲーム 🕹️️ 5 5 501 -20 -コントローラ 🕹️️ 5 5 501 -20 -ジョイスティック 🕹️️ 5 5 501 -20 -スティック 🕹️️ 5 5 501 -20 -テレビゲーム 🕹️️ 5 5 501 -20 -スリーセブン 🎰️ 5 5 501 -20 -スロット 🎰️ 5 5 501 -20 -スロットマシン 🎰️ 5 5 501 -20 -ゲーム 🎲️ 5 5 501 -20 -サイコロ 🎲️ 5 5 501 -20 -ダイス 🎲️ 5 5 501 -20 -カギ 🧩️ 5 5 501 -20 -クミアワセ 🧩️ 5 5 501 -20 -ジグソーパズル 🧩️ 5 5 501 -20 -パズル 🧩️ 5 5 501 -20 -ピース 🧩️ 5 5 501 -20 -オモチャ 🧸️ 5 5 501 -20 -ガング 🧸️ 5 5 501 -20 -クマ 🧸️ 5 5 501 -20 -テディベア 🧸️ 5 5 501 -20 -ヌイグルミ 🧸️ 5 5 501 -20 -オイワイ 🪅️ 5 5 501 -20 -タンジョウビ 🪅️ 5 5 501 -20 -ニンギョウ 🪅️ 5 5 501 -20 -パーティー 🪅️ 5 5 501 -20 -ピニャータ 🪅️ 5 5 501 -20 -キラキラ 🪩️ 5 5 501 -20 -ダンス 🪩️ 5 5 501 -20 -ディスコ 🪩️ 5 5 501 -20 -パーティー 🪩️ 5 5 501 -20 -ミラーボール 🪩️ 5 5 501 -20 -イレコ 🪆️ 5 5 501 -20 -ニンギョウ 🪆️ 5 5 501 -20 -マトリョーシカ 🪆️ 5 5 501 -20 -ロシア 🪆️ 5 5 501 -20 -カード ♠️️ 5 5 501 -20 -スペード ♠️️ 5 5 501 -20 -トランプ ♠️️ 5 5 501 -20 -カード ♥️️ 5 5 501 -20 -トランプ ♥️️ 5 5 501 -20 -ハート ♥️️ 5 5 501 -20 -カード ♦️️ 5 5 501 -20 -ダイア ♦️️ 5 5 501 -20 -ダイヤ ♦️️ 5 5 501 -20 -トランプ ♦️️ 5 5 501 -20 -カード ♣️️ 5 5 501 -20 -クラブ ♣️️ 5 5 501 -20 -クローバー ♣️️ 5 5 501 -20 -トランプ ♣️️ 5 5 501 -20 -コマ ♟️️ 5 5 501 -20 -ステコマ ♟️️ 5 5 501 -20 -ステゴマ ♟️️ 5 5 501 -20 -チェス ♟️️ 5 5 501 -20 -チェスノコマ ♟️️ 5 5 501 -20 -カード 🃏️ 5 5 501 -20 -ジジ 🃏️ 5 5 501 -20 -ジョーカー 🃏️ 5 5 501 -20 -トランプ 🃏️ 5 5 501 -20 -ババ 🃏️ 5 5 501 -20 -ゲーム 🀄️ 5 5 501 -20 -ジャンパイ 🀄️ 5 5 501 -20 -パイ 🀄️ 5 5 501 -20 -マージャン 🀄️ 5 5 501 -20 -マージャンパイ 🀄️ 5 5 501 -20 -カード 🎴️ 5 5 501 -20 -ゲーム 🎴️ 5 5 501 -20 -ハナフダ 🎴️ 5 5 501 -20 -エンゲイ 🎭️ 5 5 501 -20 -エンゲキ 🎭️ 5 5 501 -20 -カメン 🎭️ 5 5 501 -20 -ゲイジュツ 🎭️ 5 5 501 -20 -ゲキジョウ 🎭️ 5 5 501 -20 -ブタイゲイジュツ 🎭️ 5 5 501 -20 -エ 🖼️️ 5 5 501 -20 -カイガ 🖼️️ 5 5 501 -20 -ゲイジュツ 🖼️️ 5 5 501 -20 -ビジュツカン 🖼️️ 5 5 501 -20 -アート 🎨️ 5 5 501 -20 -エ 🎨️ 5 5 501 -20 -エノグパレット 🎨️ 5 5 501 -20 -パレット 🎨️ 5 5 501 -20 -ビジュツカン 🎨️ 5 5 501 -20 -フデ 🎨️ 5 5 501 -20 -イト 🧵️ 5 5 501 -20 -イトマキ 🧵️ 5 5 501 -20 -サイホウ 🧵️ 5 5 501 -20 -ヌイバリ 🧵️ 5 5 501 -20 -ヒモ 🧵️ 5 5 501 -20 -サイホウ 🪡️ 5 5 501 -20 -シシュウ 🪡️ 5 5 501 -20 -ステッチ 🪡️ 5 5 501 -20 -ヌイバリ 🪡️ 5 5 501 -20 -ヌウ 🪡️ 5 5 501 -20 -ハリ 🪡️ 5 5 501 -20 -アミモノ 🧶️ 5 5 501 -20 -カギバリ 🧶️ 5 5 501 -20 -ケイト 🧶️ 5 5 501 -20 -ケイトダマ 🧶️ 5 5 501 -20 -ニット 🧶️ 5 5 501 -20 -ツナ 🪢️ 5 5 501 -20 -ネジレ 🪢️ 5 5 501 -20 -ノット 🪢️ 5 5 501 -20 -ヒモ 🪢️ 5 5 501 -20 -ムスビメ 🪢️ 5 5 501 -20 -ロープ 🪢️ 5 5 501 -20 -メガネ 👓️ 5 5 501 -20 -サングラス 🕶️️ 5 5 501 -20 -メガネ 🕶️️ 5 5 501 -20 -ゴーグル 🥽️ 5 5 501 -20 -スイエイ 🥽️ 5 5 501 -20 -ホゴメガネ 🥽️ 5 5 501 -20 -ヨウセツ 🥽️ 5 5 501 -20 -イシャ 🥼️ 5 5 501 -20 -カガクシャ 🥼️ 5 5 501 -20 -ジッケン 🥼️ 5 5 501 -20 -ハクイ 🥼️ 5 5 501 -20 -アンゼンベスト 🦺️ 5 5 501 -20 -キンキュウ 🦺️ 5 5 501 -20 -コウジ 🦺️ 5 5 501 -20 -チョッキ 🦺️ 5 5 501 -20 -ハンシャ 🦺️ 5 5 501 -20 -ベスト 🦺️ 5 5 501 -20 -シャツ 👔️ 5 5 501 -20 -タイ 👔️ 5 5 501 -20 -ネクタイ 👔️ 5 5 501 -20 -フク 👔️ 5 5 501 -20 -ワイシャツ 👔️ 5 5 501 -20 -tシャツ 👕️ 5 5 501 -20 -シャツ 👕️ 5 5 501 -20 -ティーシャツ 👕️ 5 5 501 -20 -フク 👕️ 5 5 501 -20 -ジーパン 👖️ 5 5 501 -20 -ジーンズ 👖️ 5 5 501 -20 -ズボン 👖️ 5 5 501 -20 -デニム 👖️ 5 5 501 -20 -パンツ 👖️ 5 5 501 -20 -フク 👖️ 5 5 501 -20 -エリマキ 🧣️ 5 5 501 -20 -クビマキ 🧣️ 5 5 501 -20 -スカーフ 🧣️ 5 5 501 -20 -マフラー 🧣️ 5 5 501 -20 -テブクロ 🧤️ 5 5 501 -20 -アウター 🧥️ 5 5 501 -20 -オーバー 🧥️ 5 5 501 -20 -コート 🧥️ 5 5 501 -20 -ジャケット 🧥️ 5 5 501 -20 -フク 🧥️ 5 5 501 -20 -クツシタ 🧦️ 5 5 501 -20 -ソックス 🧦️ 5 5 501 -20 -ドレス 👗️ 5 5 501 -20 -フク 👗️ 5 5 501 -20 -ワンピース 👗️ 5 5 501 -20 -キモノ 👘️ 5 5 501 -20 -フク 👘️ 5 5 501 -20 -サリー 🥻️ 5 5 501 -20 -フク 🥻️ 5 5 501 -20 -ミンゾクイショウ 🥻️ 5 5 501 -20 -スイムウェア 🩱️ 5 5 501 -20 -ミズギ 🩱️ 5 5 501 -20 -ワンピースノミズギ 🩱️ 5 5 501 -20 -シタギ 🩲️ 5 5 501 -20 -スイムウェア 🩲️ 5 5 501 -20 -パンツ 🩲️ 5 5 501 -20 -ブリーフ 🩲️ 5 5 501 -20 -ミズギ 🩲️ 5 5 501 -20 -シタギ 🩳️ 5 5 501 -20 -ショーツ 🩳️ 5 5 501 -20 -スイムウェア 🩳️ 5 5 501 -20 -パンツ 🩳️ 5 5 501 -20 -ミズギ 🩳️ 5 5 501 -20 -ビキニ 👙️ 5 5 501 -20 -フク 👙️ 5 5 501 -20 -ミズギ 👙️ 5 5 501 -20 -シャツ 👚️ 5 5 501 -20 -フク 👚️ 5 5 501 -20 -フジンフク 👚️ 5 5 501 -20 -ブラウス 👚️ 5 5 501 -20 -ガマグチ 👛️ 5 5 501 -20 -ガマグチザイフ 👛️ 5 5 501 -20 -コゼニイレ 👛️ 5 5 501 -20 -サイフ 👛️ 5 5 501 -20 -カバン 👜️ 5 5 501 -20 -ハンドバッグ 👜️ 5 5 501 -20 -バッグ 👜️ 5 5 501 -20 -バッグ 👝️ 5 5 501 -20 -ポーチ 👝️ 5 5 501 -20 -カミテサゲ 🛍️️ 5 5 501 -20 -カミブクロ 🛍️️ 5 5 501 -20 -ショッピングバッグ 🛍️️ 5 5 501 -20 -バッグ 🛍️️ 5 5 501 -20 -カバン 🎒️ 5 5 501 -20 -ガッコウ 🎒️ 5 5 501 -20 -ショウガクセイ 🎒️ 5 5 501 -20 -ショウガッコウ 🎒️ 5 5 501 -20 -バックパック 🎒️ 5 5 501 -20 -ランドセル 🎒️ 5 5 501 -20 -リュックサック 🎒️ 5 5 501 -20 -クツ 🩴️ 5 5 501 -20 -ゴムゾウリ 🩴️ 5 5 501 -20 -サンダル 🩴️ 5 5 501 -20 -トングサンダル 🩴️ 5 5 501 -20 -ビーサン 🩴️ 5 5 501 -20 -ビーチサンダル 🩴️ 5 5 501 -20 -カワグツ 👞️ 5 5 501 -20 -クツ 👞️ 5 5 501 -20 -シンシグツ 👞️ 5 5 501 -20 -ローファー 👞️ 5 5 501 -20 -アスレチックシューズ 👟️ 5 5 501 -20 -クツ 👟️ 5 5 501 -20 -シューズ 👟️ 5 5 501 -20 -スニーカー 👟️ 5 5 501 -20 -キャンプ 🥾️ 5 5 501 -20 -トザンクツ 🥾️ 5 5 501 -20 -トザングツ 🥾️ 5 5 501 -20 -ハイキング 🥾️ 5 5 501 -20 -ハイキングシューズ 🥾️ 5 5 501 -20 -バックパック 🥾️ 5 5 501 -20 -ブーツ 🥾️ 5 5 501 -20 -スリッポン 🥿️ 5 5 501 -20 -バレエシューズ 🥿️ 5 5 501 -20 -フラットシューズ 🥿️ 5 5 501 -20 -ペタンコクツ 🥿️ 5 5 501 -20 -クツ 👠️ 5 5 501 -20 -ハイヒール 👠️ 5 5 501 -20 -ヒール 👠️ 5 5 501 -20 -ピンヒール 👠️ 5 5 501 -20 -フク 👠️ 5 5 501 -20 -クツ 👡️ 5 5 501 -20 -サンダル 👡️ 5 5 501 -20 -フク 👡️ 5 5 501 -20 -クツ 🩰️ 5 5 501 -20 -シューズ 🩰️ 5 5 501 -20 -ダンス 🩰️ 5 5 501 -20 -トウシューズ 🩰️ 5 5 501 -20 -バレエ 🩰️ 5 5 501 -20 -クツ 👢️ 5 5 501 -20 -フク 👢️ 5 5 501 -20 -ブーツ 👢️ 5 5 501 -20 -ロングブーツ 👢️ 5 5 501 -20 -オウカン 👑️ 5 5 501 -20 -カンムリ 👑️ 5 5 501 -20 -クラウン 👑️ 5 5 501 -20 -オンナノボウシ 👒️ 5 5 501 -20 -フジンボウシ 👒️ 5 5 501 -20 -ボウシ 👒️ 5 5 501 -20 -ムギワラ 👒️ 5 5 501 -20 -ムギワラボウシ 👒️ 5 5 501 -20 -シルクハット 🎩️ 5 5 501 -20 -ボウシ 🎩️ 5 5 501 -20 -カクボウ 🎓️ 5 5 501 -20 -ソツギョウ 🎓️ 5 5 501 -20 -ソツギョウシキ 🎓️ 5 5 501 -20 -ボウシ 🎓️ 5 5 501 -20 -キャップ 🧢️ 5 5 501 -20 -ボウシ 🧢️ 5 5 501 -20 -ヤキュウボウ 🧢️ 5 5 501 -20 -グンタイ 🪖️ 5 5 501 -20 -グンヨウヘルメット 🪖️ 5 5 501 -20 -セントウ 🪖️ 5 5 501 -20 -ヘイシ 🪖️ 5 5 501 -20 -ヘルメット 🪖️ 5 5 501 -20 -ミリタリー 🪖️ 5 5 501 -20 -キュウキュウ ⛑️️ 5 5 501 -20 -シロジュウジ ⛑️️ 5 5 501 -20 -シロジュウジヘルメット ⛑️️ 5 5 501 -20 -ハクジュウジ ⛑️️ 5 5 501 -20 -ハクジュウジヘルメット ⛑️️ 5 5 501 -20 -ヘルメット ⛑️️ 5 5 501 -20 -イノル 📿️ 5 5 501 -20 -ジュズ 📿️ 5 5 501 -20 -ネックレス 📿️ 5 5 501 -20 -ネンジュ 📿️ 5 5 501 -20 -ネンズ 📿️ 5 5 501 -20 -ロザリオ 📿️ 5 5 501 -20 -クチベニ 💄️ 5 5 501 -20 -ケショウ 💄️ 5 5 501 -20 -リップ 💄️ 5 5 501 -20 -リップスティック 💄️ 5 5 501 -20 -ジュエリー 💍️ 5 5 501 -20 -ダイア 💍️ 5 5 501 -20 -ダイヤ 💍️ 5 5 501 -20 -ユビワ 💍️ 5 5 501 -20 -リング 💍️ 5 5 501 -20 -ジュエリー 💎️ 5 5 501 -20 -ダイア 💎️ 5 5 501 -20 -ダイヤ 💎️ 5 5 501 -20 -ホウセキ 💎️ 5 5 501 -20 -オトナシ 🔇️ 5 5 501 -20 -ショウオン 🔇️ 5 5 501 -20 -スピーカー 🔇️ 5 5 501 -20 -スピーカーショウオン 🔇️ 5 5 501 -20 -ミュート 🔇️ 5 5 501 -20 -オンリョウ 🔈️ 5 5 501 -20 -スピーカー 🔈️ 5 5 501 -20 -ボリューム 🔈️ 5 5 501 -20 -オンリョウ 🔉️ 5 5 501 -20 -オンリョウショウ 🔉️ 5 5 501 -20 -スピーカー 🔉️ 5 5 501 -20 -スピーカーオンリョウショウ 🔉️ 5 5 501 -20 -ボリューム 🔉️ 5 5 501 -20 -オンリョウ 🔊️ 5 5 501 -20 -オンリョウダイ 🔊️ 5 5 501 -20 -スピーカー 🔊️ 5 5 501 -20 -スピーカーオンリョウダイ 🔊️ 5 5 501 -20 -ダイオンリョウ 🔊️ 5 5 501 -20 -ボリューム 🔊️ 5 5 501 -20 -カクセイキ 📢️ 5 5 501 -20 -スピーカー 📢️ 5 5 501 -20 -メガホン 📢️ 5 5 501 -20 -カクセイキ 📣️ 5 5 501 -20 -スピーカー 📣️ 5 5 501 -20 -メガホン 📣️ 5 5 501 -20 -ユウビン 📯️ 5 5 501 -20 -ユウビンラッパ 📯️ 5 5 501 -20 -ラッパ 📯️ 5 5 501 -20 -カネ 🔔️ 5 5 501 -20 -スズ 🔔️ 5 5 501 -20 -チャペル 🔔️ 5 5 501 -20 -ベル 🔔️ 5 5 501 -20 -オトナシ 🔕️ 5 5 501 -20 -カネ 🔕️ 5 5 501 -20 -ショウオン 🔕️ 5 5 501 -20 -スズ 🔕️ 5 5 501 -20 -ベルショウオン 🔕️ 5 5 501 -20 -ミュート 🔕️ 5 5 501 -20 -オンガク 🎼️ 5 5 501 -20 -ガクフ 🎼️ 5 5 501 -20 -ゴセン 🎼️ 5 5 501 -20 -ゴセンフ 🎼️ 5 5 501 -20 -スコア 🎼️ 5 5 501 -20 -トオンキゴウ 🎼️ 5 5 501 -20 -オンガク 🎵️ 5 5 501 -20 -オンプ 🎵️ 5 5 501 -20 -ハチブオンプ 🎵️ 5 5 501 -20 -レンプ 🎵️ 5 5 501 -20 -オンガク 🎶️ 5 5 501 -20 -オンプ 🎶️ 5 5 501 -20 -ハチブオンプ 🎶️ 5 5 501 -20 -フクスウノオンプ 🎶️ 5 5 501 -20 -オンガク 🎙️️ 5 5 501 -20 -スタジオマイク 🎙️️ 5 5 501 -20 -マイク 🎙️️ 5 5 501 -20 -オンガク 🎚️️ 5 5 501 -20 -スライダー 🎚️️ 5 5 501 -20 -レベル 🎚️️ 5 5 501 -20 -レベルスライダー 🎚️️ 5 5 501 -20 -オンガク 🎛️️ 5 5 501 -20 -コントロール 🎛️️ 5 5 501 -20 -コントロールツマミ 🎛️️ 5 5 501 -20 -ツマミ 🎛️️ 5 5 501 -20 -ノブ 🎛️️ 5 5 501 -20 -ウタ 🎤️ 5 5 501 -20 -オンガク 🎤️ 5 5 501 -20 -カラオケ 🎤️ 5 5 501 -20 -マイク 🎤️ 5 5 501 -20 -イヤフォン 🎧️ 5 5 501 -20 -イヤホン 🎧️ 5 5 501 -20 -オンガク 🎧️ 5 5 501 -20 -ヘッドフォン 🎧️ 5 5 501 -20 -ヘッドホン 🎧️ 5 5 501 -20 -オンガク 📻️ 5 5 501 -20 -ジュシンキ 📻️ 5 5 501 -20 -ホウソウ 📻️ 5 5 501 -20 -ラジオ 📻️ 5 5 501 -20 -オンガク 🎷️ 5 5 501 -20 -ガッキ 🎷️ 5 5 501 -20 -サキソフォン 🎷️ 5 5 501 -20 -サクソフォン 🎷️ 5 5 501 -20 -サックス 🎷️ 5 5 501 -20 -アコーディオン 🪗️ 5 5 501 -20 -オンガク 🪗️ 5 5 501 -20 -ガッキ 🪗️ 5 5 501 -20 -ジャバラ 🪗️ 5 5 501 -20 -オンガク 🎸️ 5 5 501 -20 -ガッキ 🎸️ 5 5 501 -20 -ギター 🎸️ 5 5 501 -20 -オンガク 🎹️ 5 5 501 -20 -ガッキ 🎹️ 5 5 501 -20 -キーボード 🎹️ 5 5 501 -20 -ケンバン 🎹️ 5 5 501 -20 -ピアノ 🎹️ 5 5 501 -20 -オンガク 🎺️ 5 5 501 -20 -ガッキ 🎺️ 5 5 501 -20 -トランペット 🎺️ 5 5 501 -20 -ラッパ 🎺️ 5 5 501 -20 -オンガク 🎻️ 5 5 501 -20 -ガッキ 🎻️ 5 5 501 -20 -バイオリン 🎻️ 5 5 501 -20 -ヴィオラ 🎻️ 5 5 501 -20 -オンガク 🪕️ 5 5 501 -20 -ガッキ 🪕️ 5 5 501 -20 -バンジョー 🪕️ 5 5 501 -20 -オンガク 🥁️ 5 5 501 -20 -ガッキ 🥁️ 5 5 501 -20 -タイコ 🥁️ 5 5 501 -20 -ドラム 🥁️ 5 5 501 -20 -オンガク 🪘️ 5 5 501 -20 -ガッキ 🪘️ 5 5 501 -20 -コンガ 🪘️ 5 5 501 -20 -タイコ 🪘️ 5 5 501 -20 -ビート 🪘️ 5 5 501 -20 -リズム 🪘️ 5 5 501 -20 -ケイタイ 📱️ 5 5 501 -20 -ケイタイデンワ 📱️ 5 5 501 -20 -スマホ 📱️ 5 5 501 -20 -スマートフォン 📱️ 5 5 501 -20 -ケイタイ 📲️ 5 5 501 -20 -ケイタイジュシン 📲️ 5 5 501 -20 -ケイタイデンワ 📲️ 5 5 501 -20 -ジュシン 📲️ 5 5 501 -20 -スマホ 📲️ 5 5 501 -20 -スマートフォン 📲️ 5 5 501 -20 -チャクシンチュウ 📲️ 5 5 501 -20 -デンワハッシン 📲️ 5 5 501 -20 -オヤキ ☎️️ 5 5 501 -20 -クロデンワ ☎️️ 5 5 501 -20 -コテイデンワ ☎️️ 5 5 501 -20 -デンワ ☎️️ 5 5 501 -20 -プッシュホン ☎️️ 5 5 501 -20 -ボタンシキデンワ ☎️️ 5 5 501 -20 -コキ 📞️ 5 5 501 -20 -ジュワキ 📞️ 5 5 501 -20 -デンワ 📞️ 5 5 501 -20 -ページャー 📟️ 5 5 501 -20 -ポケットベル 📟️ 5 5 501 -20 -ポケベル 📟️ 5 5 501 -20 -fax 📠️ 5 5 501 -20 -デンワ 📠️ 5 5 501 -20 -ファックス 📠️ 5 5 501 -20 -フクゴウキ 📠️ 5 5 501 -20 -カンデンチ 🔋️ 5 5 501 -20 -デンチ 🔋️ 5 5 501 -20 -バッテリー 🔋️ 5 5 501 -20 -ジュウデンブソク 🪫️ 5 5 501 -20 -ジュウデンヤバイ 🪫️ 5 5 501 -20 -デンチザンリョウテイカ 🪫️ 5 5 501 -20 -バッテリー 🪫️ 5 5 501 -20 -バッテリーザンリョウテイカ 🪫️ 5 5 501 -20 -バッテリーブソク 🪫️ 5 5 501 -20 -コンセント 🔌️ 5 5 501 -20 -デンゲン 🔌️ 5 5 501 -20 -プラグ 🔌️ 5 5 501 -20 -pc 💻️ 5 5 501 -20 -コンピュータ 💻️ 5 5 501 -20 -コンピューター 💻️ 5 5 501 -20 -ノートパソコン 💻️ 5 5 501 -20 -パソコン 💻️ 5 5 501 -20 -ラップトップ 💻️ 5 5 501 -20 -pc 🖥️️ 5 5 501 -20 -コンピューター 🖥️️ 5 5 501 -20 -デスクトップ 🖥️️ 5 5 501 -20 -デスクトップパソコン 🖥️️ 5 5 501 -20 -パソコン 🖥️️ 5 5 501 -20 -ピーシー 🖥️️ 5 5 501 -20 -インサツキ 🖨️️ 5 5 501 -20 -コピーキ 🖨️️ 5 5 501 -20 -フクゴウキ 🖨️️ 5 5 501 -20 -プリンタ 🖨️️ 5 5 501 -20 -プリンター 🖨️️ 5 5 501 -20 -pc ⌨️️ 5 5 501 -20 -キーボード ⌨️️ 5 5 501 -20 -コンピューター ⌨️️ 5 5 501 -20 -パソコン ⌨️️ 5 5 501 -20 -ピーシー ⌨️️ 5 5 501 -20 -pc 🖱️️ 5 5 501 -20 -コンピューター 🖱️️ 5 5 501 -20 -パソコン 🖱️️ 5 5 501 -20 -ピーシー 🖱️️ 5 5 501 -20 -マウス 🖱️️ 5 5 501 -20 -pc 🖲️️ 5 5 501 -20 -コンピューター 🖲️️ 5 5 501 -20 -トラックボール 🖲️️ 5 5 501 -20 -パソコン 🖲️️ 5 5 501 -20 -ピーシー 🖲️️ 5 5 501 -20 -md 💽️ 5 5 501 -20 -mo 💽️ 5 5 501 -20 -エムオー 💽️ 5 5 501 -20 -エムディー 💽️ 5 5 501 -20 -コンピューター 💽️ 5 5 501 -20 -ミニディスク 💽️ 5 5 501 -20 -fd 💾️ 5 5 501 -20 -エフディー 💾️ 5 5 501 -20 -コンピューター 💾️ 5 5 501 -20 -ディスク 💾️ 5 5 501 -20 -フロッピー 💾️ 5 5 501 -20 -フロッピーディスク 💾️ 5 5 501 -20 -cd 💿️ 5 5 501 -20 -dvd 💿️ 5 5 501 -20 -シーディー 💿️ 5 5 501 -20 -ディスク 💿️ 5 5 501 -20 -ブルレイ 💿️ 5 5 501 -20 -ブルーレイ 💿️ 5 5 501 -20 -cd 📀️ 5 5 501 -20 -dvd 📀️ 5 5 501 -20 -シーディー 📀️ 5 5 501 -20 -ディスク 📀️ 5 5 501 -20 -ブルレイ 📀️ 5 5 501 -20 -ブルーレイ 📀️ 5 5 501 -20 -アバカス 🧮️ 5 5 501 -20 -ソロバン 🧮️ 5 5 501 -20 -エイガ 🎥️ 5 5 501 -20 -エイガカメラ 🎥️ 5 5 501 -20 -カメラ 🎥️ 5 5 501 -20 -ムービー 🎥️ 5 5 501 -20 -エイガ 🎞️️ 5 5 501 -20 -エイガフィルム 🎞️️ 5 5 501 -20 -フィルム 🎞️️ 5 5 501 -20 -フレーム 🎞️️ 5 5 501 -20 -ムービー 🎞️️ 5 5 501 -20 -エイガ 📽️️ 5 5 501 -20 -エイシャキ 📽️️ 5 5 501 -20 -プロジェクター 📽️️ 5 5 501 -20 -ムービー 📽️️ 5 5 501 -20 -エイガ 🎬️ 5 5 501 -20 -カチンコ 🎬️ 5 5 501 -20 -テレビ 📺️ 5 5 501 -20 -ビデオ 📺️ 5 5 501 -20 -カメラ 📷️ 5 5 501 -20 -シャシン 📷️ 5 5 501 -20 -カメラ 📸️ 5 5 501 -20 -カメラフラッシュ 📸️ 5 5 501 -20 -シャシン 📸️ 5 5 501 -20 -フラッシュ 📸️ 5 5 501 -20 -フラッシュヲタイテイルカメラ 📸️ 5 5 501 -20 -カメラ 📹️ 5 5 501 -20 -ドウガ 📹️ 5 5 501 -20 -ビデオ 📹️ 5 5 501 -20 -ビデオカメラ 📹️ 5 5 501 -20 -ムービー 📹️ 5 5 501 -20 -vhs 📼️ 5 5 501 -20 -ドウガ 📼️ 5 5 501 -20 -ビデオ 📼️ 5 5 501 -20 -ビデオカセット 📼️ 5 5 501 -20 -ビデオテープ 📼️ 5 5 501 -20 -ブイエッチエス 📼️ 5 5 501 -20 -ケンサク 🔍️ 5 5 501 -20 -ムシメガネ 🔍️ 5 5 501 -20 -ムシメガネヒダリ 🔍️ 5 5 501 -20 -ルーペ 🔍️ 5 5 501 -20 -ケンサク 🔎️ 5 5 501 -20 -ショウサイ 🔎️ 5 5 501 -20 -ムシメガネ 🔎️ 5 5 501 -20 -ムシメガネミギ 🔎️ 5 5 501 -20 -ルーペ 🔎️ 5 5 501 -20 -アカリ 🕯️️ 5 5 501 -20 -キャンドル 🕯️️ 5 5 501 -20 -ロウソク 🕯️️ 5 5 501 -20 -アカリ 💡️ 5 5 501 -20 -デンキュウ 💡️ 5 5 501 -20 -ヒラメキ 💡️ 5 5 501 -20 -ピコーン 💡️ 5 5 501 -20 -アカリ 🔦️ 5 5 501 -20 -カイチュウデントウ 🔦️ 5 5 501 -20 -デントウ 🔦️ 5 5 501 -20 -ライト 🔦️ 5 5 501 -20 -アカチョウチン 🏮️ 5 5 501 -20 -イザカヤ 🏮️ 5 5 501 -20 -チョウチン 🏮️ 5 5 501 -20 -ノミヤ 🏮️ 5 5 501 -20 -アカリ 🪔️ 5 5 501 -20 -オイル 🪔️ 5 5 501 -20 -ディヤランプ 🪔️ 5 5 501 -20 -ランプ 🪔️ 5 5 501 -20 -ノート 📔️ 5 5 501 -20 -ヒョウシツキノート 📔️ 5 5 501 -20 -ブング 📔️ 5 5 501 -20 -ブンボウグ 📔️ 5 5 501 -20 -ショセキ 📕️ 5 5 501 -20 -トジタホン 📕️ 5 5 501 -20 -ブンボウグ 📕️ 5 5 501 -20 -ホン 📕️ 5 5 501 -20 -ショセキ 📖️ 5 5 501 -20 -ヒライタホン 📖️ 5 5 501 -20 -ブンボウグ 📖️ 5 5 501 -20 -ホン 📖️ 5 5 501 -20 -ショセキ 📗️ 5 5 501 -20 -ブンボウグ 📗️ 5 5 501 -20 -ホン 📗️ 5 5 501 -20 -ミドリノホン 📗️ 5 5 501 -20 -アオイホン 📘️ 5 5 501 -20 -アオノホン 📘️ 5 5 501 -20 -ショセキ 📘️ 5 5 501 -20 -ブンボウグ 📘️ 5 5 501 -20 -ホン 📘️ 5 5 501 -20 -オレンジノホン 📙️ 5 5 501 -20 -ショセキ 📙️ 5 5 501 -20 -ブンボウグ 📙️ 5 5 501 -20 -ホン 📙️ 5 5 501 -20 -ショセキ 📚️ 5 5 501 -20 -ブンボウグ 📚️ 5 5 501 -20 -ホン 📚️ 5 5 501 -20 -ホンノヤマ 📚️ 5 5 501 -20 -ノート 📓️ 5 5 501 -20 -ブング 📓️ 5 5 501 -20 -ブンボウグ 📓️ 5 5 501 -20 -ダイチョウ 📒️ 5 5 501 -20 -ノート 📒️ 5 5 501 -20 -ブング 📒️ 5 5 501 -20 -ブンボウグ 📒️ 5 5 501 -20 -リングノート 📒️ 5 5 501 -20 -カール 📃️ 5 5 501 -20 -ショルイ 📃️ 5 5 501 -20 -ブンショ 📃️ 5 5 501 -20 -マキページ 📃️ 5 5 501 -20 -ショルイ 📜️ 5 5 501 -20 -スクロール 📜️ 5 5 501 -20 -ブンショ 📜️ 5 5 501 -20 -ブンボウグ 📜️ 5 5 501 -20 -マキモノ 📜️ 5 5 501 -20 -ショルイ 📄️ 5 5 501 -20 -ブンショ 📄️ 5 5 501 -20 -ページ 📄️ 5 5 501 -20 -シンブン 📰️ 5 5 501 -20 -シンブンシ 📰️ 5 5 501 -20 -ニュース 📰️ 5 5 501 -20 -シンブン 🗞️️ 5 5 501 -20 -シンブンシ 🗞️️ 5 5 501 -20 -ニュース 🗞️️ 5 5 501 -20 -マルメタシンブン 🗞️️ 5 5 501 -20 -フセン 📑️ 5 5 501 -20 -ブング 📑️ 5 5 501 -20 -ブンボウグ 📑️ 5 5 501 -20 -ページニフセン 📑️ 5 5 501 -20 -ページマーク 📑️ 5 5 501 -20 -マーク 📑️ 5 5 501 -20 -シオリ 🔖️ 5 5 501 -20 -タグ 🔖️ 5 5 501 -20 -フセン 🔖️ 5 5 501 -20 -ブックマーク 🔖️ 5 5 501 -20 -タグ 🏷️️ 5 5 501 -20 -ニフダ 🏷️️ 5 5 501 -20 -ラベル 🏷️️ 5 5 501 -20 -オカネ 💰️ 5 5 501 -20 -カネブクロ 💰️ 5 5 501 -20 -キンブクロ 💰️ 5 5 501 -20 -ショウキン 💰️ 5 5 501 -20 -ドル 💰️ 5 5 501 -20 -ドルブクロ 💰️ 5 5 501 -20 -オカネ 🪙️ 5 5 501 -20 -キンカ 🪙️ 5 5 501 -20 -ギンカ 🪙️ 5 5 501 -20 -コイン 🪙️ 5 5 501 -20 -コウカ 🪙️ 5 5 501 -20 -コゼニ 🪙️ 5 5 501 -20 -エン 💴️ 5 5 501 -20 -エンサツ 💴️ 5 5 501 -20 -オカネ 💴️ 5 5 501 -20 -オサツ 💴️ 5 5 501 -20 -コギッテ 💴️ 5 5 501 -20 -サツタバ 💴️ 5 5 501 -20 -ツウカ 💴️ 5 5 501 -20 -ユウリョウ 💴️ 5 5 501 -20 -オカネ 💵️ 5 5 501 -20 -オサツ 💵️ 5 5 501 -20 -サツタバ 💵️ 5 5 501 -20 -ツウカ 💵️ 5 5 501 -20 -ドル 💵️ 5 5 501 -20 -ドルサツ 💵️ 5 5 501 -20 -オカネ 💶️ 5 5 501 -20 -オサツ 💶️ 5 5 501 -20 -サツタバ 💶️ 5 5 501 -20 -ツウカ 💶️ 5 5 501 -20 -ユーロ 💶️ 5 5 501 -20 -ユーロサツ 💶️ 5 5 501 -20 -オカネ 💷️ 5 5 501 -20 -オサツ 💷️ 5 5 501 -20 -サツタバ 💷️ 5 5 501 -20 -ツウカ 💷️ 5 5 501 -20 -ポンド 💷️ 5 5 501 -20 -ポンドサツ 💷️ 5 5 501 -20 -オカネ 💸️ 5 5 501 -20 -オサツ 💸️ 5 5 501 -20 -サツタバ 💸️ 5 5 501 -20 -ドル 💸️ 5 5 501 -20 -ハネガハエタオカネ 💸️ 5 5 501 -20 -オカネ 💳️ 5 5 501 -20 -カード 💳️ 5 5 501 -20 -キャッシュカード 💳️ 5 5 501 -20 -ギンコウ 💳️ 5 5 501 -20 -クレジットカード 💳️ 5 5 501 -20 -カイケイ 🧾️ 5 5 501 -20 -ボキ 🧾️ 5 5 501 -20 -リョウシュウショ 🧾️ 5 5 501 -20 -レシート 🧾️ 5 5 501 -20 -イチバ 💹️ 5 5 501 -20 -カブ 💹️ 5 5 501 -20 -カブカ 💹️ 5 5 501 -20 -カワセ 💹️ 5 5 501 -20 -グラフ 💹️ 5 5 501 -20 -シジョウ 💹️ 5 5 501 -20 -チャート 💹️ 5 5 501 -20 -イーメール ✉️️ 5 5 501 -20 -テガミ ✉️️ 5 5 501 -20 -デンシメール ✉️️ 5 5 501 -20 -フウトウ ✉️️ 5 5 501 -20 -メール ✉️️ 5 5 501 -20 -ユウビン ✉️️ 5 5 501 -20 -eメール 📧️ 5 5 501 -20 -イーメール 📧️ 5 5 501 -20 -テガミ 📧️ 5 5 501 -20 -デンシメール 📧️ 5 5 501 -20 -フウトウ 📧️ 5 5 501 -20 -メール 📧️ 5 5 501 -20 -ユウビン 📧️ 5 5 501 -20 -eメール 📨️ 5 5 501 -20 -イーメール 📨️ 5 5 501 -20 -ジュシン 📨️ 5 5 501 -20 -ジュシンスル 📨️ 5 5 501 -20 -ジュシンチュウ 📨️ 5 5 501 -20 -デンシメール 📨️ 5 5 501 -20 -メール 📨️ 5 5 501 -20 -メールジュシンチュウ 📨️ 5 5 501 -20 -eメール 📩️ 5 5 501 -20 -イーメール 📩️ 5 5 501 -20 -ソウシン 📩️ 5 5 501 -20 -ソウシンスル 📩️ 5 5 501 -20 -デンシメール 📩️ 5 5 501 -20 -メール 📩️ 5 5 501 -20 -メールジュシン 📩️ 5 5 501 -20 -メールスル 📩️ 5 5 501 -20 -イーメール 📤️ 5 5 501 -20 -ソウシン 📤️ 5 5 501 -20 -ソウシントレイ 📤️ 5 5 501 -20 -デンシメール 📤️ 5 5 501 -20 -トレイ 📤️ 5 5 501 -20 -メール 📤️ 5 5 501 -20 -イーメール 📥️ 5 5 501 -20 -ジュシン 📥️ 5 5 501 -20 -ジュシントレイ 📥️ 5 5 501 -20 -デンシメール 📥️ 5 5 501 -20 -トレイ 📥️ 5 5 501 -20 -メール 📥️ 5 5 501 -20 -コヅツミ 📦️ 5 5 501 -20 -タクハイビン 📦️ 5 5 501 -20 -タッキュウビン 📦️ 5 5 501 -20 -ダンボール 📦️ 5 5 501 -20 -ニモツ 📦️ 5 5 501 -20 -パック 📦️ 5 5 501 -20 -パッケージ 📦️ 5 5 501 -20 -テガミアリ 📫️ 5 5 501 -20 -トジタ 📫️ 5 5 501 -20 -トジタユウビンウケ 📫️ 5 5 501 -20 -ハタツキポスト 📫️ 5 5 501 -20 -ポスト 📫️ 5 5 501 -20 -メール 📫️ 5 5 501 -20 -ユウビン 📫️ 5 5 501 -20 -ユウビンウケ 📫️ 5 5 501 -20 -ユウビンバコ 📫️ 5 5 501 -20 -テガミナシ 📪️ 5 5 501 -20 -トジタ 📪️ 5 5 501 -20 -トジタユウビンウケ 📪️ 5 5 501 -20 -ハタツキポスト 📪️ 5 5 501 -20 -ポスト 📪️ 5 5 501 -20 -メール 📪️ 5 5 501 -20 -ユウビン 📪️ 5 5 501 -20 -ユウビンウケ 📪️ 5 5 501 -20 -ユウビンバコ 📪️ 5 5 501 -20 -テガミアリ 📬️ 5 5 501 -20 -ヒライタ 📬️ 5 5 501 -20 -ヒライタユウビンウケ 📬️ 5 5 501 -20 -ポスト 📬️ 5 5 501 -20 -ユウビンウケ 📬️ 5 5 501 -20 -ユウビンバコ 📬️ 5 5 501 -20 -テガミナシ 📭️ 5 5 501 -20 -ヒライタ 📭️ 5 5 501 -20 -ヒライタユウビンウケ 📭️ 5 5 501 -20 -ポスト 📭️ 5 5 501 -20 -ユウビンウケ 📭️ 5 5 501 -20 -ユウビンバコ 📭️ 5 5 501 -20 -テガミ 📮️ 5 5 501 -20 -ポスト 📮️ 5 5 501 -20 -ユウビン 📮️ 5 5 501 -20 -ユウビンバコ 📮️ 5 5 501 -20 -ユウビンポスト 📮️ 5 5 501 -20 -センキョ 🗳️️ 5 5 501 -20 -トウヒョウバコ 🗳️️ 5 5 501 -20 -エンピツ ✏️️ 5 5 501 -20 -ブング ✏️️ 5 5 501 -20 -ブンボウグ ✏️️ 5 5 501 -20 -エディット ✒️️ 5 5 501 -20 -ブング ✒️️ 5 5 501 -20 -ブンボウグ ✒️️ 5 5 501 -20 -ペン ✒️️ 5 5 501 -20 -ペンサキ ✒️️ 5 5 501 -20 -マンネンヒツ ✒️️ 5 5 501 -20 -ブング 🖋️️ 5 5 501 -20 -ブンボウグ 🖋️️ 5 5 501 -20 -マンネンヒツ 🖋️️ 5 5 501 -20 -ブング 🖊️️ 5 5 501 -20 -ブンボウグ 🖊️️ 5 5 501 -20 -ペン 🖊️️ 5 5 501 -20 -ボールペン 🖊️️ 5 5 501 -20 -エノグ 🖌️️ 5 5 501 -20 -エフデ 🖌️️ 5 5 501 -20 -ブング 🖌️️ 5 5 501 -20 -ブンボウグ 🖌️️ 5 5 501 -20 -クレヨン 🖍️️ 5 5 501 -20 -ブング 🖍️️ 5 5 501 -20 -ブンボウグ 🖍️️ 5 5 501 -20 -エンピツトメモ 📝️ 5 5 501 -20 -カミトエンピツ 📝️ 5 5 501 -20 -ブング 📝️ 5 5 501 -20 -ブンボウグ 📝️ 5 5 501 -20 -メモ 📝️ 5 5 501 -20 -カバン 💼️ 5 5 501 -20 -ブリーフケース 💼️ 5 5 501 -20 -ファイル 📁️ 5 5 501 -20 -フォルダー 📁️ 5 5 501 -20 -ブング 📁️ 5 5 501 -20 -ブンボウグ 📁️ 5 5 501 -20 -ヒライタフォルダー 📂️ 5 5 501 -20 -ファイル 📂️ 5 5 501 -20 -フォルダー 📂️ 5 5 501 -20 -ブング 📂️ 5 5 501 -20 -ブンボウグ 📂️ 5 5 501 -20 -インデックス 🗂️️ 5 5 501 -20 -カードフォルダー 🗂️️ 5 5 501 -20 -フォルダー 🗂️️ 5 5 501 -20 -ブング 🗂️️ 5 5 501 -20 -ブンボウグ 🗂️️ 5 5 501 -20 -カレンダー 📅️ 5 5 501 -20 -スケジュール 📅️ 5 5 501 -20 -ヒヅケ 📅️ 5 5 501 -20 -ヨテイ 📅️ 5 5 501 -20 -カレンダー 📆️ 5 5 501 -20 -スケジュール 📆️ 5 5 501 -20 -ヒヅケ 📆️ 5 5 501 -20 -ヒメクリ 📆️ 5 5 501 -20 -ヒメクリカレンダー 📆️ 5 5 501 -20 -ヨテイ 📆️ 5 5 501 -20 -ノート 🗒️️ 5 5 501 -20 -ブング 🗒️️ 5 5 501 -20 -ブンボウグ 🗒️️ 5 5 501 -20 -メモチョウ 🗒️️ 5 5 501 -20 -リングメモ 🗒️️ 5 5 501 -20 -カレンダー 🗓️️ 5 5 501 -20 -スケジュール 🗓️️ 5 5 501 -20 -ツキメクリカレンダー 🗓️️ 5 5 501 -20 -ヒヅケ 🗓️️ 5 5 501 -20 -ヨテイ 🗓️️ 5 5 501 -20 -カードインデックス 📇️ 5 5 501 -20 -ブング 📇️ 5 5 501 -20 -ブンボウグ 📇️ 5 5 501 -20 -メイシホルダー 📇️ 5 5 501 -20 -ローロデックス 📇️ 5 5 501 -20 -ウエムキ 📈️ 5 5 501 -20 -ウワムキ 📈️ 5 5 501 -20 -オレセングラフ 📈️ 5 5 501 -20 -グラフ 📈️ 5 5 501 -20 -グラフウエムキ 📈️ 5 5 501 -20 -グラフウワムキ 📈️ 5 5 501 -20 -ジョウショウ 📈️ 5 5 501 -20 -オレセングラフ 📉️ 5 5 501 -20 -カコウ 📉️ 5 5 501 -20 -グラフ 📉️ 5 5 501 -20 -グラフシタムキ 📉️ 5 5 501 -20 -シタムキ 📉️ 5 5 501 -20 -グラフ 📊️ 5 5 501 -20 -チャート 📊️ 5 5 501 -20 -ボウグラフ 📊️ 5 5 501 -20 -クリップ 📋️ 5 5 501 -20 -クリップボード 📋️ 5 5 501 -20 -ブング 📋️ 5 5 501 -20 -ブンボウグ 📋️ 5 5 501 -20 -オシピン 📌️ 5 5 501 -20 -ガビョウ 📌️ 5 5 501 -20 -ピン 📌️ 5 5 501 -20 -ブング 📌️ 5 5 501 -20 -ブンボウグ 📌️ 5 5 501 -20 -プッシュピン 📌️ 5 5 501 -20 -オシピン 📍️ 5 5 501 -20 -ガビョウ 📍️ 5 5 501 -20 -ピン 📍️ 5 5 501 -20 -ブング 📍️ 5 5 501 -20 -ブンボウグ 📍️ 5 5 501 -20 -プッシュピン 📍️ 5 5 501 -20 -マルイオシピン 📍️ 5 5 501 -20 -カミクリップ 📎️ 5 5 501 -20 -クリップ 📎️ 5 5 501 -20 -ゼムクリップ 📎️ 5 5 501 -20 -ブング 📎️ 5 5 501 -20 -ブンボウグ 📎️ 5 5 501 -20 -ペーパークリップ 📎️ 5 5 501 -20 -カミクリップ 🖇️️ 5 5 501 -20 -ツナガッタクリップ 🖇️️ 5 5 501 -20 -ブング 🖇️️ 5 5 501 -20 -ブンボウグ 🖇️️ 5 5 501 -20 -ペーパークリップ 🖇️️ 5 5 501 -20 -ジョウギ 📏️ 5 5 501 -20 -ブング 📏️ 5 5 501 -20 -ブンボウグ 📏️ 5 5 501 -20 -モノサシ 📏️ 5 5 501 -20 -サンカクジョウギ 📐️ 5 5 501 -20 -ジョウギ 📐️ 5 5 501 -20 -ブング 📐️ 5 5 501 -20 -ブンボウグ 📐️ 5 5 501 -20 -カット ✂️️ 5 5 501 -20 -キル ✂️️ 5 5 501 -20 -ハサミ ✂️️ 5 5 501 -20 -ビヨウイン ✂️️ 5 5 501 -20 -ブング ✂️️ 5 5 501 -20 -ブンボウグ ✂️️ 5 5 501 -20 -カードファイルボックス 🗃️️ 5 5 501 -20 -ハコ 🗃️️ 5 5 501 -20 -ファイル 🗃️️ 5 5 501 -20 -ブング 🗃️️ 5 5 501 -20 -ブンボウグ 🗃️️ 5 5 501 -20 -ボックス 🗃️️ 5 5 501 -20 -キャビネット 🗄️️ 5 5 501 -20 -ヒキダシ 🗄️️ 5 5 501 -20 -ファイル 🗄️️ 5 5 501 -20 -ファイルキャビネット 🗄️️ 5 5 501 -20 -クズカゴ 🗑️️ 5 5 501 -20 -ゴミカゴ 🗑️️ 5 5 501 -20 -ゴミバコ 🗑️️ 5 5 501 -20 -カギ 🔒️ 5 5 501 -20 -ジョウ 🔒️ 5 5 501 -20 -セジョウ 🔒️ 5 5 501 -20 -トジタジョウ 🔒️ 5 5 501 -20 -ロック 🔒️ 5 5 501 -20 -ロックオン 🔒️ 5 5 501 -20 -カイジョウ 🔓️ 5 5 501 -20 -カギ 🔓️ 5 5 501 -20 -ジョウ 🔓️ 5 5 501 -20 -ヒライタジョウ 🔓️ 5 5 501 -20 -ロック 🔓️ 5 5 501 -20 -ロックオフ 🔓️ 5 5 501 -20 -カギ 🔏️ 5 5 501 -20 -トジタジョウトペン 🔏️ 5 5 501 -20 -プライバシー 🔏️ 5 5 501 -20 -ロック 🔏️ 5 5 501 -20 -アンゼン 🔐️ 5 5 501 -20 -カギ 🔐️ 5 5 501 -20 -キー 🔐️ 5 5 501 -20 -セキュリティ 🔐️ 5 5 501 -20 -トジタジョウトカギ 🔐️ 5 5 501 -20 -ロック 🔐️ 5 5 501 -20 -ロックカクニン 🔐️ 5 5 501 -20 -カギ 🔑️ 5 5 501 -20 -キー 🔑️ 5 5 501 -20 -パスワード 🔑️ 5 5 501 -20 -キー 🗝️️ 5 5 501 -20 -テガカリ 🗝️️ 5 5 501 -20 -パスワード 🗝️️ 5 5 501 -20 -フルイカギ 🗝️️ 5 5 501 -20 -カナヅチ 🔨️ 5 5 501 -20 -コウグ 🔨️ 5 5 501 -20 -トンカチ 🔨️ 5 5 501 -20 -ハンマー 🔨️ 5 5 501 -20 -オノ 🪓️ 5 5 501 -20 -キ 🪓️ 5 5 501 -20 -コウグ 🪓️ 5 5 501 -20 -ハチェット 🪓️ 5 5 501 -20 -マキワリ 🪓️ 5 5 501 -20 -コウグ ⛏️️ 5 5 501 -20 -サイクツ ⛏️️ 5 5 501 -20 -ツルハシ ⛏️️ 5 5 501 -20 -カナヅチ ⚒️️ 5 5 501 -20 -コウグ ⚒️️ 5 5 501 -20 -ツルハシ ⚒️️ 5 5 501 -20 -トンカチ ⚒️️ 5 5 501 -20 -ハンマー ⚒️️ 5 5 501 -20 -ハンマートツルハシ ⚒️️ 5 5 501 -20 -カナヅチ 🛠️️ 5 5 501 -20 -コウグ 🛠️️ 5 5 501 -20 -トンカチ 🛠️️ 5 5 501 -20 -ハンマートレンチ 🛠️️ 5 5 501 -20 -レンチ 🛠️️ 5 5 501 -20 -タントウ 🗡️️ 5 5 501 -20 -ダガー 🗡️️ 5 5 501 -20 -ナイフ 🗡️️ 5 5 501 -20 -ブキ 🗡️️ 5 5 501 -20 -カタナ ⚔️️ 5 5 501 -20 -クロスシタケン ⚔️️ 5 5 501 -20 -ケン ⚔️️ 5 5 501 -20 -ツルギ ⚔️️ 5 5 501 -20 -ブキ ⚔️️ 5 5 501 -20 -バクダン 💣️ 5 5 501 -20 -オモチャ 🪃️ 5 5 501 -20 -オーストラリア 🪃️ 5 5 501 -20 -カエッテクル 🪃️ 5 5 501 -20 -ガング 🪃️ 5 5 501 -20 -ハネカエリ 🪃️ 5 5 501 -20 -ブキ 🪃️ 5 5 501 -20 -ブーメラン 🪃️ 5 5 501 -20 -イテ 🏹️ 5 5 501 -20 -シャシュ 🏹️ 5 5 501 -20 -セイザ 🏹️ 5 5 501 -20 -ブキ 🏹️ 5 5 501 -20 -ヤ 🏹️ 5 5 501 -20 -ユミヤ 🏹️ 5 5 501 -20 -シールド 🛡️️ 5 5 501 -20 -タテ 🛡️️ 5 5 501 -20 -ボウグ 🛡️️ 5 5 501 -20 -コウグ 🪚️ 5 5 501 -20 -ダイク 🪚️ 5 5 501 -20 -ノコ 🪚️ 5 5 501 -20 -ノコギリ 🪚️ 5 5 501 -20 -ハ 🪚️ 5 5 501 -20 -モッコウ 🪚️ 5 5 501 -20 -コウグ 🔧️ 5 5 501 -20 -スパナ 🔧️ 5 5 501 -20 -レンチ 🔧️ 5 5 501 -20 -コウグ 🪛️ 5 5 501 -20 -スクリュードライバー 🪛️ 5 5 501 -20 -ドライバー 🪛️ 5 5 501 -20 -ネジマワシ 🪛️ 5 5 501 -20 -コウグ 🔩️ 5 5 501 -20 -ナット 🔩️ 5 5 501 -20 -ボルト 🔩️ 5 5 501 -20 -ボルトトナット 🔩️ 5 5 501 -20 -ギア ⚙️️ 5 5 501 -20 -コウグ ⚙️️ 5 5 501 -20 -ハグルマ ⚙️️ 5 5 501 -20 -クランプ 🗜️️ 5 5 501 -20 -コウグ 🗜️️ 5 5 501 -20 -バイス 🗜️️ 5 5 501 -20 -マンリキ 🗜️️ 5 5 501 -20 -カガク ⚖️️ 5 5 501 -20 -ジッケン ⚖️️ 5 5 501 -20 -セイザ ⚖️️ 5 5 501 -20 -テンビン ⚖️️ 5 5 501 -20 -ハカリ ⚖️️ 5 5 501 -20 -アクセシビリティ 🦯️ 5 5 501 -20 -シカク 🦯️ 5 5 501 -20 -ショウガイ 🦯️ 5 5 501 -20 -シロツエ 🦯️ 5 5 501 -20 -ツエ 🦯️ 5 5 501 -20 -ハクジョウ 🦯️ 5 5 501 -20 -リンク 🔗️ 5 5 501 -20 -リンクシンボル 🔗️ 5 5 501 -20 -クサリ ⛓️️ 5 5 501 -20 -チェーン ⛓️️ 5 5 501 -20 -カケガネ 🪝️ 5 5 501 -20 -カケキン 🪝️ 5 5 501 -20 -トメガネ 🪝️ 5 5 501 -20 -ヒッカケ 🪝️ 5 5 501 -20 -フック 🪝️ 5 5 501 -20 -キカイコウ 🧰️ 5 5 501 -20 -コウグバコ 🧰️ 5 5 501 -20 -セイビシ 🧰️ 5 5 501 -20 -ツールボックス 🧰️ 5 5 501 -20 -メカニック 🧰️ 5 5 501 -20 -テイテツ 🧲️ 5 5 501 -20 -マグネット 🧲️ 5 5 501 -20 -ユージガタジシャク 🧲️ 5 5 501 -20 -コウショサギョウ 🪜️ 5 5 501 -20 -ステッパー 🪜️ 5 5 501 -20 -ノボル 🪜️ 5 5 501 -20 -ハシゴ 🪜️ 5 5 501 -20 -カガク ⚗️️ 5 5 501 -20 -ジッケン ⚗️️ 5 5 501 -20 -ジョウリュウキ ⚗️️ 5 5 501 -20 -カガク 🧪️ 5 5 501 -20 -シケンカン 🧪️ 5 5 501 -20 -ジッケン 🧪️ 5 5 501 -20 -ラボ 🧪️ 5 5 501 -20 -セイブツガク 🧫️ 5 5 501 -20 -バイヨウ 🧫️ 5 5 501 -20 -バクテリア 🧫️ 5 5 501 -20 -ペトリサラ 🧫️ 5 5 501 -20 -dna 🧬️ 5 5 501 -20 -イデンシ 🧬️ 5 5 501 -20 -シンカ 🧬️ 5 5 501 -20 -セイブツガク 🧬️ 5 5 501 -20 -ディーエヌエー 🧬️ 5 5 501 -20 -カガク 🔬️ 5 5 501 -20 -ケンキュウ 🔬️ 5 5 501 -20 -ケンビキョウ 🔬️ 5 5 501 -20 -サイエンス 🔬️ 5 5 501 -20 -カガク 🔭️ 5 5 501 -20 -カンソク 🔭️ 5 5 501 -20 -サイエンス 🔭️ 5 5 501 -20 -テンタイカンソク 🔭️ 5 5 501 -20 -ボウエンキョウ 🔭️ 5 5 501 -20 -アンテナ 📡️ 5 5 501 -20 -エイセイアンテナ 📡️ 5 5 501 -20 -デンパ 📡️ 5 5 501 -20 -パラボラ 📡️ 5 5 501 -20 -パラボラアンテナ 📡️ 5 5 501 -20 -イシャ 💉️ 5 5 501 -20 -クスリ 💉️ 5 5 501 -20 -チュウシャ 💉️ 5 5 501 -20 -チュウシャキ 💉️ 5 5 501 -20 -ビョウキ 💉️ 5 5 501 -20 -イシャ 🩸️ 5 5 501 -20 -ケガ 🩸️ 5 5 501 -20 -ケツエキ 🩸️ 5 5 501 -20 -ケンケツ 🩸️ 5 5 501 -20 -セイリ 🩸️ 5 5 501 -20 -イシャ 💊️ 5 5 501 -20 -カゼグスリ 💊️ 5 5 501 -20 -カプセル 💊️ 5 5 501 -20 -クスリ 💊️ 5 5 501 -20 -ビョウキ 💊️ 5 5 501 -20 -キズ 🩹️ 5 5 501 -20 -クスリ 🩹️ 5 5 501 -20 -ケガ 🩹️ 5 5 501 -20 -テアテ 🩹️ 5 5 501 -20 -バンソウコウ 🩹️ 5 5 501 -20 -ケガ 🩼️ 5 5 501 -20 -ショウガイ 🩼️ 5 5 501 -20 -ステッキ 🩼️ 5 5 501 -20 -ツエ 🩼️ 5 5 501 -20 -ホコウホジョ 🩼️ 5 5 501 -20 -マツバヅエ 🩼️ 5 5 501 -20 -イシャ 🩺️ 5 5 501 -20 -シンゾウ 🩺️ 5 5 501 -20 -チョウシンキ 🩺️ 5 5 501 -20 -ビョウキ 🩺️ 5 5 501 -20 -イシャ 🩻️ 5 5 501 -20 -エックスセン 🩻️ 5 5 501 -20 -コッカク 🩻️ 5 5 501 -20 -ホネ 🩻️ 5 5 501 -20 -レントゲン 🩻️ 5 5 501 -20 -ト 🚪️ 5 5 501 -20 -トビラ 🚪️ 5 5 501 -20 -ドア 🚪️ 5 5 501 -20 -アクセシビリティ 🛗️ 5 5 501 -20 -エレベーター 🛗️ 5 5 501 -20 -ショウコウキ 🛗️ 5 5 501 -20 -バリアフリー 🛗️ 5 5 501 -20 -リフト 🛗️ 5 5 501 -20 -カガミ 🪞️ 5 5 501 -20 -スガタミ 🪞️ 5 5 501 -20 -ハンシャ 🪞️ 5 5 501 -20 -ミダシナミ 🪞️ 5 5 501 -20 -ミラー 🪞️ 5 5 501 -20 -アケル 🪟️ 5 5 501 -20 -カンキ 🪟️ 5 5 501 -20 -ナガメ 🪟️ 5 5 501 -20 -フレーム 🪟️ 5 5 501 -20 -マド 🪟️ 5 5 501 -20 -スイミン 🛏️️ 5 5 501 -20 -ネル 🛏️️ 5 5 501 -20 -ベッド 🛏️️ 5 5 501 -20 -ホテル 🛏️️ 5 5 501 -20 -ソファ 🛋️️ 5 5 501 -20 -ソファトランプ 🛋️️ 5 5 501 -20 -ホテル 🛋️️ 5 5 501 -20 -ランプ 🛋️️ 5 5 501 -20 -イス 🪑️ 5 5 501 -20 -カグ 🪑️ 5 5 501 -20 -コシカケ 🪑️ 5 5 501 -20 -シート 🪑️ 5 5 501 -20 -チェア 🪑️ 5 5 501 -20 -オテアライ 🚽️ 5 5 501 -20 -トイレ 🚽️ 5 5 501 -20 -ベンキ 🚽️ 5 5 501 -20 -ベンザ 🚽️ 5 5 501 -20 -キュウインカップ 🪠️ 5 5 501 -20 -スッポン 🪠️ 5 5 501 -20 -ツウスイカップ 🪠️ 5 5 501 -20 -トイレ 🪠️ 5 5 501 -20 -プランジャー 🪠️ 5 5 501 -20 -ラバーカップ 🪠️ 5 5 501 -20 -シャワー 🚿️ 5 5 501 -20 -フロ 🚿️ 5 5 501 -20 -バスタブ 🛁️ 5 5 501 -20 -フロ 🛁️ 5 5 501 -20 -ヨクソウ 🛁️ 5 5 501 -20 -オビキヨセル 🪤️ 5 5 501 -20 -シカケ 🪤️ 5 5 501 -20 -ネズミトリ 🪤️ 5 5 501 -20 -バネ 🪤️ 5 5 501 -20 -マウストラップ 🪤️ 5 5 501 -20 -ワナ 🪤️ 5 5 501 -20 -カミソリ 🪒️ 5 5 501 -20 -ハ 🪒️ 5 5 501 -20 -ヒゲソリ 🪒️ 5 5 501 -20 -レーザー 🪒️ 5 5 501 -20 -ケショウスイ 🧴️ 5 5 501 -20 -シャンプー 🧴️ 5 5 501 -20 -ヒヤケドメ 🧴️ 5 5 501 -20 -ローション 🧴️ 5 5 501 -20 -アンゼンピン 🧷️ 5 5 501 -20 -トメピン 🧷️ 5 5 501 -20 -ソウジ 🧹️ 5 5 501 -20 -ハク 🧹️ 5 5 501 -20 -ホウキ 🧹️ 5 5 501 -20 -マジョ 🧹️ 5 5 501 -20 -カゴ 🧺️ 5 5 501 -20 -シュウカク 🧺️ 5 5 501 -20 -センタク 🧺️ 5 5 501 -20 -ピクニック 🧺️ 5 5 501 -20 -キッチンペーパー 🧻️ 5 5 501 -20 -トイレットペーパー 🧻️ 5 5 501 -20 -ペーパータオル 🧻️ 5 5 501 -20 -オケ 🪣️ 5 5 501 -20 -バケツ 🪣️ 5 5 501 -20 -ポリバケツ 🪣️ 5 5 501 -20 -ヨウキ 🪣️ 5 5 501 -20 -セッケン 🧼️ 5 5 501 -20 -ソープ 🧼️ 5 5 501 -20 -フロ 🧼️ 5 5 501 -20 -アブク 🫧️ 5 5 501 -20 -アワ 🫧️ 5 5 501 -20 -シャボンダマ 🫧️ 5 5 501 -20 -スイチュウ 🫧️ 5 5 501 -20 -セッケン 🫧️ 5 5 501 -20 -バブル 🫧️ 5 5 501 -20 -エイセイ 🪥️ 5 5 501 -20 -オテイレ 🪥️ 5 5 501 -20 -センメンジョ 🪥️ 5 5 501 -20 -ハブラシ 🪥️ 5 5 501 -20 -ハミガキ 🪥️ 5 5 501 -20 -ムシバ 🪥️ 5 5 501 -20 -カイメン 🧽️ 5 5 501 -20 -キュウシュウ 🧽️ 5 5 501 -20 -スポンジ 🧽️ 5 5 501 -20 -ソウジ 🧽️ 5 5 501 -20 -ショウカ 🧯️ 5 5 501 -20 -ショウカキ 🧯️ 5 5 501 -20 -ショウカキグ 🧯️ 5 5 501 -20 -ショウボウ 🧯️ 5 5 501 -20 -カイモノ 🛒️ 5 5 501 -20 -カート 🛒️ 5 5 501 -20 -ショッピング 🛒️ 5 5 501 -20 -ショッピングカート 🛒️ 5 5 501 -20 -スーパー 🛒️ 5 5 501 -20 -キツエン 🚬️ 5 5 501 -20 -タバコ 🚬️ 5 5 501 -20 -カンオケ ⚰️️ 5 5 501 -20 -シ ⚰️️ 5 5 501 -20 -ヒツギ ⚰️️ 5 5 501 -20 -マイソウ ⚰️️ 5 5 501 -20 -オハカ 🪦️ 5 5 501 -20 -セキヒ 🪦️ 5 5 501 -20 -ハカバ 🪦️ 5 5 501 -20 -ボセキ 🪦️ 5 5 501 -20 -ボチ 🪦️ 5 5 501 -20 -マイソウ 🪦️ 5 5 501 -20 -イハイ ⚱️️ 5 5 501 -20 -コツツボ ⚱️️ 5 5 501 -20 -シ ⚱️️ 5 5 501 -20 -ソウギ ⚱️️ 5 5 501 -20 -マイソウ ⚱️️ 5 5 501 -20 -オマモリ 🧿️ 5 5 501 -20 -ジャシ 🧿️ 5 5 501 -20 -ナザール 🧿️ 5 5 501 -20 -ナザールボンジュウ 🧿️ 5 5 501 -20 -ナザール・ボンジュウ 🧿️ 5 5 501 -20 -ビーズ 🧿️ 5 5 501 -20 -マヨケ 🧿️ 5 5 501 -20 -オマモリ 🪬️ 5 5 501 -20 -ゴフ 🪬️ 5 5 501 -20 -テ 🪬️ 5 5 501 -20 -ハムサ 🪬️ 5 5 501 -20 -ファーティマ 🪬️ 5 5 501 -20 -ミリアム 🪬️ 5 5 501 -20 -メ 🪬️ 5 5 501 -20 -カオ 🗿️ 5 5 501 -20 -ゾウ 🗿️ 5 5 501 -20 -モアイ 🗿️ 5 5 501 -20 -モヤイ 🗿️ 5 5 501 -20 -イギ 🪧️ 5 5 501 -20 -カンバン 🪧️ 5 5 501 -20 -コウギ 🪧️ 5 5 501 -20 -シュチョウ 🪧️ 5 5 501 -20 -デモ 🪧️ 5 5 501 -20 -プラカード 🪧️ 5 5 501 -20 -id 🪪️ 5 5 501 -20 -アイディーカード 🪪️ 5 5 501 -20 -ウンテンメンキョショウ 🪪️ 5 5 501 -20 -カード 🪪️ 5 5 501 -20 -セキュリティ 🪪️ 5 5 501 -20 -ミブンショウ 🪪️ 5 5 501 -20 -ミブンショウメイショ 🪪️ 5 5 501 -20 -atm 🏧️ 5 5 501 -20 -エーティーエム 🏧️ 5 5 501 -20 -ギンコウ 🏧️ 5 5 501 -20 -ゲンキンジドウアズケバライキ 🏧️ 5 5 501 -20 -クズカゴ 🚮️ 5 5 501 -20 -ゴミステ 🚮️ 5 5 501 -20 -ゴミバコ 🚮️ 5 5 501 -20 -インリョウスイ 🚰️ 5 5 501 -20 -スイドウ 🚰️ 5 5 501 -20 -ノミミズ 🚰️ 5 5 501 -20 -ミズ 🚰️ 5 5 501 -20 -クルマイス ♿️ 5 5 501 -20 -バリアフリー ♿️ 5 5 501 -20 -バリヤフリー ♿️ 5 5 501 -20 -wc 🚹️ 5 5 501 -20 -オテアライ 🚹️ 5 5 501 -20 -ケショウシツ 🚹️ 5 5 501 -20 -ダンシ 🚹️ 5 5 501 -20 -ダンシトイレ 🚹️ 5 5 501 -20 -ダンセイ 🚹️ 5 5 501 -20 -トイレ 🚹️ 5 5 501 -20 -wc 🚺️ 5 5 501 -20 -オテアライ 🚺️ 5 5 501 -20 -ケショウシツ 🚺️ 5 5 501 -20 -ジョシ 🚺️ 5 5 501 -20 -ジョシトイレ 🚺️ 5 5 501 -20 -ジョセイ 🚺️ 5 5 501 -20 -トイレ 🚺️ 5 5 501 -20 -wc 🚻️ 5 5 501 -20 -オテアライ 🚻️ 5 5 501 -20 -ケショウシツ 🚻️ 5 5 501 -20 -ダブリューシー 🚻️ 5 5 501 -20 -トイレ 🚻️ 5 5 501 -20 -アカチャン 🚼️ 5 5 501 -20 -アカンボウ 🚼️ 5 5 501 -20 -ベビー 🚼️ 5 5 501 -20 -ベビーシート 🚼️ 5 5 501 -20 -wc 🚾️ 5 5 501 -20 -オテアライ 🚾️ 5 5 501 -20 -ケショウシツ 🚾️ 5 5 501 -20 -ダブリューシー 🚾️ 5 5 501 -20 -トイレ 🚾️ 5 5 501 -20 -シュツニュウコク 🛂️ 5 5 501 -20 -シュツニュウコクシンサ 🛂️ 5 5 501 -20 -ニュウシュッコク 🛂️ 5 5 501 -20 -パスポートコントロール 🛂️ 5 5 501 -20 -ゼイカン 🛃️ 5 5 501 -20 -ツウカン 🛃️ 5 5 501 -20 -スーツケース 🛄️ 5 5 501 -20 -テニモツ 🛄️ 5 5 501 -20 -テニモツウケトリ 🛄️ 5 5 501 -20 -バゲッジクレーム 🛄️ 5 5 501 -20 -スーツケース 🛅️ 5 5 501 -20 -テニモツ 🛅️ 5 5 501 -20 -テニモツアズカリ 🛅️ 5 5 501 -20 -ロッカー 🛅️ 5 5 501 -20 -キケン ⚠️️ 5 5 501 -20 -ケイコク ⚠️️ 5 5 501 -20 -チュウイ ⚠️️ 5 5 501 -20 -ヒョウシキ ⚠️️ 5 5 501 -20 -コドモ 🚸️ 5 5 501 -20 -ジドウオウダン 🚸️ 5 5 501 -20 -ツウガクロ 🚸️ 5 5 501 -20 -ヒョウシキ 🚸️ 5 5 501 -20 -キセイ ⛔️ 5 5 501 -20 -シャリョウシンニュウキンシ ⛔️ 5 5 501 -20 -タチイリキンシ ⛔️ 5 5 501 -20 -ドウロ ⛔️ 5 5 501 -20 -ヒョウシキ ⛔️ 5 5 501 -20 -キセイ 🚫️ 5 5 501 -20 -キンシ 🚫️ 5 5 501 -20 -シャリョウツウコウドメ 🚫️ 5 5 501 -20 -ドウロ 🚫️ 5 5 501 -20 -ヒョウシキ 🚫️ 5 5 501 -20 -キセイ 🚳️ 5 5 501 -20 -キンシ 🚳️ 5 5 501 -20 -ジテンシャ 🚳️ 5 5 501 -20 -ジテンシャキンシ 🚳️ 5 5 501 -20 -ドウロ 🚳️ 5 5 501 -20 -ヒョウシキ 🚳️ 5 5 501 -20 -キンエン 🚭️ 5 5 501 -20 -キンシ 🚭️ 5 5 501 -20 -タバコ 🚭️ 5 5 501 -20 -キンシ 🚯️ 5 5 501 -20 -ゴミ 🚯️ 5 5 501 -20 -ゴミステキンシ 🚯️ 5 5 501 -20 -ポイステキンシ 🚯️ 5 5 501 -20 -インヨウフカ 🚱️ 5 5 501 -20 -キンシ 🚱️ 5 5 501 -20 -ノメナイミズ 🚱️ 5 5 501 -20 -キセイ 🚷️ 5 5 501 -20 -キンシ 🚷️ 5 5 501 -20 -ドウロ 🚷️ 5 5 501 -20 -ヒョウシキ 🚷️ 5 5 501 -20 -ホコウシャタチイリキンシ 🚷️ 5 5 501 -20 -ケイタイキンシ 📵️ 5 5 501 -20 -ケイタイデンワキンシ 📵️ 5 5 501 -20 -スマホキンシ 📵️ 5 5 501 -20 -スマートフォンキンシ 📵️ 5 5 501 -20 -18キン 🔞️ 5 5 501 -20 -18サイミマンキンシ 🔞️ 5 5 501 -20 -キンシ 🔞️ 5 5 501 -20 -ミセイネン 🔞️ 5 5 501 -20 -キケン ☢️️ 5 5 501 -20 -ホウシャセイ ☢️️ 5 5 501 -20 -ホウシャセン ☢️️ 5 5 501 -20 -ホウシャノウ ☢️️ 5 5 501 -20 -キケン ☣️️ 5 5 501 -20 -バイオハザード ☣️️ 5 5 501 -20 -ユウガイブッシツ ☣️️ 5 5 501 -20 -ウエ ⬆️️ 5 5 501 -20 -ウエヤジルシ ⬆️️ 5 5 501 -20 -キタ ⬆️️ 5 5 501 -20 -ヤジルシ ⬆️️ 5 5 501 -20 -ホクトウ ↗️️ 5 5 501 -20 -ミギウエ ↗️️ 5 5 501 -20 -ミギウエヤジルシ ↗️️ 5 5 501 -20 -ヤジルシ ↗️️ 5 5 501 -20 -ヒガシ ➡️️ 5 5 501 -20 -ミギ ➡️️ 5 5 501 -20 -ミギヤジルシ ➡️️ 5 5 501 -20 -ヤジルシ ➡️️ 5 5 501 -20 -ナントウ ↘️️ 5 5 501 -20 -ミギシタ ↘️️ 5 5 501 -20 -ミギシタヤジルシ ↘️️ 5 5 501 -20 -ヤジルシ ↘️️ 5 5 501 -20 -シタ ⬇️️ 5 5 501 -20 -シタヤジルシ ⬇️️ 5 5 501 -20 -ミナミ ⬇️️ 5 5 501 -20 -ヤジルシ ⬇️️ 5 5 501 -20 -ナンセイ ↙️️ 5 5 501 -20 -ヒダリシタ ↙️️ 5 5 501 -20 -ヒダリシタヤジルシ ↙️️ 5 5 501 -20 -ヤジルシ ↙️️ 5 5 501 -20 -ニシ ⬅️️ 5 5 501 -20 -ヒダリ ⬅️️ 5 5 501 -20 -ヒダリヤジルシ ⬅️️ 5 5 501 -20 -ヤジルシ ⬅️️ 5 5 501 -20 -ヒダリウエ ↖️️ 5 5 501 -20 -ヒダリウエヤジルシ ↖️️ 5 5 501 -20 -ホクセイ ↖️️ 5 5 501 -20 -ヤジルシ ↖️️ 5 5 501 -20 -ジョウゲ ↕️️ 5 5 501 -20 -ジョウゲヤジルシ ↕️️ 5 5 501 -20 -ヤジルシ ↕️️ 5 5 501 -20 -ヤジルシジョウゲ ↕️️ 5 5 501 -20 -サユウ ↔️️ 5 5 501 -20 -サユウヤジルシ ↔️️ 5 5 501 -20 -ヤジルシ ↔️️ 5 5 501 -20 -ヤジルシサユウ ↔️️ 5 5 501 -20 -カーブ ↩️️ 5 5 501 -20 -キョクセン ↩️️ 5 5 501 -20 -ヒダリ ↩️️ 5 5 501 -20 -ミギカーブヤジルシ ↩️️ 5 5 501 -20 -ヤジルシ ↩️️ 5 5 501 -20 -カーブ ↪️️ 5 5 501 -20 -キョクセン ↪️️ 5 5 501 -20 -ヒダリカーブヤジルシ ↪️️ 5 5 501 -20 -ミギ ↪️️ 5 5 501 -20 -ヤジルシ ↪️️ 5 5 501 -20 -ウエ ⤴️️ 5 5 501 -20 -ウエカーブヤジルシ ⤴️️ 5 5 501 -20 -ウエヤジルシ ⤴️️ 5 5 501 -20 -カーブ ⤴️️ 5 5 501 -20 -キョクセン ⤴️️ 5 5 501 -20 -グッド ⤴️️ 5 5 501 -20 -ヤジルシ ⤴️️ 5 5 501 -20 -カーブ ⤵️️ 5 5 501 -20 -キョクセン ⤵️️ 5 5 501 -20 -シタ ⤵️️ 5 5 501 -20 -シタカーブヤジルシ ⤵️️ 5 5 501 -20 -シタヤジルシ ⤵️️ 5 5 501 -20 -バッド ⤵️️ 5 5 501 -20 -ヤジルシ ⤵️️ 5 5 501 -20 -クリカエシ 🔃️ 5 5 501 -20 -サイヨミコミ 🔃️ 5 5 501 -20 -トケイマワリ 🔃️ 5 5 501 -20 -ミギマワリ 🔃️ 5 5 501 -20 -ミギマワリタテヤジルシ 🔃️ 5 5 501 -20 -ヤジルシ 🔃️ 5 5 501 -20 -リロード 🔃️ 5 5 501 -20 -クリカエシ 🔄️ 5 5 501 -20 -ハントケイマワリ 🔄️ 5 5 501 -20 -ヒダリマワリヤジルシ 🔄️ 5 5 501 -20 -ヤジルシ 🔄️ 5 5 501 -20 -リピート 🔄️ 5 5 501 -20 -back 🔙️ 5 5 501 -20 -backヤジルシ 🔙️ 5 5 501 -20 -バック 🔙️ 5 5 501 -20 -バックヤジルシ 🔙️ 5 5 501 -20 -モドル 🔙️ 5 5 501 -20 -ヤジルシ 🔙️ 5 5 501 -20 -end 🔚️ 5 5 501 -20 -endヤジルシ 🔚️ 5 5 501 -20 -エンド 🔚️ 5 5 501 -20 -エンドヤジルシ 🔚️ 5 5 501 -20 -オワリ 🔚️ 5 5 501 -20 -ヤジルシ 🔚️ 5 5 501 -20 -on 🔛️ 5 5 501 -20 -onヤジルシ 🔛️ 5 5 501 -20 -オン 🔛️ 5 5 501 -20 -オンヤジルシ 🔛️ 5 5 501 -20 -ヤジルシ 🔛️ 5 5 501 -20 -soon 🔜️ 5 5 501 -20 -soonヤジルシ 🔜️ 5 5 501 -20 -スグ 🔜️ 5 5 501 -20 -スーン 🔜️ 5 5 501 -20 -スーンヤジルシ 🔜️ 5 5 501 -20 -ヤジルシ 🔜️ 5 5 501 -20 -top 🔝️ 5 5 501 -20 -topヤジルシ 🔝️ 5 5 501 -20 -ウエ 🔝️ 5 5 501 -20 -トップ 🔝️ 5 5 501 -20 -トップヤジルシ 🔝️ 5 5 501 -20 -ヤジルシ 🔝️ 5 5 501 -20 -イノリ 🛐️ 5 5 501 -20 -シュウキョウ 🛐️ 5 5 501 -20 -レイハイジョ 🛐️ 5 5 501 -20 -ゲンシ ⚛️️ 5 5 501 -20 -ゲンシノシンボル ⚛️️ 5 5 501 -20 -ゲンソ ⚛️️ 5 5 501 -20 -ブンシ ⚛️️ 5 5 501 -20 -ムシンロン ⚛️️ 5 5 501 -20 -オーム 🕉️️ 5 5 501 -20 -シュウキョウ 🕉️️ 5 5 501 -20 -ヒンドゥーキョウ 🕉️️ 5 5 501 -20 -シュウキョウ ✡️️ 5 5 501 -20 -ダビデノホシ ✡️️ 5 5 501 -20 -ホシ ✡️️ 5 5 501 -20 -ユダヤキョウ ✡️️ 5 5 501 -20 -シュウキョウ ☸️️ 5 5 501 -20 -テンボウリン ☸️️ 5 5 501 -20 -テンポウリン ☸️️ 5 5 501 -20 -ブッキョウ ☸️️ 5 5 501 -20 -ホウリン ☸️️ 5 5 501 -20 -インヤン ☯️️ 5 5 501 -20 -インヨウ ☯️️ 5 5 501 -20 -シュウキョウ ☯️️ 5 5 501 -20 -ドウキョウ ☯️️ 5 5 501 -20 -キリストキョウ ✝️️ 5 5 501 -20 -クロス ✝️️ 5 5 501 -20 -シュウキョウ ✝️️ 5 5 501 -20 -ジュウジカ ✝️️ 5 5 501 -20 -キリストキョウ ☦️️ 5 5 501 -20 -シュウキョウ ☦️️ 5 5 501 -20 -ジュウジカ ☦️️ 5 5 501 -20 -ハッタンジュウジカ ☦️️ 5 5 501 -20 -イスラムキョウ ☪️️ 5 5 501 -20 -シュウキョウ ☪️️ 5 5 501 -20 -ホシ ☪️️ 5 5 501 -20 -ホシトミカヅキ ☪️️ 5 5 501 -20 -ミカヅキ ☪️️ 5 5 501 -20 -ピースマーク ☮️️ 5 5 501 -20 -ヘイワ ☮️️ 5 5 501 -20 -シュウキョウ 🕎️ 5 5 501 -20 -ショクダイ 🕎️ 5 5 501 -20 -メノラー 🕎️ 5 5 501 -20 -メノーラー 🕎️ 5 5 501 -20 -ユダヤキョウ 🕎️ 5 5 501 -20 -ウラナイ 🔯️ 5 5 501 -20 -ダビデ 🔯️ 5 5 501 -20 -ホシ 🔯️ 5 5 501 -20 -ロクボウセイ 🔯️ 5 5 501 -20 -ロッカクセイ 🔯️ 5 5 501 -20 -オヒツジザ ♈️ 5 5 501 -20 -セイザ ♈️ 5 5 501 -20 -オウシザ ♉️ 5 5 501 -20 -セイザ ♉️ 5 5 501 -20 -セイザ ♊️ 5 5 501 -20 -フタゴザ ♊️ 5 5 501 -20 -カニザ ♋️ 5 5 501 -20 -セイザ ♋️ 5 5 501 -20 -シシザ ♌️ 5 5 501 -20 -セイザ ♌️ 5 5 501 -20 -オトメザ ♍️ 5 5 501 -20 -セイザ ♍️ 5 5 501 -20 -セイザ ♎️ 5 5 501 -20 -テンビンザ ♎️ 5 5 501 -20 -サソリザ ♏️ 5 5 501 -20 -セイザ ♏️ 5 5 501 -20 -イテザ ♐️ 5 5 501 -20 -セイザ ♐️ 5 5 501 -20 -セイザ ♑️ 5 5 501 -20 -ヤギザ ♑️ 5 5 501 -20 -セイザ ♒️ 5 5 501 -20 -ミズガメザ ♒️ 5 5 501 -20 -ウオザ ♓️ 5 5 501 -20 -セイザ ♓️ 5 5 501 -20 -セイザ ⛎️ 5 5 501 -20 -ヘビツカイザ ⛎️ 5 5 501 -20 -ヘビツカザ ⛎️ 5 5 501 -20 -コウサ 🔀️ 5 5 501 -20 -シャッフル 🔀️ 5 5 501 -20 -シャッフルボタン 🔀️ 5 5 501 -20 -ボタン 🔀️ 5 5 501 -20 -ヤジルシ 🔀️ 5 5 501 -20 -クリカエシ 🔁️ 5 5 501 -20 -ゼンキョク 🔁️ 5 5 501 -20 -ボタン 🔁️ 5 5 501 -20 -ヤジルシ 🔁️ 5 5 501 -20 -リピートボタン 🔁️ 5 5 501 -20 -1キョクリピートボタン 🔂️ 5 5 501 -20 -クリカエシ 🔂️ 5 5 501 -20 -ボタン 🔂️ 5 5 501 -20 -ヤジルシ 🔂️ 5 5 501 -20 -リピート 🔂️ 5 5 501 -20 -サイセイ ▶️️ 5 5 501 -20 -サイセイボタン ▶️️ 5 5 501 -20 -ツギヘ ▶️️ 5 5 501 -20 -プレイ ▶️️ 5 5 501 -20 -ボタン ▶️️ 5 5 501 -20 -ミギムキサンカク ▶️️ 5 5 501 -20 -ヤジルシ ▶️️ 5 5 501 -20 -ハヤオクリ ⏩️ 5 5 501 -20 -ハヤオクリボタン ⏩️ 5 5 501 -20 -ボタン ⏩️ 5 5 501 -20 -ミギ ⏩️ 5 5 501 -20 -ヤジルシ ⏩️ 5 5 501 -20 -ツギノキョクボタン ⏭️️ 5 5 501 -20 -ツギノシーン ⏭️️ 5 5 501 -20 -ツギノトラック ⏭️️ 5 5 501 -20 -ボタン ⏭️️ 5 5 501 -20 -ヤジルシ ⏭️️ 5 5 501 -20 -イチジテイシ ⏯️️ 5 5 501 -20 -イチジテイシボタン ⏯️️ 5 5 501 -20 -サイセイ ⏯️️ 5 5 501 -20 -サイセイボタン ⏯️️ 5 5 501 -20 -ボタン ⏯️️ 5 5 501 -20 -ヤジルシ ⏯️️ 5 5 501 -20 -ギャクサイセイ ◀️️ 5 5 501 -20 -ギャクサイセイボタン ◀️️ 5 5 501 -20 -ヒダリムキサンカク ◀️️ 5 5 501 -20 -ボタン ◀️️ 5 5 501 -20 -マキモドシ ◀️️ 5 5 501 -20 -モドル ◀️️ 5 5 501 -20 -ヤジルシ ◀️️ 5 5 501 -20 -ハヤモドシ ⏪️ 5 5 501 -20 -ハヤモドシボタン ⏪️ 5 5 501 -20 -ヒダリ ⏪️ 5 5 501 -20 -マキモドシ ⏪️ 5 5 501 -20 -モドル ⏪️ 5 5 501 -20 -ヤジルシ ⏪️ 5 5 501 -20 -ボタン ⏮️️ 5 5 501 -20 -マエノキョクボタン ⏮️️ 5 5 501 -20 -マエノシーン ⏮️️ 5 5 501 -20 -マエノトラック ⏮️️ 5 5 501 -20 -ヤジルシ ⏮️️ 5 5 501 -20 -ウエ 🔼️ 5 5 501 -20 -ウエボタン 🔼️ 5 5 501 -20 -ウエムキサンカク 🔼️ 5 5 501 -20 -サンカク 🔼️ 5 5 501 -20 -ボタン 🔼️ 5 5 501 -20 -ヤジルシ 🔼️ 5 5 501 -20 -ウエ ⏫️ 5 5 501 -20 -コウソクジョウボタン ⏫️ 5 5 501 -20 -ニジュウ ⏫️ 5 5 501 -20 -ボタン ⏫️ 5 5 501 -20 -ヤジルシ ⏫️ 5 5 501 -20 -サンカク 🔽️ 5 5 501 -20 -シタ 🔽️ 5 5 501 -20 -シタボタン 🔽️ 5 5 501 -20 -シタムキサンカク 🔽️ 5 5 501 -20 -ボタン 🔽️ 5 5 501 -20 -ヤジルシ 🔽️ 5 5 501 -20 -コウソクシタボタン ⏬️ 5 5 501 -20 -シタ ⏬️ 5 5 501 -20 -ニジュウ ⏬️ 5 5 501 -20 -ボタン ⏬️ 5 5 501 -20 -ヤジルシ ⏬️ 5 5 501 -20 -イチジテイシ ⏸️️ 5 5 501 -20 -イチジテイシボタン ⏸️️ 5 5 501 -20 -ボタン ⏸️️ 5 5 501 -20 -ポーズ ⏸️️ 5 5 501 -20 -ストップ ⏹️️ 5 5 501 -20 -テイシ ⏹️️ 5 5 501 -20 -テイシボタン ⏹️️ 5 5 501 -20 -ボタン ⏹️️ 5 5 501 -20 -ボタン ⏺️️ 5 5 501 -20 -ロクオン ⏺️️ 5 5 501 -20 -ロクオンロクガボタン ⏺️️ 5 5 501 -20 -ロクガ ⏺️️ 5 5 501 -20 -イジェクト ⏏️️ 5 5 501 -20 -トリダシ ⏏️️ 5 5 501 -20 -トリダシボタン ⏏️️ 5 5 501 -20 -ボタン ⏏️️ 5 5 501 -20 -エイガ 🎦️ 5 5 501 -20 -エイガカン 🎦️ 5 5 501 -20 -カメラ 🎦️ 5 5 501 -20 -ドウガ 🎦️ 5 5 501 -20 -アカルサ 🔅️ 5 5 501 -20 -キド 🔅️ 5 5 501 -20 -クライ 🔅️ 5 5 501 -20 -テイキド 🔅️ 5 5 501 -20 -ブライトネス 🔅️ 5 5 501 -20 -アカルイ 🔆️ 5 5 501 -20 -アカルサ 🔆️ 5 5 501 -20 -キド 🔆️ 5 5 501 -20 -コウキド 🔆️ 5 5 501 -20 -ブライトネス 🔆️ 5 5 501 -20 -アンテナマーク 📶️ 5 5 501 -20 -ケイタイ 📶️ 5 5 501 -20 -ケイタイデンワ 📶️ 5 5 501 -20 -ケンナイ 📶️ 5 5 501 -20 -スマホ 📶️ 5 5 501 -20 -スマートフォン 📶️ 5 5 501 -20 -デンパ 📶️ 5 5 501 -20 -ケイタイ 📳️ 5 5 501 -20 -ケイタイデンワ 📳️ 5 5 501 -20 -スマホ 📳️ 5 5 501 -20 -スマートフォン 📳️ 5 5 501 -20 -マナーモード 📳️ 5 5 501 -20 -ケイタイ 📴️ 5 5 501 -20 -ケイタイデンワ 📴️ 5 5 501 -20 -ケイタイデンワデンゲンオフ 📴️ 5 5 501 -20 -スマホ 📴️ 5 5 501 -20 -スマートフォン 📴️ 5 5 501 -20 -デンゲンオフ 📴️ 5 5 501 -20 -オンナ ♀️️ 5 5 501 -20 -シンボル ♀️️ 5 5 501 -20 -ジョセイ ♀️️ 5 5 501 -20 -ジョセイノマーク ♀️️ 5 5 501 -20 -オトコ ♂️️ 5 5 501 -20 -シンボル ♂️️ 5 5 501 -20 -ダンセイ ♂️️ 5 5 501 -20 -ダンセイノマーク ♂️️ 5 5 501 -20 -lgbt ⚧️️ 5 5 501 -20 -シンボル ⚧️️ 5 5 501 -20 -セイベツ ⚧️️ 5 5 501 -20 -ティージー ⚧️️ 5 5 501 -20 -トランスジェンダーノマーク ⚧️️ 5 5 501 -20 -カケザン ✖️️ 5 5 501 -20 -カケル ✖️️ 5 5 501 -20 -キゴウ ✖️️ 5 5 501 -20 -キャンセル ✖️️ 5 5 501 -20 -ジョウザン ✖️️ 5 5 501 -20 -バツ ✖️️ 5 5 501 -20 -ペケ ✖️️ 5 5 501 -20 -カサン ➕️ 5 5 501 -20 -キゴウ ➕️ 5 5 501 -20 -タシザン ➕️ 5 5 501 -20 -タス ➕️ 5 5 501 -20 -プラス ➕️ 5 5 501 -20 -キゴウ ➖️ 5 5 501 -20 -ゲンザン ➖️ 5 5 501 -20 -ヒキザン ➖️ 5 5 501 -20 -ヒク ➖️ 5 5 501 -20 -マイナス ➖️ 5 5 501 -20 -ー ➖️ 5 5 501 -20 -キゴウ ➗️ 5 5 501 -20 -ジョサン ➗️ 5 5 501 -20 -ワリザン ➗️ 5 5 501 -20 -ワル ➗️ 5 5 501 -20 -・ ➗️ 5 5 501 -20 -イコール 🟰️ 5 5 501 -20 -スウガク 🟰️ 5 5 501 -20 -トウゴウ 🟰️ 5 5 501 -20 -ヒトシイ 🟰️ 5 5 501 -20 -フトジノトウゴウ 🟰️ 5 5 501 -20 -エイエン ♾️️ 5 5 501 -20 -バンブツ ♾️️ 5 5 501 -20 -ムゲン ♾️️ 5 5 501 -20 -ムゲンダイ ♾️️ 5 5 501 -20 -エクスクラメーションマーク ‼️️ 5 5 501 -20 -キゴウ ‼️️ 5 5 501 -20 -ニジュウカンタンフ ‼️️ 5 5 501 -20 -ビックリマーク ‼️️ 5 5 501 -20 -ヤクモノ ‼️️ 5 5 501 -20 -カンタンフギモンフ ⁉️️ 5 5 501 -20 -キゴウ ⁉️️ 5 5 501 -20 -ハテナマーク ⁉️️ 5 5 501 -20 -ビックリマーク ⁉️️ 5 5 501 -20 -アカイギモンフ ❓️ 5 5 501 -20 -キゴウ ❓️ 5 5 501 -20 -ギモンフ ❓️ 5 5 501 -20 -クエスチョン ❓️ 5 5 501 -20 -クエスチョンマーク ❓️ 5 5 501 -20 -ハテナ ❓️ 5 5 501 -20 -ハテナマーク ❓️ 5 5 501 -20 -ヤクモノ ❓️ 5 5 501 -20 -キゴウ ❔️ 5 5 501 -20 -クエスチョン ❔️ 5 5 501 -20 -クエスチョンマーク ❔️ 5 5 501 -20 -シロイギモンフ ❔️ 5 5 501 -20 -ハテナ ❔️ 5 5 501 -20 -ハテナマーク ❔️ 5 5 501 -20 -ヤクモノ ❔️ 5 5 501 -20 -エクスクラメーションマーク ❕️ 5 5 501 -20 -キゴウ ❕️ 5 5 501 -20 -シロイカンタンフ ❕️ 5 5 501 -20 -ビックリ ❕️ 5 5 501 -20 -ビックリマーク ❕️ 5 5 501 -20 -ヤクモノ ❕️ 5 5 501 -20 -アカイカンタンフ ❗️ 5 5 501 -20 -エクスクラメーションマーク ❗️ 5 5 501 -20 -カンタンフ ❗️ 5 5 501 -20 -キゴウ ❗️ 5 5 501 -20 -ビックリマーク ❗️ 5 5 501 -20 -ヤクモノ ❗️ 5 5 501 -20 -キゴウ 〰️️ 5 5 501 -20 -チョウオンキゴウ 〰️️ 5 5 501 -20 -ナミセン 〰️️ 5 5 501 -20 -ハセン 〰️️ 5 5 501 -20 -ヤクモノ 〰️️ 5 5 501 -20 -ー 〰️️ 5 5 501 -20 -エン 💱️ 5 5 501 -20 -オカネ 💱️ 5 5 501 -20 -ガイカリョウガエ 💱️ 5 5 501 -20 -ツウカ 💱️ 5 5 501 -20 -ドル 💱️ 5 5 501 -20 -リョウガエ 💱️ 5 5 501 -20 -オカネ 💲️ 5 5 501 -20 -ツウカ 💲️ 5 5 501 -20 -ドル 💲️ 5 5 501 -20 -ドルキゴウ 💲️ 5 5 501 -20 -アスクレピオスノツエ ⚕️️ 5 5 501 -20 -イシャ ⚕️️ 5 5 501 -20 -イリョウ ⚕️️ 5 5 501 -20 -イリョウノシンボル ⚕️️ 5 5 501 -20 -チリョウ ⚕️️ 5 5 501 -20 -サイセイ ♻️️ 5 5 501 -20 -サイリヨウ ♻️️ 5 5 501 -20 -ジュンカンヤジルシ ♻️️ 5 5 501 -20 -リサイクル ♻️️ 5 5 501 -20 -リサイクルマーク ♻️️ 5 5 501 -20 -エンブレム ⚜️️ 5 5 501 -20 -フランスオウケ ⚜️️ 5 5 501 -20 -フルールドリス ⚜️️ 5 5 501 -20 -モンショウ ⚜️️ 5 5 501 -20 -ユリ ⚜️️ 5 5 501 -20 -イカリ 🔱️ 5 5 501 -20 -ウミ 🔱️ 5 5 501 -20 -エンブレム 🔱️ 5 5 501 -20 -トライデント 🔱️ 5 5 501 -20 -ミツマタ 🔱️ 5 5 501 -20 -ナフダ 📛️ 5 5 501 -20 -ホイクエン 📛️ 5 5 501 -20 -ホイクショ 📛️ 5 5 501 -20 -ヨウチエン 📛️ 5 5 501 -20 -ショシンシャ 🔰️ 5 5 501 -20 -ショシンシャマーク 🔰️ 5 5 501 -20 -ハツ 🔰️ 5 5 501 -20 -ワカバマーク 🔰️ 5 5 501 -20 -エン ⭕️ 5 5 501 -20 -キゴウ ⭕️ 5 5 501 -20 -フトイマル ⭕️ 5 5 501 -20 -マル ⭕️ 5 5 501 -20 -ワ ⭕️ 5 5 501 -20 -キゴウ ✅️ 5 5 501 -20 -シロヌキノチェック ✅️ 5 5 501 -20 -チェック ✅️ 5 5 501 -20 -チェックマーク ✅️ 5 5 501 -20 -ピン ✅️ 5 5 501 -20 -キゴウ ☑️️ 5 5 501 -20 -チェック ☑️️ 5 5 501 -20 -チェックボックス ☑️️ 5 5 501 -20 -チェックマーク ☑️️ 5 5 501 -20 -キゴウ ✔️️ 5 5 501 -20 -チェック ✔️️ 5 5 501 -20 -チェックマーク ✔️️ 5 5 501 -20 -フトジノチェック ✔️️ 5 5 501 -20 -カケザン ❌️ 5 5 501 -20 -キゴウ ❌️ 5 5 501 -20 -キャンセル ❌️ 5 5 501 -20 -ジョウザン ❌️ 5 5 501 -20 -バツ ❌️ 5 5 501 -20 -ペケ ❌️ 5 5 501 -20 -カケザン ❎️ 5 5 501 -20 -キゴウ ❎️ 5 5 501 -20 -キャンセル ❎️ 5 5 501 -20 -シロヌキノバツ ❎️ 5 5 501 -20 -ジョウザン ❎️ 5 5 501 -20 -バツ ❎️ 5 5 501 -20 -ペケ ❎️ 5 5 501 -20 -キゴウ ➰️ 5 5 501 -20 -チョウオン ➰️ 5 5 501 -20 -ループ ➰️ 5 5 501 -20 -ワッカ ➰️ 5 5 501 -20 -キゴウ ➿️ 5 5 501 -20 -ダブルループ ➿️ 5 5 501 -20 -フリーダイヤル ➿️ 5 5 501 -20 -ループ ➿️ 5 5 501 -20 -ワッカ ➿️ 5 5 501 -20 -アンテン 〽️️ 5 5 501 -20 -イオリテン 〽️️ 5 5 501 -20 -ウタキゴウ 〽️️ 5 5 501 -20 -キゴウ 〽️️ 5 5 501 -20 -ヤクモノ 〽️️ 5 5 501 -20 -アスタリスク ✳️️ 5 5 501 -20 -カザリ ✳️️ 5 5 501 -20 -キゴウ ✳️️ 5 5 501 -20 -ハッカクアスタリスク ✳️️ 5 5 501 -20 -ホシ ✳️️ 5 5 501 -20 -ヤクモノ ✳️️ 5 5 501 -20 -カザリ ✴️️ 5 5 501 -20 -キゴウ ✴️️ 5 5 501 -20 -スパーク ✴️️ 5 5 501 -20 -ハッカクセイ ✴️️ 5 5 501 -20 -ホシ ✴️️ 5 5 501 -20 -ヤクモノ ✴️️ 5 5 501 -20 -アスタリスク ❇️️ 5 5 501 -20 -キゴウ ❇️️ 5 5 501 -20 -スパーク ❇️️ 5 5 501 -20 -スパークル ❇️️ 5 5 501 -20 -ヤクモノ ❇️️ 5 5 501 -20 -cマーク ©️️ 5 5 501 -20 -キゴウ ©️️ 5 5 501 -20 -コピーライト ©️️ 5 5 501 -20 -シーマーク ©️️ 5 5 501 -20 -チョサクケン ©️️ 5 5 501 -20 -チョサクケンマーク ©️️ 5 5 501 -20 -アールマーク ®️️ 5 5 501 -20 -キゴウ ®️️ 5 5 501 -20 -トウロクショウヒョウ ®️️ 5 5 501 -20 -トウロクショウヒョウマーク ®️️ 5 5 501 -20 -tmマーク ™️️ 5 5 501 -20 -キゴウ ™️️ 5 5 501 -20 -ショウヒョウ ™️️ 5 5 501 -20 -ショウヒョウマーク ™️️ 5 5 501 -20 -ティーエムマーク ™️️ 5 5 501 -20 -トレードマーク ™️️ 5 5 501 -20 -カコミスウジ #️⃣️ 5 5 501 -20 -シャープ #️⃣️ 5 5 501 -20 -シャープダイヤル #️⃣️ 5 5 501 -20 -カコミスウジ *️⃣️ 5 5 501 -20 -0 0️⃣️ 5 5 501 -20 -カコミスウジ 0️⃣️ 5 5 501 -20 -1 1️⃣️ 5 5 501 -20 -カコミスウジ 1️⃣️ 5 5 501 -20 -2 2️⃣️ 5 5 501 -20 -カコミスウジ 2️⃣️ 5 5 501 -20 -3 3️⃣️ 5 5 501 -20 -カコミスウジ 3️⃣️ 5 5 501 -20 -4 4️⃣️ 5 5 501 -20 -カコミスウジ 4️⃣️ 5 5 501 -20 -5 5️⃣️ 5 5 501 -20 -カコミスウジ 5️⃣️ 5 5 501 -20 -6 6️⃣️ 5 5 501 -20 -カコミスウジ 6️⃣️ 5 5 501 -20 -7 7️⃣️ 5 5 501 -20 -カコミスウジ 7️⃣️ 5 5 501 -20 -8 8️⃣️ 5 5 501 -20 -カコミスウジ 8️⃣️ 5 5 501 -20 -9 9️⃣️ 5 5 501 -20 -カコミスウジ 9️⃣️ 5 5 501 -20 -10 🔟️ 5 5 501 -20 -カコミスウジ 🔟️ 5 5 501 -20 -abcd 🔠️ 5 5 501 -20 -アルファベット 🔠️ 5 5 501 -20 -エイオオモジノニュウリョク 🔠️ 5 5 501 -20 -エイジ 🔠️ 5 5 501 -20 -エービーシーディ 🔠️ 5 5 501 -20 -オオモジ 🔠️ 5 5 501 -20 -ダイモンジ 🔠️ 5 5 501 -20 -ローマジ 🔠️ 5 5 501 -20 -abcd 🔡️ 5 5 501 -20 -アルファベット 🔡️ 5 5 501 -20 -エイコモジノニュウリョク 🔡️ 5 5 501 -20 -エイジ 🔡️ 5 5 501 -20 -エービーシーディー 🔡️ 5 5 501 -20 -コモジ 🔡️ 5 5 501 -20 -ローマジ 🔡️ 5 5 501 -20 -1234 🔢️ 5 5 501 -20 -スウジ 🔢️ 5 5 501 -20 -スウジノニュウリョク 🔢️ 5 5 501 -20 -ニュウリョク 🔢️ 5 5 501 -20 -キゴウ 🔣️ 5 5 501 -20 -キゴウノニュウリョク 🔣️ 5 5 501 -20 -ニュウリョク 🔣️ 5 5 501 -20 -abc 🔤️ 5 5 501 -20 -アルファベット 🔤️ 5 5 501 -20 -エイゴ 🔤️ 5 5 501 -20 -エイジ 🔤️ 5 5 501 -20 -エイジノニュウリョク 🔤️ 5 5 501 -20 -エイビーシー 🔤️ 5 5 501 -20 -エービーシー 🔤️ 5 5 501 -20 -ローマジ 🔤️ 5 5 501 -20 -a 🅰️️ 5 5 501 -20 -エイガタ 🅰️️ 5 5 501 -20 -エーガタ 🅰️️ 5 5 501 -20 -ケツエキガタ 🅰️️ 5 5 501 -20 -ケツエキガタエイガタ 🅰️️ 5 5 501 -20 -ケツエキガタエーガタ 🅰️️ 5 5 501 -20 -ab 🆎️ 5 5 501 -20 -エイビーガタ 🆎️ 5 5 501 -20 -エービーガタ 🆎️ 5 5 501 -20 -ケツエキガタ 🆎️ 5 5 501 -20 -ケツエキガタエイビーガタ 🆎️ 5 5 501 -20 -ケツエキガタエービーガタ 🆎️ 5 5 501 -20 -b 🅱️️ 5 5 501 -20 -ケツエキガタ 🅱️️ 5 5 501 -20 -ケツエキガタビーガタ 🅱️️ 5 5 501 -20 -ビーガタ 🅱️️ 5 5 501 -20 -cl 🆑️ 5 5 501 -20 -clマーク 🆑️ 5 5 501 -20 -クリア 🆑️ 5 5 501 -20 -シーエル 🆑️ 5 5 501 -20 -シーエルマーク 🆑️ 5 5 501 -20 -cool 🆒️ 5 5 501 -20 -coolマーク 🆒️ 5 5 501 -20 -クール 🆒️ 5 5 501 -20 -クールマーク 🆒️ 5 5 501 -20 -freeマーク 🆓️ 5 5 501 -20 -タダ 🆓️ 5 5 501 -20 -フリー 🆓️ 5 5 501 -20 -フリーマーク 🆓️ 5 5 501 -20 -ムリョウ 🆓️ 5 5 501 -20 -i ℹ️️ 5 5 501 -20 -iマーク ℹ️️ 5 5 501 -20 -アイ ℹ️️ 5 5 501 -20 -アイマーク ℹ️️ 5 5 501 -20 -インフォメーション ℹ️️ 5 5 501 -20 -インフォメーションシンボル ℹ️️ 5 5 501 -20 -ジョウホウ ℹ️️ 5 5 501 -20 -id 🆔️ 5 5 501 -20 -idマーク 🆔️ 5 5 501 -20 -アイディー 🆔️ 5 5 501 -20 -アイディーマーク 🆔️ 5 5 501 -20 -m Ⓜ️️ 5 5 501 -20 -エム Ⓜ️️ 5 5 501 -20 -チカテツ Ⓜ️️ 5 5 501 -20 -マル Ⓜ️️ 5 5 501 -20 -マルイエムマーク Ⓜ️️ 5 5 501 -20 -new 🆕️ 5 5 501 -20 -newマーク 🆕️ 5 5 501 -20 -アタラシイ 🆕️ 5 5 501 -20 -ニュー 🆕️ 5 5 501 -20 -ニューマーク 🆕️ 5 5 501 -20 -ng 🆖️ 5 5 501 -20 -ngマーク 🆖️ 5 5 501 -20 -エヌジー 🆖️ 5 5 501 -20 -エヌジーマーク 🆖️ 5 5 501 -20 -ボツ 🆖️ 5 5 501 -20 -o 🅾️️ 5 5 501 -20 -オーガタ 🅾️️ 5 5 501 -20 -ケツエキガタ 🅾️️ 5 5 501 -20 -ケツエキガタオーガタ 🅾️️ 5 5 501 -20 -ok 🆗️ 5 5 501 -20 -okマーク 🆗️ 5 5 501 -20 -オッケー 🆗️ 5 5 501 -20 -オーケー 🆗️ 5 5 501 -20 -オーケーマーク 🆗️ 5 5 501 -20 -p 🅿️️ 5 5 501 -20 -チュウシャ 🅿️️ 5 5 501 -20 -チュウシャジョウ 🅿️️ 5 5 501 -20 -パーキング 🅿️️ 5 5 501 -20 -ピー 🅿️️ 5 5 501 -20 -ピーマーク 🅿️️ 5 5 501 -20 -sos 🆘️ 5 5 501 -20 -sosマーク 🆘️ 5 5 501 -20 -エスオーエス 🆘️ 5 5 501 -20 -エスオーエスマーク 🆘️ 5 5 501 -20 -タスケテ 🆘️ 5 5 501 -20 -up 🆙️ 5 5 501 -20 -upマーク 🆙️ 5 5 501 -20 -アップ 🆙️ 5 5 501 -20 -アップマーク 🆙️ 5 5 501 -20 -コウシン 🆙️ 5 5 501 -20 -vs 🆚️ 5 5 501 -20 -vsマーク 🆚️ 5 5 501 -20 -バーサス 🆚️ 5 5 501 -20 -バーサスマーク 🆚️ 5 5 501 -20 -ブイエス 🆚️ 5 5 501 -20 -ブイエスマーク 🆚️ 5 5 501 -20 -ヴァーサス 🆚️ 5 5 501 -20 -ヴィエス 🆚️ 5 5 501 -20 -ココ 🈁️ 5 5 501 -20 -ココノマーク 🈁️ 5 5 501 -20 -サ 🈂️️ 5 5 501 -20 -サノマーク 🈂️️ 5 5 501 -20 -サービス 🈂️️ 5 5 501 -20 -サービスリョウ 🈂️️ 5 5 501 -20 -ゲツガク 🈷️️ 5 5 501 -20 -ツキ 🈷️️ 5 5 501 -20 -ツキギメ 🈷️️ 5 5 501 -20 -ツキマーク 🈷️️ 5 5 501 -20 -ユウ 🈶️ 5 5 501 -20 -ユウゲン 🈶️ 5 5 501 -20 -ユウマーク 🈶️ 5 5 501 -20 -ユウリョウ 🈶️ 5 5 501 -20 -シテイ 🈯️ 5 5 501 -20 -シテイセキ 🈯️ 5 5 501 -20 -ユビ 🈯️ 5 5 501 -20 -ユビマーク 🈯️ 5 5 501 -20 -オトク 🉐️ 5 5 501 -20 -トク 🉐️ 5 5 501 -20 -マルトク 🉐️ 5 5 501 -20 -ディスカウント 🈹️ 5 5 501 -20 -ワリ 🈹️ 5 5 501 -20 -ワリビキ 🈹️ 5 5 501 -20 -ワリマーク 🈹️ 5 5 501 -20 -タダ 🈚️ 5 5 501 -20 -ム 🈚️ 5 5 501 -20 -ムマーク 🈚️ 5 5 501 -20 -ムリョウ 🈚️ 5 5 501 -20 -キン 🈲️ 5 5 501 -20 -キンシ 🈲️ 5 5 501 -20 -キンマーク 🈲️ 5 5 501 -20 -ゲンキン 🈲️ 5 5 501 -20 -カ 🉑️ 5 5 501 -20 -カノウ 🉑️ 5 5 501 -20 -カマーク 🉑️ 5 5 501 -20 -キョカ 🉑️ 5 5 501 -20 -シン 🈸️ 5 5 501 -20 -シンセイ 🈸️ 5 5 501 -20 -シンマーク 🈸️ 5 5 501 -20 -モウシコミ 🈸️ 5 5 501 -20 -モウシコミマーク 🈸️ 5 5 501 -20 -ゴウ 🈴️ 5 5 501 -20 -ゴウカク 🈴️ 5 5 501 -20 -ゴウマーク 🈴️ 5 5 501 -20 -アキ 🈳️ 5 5 501 -20 -アキマーク 🈳️ 5 5 501 -20 -カラ 🈳️ 5 5 501 -20 -クウ 🈳️ 5 5 501 -20 -クウシツ 🈳️ 5 5 501 -20 -クウセキ 🈳️ 5 5 501 -20 -ソラ 🈳️ 5 5 501 -20 -ソラマーク 🈳️ 5 5 501 -20 -イワイ ㊗️️ 5 5 501 -20 -イワイマーク ㊗️️ 5 5 501 -20 -オイワイ ㊗️️ 5 5 501 -20 -オメデトウ ㊗️️ 5 5 501 -20 -シュク ㊗️️ 5 5 501 -20 -シュクマーク ㊗️️ 5 5 501 -20 -ゴクヒ ㊙️️ 5 5 501 -20 -シャガイヒ ㊙️️ 5 5 501 -20 -ヒ ㊙️️ 5 5 501 -20 -ヒミツ ㊙️️ 5 5 501 -20 -マルヒ ㊙️️ 5 5 501 -20 -エイ 🈺️ 5 5 501 -20 -エイギョウ 🈺️ 5 5 501 -20 -エイギョウチュウ 🈺️ 5 5 501 -20 -エイギョウビ 🈺️ 5 5 501 -20 -エイマーク 🈺️ 5 5 501 -20 -マン 🈵️ 5 5 501 -20 -マンイン 🈵️ 5 5 501 -20 -マンシツ 🈵️ 5 5 501 -20 -マンシャ 🈵️ 5 5 501 -20 -マンセキ 🈵️ 5 5 501 -20 -マンマーク 🈵️ 5 5 501 -20 -アカ 🔴️ 5 5 501 -20 -アカイマル 🔴️ 5 5 501 -20 -オオキイマル 🔴️ 5 5 501 -20 -オオマル 🔴️ 5 5 501 -20 -マル 🔴️ 5 5 501 -20 -マルイボタン 🔴️ 5 5 501 -20 -オレンジ 🟠️ 5 5 501 -20 -オレンジノマル 🟠️ 5 5 501 -20 -マル 🟠️ 5 5 501 -20 -マルイボタン 🟠️ 5 5 501 -20 -キイロ 🟡️ 5 5 501 -20 -キイロイマル 🟡️ 5 5 501 -20 -マル 🟡️ 5 5 501 -20 -マルイボタン 🟡️ 5 5 501 -20 -マル 🟢️ 5 5 501 -20 -マルイボタン 🟢️ 5 5 501 -20 -ミドリ 🟢️ 5 5 501 -20 -ミドリノマル 🟢️ 5 5 501 -20 -アオ 🔵️ 5 5 501 -20 -アオイマル 🔵️ 5 5 501 -20 -オオキイマル 🔵️ 5 5 501 -20 -オオマル 🔵️ 5 5 501 -20 -マル 🔵️ 5 5 501 -20 -マルイボタン 🔵️ 5 5 501 -20 -マル 🟣️ 5 5 501 -20 -マルイボタン 🟣️ 5 5 501 -20 -ムラサキ 🟣️ 5 5 501 -20 -ムラサキノマル 🟣️ 5 5 501 -20 -チャイロ 🟤️ 5 5 501 -20 -チャイロノマル 🟤️ 5 5 501 -20 -マル 🟤️ 5 5 501 -20 -マルイボタン 🟤️ 5 5 501 -20 -クロ ⚫️ 5 5 501 -20 -クロイマル ⚫️ 5 5 501 -20 -マル ⚫️ 5 5 501 -20 -マルイボタン ⚫️ 5 5 501 -20 -シロ ⚪️ 5 5 501 -20 -シロイマル ⚪️ 5 5 501 -20 -マル ⚪️ 5 5 501 -20 -マルイボタン ⚪️ 5 5 501 -20 -アカ 🟥️ 5 5 501 -20 -アカイシカク 🟥️ 5 5 501 -20 -シカク 🟥️ 5 5 501 -20 -セイホウケイ 🟥️ 5 5 501 -20 -オレンジ 🟧️ 5 5 501 -20 -オレンジノシカク 🟧️ 5 5 501 -20 -シカク 🟧️ 5 5 501 -20 -セイホウケイ 🟧️ 5 5 501 -20 -キイロ 🟨️ 5 5 501 -20 -キイロイシカク 🟨️ 5 5 501 -20 -シカク 🟨️ 5 5 501 -20 -セイホウケイ 🟨️ 5 5 501 -20 -シカク 🟩️ 5 5 501 -20 -セイホウケイ 🟩️ 5 5 501 -20 -ミドリ 🟩️ 5 5 501 -20 -ミドリノシカク 🟩️ 5 5 501 -20 -アオ 🟦️ 5 5 501 -20 -アオイシカク 🟦️ 5 5 501 -20 -シカク 🟦️ 5 5 501 -20 -セイホウケイ 🟦️ 5 5 501 -20 -シカク 🟪️ 5 5 501 -20 -セイホウケイ 🟪️ 5 5 501 -20 -ムラサキ 🟪️ 5 5 501 -20 -ムラサキノシカク 🟪️ 5 5 501 -20 -シカク 🟫️ 5 5 501 -20 -セイホウケイ 🟫️ 5 5 501 -20 -チャイロ 🟫️ 5 5 501 -20 -チャイロイシカク 🟫️ 5 5 501 -20 -クロ ⬛️ 5 5 501 -20 -クロシカクトクダイ ⬛️ 5 5 501 -20 -シカク ⬛️ 5 5 501 -20 -セイホウケイ ⬛️ 5 5 501 -20 -シカク ⬜️ 5 5 501 -20 -シロ ⬜️ 5 5 501 -20 -シロシカクトクダイ ⬜️ 5 5 501 -20 -セイホウケイ ⬜️ 5 5 501 -20 -クロ ◼️️ 5 5 501 -20 -クロシカクダイ ◼️️ 5 5 501 -20 -シカク ◼️️ 5 5 501 -20 -セイホウケイ ◼️️ 5 5 501 -20 -シカク ◻️️ 5 5 501 -20 -シロ ◻️️ 5 5 501 -20 -シロシカクダイ ◻️️ 5 5 501 -20 -セイホウケイ ◻️️ 5 5 501 -20 -クロ ◾️ 5 5 501 -20 -クロシカクチュウ ◾️ 5 5 501 -20 -シカク ◾️ 5 5 501 -20 -セイホウケイ ◾️ 5 5 501 -20 -シカク ◽️ 5 5 501 -20 -シロ ◽️ 5 5 501 -20 -シロシカクチュウ ◽️ 5 5 501 -20 -セイホウケイ ◽️ 5 5 501 -20 -クロ ▪️️ 5 5 501 -20 -クロシカクショウ ▪️️ 5 5 501 -20 -シカク ▪️️ 5 5 501 -20 -セイホウケイ ▪️️ 5 5 501 -20 -シカク ▫️️ 5 5 501 -20 -シロ ▫️️ 5 5 501 -20 -シロシカクショウ ▫️️ 5 5 501 -20 -セイホウケイ ▫️️ 5 5 501 -20 -オオキイオレンジノヒシガタ 🔶️ 5 5 501 -20 -オオキイヒシガタ 🔶️ 5 5 501 -20 -オレンジ 🔶️ 5 5 501 -20 -シカク 🔶️ 5 5 501 -20 -ダイア 🔶️ 5 5 501 -20 -ダイヤ 🔶️ 5 5 501 -20 -ヒシガタ 🔶️ 5 5 501 -20 -アオ 🔷️ 5 5 501 -20 -オオキイアオノヒシガタ 🔷️ 5 5 501 -20 -オオキイヒシガタ 🔷️ 5 5 501 -20 -シカク 🔷️ 5 5 501 -20 -ダイア 🔷️ 5 5 501 -20 -ダイヤ 🔷️ 5 5 501 -20 -ヒシガタ 🔷️ 5 5 501 -20 -オレンジ 🔸️ 5 5 501 -20 -シカク 🔸️ 5 5 501 -20 -ダイア 🔸️ 5 5 501 -20 -ダイヤ 🔸️ 5 5 501 -20 -チイサイオレンジノヒシガタ 🔸️ 5 5 501 -20 -チイサイヒシガタ 🔸️ 5 5 501 -20 -ヒシガタ 🔸️ 5 5 501 -20 -アオ 🔹️ 5 5 501 -20 -シカク 🔹️ 5 5 501 -20 -ダイア 🔹️ 5 5 501 -20 -ダイヤ 🔹️ 5 5 501 -20 -チイサイアオノヒシガタ 🔹️ 5 5 501 -20 -チイサイヒシガタ 🔹️ 5 5 501 -20 -ヒシガタ 🔹️ 5 5 501 -20 -アカ 🔺️ 5 5 501 -20 -アカイウエサンカク 🔺️ 5 5 501 -20 -ウエ 🔺️ 5 5 501 -20 -ウエムキサンカク 🔺️ 5 5 501 -20 -サンカク 🔺️ 5 5 501 -20 -アカ 🔻️ 5 5 501 -20 -アカイシタサンカク 🔻️ 5 5 501 -20 -サンカク 🔻️ 5 5 501 -20 -シタ 🔻️ 5 5 501 -20 -シタムキサンカク 🔻️ 5 5 501 -20 -カワイイ 💠️ 5 5 501 -20 -ダイア 💠️ 5 5 501 -20 -ダイヤ 💠️ 5 5 501 -20 -ドットツキヒシガタ 💠️ 5 5 501 -20 -ヒシガタ 💠️ 5 5 501 -20 -ニジュウマル 🔘️ 5 5 501 -20 -ボタン 🔘️ 5 5 501 -20 -ラジオボタン 🔘️ 5 5 501 -20 -シカク 🔳️ 5 5 501 -20 -シカクボタン 🔳️ 5 5 501 -20 -シロワクシカク 🔳️ 5 5 501 -20 -セイホウケイ 🔳️ 5 5 501 -20 -ボタン 🔳️ 5 5 501 -20 -クロワクシカク 🔲️ 5 5 501 -20 -シカク 🔲️ 5 5 501 -20 -シカクボタン 🔲️ 5 5 501 -20 -セイホウケイ 🔲️ 5 5 501 -20 -ボタン 🔲️ 5 5 501 -20 -スポーツ 🏁️ 5 5 501 -20 -チェッカー 🏁️ 5 5 501 -20 -チェッカーフラグ 🏁️ 5 5 501 -20 -チェッカーフラッグ 🏁️ 5 5 501 -20 -ハタ 🏁️ 5 5 501 -20 -フラグ 🏁️ 5 5 501 -20 -フラッグ 🏁️ 5 5 501 -20 -レース 🏁️ 5 5 501 -20 -ゴルフ 🚩️ 5 5 501 -20 -サンカクノハタ 🚩️ 5 5 501 -20 -スポーツ 🚩️ 5 5 501 -20 -ハタ 🚩️ 5 5 501 -20 -フラグ 🚩️ 5 5 501 -20 -フラッグ 🚩️ 5 5 501 -20 -シュクジツ 🎌️ 5 5 501 -20 -シュクジツノハタ 🎌️ 5 5 501 -20 -ハタ 🎌️ 5 5 501 -20 -ヒノマル 🎌️ 5 5 501 -20 -フラグ 🎌️ 5 5 501 -20 -フラッグ 🎌️ 5 5 501 -20 -クロ 🏴️ 5 5 501 -20 -クロハタ 🏴️ 5 5 501 -20 -コッキ 🏴️ 5 5 501 -20 -ハタ 🏴️ 5 5 501 -20 -フラグ 🏴️ 5 5 501 -20 -フラッグ 🏴️ 5 5 501 -20 -シラハタ 🏳️️ 5 5 501 -20 -シロ 🏳️️ 5 5 501 -20 -シロハタ 🏳️️ 5 5 501 -20 -ハタ 🏳️️ 5 5 501 -20 -ハッキ 🏳️️ 5 5 501 -20 -フラグ 🏳️️ 5 5 501 -20 -フラッグ 🏳️️ 5 5 501 -20 -lgbt 🏳️‍🌈️ 5 5 501 -20 -ニジイロノハタ 🏳️‍🌈️ 5 5 501 -20 -ハタ 🏳️‍🌈️ 5 5 501 -20 -フラグ 🏳️‍🌈️ 5 5 501 -20 -フラッグ 🏳️‍🌈️ 5 5 501 -20 -レインボー 🏳️‍🌈️ 5 5 501 -20 -レインボーフラッグ 🏳️‍🌈️ 5 5 501 -20 -lgbt 🏳️‍⚧️️ 5 5 501 -20 -ティージー 🏳️‍⚧️️ 5 5 501 -20 -トランスジェンダー 🏳️‍⚧️️ 5 5 501 -20 -トランスジェンダーフラッグ 🏳️‍⚧️️ 5 5 501 -20 -ハタ 🏳️‍⚧️️ 5 5 501 -20 -フラグ 🏳️‍⚧️️ 5 5 501 -20 -フラッグ 🏳️‍⚧️️ 5 5 501 -20 -カイゾク 🏴‍☠️️ 5 5 501 -20 -カイゾクキ 🏴‍☠️️ 5 5 501 -20 -ジョリーロジャー 🏴‍☠️️ 5 5 501 -20 -タカラモノ 🏴‍☠️️ 5 5 501 -20 -ホウモツ 🏴‍☠️️ 5 5 501 -20 -リャクダツ 🏴‍☠️️ 5 5 501 -20 -アセンショントウ 🇦🇨️ 5 5 501 -20 -コッキ 🇦🇨️ 5 5 501 -20 -ハタ 🇦🇨️ 5 5 501 -20 -フラグ 🇦🇨️ 5 5 501 -20 -フラッグ 🇦🇨️ 5 5 501 -20 -アンドラ 🇦🇩️ 5 5 501 -20 -コッキ 🇦🇩️ 5 5 501 -20 -ハタ 🇦🇩️ 5 5 501 -20 -フラグ 🇦🇩️ 5 5 501 -20 -フラッグ 🇦🇩️ 5 5 501 -20 -アラブ 🇦🇪️ 5 5 501 -20 -アラブシュチョウコクレンポウ 🇦🇪️ 5 5 501 -20 -コッキ 🇦🇪️ 5 5 501 -20 -ハタ 🇦🇪️ 5 5 501 -20 -フラグ 🇦🇪️ 5 5 501 -20 -フラッグ 🇦🇪️ 5 5 501 -20 -アフガニスタン 🇦🇫️ 5 5 501 -20 -コッキ 🇦🇫️ 5 5 501 -20 -ハタ 🇦🇫️ 5 5 501 -20 -フラグ 🇦🇫️ 5 5 501 -20 -フラッグ 🇦🇫️ 5 5 501 -20 -アンティグアバーブーダ 🇦🇬️ 5 5 501 -20 -アンティグア・バーブーダ 🇦🇬️ 5 5 501 -20 -コッキ 🇦🇬️ 5 5 501 -20 -ハタ 🇦🇬️ 5 5 501 -20 -フラグ 🇦🇬️ 5 5 501 -20 -フラッグ 🇦🇬️ 5 5 501 -20 -アンギラ 🇦🇮️ 5 5 501 -20 -コッキ 🇦🇮️ 5 5 501 -20 -ハタ 🇦🇮️ 5 5 501 -20 -フラグ 🇦🇮️ 5 5 501 -20 -フラッグ 🇦🇮️ 5 5 501 -20 -アルバニア 🇦🇱️ 5 5 501 -20 -コッキ 🇦🇱️ 5 5 501 -20 -ハタ 🇦🇱️ 5 5 501 -20 -フラグ 🇦🇱️ 5 5 501 -20 -フラッグ 🇦🇱️ 5 5 501 -20 -アルメニア 🇦🇲️ 5 5 501 -20 -コッキ 🇦🇲️ 5 5 501 -20 -ハタ 🇦🇲️ 5 5 501 -20 -フラグ 🇦🇲️ 5 5 501 -20 -フラッグ 🇦🇲️ 5 5 501 -20 -アンゴラ 🇦🇴️ 5 5 501 -20 -コッキ 🇦🇴️ 5 5 501 -20 -ハタ 🇦🇴️ 5 5 501 -20 -フラグ 🇦🇴️ 5 5 501 -20 -フラッグ 🇦🇴️ 5 5 501 -20 -コッキ 🇦🇶️ 5 5 501 -20 -ナンキョク 🇦🇶️ 5 5 501 -20 -ナンキョクタイリク 🇦🇶️ 5 5 501 -20 -ハタ 🇦🇶️ 5 5 501 -20 -フラグ 🇦🇶️ 5 5 501 -20 -フラッグ 🇦🇶️ 5 5 501 -20 -アルゼンチン 🇦🇷️ 5 5 501 -20 -コッキ 🇦🇷️ 5 5 501 -20 -ハタ 🇦🇷️ 5 5 501 -20 -フラグ 🇦🇷️ 5 5 501 -20 -フラッグ 🇦🇷️ 5 5 501 -20 -アメリカリョウサモア 🇦🇸️ 5 5 501 -20 -コッキ 🇦🇸️ 5 5 501 -20 -ハタ 🇦🇸️ 5 5 501 -20 -フラグ 🇦🇸️ 5 5 501 -20 -フラッグ 🇦🇸️ 5 5 501 -20 -ベイリョウサモア 🇦🇸️ 5 5 501 -20 -オーストリア 🇦🇹️ 5 5 501 -20 -コッキ 🇦🇹️ 5 5 501 -20 -ハタ 🇦🇹️ 5 5 501 -20 -フラグ 🇦🇹️ 5 5 501 -20 -フラッグ 🇦🇹️ 5 5 501 -20 -オーストラリア 🇦🇺️ 5 5 501 -20 -コッキ 🇦🇺️ 5 5 501 -20 -ハタ 🇦🇺️ 5 5 501 -20 -フラグ 🇦🇺️ 5 5 501 -20 -フラッグ 🇦🇺️ 5 5 501 -20 -アルバ 🇦🇼️ 5 5 501 -20 -コッキ 🇦🇼️ 5 5 501 -20 -ハタ 🇦🇼️ 5 5 501 -20 -フラグ 🇦🇼️ 5 5 501 -20 -フラッグ 🇦🇼️ 5 5 501 -20 -オーランドショトウ 🇦🇽️ 5 5 501 -20 -コッキ 🇦🇽️ 5 5 501 -20 -ハタ 🇦🇽️ 5 5 501 -20 -フラグ 🇦🇽️ 5 5 501 -20 -フラッグ 🇦🇽️ 5 5 501 -20 -アゼルバイジャン 🇦🇿️ 5 5 501 -20 -コッキ 🇦🇿️ 5 5 501 -20 -ハタ 🇦🇿️ 5 5 501 -20 -フラグ 🇦🇿️ 5 5 501 -20 -フラッグ 🇦🇿️ 5 5 501 -20 -コッキ 🇧🇦️ 5 5 501 -20 -ハタ 🇧🇦️ 5 5 501 -20 -フラグ 🇧🇦️ 5 5 501 -20 -フラッグ 🇧🇦️ 5 5 501 -20 -ボスニアヘルツェゴビナ 🇧🇦️ 5 5 501 -20 -ボスニア・ヘルツェゴビナ 🇧🇦️ 5 5 501 -20 -コッキ 🇧🇧️ 5 5 501 -20 -ハタ 🇧🇧️ 5 5 501 -20 -バルバドス 🇧🇧️ 5 5 501 -20 -フラグ 🇧🇧️ 5 5 501 -20 -フラッグ 🇧🇧️ 5 5 501 -20 -コッキ 🇧🇩️ 5 5 501 -20 -ハタ 🇧🇩️ 5 5 501 -20 -バングラデシュ 🇧🇩️ 5 5 501 -20 -フラグ 🇧🇩️ 5 5 501 -20 -フラッグ 🇧🇩️ 5 5 501 -20 -コッキ 🇧🇪️ 5 5 501 -20 -ハタ 🇧🇪️ 5 5 501 -20 -フラグ 🇧🇪️ 5 5 501 -20 -フラッグ 🇧🇪️ 5 5 501 -20 -ベルギー 🇧🇪️ 5 5 501 -20 -コッキ 🇧🇫️ 5 5 501 -20 -ハタ 🇧🇫️ 5 5 501 -20 -フラグ 🇧🇫️ 5 5 501 -20 -フラッグ 🇧🇫️ 5 5 501 -20 -ブルキナファソ 🇧🇫️ 5 5 501 -20 -コッキ 🇧🇬️ 5 5 501 -20 -ハタ 🇧🇬️ 5 5 501 -20 -フラグ 🇧🇬️ 5 5 501 -20 -フラッグ 🇧🇬️ 5 5 501 -20 -ブルガリア 🇧🇬️ 5 5 501 -20 -コッキ 🇧🇭️ 5 5 501 -20 -ハタ 🇧🇭️ 5 5 501 -20 -バーレーン 🇧🇭️ 5 5 501 -20 -フラグ 🇧🇭️ 5 5 501 -20 -フラッグ 🇧🇭️ 5 5 501 -20 -コッキ 🇧🇮️ 5 5 501 -20 -ハタ 🇧🇮️ 5 5 501 -20 -フラグ 🇧🇮️ 5 5 501 -20 -フラッグ 🇧🇮️ 5 5 501 -20 -ブルンジ 🇧🇮️ 5 5 501 -20 -コッキ 🇧🇯️ 5 5 501 -20 -ハタ 🇧🇯️ 5 5 501 -20 -フラグ 🇧🇯️ 5 5 501 -20 -フラッグ 🇧🇯️ 5 5 501 -20 -ベナン 🇧🇯️ 5 5 501 -20 -コッキ 🇧🇱️ 5 5 501 -20 -サンバルテルミー 🇧🇱️ 5 5 501 -20 -サン・バルテルミー 🇧🇱️ 5 5 501 -20 -ハタ 🇧🇱️ 5 5 501 -20 -フラグ 🇧🇱️ 5 5 501 -20 -フラッグ 🇧🇱️ 5 5 501 -20 -コッキ 🇧🇲️ 5 5 501 -20 -ハタ 🇧🇲️ 5 5 501 -20 -バミューダ 🇧🇲️ 5 5 501 -20 -フラグ 🇧🇲️ 5 5 501 -20 -フラッグ 🇧🇲️ 5 5 501 -20 -コッキ 🇧🇳️ 5 5 501 -20 -ハタ 🇧🇳️ 5 5 501 -20 -フラグ 🇧🇳️ 5 5 501 -20 -フラッグ 🇧🇳️ 5 5 501 -20 -ブルネイ 🇧🇳️ 5 5 501 -20 -コッキ 🇧🇴️ 5 5 501 -20 -ハタ 🇧🇴️ 5 5 501 -20 -フラグ 🇧🇴️ 5 5 501 -20 -フラッグ 🇧🇴️ 5 5 501 -20 -ボリビア 🇧🇴️ 5 5 501 -20 -オランダリョウカリブ 🇧🇶️ 5 5 501 -20 -コッキ 🇧🇶️ 5 5 501 -20 -ハタ 🇧🇶️ 5 5 501 -20 -フラグ 🇧🇶️ 5 5 501 -20 -フラッグ 🇧🇶️ 5 5 501 -20 -コッキ 🇧🇷️ 5 5 501 -20 -ハタ 🇧🇷️ 5 5 501 -20 -フラグ 🇧🇷️ 5 5 501 -20 -フラッグ 🇧🇷️ 5 5 501 -20 -ブラジル 🇧🇷️ 5 5 501 -20 -コッキ 🇧🇸️ 5 5 501 -20 -ハタ 🇧🇸️ 5 5 501 -20 -バハマ 🇧🇸️ 5 5 501 -20 -フラグ 🇧🇸️ 5 5 501 -20 -フラッグ 🇧🇸️ 5 5 501 -20 -コッキ 🇧🇹️ 5 5 501 -20 -ハタ 🇧🇹️ 5 5 501 -20 -フラグ 🇧🇹️ 5 5 501 -20 -フラッグ 🇧🇹️ 5 5 501 -20 -ブータン 🇧🇹️ 5 5 501 -20 -コッキ 🇧🇻️ 5 5 501 -20 -ハタ 🇧🇻️ 5 5 501 -20 -フラグ 🇧🇻️ 5 5 501 -20 -フラッグ 🇧🇻️ 5 5 501 -20 -ブーベトウ 🇧🇻️ 5 5 501 -20 -コッキ 🇧🇼️ 5 5 501 -20 -ハタ 🇧🇼️ 5 5 501 -20 -フラグ 🇧🇼️ 5 5 501 -20 -フラッグ 🇧🇼️ 5 5 501 -20 -ボツワナ 🇧🇼️ 5 5 501 -20 -コッキ 🇧🇾️ 5 5 501 -20 -ハタ 🇧🇾️ 5 5 501 -20 -フラグ 🇧🇾️ 5 5 501 -20 -フラッグ 🇧🇾️ 5 5 501 -20 -ベラルーシ 🇧🇾️ 5 5 501 -20 -コッキ 🇧🇿️ 5 5 501 -20 -ハタ 🇧🇿️ 5 5 501 -20 -フラグ 🇧🇿️ 5 5 501 -20 -フラッグ 🇧🇿️ 5 5 501 -20 -ベリーズ 🇧🇿️ 5 5 501 -20 -カナダ 🇨🇦️ 5 5 501 -20 -コッキ 🇨🇦️ 5 5 501 -20 -ハタ 🇨🇦️ 5 5 501 -20 -フラグ 🇨🇦️ 5 5 501 -20 -フラッグ 🇨🇦️ 5 5 501 -20 -キーリングショトウ 🇨🇨️ 5 5 501 -20 -ココスショトウ 🇨🇨️ 5 5 501 -20 -コッキ 🇨🇨️ 5 5 501 -20 -ハタ 🇨🇨️ 5 5 501 -20 -フラグ 🇨🇨️ 5 5 501 -20 -フラッグ 🇨🇨️ 5 5 501 -20 -キンシャサ 🇨🇩️ 5 5 501 -20 -コッキ 🇨🇩️ 5 5 501 -20 -コンゴミンシュキョウワコク 🇨🇩️ 5 5 501 -20 -ハタ 🇨🇩️ 5 5 501 -20 -フラグ 🇨🇩️ 5 5 501 -20 -フラッグ 🇨🇩️ 5 5 501 -20 -コッキ 🇨🇫️ 5 5 501 -20 -チュウオウアフリカキョウワコク 🇨🇫️ 5 5 501 -20 -ハタ 🇨🇫️ 5 5 501 -20 -フラグ 🇨🇫️ 5 5 501 -20 -フラッグ 🇨🇫️ 5 5 501 -20 -コッキ 🇨🇬️ 5 5 501 -20 -コンゴキョウワコク 🇨🇬️ 5 5 501 -20 -ハタ 🇨🇬️ 5 5 501 -20 -フラグ 🇨🇬️ 5 5 501 -20 -フラッグ 🇨🇬️ 5 5 501 -20 -ブラザビル 🇨🇬️ 5 5 501 -20 -コッキ 🇨🇭️ 5 5 501 -20 -スイス 🇨🇭️ 5 5 501 -20 -ハタ 🇨🇭️ 5 5 501 -20 -フラグ 🇨🇭️ 5 5 501 -20 -フラッグ 🇨🇭️ 5 5 501 -20 -コッキ 🇨🇮️ 5 5 501 -20 -コートジボワール 🇨🇮️ 5 5 501 -20 -ハタ 🇨🇮️ 5 5 501 -20 -フラグ 🇨🇮️ 5 5 501 -20 -フラッグ 🇨🇮️ 5 5 501 -20 -クックショトウ 🇨🇰️ 5 5 501 -20 -コッキ 🇨🇰️ 5 5 501 -20 -ハタ 🇨🇰️ 5 5 501 -20 -フラグ 🇨🇰️ 5 5 501 -20 -フラッグ 🇨🇰️ 5 5 501 -20 -コッキ 🇨🇱️ 5 5 501 -20 -チリ 🇨🇱️ 5 5 501 -20 -ハタ 🇨🇱️ 5 5 501 -20 -フラグ 🇨🇱️ 5 5 501 -20 -フラッグ 🇨🇱️ 5 5 501 -20 -カメルーン 🇨🇲️ 5 5 501 -20 -コッキ 🇨🇲️ 5 5 501 -20 -ハタ 🇨🇲️ 5 5 501 -20 -フラグ 🇨🇲️ 5 5 501 -20 -フラッグ 🇨🇲️ 5 5 501 -20 -コッキ 🇨🇳️ 5 5 501 -20 -チュウゴク 🇨🇳️ 5 5 501 -20 -ハタ 🇨🇳️ 5 5 501 -20 -フラグ 🇨🇳️ 5 5 501 -20 -フラッグ 🇨🇳️ 5 5 501 -20 -コッキ 🇨🇴️ 5 5 501 -20 -コロンビア 🇨🇴️ 5 5 501 -20 -ハタ 🇨🇴️ 5 5 501 -20 -フラグ 🇨🇴️ 5 5 501 -20 -フラッグ 🇨🇴️ 5 5 501 -20 -クリッパートントウ 🇨🇵️ 5 5 501 -20 -コッキ 🇨🇵️ 5 5 501 -20 -ハタ 🇨🇵️ 5 5 501 -20 -フラグ 🇨🇵️ 5 5 501 -20 -フラッグ 🇨🇵️ 5 5 501 -20 -コスタリカ 🇨🇷️ 5 5 501 -20 -コッキ 🇨🇷️ 5 5 501 -20 -ハタ 🇨🇷️ 5 5 501 -20 -フラグ 🇨🇷️ 5 5 501 -20 -フラッグ 🇨🇷️ 5 5 501 -20 -キューバ 🇨🇺️ 5 5 501 -20 -コッキ 🇨🇺️ 5 5 501 -20 -ハタ 🇨🇺️ 5 5 501 -20 -フラグ 🇨🇺️ 5 5 501 -20 -フラッグ 🇨🇺️ 5 5 501 -20 -カーボベルデ 🇨🇻️ 5 5 501 -20 -コッキ 🇨🇻️ 5 5 501 -20 -ハタ 🇨🇻️ 5 5 501 -20 -フラグ 🇨🇻️ 5 5 501 -20 -フラッグ 🇨🇻️ 5 5 501 -20 -キュラソー 🇨🇼️ 5 5 501 -20 -キュラソートウ 🇨🇼️ 5 5 501 -20 -コッキ 🇨🇼️ 5 5 501 -20 -ハタ 🇨🇼️ 5 5 501 -20 -フラグ 🇨🇼️ 5 5 501 -20 -フラッグ 🇨🇼️ 5 5 501 -20 -クリスマストウ 🇨🇽️ 5 5 501 -20 -コッキ 🇨🇽️ 5 5 501 -20 -ハタ 🇨🇽️ 5 5 501 -20 -フラグ 🇨🇽️ 5 5 501 -20 -フラッグ 🇨🇽️ 5 5 501 -20 -キプロス 🇨🇾️ 5 5 501 -20 -コッキ 🇨🇾️ 5 5 501 -20 -ハタ 🇨🇾️ 5 5 501 -20 -フラグ 🇨🇾️ 5 5 501 -20 -フラッグ 🇨🇾️ 5 5 501 -20 -コッキ 🇨🇿️ 5 5 501 -20 -チェコ 🇨🇿️ 5 5 501 -20 -ハタ 🇨🇿️ 5 5 501 -20 -フラグ 🇨🇿️ 5 5 501 -20 -フラッグ 🇨🇿️ 5 5 501 -20 -コッキ 🇩🇪️ 5 5 501 -20 -ドイツ 🇩🇪️ 5 5 501 -20 -ハタ 🇩🇪️ 5 5 501 -20 -フラグ 🇩🇪️ 5 5 501 -20 -フラッグ 🇩🇪️ 5 5 501 -20 -コッキ 🇩🇬️ 5 5 501 -20 -ディエゴガルシアトウ 🇩🇬️ 5 5 501 -20 -ハタ 🇩🇬️ 5 5 501 -20 -フラグ 🇩🇬️ 5 5 501 -20 -フラッグ 🇩🇬️ 5 5 501 -20 -コッキ 🇩🇯️ 5 5 501 -20 -ジブチ 🇩🇯️ 5 5 501 -20 -ハタ 🇩🇯️ 5 5 501 -20 -フラグ 🇩🇯️ 5 5 501 -20 -フラッグ 🇩🇯️ 5 5 501 -20 -コッキ 🇩🇰️ 5 5 501 -20 -デンマーク 🇩🇰️ 5 5 501 -20 -ハタ 🇩🇰️ 5 5 501 -20 -フラグ 🇩🇰️ 5 5 501 -20 -フラッグ 🇩🇰️ 5 5 501 -20 -コッキ 🇩🇲️ 5 5 501 -20 -ドミニカコク 🇩🇲️ 5 5 501 -20 -ハタ 🇩🇲️ 5 5 501 -20 -フラグ 🇩🇲️ 5 5 501 -20 -フラッグ 🇩🇲️ 5 5 501 -20 -コッキ 🇩🇴️ 5 5 501 -20 -ドミニカキョウワコク 🇩🇴️ 5 5 501 -20 -ハタ 🇩🇴️ 5 5 501 -20 -フラグ 🇩🇴️ 5 5 501 -20 -フラッグ 🇩🇴️ 5 5 501 -20 -アルジェリア 🇩🇿️ 5 5 501 -20 -コッキ 🇩🇿️ 5 5 501 -20 -ハタ 🇩🇿️ 5 5 501 -20 -フラグ 🇩🇿️ 5 5 501 -20 -フラッグ 🇩🇿️ 5 5 501 -20 -コッキ 🇪🇦️ 5 5 501 -20 -セウタトメリリャ 🇪🇦️ 5 5 501 -20 -セウタ・メリリャ 🇪🇦️ 5 5 501 -20 -ハタ 🇪🇦️ 5 5 501 -20 -フラグ 🇪🇦️ 5 5 501 -20 -フラッグ 🇪🇦️ 5 5 501 -20 -エクアドル 🇪🇨️ 5 5 501 -20 -コッキ 🇪🇨️ 5 5 501 -20 -ハタ 🇪🇨️ 5 5 501 -20 -フラグ 🇪🇨️ 5 5 501 -20 -フラッグ 🇪🇨️ 5 5 501 -20 -エストニア 🇪🇪️ 5 5 501 -20 -コッキ 🇪🇪️ 5 5 501 -20 -ハタ 🇪🇪️ 5 5 501 -20 -フラグ 🇪🇪️ 5 5 501 -20 -フラッグ 🇪🇪️ 5 5 501 -20 -エジプト 🇪🇬️ 5 5 501 -20 -コッキ 🇪🇬️ 5 5 501 -20 -ハタ 🇪🇬️ 5 5 501 -20 -フラグ 🇪🇬️ 5 5 501 -20 -フラッグ 🇪🇬️ 5 5 501 -20 -コッキ 🇪🇭️ 5 5 501 -20 -ニシサハラ 🇪🇭️ 5 5 501 -20 -ハタ 🇪🇭️ 5 5 501 -20 -フラグ 🇪🇭️ 5 5 501 -20 -フラッグ 🇪🇭️ 5 5 501 -20 -エリトリア 🇪🇷️ 5 5 501 -20 -コッキ 🇪🇷️ 5 5 501 -20 -ハタ 🇪🇷️ 5 5 501 -20 -フラグ 🇪🇷️ 5 5 501 -20 -フラッグ 🇪🇷️ 5 5 501 -20 -コッキ 🇪🇸️ 5 5 501 -20 -スペイン 🇪🇸️ 5 5 501 -20 -ハタ 🇪🇸️ 5 5 501 -20 -フラグ 🇪🇸️ 5 5 501 -20 -フラッグ 🇪🇸️ 5 5 501 -20 -エチオピア 🇪🇹️ 5 5 501 -20 -コッキ 🇪🇹️ 5 5 501 -20 -ハタ 🇪🇹️ 5 5 501 -20 -フラグ 🇪🇹️ 5 5 501 -20 -フラッグ 🇪🇹️ 5 5 501 -20 -eu 🇪🇺️ 5 5 501 -20 -イーユー 🇪🇺️ 5 5 501 -20 -オウシュウレンゴウ 🇪🇺️ 5 5 501 -20 -コッキ 🇪🇺️ 5 5 501 -20 -ハタ 🇪🇺️ 5 5 501 -20 -フラグ 🇪🇺️ 5 5 501 -20 -フラッグ 🇪🇺️ 5 5 501 -20 -コッキ 🇫🇮️ 5 5 501 -20 -ハタ 🇫🇮️ 5 5 501 -20 -フィンランド 🇫🇮️ 5 5 501 -20 -フラグ 🇫🇮️ 5 5 501 -20 -フラッグ 🇫🇮️ 5 5 501 -20 -コッキ 🇫🇯️ 5 5 501 -20 -ハタ 🇫🇯️ 5 5 501 -20 -フィジー 🇫🇯️ 5 5 501 -20 -フラグ 🇫🇯️ 5 5 501 -20 -フラッグ 🇫🇯️ 5 5 501 -20 -コッキ 🇫🇰️ 5 5 501 -20 -ハタ 🇫🇰️ 5 5 501 -20 -フォークランドショトウ 🇫🇰️ 5 5 501 -20 -フラグ 🇫🇰️ 5 5 501 -20 -フラッグ 🇫🇰️ 5 5 501 -20 -コッキ 🇫🇲️ 5 5 501 -20 -ハタ 🇫🇲️ 5 5 501 -20 -フラグ 🇫🇲️ 5 5 501 -20 -フラッグ 🇫🇲️ 5 5 501 -20 -ミクロネシア 🇫🇲️ 5 5 501 -20 -ミクロネシアレンポウ 🇫🇲️ 5 5 501 -20 -コッキ 🇫🇴️ 5 5 501 -20 -ハタ 🇫🇴️ 5 5 501 -20 -フェローショトウ 🇫🇴️ 5 5 501 -20 -フラグ 🇫🇴️ 5 5 501 -20 -フラッグ 🇫🇴️ 5 5 501 -20 -コッキ 🇫🇷️ 5 5 501 -20 -ハタ 🇫🇷️ 5 5 501 -20 -フラグ 🇫🇷️ 5 5 501 -20 -フラッグ 🇫🇷️ 5 5 501 -20 -フランス 🇫🇷️ 5 5 501 -20 -ガボン 🇬🇦️ 5 5 501 -20 -コッキ 🇬🇦️ 5 5 501 -20 -ハタ 🇬🇦️ 5 5 501 -20 -フラグ 🇬🇦️ 5 5 501 -20 -フラッグ 🇬🇦️ 5 5 501 -20 -イギリス 🇬🇧️ 5 5 501 -20 -コッキ 🇬🇧️ 5 5 501 -20 -ハタ 🇬🇧️ 5 5 501 -20 -フラグ 🇬🇧️ 5 5 501 -20 -フラッグ 🇬🇧️ 5 5 501 -20 -グレナダ 🇬🇩️ 5 5 501 -20 -コッキ 🇬🇩️ 5 5 501 -20 -ハタ 🇬🇩️ 5 5 501 -20 -フラグ 🇬🇩️ 5 5 501 -20 -フラッグ 🇬🇩️ 5 5 501 -20 -コッキ 🇬🇪️ 5 5 501 -20 -ジョージア 🇬🇪️ 5 5 501 -20 -ハタ 🇬🇪️ 5 5 501 -20 -フラグ 🇬🇪️ 5 5 501 -20 -フラッグ 🇬🇪️ 5 5 501 -20 -コッキ 🇬🇫️ 5 5 501 -20 -ハタ 🇬🇫️ 5 5 501 -20 -フツリョウギアナ 🇬🇫️ 5 5 501 -20 -フラグ 🇬🇫️ 5 5 501 -20 -フラッグ 🇬🇫️ 5 5 501 -20 -フランスリョウギアナ 🇬🇫️ 5 5 501 -20 -ガーンジー 🇬🇬️ 5 5 501 -20 -コッキ 🇬🇬️ 5 5 501 -20 -ハタ 🇬🇬️ 5 5 501 -20 -フラグ 🇬🇬️ 5 5 501 -20 -フラッグ 🇬🇬️ 5 5 501 -20 -ガーナ 🇬🇭️ 5 5 501 -20 -コッキ 🇬🇭️ 5 5 501 -20 -ハタ 🇬🇭️ 5 5 501 -20 -フラグ 🇬🇭️ 5 5 501 -20 -フラッグ 🇬🇭️ 5 5 501 -20 -コッキ 🇬🇮️ 5 5 501 -20 -ジブラルタル 🇬🇮️ 5 5 501 -20 -ハタ 🇬🇮️ 5 5 501 -20 -フラグ 🇬🇮️ 5 5 501 -20 -フラッグ 🇬🇮️ 5 5 501 -20 -グリーンランド 🇬🇱️ 5 5 501 -20 -コッキ 🇬🇱️ 5 5 501 -20 -ハタ 🇬🇱️ 5 5 501 -20 -フラグ 🇬🇱️ 5 5 501 -20 -フラッグ 🇬🇱️ 5 5 501 -20 -ガンビア 🇬🇲️ 5 5 501 -20 -コッキ 🇬🇲️ 5 5 501 -20 -ハタ 🇬🇲️ 5 5 501 -20 -フラグ 🇬🇲️ 5 5 501 -20 -フラッグ 🇬🇲️ 5 5 501 -20 -ギニア 🇬🇳️ 5 5 501 -20 -コッキ 🇬🇳️ 5 5 501 -20 -ハタ 🇬🇳️ 5 5 501 -20 -フラグ 🇬🇳️ 5 5 501 -20 -フラッグ 🇬🇳️ 5 5 501 -20 -グアドループ 🇬🇵️ 5 5 501 -20 -コッキ 🇬🇵️ 5 5 501 -20 -ハタ 🇬🇵️ 5 5 501 -20 -フラグ 🇬🇵️ 5 5 501 -20 -フラッグ 🇬🇵️ 5 5 501 -20 -コッキ 🇬🇶️ 5 5 501 -20 -セキドウギニア 🇬🇶️ 5 5 501 -20 -ハタ 🇬🇶️ 5 5 501 -20 -フラグ 🇬🇶️ 5 5 501 -20 -フラッグ 🇬🇶️ 5 5 501 -20 -ギリシャ 🇬🇷️ 5 5 501 -20 -コッキ 🇬🇷️ 5 5 501 -20 -ハタ 🇬🇷️ 5 5 501 -20 -フラグ 🇬🇷️ 5 5 501 -20 -フラッグ 🇬🇷️ 5 5 501 -20 -コッキ 🇬🇸️ 5 5 501 -20 -サウスジョージア・サウスサンドウィッチショトウ 🇬🇸️ 5 5 501 -20 -ハタ 🇬🇸️ 5 5 501 -20 -フラグ 🇬🇸️ 5 5 501 -20 -フラッグ 🇬🇸️ 5 5 501 -20 -グアテマラ 🇬🇹️ 5 5 501 -20 -コッキ 🇬🇹️ 5 5 501 -20 -ハタ 🇬🇹️ 5 5 501 -20 -フラグ 🇬🇹️ 5 5 501 -20 -フラッグ 🇬🇹️ 5 5 501 -20 -グアム 🇬🇺️ 5 5 501 -20 -コッキ 🇬🇺️ 5 5 501 -20 -ハタ 🇬🇺️ 5 5 501 -20 -フラグ 🇬🇺️ 5 5 501 -20 -フラッグ 🇬🇺️ 5 5 501 -20 -ギニアビサウ 🇬🇼️ 5 5 501 -20 -コッキ 🇬🇼️ 5 5 501 -20 -ハタ 🇬🇼️ 5 5 501 -20 -フラグ 🇬🇼️ 5 5 501 -20 -フラッグ 🇬🇼️ 5 5 501 -20 -ガイアナ 🇬🇾️ 5 5 501 -20 -コッキ 🇬🇾️ 5 5 501 -20 -ハタ 🇬🇾️ 5 5 501 -20 -フラグ 🇬🇾️ 5 5 501 -20 -フラッグ 🇬🇾️ 5 5 501 -20 -コッキ 🇭🇰️ 5 5 501 -20 -チュウカジンミンキョウワコクホンコントクベツギョウセイク 🇭🇰️ 5 5 501 -20 -ハタ 🇭🇰️ 5 5 501 -20 -フラグ 🇭🇰️ 5 5 501 -20 -フラッグ 🇭🇰️ 5 5 501 -20 -ホンコン 🇭🇰️ 5 5 501 -20 -コッキ 🇭🇲️ 5 5 501 -20 -ハタ 🇭🇲️ 5 5 501 -20 -ハードトウ 🇭🇲️ 5 5 501 -20 -ハードトウトマクドナルドショトウ 🇭🇲️ 5 5 501 -20 -ハードトウ・マクドナルドショトウ 🇭🇲️ 5 5 501 -20 -フラグ 🇭🇲️ 5 5 501 -20 -フラッグ 🇭🇲️ 5 5 501 -20 -マクドナルドショトウ 🇭🇲️ 5 5 501 -20 -コッキ 🇭🇳️ 5 5 501 -20 -ハタ 🇭🇳️ 5 5 501 -20 -フラグ 🇭🇳️ 5 5 501 -20 -フラッグ 🇭🇳️ 5 5 501 -20 -ホンジュラス 🇭🇳️ 5 5 501 -20 -クロアチア 🇭🇷️ 5 5 501 -20 -コッキ 🇭🇷️ 5 5 501 -20 -ハタ 🇭🇷️ 5 5 501 -20 -フラグ 🇭🇷️ 5 5 501 -20 -フラッグ 🇭🇷️ 5 5 501 -20 -コッキ 🇭🇹️ 5 5 501 -20 -ハイチ 🇭🇹️ 5 5 501 -20 -ハタ 🇭🇹️ 5 5 501 -20 -フラグ 🇭🇹️ 5 5 501 -20 -フラッグ 🇭🇹️ 5 5 501 -20 -コッキ 🇭🇺️ 5 5 501 -20 -ハタ 🇭🇺️ 5 5 501 -20 -ハンガリー 🇭🇺️ 5 5 501 -20 -フラグ 🇭🇺️ 5 5 501 -20 -フラッグ 🇭🇺️ 5 5 501 -20 -カナリアショトウ 🇮🇨️ 5 5 501 -20 -コッキ 🇮🇨️ 5 5 501 -20 -ハタ 🇮🇨️ 5 5 501 -20 -フラグ 🇮🇨️ 5 5 501 -20 -フラッグ 🇮🇨️ 5 5 501 -20 -インドネシア 🇮🇩️ 5 5 501 -20 -コッキ 🇮🇩️ 5 5 501 -20 -ハタ 🇮🇩️ 5 5 501 -20 -フラグ 🇮🇩️ 5 5 501 -20 -フラッグ 🇮🇩️ 5 5 501 -20 -アイルランド 🇮🇪️ 5 5 501 -20 -コッキ 🇮🇪️ 5 5 501 -20 -ハタ 🇮🇪️ 5 5 501 -20 -フラグ 🇮🇪️ 5 5 501 -20 -フラッグ 🇮🇪️ 5 5 501 -20 -イスラエル 🇮🇱️ 5 5 501 -20 -コッキ 🇮🇱️ 5 5 501 -20 -ハタ 🇮🇱️ 5 5 501 -20 -フラグ 🇮🇱️ 5 5 501 -20 -フラッグ 🇮🇱️ 5 5 501 -20 -コッキ 🇮🇲️ 5 5 501 -20 -ハタ 🇮🇲️ 5 5 501 -20 -フラグ 🇮🇲️ 5 5 501 -20 -フラッグ 🇮🇲️ 5 5 501 -20 -マントウ 🇮🇲️ 5 5 501 -20 -インド 🇮🇳️ 5 5 501 -20 -コッキ 🇮🇳️ 5 5 501 -20 -ハタ 🇮🇳️ 5 5 501 -20 -フラグ 🇮🇳️ 5 5 501 -20 -フラッグ 🇮🇳️ 5 5 501 -20 -イギリスリョウインドヨウチイキ 🇮🇴️ 5 5 501 -20 -エイリョウインドヨウチイキ 🇮🇴️ 5 5 501 -20 -コッキ 🇮🇴️ 5 5 501 -20 -ハタ 🇮🇴️ 5 5 501 -20 -フラグ 🇮🇴️ 5 5 501 -20 -フラッグ 🇮🇴️ 5 5 501 -20 -イラク 🇮🇶️ 5 5 501 -20 -コッキ 🇮🇶️ 5 5 501 -20 -ハタ 🇮🇶️ 5 5 501 -20 -フラグ 🇮🇶️ 5 5 501 -20 -フラッグ 🇮🇶️ 5 5 501 -20 -イラン 🇮🇷️ 5 5 501 -20 -コッキ 🇮🇷️ 5 5 501 -20 -ハタ 🇮🇷️ 5 5 501 -20 -フラグ 🇮🇷️ 5 5 501 -20 -フラッグ 🇮🇷️ 5 5 501 -20 -アイスランド 🇮🇸️ 5 5 501 -20 -コッキ 🇮🇸️ 5 5 501 -20 -ハタ 🇮🇸️ 5 5 501 -20 -フラグ 🇮🇸️ 5 5 501 -20 -フラッグ 🇮🇸️ 5 5 501 -20 -イタリア 🇮🇹️ 5 5 501 -20 -コッキ 🇮🇹️ 5 5 501 -20 -ハタ 🇮🇹️ 5 5 501 -20 -フラグ 🇮🇹️ 5 5 501 -20 -フラッグ 🇮🇹️ 5 5 501 -20 -コッキ 🇯🇪️ 5 5 501 -20 -ジャージー 🇯🇪️ 5 5 501 -20 -ハタ 🇯🇪️ 5 5 501 -20 -フラグ 🇯🇪️ 5 5 501 -20 -フラッグ 🇯🇪️ 5 5 501 -20 -コッキ 🇯🇲️ 5 5 501 -20 -ジャマイカ 🇯🇲️ 5 5 501 -20 -ハタ 🇯🇲️ 5 5 501 -20 -フラグ 🇯🇲️ 5 5 501 -20 -フラッグ 🇯🇲️ 5 5 501 -20 -コッキ 🇯🇴️ 5 5 501 -20 -ハタ 🇯🇴️ 5 5 501 -20 -フラグ 🇯🇴️ 5 5 501 -20 -フラッグ 🇯🇴️ 5 5 501 -20 -ヨルダン 🇯🇴️ 5 5 501 -20 -コッキ 🇯🇵️ 5 5 501 -20 -シュクジツ 🇯🇵️ 5 5 501 -20 -ニッポン 🇯🇵️ 5 5 501 -20 -ニホン 🇯🇵️ 5 5 501 -20 -ハタ 🇯🇵️ 5 5 501 -20 -ヒノマル 🇯🇵️ 5 5 501 -20 -フラグ 🇯🇵️ 5 5 501 -20 -フラッグ 🇯🇵️ 5 5 501 -20 -ケニア 🇰🇪️ 5 5 501 -20 -コッキ 🇰🇪️ 5 5 501 -20 -ハタ 🇰🇪️ 5 5 501 -20 -フラグ 🇰🇪️ 5 5 501 -20 -フラッグ 🇰🇪️ 5 5 501 -20 -キルギス 🇰🇬️ 5 5 501 -20 -コッキ 🇰🇬️ 5 5 501 -20 -ハタ 🇰🇬️ 5 5 501 -20 -フラグ 🇰🇬️ 5 5 501 -20 -フラッグ 🇰🇬️ 5 5 501 -20 -カンボジア 🇰🇭️ 5 5 501 -20 -コッキ 🇰🇭️ 5 5 501 -20 -コロンビア 🇰🇭️ 5 5 501 -20 -ハタ 🇰🇭️ 5 5 501 -20 -フラグ 🇰🇭️ 5 5 501 -20 -フラッグ 🇰🇭️ 5 5 501 -20 -キリバス 🇰🇮️ 5 5 501 -20 -コッキ 🇰🇮️ 5 5 501 -20 -ハタ 🇰🇮️ 5 5 501 -20 -フラグ 🇰🇮️ 5 5 501 -20 -フラッグ 🇰🇮️ 5 5 501 -20 -コッキ 🇰🇲️ 5 5 501 -20 -コモロ 🇰🇲️ 5 5 501 -20 -ハタ 🇰🇲️ 5 5 501 -20 -フラグ 🇰🇲️ 5 5 501 -20 -フラッグ 🇰🇲️ 5 5 501 -20 -コッキ 🇰🇳️ 5 5 501 -20 -セントクリストファーネーヴィス 🇰🇳️ 5 5 501 -20 -セントクリストファー・ネーヴィス 🇰🇳️ 5 5 501 -20 -ハタ 🇰🇳️ 5 5 501 -20 -フラグ 🇰🇳️ 5 5 501 -20 -フラッグ 🇰🇳️ 5 5 501 -20 -キタチョウセン 🇰🇵️ 5 5 501 -20 -コッキ 🇰🇵️ 5 5 501 -20 -ハタ 🇰🇵️ 5 5 501 -20 -フラグ 🇰🇵️ 5 5 501 -20 -フラッグ 🇰🇵️ 5 5 501 -20 -カンコク 🇰🇷️ 5 5 501 -20 -コッキ 🇰🇷️ 5 5 501 -20 -ハタ 🇰🇷️ 5 5 501 -20 -フラグ 🇰🇷️ 5 5 501 -20 -フラッグ 🇰🇷️ 5 5 501 -20 -クウェート 🇰🇼️ 5 5 501 -20 -コッキ 🇰🇼️ 5 5 501 -20 -ハタ 🇰🇼️ 5 5 501 -20 -フラグ 🇰🇼️ 5 5 501 -20 -フラッグ 🇰🇼️ 5 5 501 -20 -ケイマンショトウ 🇰🇾️ 5 5 501 -20 -コッキ 🇰🇾️ 5 5 501 -20 -ハタ 🇰🇾️ 5 5 501 -20 -フラグ 🇰🇾️ 5 5 501 -20 -フラッグ 🇰🇾️ 5 5 501 -20 -カザフスタン 🇰🇿️ 5 5 501 -20 -コッキ 🇰🇿️ 5 5 501 -20 -ハタ 🇰🇿️ 5 5 501 -20 -フラグ 🇰🇿️ 5 5 501 -20 -フラッグ 🇰🇿️ 5 5 501 -20 -コッキ 🇱🇦️ 5 5 501 -20 -ハタ 🇱🇦️ 5 5 501 -20 -フラグ 🇱🇦️ 5 5 501 -20 -フラッグ 🇱🇦️ 5 5 501 -20 -ラオス 🇱🇦️ 5 5 501 -20 -コッキ 🇱🇧️ 5 5 501 -20 -ハタ 🇱🇧️ 5 5 501 -20 -フラグ 🇱🇧️ 5 5 501 -20 -フラッグ 🇱🇧️ 5 5 501 -20 -レバノン 🇱🇧️ 5 5 501 -20 -コッキ 🇱🇨️ 5 5 501 -20 -セントルシア 🇱🇨️ 5 5 501 -20 -ハタ 🇱🇨️ 5 5 501 -20 -フラグ 🇱🇨️ 5 5 501 -20 -フラッグ 🇱🇨️ 5 5 501 -20 -コッキ 🇱🇮️ 5 5 501 -20 -ハタ 🇱🇮️ 5 5 501 -20 -フラグ 🇱🇮️ 5 5 501 -20 -フラッグ 🇱🇮️ 5 5 501 -20 -リヒテンシュタイン 🇱🇮️ 5 5 501 -20 -コッキ 🇱🇰️ 5 5 501 -20 -スリランカ 🇱🇰️ 5 5 501 -20 -ハタ 🇱🇰️ 5 5 501 -20 -フラグ 🇱🇰️ 5 5 501 -20 -フラッグ 🇱🇰️ 5 5 501 -20 -コッキ 🇱🇷️ 5 5 501 -20 -ハタ 🇱🇷️ 5 5 501 -20 -フラグ 🇱🇷️ 5 5 501 -20 -フラッグ 🇱🇷️ 5 5 501 -20 -リベリア 🇱🇷️ 5 5 501 -20 -コッキ 🇱🇸️ 5 5 501 -20 -ハタ 🇱🇸️ 5 5 501 -20 -フラグ 🇱🇸️ 5 5 501 -20 -フラッグ 🇱🇸️ 5 5 501 -20 -レソト 🇱🇸️ 5 5 501 -20 -コッキ 🇱🇹️ 5 5 501 -20 -ハタ 🇱🇹️ 5 5 501 -20 -フラグ 🇱🇹️ 5 5 501 -20 -フラッグ 🇱🇹️ 5 5 501 -20 -リトアニア 🇱🇹️ 5 5 501 -20 -コッキ 🇱🇺️ 5 5 501 -20 -ハタ 🇱🇺️ 5 5 501 -20 -フラグ 🇱🇺️ 5 5 501 -20 -フラッグ 🇱🇺️ 5 5 501 -20 -ルクセンブルク 🇱🇺️ 5 5 501 -20 -ルクセンブルグ 🇱🇺️ 5 5 501 -20 -コッキ 🇱🇻️ 5 5 501 -20 -ハタ 🇱🇻️ 5 5 501 -20 -フラグ 🇱🇻️ 5 5 501 -20 -フラッグ 🇱🇻️ 5 5 501 -20 -ラトビア 🇱🇻️ 5 5 501 -20 -コッキ 🇱🇾️ 5 5 501 -20 -ハタ 🇱🇾️ 5 5 501 -20 -フラグ 🇱🇾️ 5 5 501 -20 -フラッグ 🇱🇾️ 5 5 501 -20 -リビア 🇱🇾️ 5 5 501 -20 -コッキ 🇲🇦️ 5 5 501 -20 -ハタ 🇲🇦️ 5 5 501 -20 -フラグ 🇲🇦️ 5 5 501 -20 -フラッグ 🇲🇦️ 5 5 501 -20 -モロッコ 🇲🇦️ 5 5 501 -20 -コッキ 🇲🇨️ 5 5 501 -20 -ハタ 🇲🇨️ 5 5 501 -20 -フラグ 🇲🇨️ 5 5 501 -20 -フラッグ 🇲🇨️ 5 5 501 -20 -モナコ 🇲🇨️ 5 5 501 -20 -コッキ 🇲🇩️ 5 5 501 -20 -ハタ 🇲🇩️ 5 5 501 -20 -フラグ 🇲🇩️ 5 5 501 -20 -フラッグ 🇲🇩️ 5 5 501 -20 -モルドバ 🇲🇩️ 5 5 501 -20 -コッキ 🇲🇪️ 5 5 501 -20 -ハタ 🇲🇪️ 5 5 501 -20 -フラグ 🇲🇪️ 5 5 501 -20 -フラッグ 🇲🇪️ 5 5 501 -20 -モンテネグロ 🇲🇪️ 5 5 501 -20 -コッキ 🇲🇫️ 5 5 501 -20 -サンマルタン 🇲🇫️ 5 5 501 -20 -サン・マルタン 🇲🇫️ 5 5 501 -20 -ハタ 🇲🇫️ 5 5 501 -20 -フラグ 🇲🇫️ 5 5 501 -20 -フラッグ 🇲🇫️ 5 5 501 -20 -コッキ 🇲🇬️ 5 5 501 -20 -ハタ 🇲🇬️ 5 5 501 -20 -フラグ 🇲🇬️ 5 5 501 -20 -フラッグ 🇲🇬️ 5 5 501 -20 -マダガスカル 🇲🇬️ 5 5 501 -20 -コッキ 🇲🇭️ 5 5 501 -20 -ハタ 🇲🇭️ 5 5 501 -20 -フラグ 🇲🇭️ 5 5 501 -20 -フラッグ 🇲🇭️ 5 5 501 -20 -マーシャルショトウ 🇲🇭️ 5 5 501 -20 -キタマケドニア 🇲🇰️ 5 5 501 -20 -コッキ 🇲🇰️ 5 5 501 -20 -ハタ 🇲🇰️ 5 5 501 -20 -フラグ 🇲🇰️ 5 5 501 -20 -フラッグ 🇲🇰️ 5 5 501 -20 -マケドニア 🇲🇰️ 5 5 501 -20 -コッキ 🇲🇱️ 5 5 501 -20 -ハタ 🇲🇱️ 5 5 501 -20 -フラグ 🇲🇱️ 5 5 501 -20 -フラッグ 🇲🇱️ 5 5 501 -20 -マリ 🇲🇱️ 5 5 501 -20 -コッキ 🇲🇲️ 5 5 501 -20 -ハタ 🇲🇲️ 5 5 501 -20 -ビルマ 🇲🇲️ 5 5 501 -20 -フラグ 🇲🇲️ 5 5 501 -20 -フラッグ 🇲🇲️ 5 5 501 -20 -ミャンマー 🇲🇲️ 5 5 501 -20 -コッキ 🇲🇳️ 5 5 501 -20 -ハタ 🇲🇳️ 5 5 501 -20 -フラグ 🇲🇳️ 5 5 501 -20 -フラッグ 🇲🇳️ 5 5 501 -20 -モンゴル 🇲🇳️ 5 5 501 -20 -コッキ 🇲🇴️ 5 5 501 -20 -チュウカジンミンキョウワコクマカオトクベツギョウセイク 🇲🇴️ 5 5 501 -20 -ハタ 🇲🇴️ 5 5 501 -20 -フラグ 🇲🇴️ 5 5 501 -20 -フラッグ 🇲🇴️ 5 5 501 -20 -マカオ 🇲🇴️ 5 5 501 -20 -キタマリアナショトウ 🇲🇵️ 5 5 501 -20 -コッキ 🇲🇵️ 5 5 501 -20 -ハタ 🇲🇵️ 5 5 501 -20 -フラグ 🇲🇵️ 5 5 501 -20 -フラッグ 🇲🇵️ 5 5 501 -20 -コッキ 🇲🇶️ 5 5 501 -20 -ハタ 🇲🇶️ 5 5 501 -20 -フラグ 🇲🇶️ 5 5 501 -20 -フラッグ 🇲🇶️ 5 5 501 -20 -マルティニーク 🇲🇶️ 5 5 501 -20 -コッキ 🇲🇷️ 5 5 501 -20 -ハタ 🇲🇷️ 5 5 501 -20 -フラグ 🇲🇷️ 5 5 501 -20 -フラッグ 🇲🇷️ 5 5 501 -20 -モーリタニア 🇲🇷️ 5 5 501 -20 -コッキ 🇲🇸️ 5 5 501 -20 -ハタ 🇲🇸️ 5 5 501 -20 -フラグ 🇲🇸️ 5 5 501 -20 -フラッグ 🇲🇸️ 5 5 501 -20 -モントセラト 🇲🇸️ 5 5 501 -20 -コッキ 🇲🇹️ 5 5 501 -20 -ハタ 🇲🇹️ 5 5 501 -20 -フラグ 🇲🇹️ 5 5 501 -20 -フラッグ 🇲🇹️ 5 5 501 -20 -マルタ 🇲🇹️ 5 5 501 -20 -コッキ 🇲🇺️ 5 5 501 -20 -ハタ 🇲🇺️ 5 5 501 -20 -フラグ 🇲🇺️ 5 5 501 -20 -フラッグ 🇲🇺️ 5 5 501 -20 -モーリシャス 🇲🇺️ 5 5 501 -20 -コッキ 🇲🇻️ 5 5 501 -20 -ハタ 🇲🇻️ 5 5 501 -20 -フラグ 🇲🇻️ 5 5 501 -20 -フラッグ 🇲🇻️ 5 5 501 -20 -モルディブ 🇲🇻️ 5 5 501 -20 -コッキ 🇲🇼️ 5 5 501 -20 -ハタ 🇲🇼️ 5 5 501 -20 -フラグ 🇲🇼️ 5 5 501 -20 -フラッグ 🇲🇼️ 5 5 501 -20 -マラウィ 🇲🇼️ 5 5 501 -20 -マラウイ 🇲🇼️ 5 5 501 -20 -コッキ 🇲🇽️ 5 5 501 -20 -ハタ 🇲🇽️ 5 5 501 -20 -フラグ 🇲🇽️ 5 5 501 -20 -フラッグ 🇲🇽️ 5 5 501 -20 -メキシコ 🇲🇽️ 5 5 501 -20 -コッキ 🇲🇾️ 5 5 501 -20 -ハタ 🇲🇾️ 5 5 501 -20 -フラグ 🇲🇾️ 5 5 501 -20 -フラッグ 🇲🇾️ 5 5 501 -20 -マレーシア 🇲🇾️ 5 5 501 -20 -コッキ 🇲🇿️ 5 5 501 -20 -ハタ 🇲🇿️ 5 5 501 -20 -フラグ 🇲🇿️ 5 5 501 -20 -フラッグ 🇲🇿️ 5 5 501 -20 -モザンビーク 🇲🇿️ 5 5 501 -20 -コッキ 🇳🇦️ 5 5 501 -20 -ナミビア 🇳🇦️ 5 5 501 -20 -ハタ 🇳🇦️ 5 5 501 -20 -フラグ 🇳🇦️ 5 5 501 -20 -フラッグ 🇳🇦️ 5 5 501 -20 -コッキ 🇳🇨️ 5 5 501 -20 -ニューカレドニア 🇳🇨️ 5 5 501 -20 -ハタ 🇳🇨️ 5 5 501 -20 -フラグ 🇳🇨️ 5 5 501 -20 -フラッグ 🇳🇨️ 5 5 501 -20 -コッキ 🇳🇪️ 5 5 501 -20 -ニジェール 🇳🇪️ 5 5 501 -20 -ハタ 🇳🇪️ 5 5 501 -20 -フラグ 🇳🇪️ 5 5 501 -20 -フラッグ 🇳🇪️ 5 5 501 -20 -コッキ 🇳🇫️ 5 5 501 -20 -ノーフォークトウ 🇳🇫️ 5 5 501 -20 -ハタ 🇳🇫️ 5 5 501 -20 -フラグ 🇳🇫️ 5 5 501 -20 -フラッグ 🇳🇫️ 5 5 501 -20 -コッキ 🇳🇬️ 5 5 501 -20 -ナイジェリア 🇳🇬️ 5 5 501 -20 -ハタ 🇳🇬️ 5 5 501 -20 -フラグ 🇳🇬️ 5 5 501 -20 -フラッグ 🇳🇬️ 5 5 501 -20 -コッキ 🇳🇮️ 5 5 501 -20 -ニカラグア 🇳🇮️ 5 5 501 -20 -ハタ 🇳🇮️ 5 5 501 -20 -フラグ 🇳🇮️ 5 5 501 -20 -フラッグ 🇳🇮️ 5 5 501 -20 -オランダ 🇳🇱️ 5 5 501 -20 -コッキ 🇳🇱️ 5 5 501 -20 -ハタ 🇳🇱️ 5 5 501 -20 -フラグ 🇳🇱️ 5 5 501 -20 -フラッグ 🇳🇱️ 5 5 501 -20 -コッキ 🇳🇴️ 5 5 501 -20 -ノルウェー 🇳🇴️ 5 5 501 -20 -ハタ 🇳🇴️ 5 5 501 -20 -フラグ 🇳🇴️ 5 5 501 -20 -フラッグ 🇳🇴️ 5 5 501 -20 -コッキ 🇳🇵️ 5 5 501 -20 -ネパール 🇳🇵️ 5 5 501 -20 -ハタ 🇳🇵️ 5 5 501 -20 -フラグ 🇳🇵️ 5 5 501 -20 -フラッグ 🇳🇵️ 5 5 501 -20 -コッキ 🇳🇷️ 5 5 501 -20 -ナウル 🇳🇷️ 5 5 501 -20 -ハタ 🇳🇷️ 5 5 501 -20 -フラグ 🇳🇷️ 5 5 501 -20 -フラッグ 🇳🇷️ 5 5 501 -20 -コッキ 🇳🇺️ 5 5 501 -20 -ニウエ 🇳🇺️ 5 5 501 -20 -ハタ 🇳🇺️ 5 5 501 -20 -フラグ 🇳🇺️ 5 5 501 -20 -フラッグ 🇳🇺️ 5 5 501 -20 -コッキ 🇳🇿️ 5 5 501 -20 -ニュージーランド 🇳🇿️ 5 5 501 -20 -ハタ 🇳🇿️ 5 5 501 -20 -フラグ 🇳🇿️ 5 5 501 -20 -フラッグ 🇳🇿️ 5 5 501 -20 -オマーン 🇴🇲️ 5 5 501 -20 -コッキ 🇴🇲️ 5 5 501 -20 -ハタ 🇴🇲️ 5 5 501 -20 -フラグ 🇴🇲️ 5 5 501 -20 -フラッグ 🇴🇲️ 5 5 501 -20 -コッキ 🇵🇦️ 5 5 501 -20 -ハタ 🇵🇦️ 5 5 501 -20 -パナマ 🇵🇦️ 5 5 501 -20 -フラグ 🇵🇦️ 5 5 501 -20 -フラッグ 🇵🇦️ 5 5 501 -20 -コッキ 🇵🇪️ 5 5 501 -20 -ハタ 🇵🇪️ 5 5 501 -20 -フラグ 🇵🇪️ 5 5 501 -20 -フラッグ 🇵🇪️ 5 5 501 -20 -ペルー 🇵🇪️ 5 5 501 -20 -コッキ 🇵🇫️ 5 5 501 -20 -ハタ 🇵🇫️ 5 5 501 -20 -フツリョウポリネシア 🇵🇫️ 5 5 501 -20 -フラグ 🇵🇫️ 5 5 501 -20 -フラッグ 🇵🇫️ 5 5 501 -20 -フランスリョウポリネシア 🇵🇫️ 5 5 501 -20 -コッキ 🇵🇬️ 5 5 501 -20 -ハタ 🇵🇬️ 5 5 501 -20 -パプアニューギニア 🇵🇬️ 5 5 501 -20 -フラグ 🇵🇬️ 5 5 501 -20 -フラッグ 🇵🇬️ 5 5 501 -20 -コッキ 🇵🇭️ 5 5 501 -20 -ハタ 🇵🇭️ 5 5 501 -20 -フィリピン 🇵🇭️ 5 5 501 -20 -フラグ 🇵🇭️ 5 5 501 -20 -フラッグ 🇵🇭️ 5 5 501 -20 -コッキ 🇵🇰️ 5 5 501 -20 -ハタ 🇵🇰️ 5 5 501 -20 -パキスタン 🇵🇰️ 5 5 501 -20 -フラグ 🇵🇰️ 5 5 501 -20 -フラッグ 🇵🇰️ 5 5 501 -20 -コッキ 🇵🇱️ 5 5 501 -20 -ハタ 🇵🇱️ 5 5 501 -20 -フラグ 🇵🇱️ 5 5 501 -20 -フラッグ 🇵🇱️ 5 5 501 -20 -ポーランド 🇵🇱️ 5 5 501 -20 -コッキ 🇵🇲️ 5 5 501 -20 -サンピエールシマ・ミクロントウ 🇵🇲️ 5 5 501 -20 -サンピエールトウ 🇵🇲️ 5 5 501 -20 -サンピエールトウ・ミクロントウ 🇵🇲️ 5 5 501 -20 -ハタ 🇵🇲️ 5 5 501 -20 -フラグ 🇵🇲️ 5 5 501 -20 -フラッグ 🇵🇲️ 5 5 501 -20 -ミクロントウ 🇵🇲️ 5 5 501 -20 -コッキ 🇵🇳️ 5 5 501 -20 -ハタ 🇵🇳️ 5 5 501 -20 -ピトケアンショトウ 🇵🇳️ 5 5 501 -20 -フラグ 🇵🇳️ 5 5 501 -20 -フラッグ 🇵🇳️ 5 5 501 -20 -コッキ 🇵🇷️ 5 5 501 -20 -ハタ 🇵🇷️ 5 5 501 -20 -フラグ 🇵🇷️ 5 5 501 -20 -フラッグ 🇵🇷️ 5 5 501 -20 -プエルトリコ 🇵🇷️ 5 5 501 -20 -コッキ 🇵🇸️ 5 5 501 -20 -ハタ 🇵🇸️ 5 5 501 -20 -パレスチナジチク 🇵🇸️ 5 5 501 -20 -フラグ 🇵🇸️ 5 5 501 -20 -フラッグ 🇵🇸️ 5 5 501 -20 -コッキ 🇵🇹️ 5 5 501 -20 -ハタ 🇵🇹️ 5 5 501 -20 -フラグ 🇵🇹️ 5 5 501 -20 -フラッグ 🇵🇹️ 5 5 501 -20 -ポルトガル 🇵🇹️ 5 5 501 -20 -コッキ 🇵🇼️ 5 5 501 -20 -ハタ 🇵🇼️ 5 5 501 -20 -パラオ 🇵🇼️ 5 5 501 -20 -フラグ 🇵🇼️ 5 5 501 -20 -フラッグ 🇵🇼️ 5 5 501 -20 -コッキ 🇵🇾️ 5 5 501 -20 -ハタ 🇵🇾️ 5 5 501 -20 -パラグアイ 🇵🇾️ 5 5 501 -20 -フラグ 🇵🇾️ 5 5 501 -20 -フラッグ 🇵🇾️ 5 5 501 -20 -カタール 🇶🇦️ 5 5 501 -20 -コッキ 🇶🇦️ 5 5 501 -20 -ハタ 🇶🇦️ 5 5 501 -20 -フラグ 🇶🇦️ 5 5 501 -20 -フラッグ 🇶🇦️ 5 5 501 -20 -コッキ 🇷🇪️ 5 5 501 -20 -ハタ 🇷🇪️ 5 5 501 -20 -フラグ 🇷🇪️ 5 5 501 -20 -フラッグ 🇷🇪️ 5 5 501 -20 -レユニオン 🇷🇪️ 5 5 501 -20 -コッキ 🇷🇴️ 5 5 501 -20 -ハタ 🇷🇴️ 5 5 501 -20 -フラグ 🇷🇴️ 5 5 501 -20 -フラッグ 🇷🇴️ 5 5 501 -20 -ルーマニア 🇷🇴️ 5 5 501 -20 -コッキ 🇷🇸️ 5 5 501 -20 -セルビア 🇷🇸️ 5 5 501 -20 -ハタ 🇷🇸️ 5 5 501 -20 -フラグ 🇷🇸️ 5 5 501 -20 -フラッグ 🇷🇸️ 5 5 501 -20 -コッキ 🇷🇺️ 5 5 501 -20 -ハタ 🇷🇺️ 5 5 501 -20 -フラグ 🇷🇺️ 5 5 501 -20 -フラッグ 🇷🇺️ 5 5 501 -20 -ロシア 🇷🇺️ 5 5 501 -20 -コッキ 🇷🇼️ 5 5 501 -20 -ハタ 🇷🇼️ 5 5 501 -20 -フラグ 🇷🇼️ 5 5 501 -20 -フラッグ 🇷🇼️ 5 5 501 -20 -ルワンダ 🇷🇼️ 5 5 501 -20 -コッキ 🇸🇦️ 5 5 501 -20 -サウジアラビア 🇸🇦️ 5 5 501 -20 -ハタ 🇸🇦️ 5 5 501 -20 -フラグ 🇸🇦️ 5 5 501 -20 -フラッグ 🇸🇦️ 5 5 501 -20 -コッキ 🇸🇧️ 5 5 501 -20 -ソロモンショトウ 🇸🇧️ 5 5 501 -20 -ハタ 🇸🇧️ 5 5 501 -20 -フラグ 🇸🇧️ 5 5 501 -20 -フラッグ 🇸🇧️ 5 5 501 -20 -コッキ 🇸🇨️ 5 5 501 -20 -セーシェル 🇸🇨️ 5 5 501 -20 -ハタ 🇸🇨️ 5 5 501 -20 -フラグ 🇸🇨️ 5 5 501 -20 -フラッグ 🇸🇨️ 5 5 501 -20 -コッキ 🇸🇩️ 5 5 501 -20 -スーダン 🇸🇩️ 5 5 501 -20 -ハタ 🇸🇩️ 5 5 501 -20 -フラグ 🇸🇩️ 5 5 501 -20 -フラッグ 🇸🇩️ 5 5 501 -20 -コッキ 🇸🇪️ 5 5 501 -20 -スウェーデン 🇸🇪️ 5 5 501 -20 -ハタ 🇸🇪️ 5 5 501 -20 -フラグ 🇸🇪️ 5 5 501 -20 -フラッグ 🇸🇪️ 5 5 501 -20 -コッキ 🇸🇬️ 5 5 501 -20 -シンガポール 🇸🇬️ 5 5 501 -20 -ハタ 🇸🇬️ 5 5 501 -20 -フラグ 🇸🇬️ 5 5 501 -20 -フラッグ 🇸🇬️ 5 5 501 -20 -コッキ 🇸🇭️ 5 5 501 -20 -セントヘレナ 🇸🇭️ 5 5 501 -20 -ハタ 🇸🇭️ 5 5 501 -20 -フラグ 🇸🇭️ 5 5 501 -20 -フラッグ 🇸🇭️ 5 5 501 -20 -コッキ 🇸🇮️ 5 5 501 -20 -スロベニア 🇸🇮️ 5 5 501 -20 -ハタ 🇸🇮️ 5 5 501 -20 -フラグ 🇸🇮️ 5 5 501 -20 -フラッグ 🇸🇮️ 5 5 501 -20 -コッキ 🇸🇯️ 5 5 501 -20 -スバールバルショトウ 🇸🇯️ 5 5 501 -20 -スバールバルショトウ・ヤンマイエントウ 🇸🇯️ 5 5 501 -20 -スヴァールバルショトウオヨビヤンマイエントウ 🇸🇯️ 5 5 501 -20 -ハタ 🇸🇯️ 5 5 501 -20 -フラグ 🇸🇯️ 5 5 501 -20 -フラッグ 🇸🇯️ 5 5 501 -20 -ヤンマイエントウ 🇸🇯️ 5 5 501 -20 -コッキ 🇸🇰️ 5 5 501 -20 -スロバキア 🇸🇰️ 5 5 501 -20 -ハタ 🇸🇰️ 5 5 501 -20 -フラグ 🇸🇰️ 5 5 501 -20 -フラッグ 🇸🇰️ 5 5 501 -20 -コッキ 🇸🇱️ 5 5 501 -20 -シエラレオネ 🇸🇱️ 5 5 501 -20 -ハタ 🇸🇱️ 5 5 501 -20 -フラグ 🇸🇱️ 5 5 501 -20 -フラッグ 🇸🇱️ 5 5 501 -20 -コッキ 🇸🇲️ 5 5 501 -20 -サンマリノ 🇸🇲️ 5 5 501 -20 -ハタ 🇸🇲️ 5 5 501 -20 -フラグ 🇸🇲️ 5 5 501 -20 -フラッグ 🇸🇲️ 5 5 501 -20 -コッキ 🇸🇳️ 5 5 501 -20 -セネガル 🇸🇳️ 5 5 501 -20 -ハタ 🇸🇳️ 5 5 501 -20 -フラグ 🇸🇳️ 5 5 501 -20 -フラッグ 🇸🇳️ 5 5 501 -20 -コッキ 🇸🇴️ 5 5 501 -20 -ソマリア 🇸🇴️ 5 5 501 -20 -ハタ 🇸🇴️ 5 5 501 -20 -フラグ 🇸🇴️ 5 5 501 -20 -フラッグ 🇸🇴️ 5 5 501 -20 -コッキ 🇸🇷️ 5 5 501 -20 -スリナム 🇸🇷️ 5 5 501 -20 -ハタ 🇸🇷️ 5 5 501 -20 -フラグ 🇸🇷️ 5 5 501 -20 -フラッグ 🇸🇷️ 5 5 501 -20 -コッキ 🇸🇸️ 5 5 501 -20 -ハタ 🇸🇸️ 5 5 501 -20 -フラグ 🇸🇸️ 5 5 501 -20 -フラッグ 🇸🇸️ 5 5 501 -20 -ミナミスーダン 🇸🇸️ 5 5 501 -20 -コッキ 🇸🇹️ 5 5 501 -20 -サントメプリンシペ 🇸🇹️ 5 5 501 -20 -サントメ・プリンシペ 🇸🇹️ 5 5 501 -20 -ハタ 🇸🇹️ 5 5 501 -20 -フラグ 🇸🇹️ 5 5 501 -20 -フラッグ 🇸🇹️ 5 5 501 -20 -エルサルバドル 🇸🇻️ 5 5 501 -20 -コッキ 🇸🇻️ 5 5 501 -20 -ハタ 🇸🇻️ 5 5 501 -20 -フラグ 🇸🇻️ 5 5 501 -20 -フラッグ 🇸🇻️ 5 5 501 -20 -コッキ 🇸🇽️ 5 5 501 -20 -シントマールテン 🇸🇽️ 5 5 501 -20 -シント・マールテン 🇸🇽️ 5 5 501 -20 -ハタ 🇸🇽️ 5 5 501 -20 -フラグ 🇸🇽️ 5 5 501 -20 -フラッグ 🇸🇽️ 5 5 501 -20 -コッキ 🇸🇾️ 5 5 501 -20 -シリア 🇸🇾️ 5 5 501 -20 -ハタ 🇸🇾️ 5 5 501 -20 -フラグ 🇸🇾️ 5 5 501 -20 -フラッグ 🇸🇾️ 5 5 501 -20 -エスワティニ 🇸🇿️ 5 5 501 -20 -コッキ 🇸🇿️ 5 5 501 -20 -スワジランド 🇸🇿️ 5 5 501 -20 -ハタ 🇸🇿️ 5 5 501 -20 -フラグ 🇸🇿️ 5 5 501 -20 -フラッグ 🇸🇿️ 5 5 501 -20 -コッキ 🇹🇦️ 5 5 501 -20 -トリスタンダクーニャ 🇹🇦️ 5 5 501 -20 -トリスタン・ダ・クーニャ 🇹🇦️ 5 5 501 -20 -ハタ 🇹🇦️ 5 5 501 -20 -フラグ 🇹🇦️ 5 5 501 -20 -フラッグ 🇹🇦️ 5 5 501 -20 -コッキ 🇹🇨️ 5 5 501 -20 -タークスカイコスショトウ 🇹🇨️ 5 5 501 -20 -ハタ 🇹🇨️ 5 5 501 -20 -フラグ 🇹🇨️ 5 5 501 -20 -フラッグ 🇹🇨️ 5 5 501 -20 -コッキ 🇹🇩️ 5 5 501 -20 -チャド 🇹🇩️ 5 5 501 -20 -ハタ 🇹🇩️ 5 5 501 -20 -フラグ 🇹🇩️ 5 5 501 -20 -フラッグ 🇹🇩️ 5 5 501 -20 -コッキ 🇹🇫️ 5 5 501 -20 -ハタ 🇹🇫️ 5 5 501 -20 -フツリョウキョクナンショトウ 🇹🇫️ 5 5 501 -20 -フラグ 🇹🇫️ 5 5 501 -20 -フラッグ 🇹🇫️ 5 5 501 -20 -コッキ 🇹🇬️ 5 5 501 -20 -トーゴ 🇹🇬️ 5 5 501 -20 -ハタ 🇹🇬️ 5 5 501 -20 -フラグ 🇹🇬️ 5 5 501 -20 -フラッグ 🇹🇬️ 5 5 501 -20 -コッキ 🇹🇭️ 5 5 501 -20 -タイ 🇹🇭️ 5 5 501 -20 -ハタ 🇹🇭️ 5 5 501 -20 -フラグ 🇹🇭️ 5 5 501 -20 -フラッグ 🇹🇭️ 5 5 501 -20 -コッキ 🇹🇯️ 5 5 501 -20 -タジキスタン 🇹🇯️ 5 5 501 -20 -ハタ 🇹🇯️ 5 5 501 -20 -フラグ 🇹🇯️ 5 5 501 -20 -フラッグ 🇹🇯️ 5 5 501 -20 -コッキ 🇹🇰️ 5 5 501 -20 -トケラウ 🇹🇰️ 5 5 501 -20 -ハタ 🇹🇰️ 5 5 501 -20 -フラグ 🇹🇰️ 5 5 501 -20 -フラッグ 🇹🇰️ 5 5 501 -20 -コッキ 🇹🇱️ 5 5 501 -20 -ハタ 🇹🇱️ 5 5 501 -20 -ヒガシティモール 🇹🇱️ 5 5 501 -20 -フラグ 🇹🇱️ 5 5 501 -20 -フラッグ 🇹🇱️ 5 5 501 -20 -コッキ 🇹🇲️ 5 5 501 -20 -トルクメニスタン 🇹🇲️ 5 5 501 -20 -ハタ 🇹🇲️ 5 5 501 -20 -フラグ 🇹🇲️ 5 5 501 -20 -フラッグ 🇹🇲️ 5 5 501 -20 -コッキ 🇹🇳️ 5 5 501 -20 -チュニジア 🇹🇳️ 5 5 501 -20 -ハタ 🇹🇳️ 5 5 501 -20 -フラグ 🇹🇳️ 5 5 501 -20 -フラッグ 🇹🇳️ 5 5 501 -20 -コッキ 🇹🇴️ 5 5 501 -20 -トンガ 🇹🇴️ 5 5 501 -20 -ハタ 🇹🇴️ 5 5 501 -20 -フラグ 🇹🇴️ 5 5 501 -20 -フラッグ 🇹🇴️ 5 5 501 -20 -コッキ 🇹🇷️ 5 5 501 -20 -トルコ 🇹🇷️ 5 5 501 -20 -ハタ 🇹🇷️ 5 5 501 -20 -フラグ 🇹🇷️ 5 5 501 -20 -フラッグ 🇹🇷️ 5 5 501 -20 -コッキ 🇹🇹️ 5 5 501 -20 -トリニダードトバゴ 🇹🇹️ 5 5 501 -20 -トリニダード・トバゴ 🇹🇹️ 5 5 501 -20 -ハタ 🇹🇹️ 5 5 501 -20 -フラグ 🇹🇹️ 5 5 501 -20 -フラッグ 🇹🇹️ 5 5 501 -20 -コッキ 🇹🇻️ 5 5 501 -20 -ツバル 🇹🇻️ 5 5 501 -20 -ハタ 🇹🇻️ 5 5 501 -20 -フラグ 🇹🇻️ 5 5 501 -20 -フラッグ 🇹🇻️ 5 5 501 -20 -コッキ 🇹🇼️ 5 5 501 -20 -タイワン 🇹🇼️ 5 5 501 -20 -ハタ 🇹🇼️ 5 5 501 -20 -フラグ 🇹🇼️ 5 5 501 -20 -フラッグ 🇹🇼️ 5 5 501 -20 -コッキ 🇹🇿️ 5 5 501 -20 -タンザニア 🇹🇿️ 5 5 501 -20 -ハタ 🇹🇿️ 5 5 501 -20 -フラグ 🇹🇿️ 5 5 501 -20 -フラッグ 🇹🇿️ 5 5 501 -20 -ウクライナ 🇺🇦️ 5 5 501 -20 -コッキ 🇺🇦️ 5 5 501 -20 -ハタ 🇺🇦️ 5 5 501 -20 -フラグ 🇺🇦️ 5 5 501 -20 -フラッグ 🇺🇦️ 5 5 501 -20 -ウガンダ 🇺🇬️ 5 5 501 -20 -コッキ 🇺🇬️ 5 5 501 -20 -ハタ 🇺🇬️ 5 5 501 -20 -フラグ 🇺🇬️ 5 5 501 -20 -フラッグ 🇺🇬️ 5 5 501 -20 -ガッシュウコクリョウユウショウリトウ 🇺🇲️ 5 5 501 -20 -コッキ 🇺🇲️ 5 5 501 -20 -ハタ 🇺🇲️ 5 5 501 -20 -フラグ 🇺🇲️ 5 5 501 -20 -フラッグ 🇺🇲️ 5 5 501 -20 -コクサイレンゴウ 🇺🇳️ 5 5 501 -20 -コクレン 🇺🇳️ 5 5 501 -20 -コッキ 🇺🇳️ 5 5 501 -20 -ハタ 🇺🇳️ 5 5 501 -20 -フラグ 🇺🇳️ 5 5 501 -20 -フラッグ 🇺🇳️ 5 5 501 -20 -アメリカ 🇺🇸️ 5 5 501 -20 -アメリカガッシュウコク 🇺🇸️ 5 5 501 -20 -コッキ 🇺🇸️ 5 5 501 -20 -ハタ 🇺🇸️ 5 5 501 -20 -フラグ 🇺🇸️ 5 5 501 -20 -フラッグ 🇺🇸️ 5 5 501 -20 -ウルグアイ 🇺🇾️ 5 5 501 -20 -コッキ 🇺🇾️ 5 5 501 -20 -ハタ 🇺🇾️ 5 5 501 -20 -フラグ 🇺🇾️ 5 5 501 -20 -フラッグ 🇺🇾️ 5 5 501 -20 -ウズベキスタン 🇺🇿️ 5 5 501 -20 -コッキ 🇺🇿️ 5 5 501 -20 -ハタ 🇺🇿️ 5 5 501 -20 -フラグ 🇺🇿️ 5 5 501 -20 -フラッグ 🇺🇿️ 5 5 501 -20 -コッキ 🇻🇦️ 5 5 501 -20 -ハタ 🇻🇦️ 5 5 501 -20 -バチカン 🇻🇦️ 5 5 501 -20 -バチカンシコク 🇻🇦️ 5 5 501 -20 -フラグ 🇻🇦️ 5 5 501 -20 -フラッグ 🇻🇦️ 5 5 501 -20 -コッキ 🇻🇨️ 5 5 501 -20 -セントビンセントオヨビグレナディーンショトウ 🇻🇨️ 5 5 501 -20 -ハタ 🇻🇨️ 5 5 501 -20 -フラグ 🇻🇨️ 5 5 501 -20 -フラッグ 🇻🇨️ 5 5 501 -20 -コッキ 🇻🇪️ 5 5 501 -20 -ハタ 🇻🇪️ 5 5 501 -20 -フラグ 🇻🇪️ 5 5 501 -20 -フラッグ 🇻🇪️ 5 5 501 -20 -ベネズエラ 🇻🇪️ 5 5 501 -20 -イギリスリョウヴァージンショトウ 🇻🇬️ 5 5 501 -20 -エイリョウヴァージンショトウ 🇻🇬️ 5 5 501 -20 -コッキ 🇻🇬️ 5 5 501 -20 -ハタ 🇻🇬️ 5 5 501 -20 -フラグ 🇻🇬️ 5 5 501 -20 -フラッグ 🇻🇬️ 5 5 501 -20 -アメリカリョウヴァージンショトウ 🇻🇮️ 5 5 501 -20 -コッキ 🇻🇮️ 5 5 501 -20 -ハタ 🇻🇮️ 5 5 501 -20 -フラグ 🇻🇮️ 5 5 501 -20 -フラッグ 🇻🇮️ 5 5 501 -20 -ベイリョウヴァージンショトウ 🇻🇮️ 5 5 501 -20 -コッキ 🇻🇳️ 5 5 501 -20 -ハタ 🇻🇳️ 5 5 501 -20 -フラグ 🇻🇳️ 5 5 501 -20 -フラッグ 🇻🇳️ 5 5 501 -20 -ベトナム 🇻🇳️ 5 5 501 -20 -コッキ 🇻🇺️ 5 5 501 -20 -ハタ 🇻🇺️ 5 5 501 -20 -バヌアツ 🇻🇺️ 5 5 501 -20 -フラグ 🇻🇺️ 5 5 501 -20 -フラッグ 🇻🇺️ 5 5 501 -20 -ウォリスフツナ 🇼🇫️ 5 5 501 -20 -ウォリス・フツナ 🇼🇫️ 5 5 501 -20 -コッキ 🇼🇫️ 5 5 501 -20 -ハタ 🇼🇫️ 5 5 501 -20 -フラグ 🇼🇫️ 5 5 501 -20 -フラッグ 🇼🇫️ 5 5 501 -20 -コッキ 🇼🇸️ 5 5 501 -20 -サモア 🇼🇸️ 5 5 501 -20 -ハタ 🇼🇸️ 5 5 501 -20 -フラグ 🇼🇸️ 5 5 501 -20 -フラッグ 🇼🇸️ 5 5 501 -20 -コソボ 🇽🇰️ 5 5 501 -20 -コッキ 🇽🇰️ 5 5 501 -20 -ハタ 🇽🇰️ 5 5 501 -20 -フラグ 🇽🇰️ 5 5 501 -20 -フラッグ 🇽🇰️ 5 5 501 -20 -イエメン 🇾🇪️ 5 5 501 -20 -コッキ 🇾🇪️ 5 5 501 -20 -ハタ 🇾🇪️ 5 5 501 -20 -フラグ 🇾🇪️ 5 5 501 -20 -フラッグ 🇾🇪️ 5 5 501 -20 -コッキ 🇾🇹️ 5 5 501 -20 -ハタ 🇾🇹️ 5 5 501 -20 -フラグ 🇾🇹️ 5 5 501 -20 -フラッグ 🇾🇹️ 5 5 501 -20 -マヨット 🇾🇹️ 5 5 501 -20 -コッキ 🇿🇦️ 5 5 501 -20 -ハタ 🇿🇦️ 5 5 501 -20 -フラグ 🇿🇦️ 5 5 501 -20 -フラッグ 🇿🇦️ 5 5 501 -20 -ミナミアフリカ 🇿🇦️ 5 5 501 -20 -コッキ 🇿🇲️ 5 5 501 -20 -ザンビア 🇿🇲️ 5 5 501 -20 -ハタ 🇿🇲️ 5 5 501 -20 -フラグ 🇿🇲️ 5 5 501 -20 -フラッグ 🇿🇲️ 5 5 501 -20 -コッキ 🇿🇼️ 5 5 501 -20 -ジンバブエ 🇿🇼️ 5 5 501 -20 -ハタ 🇿🇼️ 5 5 501 -20 -フラグ 🇿🇼️ 5 5 501 -20 -フラッグ 🇿🇼️ 5 5 501 -20 -イングランド 🏴󠁧󠁢󠁥󠁮󠁧󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁥󠁮󠁧󠁿️ 5 5 501 -20 -スコットランド 🏴󠁧󠁢󠁳󠁣󠁴󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁳󠁣󠁴󠁿️ 5 5 501 -20 -ウェールズ 🏴󠁧󠁢󠁷󠁬󠁳󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁷󠁬󠁳󠁿️ 5 5 501 -20 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E15.0.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E15.0.txt deleted file mode 100644 index 037cfec..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E15.0.txt +++ /dev/null @@ -1,8519 +0,0 @@ -エガオ 😀️ 5 5 501 -20 -カオ 😀️ 5 5 501 -20 -スマイル 😀️ 5 5 501 -20 -ニッコリ 😀️ 5 5 501 -20 -ニッコリワラウ 😀️ 5 5 501 -20 -ワラウ 😀️ 5 5 501 -20 -エガオ 😃️ 5 5 501 -20 -カオ 😃️ 5 5 501 -20 -スマイル 😃️ 5 5 501 -20 -ワーイ 😃️ 5 5 501 -20 -エガオ 😄️ 5 5 501 -20 -カオ 😄️ 5 5 501 -20 -スマイル 😄️ 5 5 501 -20 -ワーイ 😄️ 5 5 501 -20 -エガオ 😁️ 5 5 501 -20 -カオ 😁️ 5 5 501 -20 -スマイル 😁️ 5 5 501 -20 -ニヤットワラウ 😁️ 5 5 501 -20 -ワライ 😁️ 5 5 501 -20 -ワラウ 😁️ 5 5 501 -20 -ウレシイ 😆️ 5 5 501 -20 -エガオ 😆️ 5 5 501 -20 -カオ 😆️ 5 5 501 -20 -キャー 😆️ 5 5 501 -20 -スマイル 😆️ 5 5 501 -20 -マンゾク 😆️ 5 5 501 -20 -アセ 😅️ 5 5 501 -20 -エガオ 😅️ 5 5 501 -20 -カオ 😅️ 5 5 501 -20 -スマイル 😅️ 5 5 501 -20 -ヒヤアセ 😅️ 5 5 501 -20 -ヒヤアセエガオ 😅️ 5 5 501 -20 -ワーイ 😅️ 5 5 501 -20 -エガオ 🤣️ 5 5 501 -20 -カオ 🤣️ 5 5 501 -20 -スマイル 🤣️ 5 5 501 -20 -ワライコロゲル 🤣️ 5 5 501 -20 -ワラウ 🤣️ 5 5 501 -20 -ウレシナキ 😂️ 5 5 501 -20 -エガオ 😂️ 5 5 501 -20 -カオ 😂️ 5 5 501 -20 -スマイル 😂️ 5 5 501 -20 -ナミダ 😂️ 5 5 501 -20 -ワライ 😂️ 5 5 501 -20 -ワラウ 😂️ 5 5 501 -20 -エガオ 🙂️ 5 5 501 -20 -カオ 🙂️ 5 5 501 -20 -スマイル 🙂️ 5 5 501 -20 -ホホエミ 🙂️ 5 5 501 -20 -ホホエム 🙂️ 5 5 501 -20 -カオ 🙃️ 5 5 501 -20 -サカサマ 🙃️ 5 5 501 -20 -サカサマノカオ 🙃️ 5 5 501 -20 -エキタイ 🫠️ 5 5 501 -20 -カオ 🫠️ 5 5 501 -20 -トケソウ 🫠️ 5 5 501 -20 -トケテイルカオ 🫠️ 5 5 501 -20 -トケル 🫠️ 5 5 501 -20 -トロケル 🫠️ 5 5 501 -20 -トロトロ 🫠️ 5 5 501 -20 -ヨウカイ 🫠️ 5 5 501 -20 -ウィンク 😉️ 5 5 501 -20 -ウインク 😉️ 5 5 501 -20 -カオ 😉️ 5 5 501 -20 -エガオ 😊️ 5 5 501 -20 -カオ 😊️ 5 5 501 -20 -スマイル 😊️ 5 5 501 -20 -ニコニコ 😊️ 5 5 501 -20 -ホオヲアカラメル 😊️ 5 5 501 -20 -ホホエミ 😊️ 5 5 501 -20 -ホホヲアカラメル 😊️ 5 5 501 -20 -メヲホソメル 😊️ 5 5 501 -20 -エガオ 😇️ 5 5 501 -20 -カオ 😇️ 5 5 501 -20 -スマイル 😇️ 5 5 501 -20 -テンシ 😇️ 5 5 501 -20 -テンシノワ 😇️ 5 5 501 -20 -テンシノワガツイタエガオ 😇️ 5 5 501 -20 -エガオ 🥰️ 5 5 501 -20 -カオ 🥰️ 5 5 501 -20 -ハートノエガオ 🥰️ 5 5 501 -20 -ムチュウ 🥰️ 5 5 501 -20 -メロメロ 🥰️ 5 5 501 -20 -ラブ 🥰️ 5 5 501 -20 -エガオ 😍️ 5 5 501 -20 -カオ 😍️ 5 5 501 -20 -スマイル 😍️ 5 5 501 -20 -ハート 😍️ 5 5 501 -20 -メガハートノエガオ 😍️ 5 5 501 -20 -ラブ 😍️ 5 5 501 -20 -エガオ 🤩️ 5 5 501 -20 -カオ 🤩️ 5 5 501 -20 -スマイル 🤩️ 5 5 501 -20 -ホシ 🤩️ 5 5 501 -20 -メガホシノエガオ 🤩️ 5 5 501 -20 -カオ 😘️ 5 5 501 -20 -キス 😘️ 5 5 501 -20 -チュッ 😘️ 5 5 501 -20 -ナゲキッス 😘️ 5 5 501 -20 -ハート 😘️ 5 5 501 -20 -カオ 😗️ 5 5 501 -20 -キス 😗️ 5 5 501 -20 -チュッ 😗️ 5 5 501 -20 -エガオ ☺️️ 5 5 501 -20 -カオ ☺️️ 5 5 501 -20 -スマイリー ☺️️ 5 5 501 -20 -スマイル ☺️️ 5 5 501 -20 -ホッ ☺️️ 5 5 501 -20 -カオ 😚️ 5 5 501 -20 -キス 😚️ 5 5 501 -20 -チュッ 😚️ 5 5 501 -20 -メヲトジル 😚️ 5 5 501 -20 -エガオ 😙️ 5 5 501 -20 -カオ 😙️ 5 5 501 -20 -キス 😙️ 5 5 501 -20 -スマイル 😙️ 5 5 501 -20 -チュッ 😙️ 5 5 501 -20 -ニッコリキス 😙️ 5 5 501 -20 -ウレシナミダノカオ 🥲️ 5 5 501 -20 -カオ 🥲️ 5 5 501 -20 -カンドウ 🥲️ 5 5 501 -20 -ジーン 🥲️ 5 5 501 -20 -ナク 🥲️ 5 5 501 -20 -ナミダ 🥲️ 5 5 501 -20 -ウマイ 😋️ 5 5 501 -20 -エガオ 😋️ 5 5 501 -20 -オイシイ 😋️ 5 5 501 -20 -カオ 😋️ 5 5 501 -20 -スマイル 😋️ 5 5 501 -20 -ニコニコ 😋️ 5 5 501 -20 -ニコニコペロリ 😋️ 5 5 501 -20 -カオ 😛️ 5 5 501 -20 -シタ 😛️ 5 5 501 -20 -シタヲダシタカオ 😛️ 5 5 501 -20 -ベロ 😛️ 5 5 501 -20 -ベー 😛️ 5 5 501 -20 -アッカンベー 😜️ 5 5 501 -20 -カオ 😜️ 5 5 501 -20 -シタ 😜️ 5 5 501 -20 -ジョウダン 😜️ 5 5 501 -20 -ジョーク 😜️ 5 5 501 -20 -ベー 😜️ 5 5 501 -20 -オカシイ 🤪️ 5 5 501 -20 -カオ 🤪️ 5 5 501 -20 -ジョーク 🤪️ 5 5 501 -20 -フザケ 🤪️ 5 5 501 -20 -フザケタカオ 🤪️ 5 5 501 -20 -カオ 😝️ 5 5 501 -20 -シタ 😝️ 5 5 501 -20 -ベロ 😝️ 5 5 501 -20 -ベー 😝️ 5 5 501 -20 -メヲトジテベー 😝️ 5 5 501 -20 -ワーイ 😝️ 5 5 501 -20 -オカネノカオ 🤑️ 5 5 501 -20 -カオ 🤑️ 5 5 501 -20 -シタ 🤑️ 5 5 501 -20 -ベロ 🤑️ 5 5 501 -20 -ベー 🤑️ 5 5 501 -20 -エガオ 🤗️ 5 5 501 -20 -カオ 🤗️ 5 5 501 -20 -スマイル 🤗️ 5 5 501 -20 -ハグ 🤗️ 5 5 501 -20 -エガオ 🤭️ 5 5 501 -20 -カオ 🤭️ 5 5 501 -20 -クスクス 🤭️ 5 5 501 -20 -クチニテヲアテタカオ 🤭️ 5 5 501 -20 -スマイル 🤭️ 5 5 501 -20 -ナイショ 🤭️ 5 5 501 -20 -イワナイ 🫢️ 5 5 501 -20 -エッ 🫢️ 5 5 501 -20 -オソレ 🫢️ 5 5 501 -20 -オドロキ 🫢️ 5 5 501 -20 -オノノキ 🫢️ 5 5 501 -20 -カオ 🫢️ 5 5 501 -20 -ヒミツ 🫢️ 5 5 501 -20 -ビックリ 🫢️ 5 5 501 -20 -メヲアケテクチニテヲアテタカオ 🫢️ 5 5 501 -20 -カオ 🫣️ 5 5 501 -20 -キニナル 🫣️ 5 5 501 -20 -コワイモノミタサ 🫣️ 5 5 501 -20 -コワゴワ 🫣️ 5 5 501 -20 -ヌスミミ 🫣️ 5 5 501 -20 -ノゾキミ 🫣️ 5 5 501 -20 -ハズカシイ 🫣️ 5 5 501 -20 -ユビノマカラノゾキミルカオ 🫣️ 5 5 501 -20 -カオ 🤫️ 5 5 501 -20 -シズカニ 🤫️ 5 5 501 -20 -シッ 🤫️ 5 5 501 -20 -シー 🤫️ 5 5 501 -20 -シーッ 🤫️ 5 5 501 -20 -ダマレ 🤫️ 5 5 501 -20 -ウーン 🤔️ 5 5 501 -20 -カオ 🤔️ 5 5 501 -20 -カンガエチュウ 🤔️ 5 5 501 -20 -カンガエル 🤔️ 5 5 501 -20 -カンガエルカオ 🤔️ 5 5 501 -20 -イエッサー 🫡️ 5 5 501 -20 -オーケー 🫡️ 5 5 501 -20 -カオ 🫡️ 5 5 501 -20 -グンタイ 🫡️ 5 5 501 -20 -ケイレイ 🫡️ 5 5 501 -20 -ケイレイスルカオ 🫡️ 5 5 501 -20 -ショウチ 🫡️ 5 5 501 -20 -リョウカイ 🫡️ 5 5 501 -20 -ワカッタ 🫡️ 5 5 501 -20 -カオ 🤐️ 5 5 501 -20 -クチ 🤐️ 5 5 501 -20 -クチチャック 🤐️ 5 5 501 -20 -チャック 🤐️ 5 5 501 -20 -ウタガイ 🤨️ 5 5 501 -20 -オドロキ 🤨️ 5 5 501 -20 -カオ 🤨️ 5 5 501 -20 -マユヲアゲタカオ 🤨️ 5 5 501 -20 -カオ 😐️ 5 5 501 -20 -ポーカーフェイス 😐️ 5 5 501 -20 -ムヒョウジョウ 😐️ 5 5 501 -20 -カオ 😑️ 5 5 501 -20 -ムカンジョウ 😑️ 5 5 501 -20 -ムヒョウジョウ 😑️ 5 5 501 -20 -カオ 😶️ 5 5 501 -20 -クチナシ 😶️ 5 5 501 -20 -クチノナイカオ 😶️ 5 5 501 -20 -ダンマリ 😶️ 5 5 501 -20 -チンモク 😶️ 5 5 501 -20 -ウチキ 🫥️ 5 5 501 -20 -カオ 🫥️ 5 5 501 -20 -テンセンノカオ 🫥️ 5 5 501 -20 -ナイコウテキ 🫥️ 5 5 501 -20 -ムムム 🫥️ 5 5 501 -20 -ユウウツ 🫥️ 5 5 501 -20 -ラクタン 🫥️ 5 5 501 -20 -ウワノソラ 😶‍🌫️️ 5 5 501 -20 -カオ 😶‍🌫️️ 5 5 501 -20 -クモ 😶‍🌫️️ 5 5 501 -20 -クモノナカ 😶‍🌫️️ 5 5 501 -20 -クモノナカノカオ 😶‍🌫️️ 5 5 501 -20 -コッソリ 😶‍🌫️️ 5 5 501 -20 -ホウシンジョウタイ 😶‍🌫️️ 5 5 501 -20 -ボンヤリ 😶‍🌫️️ 5 5 501 -20 -ムチュウ 😶‍🌫️️ 5 5 501 -20 -ウスワライヲスルカオ 😏️ 5 5 501 -20 -カオ 😏️ 5 5 501 -20 -ニヤリ 😏️ 5 5 501 -20 -フッ 😏️ 5 5 501 -20 -カオ 😒️ 5 5 501 -20 -シラケ 😒️ 5 5 501 -20 -シラケタ 😒️ 5 5 501 -20 -シラケル 😒️ 5 5 501 -20 -ジトメ 😒️ 5 5 501 -20 -ウエヲミルカオ 🙄️ 5 5 501 -20 -ウワメ 🙄️ 5 5 501 -20 -カオ 🙄️ 5 5 501 -20 -イー 😬️ 5 5 501 -20 -カオ 😬️ 5 5 501 -20 -シカメガオ 😬️ 5 5 501 -20 -シカメッツラ 😬️ 5 5 501 -20 -シカメツラ 😬️ 5 5 501 -20 -アキラメ 😮‍💨️ 5 5 501 -20 -アンシン 😮‍💨️ 5 5 501 -20 -イキヲハクカオ 😮‍💨️ 5 5 501 -20 -カオ 😮‍💨️ 5 5 501 -20 -コキュウ 😮‍💨️ 5 5 501 -20 -タメイキ 😮‍💨️ 5 5 501 -20 -ハァ 😮‍💨️ 5 5 501 -20 -ヒトアンシン 😮‍💨️ 5 5 501 -20 -ホットシタ 😮‍💨️ 5 5 501 -20 -ウソツキ 🤥️ 5 5 501 -20 -ウソツキノカオ 🤥️ 5 5 501 -20 -カオ 🤥️ 5 5 501 -20 -ピノキオノカオ 🤥️ 5 5 501 -20 -カオ 🫨️ 5 5 501 -20 -コワイ 🫨️ 5 5 501 -20 -ショック 🫨️ 5 5 501 -20 -シンドウ 🫨️ 5 5 501 -20 -ジシン 🫨️ 5 5 501 -20 -ビクビク 🫨️ 5 5 501 -20 -フルエテイル 🫨️ 5 5 501 -20 -フルエテイルカオ 🫨️ 5 5 501 -20 -フルエルカオ 🫨️ 5 5 501 -20 -ブルブル 🫨️ 5 5 501 -20 -アンシン 😌️ 5 5 501 -20 -カオ 😌️ 5 5 501 -20 -ホッ 😌️ 5 5 501 -20 -ホットシタカオ 😌️ 5 5 501 -20 -カオ 😔️ 5 5 501 -20 -ショボーン 😔️ 5 5 501 -20 -ションボリ 😔️ 5 5 501 -20 -カオ 😪️ 5 5 501 -20 -ネムイ 😪️ 5 5 501 -20 -ネムル 😪️ 5 5 501 -20 -ネル 😪️ 5 5 501 -20 -カオ 🤤️ 5 5 501 -20 -ヨダレ 🤤️ 5 5 501 -20 -ヨダレヲタラシタカオ 🤤️ 5 5 501 -20 -zzz 😴️ 5 5 501 -20 -カオ 😴️ 5 5 501 -20 -ネムイ 😴️ 5 5 501 -20 -ネムル 😴️ 5 5 501 -20 -ネル 😴️ 5 5 501 -20 -カオ 😷️ 5 5 501 -20 -カゼ 😷️ 5 5 501 -20 -カフンショウ 😷️ 5 5 501 -20 -ビョウキ 😷️ 5 5 501 -20 -マスク 😷️ 5 5 501 -20 -マスクガオ 😷️ 5 5 501 -20 -カオ 🤒️ 5 5 501 -20 -カゼ 🤒️ 5 5 501 -20 -タイオンケイ 🤒️ 5 5 501 -20 -ネツガアルカオ 🤒️ 5 5 501 -20 -ネツヲハカル 🤒️ 5 5 501 -20 -ビョウキ 🤒️ 5 5 501 -20 -カオ 🤕️ 5 5 501 -20 -ケガ 🤕️ 5 5 501 -20 -ケガシテルカオ 🤕️ 5 5 501 -20 -ホウタイ 🤕️ 5 5 501 -20 -ホウタイヲマイタカオ 🤕️ 5 5 501 -20 -カオ 🤢️ 5 5 501 -20 -キモチワルイ 🤢️ 5 5 501 -20 -グアイノワルイカオ 🤢️ 5 5 501 -20 -ハキケヲモヨオシテイルカオ 🤢️ 5 5 501 -20 -ビョウキ 🤢️ 5 5 501 -20 -オウトスルカオ 🤮️ 5 5 501 -20 -カオ 🤮️ 5 5 501 -20 -キモチワルイ 🤮️ 5 5 501 -20 -ゲロ 🤮️ 5 5 501 -20 -ビョウキ 🤮️ 5 5 501 -20 -カオ 🤧️ 5 5 501 -20 -カゼ 🤧️ 5 5 501 -20 -カフンショウ 🤧️ 5 5 501 -20 -クシャミ 🤧️ 5 5 501 -20 -クシャミスルカオ 🤧️ 5 5 501 -20 -アカイカオ 🥵️ 5 5 501 -20 -アセ 🥵️ 5 5 501 -20 -アツイカオ 🥵️ 5 5 501 -20 -アツサ 🥵️ 5 5 501 -20 -ネッチュウショウ 🥵️ 5 5 501 -20 -ハツネツ 🥵️ 5 5 501 -20 -アオイカオ 🥶️ 5 5 501 -20 -コゴエ 🥶️ 5 5 501 -20 -サムイカオ 🥶️ 5 5 501 -20 -サムサ 🥶️ 5 5 501 -20 -シモヤケ 🥶️ 5 5 501 -20 -ツララ 🥶️ 5 5 501 -20 -ウツロナメ 🥴️ 5 5 501 -20 -チュウドク 🥴️ 5 5 501 -20 -フラフラノカオ 🥴️ 5 5 501 -20 -ベロンベロン 🥴️ 5 5 501 -20 -ホロヨイ 🥴️ 5 5 501 -20 -メマイ 🥴️ 5 5 501 -20 -カオ 😵️ 5 5 501 -20 -フラフラ 😵️ 5 5 501 -20 -メマイ 😵️ 5 5 501 -20 -ウズマキ 😵‍💫️ 5 5 501 -20 -カオ 😵‍💫️ 5 5 501 -20 -グルグル 😵‍💫️ 5 5 501 -20 -コマル 😵‍💫️ 5 5 501 -20 -コンラン 😵‍💫️ 5 5 501 -20 -フラフラ 😵‍💫️ 5 5 501 -20 -メガグルグル 😵‍💫️ 5 5 501 -20 -メガマワル 😵‍💫️ 5 5 501 -20 -メマイ 😵‍💫️ 5 5 501 -20 -メヲマワシタカオ 😵‍💫️ 5 5 501 -20 -アタマバクハツ 🤯️ 5 5 501 -20 -オドロキ 🤯️ 5 5 501 -20 -カオ 🤯️ 5 5 501 -20 -ショック 🤯️ 5 5 501 -20 -バクハツ 🤯️ 5 5 501 -20 -ボンッ 🤯️ 5 5 501 -20 -カウガール 🤠️ 5 5 501 -20 -カウボーイ 🤠️ 5 5 501 -20 -カウボーイノカオ 🤠️ 5 5 501 -20 -カオ 🤠️ 5 5 501 -20 -オイワイ 🥳️ 5 5 501 -20 -パーティー 🥳️ 5 5 501 -20 -パーティーノカオ 🥳️ 5 5 501 -20 -フエ 🥳️ 5 5 501 -20 -ボウシ 🥳️ 5 5 501 -20 -カオ 🥸️ 5 5 501 -20 -カソウ 🥸️ 5 5 501 -20 -ヒゲ 🥸️ 5 5 501 -20 -ヘンソウ 🥸️ 5 5 501 -20 -ヘンソウシタカオ 🥸️ 5 5 501 -20 -メガネ 🥸️ 5 5 501 -20 -エガオ 😎️ 5 5 501 -20 -カオ 😎️ 5 5 501 -20 -クール 😎️ 5 5 501 -20 -サングラスデエガオ 😎️ 5 5 501 -20 -スマイル 😎️ 5 5 501 -20 -オタク 🤓️ 5 5 501 -20 -カオ 🤓️ 5 5 501 -20 -マニア 🤓️ 5 5 501 -20 -メガネ 🤓️ 5 5 501 -20 -カオ 🧐️ 5 5 501 -20 -カタメガネ 🧐️ 5 5 501 -20 -カンガエル 🧐️ 5 5 501 -20 -メガネ 🧐️ 5 5 501 -20 -モノクルヲツケタカオ 🧐️ 5 5 501 -20 -カオ 😕️ 5 5 501 -20 -コンラン 😕️ 5 5 501 -20 -コンワク 😕️ 5 5 501 -20 -カオ 🫤️ 5 5 501 -20 -ガッカリ 🫤️ 5 5 501 -20 -クチガナナメノカオ 🫤️ 5 5 501 -20 -コンワク 🫤️ 5 5 501 -20 -フフク 🫤️ 5 5 501 -20 -フマン 🫤️ 5 5 501 -20 -ムカンシン 🫤️ 5 5 501 -20 -ムキリョク 🫤️ 5 5 501 -20 -カオ 😟️ 5 5 501 -20 -シンパイ 😟️ 5 5 501 -20 -ナヤムカオ 😟️ 5 5 501 -20 -カオ 🙁️ 5 5 501 -20 -コマッタ 🙁️ 5 5 501 -20 -シカメッツラ 🙁️ 5 5 501 -20 -シカメツラ 🙁️ 5 5 501 -20 -スコシコマッタ 🙁️ 5 5 501 -20 -スコシコマッタカオ 🙁️ 5 5 501 -20 -カオ ☹️️ 5 5 501 -20 -コマッタ ☹️️ 5 5 501 -20 -コマッタカオ ☹️️ 5 5 501 -20 -シカメッツラ ☹️️ 5 5 501 -20 -シカメツラ ☹️️ 5 5 501 -20 -カオ 😮️ 5 5 501 -20 -キョウカン 😮️ 5 5 501 -20 -クチガヒライタカオ 😮️ 5 5 501 -20 -ヘー 😮️ 5 5 501 -20 -オドロキ 😯️ 5 5 501 -20 -カオ 😯️ 5 5 501 -20 -ビックリ 😯️ 5 5 501 -20 -ビックリガオ 😯️ 5 5 501 -20 -ポカーン 😯️ 5 5 501 -20 -オドロキ 😲️ 5 5 501 -20 -カオ 😲️ 5 5 501 -20 -キョウガク 😲️ 5 5 501 -20 -ビックリ 😲️ 5 5 501 -20 -ビックリシタカオ 😲️ 5 5 501 -20 -アカクナル 😳️ 5 5 501 -20 -カオ 😳️ 5 5 501 -20 -セキメン 😳️ 5 5 501 -20 -ウッタエルヨウナカオ 🥺️ 5 5 501 -20 -カオ 🥺️ 5 5 501 -20 -コイヌノメ 🥺️ 5 5 501 -20 -コンガン 🥺️ 5 5 501 -20 -ナサケ 🥺️ 5 5 501 -20 -ピエン 🥺️ 5 5 501 -20 -アリガトウ 🥹️ 5 5 501 -20 -ウルウル 🥹️ 5 5 501 -20 -ウレシイ 🥹️ 5 5 501 -20 -ウレシナミダ 🥹️ 5 5 501 -20 -カオ 🥹️ 5 5 501 -20 -コンガン 🥹️ 5 5 501 -20 -ナキガオ 🥹️ 5 5 501 -20 -ナミダ 🥹️ 5 5 501 -20 -ナミダヲコラエタカオ 🥹️ 5 5 501 -20 -アキレガオ 😦️ 5 5 501 -20 -カオ 😦️ 5 5 501 -20 -シカメガオ 😦️ 5 5 501 -20 -シカメッツラ 😦️ 5 5 501 -20 -シカメツラ 😦️ 5 5 501 -20 -フホンイ 😦️ 5 5 501 -20 -フマン 😦️ 5 5 501 -20 -カオ 😧️ 5 5 501 -20 -クノウ 😧️ 5 5 501 -20 -クモン 😧️ 5 5 501 -20 -アオザメ 😨️ 5 5 501 -20 -カオ 😨️ 5 5 501 -20 -ガーン 😨️ 5 5 501 -20 -アオザメ 😰️ 5 5 501 -20 -カオ 😰️ 5 5 501 -20 -ヒヤアセ 😰️ 5 5 501 -20 -ヒヤアセアオザメ 😰️ 5 5 501 -20 -アセ 😥️ 5 5 501 -20 -カオ 😥️ 5 5 501 -20 -コマッタ 😥️ 5 5 501 -20 -ドウシヨウ 😥️ 5 5 501 -20 -カオ 😢️ 5 5 501 -20 -カナシイ 😢️ 5 5 501 -20 -ナキガオ 😢️ 5 5 501 -20 -ナク 😢️ 5 5 501 -20 -ナミダ 😢️ 5 5 501 -20 -オオナキ 😭️ 5 5 501 -20 -カオ 😭️ 5 5 501 -20 -カナシイ 😭️ 5 5 501 -20 -ゴウキュウ 😭️ 5 5 501 -20 -ナク 😭️ 5 5 501 -20 -ナミダ 😭️ 5 5 501 -20 -カオ 😱️ 5 5 501 -20 -ガーン 😱️ 5 5 501 -20 -キョウフ 😱️ 5 5 501 -20 -サケビ 😱️ 5 5 501 -20 -ショック 😱️ 5 5 501 -20 -カオ 😖️ 5 5 501 -20 -コンラン 😖️ 5 5 501 -20 -コンワク 😖️ 5 5 501 -20 -コンワクシタカオ 😖️ 5 5 501 -20 -カオ 😣️ 5 5 501 -20 -ガマン 😣️ 5 5 501 -20 -カオ 😞️ 5 5 501 -20 -ガッカリ 😞️ 5 5 501 -20 -ガックリ 😞️ 5 5 501 -20 -シツボウシタカオ 😞️ 5 5 501 -20 -アセ 😓️ 5 5 501 -20 -カオ 😓️ 5 5 501 -20 -キモヲヒヤシタ 😓️ 5 5 501 -20 -ヒヤアセ 😓️ 5 5 501 -20 -アキラメ 😩️ 5 5 501 -20 -カオ 😩️ 5 5 501 -20 -ツカレ 😩️ 5 5 501 -20 -カオ 😫️ 5 5 501 -20 -ゲンカイ 😫️ 5 5 501 -20 -ツカレ 😫️ 5 5 501 -20 -ツカレタ 😫️ 5 5 501 -20 -アクビシタカオ 🥱️ 5 5 501 -20 -カオ 🥱️ 5 5 501 -20 -タイクツ 🥱️ 5 5 501 -20 -ツカレ 🥱️ 5 5 501 -20 -ネムイ 🥱️ 5 5 501 -20 -フアー 🥱️ 5 5 501 -20 -カオ 😤️ 5 5 501 -20 -カチホコッタカオ 😤️ 5 5 501 -20 -トクイゲ 😤️ 5 5 501 -20 -ハナイキ 😤️ 5 5 501 -20 -フンッ 😤️ 5 5 501 -20 -イカリ 😡️ 5 5 501 -20 -カオ 😡️ 5 5 501 -20 -カンカン 😡️ 5 5 501 -20 -ゲキド 😡️ 5 5 501 -20 -フクレッツラ 😡️ 5 5 501 -20 -プンプン 😡️ 5 5 501 -20 -イカリ 😠️ 5 5 501 -20 -カオ 😠️ 5 5 501 -20 -プンプン 😠️ 5 5 501 -20 -イカリ 🤬️ 5 5 501 -20 -カオ 🤬️ 5 5 501 -20 -ノノシリ 🤬️ 5 5 501 -20 -ノノシル 🤬️ 5 5 501 -20 -アクマ 😈️ 5 5 501 -20 -エガオ 😈️ 5 5 501 -20 -カオ 😈️ 5 5 501 -20 -スマイル 😈️ 5 5 501 -20 -デビル 😈️ 5 5 501 -20 -ワラッタアクマ 😈️ 5 5 501 -20 -アクマ 👿️ 5 5 501 -20 -オコッタアクマ 👿️ 5 5 501 -20 -カオ 👿️ 5 5 501 -20 -カンカン 👿️ 5 5 501 -20 -ゲキド 👿️ 5 5 501 -20 -デビル 👿️ 5 5 501 -20 -カオ 💀️ 5 5 501 -20 -ガイコツ 💀️ 5 5 501 -20 -シ 💀️ 5 5 501 -20 -スカル 💀️ 5 5 501 -20 -ドクロ 💀️ 5 5 501 -20 -カオ ☠️️ 5 5 501 -20 -ガイコツ ☠️️ 5 5 501 -20 -スカル ☠️️ 5 5 501 -20 -ドクロ ☠️️ 5 5 501 -20 -ドクロトホネ ☠️️ 5 5 501 -20 -ウンコ 💩️ 5 5 501 -20 -ウンチ 💩️ 5 5 501 -20 -カオ 💩️ 5 5 501 -20 -カオ 🤡️ 5 5 501 -20 -ピエロ 🤡️ 5 5 501 -20 -ピエロノカオ 🤡️ 5 5 501 -20 -オニ 👹️ 5 5 501 -20 -オメン 👹️ 5 5 501 -20 -カオ 👹️ 5 5 501 -20 -ナマハゲ 👹️ 5 5 501 -20 -バケモノ 👹️ 5 5 501 -20 -オメン 👺️ 5 5 501 -20 -カオ 👺️ 5 5 501 -20 -テング 👺️ 5 5 501 -20 -オバケ 👻️ 5 5 501 -20 -ゴースト 👻️ 5 5 501 -20 -ユウレイ 👻️ 5 5 501 -20 -ユーレイ 👻️ 5 5 501 -20 -イセイジン 👽️ 5 5 501 -20 -ウチュウジン 👽️ 5 5 501 -20 -エイリアン 👽️ 5 5 501 -20 -カオ 👽️ 5 5 501 -20 -グレイ 👽️ 5 5 501 -20 -ユーフォー 👽️ 5 5 501 -20 -イセイジン 👾️ 5 5 501 -20 -インベーダー 👾️ 5 5 501 -20 -ウチュウジン 👾️ 5 5 501 -20 -エイリアン 👾️ 5 5 501 -20 -カオ 👾️ 5 5 501 -20 -モンスター 👾️ 5 5 501 -20 -カオ 🤖️ 5 5 501 -20 -ロボット 🤖️ 5 5 501 -20 -エガオ 😺️ 5 5 501 -20 -カオ 😺️ 5 5 501 -20 -スマイル 😺️ 5 5 501 -20 -ニッコリワラウネコ 😺️ 5 5 501 -20 -ネコ 😺️ 5 5 501 -20 -エガオ 😸️ 5 5 501 -20 -カオ 😸️ 5 5 501 -20 -スマイル 😸️ 5 5 501 -20 -ニヤットワラウネコ 😸️ 5 5 501 -20 -ネコ 😸️ 5 5 501 -20 -ワラウ 😸️ 5 5 501 -20 -ウレシナキスルネコ 😹️ 5 5 501 -20 -エガオ 😹️ 5 5 501 -20 -カオ 😹️ 5 5 501 -20 -スマイル 😹️ 5 5 501 -20 -ナミダ 😹️ 5 5 501 -20 -ネコ 😹️ 5 5 501 -20 -エガオ 😻️ 5 5 501 -20 -カオ 😻️ 5 5 501 -20 -スマイル 😻️ 5 5 501 -20 -ネコ 😻️ 5 5 501 -20 -ハート 😻️ 5 5 501 -20 -メガハートノネコ 😻️ 5 5 501 -20 -カオ 😼️ 5 5 501 -20 -ニヤリ 😼️ 5 5 501 -20 -ニヤリトスルネコ 😼️ 5 5 501 -20 -ネコ 😼️ 5 5 501 -20 -フッ 😼️ 5 5 501 -20 -カオ 😽️ 5 5 501 -20 -キス 😽️ 5 5 501 -20 -チュッ 😽️ 5 5 501 -20 -ネコ 😽️ 5 5 501 -20 -ネコノキス 😽️ 5 5 501 -20 -カオ 🙀️ 5 5 501 -20 -ガーン 🙀️ 5 5 501 -20 -ショック 🙀️ 5 5 501 -20 -ゼツボウスルネコ 🙀️ 5 5 501 -20 -ネコ 🙀️ 5 5 501 -20 -ビックリ 🙀️ 5 5 501 -20 -カオ 😿️ 5 5 501 -20 -カナシイ 😿️ 5 5 501 -20 -ナイテイルネコ 😿️ 5 5 501 -20 -ナミダ 😿️ 5 5 501 -20 -ネコ 😿️ 5 5 501 -20 -カオ 😾️ 5 5 501 -20 -ネコ 😾️ 5 5 501 -20 -フキゲン 😾️ 5 5 501 -20 -フキゲンナネコ 😾️ 5 5 501 -20 -プンプン 😾️ 5 5 501 -20 -サル 🙈️ 5 5 501 -20 -サンザル 🙈️ 5 5 501 -20 -ミザル 🙈️ 5 5 501 -20 -キカザル 🙉️ 5 5 501 -20 -サル 🙉️ 5 5 501 -20 -サンザル 🙉️ 5 5 501 -20 -イワザル 🙊️ 5 5 501 -20 -サル 🙊️ 5 5 501 -20 -サンザル 🙊️ 5 5 501 -20 -コイブミ 💌️ 5 5 501 -20 -テガミ 💌️ 5 5 501 -20 -ハート 💌️ 5 5 501 -20 -フウトウ 💌️ 5 5 501 -20 -ラブレター 💌️ 5 5 501 -20 -キューピッド 💘️ 5 5 501 -20 -ハート 💘️ 5 5 501 -20 -ハートニヤ 💘️ 5 5 501 -20 -ハートノヤ 💘️ 5 5 501 -20 -ヤ 💘️ 5 5 501 -20 -ハート 💝️ 5 5 501 -20 -ハートニリボン 💝️ 5 5 501 -20 -バレンタイン 💝️ 5 5 501 -20 -バレンタインデー 💝️ 5 5 501 -20 -リボン 💝️ 5 5 501 -20 -キラキラ 💖️ 5 5 501 -20 -キラキラハート 💖️ 5 5 501 -20 -ハート 💖️ 5 5 501 -20 -ピカピカハート 💖️ 5 5 501 -20 -オオキクナルハート 💗️ 5 5 501 -20 -トキメキ 💗️ 5 5 501 -20 -ドキドキ 💗️ 5 5 501 -20 -ハート 💗️ 5 5 501 -20 -ドキドキ 💓️ 5 5 501 -20 -ドキドキスルハート 💓️ 5 5 501 -20 -ハート 💓️ 5 5 501 -20 -カイテンスルハート 💞️ 5 5 501 -20 -カワイイ 💞️ 5 5 501 -20 -ハート 💞️ 5 5 501 -20 -2ツノハート 💕️ 5 5 501 -20 -ハート 💕️ 5 5 501 -20 -フタツノハート 💕️ 5 5 501 -20 -ラブ 💕️ 5 5 501 -20 -ハート 💟️ 5 5 501 -20 -ハートデコ 💟️ 5 5 501 -20 -ハートデコレーション 💟️ 5 5 501 -20 -エクスクラメーションマーク ❣️️ 5 5 501 -20 -ハート ❣️️ 5 5 501 -20 -ハートノビックリ ❣️️ 5 5 501 -20 -ビックリマーク ❣️️ 5 5 501 -20 -シツレン 💔️ 5 5 501 -20 -ハート 💔️ 5 5 501 -20 -ハートブレイク 💔️ 5 5 501 -20 -ワカレタ 💔️ 5 5 501 -20 -ワレタハート 💔️ 5 5 501 -20 -アイ ❤️‍🔥️ 5 5 501 -20 -セイナルシンゾウ ❤️‍🔥️ 5 5 501 -20 -ネツイ ❤️‍🔥️ 5 5 501 -20 -ハート ❤️‍🔥️ 5 5 501 -20 -ヒノツイタ ❤️‍🔥️ 5 5 501 -20 -フンキ ❤️‍🔥️ 5 5 501 -20 -ホノオ ❤️‍🔥️ 5 5 501 -20 -モエルハート ❤️‍🔥️ 5 5 501 -20 -ヤルキ ❤️‍🔥️ 5 5 501 -20 -カイフクチュウ ❤️‍🩹️ 5 5 501 -20 -キズツイタ ❤️‍🩹️ 5 5 501 -20 -ケガ ❤️‍🩹️ 5 5 501 -20 -ショウシン ❤️‍🩹️ 5 5 501 -20 -チリョウチュウ ❤️‍🩹️ 5 5 501 -20 -ツライ ❤️‍🩹️ 5 5 501 -20 -ドウジョウ ❤️‍🩹️ 5 5 501 -20 -ハート ❤️‍🩹️ 5 5 501 -20 -ホウタイ ❤️‍🩹️ 5 5 501 -20 -ホウタイヲマイタハート ❤️‍🩹️ 5 5 501 -20 -アカイハート ❤️️ 5 5 501 -20 -クロハート ❤️️ 5 5 501 -20 -ハート ❤️️ 5 5 501 -20 -ハートマーク ❤️️ 5 5 501 -20 -カワイイ 🩷️ 5 5 501 -20 -スキ 🩷️ 5 5 501 -20 -ハート 🩷️ 5 5 501 -20 -ピンク 🩷️ 5 5 501 -20 -ピンクノハート 🩷️ 5 5 501 -20 -ラブ 🩷️ 5 5 501 -20 -オレンジノハート 🧡️ 5 5 501 -20 -ハート 🧡️ 5 5 501 -20 -キイロノハート 💛️ 5 5 501 -20 -ハート 💛️ 5 5 501 -20 -ハート 💚️ 5 5 501 -20 -ミドリノハート 💚️ 5 5 501 -20 -アオイハート 💙️ 5 5 501 -20 -ハート 💙️ 5 5 501 -20 -ウスイアオ 🩵️ 5 5 501 -20 -ウスイアオノハート 🩵️ 5 5 501 -20 -シアン 🩵️ 5 5 501 -20 -ティールブルー 🩵️ 5 5 501 -20 -ハート 🩵️ 5 5 501 -20 -ミズイロノハート 🩵️ 5 5 501 -20 -ハート 💜️ 5 5 501 -20 -ムラサキノハート 💜️ 5 5 501 -20 -チャイロイハート 🤎️ 5 5 501 -20 -ハート 🤎️ 5 5 501 -20 -クロイハート 🖤️ 5 5 501 -20 -ハート 🖤️ 5 5 501 -20 -ギンイロ 🩶️ 5 5 501 -20 -スレートグレー 🩶️ 5 5 501 -20 -ハイイロ 🩶️ 5 5 501 -20 -ハイイロノハート 🩶️ 5 5 501 -20 -ハート 🩶️ 5 5 501 -20 -シロイハート 🤍️ 5 5 501 -20 -ハート 🤍️ 5 5 501 -20 -キス 💋️ 5 5 501 -20 -キスマーク 💋️ 5 5 501 -20 -クチビル 💋️ 5 5 501 -20 -チュッ 💋️ 5 5 501 -20 -100 💯️ 5 5 501 -20 -100テン 💯️ 5 5 501 -20 -100テンマンテン 💯️ 5 5 501 -20 -ゼンモンセイカイ 💯️ 5 5 501 -20 -ヒャクテンマンテン 💯️ 5 5 501 -20 -マンテン 💯️ 5 5 501 -20 -イカリ 💢️ 5 5 501 -20 -ムカッ 💢️ 5 5 501 -20 -ショウゲキ 💥️ 5 5 501 -20 -ショウトツ 💥️ 5 5 501 -20 -ドンッ 💥️ 5 5 501 -20 -クラクラ 💫️ 5 5 501 -20 -ホシ 💫️ 5 5 501 -20 -メガマワル 💫️ 5 5 501 -20 -アセ 💦️ 5 5 501 -20 -アセアセ 💦️ 5 5 501 -20 -イソグ 💨️ 5 5 501 -20 -イソゲ 💨️ 5 5 501 -20 -ダッシュ 💨️ 5 5 501 -20 -ハシル 💨️ 5 5 501 -20 -アナ 🕳️️ 5 5 501 -20 -カイワ 💬️ 5 5 501 -20 -カイワノフキダシ 💬️ 5 5 501 -20 -セリフ 💬️ 5 5 501 -20 -フキダシ 💬️ 5 5 501 -20 -フキダシ 👁️‍🗨️️ 5 5 501 -20 -フキダシノメ 👁️‍🗨️️ 5 5 501 -20 -メ 👁️‍🗨️️ 5 5 501 -20 -モクゲキ 👁️‍🗨️️ 5 5 501 -20 -カイワ 🗨️️ 5 5 501 -20 -セリフ 🗨️️ 5 5 501 -20 -フキダシ 🗨️️ 5 5 501 -20 -フキダシヒダリ 🗨️️ 5 5 501 -20 -イカリノフキダシ 🗯️️ 5 5 501 -20 -フキダシ 🗯️️ 5 5 501 -20 -カンガエゴト 💭️ 5 5 501 -20 -クモガタノフキダシ 💭️ 5 5 501 -20 -フキダシ 💭️ 5 5 501 -20 -モクモク 💭️ 5 5 501 -20 -zzz 💤️ 5 5 501 -20 -イビキ 💤️ 5 5 501 -20 -グーグー 💤️ 5 5 501 -20 -ネル 💤️ 5 5 501 -20 -サヨナラ 👋️ 5 5 501 -20 -テ 👋️ 5 5 501 -20 -テヲフル 👋️ 5 5 501 -20 -バイバイ 👋️ 5 5 501 -20 -テ 🤚️ 5 5 501 -20 -テノコウ 🤚️ 5 5 501 -20 -テ 🖐️️ 5 5 501 -20 -パー 🖐️️ 5 5 501 -20 -ヒライタテ 🖐️️ 5 5 501 -20 -キョシュ ✋️ 5 5 501 -20 -テ ✋️ 5 5 501 -20 -テノヒラ ✋️ 5 5 501 -20 -パー ✋️ 5 5 501 -20 -スポック 🖖️ 5 5 501 -20 -テ 🖖️ 5 5 501 -20 -バルカンジン 🖖️ 5 5 501 -20 -バルカンノアイサツ 🖖️ 5 5 501 -20 -テ 🫱️ 5 5 501 -20 -ホウコウ 🫱️ 5 5 501 -20 -ミギ 🫱️ 5 5 501 -20 -ミギガワ 🫱️ 5 5 501 -20 -ミギニムケタテ 🫱️ 5 5 501 -20 -テ 🫲️ 5 5 501 -20 -ヒダリ 🫲️ 5 5 501 -20 -ヒダリガワ 🫲️ 5 5 501 -20 -ヒダリニムケタテ 🫲️ 5 5 501 -20 -ホウコウ 🫲️ 5 5 501 -20 -オトス 🫳️ 5 5 501 -20 -シタ 🫳️ 5 5 501 -20 -シタガワ 🫳️ 5 5 501 -20 -シタニムケタテ 🫳️ 5 5 501 -20 -テ 🫳️ 5 5 501 -20 -ウエ 🫴️ 5 5 501 -20 -ウエガワ 🫴️ 5 5 501 -20 -ウエニムケタテ 🫴️ 5 5 501 -20 -ウケル 🫴️ 5 5 501 -20 -テ 🫴️ 5 5 501 -20 -オシテイルテ 🫷️ 5 5 501 -20 -オス 🫷️ 5 5 501 -20 -コトワル 🫷️ 5 5 501 -20 -ストップ 🫷️ 5 5 501 -20 -テ 🫷️ 5 5 501 -20 -ハイタッチ 🫷️ 5 5 501 -20 -ヒダリムキ 🫷️ 5 5 501 -20 -ヒダリムキニオシテイルテ 🫷️ 5 5 501 -20 -マテ 🫷️ 5 5 501 -20 -オス 🫸️ 5 5 501 -20 -コトワル 🫸️ 5 5 501 -20 -ストップ 🫸️ 5 5 501 -20 -ハイタッチ 🫸️ 5 5 501 -20 -マテ 🫸️ 5 5 501 -20 -ミギムキ 🫸️ 5 5 501 -20 -ミギムキニオシテイルテ 🫸️ 5 5 501 -20 -ok 👌️ 5 5 501 -20 -オッケー 👌️ 5 5 501 -20 -オーケー 👌️ 5 5 501 -20 -オーケーノテ 👌️ 5 5 501 -20 -テ 👌️ 5 5 501 -20 -ウワムキニスボメタテ 🤌️ 5 5 501 -20 -ジェスチャー 🤌️ 5 5 501 -20 -スボメル 🤌️ 5 5 501 -20 -テ 🤌️ 5 5 501 -20 -ユビ 🤌️ 5 5 501 -20 -スコシダケ 🤏️ 5 5 501 -20 -チョット 🤏️ 5 5 501 -20 -ツマンデイルユビ 🤏️ 5 5 501 -20 -テ 🤏️ 5 5 501 -20 -ユビ 🤏️ 5 5 501 -20 -チョキ ✌️️ 5 5 501 -20 -テ ✌️️ 5 5 501 -20 -ピース ✌️️ 5 5 501 -20 -ブイサイン ✌️️ 5 5 501 -20 -テ 🤞️ 5 5 501 -20 -ユビ 🤞️ 5 5 501 -20 -ユビヲクロス 🤞️ 5 5 501 -20 -オヤユビトヒトサシユビヲクロス 🫰️ 5 5 501 -20 -ダイスキ 🫰️ 5 5 501 -20 -テ 🫰️ 5 5 501 -20 -ハート 🫰️ 5 5 501 -20 -ユビ 🫰️ 5 5 501 -20 -ユビハート 🫰️ 5 5 501 -20 -ユビヲクロス 🫰️ 5 5 501 -20 -アイシテル 🤟️ 5 5 501 -20 -アイラブユー 🤟️ 5 5 501 -20 -テ 🤟️ 5 5 501 -20 -キツネ 🤘️ 5 5 501 -20 -ツノノユビサイン 🤘️ 5 5 501 -20 -テ 🤘️ 5 5 501 -20 -テ 🤙️ 5 5 501 -20 -デンワ 🤙️ 5 5 501 -20 -デンワノアイズ 🤙️ 5 5 501 -20 -デンワノジェスチャー 🤙️ 5 5 501 -20 -テ 👈️ 5 5 501 -20 -ヒダリ 👈️ 5 5 501 -20 -ヒダリユビサシ 👈️ 5 5 501 -20 -ヤジルシ 👈️ 5 5 501 -20 -ユビサシ 👈️ 5 5 501 -20 -ユビサス 👈️ 5 5 501 -20 -テ 👉️ 5 5 501 -20 -ミギ 👉️ 5 5 501 -20 -ミギユビサシ 👉️ 5 5 501 -20 -ヤジルシ 👉️ 5 5 501 -20 -ユビサシ 👉️ 5 5 501 -20 -ユビサス 👉️ 5 5 501 -20 -ウエ 👆️ 5 5 501 -20 -テ 👆️ 5 5 501 -20 -テノコウウエユビサシ 👆️ 5 5 501 -20 -テノコウジョウユビサシ 👆️ 5 5 501 -20 -ヤジルシ 👆️ 5 5 501 -20 -ユビサシ 👆️ 5 5 501 -20 -ユビサス 👆️ 5 5 501 -20 -ウエ 🖕️ 5 5 501 -20 -タテタナカユビ 🖕️ 5 5 501 -20 -テ 🖕️ 5 5 501 -20 -ナカユビ 🖕️ 5 5 501 -20 -ユビサシ 🖕️ 5 5 501 -20 -シタ 👇️ 5 5 501 -20 -シタユビサシ 👇️ 5 5 501 -20 -テ 👇️ 5 5 501 -20 -ヤジルシ 👇️ 5 5 501 -20 -ユビサシ 👇️ 5 5 501 -20 -ユビサス 👇️ 5 5 501 -20 -ウエ ☝️️ 5 5 501 -20 -ウエユビサシ ☝️️ 5 5 501 -20 -テ ☝️️ 5 5 501 -20 -ヒトサシユビ ☝️️ 5 5 501 -20 -ユビサシ ☝️️ 5 5 501 -20 -m9 🫵️ 5 5 501 -20 -オマエダ 🫵️ 5 5 501 -20 -テ 🫵️ 5 5 501 -20 -ヒトヲユビサシテイルテ 🫵️ 5 5 501 -20 -プギャー 🫵️ 5 5 501 -20 -ユビサシ 🫵️ 5 5 501 -20 -ok 👍️ 5 5 501 -20 -ウエ 👍️ 5 5 501 -20 -オッケー 👍️ 5 5 501 -20 -オヤユビ 👍️ 5 5 501 -20 -オヤユビサイン 👍️ 5 5 501 -20 -オーケー 👍️ 5 5 501 -20 -グッド 👍️ 5 5 501 -20 -サムアップ 👍️ 5 5 501 -20 -サムズアップ 👍️ 5 5 501 -20 -テ 👍️ 5 5 501 -20 -ng 👎️ 5 5 501 -20 -エヌジー 👎️ 5 5 501 -20 -サムズダウン 👎️ 5 5 501 -20 -シタ 👎️ 5 5 501 -20 -ダメ 👎️ 5 5 501 -20 -テ 👎️ 5 5 501 -20 -ブーイング 👎️ 5 5 501 -20 -ボツ 👎️ 5 5 501 -20 -グー ✊️ 5 5 501 -20 -ゲンコツ ✊️ 5 5 501 -20 -テ ✊️ 5 5 501 -20 -グー 👊️ 5 5 501 -20 -ゲンコツ 👊️ 5 5 501 -20 -テ 👊️ 5 5 501 -20 -パンチ 👊️ 5 5 501 -20 -コブシ 🤛️ 5 5 501 -20 -テ 🤛️ 5 5 501 -20 -パンチ 🤛️ 5 5 501 -20 -ヒダリ 🤛️ 5 5 501 -20 -ヒダリムキノコブシ 🤛️ 5 5 501 -20 -コブシ 🤜️ 5 5 501 -20 -テ 🤜️ 5 5 501 -20 -パンチ 🤜️ 5 5 501 -20 -ミギ 🤜️ 5 5 501 -20 -ミギムキノコブシ 🤜️ 5 5 501 -20 -テ 👏️ 5 5 501 -20 -ハクシュ 👏️ 5 5 501 -20 -パチパチ 👏️ 5 5 501 -20 -テ 🙌️ 5 5 501 -20 -テヲアゲル 🙌️ 5 5 501 -20 -バンザイ 🙌️ 5 5 501 -20 -リョウテ 🙌️ 5 5 501 -20 -アイ 🫶️ 5 5 501 -20 -テ 🫶️ 5 5 501 -20 -ハート 🫶️ 5 5 501 -20 -ハートガタノテ 🫶️ 5 5 501 -20 -ハートポーズ 🫶️ 5 5 501 -20 -ラブ 🫶️ 5 5 501 -20 -オッハー 👐️ 5 5 501 -20 -テ 👐️ 5 5 501 -20 -テノヒラ 👐️ 5 5 501 -20 -リョウテノヒラ 👐️ 5 5 501 -20 -イノリ 🤲️ 5 5 501 -20 -テ 🤲️ 5 5 501 -20 -テノヒラヲソロエタリョウテ 🤲️ 5 5 501 -20 -リョウテ 🤲️ 5 5 501 -20 -アクシュ 🤝️ 5 5 501 -20 -ゴウイ 🤝️ 5 5 501 -20 -テ 🤝️ 5 5 501 -20 -ヨロシク 🤝️ 5 5 501 -20 -イノリ 🙏️ 5 5 501 -20 -イノル 🙏️ 5 5 501 -20 -オネガイ 🙏️ 5 5 501 -20 -ガッショウ 🙏️ 5 5 501 -20 -ゴメンナサイ 🙏️ 5 5 501 -20 -リョウテ 🙏️ 5 5 501 -20 -カイテイルテ ✍️️ 5 5 501 -20 -テ ✍️️ 5 5 501 -20 -テガキ ✍️️ 5 5 501 -20 -テデカク ✍️️ 5 5 501 -20 -ツメ 💅️ 5 5 501 -20 -ネイル 💅️ 5 5 501 -20 -マニキュア 💅️ 5 5 501 -20 -マニキュアヲヌルテ 💅️ 5 5 501 -20 -ジドリ 🤳️ 5 5 501 -20 -ジブンドリ 🤳️ 5 5 501 -20 -スマホ 🤳️ 5 5 501 -20 -セルフィー 🤳️ 5 5 501 -20 -キントレ 💪️ 5 5 501 -20 -キンニク 💪️ 5 5 501 -20 -チカラコブ 💪️ 5 5 501 -20 -ムキムキ 💪️ 5 5 501 -20 -アクセシビリティ 🦾️ 5 5 501 -20 -ウデ 🦾️ 5 5 501 -20 -ギシュ 🦾️ 5 5 501 -20 -ジンコウソウグ 🦾️ 5 5 501 -20 -テ 🦾️ 5 5 501 -20 -アクセシビリティ 🦿️ 5 5 501 -20 -アシ 🦿️ 5 5 501 -20 -ギソク 🦿️ 5 5 501 -20 -ジンコウソウグ 🦿️ 5 5 501 -20 -アシ 🦵️ 5 5 501 -20 -キック 🦵️ 5 5 501 -20 -アシ 🦶️ 5 5 501 -20 -キック 🦶️ 5 5 501 -20 -ダンス 🦶️ 5 5 501 -20 -フミツケル 🦶️ 5 5 501 -20 -カオ 👂️ 5 5 501 -20 -カラダ 👂️ 5 5 501 -20 -ミミ 👂️ 5 5 501 -20 -アクセシビリティ 🦻️ 5 5 501 -20 -チョウカク 🦻️ 5 5 501 -20 -ホチョウキヲツケタミミ 🦻️ 5 5 501 -20 -ミミ 🦻️ 5 5 501 -20 -カオ 👃️ 5 5 501 -20 -カラダ 👃️ 5 5 501 -20 -ハナ 👃️ 5 5 501 -20 -アタマ 🧠️ 5 5 501 -20 -チシキ 🧠️ 5 5 501 -20 -ノウ 🧠️ 5 5 501 -20 -ノウミソ 🧠️ 5 5 501 -20 -コドウ 🫀️ 5 5 501 -20 -シンゾウ 🫀️ 5 5 501 -20 -シンパク 🫀️ 5 5 501 -20 -ゾウキ 🫀️ 5 5 501 -20 -ミャク 🫀️ 5 5 501 -20 -コキュウ 🫁️ 5 5 501 -20 -ゾウキ 🫁️ 5 5 501 -20 -ハイ 🫁️ 5 5 501 -20 -ハ 🦷️ 5 5 501 -20 -ハイシャ 🦷️ 5 5 501 -20 -コッカク 🦴️ 5 5 501 -20 -ホネ 🦴️ 5 5 501 -20 -カオ 👀️ 5 5 501 -20 -カラダ 👀️ 5 5 501 -20 -メ 👀️ 5 5 501 -20 -リョウメ 👀️ 5 5 501 -20 -カタメ 👁️️ 5 5 501 -20 -ヒトツメ 👁️️ 5 5 501 -20 -メ 👁️️ 5 5 501 -20 -カオ 👅️ 5 5 501 -20 -シタ 👅️ 5 5 501 -20 -ベロ 👅️ 5 5 501 -20 -ベー 👅️ 5 5 501 -20 -カオ 👄️ 5 5 501 -20 -キス 👄️ 5 5 501 -20 -クチ 👄️ 5 5 501 -20 -クチビル 👄️ 5 5 501 -20 -クチ 🫦️ 5 5 501 -20 -クチビル 🫦️ 5 5 501 -20 -クチビルヲカム 🫦️ 5 5 501 -20 -クチビルヲカンデイルクチ 🫦️ 5 5 501 -20 -クヤシイ 🫦️ 5 5 501 -20 -クヤシサ 🫦️ 5 5 501 -20 -ユウワク 🫦️ 5 5 501 -20 -アカチャン 👶️ 5 5 501 -20 -アカンボウ 👶️ 5 5 501 -20 -カオ 👶️ 5 5 501 -20 -ベビー 👶️ 5 5 501 -20 -カオ 🧒️ 5 5 501 -20 -コドモ 🧒️ 5 5 501 -20 -オトコノコ 👦️ 5 5 501 -20 -カオ 👦️ 5 5 501 -20 -コドモ 👦️ 5 5 501 -20 -ショウネン 👦️ 5 5 501 -20 -オンナ 👧️ 5 5 501 -20 -オンナノコ 👧️ 5 5 501 -20 -カオ 👧️ 5 5 501 -20 -コドモ 👧️ 5 5 501 -20 -ショウジョ 👧️ 5 5 501 -20 -オトナ 🧑️ 5 5 501 -20 -カオ 🧑️ 5 5 501 -20 -セイジン 🧑️ 5 5 501 -20 -カオ 👱️ 5 5 501 -20 -キンパツ 👱️ 5 5 501 -20 -キンパツノヒト 👱️ 5 5 501 -20 -ヒト 👱️ 5 5 501 -20 -ブロンド 👱️ 5 5 501 -20 -オトコ 👨️ 5 5 501 -20 -オトナ 👨️ 5 5 501 -20 -カオ 👨️ 5 5 501 -20 -ダンセイ 👨️ 5 5 501 -20 -アゴヒゲ 🧔️ 5 5 501 -20 -アゴヒゲノダンセイ 🧔️ 5 5 501 -20 -アゴヒゲノヒト 🧔️ 5 5 501 -20 -カオ 🧔️ 5 5 501 -20 -ヒゲ 🧔️ 5 5 501 -20 -ヒゲノハエタヒト 🧔️ 5 5 501 -20 -ヒト 🧔️ 5 5 501 -20 -アゴヒゲ 🧔‍♂️️ 5 5 501 -20 -アゴヒゲノダンセイ 🧔‍♂️️ 5 5 501 -20 -オトコ 🧔‍♂️️ 5 5 501 -20 -カオ 🧔‍♂️️ 5 5 501 -20 -ダンセイ 🧔‍♂️️ 5 5 501 -20 -ヒゲ 🧔‍♂️️ 5 5 501 -20 -ヒゲノハエタダンセイ 🧔‍♂️️ 5 5 501 -20 -アゴヒゲ 🧔‍♀️️ 5 5 501 -20 -アゴヒゲノジョセイ 🧔‍♀️️ 5 5 501 -20 -オンナ 🧔‍♀️️ 5 5 501 -20 -カオ 🧔‍♀️️ 5 5 501 -20 -ジョセイ 🧔‍♀️️ 5 5 501 -20 -ヒゲ 🧔‍♀️️ 5 5 501 -20 -ヒゲノハエタジョセイ 🧔‍♀️️ 5 5 501 -20 -アカゲ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦰️ 5 5 501 -20 -オトナ 👨‍🦰️ 5 5 501 -20 -カオ 👨‍🦰️ 5 5 501 -20 -ダンセイ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦰️ 5 5 501 -20 -カオ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦱️ 5 5 501 -20 -オトナ 👨‍🦱️ 5 5 501 -20 -カオ 👨‍🦱️ 5 5 501 -20 -ダンセイ 👨‍🦱️ 5 5 501 -20 -マキゲ 👨‍🦱️ 5 5 501 -20 -オトコ 👨‍🦱️ 5 5 501 -20 -カオ 👨‍🦱️ 5 5 501 -20 -カール 👨‍🦱️ 5 5 501 -20 -オトコ 👨‍🦳️ 5 5 501 -20 -オトナ 👨‍🦳️ 5 5 501 -20 -カオ 👨‍🦳️ 5 5 501 -20 -シラガ 👨‍🦳️ 5 5 501 -20 -ダンセイ 👨‍🦳️ 5 5 501 -20 -オトコ 👨‍🦳️ 5 5 501 -20 -カオ 👨‍🦳️ 5 5 501 -20 -オトコ 👨‍🦲️ 5 5 501 -20 -オトナ 👨‍🦲️ 5 5 501 -20 -カオ 👨‍🦲️ 5 5 501 -20 -ダンセイ 👨‍🦲️ 5 5 501 -20 -ハゲアタマ 👨‍🦲️ 5 5 501 -20 -オトコ 👨‍🦲️ 5 5 501 -20 -カオ 👨‍🦲️ 5 5 501 -20 -ハゲ 👨‍🦲️ 5 5 501 -20 -オトナ 👩️ 5 5 501 -20 -オンナ 👩️ 5 5 501 -20 -カオ 👩️ 5 5 501 -20 -ジョセイ 👩️ 5 5 501 -20 -アカゲ 👩‍🦰️ 5 5 501 -20 -オトナ 👩‍🦰️ 5 5 501 -20 -オンナ 👩‍🦰️ 5 5 501 -20 -カオ 👩‍🦰️ 5 5 501 -20 -ジョセイ 👩‍🦰️ 5 5 501 -20 -オンナ 👩‍🦰️ 5 5 501 -20 -カオ 👩‍🦰️ 5 5 501 -20 -アカゲ 🧑‍🦰️ 5 5 501 -20 -オトナ 🧑‍🦰️ 5 5 501 -20 -カオ 🧑‍🦰️ 5 5 501 -20 -セイジン 🧑‍🦰️ 5 5 501 -20 -カオ 🧑‍🦰️ 5 5 501 -20 -オトナ 👩‍🦱️ 5 5 501 -20 -オンナ 👩‍🦱️ 5 5 501 -20 -カオ 👩‍🦱️ 5 5 501 -20 -ジョセイ 👩‍🦱️ 5 5 501 -20 -マキゲ 👩‍🦱️ 5 5 501 -20 -オンナ 👩‍🦱️ 5 5 501 -20 -カオ 👩‍🦱️ 5 5 501 -20 -カール 👩‍🦱️ 5 5 501 -20 -オトナ 🧑‍🦱️ 5 5 501 -20 -カオ 🧑‍🦱️ 5 5 501 -20 -セイジン 🧑‍🦱️ 5 5 501 -20 -マキゲ 🧑‍🦱️ 5 5 501 -20 -カオ 🧑‍🦱️ 5 5 501 -20 -カール 🧑‍🦱️ 5 5 501 -20 -オトナ 👩‍🦳️ 5 5 501 -20 -オンナ 👩‍🦳️ 5 5 501 -20 -カオ 👩‍🦳️ 5 5 501 -20 -シラガ 👩‍🦳️ 5 5 501 -20 -ジョセイ 👩‍🦳️ 5 5 501 -20 -オンナ 👩‍🦳️ 5 5 501 -20 -カオ 👩‍🦳️ 5 5 501 -20 -オトナ 🧑‍🦳️ 5 5 501 -20 -カオ 🧑‍🦳️ 5 5 501 -20 -シラガ 🧑‍🦳️ 5 5 501 -20 -セイジン 🧑‍🦳️ 5 5 501 -20 -カオ 🧑‍🦳️ 5 5 501 -20 -オトナ 👩‍🦲️ 5 5 501 -20 -オンナ 👩‍🦲️ 5 5 501 -20 -カオ 👩‍🦲️ 5 5 501 -20 -ジョセイ 👩‍🦲️ 5 5 501 -20 -ハゲアタマ 👩‍🦲️ 5 5 501 -20 -オンナ 👩‍🦲️ 5 5 501 -20 -カオ 👩‍🦲️ 5 5 501 -20 -ハゲ 👩‍🦲️ 5 5 501 -20 -オトナ 🧑‍🦲️ 5 5 501 -20 -カオ 🧑‍🦲️ 5 5 501 -20 -セイジン 🧑‍🦲️ 5 5 501 -20 -ハゲアタマ 🧑‍🦲️ 5 5 501 -20 -カオ 🧑‍🦲️ 5 5 501 -20 -ハゲ 🧑‍🦲️ 5 5 501 -20 -オンナ 👱‍♀️️ 5 5 501 -20 -キンパツ 👱‍♀️️ 5 5 501 -20 -キンパツノジョセイ 👱‍♀️️ 5 5 501 -20 -ジョセイ 👱‍♀️️ 5 5 501 -20 -ブロンド 👱‍♀️️ 5 5 501 -20 -オトコ 👱‍♂️️ 5 5 501 -20 -キンパツ 👱‍♂️️ 5 5 501 -20 -キンパツノダンセイ 👱‍♂️️ 5 5 501 -20 -ダンセイ 👱‍♂️️ 5 5 501 -20 -ブロンド 👱‍♂️️ 5 5 501 -20 -オトシヨリ 🧓️ 5 5 501 -20 -カオ 🧓️ 5 5 501 -20 -コウレイシャ 🧓️ 5 5 501 -20 -ロウジン 🧓️ 5 5 501 -20 -オジイサン 👴️ 5 5 501 -20 -オトシヨリ 👴️ 5 5 501 -20 -カオ 👴️ 5 5 501 -20 -コウレイシャ 👴️ 5 5 501 -20 -ダンセイ 👴️ 5 5 501 -20 -ロウジン 👴️ 5 5 501 -20 -オトシヨリ 👵️ 5 5 501 -20 -オバアサン 👵️ 5 5 501 -20 -カオ 👵️ 5 5 501 -20 -コウレイシャ 👵️ 5 5 501 -20 -ジョセイ 👵️ 5 5 501 -20 -ロウジン 👵️ 5 5 501 -20 -キャラクター 🙍️ 5 5 501 -20 -シカメガオ 🙍️ 5 5 501 -20 -シカメッツラ 🙍️ 5 5 501 -20 -シカメッツラノヒト 🙍️ 5 5 501 -20 -シカメツラ 🙍️ 5 5 501 -20 -シカメツラノヒト 🙍️ 5 5 501 -20 -オトコ 🙍‍♂️️ 5 5 501 -20 -シカメガオ 🙍‍♂️️ 5 5 501 -20 -シカメッツラ 🙍‍♂️️ 5 5 501 -20 -シカメッツラノオトコ 🙍‍♂️️ 5 5 501 -20 -シカメツラノオトコ 🙍‍♂️️ 5 5 501 -20 -ダンセイ 🙍‍♂️️ 5 5 501 -20 -オンナ 🙍‍♀️️ 5 5 501 -20 -シカメガオ 🙍‍♀️️ 5 5 501 -20 -シカメッツラ 🙍‍♀️️ 5 5 501 -20 -シカメッツラノオンナ 🙍‍♀️️ 5 5 501 -20 -シカメツラノオンナ 🙍‍♀️️ 5 5 501 -20 -ジョセイ 🙍‍♀️️ 5 5 501 -20 -キャラクター 🙎️ 5 5 501 -20 -ヒト 🙎️ 5 5 501 -20 -フキゲン 🙎️ 5 5 501 -20 -フキゲンナヒト 🙎️ 5 5 501 -20 -プンプン 🙎️ 5 5 501 -20 -オトコ 🙎‍♂️️ 5 5 501 -20 -ダンセイ 🙎‍♂️️ 5 5 501 -20 -フキゲン 🙎‍♂️️ 5 5 501 -20 -フキゲンナオトコ 🙎‍♂️️ 5 5 501 -20 -プンプン 🙎‍♂️️ 5 5 501 -20 -オンナ 🙎‍♀️️ 5 5 501 -20 -ジョセイ 🙎‍♀️️ 5 5 501 -20 -フキゲン 🙎‍♀️️ 5 5 501 -20 -フキゲンナオンナ 🙎‍♀️️ 5 5 501 -20 -プンプン 🙎‍♀️️ 5 5 501 -20 -ng 🙅️ 5 5 501 -20 -エヌジー 🙅️ 5 5 501 -20 -ジェスチャー 🙅️ 5 5 501 -20 -ダメ 🙅️ 5 5 501 -20 -ダメノポーズヲスルヒト 🙅️ 5 5 501 -20 -バツ 🙅️ 5 5 501 -20 -ヒト 🙅️ 5 5 501 -20 -ng 🙅‍♂️️ 5 5 501 -20 -エヌジー 🙅‍♂️️ 5 5 501 -20 -オトコ 🙅‍♂️️ 5 5 501 -20 -ジェスチャー 🙅‍♂️️ 5 5 501 -20 -ダメノポーズヲスルオトコ 🙅‍♂️️ 5 5 501 -20 -ダンセイ 🙅‍♂️️ 5 5 501 -20 -バツ 🙅‍♂️️ 5 5 501 -20 -ng 🙅‍♀️️ 5 5 501 -20 -エヌジー 🙅‍♀️️ 5 5 501 -20 -オンナ 🙅‍♀️️ 5 5 501 -20 -ジェスチャー 🙅‍♀️️ 5 5 501 -20 -ジョセイ 🙅‍♀️️ 5 5 501 -20 -ダメノポーズヲスルオンナ 🙅‍♀️️ 5 5 501 -20 -バツ 🙅‍♀️️ 5 5 501 -20 -ok 🙆️ 5 5 501 -20 -オーケー 🙆️ 5 5 501 -20 -オーケーノポーズヲスルヒト 🙆️ 5 5 501 -20 -ジェスチャー 🙆️ 5 5 501 -20 -ヒト 🙆️ 5 5 501 -20 -マル 🙆️ 5 5 501 -20 -ok 🙆‍♂️️ 5 5 501 -20 -オッケー 🙆‍♂️️ 5 5 501 -20 -オーケー 🙆‍♂️️ 5 5 501 -20 -オーケーノポーズヲスルオトコ 🙆‍♂️️ 5 5 501 -20 -ジェスチャー 🙆‍♂️️ 5 5 501 -20 -ダンセイ 🙆‍♂️️ 5 5 501 -20 -マル 🙆‍♂️️ 5 5 501 -20 -ok 🙆‍♀️️ 5 5 501 -20 -オッケー 🙆‍♀️️ 5 5 501 -20 -オーケー 🙆‍♀️️ 5 5 501 -20 -オーケーノポーズヲスルオンナ 🙆‍♀️️ 5 5 501 -20 -ジェスチャー 🙆‍♀️️ 5 5 501 -20 -ジョセイ 🙆‍♀️️ 5 5 501 -20 -マル 🙆‍♀️️ 5 5 501 -20 -アンナイ 💁️ 5 5 501 -20 -アンナイスルヒト 💁️ 5 5 501 -20 -ウケツケ 💁️ 5 5 501 -20 -ウケツケジョウ 💁️ 5 5 501 -20 -カオ 💁️ 5 5 501 -20 -アンナイ 💁‍♂️️ 5 5 501 -20 -アンナイスルオトコ 💁‍♂️️ 5 5 501 -20 -オトコ 💁‍♂️️ 5 5 501 -20 -ジェスチャー 💁‍♂️️ 5 5 501 -20 -ダンセイ 💁‍♂️️ 5 5 501 -20 -アンナイ 💁‍♀️️ 5 5 501 -20 -アンナイスルオンナ 💁‍♀️️ 5 5 501 -20 -オンナ 💁‍♀️️ 5 5 501 -20 -ジェスチャー 💁‍♀️️ 5 5 501 -20 -ジョセイ 💁‍♀️️ 5 5 501 -20 -キョシュ 🙋️ 5 5 501 -20 -テヲアゲル 🙋️ 5 5 501 -20 -テヲアゲルジン 🙋️ 5 5 501 -20 -テヲアゲルヒト 🙋️ 5 5 501 -20 -ヒト 🙋️ 5 5 501 -20 -オトコ 🙋‍♂️️ 5 5 501 -20 -キョシュ 🙋‍♂️️ 5 5 501 -20 -ダンセイ 🙋‍♂️️ 5 5 501 -20 -テヲアゲル 🙋‍♂️️ 5 5 501 -20 -テヲアゲルオトコ 🙋‍♂️️ 5 5 501 -20 -オンナ 🙋‍♀️️ 5 5 501 -20 -キョシュ 🙋‍♀️️ 5 5 501 -20 -ジョセイ 🙋‍♀️️ 5 5 501 -20 -テヲアゲル 🙋‍♀️️ 5 5 501 -20 -テヲアゲルオンナ 🙋‍♀️️ 5 5 501 -20 -アクセシビリティ 🧏️ 5 5 501 -20 -キコエナイ 🧏️ 5 5 501 -20 -ショウガイ 🧏️ 5 5 501 -20 -チョウカク 🧏️ 5 5 501 -20 -ヒト 🧏️ 5 5 501 -20 -ミミノフジユウナヒト 🧏️ 5 5 501 -20 -アクセシビリティ 🧏‍♂️️ 5 5 501 -20 -ショウガイ 🧏‍♂️️ 5 5 501 -20 -ダンセイ 🧏‍♂️️ 5 5 501 -20 -チョウカク 🧏‍♂️️ 5 5 501 -20 -ミミノフジユウナダンセイ 🧏‍♂️️ 5 5 501 -20 -アクセシビリティ 🧏‍♀️️ 5 5 501 -20 -ショウガイ 🧏‍♀️️ 5 5 501 -20 -ジョセイ 🧏‍♀️️ 5 5 501 -20 -チョウカク 🧏‍♀️️ 5 5 501 -20 -ミミノフジユウナジョセイ 🧏‍♀️️ 5 5 501 -20 -オジギ 🙇️ 5 5 501 -20 -オジギスルヒト 🙇️ 5 5 501 -20 -ゴメンナサイ 🙇️ 5 5 501 -20 -ドゲザ 🙇️ 5 5 501 -20 -オジギ 🙇‍♂️️ 5 5 501 -20 -オジギスルオトコ 🙇‍♂️️ 5 5 501 -20 -オトコ 🙇‍♂️️ 5 5 501 -20 -ゴメンナサイ 🙇‍♂️️ 5 5 501 -20 -ダンセイ 🙇‍♂️️ 5 5 501 -20 -ドゲザ 🙇‍♂️️ 5 5 501 -20 -オジギ 🙇‍♀️️ 5 5 501 -20 -オジギスルオンナ 🙇‍♀️️ 5 5 501 -20 -オンナ 🙇‍♀️️ 5 5 501 -20 -ゴメンナサイ 🙇‍♀️️ 5 5 501 -20 -ジョセイ 🙇‍♀️️ 5 5 501 -20 -ドゲザ 🙇‍♀️️ 5 5 501 -20 -アチャー 🤦️ 5 5 501 -20 -ジェスチャー 🤦️ 5 5 501 -20 -ヒタイニテ 🤦️ 5 5 501 -20 -ヒタイニテヲアテルヒト 🤦️ 5 5 501 -20 -アチャー 🤦‍♂️️ 5 5 501 -20 -オトコ 🤦‍♂️️ 5 5 501 -20 -ジェスチャー 🤦‍♂️️ 5 5 501 -20 -ダンセイ 🤦‍♂️️ 5 5 501 -20 -ヒタイニテ 🤦‍♂️️ 5 5 501 -20 -ヒタイニテヲアテルオトコ 🤦‍♂️️ 5 5 501 -20 -アチャー 🤦‍♀️️ 5 5 501 -20 -オンナ 🤦‍♀️️ 5 5 501 -20 -ジェスチャー 🤦‍♀️️ 5 5 501 -20 -ジョセイ 🤦‍♀️️ 5 5 501 -20 -ヒタイニテ 🤦‍♀️️ 5 5 501 -20 -ヒタイニテヲアテルオンナ 🤦‍♀️️ 5 5 501 -20 -オテアゲ 🤷️ 5 5 501 -20 -オテアゲスルヒト 🤷️ 5 5 501 -20 -ジェスチャー 🤷️ 5 5 501 -20 -オテアゲ 🤷‍♂️️ 5 5 501 -20 -オテアゲスルオトコ 🤷‍♂️️ 5 5 501 -20 -オトコ 🤷‍♂️️ 5 5 501 -20 -ジェスチャー 🤷‍♂️️ 5 5 501 -20 -ダンセイ 🤷‍♂️️ 5 5 501 -20 -オテアゲ 🤷‍♀️️ 5 5 501 -20 -オテアゲスルオンナ 🤷‍♀️️ 5 5 501 -20 -オンナ 🤷‍♀️️ 5 5 501 -20 -ジェスチャー 🤷‍♀️️ 5 5 501 -20 -ジョセイ 🤷‍♀️️ 5 5 501 -20 -イシ 🧑‍⚕️️ 5 5 501 -20 -イシャ 🧑‍⚕️️ 5 5 501 -20 -セラピスト 🧑‍⚕️️ 5 5 501 -20 -イシ 👨‍⚕️️ 5 5 501 -20 -イシャ 👨‍⚕️️ 5 5 501 -20 -オトコ 👨‍⚕️️ 5 5 501 -20 -ダンセイ 👨‍⚕️️ 5 5 501 -20 -ダンセイノイシャ 👨‍⚕️️ 5 5 501 -20 -イシ 👩‍⚕️️ 5 5 501 -20 -イシャ 👩‍⚕️️ 5 5 501 -20 -オンナ 👩‍⚕️️ 5 5 501 -20 -ジョセイ 👩‍⚕️️ 5 5 501 -20 -ジョセイノイシャ 👩‍⚕️️ 5 5 501 -20 -カクボウ 🧑‍🎓️ 5 5 501 -20 -ガクセイ 🧑‍🎓️ 5 5 501 -20 -ソツギョウ 🧑‍🎓️ 5 5 501 -20 -オトコ 👨‍🎓️ 5 5 501 -20 -カクボウ 👨‍🎓️ 5 5 501 -20 -ガクセイ 👨‍🎓️ 5 5 501 -20 -ソツギョウ 👨‍🎓️ 5 5 501 -20 -ダンシガクセイ 👨‍🎓️ 5 5 501 -20 -ダンセイ 👨‍🎓️ 5 5 501 -20 -オンナ 👩‍🎓️ 5 5 501 -20 -カクボウ 👩‍🎓️ 5 5 501 -20 -ガクセイ 👩‍🎓️ 5 5 501 -20 -ジョシガクセイ 👩‍🎓️ 5 5 501 -20 -ジョセイ 👩‍🎓️ 5 5 501 -20 -ソツギョウ 👩‍🎓️ 5 5 501 -20 -キョウシ 🧑‍🏫️ 5 5 501 -20 -キョウジュ 🧑‍🏫️ 5 5 501 -20 -コウシ 🧑‍🏫️ 5 5 501 -20 -センセイ 🧑‍🏫️ 5 5 501 -20 -タンニン 🧑‍🏫️ 5 5 501 -20 -オトコ 👨‍🏫️ 5 5 501 -20 -キョウシ 👨‍🏫️ 5 5 501 -20 -キョウジュ 👨‍🏫️ 5 5 501 -20 -センセイ 👨‍🏫️ 5 5 501 -20 -ダンセイ 👨‍🏫️ 5 5 501 -20 -ダンセイノキョウシ 👨‍🏫️ 5 5 501 -20 -オンナ 👩‍🏫️ 5 5 501 -20 -キョウシ 👩‍🏫️ 5 5 501 -20 -キョウジュ 👩‍🏫️ 5 5 501 -20 -ジョセイ 👩‍🏫️ 5 5 501 -20 -ジョセイノキョウシ 👩‍🏫️ 5 5 501 -20 -センセイ 👩‍🏫️ 5 5 501 -20 -サイバン 🧑‍⚖️️ 5 5 501 -20 -サイバンカン 🧑‍⚖️️ 5 5 501 -20 -オトコ 👨‍⚖️️ 5 5 501 -20 -サイバン 👨‍⚖️️ 5 5 501 -20 -サイバンカン 👨‍⚖️️ 5 5 501 -20 -ダンセイ 👨‍⚖️️ 5 5 501 -20 -ダンセイノサイバンカン 👨‍⚖️️ 5 5 501 -20 -オンナ 👩‍⚖️️ 5 5 501 -20 -サイバン 👩‍⚖️️ 5 5 501 -20 -サイバンカン 👩‍⚖️️ 5 5 501 -20 -ジョセイ 👩‍⚖️️ 5 5 501 -20 -ジョセイノサイバンカン 👩‍⚖️️ 5 5 501 -20 -ガーデナー 🧑‍🌾️ 5 5 501 -20 -ノウカ 🧑‍🌾️ 5 5 501 -20 -ノウギョウ 🧑‍🌾️ 5 5 501 -20 -ノウジョウヌシ 🧑‍🌾️ 5 5 501 -20 -オトコ 👨‍🌾️ 5 5 501 -20 -ダンセイ 👨‍🌾️ 5 5 501 -20 -ノウカ 👨‍🌾️ 5 5 501 -20 -ノウカノダンセイ 👨‍🌾️ 5 5 501 -20 -ノウフ 👨‍🌾️ 5 5 501 -20 -オンナ 👩‍🌾️ 5 5 501 -20 -ジョセイ 👩‍🌾️ 5 5 501 -20 -ノウカ 👩‍🌾️ 5 5 501 -20 -ノウカノジョセイ 👩‍🌾️ 5 5 501 -20 -コック 🧑‍🍳️ 5 5 501 -20 -シェフ 🧑‍🍳️ 5 5 501 -20 -リョウリ 🧑‍🍳️ 5 5 501 -20 -オトコ 👨‍🍳️ 5 5 501 -20 -コック 👨‍🍳️ 5 5 501 -20 -シェフ 👨‍🍳️ 5 5 501 -20 -ダンセイ 👨‍🍳️ 5 5 501 -20 -ダンセイノコック 👨‍🍳️ 5 5 501 -20 -リョウリ 👨‍🍳️ 5 5 501 -20 -オンナ 👩‍🍳️ 5 5 501 -20 -コック 👩‍🍳️ 5 5 501 -20 -シェフ 👩‍🍳️ 5 5 501 -20 -ジョセイ 👩‍🍳️ 5 5 501 -20 -ジョセイノコック 👩‍🍳️ 5 5 501 -20 -リョウリ 👩‍🍳️ 5 5 501 -20 -コウサク 🧑‍🔧️ 5 5 501 -20 -サギョウイン 🧑‍🔧️ 5 5 501 -20 -スパナ 🧑‍🔧️ 5 5 501 -20 -セイビシ 🧑‍🔧️ 5 5 501 -20 -メカニック 🧑‍🔧️ 5 5 501 -20 -オトコ 👨‍🔧️ 5 5 501 -20 -コウサク 👨‍🔧️ 5 5 501 -20 -スパナ 👨‍🔧️ 5 5 501 -20 -ダンセイ 👨‍🔧️ 5 5 501 -20 -ダンセイノセイビシ 👨‍🔧️ 5 5 501 -20 -メカニック 👨‍🔧️ 5 5 501 -20 -オンナ 👩‍🔧️ 5 5 501 -20 -コウサク 👩‍🔧️ 5 5 501 -20 -ジョセイ 👩‍🔧️ 5 5 501 -20 -ジョセイノセイビシ 👩‍🔧️ 5 5 501 -20 -スパナ 👩‍🔧️ 5 5 501 -20 -メカニック 👩‍🔧️ 5 5 501 -20 -コウイン 🧑‍🏭️ 5 5 501 -20 -コウジョウ 🧑‍🏭️ 5 5 501 -20 -モノヅクリ 🧑‍🏭️ 5 5 501 -20 -ヨウセツコウ 🧑‍🏭️ 5 5 501 -20 -オトコ 👨‍🏭️ 5 5 501 -20 -ダンセイ 👨‍🏭️ 5 5 501 -20 -ダンセイノヨウセツコウ 👨‍🏭️ 5 5 501 -20 -ヨウセツ 👨‍🏭️ 5 5 501 -20 -オンナ 👩‍🏭️ 5 5 501 -20 -ジョセイ 👩‍🏭️ 5 5 501 -20 -ジョセイノヨウセツコウ 👩‍🏭️ 5 5 501 -20 -ヨウセツ 👩‍🏭️ 5 5 501 -20 -カイシャイン 🧑‍💼️ 5 5 501 -20 -サラリーマン 🧑‍💼️ 5 5 501 -20 -ビジネスパーソン 🧑‍💼️ 5 5 501 -20 -カイシャイン 👨‍💼️ 5 5 501 -20 -サラリーマン 👨‍💼️ 5 5 501 -20 -ダンセイ 👨‍💼️ 5 5 501 -20 -ダンセイカイシャイン 👨‍💼️ 5 5 501 -20 -ビジネスパーソン 👨‍💼️ 5 5 501 -20 -ビジネスマン 👨‍💼️ 5 5 501 -20 -ol 👩‍💼️ 5 5 501 -20 -オーエル 👩‍💼️ 5 5 501 -20 -オール 👩‍💼️ 5 5 501 -20 -カイシャイン 👩‍💼️ 5 5 501 -20 -サラリーマン 👩‍💼️ 5 5 501 -20 -ジョセイ 👩‍💼️ 5 5 501 -20 -ジョセイカイシャイン 👩‍💼️ 5 5 501 -20 -ビジネスパーソン 👩‍💼️ 5 5 501 -20 -カガクシャ 🧑‍🔬️ 5 5 501 -20 -セイブツガクシャ 🧑‍🔬️ 5 5 501 -20 -ブツリガクシャ 🧑‍🔬️ 5 5 501 -20 -オトコ 👨‍🔬️ 5 5 501 -20 -カガクシャ 👨‍🔬️ 5 5 501 -20 -ダンセイ 👨‍🔬️ 5 5 501 -20 -ダンセイカガクシャ 👨‍🔬️ 5 5 501 -20 -オンナ 👩‍🔬️ 5 5 501 -20 -カガクシャ 👩‍🔬️ 5 5 501 -20 -ジョセイ 👩‍🔬️ 5 5 501 -20 -ジョセイカガクシャ 👩‍🔬️ 5 5 501 -20 -カイハツシャ 🧑‍💻️ 5 5 501 -20 -ギジュツシャ 🧑‍💻️ 5 5 501 -20 -コンピュータ 🧑‍💻️ 5 5 501 -20 -パソコン 🧑‍💻️ 5 5 501 -20 -プログラマ 🧑‍💻️ 5 5 501 -20 -カイハツシャ 👨‍💻️ 5 5 501 -20 -コンピュータ 👨‍💻️ 5 5 501 -20 -ダンセイ 👨‍💻️ 5 5 501 -20 -ダンセイギジュツシャ 👨‍💻️ 5 5 501 -20 -デベロッパ 👨‍💻️ 5 5 501 -20 -パソコン 👨‍💻️ 5 5 501 -20 -プログラマ 👨‍💻️ 5 5 501 -20 -カイハツシャ 👩‍💻️ 5 5 501 -20 -コンピュータ 👩‍💻️ 5 5 501 -20 -ジョセイ 👩‍💻️ 5 5 501 -20 -ジョセイギジュツシャ 👩‍💻️ 5 5 501 -20 -デベロッパ 👩‍💻️ 5 5 501 -20 -パソコン 👩‍💻️ 5 5 501 -20 -プログラマ 👩‍💻️ 5 5 501 -20 -アーティスト 🧑‍🎤️ 5 5 501 -20 -カシュ 🧑‍🎤️ 5 5 501 -20 -シンガー 🧑‍🎤️ 5 5 501 -20 -スター 🧑‍🎤️ 5 5 501 -20 -ロッカー 🧑‍🎤️ 5 5 501 -20 -アーティスト 👨‍🎤️ 5 5 501 -20 -オトコ 👨‍🎤️ 5 5 501 -20 -カシュ 👨‍🎤️ 5 5 501 -20 -シンガー 👨‍🎤️ 5 5 501 -20 -ダンセイ 👨‍🎤️ 5 5 501 -20 -ダンセイカシュ 👨‍🎤️ 5 5 501 -20 -アーティスト 👩‍🎤️ 5 5 501 -20 -オンナ 👩‍🎤️ 5 5 501 -20 -カシュ 👩‍🎤️ 5 5 501 -20 -シンガー 👩‍🎤️ 5 5 501 -20 -ジョセイ 👩‍🎤️ 5 5 501 -20 -ジョセイカシュ 👩‍🎤️ 5 5 501 -20 -アーティスト 🧑‍🎨️ 5 5 501 -20 -エカキ 🧑‍🎨️ 5 5 501 -20 -ガカ 🧑‍🎨️ 5 5 501 -20 -ゲイジュツカ 🧑‍🎨️ 5 5 501 -20 -アーティスト 👨‍🎨️ 5 5 501 -20 -オトコ 👨‍🎨️ 5 5 501 -20 -ガカ 👨‍🎨️ 5 5 501 -20 -ゲイジュツカ 👨‍🎨️ 5 5 501 -20 -ダンセイ 👨‍🎨️ 5 5 501 -20 -ダンセイノゲイジュツカ 👨‍🎨️ 5 5 501 -20 -アーティスト 👩‍🎨️ 5 5 501 -20 -オンナ 👩‍🎨️ 5 5 501 -20 -ガカ 👩‍🎨️ 5 5 501 -20 -ゲイジュツカ 👩‍🎨️ 5 5 501 -20 -ジョセイ 👩‍🎨️ 5 5 501 -20 -ジョセイノゲイジュツカ 👩‍🎨️ 5 5 501 -20 -キチョウ 🧑‍✈️️ 5 5 501 -20 -ソウジュウシ 🧑‍✈️️ 5 5 501 -20 -パイロット 🧑‍✈️️ 5 5 501 -20 -オトコ 👨‍✈️️ 5 5 501 -20 -ソウジュウシ 👨‍✈️️ 5 5 501 -20 -ダンセイ 👨‍✈️️ 5 5 501 -20 -ダンセイパイロット 👨‍✈️️ 5 5 501 -20 -オンナ 👩‍✈️️ 5 5 501 -20 -ジョセイ 👩‍✈️️ 5 5 501 -20 -ジョセイパイロット 👩‍✈️️ 5 5 501 -20 -ソウジュウシ 👩‍✈️️ 5 5 501 -20 -ウチュウヒコウシ 🧑‍🚀️ 5 5 501 -20 -ロケット 🧑‍🚀️ 5 5 501 -20 -ウチュウヒコウシ 👨‍🚀️ 5 5 501 -20 -オトコ 👨‍🚀️ 5 5 501 -20 -ダンセイ 👨‍🚀️ 5 5 501 -20 -ダンセイウチュウヒコウシ 👨‍🚀️ 5 5 501 -20 -ウチュウヒコウシ 👩‍🚀️ 5 5 501 -20 -オンナ 👩‍🚀️ 5 5 501 -20 -ジョセイ 👩‍🚀️ 5 5 501 -20 -ジョセイウチュウヒコウシ 👩‍🚀️ 5 5 501 -20 -キュウジョタイ 🧑‍🚒️ 5 5 501 -20 -ショウボウシ 🧑‍🚒️ 5 5 501 -20 -レスキュー 🧑‍🚒️ 5 5 501 -20 -オトコ 👨‍🚒️ 5 5 501 -20 -ショウボウシ 👨‍🚒️ 5 5 501 -20 -ダンセイ 👨‍🚒️ 5 5 501 -20 -ダンセイショウボウシ 👨‍🚒️ 5 5 501 -20 -オンナ 👩‍🚒️ 5 5 501 -20 -ショウボウシ 👩‍🚒️ 5 5 501 -20 -ジョセイ 👩‍🚒️ 5 5 501 -20 -ジョセイショウボウシ 👩‍🚒️ 5 5 501 -20 -オマワリサン 👮️ 5 5 501 -20 -カオ 👮️ 5 5 501 -20 -ケイカン 👮️ 5 5 501 -20 -ケイサツ 👮️ 5 5 501 -20 -ケイサツカン 👮️ 5 5 501 -20 -ポリス 👮️ 5 5 501 -20 -オマワリサン 👮‍♂️️ 5 5 501 -20 -ケイカン 👮‍♂️️ 5 5 501 -20 -ケイサツ 👮‍♂️️ 5 5 501 -20 -ケイサツカン 👮‍♂️️ 5 5 501 -20 -ダンセイ 👮‍♂️️ 5 5 501 -20 -ダンセイケイサツカン 👮‍♂️️ 5 5 501 -20 -オマワリサン 👮‍♀️️ 5 5 501 -20 -ケイカン 👮‍♀️️ 5 5 501 -20 -ケイサツ 👮‍♀️️ 5 5 501 -20 -ケイサツカン 👮‍♀️️ 5 5 501 -20 -ジョセイ 👮‍♀️️ 5 5 501 -20 -ジョセイケイサツカン 👮‍♀️️ 5 5 501 -20 -スパイ 🕵️️ 5 5 501 -20 -タンテイ 🕵️️ 5 5 501 -20 -ムシメガネ 🕵️️ 5 5 501 -20 -オトコ 🕵️‍♂️️ 5 5 501 -20 -タンテイ 🕵️‍♂️️ 5 5 501 -20 -ダンセイ 🕵️‍♂️️ 5 5 501 -20 -ダンセイノタンテイ 🕵️‍♂️️ 5 5 501 -20 -ムシメガネ 🕵️‍♂️️ 5 5 501 -20 -オンナ 🕵️‍♀️️ 5 5 501 -20 -ジョセイ 🕵️‍♀️️ 5 5 501 -20 -ジョセイノタンテイ 🕵️‍♀️️ 5 5 501 -20 -タンテイ 🕵️‍♀️️ 5 5 501 -20 -ムシメガネ 🕵️‍♀️️ 5 5 501 -20 -エイヘイ 💂️ 5 5 501 -20 -カオ 💂️ 5 5 501 -20 -ケイビ 💂️ 5 5 501 -20 -シュエイ 💂️ 5 5 501 -20 -モンバン 💂️ 5 5 501 -20 -エイヘイ 💂‍♂️️ 5 5 501 -20 -ケイビ 💂‍♂️️ 5 5 501 -20 -シュエイ 💂‍♂️️ 5 5 501 -20 -ダンセイ 💂‍♂️️ 5 5 501 -20 -ダンセイノエイヘイ 💂‍♂️️ 5 5 501 -20 -モンバン 💂‍♂️️ 5 5 501 -20 -エイヘイ 💂‍♀️️ 5 5 501 -20 -ケイビ 💂‍♀️️ 5 5 501 -20 -シュエイ 💂‍♀️️ 5 5 501 -20 -ジョセイ 💂‍♀️️ 5 5 501 -20 -ジョセイノエイヘイ 💂‍♀️️ 5 5 501 -20 -モンバン 💂‍♀️️ 5 5 501 -20 -オンミツ 🥷️ 5 5 501 -20 -クサノモノ 🥷️ 5 5 501 -20 -シノビ 🥷️ 5 5 501 -20 -スパイ 🥷️ 5 5 501 -20 -ニンジャ 🥷️ 5 5 501 -20 -ニンジュツ 🥷️ 5 5 501 -20 -カオ 👷️ 5 5 501 -20 -カナヅチ 👷️ 5 5 501 -20 -ケンセツサギョウイン 👷️ 5 5 501 -20 -コウジ 👷️ 5 5 501 -20 -ハンマー 👷️ 5 5 501 -20 -ヘルメット 👷️ 5 5 501 -20 -ケンセツサギョウイン 👷‍♂️️ 5 5 501 -20 -コウジ 👷‍♂️️ 5 5 501 -20 -ダンセイ 👷‍♂️️ 5 5 501 -20 -ダンセイノケンセツサギョウイン 👷‍♂️️ 5 5 501 -20 -ハンマー 👷‍♂️️ 5 5 501 -20 -ヘルメット 👷‍♂️️ 5 5 501 -20 -ケンセツサギョウイン 👷‍♀️️ 5 5 501 -20 -コウジ 👷‍♀️️ 5 5 501 -20 -ジョセイ 👷‍♀️️ 5 5 501 -20 -ジョセイノケンセツサギョウイン 👷‍♀️️ 5 5 501 -20 -ハンマー 👷‍♀️️ 5 5 501 -20 -ヘルメット 👷‍♀️️ 5 5 501 -20 -オウカンヲカブッタヒト 🫅️ 5 5 501 -20 -オウケ 🫅️ 5 5 501 -20 -オウサマ 🫅️ 5 5 501 -20 -オウゾク 🫅️ 5 5 501 -20 -クンシュ 🫅️ 5 5 501 -20 -ヒト 🫅️ 5 5 501 -20 -オウジ 🤴️ 5 5 501 -20 -オトコ 🤴️ 5 5 501 -20 -ダンセイ 🤴️ 5 5 501 -20 -プリンス 🤴️ 5 5 501 -20 -オウジョ 👸️ 5 5 501 -20 -オヒメサマ 👸️ 5 5 501 -20 -オンナ 👸️ 5 5 501 -20 -カオ 👸️ 5 5 501 -20 -クイーン 👸️ 5 5 501 -20 -ジョセイ 👸️ 5 5 501 -20 -プリンセス 👸️ 5 5 501 -20 -カオ 👳️ 5 5 501 -20 -ターバン 👳️ 5 5 501 -20 -ターバンノヒト 👳️ 5 5 501 -20 -オトコ 👳‍♂️️ 5 5 501 -20 -ターバン 👳‍♂️️ 5 5 501 -20 -ターバンノダンセイ 👳‍♂️️ 5 5 501 -20 -ダンセイ 👳‍♂️️ 5 5 501 -20 -オンナ 👳‍♀️️ 5 5 501 -20 -ジョセイ 👳‍♀️️ 5 5 501 -20 -ターバン 👳‍♀️️ 5 5 501 -20 -ターバンノジョセイ 👳‍♀️️ 5 5 501 -20 -オトコ 👲️ 5 5 501 -20 -オワンボウ 👲️ 5 5 501 -20 -カオ 👲️ 5 5 501 -20 -ダンセイ 👲️ 5 5 501 -20 -チュウカボウノダンセイ 👲️ 5 5 501 -20 -オンナ 🧕️ 5 5 501 -20 -ジョセイ 🧕️ 5 5 501 -20 -スカーフ 🧕️ 5 5 501 -20 -スカーフノジョセイ 🧕️ 5 5 501 -20 -ヒジャブ 🧕️ 5 5 501 -20 -ベール 🧕️ 5 5 501 -20 -オトコ 🤵️ 5 5 501 -20 -ケッコン 🤵️ 5 5 501 -20 -タキシード 🤵️ 5 5 501 -20 -タキシードノヒト 🤵️ 5 5 501 -20 -ダンセイ 🤵️ 5 5 501 -20 -ハナムコ 🤵️ 5 5 501 -20 -オトコ 🤵‍♂️️ 5 5 501 -20 -タキシード 🤵‍♂️️ 5 5 501 -20 -タキシードノオトコ 🤵‍♂️️ 5 5 501 -20 -タキシードノダンセイ 🤵‍♂️️ 5 5 501 -20 -ダンセイ 🤵‍♂️️ 5 5 501 -20 -オンナ 🤵‍♀️️ 5 5 501 -20 -ジョセイ 🤵‍♀️️ 5 5 501 -20 -タキシード 🤵‍♀️️ 5 5 501 -20 -タキシードノオンナ 🤵‍♀️️ 5 5 501 -20 -タキシードノジョセイ 🤵‍♀️️ 5 5 501 -20 -オンナ 👰️ 5 5 501 -20 -カオ 👰️ 5 5 501 -20 -ケッコン 👰️ 5 5 501 -20 -ジョセイ 👰️ 5 5 501 -20 -ハナヨメ 👰️ 5 5 501 -20 -ベールノヒト 👰️ 5 5 501 -20 -オトコ 👰‍♂️️ 5 5 501 -20 -ダンセイ 👰‍♂️️ 5 5 501 -20 -ベール 👰‍♂️️ 5 5 501 -20 -ベールノダンセイ 👰‍♂️️ 5 5 501 -20 -オンナ 👰‍♀️️ 5 5 501 -20 -ジョセイ 👰‍♀️️ 5 5 501 -20 -ベール 👰‍♀️️ 5 5 501 -20 -ベールノジョセイ 👰‍♀️️ 5 5 501 -20 -オンナ 🤰️ 5 5 501 -20 -ジョセイ 🤰️ 5 5 501 -20 -ニンシン 🤰️ 5 5 501 -20 -ニンプ 🤰️ 5 5 501 -20 -オトコ 🫃️ 5 5 501 -20 -ダンセイ 🫃️ 5 5 501 -20 -ニンシン 🫃️ 5 5 501 -20 -ニンシンシタダンセイ 🫃️ 5 5 501 -20 -ニンシンシタヒト 🫃️ 5 5 501 -20 -ニンプ 🫃️ 5 5 501 -20 -ヒト 🫃️ 5 5 501 -20 -オナカ 🫄️ 5 5 501 -20 -ニンシン 🫄️ 5 5 501 -20 -ニンシンシタヒト 🫄️ 5 5 501 -20 -ニンプ 🫄️ 5 5 501 -20 -ヒト 🫄️ 5 5 501 -20 -アカチャン 🤱️ 5 5 501 -20 -オンナ 🤱️ 5 5 501 -20 -ジュニュウ 🤱️ 5 5 501 -20 -ジョセイ 🤱️ 5 5 501 -20 -ミルク 🤱️ 5 5 501 -20 -アカチャン 👩‍🍼️ 5 5 501 -20 -オンナ 👩‍🍼️ 5 5 501 -20 -ジュニュウ 👩‍🍼️ 5 5 501 -20 -ジュニュウスルジョセイ 👩‍🍼️ 5 5 501 -20 -ジョセイ 👩‍🍼️ 5 5 501 -20 -アカチャン 👨‍🍼️ 5 5 501 -20 -オトコ 👨‍🍼️ 5 5 501 -20 -ジュニュウ 👨‍🍼️ 5 5 501 -20 -ジュニュウスルダンセイ 👨‍🍼️ 5 5 501 -20 -ダンセイ 👨‍🍼️ 5 5 501 -20 -アカチャン 🧑‍🍼️ 5 5 501 -20 -ジュニュウ 🧑‍🍼️ 5 5 501 -20 -ジュニュウスルヒト 🧑‍🍼️ 5 5 501 -20 -ヒト 🧑‍🍼️ 5 5 501 -20 -エンジェル 👼️ 5 5 501 -20 -カオ 👼️ 5 5 501 -20 -テンシ 👼️ 5 5 501 -20 -カオ 🎅️ 5 5 501 -20 -クリスマス 🎅️ 5 5 501 -20 -サンタ 🎅️ 5 5 501 -20 -サンタクロース 🎅️ 5 5 501 -20 -オンナ 🤶️ 5 5 501 -20 -クリスマス 🤶️ 5 5 501 -20 -サンタクロース 🤶️ 5 5 501 -20 -ジョセイ 🤶️ 5 5 501 -20 -ジョセイノサンタ 🤶️ 5 5 501 -20 -クリスマス 🧑‍🎄️ 5 5 501 -20 -サンタクロース 🧑‍🎄️ 5 5 501 -20 -サンタサン 🧑‍🎄️ 5 5 501 -20 -スーパーヒーロー 🦸️ 5 5 501 -20 -ゼン 🦸️ 5 5 501 -20 -チョウジン 🦸️ 5 5 501 -20 -ヒロイン 🦸️ 5 5 501 -20 -ヒーロー 🦸️ 5 5 501 -20 -ゼン 🦸‍♂️️ 5 5 501 -20 -ダンセイ 🦸‍♂️️ 5 5 501 -20 -ダンセイノスーパーヒーロー 🦸‍♂️️ 5 5 501 -20 -チョウジン 🦸‍♂️️ 5 5 501 -20 -ヒーロー 🦸‍♂️️ 5 5 501 -20 -ジョセイ 🦸‍♀️️ 5 5 501 -20 -ジョセイノスーパーヒーロー 🦸‍♀️️ 5 5 501 -20 -ゼン 🦸‍♀️️ 5 5 501 -20 -チョウジン 🦸‍♀️️ 5 5 501 -20 -ヒロイン 🦸‍♀️️ 5 5 501 -20 -ヒーロー 🦸‍♀️️ 5 5 501 -20 -アク 🦹️ 5 5 501 -20 -アクヤク 🦹️ 5 5 501 -20 -チョウジン 🦹️ 5 5 501 -20 -ハンニン 🦹️ 5 5 501 -20 -ワル 🦹️ 5 5 501 -20 -ヴィラン 🦹️ 5 5 501 -20 -アク 🦹‍♂️️ 5 5 501 -20 -ダンセイ 🦹‍♂️️ 5 5 501 -20 -ダンセイノアクヤク 🦹‍♂️️ 5 5 501 -20 -チョウジン 🦹‍♂️️ 5 5 501 -20 -ハンニン 🦹‍♂️️ 5 5 501 -20 -ワル 🦹‍♂️️ 5 5 501 -20 -ヴィラン 🦹‍♂️️ 5 5 501 -20 -アク 🦹‍♀️️ 5 5 501 -20 -ジョセイ 🦹‍♀️️ 5 5 501 -20 -ジョセイノアクヤク 🦹‍♀️️ 5 5 501 -20 -チョウジン 🦹‍♀️️ 5 5 501 -20 -ハンニン 🦹‍♀️️ 5 5 501 -20 -ワル 🦹‍♀️️ 5 5 501 -20 -ヴィラン 🦹‍♀️️ 5 5 501 -20 -マジョ 🧙️ 5 5 501 -20 -マホウ 🧙️ 5 5 501 -20 -マホウツカイ 🧙️ 5 5 501 -20 -オトコ 🧙‍♂️️ 5 5 501 -20 -オトコノマホウツカイ 🧙‍♂️️ 5 5 501 -20 -ダンセイ 🧙‍♂️️ 5 5 501 -20 -マホウツカイ 🧙‍♂️️ 5 5 501 -20 -オンナ 🧙‍♀️️ 5 5 501 -20 -オンナノマホウツカイ 🧙‍♀️️ 5 5 501 -20 -ジョセイ 🧙‍♀️️ 5 5 501 -20 -マジョ 🧙‍♀️️ 5 5 501 -20 -マホウツカイ 🧙‍♀️️ 5 5 501 -20 -オベロン 🧚️ 5 5 501 -20 -デンセツ 🧚️ 5 5 501 -20 -パック 🧚️ 5 5 501 -20 -マホウ 🧚️ 5 5 501 -20 -ヨウセイ 🧚️ 5 5 501 -20 -オトコ 🧚‍♂️️ 5 5 501 -20 -オトコノヨウセイ 🧚‍♂️️ 5 5 501 -20 -ダンセイ 🧚‍♂️️ 5 5 501 -20 -ヨウセイ 🧚‍♂️️ 5 5 501 -20 -オンナ 🧚‍♀️️ 5 5 501 -20 -オンナノヨウセイ 🧚‍♀️️ 5 5 501 -20 -ジョセイ 🧚‍♀️️ 5 5 501 -20 -ヨウセイ 🧚‍♀️️ 5 5 501 -20 -キュウケツキ 🧛️ 5 5 501 -20 -ドラキュラ 🧛️ 5 5 501 -20 -バンパイア 🧛️ 5 5 501 -20 -オトコ 🧛‍♂️️ 5 5 501 -20 -オトコノキュウケツキ 🧛‍♂️️ 5 5 501 -20 -キュウケツキ 🧛‍♂️️ 5 5 501 -20 -ダンセイ 🧛‍♂️️ 5 5 501 -20 -ドラキュラ 🧛‍♂️️ 5 5 501 -20 -バンパイア 🧛‍♂️️ 5 5 501 -20 -オンナ 🧛‍♀️️ 5 5 501 -20 -オンナノキュウケツキ 🧛‍♀️️ 5 5 501 -20 -キュウケツキ 🧛‍♀️️ 5 5 501 -20 -ジョセイ 🧛‍♀️️ 5 5 501 -20 -ドラキュラ 🧛‍♀️️ 5 5 501 -20 -バンパイア 🧛‍♀️️ 5 5 501 -20 -ニンギョ 🧜️ 5 5 501 -20 -マーマン 🧜️ 5 5 501 -20 -マーメイド 🧜️ 5 5 501 -20 -オトコ 🧜‍♂️️ 5 5 501 -20 -ダンセイ 🧜‍♂️️ 5 5 501 -20 -ニンギョ 🧜‍♂️️ 5 5 501 -20 -マーマン 🧜‍♂️️ 5 5 501 -20 -オンナ 🧜‍♀️️ 5 5 501 -20 -ジョセイ 🧜‍♀️️ 5 5 501 -20 -ニンギョ 🧜‍♀️️ 5 5 501 -20 -マーメイド 🧜‍♀️️ 5 5 501 -20 -エルフ 🧝️ 5 5 501 -20 -コヨウセイ 🧝️ 5 5 501 -20 -ヨウセイ 🧝️ 5 5 501 -20 -エルフ 🧝‍♂️️ 5 5 501 -20 -オトコ 🧝‍♂️️ 5 5 501 -20 -オトコノエルフ 🧝‍♂️️ 5 5 501 -20 -ダンセイ 🧝‍♂️️ 5 5 501 -20 -エルフ 🧝‍♀️️ 5 5 501 -20 -オンナ 🧝‍♀️️ 5 5 501 -20 -オンナノエルフ 🧝‍♀️️ 5 5 501 -20 -ジョセイ 🧝‍♀️️ 5 5 501 -20 -セイレイ 🧞️ 5 5 501 -20 -マジン 🧞️ 5 5 501 -20 -オトコ 🧞‍♂️️ 5 5 501 -20 -オトコノセイレイ 🧞‍♂️️ 5 5 501 -20 -セイレイ 🧞‍♂️️ 5 5 501 -20 -ダンセイ 🧞‍♂️️ 5 5 501 -20 -マジン 🧞‍♂️️ 5 5 501 -20 -オンナ 🧞‍♀️️ 5 5 501 -20 -オンナノセイレイ 🧞‍♀️️ 5 5 501 -20 -ジョセイ 🧞‍♀️️ 5 5 501 -20 -セイレイ 🧞‍♀️️ 5 5 501 -20 -マジン 🧞‍♀️️ 5 5 501 -20 -ゾンビ 🧟️ 5 5 501 -20 -ホラー 🧟️ 5 5 501 -20 -オトコ 🧟‍♂️️ 5 5 501 -20 -オトコノゾンビ 🧟‍♂️️ 5 5 501 -20 -ゾンビ 🧟‍♂️️ 5 5 501 -20 -ダンセイ 🧟‍♂️️ 5 5 501 -20 -ホラー 🧟‍♂️️ 5 5 501 -20 -オンナ 🧟‍♀️️ 5 5 501 -20 -オンナノゾンビ 🧟‍♀️️ 5 5 501 -20 -ジョセイ 🧟‍♀️️ 5 5 501 -20 -ゾンビ 🧟‍♀️️ 5 5 501 -20 -ホラー 🧟‍♀️️ 5 5 501 -20 -オトギバナシ 🧌️ 5 5 501 -20 -トロール 🧌️ 5 5 501 -20 -ファンタジー 🧌️ 5 5 501 -20 -モンスター 🧌️ 5 5 501 -20 -エステ 💆️ 5 5 501 -20 -フェイスマッサージ 💆️ 5 5 501 -20 -フェイスマッサージチュウノヒト 💆️ 5 5 501 -20 -マッサージ 💆️ 5 5 501 -20 -エステ 💆‍♂️️ 5 5 501 -20 -オトコ 💆‍♂️️ 5 5 501 -20 -ダンセイ 💆‍♂️️ 5 5 501 -20 -フェイスマッサージ 💆‍♂️️ 5 5 501 -20 -フェイスマッサージチュウノオトコ 💆‍♂️️ 5 5 501 -20 -マッサージ 💆‍♂️️ 5 5 501 -20 -エステ 💆‍♀️️ 5 5 501 -20 -オンナ 💆‍♀️️ 5 5 501 -20 -ジョセイ 💆‍♀️️ 5 5 501 -20 -フェイスマッサージ 💆‍♀️️ 5 5 501 -20 -フェイスマッサージチュウノオンナ 💆‍♀️️ 5 5 501 -20 -マッサージ 💆‍♀️️ 5 5 501 -20 -サンパツ 💇️ 5 5 501 -20 -サンパツサレルヒト 💇️ 5 5 501 -20 -トコヤ 💇️ 5 5 501 -20 -ビヨウイン 💇️ 5 5 501 -20 -ビヨウシツ 💇️ 5 5 501 -20 -ヘアカット 💇️ 5 5 501 -20 -サンパツサレルオトコ 💇‍♂️️ 5 5 501 -20 -ダンセイ 💇‍♂️️ 5 5 501 -20 -トコヤ 💇‍♂️️ 5 5 501 -20 -ビヨウイン 💇‍♂️️ 5 5 501 -20 -ビヨウシツ 💇‍♂️️ 5 5 501 -20 -ヘアカット 💇‍♂️️ 5 5 501 -20 -サンパツサレルオンナ 💇‍♀️️ 5 5 501 -20 -ジョセイ 💇‍♀️️ 5 5 501 -20 -トコヤ 💇‍♀️️ 5 5 501 -20 -ビヨウイン 💇‍♀️️ 5 5 501 -20 -ビヨウシツ 💇‍♀️️ 5 5 501 -20 -ヘアカット 💇‍♀️️ 5 5 501 -20 -アルクヒト 🚶️ 5 5 501 -20 -ウォーキング 🚶️ 5 5 501 -20 -ホコウ 🚶️ 5 5 501 -20 -ホコウシャ 🚶️ 5 5 501 -20 -アルクオトコ 🚶‍♂️️ 5 5 501 -20 -ウォーキング 🚶‍♂️️ 5 5 501 -20 -ダンセイ 🚶‍♂️️ 5 5 501 -20 -ホコウ 🚶‍♂️️ 5 5 501 -20 -ホコウシャ 🚶‍♂️️ 5 5 501 -20 -アルクオンナ 🚶‍♀️️ 5 5 501 -20 -ウォーキング 🚶‍♀️️ 5 5 501 -20 -ジョセイ 🚶‍♀️️ 5 5 501 -20 -ホコウ 🚶‍♀️️ 5 5 501 -20 -ホコウシャ 🚶‍♀️️ 5 5 501 -20 -キリツ 🧍️ 5 5 501 -20 -タッテイル 🧍️ 5 5 501 -20 -タツヒト 🧍️ 5 5 501 -20 -ヒト 🧍️ 5 5 501 -20 -キリツ 🧍‍♂️️ 5 5 501 -20 -タツオトコ 🧍‍♂️️ 5 5 501 -20 -ダンセイ 🧍‍♂️️ 5 5 501 -20 -キリツ 🧍‍♀️️ 5 5 501 -20 -ジョセイ 🧍‍♀️️ 5 5 501 -20 -タツオンナ 🧍‍♀️️ 5 5 501 -20 -スワル 🧎️ 5 5 501 -20 -セイザスルヒト 🧎️ 5 5 501 -20 -ヒザマズク 🧎️ 5 5 501 -20 -ヒト 🧎️ 5 5 501 -20 -スワル 🧎‍♂️️ 5 5 501 -20 -セイザスルダンセイ 🧎‍♂️️ 5 5 501 -20 -ダンセイ 🧎‍♂️️ 5 5 501 -20 -ヒザマズク 🧎‍♂️️ 5 5 501 -20 -ジョセイ 🧎‍♀️️ 5 5 501 -20 -スワル 🧎‍♀️️ 5 5 501 -20 -セイザスルジョセイ 🧎‍♀️️ 5 5 501 -20 -ヒザマズク 🧎‍♀️️ 5 5 501 -20 -アクセシビリティ 🧑‍🦯️ 5 5 501 -20 -シカク 🧑‍🦯️ 5 5 501 -20 -ショウガイ 🧑‍🦯️ 5 5 501 -20 -ツエヲツイタヒト 🧑‍🦯️ 5 5 501 -20 -メ 🧑‍🦯️ 5 5 501 -20 -アクセシビリティ 👨‍🦯️ 5 5 501 -20 -シカク 👨‍🦯️ 5 5 501 -20 -ショウガイ 👨‍🦯️ 5 5 501 -20 -ダンセイ 👨‍🦯️ 5 5 501 -20 -ツエヲツイタダンセイ 👨‍🦯️ 5 5 501 -20 -メ 👨‍🦯️ 5 5 501 -20 -アクセシビリティ 👩‍🦯️ 5 5 501 -20 -シカク 👩‍🦯️ 5 5 501 -20 -ショウガイ 👩‍🦯️ 5 5 501 -20 -ジョセイ 👩‍🦯️ 5 5 501 -20 -ツエヲツイタジョセイ 👩‍🦯️ 5 5 501 -20 -メ 👩‍🦯️ 5 5 501 -20 -アクセシビリティ 🧑‍🦼️ 5 5 501 -20 -クルマイス 🧑‍🦼️ 5 5 501 -20 -ショウガイ 🧑‍🦼️ 5 5 501 -20 -デンドウクルマイスノヒト 🧑‍🦼️ 5 5 501 -20 -アクセシビリティ 👨‍🦼️ 5 5 501 -20 -クルマイス 👨‍🦼️ 5 5 501 -20 -ショウガイ 👨‍🦼️ 5 5 501 -20 -ダンセイ 👨‍🦼️ 5 5 501 -20 -デンドウクルマイスノダンセイ 👨‍🦼️ 5 5 501 -20 -アクセシビリティ 👩‍🦼️ 5 5 501 -20 -クルマイス 👩‍🦼️ 5 5 501 -20 -ショウガイ 👩‍🦼️ 5 5 501 -20 -ジョセイ 👩‍🦼️ 5 5 501 -20 -デンドウクルマイスノジョセイ 👩‍🦼️ 5 5 501 -20 -アクセシビリティ 🧑‍🦽️ 5 5 501 -20 -クルマイス 🧑‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノヒト 🧑‍🦽️ 5 5 501 -20 -ショウガイ 🧑‍🦽️ 5 5 501 -20 -アクセシビリティ 👨‍🦽️ 5 5 501 -20 -クルマイス 👨‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノダンセイ 👨‍🦽️ 5 5 501 -20 -ショウガイ 👨‍🦽️ 5 5 501 -20 -ダンセイ 👨‍🦽️ 5 5 501 -20 -アクセシビリティ 👩‍🦽️ 5 5 501 -20 -クルマイス 👩‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノジョセイ 👩‍🦽️ 5 5 501 -20 -ショウガイ 👩‍🦽️ 5 5 501 -20 -ジョセイ 👩‍🦽️ 5 5 501 -20 -ジョギング 🏃️ 5 5 501 -20 -スポーツ 🏃️ 5 5 501 -20 -ハシルヒト 🏃️ 5 5 501 -20 -マラソン 🏃️ 5 5 501 -20 -ランナー 🏃️ 5 5 501 -20 -ランニング 🏃️ 5 5 501 -20 -ジョギング 🏃‍♂️️ 5 5 501 -20 -ダンセイ 🏃‍♂️️ 5 5 501 -20 -ハシルオトコ 🏃‍♂️️ 5 5 501 -20 -マラソン 🏃‍♂️️ 5 5 501 -20 -ランナー 🏃‍♂️️ 5 5 501 -20 -ランニング 🏃‍♂️️ 5 5 501 -20 -ジョギング 🏃‍♀️️ 5 5 501 -20 -ジョセイ 🏃‍♀️️ 5 5 501 -20 -ハシルオンナ 🏃‍♀️️ 5 5 501 -20 -マラソン 🏃‍♀️️ 5 5 501 -20 -ランナー 🏃‍♀️️ 5 5 501 -20 -ランニング 🏃‍♀️️ 5 5 501 -20 -オドリコ 💃️ 5 5 501 -20 -オドルオンナ 💃️ 5 5 501 -20 -ジョセイ 💃️ 5 5 501 -20 -ダンサー 💃️ 5 5 501 -20 -ダンス 💃️ 5 5 501 -20 -フラメンコ 💃️ 5 5 501 -20 -オトコ 🕺️ 5 5 501 -20 -オドルオトコ 🕺️ 5 5 501 -20 -ダンサー 🕺️ 5 5 501 -20 -ダンス 🕺️ 5 5 501 -20 -ダンセイ 🕺️ 5 5 501 -20 -ウイテルビジネスマン 🕴️️ 5 5 501 -20 -オトコ 🕴️️ 5 5 501 -20 -クウチュウフユウ 🕴️️ 5 5 501 -20 -スーツ 🕴️️ 5 5 501 -20 -ダンセイ 🕴️️ 5 5 501 -20 -ビジネスマン 🕴️️ 5 5 501 -20 -ウサミミ 👯️ 5 5 501 -20 -カオ 👯️ 5 5 501 -20 -ダンサー 👯️ 5 5 501 -20 -バニー 👯️ 5 5 501 -20 -バニーガール 👯️ 5 5 501 -20 -バニーボーイ 👯️ 5 5 501 -20 -パーティー 👯️ 5 5 501 -20 -ウサミミ 👯‍♂️️ 5 5 501 -20 -オトコ 👯‍♂️️ 5 5 501 -20 -ダンサー 👯‍♂️️ 5 5 501 -20 -ダンセイ 👯‍♂️️ 5 5 501 -20 -バニーボーイ 👯‍♂️️ 5 5 501 -20 -パーティー 👯‍♂️️ 5 5 501 -20 -ウサミミ 👯‍♀️️ 5 5 501 -20 -オンナ 👯‍♀️️ 5 5 501 -20 -ジョセイ 👯‍♀️️ 5 5 501 -20 -ダンサー 👯‍♀️️ 5 5 501 -20 -バニーガール 👯‍♀️️ 5 5 501 -20 -パーティー 👯‍♀️️ 5 5 501 -20 -サウナ 🧖️ 5 5 501 -20 -サウナニハイルヒト 🧖️ 5 5 501 -20 -オトコ 🧖‍♂️️ 5 5 501 -20 -サウナ 🧖‍♂️️ 5 5 501 -20 -サウナニハイルオトコ 🧖‍♂️️ 5 5 501 -20 -ダンセイ 🧖‍♂️️ 5 5 501 -20 -オンナ 🧖‍♀️️ 5 5 501 -20 -サウナ 🧖‍♀️️ 5 5 501 -20 -サウナニハイルオンナ 🧖‍♀️️ 5 5 501 -20 -ジョセイ 🧖‍♀️️ 5 5 501 -20 -トザン 🧗️ 5 5 501 -20 -ヤマノボリ 🧗️ 5 5 501 -20 -ヤマヲノボルヒト 🧗️ 5 5 501 -20 -オトコ 🧗‍♂️️ 5 5 501 -20 -ダンセイ 🧗‍♂️️ 5 5 501 -20 -トザン 🧗‍♂️️ 5 5 501 -20 -ヤマノボリ 🧗‍♂️️ 5 5 501 -20 -ヤマヲノボルオトコ 🧗‍♂️️ 5 5 501 -20 -オンナ 🧗‍♀️️ 5 5 501 -20 -ジョセイ 🧗‍♀️️ 5 5 501 -20 -トザン 🧗‍♀️️ 5 5 501 -20 -ヤマノボリ 🧗‍♀️️ 5 5 501 -20 -ヤマヲノボルオンナ 🧗‍♀️️ 5 5 501 -20 -スポーツ 🤺️ 5 5 501 -20 -フェンシング 🤺️ 5 5 501 -20 -フェンシングヲスルヒト 🤺️ 5 5 501 -20 -キシュ 🏇️ 5 5 501 -20 -ケイバ 🏇️ 5 5 501 -20 -ジョウバ 🏇️ 5 5 501 -20 -ジョッキー 🏇️ 5 5 501 -20 -スポーツ 🏇️ 5 5 501 -20 -スキー ⛷️️ 5 5 501 -20 -スキーヤー ⛷️️ 5 5 501 -20 -ストック ⛷️️ 5 5 501 -20 -スポーツ ⛷️️ 5 5 501 -20 -スノボ 🏂️ 5 5 501 -20 -スノーボーダー 🏂️ 5 5 501 -20 -スノーボード 🏂️ 5 5 501 -20 -スポーツ 🏂️ 5 5 501 -20 -ゴルフ 🏌️️ 5 5 501 -20 -ゴルファー 🏌️️ 5 5 501 -20 -ゴルフヲスルヒト 🏌️️ 5 5 501 -20 -スポーツ 🏌️️ 5 5 501 -20 -オトコ 🏌️‍♂️️ 5 5 501 -20 -ゴルフ 🏌️‍♂️️ 5 5 501 -20 -ゴルファー 🏌️‍♂️️ 5 5 501 -20 -ゴルフヲスルオトコ 🏌️‍♂️️ 5 5 501 -20 -スポーツ 🏌️‍♂️️ 5 5 501 -20 -ダンセイ 🏌️‍♂️️ 5 5 501 -20 -オンナ 🏌️‍♀️️ 5 5 501 -20 -ゴルフ 🏌️‍♀️️ 5 5 501 -20 -ゴルファー 🏌️‍♀️️ 5 5 501 -20 -ゴルフヲスルオンナ 🏌️‍♀️️ 5 5 501 -20 -ジョセイ 🏌️‍♀️️ 5 5 501 -20 -スポーツ 🏌️‍♀️️ 5 5 501 -20 -サーファー 🏄️ 5 5 501 -20 -サーフィン 🏄️ 5 5 501 -20 -サーフィンスルヒト 🏄️ 5 5 501 -20 -スポーツ 🏄️ 5 5 501 -20 -ナミノリ 🏄️ 5 5 501 -20 -オトコ 🏄‍♂️️ 5 5 501 -20 -サーファー 🏄‍♂️️ 5 5 501 -20 -サーフィンスルオトコ 🏄‍♂️️ 5 5 501 -20 -スポーツ 🏄‍♂️️ 5 5 501 -20 -ダンセイ 🏄‍♂️️ 5 5 501 -20 -ナミノリ 🏄‍♂️️ 5 5 501 -20 -オンナ 🏄‍♀️️ 5 5 501 -20 -サーファー 🏄‍♀️️ 5 5 501 -20 -サーフィンスルオンナ 🏄‍♀️️ 5 5 501 -20 -ジョセイ 🏄‍♀️️ 5 5 501 -20 -スポーツ 🏄‍♀️️ 5 5 501 -20 -ナミノリ 🏄‍♀️️ 5 5 501 -20 -カヌー 🚣️ 5 5 501 -20 -カヤック 🚣️ 5 5 501 -20 -スポーツ 🚣️ 5 5 501 -20 -ノリモノ 🚣️ 5 5 501 -20 -フネ 🚣️ 5 5 501 -20 -ボートヲコグヒト 🚣️ 5 5 501 -20 -カヌー 🚣‍♂️️ 5 5 501 -20 -カヤック 🚣‍♂️️ 5 5 501 -20 -スポーツ 🚣‍♂️️ 5 5 501 -20 -ダンセイ 🚣‍♂️️ 5 5 501 -20 -フネ 🚣‍♂️️ 5 5 501 -20 -ボートヲコグオトコ 🚣‍♂️️ 5 5 501 -20 -カヌー 🚣‍♀️️ 5 5 501 -20 -カヤック 🚣‍♀️️ 5 5 501 -20 -ジョセイ 🚣‍♀️️ 5 5 501 -20 -スポーツ 🚣‍♀️️ 5 5 501 -20 -フネ 🚣‍♀️️ 5 5 501 -20 -ボートヲコグオンナ 🚣‍♀️️ 5 5 501 -20 -オヨグヒト 🏊️ 5 5 501 -20 -スイエイ 🏊️ 5 5 501 -20 -スイマー 🏊️ 5 5 501 -20 -スイミング 🏊️ 5 5 501 -20 -スイム 🏊️ 5 5 501 -20 -スポーツ 🏊️ 5 5 501 -20 -オヨグオトコ 🏊‍♂️️ 5 5 501 -20 -スイエイ 🏊‍♂️️ 5 5 501 -20 -スイマー 🏊‍♂️️ 5 5 501 -20 -スイミング 🏊‍♂️️ 5 5 501 -20 -スイム 🏊‍♂️️ 5 5 501 -20 -スポーツ 🏊‍♂️️ 5 5 501 -20 -ダンセイ 🏊‍♂️️ 5 5 501 -20 -オヨグオンナ 🏊‍♀️️ 5 5 501 -20 -ジョセイ 🏊‍♀️️ 5 5 501 -20 -スイエイ 🏊‍♀️️ 5 5 501 -20 -スイマー 🏊‍♀️️ 5 5 501 -20 -スイミング 🏊‍♀️️ 5 5 501 -20 -スイム 🏊‍♀️️ 5 5 501 -20 -スポーツ 🏊‍♀️️ 5 5 501 -20 -キュウギ ⛹️️ 5 5 501 -20 -スポーツ ⛹️️ 5 5 501 -20 -バスケ ⛹️️ 5 5 501 -20 -バスケットボール ⛹️️ 5 5 501 -20 -バスケットボールヲスルヒト ⛹️️ 5 5 501 -20 -キュウギ ⛹️‍♂️️ 5 5 501 -20 -スポーツ ⛹️‍♂️️ 5 5 501 -20 -ダンセイ ⛹️‍♂️️ 5 5 501 -20 -バスケ ⛹️‍♂️️ 5 5 501 -20 -バスケットボール ⛹️‍♂️️ 5 5 501 -20 -バスケットボールヲスルオトコ ⛹️‍♂️️ 5 5 501 -20 -キュウギ ⛹️‍♀️️ 5 5 501 -20 -ジョセイ ⛹️‍♀️️ 5 5 501 -20 -スポーツ ⛹️‍♀️️ 5 5 501 -20 -バスケ ⛹️‍♀️️ 5 5 501 -20 -バスケットボール ⛹️‍♀️️ 5 5 501 -20 -バスケットボールヲスルオンナ ⛹️‍♀️️ 5 5 501 -20 -ウェイトリフティング 🏋️️ 5 5 501 -20 -ジュウリョウアゲ 🏋️️ 5 5 501 -20 -ジュウリョウアゲヲスルヒト 🏋️️ 5 5 501 -20 -スポーツ 🏋️️ 5 5 501 -20 -ウェイトリフティング 🏋️‍♂️️ 5 5 501 -20 -オトコ 🏋️‍♂️️ 5 5 501 -20 -ジュウリョウアゲヲスルオトコ 🏋️‍♂️️ 5 5 501 -20 -スポーツ 🏋️‍♂️️ 5 5 501 -20 -ダンセイ 🏋️‍♂️️ 5 5 501 -20 -ウェイトリフティング 🏋️‍♀️️ 5 5 501 -20 -オンナ 🏋️‍♀️️ 5 5 501 -20 -ジュウリョウアゲヲスルオンナ 🏋️‍♀️️ 5 5 501 -20 -ジョセイ 🏋️‍♀️️ 5 5 501 -20 -スポーツ 🏋️‍♀️️ 5 5 501 -20 -ケイリン 🚴️ 5 5 501 -20 -サイクリング 🚴️ 5 5 501 -20 -ジテンシャニノルジン 🚴️ 5 5 501 -20 -ジテンシャニノルヒト 🚴️ 5 5 501 -20 -スポーツ 🚴️ 5 5 501 -20 -ロードバイク 🚴️ 5 5 501 -20 -ロードレース 🚴️ 5 5 501 -20 -ケイリン 🚴‍♂️️ 5 5 501 -20 -サイクリング 🚴‍♂️️ 5 5 501 -20 -ジテンシャニノルオトコ 🚴‍♂️️ 5 5 501 -20 -スポーツ 🚴‍♂️️ 5 5 501 -20 -ダンセイ 🚴‍♂️️ 5 5 501 -20 -ロードレース 🚴‍♂️️ 5 5 501 -20 -ケイリン 🚴‍♀️️ 5 5 501 -20 -サイクリング 🚴‍♀️️ 5 5 501 -20 -ジテンシャニノルオンナ 🚴‍♀️️ 5 5 501 -20 -ジョセイ 🚴‍♀️️ 5 5 501 -20 -スポーツ 🚴‍♀️️ 5 5 501 -20 -ロードレース 🚴‍♀️️ 5 5 501 -20 -サイクリング 🚵️ 5 5 501 -20 -ジテンシャ 🚵️ 5 5 501 -20 -スポーツ 🚵️ 5 5 501 -20 -マウンテンバイク 🚵️ 5 5 501 -20 -マウンテンバイクニノルヒト 🚵️ 5 5 501 -20 -オトコ 🚵‍♂️️ 5 5 501 -20 -サイクリング 🚵‍♂️️ 5 5 501 -20 -ジテンシャ 🚵‍♂️️ 5 5 501 -20 -スポーツ 🚵‍♂️️ 5 5 501 -20 -ダンセイ 🚵‍♂️️ 5 5 501 -20 -マウンテンバイクニノルオトコ 🚵‍♂️️ 5 5 501 -20 -オンナ 🚵‍♀️️ 5 5 501 -20 -サイクリング 🚵‍♀️️ 5 5 501 -20 -ジテンシャ 🚵‍♀️️ 5 5 501 -20 -ジョセイ 🚵‍♀️️ 5 5 501 -20 -スポーツ 🚵‍♀️️ 5 5 501 -20 -マウンテンバイクニノルオンナ 🚵‍♀️️ 5 5 501 -20 -スポーツ 🤸️ 5 5 501 -20 -ソクテン 🤸️ 5 5 501 -20 -ソクテンスルヒト 🤸️ 5 5 501 -20 -タイソウ 🤸️ 5 5 501 -20 -オトコ 🤸‍♂️️ 5 5 501 -20 -スポーツ 🤸‍♂️️ 5 5 501 -20 -ソクテン 🤸‍♂️️ 5 5 501 -20 -ソクテンスルオトコ 🤸‍♂️️ 5 5 501 -20 -タイソウ 🤸‍♂️️ 5 5 501 -20 -ダンセイ 🤸‍♂️️ 5 5 501 -20 -オンナ 🤸‍♀️️ 5 5 501 -20 -ジョセイ 🤸‍♀️️ 5 5 501 -20 -スポーツ 🤸‍♀️️ 5 5 501 -20 -ソクテン 🤸‍♀️️ 5 5 501 -20 -ソクテンスルオンナ 🤸‍♀️️ 5 5 501 -20 -タイソウ 🤸‍♀️️ 5 5 501 -20 -スポーツ 🤼️ 5 5 501 -20 -レスラー 🤼️ 5 5 501 -20 -レスリング 🤼️ 5 5 501 -20 -レスリングスルヒト 🤼️ 5 5 501 -20 -レスリングヲスルヒト 🤼️ 5 5 501 -20 -オトコ 🤼‍♂️️ 5 5 501 -20 -スポーツ 🤼‍♂️️ 5 5 501 -20 -ダンセイ 🤼‍♂️️ 5 5 501 -20 -レスリング 🤼‍♂️️ 5 5 501 -20 -レスリングスルオトコ 🤼‍♂️️ 5 5 501 -20 -レスリングヲスルオトコ 🤼‍♂️️ 5 5 501 -20 -オンナ 🤼‍♀️️ 5 5 501 -20 -ジョセイ 🤼‍♀️️ 5 5 501 -20 -スポーツ 🤼‍♀️️ 5 5 501 -20 -レスリング 🤼‍♀️️ 5 5 501 -20 -レスリングスルオンナ 🤼‍♀️️ 5 5 501 -20 -レスリングヲスルオンナ 🤼‍♀️️ 5 5 501 -20 -キュウギ 🤽️ 5 5 501 -20 -スイキュウ 🤽️ 5 5 501 -20 -スイキュウヲスルヒト 🤽️ 5 5 501 -20 -スポーツ 🤽️ 5 5 501 -20 -オトコ 🤽‍♂️️ 5 5 501 -20 -キュウギ 🤽‍♂️️ 5 5 501 -20 -スイキュウ 🤽‍♂️️ 5 5 501 -20 -スイキュウヲスルオトコ 🤽‍♂️️ 5 5 501 -20 -スポーツ 🤽‍♂️️ 5 5 501 -20 -ダンセイ 🤽‍♂️️ 5 5 501 -20 -オンナ 🤽‍♀️️ 5 5 501 -20 -キュウギ 🤽‍♀️️ 5 5 501 -20 -ジョセイ 🤽‍♀️️ 5 5 501 -20 -スイキュウ 🤽‍♀️️ 5 5 501 -20 -スイキュウヲスルオンナ 🤽‍♀️️ 5 5 501 -20 -スポーツ 🤽‍♀️️ 5 5 501 -20 -キュウギ 🤾️ 5 5 501 -20 -スポーツ 🤾️ 5 5 501 -20 -ハンドボール 🤾️ 5 5 501 -20 -ハンドボールヲスルヒト 🤾️ 5 5 501 -20 -オトコ 🤾‍♂️️ 5 5 501 -20 -キュウギ 🤾‍♂️️ 5 5 501 -20 -スポーツ 🤾‍♂️️ 5 5 501 -20 -ダンセイ 🤾‍♂️️ 5 5 501 -20 -ハンドボール 🤾‍♂️️ 5 5 501 -20 -ハンドボールヲスルオトコ 🤾‍♂️️ 5 5 501 -20 -オンナ 🤾‍♀️️ 5 5 501 -20 -キュウギ 🤾‍♀️️ 5 5 501 -20 -ジョセイ 🤾‍♀️️ 5 5 501 -20 -スポーツ 🤾‍♀️️ 5 5 501 -20 -ハンドボール 🤾‍♀️️ 5 5 501 -20 -ハンドボールヲスルオンナ 🤾‍♀️️ 5 5 501 -20 -ジャグラー 🤹️ 5 5 501 -20 -ジャグリング 🤹️ 5 5 501 -20 -ジャグリングヲスルヒト 🤹️ 5 5 501 -20 -ダイドウゲイ 🤹️ 5 5 501 -20 -オトコ 🤹‍♂️️ 5 5 501 -20 -ジャグラー 🤹‍♂️️ 5 5 501 -20 -ジャグリング 🤹‍♂️️ 5 5 501 -20 -ジャグリングヲスルオトコ 🤹‍♂️️ 5 5 501 -20 -ダイドウゲイ 🤹‍♂️️ 5 5 501 -20 -ダンセイ 🤹‍♂️️ 5 5 501 -20 -オンナ 🤹‍♀️️ 5 5 501 -20 -ジャグラー 🤹‍♀️️ 5 5 501 -20 -ジャグリング 🤹‍♀️️ 5 5 501 -20 -ジャグリングヲスルオンナ 🤹‍♀️️ 5 5 501 -20 -ジョセイ 🤹‍♀️️ 5 5 501 -20 -ダイドウゲイ 🤹‍♀️️ 5 5 501 -20 -メイソウ 🧘️ 5 5 501 -20 -ヨガ 🧘️ 5 5 501 -20 -ヨガノポーズヲスルヒト 🧘️ 5 5 501 -20 -オトコ 🧘‍♂️️ 5 5 501 -20 -ダンセイ 🧘‍♂️️ 5 5 501 -20 -メイソウ 🧘‍♂️️ 5 5 501 -20 -ヨガ 🧘‍♂️️ 5 5 501 -20 -ヨガノポーズヲスルオトコ 🧘‍♂️️ 5 5 501 -20 -オンナ 🧘‍♀️️ 5 5 501 -20 -ジョセイ 🧘‍♀️️ 5 5 501 -20 -メイソウ 🧘‍♀️️ 5 5 501 -20 -ヨガ 🧘‍♀️️ 5 5 501 -20 -ヨガノポーズヲスルオンナ 🧘‍♀️️ 5 5 501 -20 -バスタブ 🛀️ 5 5 501 -20 -フロ 🛀️ 5 5 501 -20 -フロニハイルジン 🛀️ 5 5 501 -20 -フロニハイルヒト 🛀️ 5 5 501 -20 -ヨクソウ 🛀️ 5 5 501 -20 -ネル 🛌️ 5 5 501 -20 -ベッド 🛌️ 5 5 501 -20 -ベッドニネルヒト 🛌️ 5 5 501 -20 -ホテル 🛌️ 5 5 501 -20 -カップル 🧑‍🤝‍🧑️ 5 5 501 -20 -コイビト 🧑‍🤝‍🧑️ 5 5 501 -20 -ツナグ 🧑‍🤝‍🧑️ 5 5 501 -20 -テ 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグ 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグ2ニン 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグフタリ 🧑‍🤝‍🧑️ 5 5 501 -20 -トモダチ 🧑‍🤝‍🧑️ 5 5 501 -20 -ヒト 🧑‍🤝‍🧑️ 5 5 501 -20 -オンナ 👭️ 5 5 501 -20 -カップル 👭️ 5 5 501 -20 -コイビト 👭️ 5 5 501 -20 -テヲツナグジョセイ 👭️ 5 5 501 -20 -トモダチ 👭️ 5 5 501 -20 -ドウセイ 👭️ 5 5 501 -20 -イセイ 👫️ 5 5 501 -20 -カップル 👫️ 5 5 501 -20 -コイビト 👫️ 5 5 501 -20 -ダンジョ 👫️ 5 5 501 -20 -テヲツナグダンジョ 👫️ 5 5 501 -20 -トモダチ 👫️ 5 5 501 -20 -フタリ 👫️ 5 5 501 -20 -オトコ 👬️ 5 5 501 -20 -カップル 👬️ 5 5 501 -20 -コイビト 👬️ 5 5 501 -20 -テヲツナグダンセイ 👬️ 5 5 501 -20 -トモダチ 👬️ 5 5 501 -20 -ドウセイ 👬️ 5 5 501 -20 -2ニンデキス 💏️ 5 5 501 -20 -カップル 💏️ 5 5 501 -20 -キス 💏️ 5 5 501 -20 -チュッ 💏️ 5 5 501 -20 -ハート 💏️ 5 5 501 -20 -フタリデキス 💏️ 5 5 501 -20 -2ニンデキス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -カップル 👩‍❤️‍💋‍👨️ 5 5 501 -20 -キス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ジョセイ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ジョセイトダンセイデキス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -チュッ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ハート 👩‍❤️‍💋‍👨️ 5 5 501 -20 -2ニンデキス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -カップル 👨‍❤️‍💋‍👨️ 5 5 501 -20 -キス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイ 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイトダンセイデキス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -チュッ 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ハート 👨‍❤️‍💋‍👨️ 5 5 501 -20 -2ニンデキス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -カップル 👩‍❤️‍💋‍👩️ 5 5 501 -20 -キス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ジョセイ 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ジョセイトジョセイデキス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -チュッ 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ハート 👩‍❤️‍💋‍👩️ 5 5 501 -20 -アツアツ 💑️ 5 5 501 -20 -カップル 💑️ 5 5 501 -20 -カップルトハート 💑️ 5 5 501 -20 -コイビト 💑️ 5 5 501 -20 -ハート 💑️ 5 5 501 -20 -アツアツ 👩‍❤️‍👨️ 5 5 501 -20 -カップル 👩‍❤️‍👨️ 5 5 501 -20 -カップルトハート 👩‍❤️‍👨️ 5 5 501 -20 -コイビト 👩‍❤️‍👨️ 5 5 501 -20 -ジョセイ 👩‍❤️‍👨️ 5 5 501 -20 -ジョセイトダンセイノカップル 👩‍❤️‍👨️ 5 5 501 -20 -ダンセイ 👩‍❤️‍👨️ 5 5 501 -20 -ハート 👩‍❤️‍👨️ 5 5 501 -20 -アツアツ 👨‍❤️‍👨️ 5 5 501 -20 -カップル 👨‍❤️‍👨️ 5 5 501 -20 -カップルトハート 👨‍❤️‍👨️ 5 5 501 -20 -コイビト 👨‍❤️‍👨️ 5 5 501 -20 -ダンセイ 👨‍❤️‍👨️ 5 5 501 -20 -ダンセイトダンセイノカップル 👨‍❤️‍👨️ 5 5 501 -20 -ハート 👨‍❤️‍👨️ 5 5 501 -20 -アツアツ 👩‍❤️‍👩️ 5 5 501 -20 -カップル 👩‍❤️‍👩️ 5 5 501 -20 -カップルトハート 👩‍❤️‍👩️ 5 5 501 -20 -コイビト 👩‍❤️‍👩️ 5 5 501 -20 -ジョセイ 👩‍❤️‍👩️ 5 5 501 -20 -ジョセイトジョセイノカップル 👩‍❤️‍👩️ 5 5 501 -20 -ハート 👩‍❤️‍👩️ 5 5 501 -20 -オトコノコ 👨‍👩‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👦️ 5 5 501 -20 -ダンセイトジョセイトオトコノコノカゾク 👨‍👩‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧️ 5 5 501 -20 -カゾク 👨‍👩‍👧️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧️ 5 5 501 -20 -ダンセイトジョセイトオンナノコノカゾク 👨‍👩‍👧️ 5 5 501 -20 -オトコノコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧‍👦️ 5 5 501 -20 -ダンセイトジョセイトオンナノコトオトコノコノカゾク 👨‍👩‍👧‍👦️ 5 5 501 -20 -オトコノコ 👨‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👦‍👦️ 5 5 501 -20 -ダンセイトジョセイトオトコノコトオトコノコノカゾク 👨‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧‍👧️ 5 5 501 -20 -ダンセイトジョセイトオンナノコトオンナノコノカゾク 👨‍👩‍👧‍👧️ 5 5 501 -20 -オトコノコ 👨‍👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👦️ 5 5 501 -20 -ダンセイトダンセイトオトコノコノカゾク 👨‍👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧️ 5 5 501 -20 -カゾク 👨‍👨‍👧️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧️ 5 5 501 -20 -ダンセイトダンセイトオンナノコノカゾク 👨‍👨‍👧️ 5 5 501 -20 -オトコノコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧‍👦️ 5 5 501 -20 -ダンセイトダンセイトオンナノコトオトコノコノカゾク 👨‍👨‍👧‍👦️ 5 5 501 -20 -オトコノコ 👨‍👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👦‍👦️ 5 5 501 -20 -ダンセイトダンセイトオトコノコトオトコノコノカゾク 👨‍👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👨‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧‍👧️ 5 5 501 -20 -ダンセイトダンセイトオンナノコトオンナノコノカゾク 👨‍👨‍👧‍👧️ 5 5 501 -20 -オトコノコ 👩‍👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👦️ 5 5 501 -20 -ジョセイトジョセイトオトコノコノカゾク 👩‍👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧️ 5 5 501 -20 -カゾク 👩‍👩‍👧️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧️ 5 5 501 -20 -ジョセイトジョセイトオンナノコノカゾク 👩‍👩‍👧️ 5 5 501 -20 -オトコノコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイトジョセイトオンナノコトオトコノコノカゾク 👩‍👩‍👧‍👦️ 5 5 501 -20 -オトコノコ 👩‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👦‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイトジョセイトオトコノコトオトコノコノカゾク 👩‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧‍👧️ 5 5 501 -20 -カゾク 👩‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイトジョセイトオンナノコトオンナノコノカゾク 👩‍👩‍👧‍👧️ 5 5 501 -20 -オトコノコ 👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👦️ 5 5 501 -20 -カゾク 👨‍👦️ 5 5 501 -20 -ダンセイ 👨‍👦️ 5 5 501 -20 -ダンセイトオトコノコノカゾク 👨‍👦️ 5 5 501 -20 -オトコノコ 👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👦‍👦️ 5 5 501 -20 -ダンセイトオトコノコトオトコノコノカゾク 👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👧️ 5 5 501 -20 -オンナノコ 👨‍👧️ 5 5 501 -20 -カゾク 👨‍👧️ 5 5 501 -20 -ダンセイ 👨‍👧️ 5 5 501 -20 -ダンセイトオンナノコノカゾク 👨‍👧️ 5 5 501 -20 -オトコノコ 👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👧‍👦️ 5 5 501 -20 -ダンセイトオンナノコトオトコノコノカゾク 👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👧‍👧️ 5 5 501 -20 -ダンセイトオンナノコトオンナノコノカゾク 👨‍👧‍👧️ 5 5 501 -20 -オトコノコ 👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👦️ 5 5 501 -20 -カゾク 👩‍👦️ 5 5 501 -20 -ジョセイ 👩‍👦️ 5 5 501 -20 -ジョセイトオトコノコノカゾク 👩‍👦️ 5 5 501 -20 -オトコノコ 👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👦‍👦️ 5 5 501 -20 -カゾク 👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👩‍👦‍👦️ 5 5 501 -20 -ジョセイトオトコノコトオトコノコノカゾク 👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👧️ 5 5 501 -20 -オンナノコ 👩‍👧️ 5 5 501 -20 -カゾク 👩‍👧️ 5 5 501 -20 -ジョセイ 👩‍👧️ 5 5 501 -20 -ジョセイトオンナノコノカゾク 👩‍👧️ 5 5 501 -20 -オトコノコ 👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👩‍👧‍👦️ 5 5 501 -20 -カゾク 👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👩‍👧‍👦️ 5 5 501 -20 -ジョセイトオンナノコトオトコノコノカゾク 👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👩‍👧‍👧️ 5 5 501 -20 -カゾク 👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👩‍👧‍👧️ 5 5 501 -20 -ジョセイトオンナノコトオンナノコノカゾク 👩‍👧‍👧️ 5 5 501 -20 -カオ 🗣️️ 5 5 501 -20 -シルエット 🗣️️ 5 5 501 -20 -ハナス 🗣️️ 5 5 501 -20 -ハナスヒトノシルエット 🗣️️ 5 5 501 -20 -1ニン 👤️ 5 5 501 -20 -カゲ 👤️ 5 5 501 -20 -ゲスト 👤️ 5 5 501 -20 -ゲストアカウント 👤️ 5 5 501 -20 -シルエット 👤️ 5 5 501 -20 -ジョウハンシン 👤️ 5 5 501 -20 -ヒトカゲ 👤️ 5 5 501 -20 -ヒトノシルエット 👤️ 5 5 501 -20 -ヒトリ 👤️ 5 5 501 -20 -2ニン 👥️ 5 5 501 -20 -2ニンノシルエット 👥️ 5 5 501 -20 -シルエット 👥️ 5 5 501 -20 -ジョウハンシン 👥️ 5 5 501 -20 -フタリ 👥️ 5 5 501 -20 -アイサツ 🫂️ 5 5 501 -20 -アリガトウ 🫂️ 5 5 501 -20 -オワカレ 🫂️ 5 5 501 -20 -コンニチハ 🫂️ 5 5 501 -20 -サヨウナラ 🫂️ 5 5 501 -20 -ハグスルヒト 🫂️ 5 5 501 -20 -オヤコ 👪️ 5 5 501 -20 -カゾク 👪️ 5 5 501 -20 -アシ 👣️ 5 5 501 -20 -アシアト 👣️ 5 5 501 -20 -アカゲ 🦰️ 5 5 501 -20 -アカゲノヒト 🦰️ 5 5 501 -20 -アカチャ 🦰️ 5 5 501 -20 -アフロ 🦱️ 5 5 501 -20 -カール 🦱️ 5 5 501 -20 -クセゲ 🦱️ 5 5 501 -20 -パンチパーマ 🦱️ 5 5 501 -20 -マキゲ 🦱️ 5 5 501 -20 -グレー 🦳️ 5 5 501 -20 -コウレイシャ 🦳️ 5 5 501 -20 -シラガ 🦳️ 5 5 501 -20 -ネンパイ 🦳️ 5 5 501 -20 -ロウジン 🦳️ 5 5 501 -20 -カガクリョウホウ 🦲️ 5 5 501 -20 -ケガナイ 🦲️ 5 5 501 -20 -スキンヘッド 🦲️ 5 5 501 -20 -ハゲアタマ 🦲️ 5 5 501 -20 -ボウズ 🦲️ 5 5 501 -20 -カオ 🐵️ 5 5 501 -20 -サル 🐵️ 5 5 501 -20 -サルノカオ 🐵️ 5 5 501 -20 -ドウブツ 🐵️ 5 5 501 -20 -サル 🐒️ 5 5 501 -20 -ドウブツ 🐒️ 5 5 501 -20 -カオ 🦍️ 5 5 501 -20 -ゴリラ 🦍️ 5 5 501 -20 -ドウブツ 🦍️ 5 5 501 -20 -オランウータン 🦧️ 5 5 501 -20 -サル 🦧️ 5 5 501 -20 -ドウブツ 🦧️ 5 5 501 -20 -モリノヒト 🦧️ 5 5 501 -20 -イヌ 🐶️ 5 5 501 -20 -イヌノカオ 🐶️ 5 5 501 -20 -カオ 🐶️ 5 5 501 -20 -ドウブツ 🐶️ 5 5 501 -20 -ペット 🐶️ 5 5 501 -20 -イヌ 🐕️ 5 5 501 -20 -ドウブツ 🐕️ 5 5 501 -20 -ペット 🐕️ 5 5 501 -20 -アクセシビリティ 🦮️ 5 5 501 -20 -イヌ 🦮️ 5 5 501 -20 -シカク 🦮️ 5 5 501 -20 -ショウガイ 🦮️ 5 5 501 -20 -ホジョ 🦮️ 5 5 501 -20 -ホジョケン 🦮️ 5 5 501 -20 -モウドウケン 🦮️ 5 5 501 -20 -アクセシビリティ 🐕‍🦺️ 5 5 501 -20 -イヌ 🐕‍🦺️ 5 5 501 -20 -カイジョケン 🐕‍🦺️ 5 5 501 -20 -サービス 🐕‍🦺️ 5 5 501 -20 -ホジョ 🐕‍🦺️ 5 5 501 -20 -イヌ 🐩️ 5 5 501 -20 -ドウブツ 🐩️ 5 5 501 -20 -プードル 🐩️ 5 5 501 -20 -ペット 🐩️ 5 5 501 -20 -オオカミ 🐺️ 5 5 501 -20 -オオカミノカオ 🐺️ 5 5 501 -20 -カオ 🐺️ 5 5 501 -20 -ドウブツ 🐺️ 5 5 501 -20 -カオ 🦊️ 5 5 501 -20 -キツネ 🦊️ 5 5 501 -20 -キツネノカオ 🦊️ 5 5 501 -20 -ドウブツ 🦊️ 5 5 501 -20 -アライグマ 🦝️ 5 5 501 -20 -コウキシン 🦝️ 5 5 501 -20 -ズルガシコイ 🦝️ 5 5 501 -20 -センサクズキ 🦝️ 5 5 501 -20 -ドウブツ 🦝️ 5 5 501 -20 -カオ 🐱️ 5 5 501 -20 -ドウブツ 🐱️ 5 5 501 -20 -ネコ 🐱️ 5 5 501 -20 -ネコノカsオ 🐱️ 5 5 501 -20 -ネコノカオ 🐱️ 5 5 501 -20 -ペット 🐱️ 5 5 501 -20 -ドウブツ 🐈️ 5 5 501 -20 -ネコ 🐈️ 5 5 501 -20 -ペット 🐈️ 5 5 501 -20 -クロ 🐈‍⬛️ 5 5 501 -20 -クロネコ 🐈‍⬛️ 5 5 501 -20 -ドウブツ 🐈‍⬛️ 5 5 501 -20 -ネコ 🐈‍⬛️ 5 5 501 -20 -フキツ 🐈‍⬛️ 5 5 501 -20 -カオ 🦁️ 5 5 501 -20 -ドウブツ 🦁️ 5 5 501 -20 -ライオン 🦁️ 5 5 501 -20 -ライオンノカオ 🦁️ 5 5 501 -20 -エト 🐯️ 5 5 501 -20 -カオ 🐯️ 5 5 501 -20 -シシ 🐯️ 5 5 501 -20 -ジュウニシ 🐯️ 5 5 501 -20 -トラ 🐯️ 5 5 501 -20 -トラノカオ 🐯️ 5 5 501 -20 -ドウブツ 🐯️ 5 5 501 -20 -トラ 🐅️ 5 5 501 -20 -ドウブツ 🐅️ 5 5 501 -20 -ドウブツ 🐆️ 5 5 501 -20 -ヒョウ 🐆️ 5 5 501 -20 -ウマ 🐴️ 5 5 501 -20 -ウマノカオ 🐴️ 5 5 501 -20 -カオ 🐴️ 5 5 501 -20 -ドウブツ 🐴️ 5 5 501 -20 -エダツノ 🫎️ 5 5 501 -20 -シカ 🫎️ 5 5 501 -20 -シカノカオ 🫎️ 5 5 501 -20 -ドウブツ 🫎️ 5 5 501 -20 -ヘラジカ 🫎️ 5 5 501 -20 -ヘラジカノカオ 🫎️ 5 5 501 -20 -ホニュウルイ 🫎️ 5 5 501 -20 -ウマ 🫏️ 5 5 501 -20 -ドウブツ 🫏️ 5 5 501 -20 -ホニュウルイ 🫏️ 5 5 501 -20 -ラバ 🫏️ 5 5 501 -20 -ロバ 🫏️ 5 5 501 -20 -ウマ 🐎️ 5 5 501 -20 -ケイバ 🐎️ 5 5 501 -20 -ジョウバ 🐎️ 5 5 501 -20 -ドウブツ 🐎️ 5 5 501 -20 -イッカクジュウ 🦄️ 5 5 501 -20 -カオ 🦄️ 5 5 501 -20 -ドウブツ 🦄️ 5 5 501 -20 -ユニコーン 🦄️ 5 5 501 -20 -ユニコーンノカオ 🦄️ 5 5 501 -20 -シマウマ 🦓️ 5 5 501 -20 -シマシマ 🦓️ 5 5 501 -20 -ドウブツ 🦓️ 5 5 501 -20 -カオ 🦌️ 5 5 501 -20 -シカ 🦌️ 5 5 501 -20 -ドウブツ 🦌️ 5 5 501 -20 -ウシ 🦬️ 5 5 501 -20 -ドウブツ 🦬️ 5 5 501 -20 -バイソン 🦬️ 5 5 501 -20 -バッファロー 🦬️ 5 5 501 -20 -ムレ 🦬️ 5 5 501 -20 -ヤギュウ 🦬️ 5 5 501 -20 -ウシ 🐮️ 5 5 501 -20 -ウシノカオ 🐮️ 5 5 501 -20 -エト 🐮️ 5 5 501 -20 -カオ 🐮️ 5 5 501 -20 -ジュウニシ 🐮️ 5 5 501 -20 -ドウブツ 🐮️ 5 5 501 -20 -ウシ 🐂️ 5 5 501 -20 -オウシ 🐂️ 5 5 501 -20 -セイザ 🐂️ 5 5 501 -20 -ドウブツ 🐂️ 5 5 501 -20 -ウシ 🐃️ 5 5 501 -20 -スイギュウ 🐃️ 5 5 501 -20 -ドウブツ 🐃️ 5 5 501 -20 -バッファロー 🐃️ 5 5 501 -20 -ウシ 🐄️ 5 5 501 -20 -ドウブツ 🐄️ 5 5 501 -20 -メウシ 🐄️ 5 5 501 -20 -カオ 🐷️ 5 5 501 -20 -ドウブツ 🐷️ 5 5 501 -20 -ブタ 🐷️ 5 5 501 -20 -ブタノカオ 🐷️ 5 5 501 -20 -ドウブツ 🐖️ 5 5 501 -20 -ブタ 🐖️ 5 5 501 -20 -イノシシ 🐗️ 5 5 501 -20 -カオ 🐗️ 5 5 501 -20 -ドウブツ 🐗️ 5 5 501 -20 -ノブタ 🐗️ 5 5 501 -20 -カオ 🐽️ 5 5 501 -20 -ハナ 🐽️ 5 5 501 -20 -ブタ 🐽️ 5 5 501 -20 -ブタハナ 🐽️ 5 5 501 -20 -ブタバナ 🐽️ 5 5 501 -20 -オヒツジ 🐏️ 5 5 501 -20 -セイザ 🐏️ 5 5 501 -20 -ドウブツ 🐏️ 5 5 501 -20 -ヒツジ 🐏️ 5 5 501 -20 -ドウブツ 🐑️ 5 5 501 -20 -ヒツジ 🐑️ 5 5 501 -20 -セイザ 🐐️ 5 5 501 -20 -ドウブツ 🐐️ 5 5 501 -20 -ヤギ 🐐️ 5 5 501 -20 -ドウブツ 🐪️ 5 5 501 -20 -ラクダ 🐪️ 5 5 501 -20 -ドウブツ 🐫️ 5 5 501 -20 -フタコブ 🐫️ 5 5 501 -20 -フタコブラクダ 🐫️ 5 5 501 -20 -ラクダ 🐫️ 5 5 501 -20 -アルパカ 🦙️ 5 5 501 -20 -グアナコ 🦙️ 5 5 501 -20 -ドウブツ 🦙️ 5 5 501 -20 -ビクーナ 🦙️ 5 5 501 -20 -ヨウモウ 🦙️ 5 5 501 -20 -ラマ 🦙️ 5 5 501 -20 -キリン 🦒️ 5 5 501 -20 -ドウブツ 🦒️ 5 5 501 -20 -ゾウ 🐘️ 5 5 501 -20 -ドウブツ 🐘️ 5 5 501 -20 -キバ 🦣️ 5 5 501 -20 -キョダイ 🦣️ 5 5 501 -20 -ゼツメツ 🦣️ 5 5 501 -20 -ドウブツ 🦣️ 5 5 501 -20 -マンモス 🦣️ 5 5 501 -20 -カオ 🦏️ 5 5 501 -20 -サイ 🦏️ 5 5 501 -20 -ドウブツ 🦏️ 5 5 501 -20 -カバ 🦛️ 5 5 501 -20 -ドウブツ 🦛️ 5 5 501 -20 -エト 🐭️ 5 5 501 -20 -カオ 🐭️ 5 5 501 -20 -ジュウニシ 🐭️ 5 5 501 -20 -ドウブツ 🐭️ 5 5 501 -20 -ネ 🐭️ 5 5 501 -20 -ネズミ 🐭️ 5 5 501 -20 -ネズミノカオ 🐭️ 5 5 501 -20 -ドウブツ 🐁️ 5 5 501 -20 -ネズミ 🐁️ 5 5 501 -20 -ハツカネズミ 🐁️ 5 5 501 -20 -マウス 🐁️ 5 5 501 -20 -ドウブツ 🐀️ 5 5 501 -20 -ネズミ 🐀️ 5 5 501 -20 -ラット 🐀️ 5 5 501 -20 -カオ 🐹️ 5 5 501 -20 -ドウブツ 🐹️ 5 5 501 -20 -ネズミ 🐹️ 5 5 501 -20 -ハムスター 🐹️ 5 5 501 -20 -ハムスターノカオ 🐹️ 5 5 501 -20 -ペット 🐹️ 5 5 501 -20 -ウ 🐰️ 5 5 501 -20 -ウサギ 🐰️ 5 5 501 -20 -ウサギノカオ 🐰️ 5 5 501 -20 -エト 🐰️ 5 5 501 -20 -カオ 🐰️ 5 5 501 -20 -ジュウニシ 🐰️ 5 5 501 -20 -ドウブツ 🐰️ 5 5 501 -20 -ペット 🐰️ 5 5 501 -20 -ウサギ 🐇️ 5 5 501 -20 -ドウブツ 🐇️ 5 5 501 -20 -ペット 🐇️ 5 5 501 -20 -ドウブツ 🐿️️ 5 5 501 -20 -リス 🐿️️ 5 5 501 -20 -ダムヅクリ 🦫️ 5 5 501 -20 -ドウブツ 🦫️ 5 5 501 -20 -ビーバー 🦫️ 5 5 501 -20 -トゲ 🦔️ 5 5 501 -20 -ドウブツ 🦔️ 5 5 501 -20 -ハリネズミ 🦔️ 5 5 501 -20 -キュウケツキ 🦇️ 5 5 501 -20 -コウモリ 🦇️ 5 5 501 -20 -ドウブツ 🦇️ 5 5 501 -20 -バンパイア 🦇️ 5 5 501 -20 -カオ 🐻️ 5 5 501 -20 -クマ 🐻️ 5 5 501 -20 -クマノカオ 🐻️ 5 5 501 -20 -ドウブツ 🐻️ 5 5 501 -20 -クマ 🐻‍❄️️ 5 5 501 -20 -シロ 🐻‍❄️️ 5 5 501 -20 -シロクマ 🐻‍❄️️ 5 5 501 -20 -ドウブツ 🐻‍❄️️ 5 5 501 -20 -ホッキョク 🐻‍❄️️ 5 5 501 -20 -ホッキョクグマ 🐻‍❄️️ 5 5 501 -20 -カオ 🐨️ 5 5 501 -20 -コアラ 🐨️ 5 5 501 -20 -ドウブツ 🐨️ 5 5 501 -20 -カオ 🐼️ 5 5 501 -20 -ドウブツ 🐼️ 5 5 501 -20 -パンダ 🐼️ 5 5 501 -20 -パンダノカオ 🐼️ 5 5 501 -20 -ドウブツ 🦥️ 5 5 501 -20 -ナマケモノ 🦥️ 5 5 501 -20 -ノンビリ 🦥️ 5 5 501 -20 -モノグサ 🦥️ 5 5 501 -20 -アソビスキ 🦦️ 5 5 501 -20 -カワウソ 🦦️ 5 5 501 -20 -サカナヲタベル 🦦️ 5 5 501 -20 -ドウブツ 🦦️ 5 5 501 -20 -ラッコ 🦦️ 5 5 501 -20 -アクシュウ 🦨️ 5 5 501 -20 -スカンク 🦨️ 5 5 501 -20 -ドウブツ 🦨️ 5 5 501 -20 -オーストラリア 🦘️ 5 5 501 -20 -カンガルー 🦘️ 5 5 501 -20 -ジャンプ 🦘️ 5 5 501 -20 -ジョーイ 🦘️ 5 5 501 -20 -ユウタイルイ 🦘️ 5 5 501 -20 -アナグマ 🦡️ 5 5 501 -20 -ドウブツ 🦡️ 5 5 501 -20 -ミツアナグマ 🦡️ 5 5 501 -20 -アシアト 🐾️ 5 5 501 -20 -イヌ 🐾️ 5 5 501 -20 -ドウブツ 🐾️ 5 5 501 -20 -ニクキュウ 🐾️ 5 5 501 -20 -ネコ 🐾️ 5 5 501 -20 -シチメンチョウ 🦃️ 5 5 501 -20 -ターキー 🦃️ 5 5 501 -20 -トリ 🦃️ 5 5 501 -20 -ドウブツ 🦃️ 5 5 501 -20 -カオ 🐔️ 5 5 501 -20 -トリ 🐔️ 5 5 501 -20 -ドウブツ 🐔️ 5 5 501 -20 -ニワトリ 🐔️ 5 5 501 -20 -オンドリ 🐓️ 5 5 501 -20 -トリ 🐓️ 5 5 501 -20 -ドウブツ 🐓️ 5 5 501 -20 -カオ 🐣️ 5 5 501 -20 -タマゴ 🐣️ 5 5 501 -20 -タマゴカラカエッタヒヨコ 🐣️ 5 5 501 -20 -トリ 🐣️ 5 5 501 -20 -ドウブツ 🐣️ 5 5 501 -20 -ヒナ 🐣️ 5 5 501 -20 -ヒナドリ 🐣️ 5 5 501 -20 -ヒヨコ 🐣️ 5 5 501 -20 -フカ 🐣️ 5 5 501 -20 -カオ 🐤️ 5 5 501 -20 -トリ 🐤️ 5 5 501 -20 -ドウブツ 🐤️ 5 5 501 -20 -ヒナ 🐤️ 5 5 501 -20 -ヒヨコ 🐤️ 5 5 501 -20 -ヨコヲムイテイルヒヨコ 🐤️ 5 5 501 -20 -トリ 🐥️ 5 5 501 -20 -ドウブツ 🐥️ 5 5 501 -20 -ヒナ 🐥️ 5 5 501 -20 -ヒヨコ 🐥️ 5 5 501 -20 -マエヲムイテイルヒヨコ 🐥️ 5 5 501 -20 -カオ 🐦️ 5 5 501 -20 -トリ 🐦️ 5 5 501 -20 -ドウブツ 🐦️ 5 5 501 -20 -トリ 🐧️ 5 5 501 -20 -ドウブツ 🐧️ 5 5 501 -20 -ペンギン 🐧️ 5 5 501 -20 -トリ 🕊️️ 5 5 501 -20 -ドウブツ 🕊️️ 5 5 501 -20 -ハト 🕊️️ 5 5 501 -20 -ヘイワ 🕊️️ 5 5 501 -20 -トリ 🦅️ 5 5 501 -20 -ドウブツ 🦅️ 5 5 501 -20 -ワシ 🦅️ 5 5 501 -20 -カモ 🦆️ 5 5 501 -20 -トリ 🦆️ 5 5 501 -20 -ドウブツ 🦆️ 5 5 501 -20 -トリ 🦢️ 5 5 501 -20 -ハクチョウ 🦢️ 5 5 501 -20 -ヒナ 🦢️ 5 5 501 -20 -ミニクイアヒルノコ 🦢️ 5 5 501 -20 -トリ 🦉️ 5 5 501 -20 -ドウブツ 🦉️ 5 5 501 -20 -フクロウ 🦉️ 5 5 501 -20 -ゼツメツ 🦤️ 5 5 501 -20 -トベナイトリ 🦤️ 5 5 501 -20 -トリ 🦤️ 5 5 501 -20 -ドードー 🦤️ 5 5 501 -20 -モーリシャストウ 🦤️ 5 5 501 -20 -ウモウ 🪶️ 5 5 501 -20 -カルイ 🪶️ 5 5 501 -20 -トブ 🪶️ 5 5 501 -20 -トリ 🪶️ 5 5 501 -20 -ハネ 🪶️ 5 5 501 -20 -トリ 🦩️ 5 5 501 -20 -ドウブツ 🦩️ 5 5 501 -20 -ネッタイ 🦩️ 5 5 501 -20 -ピンクイロ 🦩️ 5 5 501 -20 -フラミンゴ 🦩️ 5 5 501 -20 -クジャク 🦚️ 5 5 501 -20 -トリ 🦚️ 5 5 501 -20 -ハデ 🦚️ 5 5 501 -20 -ピーコック 🦚️ 5 5 501 -20 -オウム 🦜️ 5 5 501 -20 -カイゾク 🦜️ 5 5 501 -20 -シャベル 🦜️ 5 5 501 -20 -トリ 🦜️ 5 5 501 -20 -アキ 🪽️ 5 5 501 -20 -シンワ 🪽️ 5 5 501 -20 -ツバサ 🪽️ 5 5 501 -20 -テンシ 🪽️ 5 5 501 -20 -トブ 🪽️ 5 5 501 -20 -トリ 🪽️ 5 5 501 -20 -トリノハネ 🪽️ 5 5 501 -20 -ハネ 🪽️ 5 5 501 -20 -カラス 🐦‍⬛️ 5 5 501 -20 -クロ 🐦‍⬛️ 5 5 501 -20 -クロイトリ 🐦‍⬛️ 5 5 501 -20 -クロトリ 🐦‍⬛️ 5 5 501 -20 -トリ 🐦‍⬛️ 5 5 501 -20 -アヒル 🪿️ 5 5 501 -20 -ガチョウ 🪿️ 5 5 501 -20 -ガーガー 🪿️ 5 5 501 -20 -トリ 🪿️ 5 5 501 -20 -マヌケ 🪿️ 5 5 501 -20 -カエル 🐸️ 5 5 501 -20 -カエルノカオ 🐸️ 5 5 501 -20 -カオ 🐸️ 5 5 501 -20 -ドウブツ 🐸️ 5 5 501 -20 -ドウブツ 🐊️ 5 5 501 -20 -ハチュウルイ 🐊️ 5 5 501 -20 -ワニ 🐊️ 5 5 501 -20 -カメ 🐢️ 5 5 501 -20 -ドウブツ 🐢️ 5 5 501 -20 -ハチュウルイ 🐢️ 5 5 501 -20 -トカゲ 🦎️ 5 5 501 -20 -ドウブツ 🦎️ 5 5 501 -20 -ハチュウルイ 🦎️ 5 5 501 -20 -セイザ 🐍️ 5 5 501 -20 -ドウブツ 🐍️ 5 5 501 -20 -ドク 🐍️ 5 5 501 -20 -ハチュウルイ 🐍️ 5 5 501 -20 -ヘビ 🐍️ 5 5 501 -20 -エト 🐲️ 5 5 501 -20 -カオ 🐲️ 5 5 501 -20 -ジュウニシ 🐲️ 5 5 501 -20 -タツ 🐲️ 5 5 501 -20 -ドウブツ 🐲️ 5 5 501 -20 -ドラゴン 🐲️ 5 5 501 -20 -ドラゴンノカオ 🐲️ 5 5 501 -20 -リュウ 🐲️ 5 5 501 -20 -ドウブツ 🐉️ 5 5 501 -20 -ドラゴン 🐉️ 5 5 501 -20 -リュウ 🐉️ 5 5 501 -20 -キョウリュウ 🦕️ 5 5 501 -20 -ソウショクキョウリュウ 🦕️ 5 5 501 -20 -ディプロドクス 🦕️ 5 5 501 -20 -ブラキオサウルス 🦕️ 5 5 501 -20 -リュウキャクルイ 🦕️ 5 5 501 -20 -キョウリュウ 🦖️ 5 5 501 -20 -ティラノサウルス 🦖️ 5 5 501 -20 -クジラ 🐳️ 5 5 501 -20 -シオ 🐳️ 5 5 501 -20 -シオフキ 🐳️ 5 5 501 -20 -シオフキクジラ 🐳️ 5 5 501 -20 -ドウブツ 🐳️ 5 5 501 -20 -クジラ 🐋️ 5 5 501 -20 -ドウブツ 🐋️ 5 5 501 -20 -イルカ 🐬️ 5 5 501 -20 -ドウブツ 🐬️ 5 5 501 -20 -アザラシ 🦭️ 5 5 501 -20 -アシカ 🦭️ 5 5 501 -20 -カイジュウ 🦭️ 5 5 501 -20 -トド 🦭️ 5 5 501 -20 -ドウブツ 🦭️ 5 5 501 -20 -サカナ 🐟️ 5 5 501 -20 -セイザ 🐟️ 5 5 501 -20 -ドウブツ 🐟️ 5 5 501 -20 -サカナ 🐠️ 5 5 501 -20 -ドウブツ 🐠️ 5 5 501 -20 -ネッタイギョ 🐠️ 5 5 501 -20 -サカナ 🐡️ 5 5 501 -20 -ドウブツ 🐡️ 5 5 501 -20 -フグ 🐡️ 5 5 501 -20 -サカナ 🦈️ 5 5 501 -20 -サメ 🦈️ 5 5 501 -20 -ドウブツ 🦈️ 5 5 501 -20 -タコ 🐙️ 5 5 501 -20 -ドウブツ 🐙️ 5 5 501 -20 -カイ 🐚️ 5 5 501 -20 -ドウブツ 🐚️ 5 5 501 -20 -マキガイ 🐚️ 5 5 501 -20 -ウミ 🪸️ 5 5 501 -20 -サンゴ 🪸️ 5 5 501 -20 -サンゴショウ 🪸️ 5 5 501 -20 -ウミ 🪼️ 5 5 501 -20 -クラゲ 🪼️ 5 5 501 -20 -サス 🪼️ 5 5 501 -20 -ショクシュ 🪼️ 5 5 501 -20 -ドク 🪼️ 5 5 501 -20 -ハリ 🪼️ 5 5 501 -20 -ムセキツイドウブツ 🪼️ 5 5 501 -20 -カタツムリ 🐌️ 5 5 501 -20 -デンデンムシ 🐌️ 5 5 501 -20 -ムシ 🐌️ 5 5 501 -20 -チョウ 🦋️ 5 5 501 -20 -ムシ 🦋️ 5 5 501 -20 -イモムシ 🐛️ 5 5 501 -20 -ケムシ 🐛️ 5 5 501 -20 -ゲジゲジ 🐛️ 5 5 501 -20 -ムシ 🐛️ 5 5 501 -20 -アリ 🐜️ 5 5 501 -20 -ムシ 🐜️ 5 5 501 -20 -ハチ 🐝️ 5 5 501 -20 -ミツバチ 🐝️ 5 5 501 -20 -ムシ 🐝️ 5 5 501 -20 -カブトムシ 🪲️ 5 5 501 -20 -コンチュウ 🪲️ 5 5 501 -20 -ツノ 🪲️ 5 5 501 -20 -ムシ 🪲️ 5 5 501 -20 -テントウムシ 🐞️ 5 5 501 -20 -ムシ 🐞️ 5 5 501 -20 -コオロギ 🦗️ 5 5 501 -20 -バッタ 🦗️ 5 5 501 -20 -ムシ 🦗️ 5 5 501 -20 -ガイチュウ 🪳️ 5 5 501 -20 -ゴキブリ 🪳️ 5 5 501 -20 -ムシ 🪳️ 5 5 501 -20 -クモ 🕷️️ 5 5 501 -20 -スパイダー 🕷️️ 5 5 501 -20 -ムシ 🕷️️ 5 5 501 -20 -クモ 🕸️️ 5 5 501 -20 -クモノス 🕸️️ 5 5 501 -20 -サソリ 🦂️ 5 5 501 -20 -セイザ 🦂️ 5 5 501 -20 -ムシ 🦂️ 5 5 501 -20 -ウイルス 🦟️ 5 5 501 -20 -カ 🦟️ 5 5 501 -20 -ネツ 🦟️ 5 5 501 -20 -ビョウキ 🦟️ 5 5 501 -20 -マラリア 🦟️ 5 5 501 -20 -ムシ 🦟️ 5 5 501 -20 -ガイチュウ 🪰️ 5 5 501 -20 -ハエ 🪰️ 5 5 501 -20 -ビョウゲンキン 🪰️ 5 5 501 -20 -フケツ 🪰️ 5 5 501 -20 -ムシ 🪰️ 5 5 501 -20 -キセイチュウ 🪱️ 5 5 501 -20 -ミミズ 🪱️ 5 5 501 -20 -ムシ 🪱️ 5 5 501 -20 -アメーバ 🦠️ 5 5 501 -20 -ウイルス 🦠️ 5 5 501 -20 -サイキン 🦠️ 5 5 501 -20 -バクテリア 🦠️ 5 5 501 -20 -ビセイブツ 🦠️ 5 5 501 -20 -ハナ 💐️ 5 5 501 -20 -ハナタバ 💐️ 5 5 501 -20 -ブーケ 💐️ 5 5 501 -20 -サクラ 🌸️ 5 5 501 -20 -ハナ 🌸️ 5 5 501 -20 -タイヘンヨクデキマシタ 💮️ 5 5 501 -20 -ハナ 💮️ 5 5 501 -20 -ハナマル 💮️ 5 5 501 -20 -ヨクデキマシタ 💮️ 5 5 501 -20 -セイジョウ 🪷️ 5 5 501 -20 -ハス 🪷️ 5 5 501 -20 -ハスノハナ 🪷️ 5 5 501 -20 -ハナ 🪷️ 5 5 501 -20 -ヒンドゥーキョウ 🪷️ 5 5 501 -20 -ブッキョウ 🪷️ 5 5 501 -20 -ロータス 🪷️ 5 5 501 -20 -ショクブツ 🏵️️ 5 5 501 -20 -ハナ 🏵️️ 5 5 501 -20 -ハナカザリ 🏵️️ 5 5 501 -20 -ハナ 🌹️ 5 5 501 -20 -バラ 🌹️ 5 5 501 -20 -シオレタ 🥀️ 5 5 501 -20 -シオレタハナ 🥀️ 5 5 501 -20 -ハナ 🥀️ 5 5 501 -20 -ハイビスカス 🌺️ 5 5 501 -20 -ハナ 🌺️ 5 5 501 -20 -ハナ 🌻️ 5 5 501 -20 -ヒマワリ 🌻️ 5 5 501 -20 -カイカ 🌼️ 5 5 501 -20 -サイタハナ 🌼️ 5 5 501 -20 -ハナ 🌼️ 5 5 501 -20 -チューリップ 🌷️ 5 5 501 -20 -ハナ 🌷️ 5 5 501 -20 -アオムラサキ 🪻️ 5 5 501 -20 -ハナ 🪻️ 5 5 501 -20 -ヒヤシンス 🪻️ 5 5 501 -20 -ラベンダー 🪻️ 5 5 501 -20 -シンメ 🌱️ 5 5 501 -20 -フタバ 🌱️ 5 5 501 -20 -メ 🌱️ 5 5 501 -20 -ウエキバチ 🪴️ 5 5 501 -20 -ショクブツ 🪴️ 5 5 501 -20 -ナエ 🪴️ 5 5 501 -20 -ハチウエ 🪴️ 5 5 501 -20 -ベランダ 🪴️ 5 5 501 -20 -ミズヤリ 🪴️ 5 5 501 -20 -ミドリ 🪴️ 5 5 501 -20 -キ 🌲️ 5 5 501 -20 -ジョウリョクジュ 🌲️ 5 5 501 -20 -キ 🌳️ 5 5 501 -20 -ラクヨウジュ 🌳️ 5 5 501 -20 -キ 🌴️ 5 5 501 -20 -ヤシ 🌴️ 5 5 501 -20 -ヤシノキ 🌴️ 5 5 501 -20 -サボテン 🌵️ 5 5 501 -20 -ショクブツ 🌵️ 5 5 501 -20 -イナホ 🌾️ 5 5 501 -20 -イネ 🌾️ 5 5 501 -20 -クサ 🌾️ 5 5 501 -20 -ススキ 🌾️ 5 5 501 -20 -クサ 🌿️ 5 5 501 -20 -ハ 🌿️ 5 5 501 -20 -ハッパ 🌿️ 5 5 501 -20 -ハーブ 🌿️ 5 5 501 -20 -ヤクソウ 🌿️ 5 5 501 -20 -クサ ☘️️ 5 5 501 -20 -クローバー ☘️️ 5 5 501 -20 -ハ ☘️️ 5 5 501 -20 -4 🍀️ 5 5 501 -20 -クサ 🍀️ 5 5 501 -20 -クローバー 🍀️ 5 5 501 -20 -ハ 🍀️ 5 5 501 -20 -ヨツバ 🍀️ 5 5 501 -20 -ヨツバノクローバー 🍀️ 5 5 501 -20 -カエデ 🍁️ 5 5 501 -20 -コウヨウ 🍁️ 5 5 501 -20 -モミジ 🍁️ 5 5 501 -20 -オチバ 🍂️ 5 5 501 -20 -カレハ 🍂️ 5 5 501 -20 -コノハ 🍂️ 5 5 501 -20 -オチバ 🍃️ 5 5 501 -20 -カゼ 🍃️ 5 5 501 -20 -カゼニユレルハ 🍃️ 5 5 501 -20 -コノハ 🍃️ 5 5 501 -20 -ビュウビュウ 🍃️ 5 5 501 -20 -エイソウ 🪹️ 5 5 501 -20 -カラッポノス 🪹️ 5 5 501 -20 -ス 🪹️ 5 5 501 -20 -スヅクリ 🪹️ 5 5 501 -20 -トリノス 🪹️ 5 5 501 -20 -エイソウ 🪺️ 5 5 501 -20 -ス 🪺️ 5 5 501 -20 -スヅクリ 🪺️ 5 5 501 -20 -タマゴ 🪺️ 5 5 501 -20 -トリノス 🪺️ 5 5 501 -20 -トリノタマゴトス 🪺️ 5 5 501 -20 -キノコ 🍄️ 5 5 501 -20 -ドク 🍄️ 5 5 501 -20 -マッシュルーム 🍄️ 5 5 501 -20 -ヤサイ 🍄️ 5 5 501 -20 -クダモノ 🍇️ 5 5 501 -20 -グレープ 🍇️ 5 5 501 -20 -ブドウ 🍇️ 5 5 501 -20 -クダモノ 🍈️ 5 5 501 -20 -メロン 🍈️ 5 5 501 -20 -ヤサイ 🍈️ 5 5 501 -20 -クダモノ 🍉️ 5 5 501 -20 -スイカ 🍉️ 5 5 501 -20 -ヤサイ 🍉️ 5 5 501 -20 -オレンジ 🍊️ 5 5 501 -20 -クダモノ 🍊️ 5 5 501 -20 -ミカン 🍊️ 5 5 501 -20 -クダモノ 🍋️ 5 5 501 -20 -レモン 🍋️ 5 5 501 -20 -クダモノ 🍌️ 5 5 501 -20 -バナナ 🍌️ 5 5 501 -20 -クダモノ 🍍️ 5 5 501 -20 -トロピカル 🍍️ 5 5 501 -20 -パイナップル 🍍️ 5 5 501 -20 -パイン 🍍️ 5 5 501 -20 -クダモノ 🥭️ 5 5 501 -20 -トロピカル 🥭️ 5 5 501 -20 -マンゴー 🥭️ 5 5 501 -20 -アカリンゴ 🍎️ 5 5 501 -20 -アップル 🍎️ 5 5 501 -20 -クダモノ 🍎️ 5 5 501 -20 -リンゴ 🍎️ 5 5 501 -20 -アオリンゴ 🍏️ 5 5 501 -20 -アップル 🍏️ 5 5 501 -20 -クダモノ 🍏️ 5 5 501 -20 -リンゴ 🍏️ 5 5 501 -20 -クダモノ 🍐️ 5 5 501 -20 -セイヨウナシ 🍐️ 5 5 501 -20 -ナシ 🍐️ 5 5 501 -20 -ヨウナシ 🍐️ 5 5 501 -20 -クダモノ 🍑️ 5 5 501 -20 -ピーチ 🍑️ 5 5 501 -20 -モモ 🍑️ 5 5 501 -20 -クダモノ 🍒️ 5 5 501 -20 -サクランボ 🍒️ 5 5 501 -20 -チェリー 🍒️ 5 5 501 -20 -イチゴ 🍓️ 5 5 501 -20 -クダモノ 🍓️ 5 5 501 -20 -ストロベリー 🍓️ 5 5 501 -20 -クダモノ 🫐️ 5 5 501 -20 -ビルベリー 🫐️ 5 5 501 -20 -ブルーベリー 🫐️ 5 5 501 -20 -ベリー 🫐️ 5 5 501 -20 -キウイ 🥝️ 5 5 501 -20 -キウイフルーツ 🥝️ 5 5 501 -20 -クダモノ 🥝️ 5 5 501 -20 -クダモノ 🍅️ 5 5 501 -20 -トマト 🍅️ 5 5 501 -20 -ヤサイ 🍅️ 5 5 501 -20 -オリーブ 🫒️ 5 5 501 -20 -カジツ 🫒️ 5 5 501 -20 -ジツ 🫒️ 5 5 501 -20 -ミ 🫒️ 5 5 501 -20 -クダモノ 🥥️ 5 5 501 -20 -ココナッツ 🥥️ 5 5 501 -20 -ココナツ 🥥️ 5 5 501 -20 -ヤシノミ 🥥️ 5 5 501 -20 -アボカド 🥑️ 5 5 501 -20 -アボガド 🥑️ 5 5 501 -20 -クダモノ 🥑️ 5 5 501 -20 -ヤサイ 🥑️ 5 5 501 -20 -ナス 🍆️ 5 5 501 -20 -ヤサイ 🍆️ 5 5 501 -20 -イモ 🥔️ 5 5 501 -20 -ジャガイモ 🥔️ 5 5 501 -20 -ポテト 🥔️ 5 5 501 -20 -ヤサイ 🥔️ 5 5 501 -20 -ニンジン 🥕️ 5 5 501 -20 -ヤサイ 🥕️ 5 5 501 -20 -コーン 🌽️ 5 5 501 -20 -トウモロコシ 🌽️ 5 5 501 -20 -ヤサイ 🌽️ 5 5 501 -20 -カライ 🌶️️ 5 5 501 -20 -コウシンリョウ 🌶️️ 5 5 501 -20 -トウガラシ 🌶️️ 5 5 501 -20 -ヤサイ 🌶️️ 5 5 501 -20 -アカピーマン 🫑️ 5 5 501 -20 -トウガラシ 🫑️ 5 5 501 -20 -パプリカ 🫑️ 5 5 501 -20 -ピーマン 🫑️ 5 5 501 -20 -ヤサイ 🫑️ 5 5 501 -20 -キュウリ 🥒️ 5 5 501 -20 -ツケモノ 🥒️ 5 5 501 -20 -ピクルス 🥒️ 5 5 501 -20 -ヤサイ 🥒️ 5 5 501 -20 -キャベツ 🥬️ 5 5 501 -20 -ケール 🥬️ 5 5 501 -20 -チンゲンサイ 🥬️ 5 5 501 -20 -ハヤサイ 🥬️ 5 5 501 -20 -レタス 🥬️ 5 5 501 -20 -ブロッコリー 🥦️ 5 5 501 -20 -ヤサイ 🥦️ 5 5 501 -20 -カオリ 🧄️ 5 5 501 -20 -ニオイ 🧄️ 5 5 501 -20 -ニンニク 🧄️ 5 5 501 -20 -ヤクミ 🧄️ 5 5 501 -20 -ヤサイ 🧄️ 5 5 501 -20 -タマネギ 🧅️ 5 5 501 -20 -ネギ 🧅️ 5 5 501 -20 -ヤクミ 🧅️ 5 5 501 -20 -ヤサイ 🧅️ 5 5 501 -20 -ナッツ 🥜️ 5 5 501 -20 -ピーナッツ 🥜️ 5 5 501 -20 -ヤサイ 🥜️ 5 5 501 -20 -ラッカセイ 🥜️ 5 5 501 -20 -アズキ 🫘️ 5 5 501 -20 -キントキマメ 🫘️ 5 5 501 -20 -ビーンズ 🫘️ 5 5 501 -20 -マメ 🫘️ 5 5 501 -20 -レッドキドニー 🫘️ 5 5 501 -20 -クリ 🌰️ 5 5 501 -20 -ヤサイ 🌰️ 5 5 501 -20 -ショウガ 🫚️ 5 5 501 -20 -ジンジャー 🫚️ 5 5 501 -20 -スパイス 🫚️ 5 5 501 -20 -ヤクミ 🫚️ 5 5 501 -20 -エダマメ 🫛️ 5 5 501 -20 -エンドウマメ 🫛️ 5 5 501 -20 -グリーンピース 🫛️ 5 5 501 -20 -サヤ 🫛️ 5 5 501 -20 -マメ 🫛️ 5 5 501 -20 -ヤサイ 🫛️ 5 5 501 -20 -ショクパン 🍞️ 5 5 501 -20 -パン 🍞️ 5 5 501 -20 -ベーカリー 🍞️ 5 5 501 -20 -クロワッサン 🥐️ 5 5 501 -20 -パン 🥐️ 5 5 501 -20 -フランス 🥐️ 5 5 501 -20 -ベーカリー 🥐️ 5 5 501 -20 -バゲット 🥖️ 5 5 501 -20 -パン 🥖️ 5 5 501 -20 -フランスパン 🥖️ 5 5 501 -20 -ベーカリー 🥖️ 5 5 501 -20 -アレパ 🫓️ 5 5 501 -20 -ナン 🫓️ 5 5 501 -20 -パン 🫓️ 5 5 501 -20 -ピタパン 🫓️ 5 5 501 -20 -フラットブレッド 🫓️ 5 5 501 -20 -ラバシ 🫓️ 5 5 501 -20 -ネジリ 🥨️ 5 5 501 -20 -パン 🥨️ 5 5 501 -20 -プレッツェル 🥨️ 5 5 501 -20 -クリームチーズ 🥯️ 5 5 501 -20 -パンヤ 🥯️ 5 5 501 -20 -ベーカリー 🥯️ 5 5 501 -20 -ベーグル 🥯️ 5 5 501 -20 -パンケーキ 🥞️ 5 5 501 -20 -ホットケーキ 🥞️ 5 5 501 -20 -フンワリ 🧇️ 5 5 501 -20 -ヤキガシ 🧇️ 5 5 501 -20 -ワッフル 🧇️ 5 5 501 -20 -チーズ 🧀️ 5 5 501 -20 -ニク 🍖️ 5 5 501 -20 -ホネツキニク 🍖️ 5 5 501 -20 -モモニク 🍖️ 5 5 501 -20 -チキン 🍗️ 5 5 501 -20 -トリモモニク 🍗️ 5 5 501 -20 -ニク 🍗️ 5 5 501 -20 -ニワトリモモニク 🍗️ 5 5 501 -20 -ホネツキニク 🍗️ 5 5 501 -20 -モモニク 🍗️ 5 5 501 -20 -ステーキ 🥩️ 5 5 501 -20 -ステーキニク 🥩️ 5 5 501 -20 -ニク 🥩️ 5 5 501 -20 -ビーフ 🥩️ 5 5 501 -20 -ポーク 🥩️ 5 5 501 -20 -ラム 🥩️ 5 5 501 -20 -ニク 🥓️ 5 5 501 -20 -ベーコン 🥓️ 5 5 501 -20 -ハンバーガー 🍔️ 5 5 501 -20 -バーガー 🍔️ 5 5 501 -20 -フライドポテト 🍟️ 5 5 501 -20 -フレンチフライ 🍟️ 5 5 501 -20 -ポテト 🍟️ 5 5 501 -20 -ポテトフライ 🍟️ 5 5 501 -20 -チーズ 🍕️ 5 5 501 -20 -ピザ 🍕️ 5 5 501 -20 -ピッツァ 🍕️ 5 5 501 -20 -ソーセージ 🌭️ 5 5 501 -20 -フランクフルト 🌭️ 5 5 501 -20 -ホットドッグ 🌭️ 5 5 501 -20 -サンドイッチ 🥪️ 5 5 501 -20 -パン 🥪️ 5 5 501 -20 -タコス 🌮️ 5 5 501 -20 -メキシカン 🌮️ 5 5 501 -20 -ソフトタコス 🌯️ 5 5 501 -20 -ブリトー 🌯️ 5 5 501 -20 -メキシカン 🌯️ 5 5 501 -20 -タマル 🫔️ 5 5 501 -20 -タマレス 🫔️ 5 5 501 -20 -チマキ 🫔️ 5 5 501 -20 -メキシカン 🫔️ 5 5 501 -20 -ケバブ 🥙️ 5 5 501 -20 -ケバブサンド 🥙️ 5 5 501 -20 -ラップサンド 🥙️ 5 5 501 -20 -コロッケ 🧆️ 5 5 501 -20 -ニクダンゴ 🧆️ 5 5 501 -20 -ヒヨコマメ 🧆️ 5 5 501 -20 -ファラフェル 🧆️ 5 5 501 -20 -タマゴ 🥚️ 5 5 501 -20 -タマゴ 🍳️ 5 5 501 -20 -フライパン 🍳️ 5 5 501 -20 -メダマヤキ 🍳️ 5 5 501 -20 -リョウリ 🍳️ 5 5 501 -20 -シーフード 🥘️ 5 5 501 -20 -パエリア 🥘️ 5 5 501 -20 -シチュー 🍲️ 5 5 501 -20 -ナベ 🍲️ 5 5 501 -20 -ナベリョウリ 🍲️ 5 5 501 -20 -ニコミ 🍲️ 5 5 501 -20 -ニモノ 🍲️ 5 5 501 -20 -スイス 🫕️ 5 5 501 -20 -チョコ 🫕️ 5 5 501 -20 -チーズ 🫕️ 5 5 501 -20 -トカス 🫕️ 5 5 501 -20 -ナベ 🫕️ 5 5 501 -20 -フォンデュ 🫕️ 5 5 501 -20 -オカユ 🥣️ 5 5 501 -20 -シリアル 🥣️ 5 5 501 -20 -チョウショク 🥣️ 5 5 501 -20 -ボウルトスプーン 🥣️ 5 5 501 -20 -グリーン 🥗️ 5 5 501 -20 -グリーンサラダ 🥗️ 5 5 501 -20 -サラダ 🥗️ 5 5 501 -20 -オカシ 🍿️ 5 5 501 -20 -ポップコーン 🍿️ 5 5 501 -20 -ニュウセイヒン 🧈️ 5 5 501 -20 -バター 🧈️ 5 5 501 -20 -シオ 🧂️ 5 5 501 -20 -チョウミリョウ 🧂️ 5 5 501 -20 -フリカケヨウキ 🧂️ 5 5 501 -20 -ヤクミ 🧂️ 5 5 501 -20 -カン 🥫️ 5 5 501 -20 -カンヅメ 🥫️ 5 5 501 -20 -ヒジョウショク 🥫️ 5 5 501 -20 -エキベン 🍱️ 5 5 501 -20 -ベントウ 🍱️ 5 5 501 -20 -マクノウチ 🍱️ 5 5 501 -20 -オカシ 🍘️ 5 5 501 -20 -オセンベイ 🍘️ 5 5 501 -20 -センベイ 🍘️ 5 5 501 -20 -オニギリ 🍙️ 5 5 501 -20 -オムスビ 🍙️ 5 5 501 -20 -コメ 🍙️ 5 5 501 -20 -コメ 🍚️ 5 5 501 -20 -ゴハン 🍚️ 5 5 501 -20 -チャワン 🍚️ 5 5 501 -20 -ライス 🍚️ 5 5 501 -20 -カレー 🍛️ 5 5 501 -20 -カレーライス 🍛️ 5 5 501 -20 -ライス 🍛️ 5 5 501 -20 -アツアツ 🍜️ 5 5 501 -20 -ドンブリ 🍜️ 5 5 501 -20 -ラーメン 🍜️ 5 5 501 -20 -スパゲッティ 🍝️ 5 5 501 -20 -スパゲッティー 🍝️ 5 5 501 -20 -パスタ 🍝️ 5 5 501 -20 -イモ 🍠️ 5 5 501 -20 -サツマイモ 🍠️ 5 5 501 -20 -ヤキイモ 🍠️ 5 5 501 -20 -オデン 🍢️ 5 5 501 -20 -オスシ 🍣️ 5 5 501 -20 -スシ 🍣️ 5 5 501 -20 -エビ 🍤️ 5 5 501 -20 -エビフライ 🍤️ 5 5 501 -20 -テンプラ 🍤️ 5 5 501 -20 -フライ 🍤️ 5 5 501 -20 -ウズ 🍥️ 5 5 501 -20 -ウズマキ 🍥️ 5 5 501 -20 -ナルト 🍥️ 5 5 501 -20 -ネリモノ 🍥️ 5 5 501 -20 -アキ 🥮️ 5 5 501 -20 -オイワイ 🥮️ 5 5 501 -20 -ゲッペイ 🥮️ 5 5 501 -20 -チュウカカシ 🥮️ 5 5 501 -20 -チュウシュウセツ 🥮️ 5 5 501 -20 -チュウシュウブシ 🥮️ 5 5 501 -20 -オダンゴ 🍡️ 5 5 501 -20 -ダンゴ 🍡️ 5 5 501 -20 -ワガシ 🍡️ 5 5 501 -20 -ギョウザ 🥟️ 5 5 501 -20 -テンシン 🥟️ 5 5 501 -20 -ニクマン 🥟️ 5 5 501 -20 -オミクジ 🥠️ 5 5 501 -20 -フォーチュンクッキー 🥠️ 5 5 501 -20 -チュウカ 🥡️ 5 5 501 -20 -テイクアウトベントウ 🥡️ 5 5 501 -20 -ベントウ 🥡️ 5 5 501 -20 -モチカエリ 🥡️ 5 5 501 -20 -カニ 🦀️ 5 5 501 -20 -セイザ 🦀️ 5 5 501 -20 -ドウブツ 🦀️ 5 5 501 -20 -ザリガニ 🦞️ 5 5 501 -20 -シーフード 🦞️ 5 5 501 -20 -ハサミ 🦞️ 5 5 501 -20 -ビスク 🦞️ 5 5 501 -20 -ロブスター 🦞️ 5 5 501 -20 -エビ 🦐️ 5 5 501 -20 -シュリンプ 🦐️ 5 5 501 -20 -シーフード 🦐️ 5 5 501 -20 -ドウブツ 🦐️ 5 5 501 -20 -イカ 🦑️ 5 5 501 -20 -シーフード 🦑️ 5 5 501 -20 -ドウブツ 🦑️ 5 5 501 -20 -オイスター 🦪️ 5 5 501 -20 -カイ 🦪️ 5 5 501 -20 -カキ 🦪️ 5 5 501 -20 -ギョカイ 🦪️ 5 5 501 -20 -シーフード 🦪️ 5 5 501 -20 -ナマガキ 🦪️ 5 5 501 -20 -アイス 🍦️ 5 5 501 -20 -オカシ 🍦️ 5 5 501 -20 -スイーツ 🍦️ 5 5 501 -20 -ソフト 🍦️ 5 5 501 -20 -ソフトクリーム 🍦️ 5 5 501 -20 -デザート 🍦️ 5 5 501 -20 -アイス 🍧️ 5 5 501 -20 -オカシ 🍧️ 5 5 501 -20 -カキゴオリ 🍧️ 5 5 501 -20 -コオリ 🍧️ 5 5 501 -20 -デザート 🍧️ 5 5 501 -20 -アイス 🍨️ 5 5 501 -20 -アイスクリーム 🍨️ 5 5 501 -20 -オカシ 🍨️ 5 5 501 -20 -スイーツ 🍨️ 5 5 501 -20 -デザート 🍨️ 5 5 501 -20 -オカシ 🍩️ 5 5 501 -20 -スイーツ 🍩️ 5 5 501 -20 -デザート 🍩️ 5 5 501 -20 -ドーナツ 🍩️ 5 5 501 -20 -オカシ 🍪️ 5 5 501 -20 -クッキー 🍪️ 5 5 501 -20 -スイーツ 🍪️ 5 5 501 -20 -デザート 🍪️ 5 5 501 -20 -オタンジョウビ 🎂️ 5 5 501 -20 -ケーキ 🎂️ 5 5 501 -20 -タンジョウビ 🎂️ 5 5 501 -20 -バースデー 🎂️ 5 5 501 -20 -バースデーケーキ 🎂️ 5 5 501 -20 -オカシ 🍰️ 5 5 501 -20 -ケーキ 🍰️ 5 5 501 -20 -ショートケーキ 🍰️ 5 5 501 -20 -スイーツ 🍰️ 5 5 501 -20 -デザート 🍰️ 5 5 501 -20 -オカシ 🧁️ 5 5 501 -20 -カップケーキ 🧁️ 5 5 501 -20 -ケーキ 🧁️ 5 5 501 -20 -スイーツ 🧁️ 5 5 501 -20 -ベーカリー 🧁️ 5 5 501 -20 -オカシ 🥧️ 5 5 501 -20 -タルト 🥧️ 5 5 501 -20 -パイ 🥧️ 5 5 501 -20 -オカシ 🍫️ 5 5 501 -20 -スイーツ 🍫️ 5 5 501 -20 -チョコ 🍫️ 5 5 501 -20 -チョコレート 🍫️ 5 5 501 -20 -デザート 🍫️ 5 5 501 -20 -アメ 🍬️ 5 5 501 -20 -オカシ 🍬️ 5 5 501 -20 -キャンディ 🍬️ 5 5 501 -20 -キャンディー 🍬️ 5 5 501 -20 -アメ 🍭️ 5 5 501 -20 -オカシ 🍭️ 5 5 501 -20 -キャンディ 🍭️ 5 5 501 -20 -キャンディー 🍭️ 5 5 501 -20 -ペロペロキャンディ 🍭️ 5 5 501 -20 -ボウツキキャンディ 🍭️ 5 5 501 -20 -オカシ 🍮️ 5 5 501 -20 -スイーツ 🍮️ 5 5 501 -20 -デザート 🍮️ 5 5 501 -20 -プリン 🍮️ 5 5 501 -20 -アマイ 🍯️ 5 5 501 -20 -ハチミツ 🍯️ 5 5 501 -20 -ハニー 🍯️ 5 5 501 -20 -ハニーポット 🍯️ 5 5 501 -20 -ミツビン 🍯️ 5 5 501 -20 -アカチャン 🍼️ 5 5 501 -20 -ホニュウビン 🍼️ 5 5 501 -20 -ミルク 🍼️ 5 5 501 -20 -ギュウニュウ 🥛️ 5 5 501 -20 -ギュウニュウイリノコップ 🥛️ 5 5 501 -20 -コップ 🥛️ 5 5 501 -20 -ミルク 🥛️ 5 5 501 -20 -アタタカイノミモノ ☕️ 5 5 501 -20 -カップ ☕️ 5 5 501 -20 -キッサテン ☕️ 5 5 501 -20 -コウチャ ☕️ 5 5 501 -20 -コーヒー ☕️ 5 5 501 -20 -ノミモノ ☕️ 5 5 501 -20 -ホットドリンク ☕️ 5 5 501 -20 -オチャ 🫖️ 5 5 501 -20 -キュウス 🫖️ 5 5 501 -20 -チャキ 🫖️ 5 5 501 -20 -ティーポット 🫖️ 5 5 501 -20 -ノミモノ 🫖️ 5 5 501 -20 -オチャ 🍵️ 5 5 501 -20 -ノミモノ 🍵️ 5 5 501 -20 -ユノミ 🍵️ 5 5 501 -20 -リョクチャ 🍵️ 5 5 501 -20 -サケ 🍶️ 5 5 501 -20 -トックリ 🍶️ 5 5 501 -20 -ニホンシュ 🍶️ 5 5 501 -20 -アワ 🍾️ 5 5 501 -20 -シャンパン 🍾️ 5 5 501 -20 -シャンペン 🍾️ 5 5 501 -20 -スパークリングワイン 🍾️ 5 5 501 -20 -スプマンテ 🍾️ 5 5 501 -20 -ボトル 🍾️ 5 5 501 -20 -グラス 🍷️ 5 5 501 -20 -バー 🍷️ 5 5 501 -20 -ワイン 🍷️ 5 5 501 -20 -ワイングラス 🍷️ 5 5 501 -20 -カクテル 🍸️ 5 5 501 -20 -カクテルグラス 🍸️ 5 5 501 -20 -グラス 🍸️ 5 5 501 -20 -バー 🍸️ 5 5 501 -20 -カクテル 🍹️ 5 5 501 -20 -トロピカル 🍹️ 5 5 501 -20 -トロピカルドリンク 🍹️ 5 5 501 -20 -バー 🍹️ 5 5 501 -20 -イザカヤ 🍺️ 5 5 501 -20 -ジョッキ 🍺️ 5 5 501 -20 -バー 🍺️ 5 5 501 -20 -ビール 🍺️ 5 5 501 -20 -ビールジョッキ 🍺️ 5 5 501 -20 -エンカイ 🍻️ 5 5 501 -20 -カンパイ 🍻️ 5 5 501 -20 -ジョッキ 🍻️ 5 5 501 -20 -ビール 🍻️ 5 5 501 -20 -ビールデカンパイ 🍻️ 5 5 501 -20 -カンパイ 🥂️ 5 5 501 -20 -グラスデカンパイ 🥂️ 5 5 501 -20 -シャンパン 🥂️ 5 5 501 -20 -シャンペン 🥂️ 5 5 501 -20 -スパークリングワイン 🥂️ 5 5 501 -20 -スプマンテ 🥂️ 5 5 501 -20 -ウィスキー 🥃️ 5 5 501 -20 -ウイスキー 🥃️ 5 5 501 -20 -グラス 🥃️ 5 5 501 -20 -タンブラー 🥃️ 5 5 501 -20 -タンブラーグラス 🥃️ 5 5 501 -20 -エキタイ 🫗️ 5 5 501 -20 -ガラス 🫗️ 5 5 501 -20 -コップ 🫗️ 5 5 501 -20 -コップカラソソグ 🫗️ 5 5 501 -20 -コボス 🫗️ 5 5 501 -20 -ソソグ 🫗️ 5 5 501 -20 -ノミモノ 🫗️ 5 5 501 -20 -コップ 🥤️ 5 5 501 -20 -ジュース 🥤️ 5 5 501 -20 -ストローカップ 🥤️ 5 5 501 -20 -オチャ 🧋️ 5 5 501 -20 -タピオカ 🧋️ 5 5 501 -20 -タピオカドリンク 🧋️ 5 5 501 -20 -ドリンク 🧋️ 5 5 501 -20 -バブルティー 🧋️ 5 5 501 -20 -ミルクティー 🧋️ 5 5 501 -20 -カミパックインリョウ 🧃️ 5 5 501 -20 -ジュース 🧃️ 5 5 501 -20 -ドリンク 🧃️ 5 5 501 -20 -ノミモノ 🧃️ 5 5 501 -20 -オチャ 🧉️ 5 5 501 -20 -ドリンク 🧉️ 5 5 501 -20 -ノミモノ 🧉️ 5 5 501 -20 -マテチャ 🧉️ 5 5 501 -20 -カクゴオリ 🧊️ 5 5 501 -20 -コオリ 🧊️ 5 5 501 -20 -ツメタイ 🧊️ 5 5 501 -20 -オハシ 🥢️ 5 5 501 -20 -ハシ 🥢️ 5 5 501 -20 -オサラ 🍽️️ 5 5 501 -20 -サラ 🍽️️ 5 5 501 -20 -ナイフ 🍽️️ 5 5 501 -20 -ナイフトフォークトサラ 🍽️️ 5 5 501 -20 -フォーク 🍽️️ 5 5 501 -20 -カトラリー 🍴️ 5 5 501 -20 -ナイフ 🍴️ 5 5 501 -20 -ナイフトフォーク 🍴️ 5 5 501 -20 -ナイフ・フォーク 🍴️ 5 5 501 -20 -フォーク 🍴️ 5 5 501 -20 -レストラン 🍴️ 5 5 501 -20 -カトラリー 🥄️ 5 5 501 -20 -ショッキ 🥄️ 5 5 501 -20 -スプーン 🥄️ 5 5 501 -20 -ナイフ 🔪️ 5 5 501 -20 -ホウチョウ 🔪️ 5 5 501 -20 -リョウリ 🔪️ 5 5 501 -20 -アキ 🫙️ 5 5 501 -20 -アキビン 🫙️ 5 5 501 -20 -カラノビン 🫙️ 5 5 501 -20 -チョウミリョウ 🫙️ 5 5 501 -20 -ビン 🫙️ 5 5 501 -20 -ホゾン 🫙️ 5 5 501 -20 -ヨウキ 🫙️ 5 5 501 -20 -カメ 🏺️ 5 5 501 -20 -セイザ 🏺️ 5 5 501 -20 -ツボ 🏺️ 5 5 501 -20 -ミズガメ 🏺️ 5 5 501 -20 -アフリカ 🌍️ 5 5 501 -20 -チキュウ 🌍️ 5 5 501 -20 -ヨーロッパ 🌍️ 5 5 501 -20 -アメリカ 🌎️ 5 5 501 -20 -アメリカタイリク 🌎️ 5 5 501 -20 -チキュウ 🌎️ 5 5 501 -20 -アジア 🌏️ 5 5 501 -20 -オーストラリア 🌏️ 5 5 501 -20 -チキュウ 🌏️ 5 5 501 -20 -シゴセン 🌐️ 5 5 501 -20 -シゴセンノアルチキュウ 🌐️ 5 5 501 -20 -チキュウ 🌐️ 5 5 501 -20 -セカイ 🗺️️ 5 5 501 -20 -セカイチズ 🗺️️ 5 5 501 -20 -チズ 🗺️️ 5 5 501 -20 -チズ 🗾️ 5 5 501 -20 -ニッポン 🗾️ 5 5 501 -20 -ニッポンチズ 🗾️ 5 5 501 -20 -ニホン 🗾️ 5 5 501 -20 -ニホンチズ 🗾️ 5 5 501 -20 -オリエンテーリング 🧭️ 5 5 501 -20 -コウカイ 🧭️ 5 5 501 -20 -コウクウ 🧭️ 5 5 501 -20 -コンパス 🧭️ 5 5 501 -20 -ジシャク 🧭️ 5 5 501 -20 -カンセツ 🏔️️ 5 5 501 -20 -ヤマ 🏔️️ 5 5 501 -20 -ユキ 🏔️️ 5 5 501 -20 -ユキヤマ 🏔️️ 5 5 501 -20 -サンガク ⛰️️ 5 5 501 -20 -ヤマ ⛰️️ 5 5 501 -20 -カザン 🌋️ 5 5 501 -20 -フンカ 🌋️ 5 5 501 -20 -ヤマ 🌋️ 5 5 501 -20 -フジサン 🗻️ 5 5 501 -20 -ヤマ 🗻️ 5 5 501 -20 -キャンプ 🏕️️ 5 5 501 -20 -テント 🏕️️ 5 5 501 -20 -ヤマ 🏕️️ 5 5 501 -20 -スナハマ 🏖️️ 5 5 501 -20 -パラソル 🏖️️ 5 5 501 -20 -ビーチ 🏖️️ 5 5 501 -20 -ビーチパラソル 🏖️️ 5 5 501 -20 -サバク 🏜️️ 5 5 501 -20 -サボテン 🏜️️ 5 5 501 -20 -サボテンノアルサバク 🏜️️ 5 5 501 -20 -シマ 🏝️️ 5 5 501 -20 -ムジントウ 🏝️️ 5 5 501 -20 -ヤシ 🏝️️ 5 5 501 -20 -ヤシノキノアルシマ 🏝️️ 5 5 501 -20 -コウエン 🏞️️ 5 5 501 -20 -コクリツコウエン 🏞️️ 5 5 501 -20 -シゼン 🏞️️ 5 5 501 -20 -キョウギジョウ 🏟️️ 5 5 501 -20 -スタジアム 🏟️️ 5 5 501 -20 -ヤキュウジョウ 🏟️️ 5 5 501 -20 -シセキ 🏛️️ 5 5 501 -20 -レキシ 🏛️️ 5 5 501 -20 -レキシテキケンゾウブツ 🏛️️ 5 5 501 -20 -レキシテキナタテモノ 🏛️️ 5 5 501 -20 -クレーン 🏗️️ 5 5 501 -20 -ケンセツ 🏗️️ 5 5 501 -20 -ケンセツチュウ 🏗️️ 5 5 501 -20 -コウジ 🏗️️ 5 5 501 -20 -カベ 🧱️ 5 5 501 -20 -シックイ 🧱️ 5 5 501 -20 -ネンド 🧱️ 5 5 501 -20 -モルタル 🧱️ 5 5 501 -20 -レンガ 🧱️ 5 5 501 -20 -オモタイ 🪨️ 5 5 501 -20 -カタイ 🪨️ 5 5 501 -20 -ガンセキ 🪨️ 5 5 501 -20 -キョガン 🪨️ 5 5 501 -20 -セキザイ 🪨️ 5 5 501 -20 -ザイモク 🪵️ 5 5 501 -20 -ジュモク 🪵️ 5 5 501 -20 -マルタ 🪵️ 5 5 501 -20 -モクザイ 🪵️ 5 5 501 -20 -ログ 🪵️ 5 5 501 -20 -コヤ 🛖️ 5 5 501 -20 -バンガロー 🛖️ 5 5 501 -20 -ユルト 🛖️ 5 5 501 -20 -ワラブキコヤ 🛖️ 5 5 501 -20 -イエ 🏘️️ 5 5 501 -20 -ジュウタクガイ 🏘️️ 5 5 501 -20 -フクスウノイエ 🏘️️ 5 5 501 -20 -マチ 🏘️️ 5 5 501 -20 -アキヤ 🏚️️ 5 5 501 -20 -イエ 🏚️️ 5 5 501 -20 -タテモノ 🏚️️ 5 5 501 -20 -ハイオク 🏚️️ 5 5 501 -20 -イエ 🏠️ 5 5 501 -20 -カオク 🏠️ 5 5 501 -20 -タテモノ 🏠️ 5 5 501 -20 -マイホーム 🏠️ 5 5 501 -20 -イエ 🏡️ 5 5 501 -20 -ウチ 🏡️ 5 5 501 -20 -タテモノ 🏡️ 5 5 501 -20 -ニワ 🏡️ 5 5 501 -20 -ニワツキノイエ 🏡️ 5 5 501 -20 -ホーム 🏡️ 5 5 501 -20 -マイホーム 🏡️ 5 5 501 -20 -オフィスビル 🏢️ 5 5 501 -20 -タテモノ 🏢️ 5 5 501 -20 -ビル 🏢️ 5 5 501 -20 -タテモノ 🏣️ 5 5 501 -20 -ユウビン 🏣️ 5 5 501 -20 -ユウビンキョク 🏣️ 5 5 501 -20 -セイヨウノユウビンキョク 🏤️ 5 5 501 -20 -タテモノ 🏤️ 5 5 501 -20 -ユウビン 🏤️ 5 5 501 -20 -イシャ 🏥️ 5 5 501 -20 -クスリ 🏥️ 5 5 501 -20 -タテモノ 🏥️ 5 5 501 -20 -ビョウイン 🏥️ 5 5 501 -20 -ギンコウ 🏦️ 5 5 501 -20 -タテモノ 🏦️ 5 5 501 -20 -タテモノ 🏨️ 5 5 501 -20 -ホテル 🏨️ 5 5 501 -20 -タテモノ 🏩️ 5 5 501 -20 -ホテル 🏩️ 5 5 501 -20 -ラブホ 🏩️ 5 5 501 -20 -ラブホテル 🏩️ 5 5 501 -20 -コンビニ 🏪️ 5 5 501 -20 -コンビニエンスストア 🏪️ 5 5 501 -20 -タテモノ 🏪️ 5 5 501 -20 -ガッコウ 🏫️ 5 5 501 -20 -タテモノ 🏫️ 5 5 501 -20 -タテモノ 🏬️ 5 5 501 -20 -デパート 🏬️ 5 5 501 -20 -ヒャッカテン 🏬️ 5 5 501 -20 -コウジョウ 🏭️ 5 5 501 -20 -コウバ 🏭️ 5 5 501 -20 -タテモノ 🏭️ 5 5 501 -20 -オシロ 🏯️ 5 5 501 -20 -シロ 🏯️ 5 5 501 -20 -タテモノ 🏯️ 5 5 501 -20 -ニッポン 🏯️ 5 5 501 -20 -ニホン 🏯️ 5 5 501 -20 -オシロ 🏰️ 5 5 501 -20 -キャッスル 🏰️ 5 5 501 -20 -シロ 🏰️ 5 5 501 -20 -セイヨウノシロ 🏰️ 5 5 501 -20 -タテモノ 🏰️ 5 5 501 -20 -キョウカイ 💒️ 5 5 501 -20 -ケッコン 💒️ 5 5 501 -20 -ケッコンシキ 💒️ 5 5 501 -20 -シキジョウ 💒️ 5 5 501 -20 -タテモノ 💒️ 5 5 501 -20 -タワー 🗼️ 5 5 501 -20 -トウキョウ 🗼️ 5 5 501 -20 -トウキョウタワー 🗼️ 5 5 501 -20 -アメリカ 🗽️ 5 5 501 -20 -ジユウノメガミ 🗽️ 5 5 501 -20 -チョウゾウ 🗽️ 5 5 501 -20 -ニューヨーク 🗽️ 5 5 501 -20 -メガミ 🗽️ 5 5 501 -20 -キョウカイ ⛪️ 5 5 501 -20 -キリストキョウ ⛪️ 5 5 501 -20 -シュウキョウ ⛪️ 5 5 501 -20 -タテモノ ⛪️ 5 5 501 -20 -チャペル ⛪️ 5 5 501 -20 -イスラムキョウ 🕌️ 5 5 501 -20 -シュウキョウ 🕌️ 5 5 501 -20 -タテモノ 🕌️ 5 5 501 -20 -モスク 🕌️ 5 5 501 -20 -シュウキョウ 🛕️ 5 5 501 -20 -タテモノ 🛕️ 5 5 501 -20 -テラ 🛕️ 5 5 501 -20 -ヒンズーキョウ 🛕️ 5 5 501 -20 -ヒンドゥーキョウノジイン 🛕️ 5 5 501 -20 -シナゴーグ 🕍️ 5 5 501 -20 -シュウキョウ 🕍️ 5 5 501 -20 -タテモノ 🕍️ 5 5 501 -20 -ユダヤキョウ 🕍️ 5 5 501 -20 -シュウキョウ ⛩️️ 5 5 501 -20 -シントウ ⛩️️ 5 5 501 -20 -ジンジャ ⛩️️ 5 5 501 -20 -タテモノ ⛩️️ 5 5 501 -20 -トリイ ⛩️️ 5 5 501 -20 -イスラムキョウ 🕋️ 5 5 501 -20 -カーバ 🕋️ 5 5 501 -20 -シュウキョウ 🕋️ 5 5 501 -20 -セイチ 🕋️ 5 5 501 -20 -タテモノ 🕋️ 5 5 501 -20 -メッカ 🕋️ 5 5 501 -20 -コウエン ⛲️ 5 5 501 -20 -フンスイ ⛲️ 5 5 501 -20 -キャンプ ⛺️ 5 5 501 -20 -テント ⛺️ 5 5 501 -20 -キリ 🌁️ 5 5 501 -20 -キリノトカイ 🌁️ 5 5 501 -20 -トカイ 🌁️ 5 5 501 -20 -ナガレボシ 🌃️ 5 5 501 -20 -ホシ 🌃️ 5 5 501 -20 -ヤケイ 🌃️ 5 5 501 -20 -ヨル 🌃️ 5 5 501 -20 -ヨルノトカイ 🌃️ 5 5 501 -20 -コウソウビル 🏙️️ 5 5 501 -20 -トカイ 🏙️️ 5 5 501 -20 -ビルグン 🏙️️ 5 5 501 -20 -アサ 🌄️ 5 5 501 -20 -アサヒ 🌄️ 5 5 501 -20 -ゴライコウ 🌄️ 5 5 501 -20 -タイヨウ 🌄️ 5 5 501 -20 -ヒノデ 🌄️ 5 5 501 -20 -ヤマカラヒノデ 🌄️ 5 5 501 -20 -アサ 🌅️ 5 5 501 -20 -アサヒ 🌅️ 5 5 501 -20 -タイヨウ 🌅️ 5 5 501 -20 -ヒノデ 🌅️ 5 5 501 -20 -トカイ 🌆️ 5 5 501 -20 -ユウガタ 🌆️ 5 5 501 -20 -ユウグレ 🌆️ 5 5 501 -20 -ユウグレノトカイ 🌆️ 5 5 501 -20 -ユウヒ 🌆️ 5 5 501 -20 -ヨル 🌆️ 5 5 501 -20 -タイヨウ 🌇️ 5 5 501 -20 -ユウガタ 🌇️ 5 5 501 -20 -ユウグレ 🌇️ 5 5 501 -20 -ユウヒ 🌇️ 5 5 501 -20 -ハシ 🌉️ 5 5 501 -20 -ヤケイ 🌉️ 5 5 501 -20 -ヨル 🌉️ 5 5 501 -20 -ヨルノハシ 🌉️ 5 5 501 -20 -イイキブン ♨️️ 5 5 501 -20 -オンセン ♨️️ 5 5 501 -20 -オンセンマーク ♨️️ 5 5 501 -20 -メリーゴーランド 🎠️ 5 5 501 -20 -ユウエンチ 🎠️ 5 5 501 -20 -コウエン 🛝️ 5 5 501 -20 -スベリダイ 🛝️ 5 5 501 -20 -ユウグ 🛝️ 5 5 501 -20 -カンランシャ 🎡️ 5 5 501 -20 -ユウエンチ 🎡️ 5 5 501 -20 -コースター 🎢️ 5 5 501 -20 -ジェットコースター 🎢️ 5 5 501 -20 -ユウエンチ 🎢️ 5 5 501 -20 -サンパツ 💈️ 5 5 501 -20 -トコヤ 💈️ 5 5 501 -20 -バーバー 💈️ 5 5 501 -20 -ビヨウイン 💈️ 5 5 501 -20 -ビヨウシツ 💈️ 5 5 501 -20 -ヘアサロン 💈️ 5 5 501 -20 -リハツテン 💈️ 5 5 501 -20 -イベント 🎪️ 5 5 501 -20 -サーカス 🎪️ 5 5 501 -20 -サーカステント 🎪️ 5 5 501 -20 -テント 🎪️ 5 5 501 -20 -sl 🚂️ 5 5 501 -20 -エスエル 🚂️ 5 5 501 -20 -ジョウキキカンシャ 🚂️ 5 5 501 -20 -ノリモノ 🚂️ 5 5 501 -20 -レッシャ 🚂️ 5 5 501 -20 -デンシャ 🚃️ 5 5 501 -20 -ノリモノ 🚃️ 5 5 501 -20 -レッシャ 🚃️ 5 5 501 -20 -シンカンセン 🚄️ 5 5 501 -20 -デンシャ 🚄️ 5 5 501 -20 -ノリモノ 🚄️ 5 5 501 -20 -0ケイ 🚅️ 5 5 501 -20 -シンカンセン 🚅️ 5 5 501 -20 -ゼロケイシンカンセン 🚅️ 5 5 501 -20 -デンシャ 🚅️ 5 5 501 -20 -ノゾミ 🚅️ 5 5 501 -20 -ノリモノ 🚅️ 5 5 501 -20 -マルイシンカンセン 🚅️ 5 5 501 -20 -デンシャ 🚆️ 5 5 501 -20 -デンシャショウメン 🚆️ 5 5 501 -20 -ノリモノ 🚆️ 5 5 501 -20 -レッシャ 🚆️ 5 5 501 -20 -チカテツ 🚇️ 5 5 501 -20 -デンシャ 🚇️ 5 5 501 -20 -ノリモノ 🚇️ 5 5 501 -20 -メトロ 🚇️ 5 5 501 -20 -デンシャ 🚈️ 5 5 501 -20 -ノリモノ 🚈️ 5 5 501 -20 -ライトレール 🚈️ 5 5 501 -20 -エキ 🚉️ 5 5 501 -20 -デンシャ 🚉️ 5 5 501 -20 -ノリモノ 🚉️ 5 5 501 -20 -フミキリ 🚉️ 5 5 501 -20 -レッシャ 🚉️ 5 5 501 -20 -デンシャ 🚊️ 5 5 501 -20 -ノリモノ 🚊️ 5 5 501 -20 -ロメンデンシャ 🚊️ 5 5 501 -20 -ロメンデンシャショウメン 🚊️ 5 5 501 -20 -デンシャ 🚝️ 5 5 501 -20 -ノリモノ 🚝️ 5 5 501 -20 -モノレール 🚝️ 5 5 501 -20 -デンシャ 🚞️ 5 5 501 -20 -トザンテツドウ 🚞️ 5 5 501 -20 -トザンデンシャ 🚞️ 5 5 501 -20 -ノリモノ 🚞️ 5 5 501 -20 -デンシャ 🚋️ 5 5 501 -20 -ノリモノ 🚋️ 5 5 501 -20 -ロメンデンシャ 🚋️ 5 5 501 -20 -ノリモノ 🚌️ 5 5 501 -20 -バス 🚌️ 5 5 501 -20 -ノリモノ 🚍️ 5 5 501 -20 -バス 🚍️ 5 5 501 -20 -バスショウメン 🚍️ 5 5 501 -20 -トロリーバス 🚎️ 5 5 501 -20 -ノリモノ 🚎️ 5 5 501 -20 -バス 🚎️ 5 5 501 -20 -ノリモノ 🚐️ 5 5 501 -20 -バス 🚐️ 5 5 501 -20 -マイクロバス 🚐️ 5 5 501 -20 -キュウキュウシャ 🚑️ 5 5 501 -20 -ノリモノ 🚑️ 5 5 501 -20 -ショウボウシャ 🚒️ 5 5 501 -20 -ノリモノ 🚒️ 5 5 501 -20 -ケイサツ 🚓️ 5 5 501 -20 -ノリモノ 🚓️ 5 5 501 -20 -パトカー 🚓️ 5 5 501 -20 -ケイサツ 🚔️ 5 5 501 -20 -ノリモノ 🚔️ 5 5 501 -20 -パトカー 🚔️ 5 5 501 -20 -パトカーショウメン 🚔️ 5 5 501 -20 -タクシー 🚕️ 5 5 501 -20 -ノリモノ 🚕️ 5 5 501 -20 -タクシー 🚖️ 5 5 501 -20 -タクシーショウメン 🚖️ 5 5 501 -20 -ノリモノ 🚖️ 5 5 501 -20 -クルマ 🚗️ 5 5 501 -20 -ジドウシャ 🚗️ 5 5 501 -20 -ノリモノ 🚗️ 5 5 501 -20 -クルマ 🚘️ 5 5 501 -20 -ジドウシャ 🚘️ 5 5 501 -20 -ジドウシャショウメン 🚘️ 5 5 501 -20 -ノリモノ 🚘️ 5 5 501 -20 -rv 🚙️ 5 5 501 -20 -suv 🚙️ 5 5 501 -20 -suvクルマ 🚙️ 5 5 501 -20 -アールブイシャ 🚙️ 5 5 501 -20 -エスユーブイシャ 🚙️ 5 5 501 -20 -クルマ 🚙️ 5 5 501 -20 -ジドウシャ 🚙️ 5 5 501 -20 -ノリモノ 🚙️ 5 5 501 -20 -クルマ 🛻️ 5 5 501 -20 -ケイトラック 🛻️ 5 5 501 -20 -トラック 🛻️ 5 5 501 -20 -ノリモノ 🛻️ 5 5 501 -20 -ハイタツ 🛻️ 5 5 501 -20 -ピックアップトラック 🛻️ 5 5 501 -20 -クルマ 🚚️ 5 5 501 -20 -トラック 🚚️ 5 5 501 -20 -ノリモノ 🚚️ 5 5 501 -20 -ハイタツ 🚚️ 5 5 501 -20 -クルマ 🚛️ 5 5 501 -20 -トラック 🚛️ 5 5 501 -20 -トレーラー 🚛️ 5 5 501 -20 -ノリモノ 🚛️ 5 5 501 -20 -クルマ 🚜️ 5 5 501 -20 -トラクター 🚜️ 5 5 501 -20 -ノリモノ 🚜️ 5 5 501 -20 -f1 🏎️️ 5 5 501 -20 -エフワン 🏎️️ 5 5 501 -20 -クルマ 🏎️️ 5 5 501 -20 -スポーツ 🏎️️ 5 5 501 -20 -ノリモノ 🏎️️ 5 5 501 -20 -モータースポーツ 🏎️️ 5 5 501 -20 -レーシングカー 🏎️️ 5 5 501 -20 -オートバイ 🏍️️ 5 5 501 -20 -オートレース 🏍️️ 5 5 501 -20 -スポーツ 🏍️️ 5 5 501 -20 -ノリモノ 🏍️️ 5 5 501 -20 -バイク 🏍️️ 5 5 501 -20 -モータースポーツ 🏍️️ 5 5 501 -20 -ゲンツキ 🛵️ 5 5 501 -20 -スクーター 🛵️ 5 5 501 -20 -アクセシビリティ 🦽️ 5 5 501 -20 -イス 🦽️ 5 5 501 -20 -クルマイス 🦽️ 5 5 501 -20 -シュドウシキクルマイス 🦽️ 5 5 501 -20 -アクセシビリティ 🦼️ 5 5 501 -20 -イス 🦼️ 5 5 501 -20 -クルマイス 🦼️ 5 5 501 -20 -デンドウクルマイス 🦼️ 5 5 501 -20 -オートリクシャー 🛺️ 5 5 501 -20 -サンリンタクシー 🛺️ 5 5 501 -20 -タクシー 🛺️ 5 5 501 -20 -トゥクトゥク 🛺️ 5 5 501 -20 -リクシャー 🛺️ 5 5 501 -20 -ジテンシャ 🚲️ 5 5 501 -20 -ノリモノ 🚲️ 5 5 501 -20 -キックスクーター 🛴️ 5 5 501 -20 -キックスケーター 🛴️ 5 5 501 -20 -キックボード 🛴️ 5 5 501 -20 -スケボー 🛹️ 5 5 501 -20 -スケートボード 🛹️ 5 5 501 -20 -ボード 🛹️ 5 5 501 -20 -スケート 🛼️ 5 5 501 -20 -スポーツ 🛼️ 5 5 501 -20 -ローラースケート 🛼️ 5 5 501 -20 -ノリモノ 🚏️ 5 5 501 -20 -バステイ 🚏️ 5 5 501 -20 -バスノリバ 🚏️ 5 5 501 -20 -コウソク 🛣️️ 5 5 501 -20 -コウソクドウロ 🛣️️ 5 5 501 -20 -ドウロ 🛣️️ 5 5 501 -20 -センロ 🛤️️ 5 5 501 -20 -テツドウ 🛤️️ 5 5 501 -20 -セキユ 🛢️️ 5 5 501 -20 -ドラムカン 🛢️️ 5 5 501 -20 -ガススタンド ⛽️ 5 5 501 -20 -ガソリン ⛽️ 5 5 501 -20 -ガソリンスタンド ⛽️ 5 5 501 -20 -ガソリンノズル ⛽️ 5 5 501 -20 -シャリン 🛞️ 5 5 501 -20 -スポーク 🛞️ 5 5 501 -20 -タイヤ 🛞️ 5 5 501 -20 -ホイール 🛞️ 5 5 501 -20 -パトカー 🚨️ 5 5 501 -20 -パトランプ 🚨️ 5 5 501 -20 -シンゴウ 🚥️ 5 5 501 -20 -シンゴウキ 🚥️ 5 5 501 -20 -シンゴウヨコ 🚥️ 5 5 501 -20 -シンゴウ 🚦️ 5 5 501 -20 -シンゴウキ 🚦️ 5 5 501 -20 -シンゴウタテ 🚦️ 5 5 501 -20 -ストップ 🛑️ 5 5 501 -20 -トマレ 🛑️ 5 5 501 -20 -トマレノヒョウシキ 🛑️ 5 5 501 -20 -ヒョウシキ 🛑️ 5 5 501 -20 -コウジチュウ 🚧️ 5 5 501 -20 -サイン 🚧️ 5 5 501 -20 -ツウコウドメ 🚧️ 5 5 501 -20 -イカリ ⚓️ 5 5 501 -20 -フネ ⚓️ 5 5 501 -20 -ミナト ⚓️ 5 5 501 -20 -アンゼン 🛟️ 5 5 501 -20 -ウキワ 🛟️ 5 5 501 -20 -キュウメイグ 🛟️ 5 5 501 -20 -キュウメイフカン 🛟️ 5 5 501 -20 -ライフセーバー 🛟️ 5 5 501 -20 -レスキュー 🛟️ 5 5 501 -20 -ノリモノ ⛵️ 5 5 501 -20 -ハンセン ⛵️ 5 5 501 -20 -フネ ⛵️ 5 5 501 -20 -ボート ⛵️ 5 5 501 -20 -ヨット ⛵️ 5 5 501 -20 -リゾート ⛵️ 5 5 501 -20 -カヌー 🛶️ 5 5 501 -20 -カヤック 🛶️ 5 5 501 -20 -ノリモノ 🛶️ 5 5 501 -20 -フネ 🛶️ 5 5 501 -20 -ボート 🛶️ 5 5 501 -20 -スピードボート 🚤️ 5 5 501 -20 -ノリモノ 🚤️ 5 5 501 -20 -フネ 🚤️ 5 5 501 -20 -ボート 🚤️ 5 5 501 -20 -キャクセン 🛳️️ 5 5 501 -20 -ノリモノ 🛳️️ 5 5 501 -20 -フネ 🛳️️ 5 5 501 -20 -リョカクセン 🛳️️ 5 5 501 -20 -ノリモノ ⛴️️ 5 5 501 -20 -フェリー ⛴️️ 5 5 501 -20 -フネ ⛴️️ 5 5 501 -20 -ノリモノ 🛥️️ 5 5 501 -20 -フネ 🛥️️ 5 5 501 -20 -ボート 🛥️️ 5 5 501 -20 -モーターボート 🛥️️ 5 5 501 -20 -ノリモノ 🚢️ 5 5 501 -20 -フネ 🚢️ 5 5 501 -20 -ノリモノ ✈️️ 5 5 501 -20 -ヒコウキ ✈️️ 5 5 501 -20 -コガタキ 🛩️️ 5 5 501 -20 -コガタヒコウキ 🛩️️ 5 5 501 -20 -ノリモノ 🛩️️ 5 5 501 -20 -ヒコウキ 🛩️️ 5 5 501 -20 -ノリモノ 🛫️ 5 5 501 -20 -ヒコウキ 🛫️ 5 5 501 -20 -ヒコウキリリク 🛫️ 5 5 501 -20 -リリク 🛫️ 5 5 501 -20 -チャクリク 🛬️ 5 5 501 -20 -ノリモノ 🛬️ 5 5 501 -20 -ヒコウキ 🛬️ 5 5 501 -20 -ヒコウキチャクリク 🛬️ 5 5 501 -20 -スカイダイビング 🪂️ 5 5 501 -20 -パラグライダー 🪂️ 5 5 501 -20 -パラシュート 🪂️ 5 5 501 -20 -イス 💺️ 5 5 501 -20 -ザセキ 💺️ 5 5 501 -20 -セキ 💺️ 5 5 501 -20 -ノリモノ 🚁️ 5 5 501 -20 -ヘリ 🚁️ 5 5 501 -20 -ヘリコプター 🚁️ 5 5 501 -20 -ケンスイシキモノレール 🚟️ 5 5 501 -20 -デンシャ 🚟️ 5 5 501 -20 -ノリモノ 🚟️ 5 5 501 -20 -モノレール 🚟️ 5 5 501 -20 -ケーブルカー 🚠️ 5 5 501 -20 -ゴンドラ 🚠️ 5 5 501 -20 -ノリモノ 🚠️ 5 5 501 -20 -ゴンドラ 🚡️ 5 5 501 -20 -ノリモノ 🚡️ 5 5 501 -20 -ロープウェイ 🚡️ 5 5 501 -20 -ウチュウ 🛰️️ 5 5 501 -20 -ジンコウエイセイ 🛰️️ 5 5 501 -20 -ウチュウ 🚀️ 5 5 501 -20 -ノリモノ 🚀️ 5 5 501 -20 -ロケット 🚀️ 5 5 501 -20 -ufo 🛸️ 5 5 501 -20 -ウチュウ 🛸️ 5 5 501 -20 -ソラトブエンバン 🛸️ 5 5 501 -20 -ノリモノ 🛸️ 5 5 501 -20 -ユーフォー 🛸️ 5 5 501 -20 -ベル 🛎️️ 5 5 501 -20 -ベルボーイベル 🛎️️ 5 5 501 -20 -ホテル 🛎️️ 5 5 501 -20 -スーツケース 🧳️ 5 5 501 -20 -パッキング 🧳️ 5 5 501 -20 -リョコウ 🧳️ 5 5 501 -20 -リョコウカバン 🧳️ 5 5 501 -20 -スナ ⌛️ 5 5 501 -20 -スナドケイ ⌛️ 5 5 501 -20 -トケイ ⌛️ 5 5 501 -20 -スナ ⏳️ 5 5 501 -20 -スナガオチテイルスナドケイ ⏳️ 5 5 501 -20 -スナドケイ ⏳️ 5 5 501 -20 -トケイ ⏳️ 5 5 501 -20 -ウデドケイ ⌚️ 5 5 501 -20 -トケイ ⌚️ 5 5 501 -20 -アラーム ⏰️ 5 5 501 -20 -トケイ ⏰️ 5 5 501 -20 -メザマシ ⏰️ 5 5 501 -20 -メザマシドケイ ⏰️ 5 5 501 -20 -ストップウォッチ ⏱️️ 5 5 501 -20 -トケイ ⏱️️ 5 5 501 -20 -タイマー ⏲️️ 5 5 501 -20 -トケイ ⏲️️ 5 5 501 -20 -オキドケイ 🕰️️ 5 5 501 -20 -トケイ 🕰️️ 5 5 501 -20 -マンテルクロック 🕰️️ 5 5 501 -20 -12ジ 🕛️ 5 5 501 -20 -ショウゴ 🕛️ 5 5 501 -20 -ジュウニジ 🕛️ 5 5 501 -20 -トケイ 🕛️ 5 5 501 -20 -12ジハン 🕧️ 5 5 501 -20 -トケイ 🕧️ 5 5 501 -20 -1ジ 🕐️ 5 5 501 -20 -イチジ 🕐️ 5 5 501 -20 -トケイ 🕐️ 5 5 501 -20 -1ジハン 🕜️ 5 5 501 -20 -トケイ 🕜️ 5 5 501 -20 -2ジ 🕑️ 5 5 501 -20 -トケイ 🕑️ 5 5 501 -20 -ニジ 🕑️ 5 5 501 -20 -2ジハン 🕝️ 5 5 501 -20 -トケイ 🕝️ 5 5 501 -20 -3ジ 🕒️ 5 5 501 -20 -サンジ 🕒️ 5 5 501 -20 -トケイ 🕒️ 5 5 501 -20 -3ジハン 🕞️ 5 5 501 -20 -トケイ 🕞️ 5 5 501 -20 -4ジ 🕓️ 5 5 501 -20 -トケイ 🕓️ 5 5 501 -20 -ヨジ 🕓️ 5 5 501 -20 -4ジハン 🕟️ 5 5 501 -20 -トケイ 🕟️ 5 5 501 -20 -5ジ 🕔️ 5 5 501 -20 -ゴジ 🕔️ 5 5 501 -20 -トケイ 🕔️ 5 5 501 -20 -5ジハン 🕠️ 5 5 501 -20 -トケイ 🕠️ 5 5 501 -20 -6ジ 🕕️ 5 5 501 -20 -トケイ 🕕️ 5 5 501 -20 -ロクジ 🕕️ 5 5 501 -20 -6ジハン 🕡️ 5 5 501 -20 -トケイ 🕡️ 5 5 501 -20 -7ジ 🕖️ 5 5 501 -20 -シチジ 🕖️ 5 5 501 -20 -トケイ 🕖️ 5 5 501 -20 -ナナジ 🕖️ 5 5 501 -20 -7ジハン 🕢️ 5 5 501 -20 -トケイ 🕢️ 5 5 501 -20 -8ジ 🕗️ 5 5 501 -20 -トケイ 🕗️ 5 5 501 -20 -ハチジ 🕗️ 5 5 501 -20 -8ジハン 🕣️ 5 5 501 -20 -トケイ 🕣️ 5 5 501 -20 -9ジ 🕘️ 5 5 501 -20 -クジ 🕘️ 5 5 501 -20 -トケイ 🕘️ 5 5 501 -20 -9ジハン 🕤️ 5 5 501 -20 -トケイ 🕤️ 5 5 501 -20 -10ジ 🕙️ 5 5 501 -20 -ジュウジ 🕙️ 5 5 501 -20 -トケイ 🕙️ 5 5 501 -20 -メザマシ 🕙️ 5 5 501 -20 -10ジハン 🕥️ 5 5 501 -20 -トケイ 🕥️ 5 5 501 -20 -11ジ 🕚️ 5 5 501 -20 -ジュウイチジ 🕚️ 5 5 501 -20 -トケイ 🕚️ 5 5 501 -20 -11ジハン 🕦️ 5 5 501 -20 -トケイ 🕦️ 5 5 501 -20 -シンゲツ 🌑️ 5 5 501 -20 -ツキ 🌑️ 5 5 501 -20 -ツキ 🌒️ 5 5 501 -20 -ハツカヅキ 🌒️ 5 5 501 -20 -ハツヅキ 🌒️ 5 5 501 -20 -ミカヅキ 🌒️ 5 5 501 -20 -ジョウゲン 🌓️ 5 5 501 -20 -ジョウゲンノツキ 🌓️ 5 5 501 -20 -ツキ 🌓️ 5 5 501 -20 -ハンゲツ 🌓️ 5 5 501 -20 -カケヅキ 🌔️ 5 5 501 -20 -ジュウサンヤツキ 🌔️ 5 5 501 -20 -ジュウサンヨツキ 🌔️ 5 5 501 -20 -ツキ 🌔️ 5 5 501 -20 -トオカヤノツキ 🌔️ 5 5 501 -20 -トオカンヤノツキ 🌔️ 5 5 501 -20 -ツキ 🌕️ 5 5 501 -20 -マンゲツ 🌕️ 5 5 501 -20 -イマチヅキ 🌖️ 5 5 501 -20 -ツキ 🌖️ 5 5 501 -20 -ネマチヅキ 🌖️ 5 5 501 -20 -ネマチノツキ 🌖️ 5 5 501 -20 -カゲン 🌗️ 5 5 501 -20 -カゲンノツキ 🌗️ 5 5 501 -20 -ツキ 🌗️ 5 5 501 -20 -ハンゲツ 🌗️ 5 5 501 -20 -アリアケヅキ 🌘️ 5 5 501 -20 -ツキ 🌘️ 5 5 501 -20 -ミカヅキ 🌘️ 5 5 501 -20 -ツキ 🌙️ 5 5 501 -20 -ミカヅキ 🌙️ 5 5 501 -20 -カオ 🌚️ 5 5 501 -20 -カオノアルシンゲツ 🌚️ 5 5 501 -20 -シンゲツ 🌚️ 5 5 501 -20 -ツキ 🌚️ 5 5 501 -20 -カオ 🌛️ 5 5 501 -20 -カオノアルジョウゲンノツキ 🌛️ 5 5 501 -20 -ジョウゲンノツキ 🌛️ 5 5 501 -20 -ツキ 🌛️ 5 5 501 -20 -ミカヅキ 🌛️ 5 5 501 -20 -カオ 🌜️ 5 5 501 -20 -カオノアルカゲンノツキ 🌜️ 5 5 501 -20 -カゲンノツキ 🌜️ 5 5 501 -20 -ツキ 🌜️ 5 5 501 -20 -オンド 🌡️️ 5 5 501 -20 -オンドケイ 🌡️️ 5 5 501 -20 -キオン 🌡️️ 5 5 501 -20 -テンキ 🌡️️ 5 5 501 -20 -タイヨウ ☀️️ 5 5 501 -20 -ハレ ☀️️ 5 5 501 -20 -カオ 🌝️ 5 5 501 -20 -カオノアルマンゲツ 🌝️ 5 5 501 -20 -ツキ 🌝️ 5 5 501 -20 -カオ 🌞️ 5 5 501 -20 -カオノアルタイヨウ 🌞️ 5 5 501 -20 -タイヨウ 🌞️ 5 5 501 -20 -テンタイ 🪐️ 5 5 501 -20 -ドセイ 🪐️ 5 5 501 -20 -ホシ 🪐️ 5 5 501 -20 -リング 🪐️ 5 5 501 -20 -ワクセイ 🪐️ 5 5 501 -20 -ワノアルワクセイ 🪐️ 5 5 501 -20 -スター ⭐️ 5 5 501 -20 -ホシ ⭐️ 5 5 501 -20 -カガヤキ 🌟️ 5 5 501 -20 -キラキラ 🌟️ 5 5 501 -20 -キラキラボシ 🌟️ 5 5 501 -20 -スター 🌟️ 5 5 501 -20 -ホシ 🌟️ 5 5 501 -20 -スター 🌠️ 5 5 501 -20 -ナガレボシ 🌠️ 5 5 501 -20 -ホシ 🌠️ 5 5 501 -20 -アマノガワ 🌌️ 5 5 501 -20 -ギンガ 🌌️ 5 5 501 -20 -ホシゾラ 🌌️ 5 5 501 -20 -ミルキーウェイ 🌌️ 5 5 501 -20 -ヨゾラ 🌌️ 5 5 501 -20 -クモ ☁️️ 5 5 501 -20 -クモリ ☁️️ 5 5 501 -20 -テンキ ☁️️ 5 5 501 -20 -クモ ⛅️ 5 5 501 -20 -クモリ ⛅️ 5 5 501 -20 -クモリトキドキハレ ⛅️ 5 5 501 -20 -タイヨウ ⛅️ 5 5 501 -20 -テンキ ⛅️ 5 5 501 -20 -トキドキクモリ ⛅️ 5 5 501 -20 -アメ ⛈️️ 5 5 501 -20 -イナズマ ⛈️️ 5 5 501 -20 -イナヅマ ⛈️️ 5 5 501 -20 -カミナリ ⛈️️ 5 5 501 -20 -クモ ⛈️️ 5 5 501 -20 -テンキ ⛈️️ 5 5 501 -20 -ライウ ⛈️️ 5 5 501 -20 -クモ 🌤️️ 5 5 501 -20 -タイヨウ 🌤️️ 5 5 501 -20 -テンキ 🌤️️ 5 5 501 -20 -ハレ 🌤️️ 5 5 501 -20 -ハレトキドキクモリ 🌤️️ 5 5 501 -20 -クモ 🌥️️ 5 5 501 -20 -クモリ 🌥️️ 5 5 501 -20 -クモリイチジハレ 🌥️️ 5 5 501 -20 -タイヨウ 🌥️️ 5 5 501 -20 -テンキ 🌥️️ 5 5 501 -20 -アメトキドキハレ 🌦️️ 5 5 501 -20 -アメノチハレ 🌦️️ 5 5 501 -20 -クモ 🌦️️ 5 5 501 -20 -クモリ 🌦️️ 5 5 501 -20 -タイヨウ 🌦️️ 5 5 501 -20 -テンキ 🌦️️ 5 5 501 -20 -テンキアメ 🌦️️ 5 5 501 -20 -アマグモ 🌧️️ 5 5 501 -20 -アメ 🌧️️ 5 5 501 -20 -クモ 🌧️️ 5 5 501 -20 -テンキ 🌧️️ 5 5 501 -20 -クモ 🌨️️ 5 5 501 -20 -テンキ 🌨️️ 5 5 501 -20 -ユキ 🌨️️ 5 5 501 -20 -ユキグモ 🌨️️ 5 5 501 -20 -イナズマ 🌩️️ 5 5 501 -20 -イナヅマ 🌩️️ 5 5 501 -20 -カミナリ 🌩️️ 5 5 501 -20 -クモ 🌩️️ 5 5 501 -20 -テンキ 🌩️️ 5 5 501 -20 -ライウン 🌩️️ 5 5 501 -20 -タツマキ 🌪️️ 5 5 501 -20 -テンキ 🌪️️ 5 5 501 -20 -トップウ 🌪️️ 5 5 501 -20 -キリ 🌫️️ 5 5 501 -20 -テンキ 🌫️️ 5 5 501 -20 -カオ 🌬️️ 5 5 501 -20 -カオノアルカゼ 🌬️️ 5 5 501 -20 -カゼ 🌬️️ 5 5 501 -20 -ウズ 🌀️ 5 5 501 -20 -ウズマキ 🌀️ 5 5 501 -20 -クルクル 🌀️ 5 5 501 -20 -グルグル 🌀️ 5 5 501 -20 -サイクロン 🌀️ 5 5 501 -20 -タイフウ 🌀️ 5 5 501 -20 -ハリケーン 🌀️ 5 5 501 -20 -メマイ 🌀️ 5 5 501 -20 -モヤモヤ 🌀️ 5 5 501 -20 -ニジ 🌈️ 5 5 501 -20 -レインボー 🌈️ 5 5 501 -20 -アメ 🌂️ 5 5 501 -20 -カサ 🌂️ 5 5 501 -20 -テンキ 🌂️ 5 5 501 -20 -トジタカサ 🌂️ 5 5 501 -20 -モチモノ 🌂️ 5 5 501 -20 -アメ ☂️️ 5 5 501 -20 -カサ ☂️️ 5 5 501 -20 -テンキ ☂️️ 5 5 501 -20 -モチモノ ☂️️ 5 5 501 -20 -アメ ☔️ 5 5 501 -20 -カサ ☔️ 5 5 501 -20 -カサトアメ ☔️ 5 5 501 -20 -テンキ ☔️ 5 5 501 -20 -モチモノ ☔️ 5 5 501 -20 -カサ ⛱️️ 5 5 501 -20 -スナハマ ⛱️️ 5 5 501 -20 -パラソル ⛱️️ 5 5 501 -20 -ビーチ ⛱️️ 5 5 501 -20 -イナズマ ⚡️ 5 5 501 -20 -イナヅマ ⚡️ 5 5 501 -20 -カミナリ ⚡️ 5 5 501 -20 -キケン ⚡️ 5 5 501 -20 -コウデンアツ ⚡️ 5 5 501 -20 -デンキ ⚡️ 5 5 501 -20 -ケッショウ ❄️️ 5 5 501 -20 -ユキ ❄️️ 5 5 501 -20 -ユキノケッショウ ❄️️ 5 5 501 -20 -ユキ ☃️️ 5 5 501 -20 -ユキダルマ ☃️️ 5 5 501 -20 -ユキダルマトユキ ☃️️ 5 5 501 -20 -ユキ ⛄️ 5 5 501 -20 -ユキダルマ ⛄️ 5 5 501 -20 -ウチュウ ☄️️ 5 5 501 -20 -スイセイ ☄️️ 5 5 501 -20 -ヒ 🔥️ 5 5 501 -20 -ファイアー 🔥️ 5 5 501 -20 -ファイヤー 🔥️ 5 5 501 -20 -ホノオ 🔥️ 5 5 501 -20 -アセ 💧️ 5 5 501 -20 -シズク 💧️ 5 5 501 -20 -スイテキ 💧️ 5 5 501 -20 -タラーッ 💧️ 5 5 501 -20 -ナミダ 💧️ 5 5 501 -20 -ウミ 🌊️ 5 5 501 -20 -テンキ 🌊️ 5 5 501 -20 -ナミ 🌊️ 5 5 501 -20 -ハロウ 🌊️ 5 5 501 -20 -カボチャ 🎃️ 5 5 501 -20 -ハロウィン 🎃️ 5 5 501 -20 -ハロウィンカボチャ 🎃️ 5 5 501 -20 -ハロウィーン 🎃️ 5 5 501 -20 -クリスマス 🎄️ 5 5 501 -20 -クリスマスイブ 🎄️ 5 5 501 -20 -クリスマスツリー 🎄️ 5 5 501 -20 -ツリー 🎄️ 5 5 501 -20 -ウチアゲハナビ 🎆️ 5 5 501 -20 -オマツリ 🎆️ 5 5 501 -20 -ハナビ 🎆️ 5 5 501 -20 -ハナビタイカイ 🎆️ 5 5 501 -20 -オマツリ 🎇️ 5 5 501 -20 -センコウハナビ 🎇️ 5 5 501 -20 -ハナビ 🎇️ 5 5 501 -20 -カヤク 🧨️ 5 5 501 -20 -ダイナマイト 🧨️ 5 5 501 -20 -バクチク 🧨️ 5 5 501 -20 -バクハツ 🧨️ 5 5 501 -20 -バクヤク 🧨️ 5 5 501 -20 -キラキラ ✨️ 5 5 501 -20 -スター ✨️ 5 5 501 -20 -ピカピカ ✨️ 5 5 501 -20 -ホシ ✨️ 5 5 501 -20 -バルーン 🎈️ 5 5 501 -20 -フウセン 🎈️ 5 5 501 -20 -オイワイ 🎉️ 5 5 501 -20 -クラッカー 🎉️ 5 5 501 -20 -パーティー 🎉️ 5 5 501 -20 -パーティークラッカー 🎉️ 5 5 501 -20 -オイワイ 🎊️ 5 5 501 -20 -クスダマ 🎊️ 5 5 501 -20 -パーティー 🎊️ 5 5 501 -20 -タナバタ 🎋️ 5 5 501 -20 -タンザク 🎋️ 5 5 501 -20 -ニッポン 🎋️ 5 5 501 -20 -ニホン 🎋️ 5 5 501 -20 -ワ 🎋️ 5 5 501 -20 -オイワイ 🎍️ 5 5 501 -20 -カドマツ 🎍️ 5 5 501 -20 -ショウガツ 🎍️ 5 5 501 -20 -タケ 🎍️ 5 5 501 -20 -ニッポン 🎍️ 5 5 501 -20 -ニホン 🎍️ 5 5 501 -20 -ワ 🎍️ 5 5 501 -20 -オイワイ 🎎️ 5 5 501 -20 -オダイリサマ 🎎️ 5 5 501 -20 -オダイリヨウ 🎎️ 5 5 501 -20 -オヒナサマ 🎎️ 5 5 501 -20 -ニッポン 🎎️ 5 5 501 -20 -ニホン 🎎️ 5 5 501 -20 -ニンギョウ 🎎️ 5 5 501 -20 -ヒナマツリ 🎎️ 5 5 501 -20 -ワ 🎎️ 5 5 501 -20 -オイワイ 🎏️ 5 5 501 -20 -コイノボリ 🎏️ 5 5 501 -20 -コドモノヒ 🎏️ 5 5 501 -20 -カゼ 🎐️ 5 5 501 -20 -スズ 🎐️ 5 5 501 -20 -ナツ 🎐️ 5 5 501 -20 -フウリン 🎐️ 5 5 501 -20 -ジュウゴヤ 🎑️ 5 5 501 -20 -ジュウゴヨ 🎑️ 5 5 501 -20 -ススキ 🎑️ 5 5 501 -20 -ツキ 🎑️ 5 5 501 -20 -ツキミ 🎑️ 5 5 501 -20 -アカイフウトウ 🧧️ 5 5 501 -20 -オカネ 🧧️ 5 5 501 -20 -オトシダマ 🧧️ 5 5 501 -20 -コウウン 🧧️ 5 5 501 -20 -ゴシュウギ 🧧️ 5 5 501 -20 -ホンパオ 🧧️ 5 5 501 -20 -ホンボア 🧧️ 5 5 501 -20 -オイワイ 🎀️ 5 5 501 -20 -リボン 🎀️ 5 5 501 -20 -オイワイ 🎁️ 5 5 501 -20 -ギフト 🎁️ 5 5 501 -20 -ハコ 🎁️ 5 5 501 -20 -プレゼント 🎁️ 5 5 501 -20 -オイワイ 🎗️️ 5 5 501 -20 -リボン 🎗️️ 5 5 501 -20 -リマインダー 🎗️️ 5 5 501 -20 -リマインダーリボン 🎗️️ 5 5 501 -20 -チケット 🎟️️ 5 5 501 -20 -ニュウジョウケン 🎟️️ 5 5 501 -20 -ニュウジョウパス 🎟️️ 5 5 501 -20 -ハンケン 🎟️️ 5 5 501 -20 -キップ 🎫️ 5 5 501 -20 -チケット 🎫️ 5 5 501 -20 -オイワイ 🎖️️ 5 5 501 -20 -クンショウ 🎖️️ 5 5 501 -20 -ヒョウショウ 🎖️️ 5 5 501 -20 -メダル 🎖️️ 5 5 501 -20 -カップ 🏆️ 5 5 501 -20 -ショウハイ 🏆️ 5 5 501 -20 -トロフィー 🏆️ 5 5 501 -20 -ヒョウショウ 🏆️ 5 5 501 -20 -ユウショウカップ 🏆️ 5 5 501 -20 -スポーツ 🏅️ 5 5 501 -20 -ヒョウショウ 🏅️ 5 5 501 -20 -メダル 🏅️ 5 5 501 -20 -1イ 🥇️ 5 5 501 -20 -キン 🥇️ 5 5 501 -20 -キンメダル 🥇️ 5 5 501 -20 -ゴールド 🥇️ 5 5 501 -20 -メダル 🥇️ 5 5 501 -20 -2イ 🥈️ 5 5 501 -20 -ギン 🥈️ 5 5 501 -20 -ギンメダル 🥈️ 5 5 501 -20 -シルバー 🥈️ 5 5 501 -20 -メダル 🥈️ 5 5 501 -20 -3イ 🥉️ 5 5 501 -20 -ドウ 🥉️ 5 5 501 -20 -ドウメダル 🥉️ 5 5 501 -20 -ブロンズ 🥉️ 5 5 501 -20 -メダル 🥉️ 5 5 501 -20 -サッカー ⚽️ 5 5 501 -20 -サッカーボール ⚽️ 5 5 501 -20 -スポーツ ⚽️ 5 5 501 -20 -ボール ⚽️ 5 5 501 -20 -スポーツ ⚾️ 5 5 501 -20 -ボール ⚾️ 5 5 501 -20 -ヤキュウ ⚾️ 5 5 501 -20 -ヤキュウボール ⚾️ 5 5 501 -20 -スポーツ 🥎️ 5 5 501 -20 -ソフトボール 🥎️ 5 5 501 -20 -ヘタナゲ 🥎️ 5 5 501 -20 -ボール 🥎️ 5 5 501 -20 -スポーツ 🏀️ 5 5 501 -20 -バスケ 🏀️ 5 5 501 -20 -バスケットボール 🏀️ 5 5 501 -20 -ボール 🏀️ 5 5 501 -20 -スポーツ 🏐️ 5 5 501 -20 -バレー 🏐️ 5 5 501 -20 -バレーボール 🏐️ 5 5 501 -20 -ボール 🏐️ 5 5 501 -20 -アメフト 🏈️ 5 5 501 -20 -アメリカンフットボール 🏈️ 5 5 501 -20 -スポーツ 🏈️ 5 5 501 -20 -ボール 🏈️ 5 5 501 -20 -ラグビー 🏈️ 5 5 501 -20 -ラグビーボール 🏈️ 5 5 501 -20 -スポーツ 🏉️ 5 5 501 -20 -ボール 🏉️ 5 5 501 -20 -ラグビー 🏉️ 5 5 501 -20 -ラグビーボール 🏉️ 5 5 501 -20 -スポーツ 🎾️ 5 5 501 -20 -テニス 🎾️ 5 5 501 -20 -テニスボール 🎾️ 5 5 501 -20 -ボール 🎾️ 5 5 501 -20 -ラケット 🎾️ 5 5 501 -20 -アルティメット 🥏️ 5 5 501 -20 -フライングディスク 🥏️ 5 5 501 -20 -フリスビー 🥏️ 5 5 501 -20 -スポーツ 🎳️ 5 5 501 -20 -タマ 🎳️ 5 5 501 -20 -ボウリング 🎳️ 5 5 501 -20 -ボール 🎳️ 5 5 501 -20 -クリケット 🏏️ 5 5 501 -20 -スポーツ 🏏️ 5 5 501 -20 -バット 🏏️ 5 5 501 -20 -ボール 🏏️ 5 5 501 -20 -スティック 🏑️ 5 5 501 -20 -スポーツ 🏑️ 5 5 501 -20 -フィールドホッケー 🏑️ 5 5 501 -20 -ホッケー 🏑️ 5 5 501 -20 -ボール 🏑️ 5 5 501 -20 -アイスホッケー 🏒️ 5 5 501 -20 -スティック 🏒️ 5 5 501 -20 -スポーツ 🏒️ 5 5 501 -20 -パック 🏒️ 5 5 501 -20 -ホッケー 🏒️ 5 5 501 -20 -ゴール 🥍️ 5 5 501 -20 -スティック 🥍️ 5 5 501 -20 -スポーツ 🥍️ 5 5 501 -20 -ボール 🥍️ 5 5 501 -20 -ラクロス 🥍️ 5 5 501 -20 -スポーツ 🏓️ 5 5 501 -20 -タッキュウ 🏓️ 5 5 501 -20 -ピンポン 🏓️ 5 5 501 -20 -ボール 🏓️ 5 5 501 -20 -ラケット 🏓️ 5 5 501 -20 -シャトル 🏸️ 5 5 501 -20 -スポーツ 🏸️ 5 5 501 -20 -バドミントン 🏸️ 5 5 501 -20 -ラケット 🏸️ 5 5 501 -20 -グローブ 🥊️ 5 5 501 -20 -スポーツ 🥊️ 5 5 501 -20 -ボクシング 🥊️ 5 5 501 -20 -ボクシンググローブ 🥊️ 5 5 501 -20 -カラテ 🥋️ 5 5 501 -20 -ジュウドウ 🥋️ 5 5 501 -20 -スポーツ 🥋️ 5 5 501 -20 -テコンドー 🥋️ 5 5 501 -20 -ドウギ 🥋️ 5 5 501 -20 -ブドウ 🥋️ 5 5 501 -20 -ゴール 🥅️ 5 5 501 -20 -ゴールネット 🥅️ 5 5 501 -20 -スポーツ 🥅️ 5 5 501 -20 -ネット 🥅️ 5 5 501 -20 -ゴルフ ⛳️ 5 5 501 -20 -スポーツ ⛳️ 5 5 501 -20 -ハタ ⛳️ 5 5 501 -20 -フラグ ⛳️ 5 5 501 -20 -フラッグ ⛳️ 5 5 501 -20 -ホール ⛳️ 5 5 501 -20 -アイススケート ⛸️️ 5 5 501 -20 -スケート ⛸️️ 5 5 501 -20 -スポーツ ⛸️️ 5 5 501 -20 -フィギュアスケート ⛸️️ 5 5 501 -20 -サカナ 🎣️ 5 5 501 -20 -スポーツ 🎣️ 5 5 501 -20 -ツリ 🎣️ 5 5 501 -20 -ツリザオ 🎣️ 5 5 501 -20 -シュノーケリング 🤿️ 5 5 501 -20 -スキューバ 🤿️ 5 5 501 -20 -スポーツ 🤿️ 5 5 501 -20 -ダイビングマスク 🤿️ 5 5 501 -20 -マスク 🤿️ 5 5 501 -20 -エキデン 🎽️ 5 5 501 -20 -シャツ 🎽️ 5 5 501 -20 -スポーツ 🎽️ 5 5 501 -20 -タスキ 🎽️ 5 5 501 -20 -チョウキョリソウ 🎽️ 5 5 501 -20 -マラソン 🎽️ 5 5 501 -20 -ランニング 🎽️ 5 5 501 -20 -ランニングシャツ 🎽️ 5 5 501 -20 -イタ 🎿️ 5 5 501 -20 -スキー 🎿️ 5 5 501 -20 -スキーブーツ 🎿️ 5 5 501 -20 -ストック 🎿️ 5 5 501 -20 -スポーツ 🎿️ 5 5 501 -20 -ユキ 🎿️ 5 5 501 -20 -スケルトン 🛷️ 5 5 501 -20 -スポーツ 🛷️ 5 5 501 -20 -ソリ 🛷️ 5 5 501 -20 -ソリキョウギ 🛷️ 5 5 501 -20 -ボブスレー 🛷️ 5 5 501 -20 -リュージュ 🛷️ 5 5 501 -20 -カーリング 🥌️ 5 5 501 -20 -ストーン 🥌️ 5 5 501 -20 -スポーツ 🥌️ 5 5 501 -20 -アタリ 🎯️ 5 5 501 -20 -スポーツ 🎯️ 5 5 501 -20 -ダーツ 🎯️ 5 5 501 -20 -テキ 🎯️ 5 5 501 -20 -ブルズアイ 🎯️ 5 5 501 -20 -マト 🎯️ 5 5 501 -20 -オモチャ 🪀️ 5 5 501 -20 -カイテン 🪀️ 5 5 501 -20 -ガング 🪀️ 5 5 501 -20 -ヨーヨー 🪀️ 5 5 501 -20 -オモチャ 🪁️ 5 5 501 -20 -カイト 🪁️ 5 5 501 -20 -ガング 🪁️ 5 5 501 -20 -タコ 🪁️ 5 5 501 -20 -タコアゲ 🪁️ 5 5 501 -20 -ケンジュウ 🔫️ 5 5 501 -20 -ジュウ 🔫️ 5 5 501 -20 -ピストル 🔫️ 5 5 501 -20 -ブキ 🔫️ 5 5 501 -20 -ミズデッポウ 🔫️ 5 5 501 -20 -リボルバー 🔫️ 5 5 501 -20 -エイトボール 🎱️ 5 5 501 -20 -スポーツ 🎱️ 5 5 501 -20 -ビリヤード 🎱️ 5 5 501 -20 -ボール 🎱️ 5 5 501 -20 -ウラナイ 🔮️ 5 5 501 -20 -ウンメイ 🔮️ 5 5 501 -20 -スイショウ 🔮️ 5 5 501 -20 -スイショウダマ 🔮️ 5 5 501 -20 -タマ 🔮️ 5 5 501 -20 -ツエ 🪄️ 5 5 501 -20 -マジュツ 🪄️ 5 5 501 -20 -マホウノツエ 🪄️ 5 5 501 -20 -ゲーム 🎮️ 5 5 501 -20 -コントローラ 🎮️ 5 5 501 -20 -コントローラー 🎮️ 5 5 501 -20 -テレビゲーム 🎮️ 5 5 501 -20 -ビデオゲーム 🎮️ 5 5 501 -20 -ゲーム 🕹️️ 5 5 501 -20 -コントローラ 🕹️️ 5 5 501 -20 -ジョイスティック 🕹️️ 5 5 501 -20 -スティック 🕹️️ 5 5 501 -20 -テレビゲーム 🕹️️ 5 5 501 -20 -スリーセブン 🎰️ 5 5 501 -20 -スロット 🎰️ 5 5 501 -20 -スロットマシン 🎰️ 5 5 501 -20 -ゲーム 🎲️ 5 5 501 -20 -サイコロ 🎲️ 5 5 501 -20 -ダイス 🎲️ 5 5 501 -20 -カギ 🧩️ 5 5 501 -20 -クミアワセ 🧩️ 5 5 501 -20 -ジグソーパズル 🧩️ 5 5 501 -20 -パズル 🧩️ 5 5 501 -20 -ピース 🧩️ 5 5 501 -20 -オモチャ 🧸️ 5 5 501 -20 -ガング 🧸️ 5 5 501 -20 -クマ 🧸️ 5 5 501 -20 -テディベア 🧸️ 5 5 501 -20 -ヌイグルミ 🧸️ 5 5 501 -20 -オイワイ 🪅️ 5 5 501 -20 -タンジョウビ 🪅️ 5 5 501 -20 -ニンギョウ 🪅️ 5 5 501 -20 -パーティー 🪅️ 5 5 501 -20 -ピニャータ 🪅️ 5 5 501 -20 -キラキラ 🪩️ 5 5 501 -20 -ダンス 🪩️ 5 5 501 -20 -ディスコ 🪩️ 5 5 501 -20 -パーティー 🪩️ 5 5 501 -20 -ミラーボール 🪩️ 5 5 501 -20 -イレコ 🪆️ 5 5 501 -20 -ニンギョウ 🪆️ 5 5 501 -20 -マトリョーシカ 🪆️ 5 5 501 -20 -ロシア 🪆️ 5 5 501 -20 -カード ♠️️ 5 5 501 -20 -スペード ♠️️ 5 5 501 -20 -トランプ ♠️️ 5 5 501 -20 -カード ♥️️ 5 5 501 -20 -トランプ ♥️️ 5 5 501 -20 -ハート ♥️️ 5 5 501 -20 -カード ♦️️ 5 5 501 -20 -ダイア ♦️️ 5 5 501 -20 -ダイヤ ♦️️ 5 5 501 -20 -トランプ ♦️️ 5 5 501 -20 -カード ♣️️ 5 5 501 -20 -クラブ ♣️️ 5 5 501 -20 -クローバー ♣️️ 5 5 501 -20 -トランプ ♣️️ 5 5 501 -20 -コマ ♟️️ 5 5 501 -20 -ステコマ ♟️️ 5 5 501 -20 -ステゴマ ♟️️ 5 5 501 -20 -チェス ♟️️ 5 5 501 -20 -チェスノコマ ♟️️ 5 5 501 -20 -カード 🃏️ 5 5 501 -20 -ジジ 🃏️ 5 5 501 -20 -ジョーカー 🃏️ 5 5 501 -20 -トランプ 🃏️ 5 5 501 -20 -ババ 🃏️ 5 5 501 -20 -ゲーム 🀄️ 5 5 501 -20 -ジャンパイ 🀄️ 5 5 501 -20 -パイ 🀄️ 5 5 501 -20 -マージャン 🀄️ 5 5 501 -20 -マージャンパイ 🀄️ 5 5 501 -20 -カード 🎴️ 5 5 501 -20 -ゲーム 🎴️ 5 5 501 -20 -ハナフダ 🎴️ 5 5 501 -20 -エンゲイ 🎭️ 5 5 501 -20 -エンゲキ 🎭️ 5 5 501 -20 -カメン 🎭️ 5 5 501 -20 -ゲイジュツ 🎭️ 5 5 501 -20 -ゲキジョウ 🎭️ 5 5 501 -20 -ブタイゲイジュツ 🎭️ 5 5 501 -20 -エ 🖼️️ 5 5 501 -20 -カイガ 🖼️️ 5 5 501 -20 -ゲイジュツ 🖼️️ 5 5 501 -20 -ビジュツカン 🖼️️ 5 5 501 -20 -アート 🎨️ 5 5 501 -20 -エ 🎨️ 5 5 501 -20 -エノグパレット 🎨️ 5 5 501 -20 -パレット 🎨️ 5 5 501 -20 -ビジュツカン 🎨️ 5 5 501 -20 -フデ 🎨️ 5 5 501 -20 -イト 🧵️ 5 5 501 -20 -イトマキ 🧵️ 5 5 501 -20 -サイホウ 🧵️ 5 5 501 -20 -ヌイバリ 🧵️ 5 5 501 -20 -ヒモ 🧵️ 5 5 501 -20 -サイホウ 🪡️ 5 5 501 -20 -シシュウ 🪡️ 5 5 501 -20 -ステッチ 🪡️ 5 5 501 -20 -ヌイバリ 🪡️ 5 5 501 -20 -ヌウ 🪡️ 5 5 501 -20 -ハリ 🪡️ 5 5 501 -20 -アミモノ 🧶️ 5 5 501 -20 -カギバリ 🧶️ 5 5 501 -20 -ケイト 🧶️ 5 5 501 -20 -ケイトダマ 🧶️ 5 5 501 -20 -ニット 🧶️ 5 5 501 -20 -ツナ 🪢️ 5 5 501 -20 -ネジレ 🪢️ 5 5 501 -20 -ノット 🪢️ 5 5 501 -20 -ヒモ 🪢️ 5 5 501 -20 -ムスビメ 🪢️ 5 5 501 -20 -ロープ 🪢️ 5 5 501 -20 -メガネ 👓️ 5 5 501 -20 -サングラス 🕶️️ 5 5 501 -20 -メガネ 🕶️️ 5 5 501 -20 -ゴーグル 🥽️ 5 5 501 -20 -スイエイ 🥽️ 5 5 501 -20 -ホゴメガネ 🥽️ 5 5 501 -20 -ヨウセツ 🥽️ 5 5 501 -20 -イシャ 🥼️ 5 5 501 -20 -カガクシャ 🥼️ 5 5 501 -20 -ジッケン 🥼️ 5 5 501 -20 -ハクイ 🥼️ 5 5 501 -20 -アンゼンベスト 🦺️ 5 5 501 -20 -キンキュウ 🦺️ 5 5 501 -20 -コウジ 🦺️ 5 5 501 -20 -チョッキ 🦺️ 5 5 501 -20 -ハンシャ 🦺️ 5 5 501 -20 -ベスト 🦺️ 5 5 501 -20 -シャツ 👔️ 5 5 501 -20 -タイ 👔️ 5 5 501 -20 -ネクタイ 👔️ 5 5 501 -20 -フク 👔️ 5 5 501 -20 -ワイシャツ 👔️ 5 5 501 -20 -tシャツ 👕️ 5 5 501 -20 -シャツ 👕️ 5 5 501 -20 -ティーシャツ 👕️ 5 5 501 -20 -フク 👕️ 5 5 501 -20 -ジーパン 👖️ 5 5 501 -20 -ジーンズ 👖️ 5 5 501 -20 -ズボン 👖️ 5 5 501 -20 -デニム 👖️ 5 5 501 -20 -パンツ 👖️ 5 5 501 -20 -フク 👖️ 5 5 501 -20 -エリマキ 🧣️ 5 5 501 -20 -クビマキ 🧣️ 5 5 501 -20 -スカーフ 🧣️ 5 5 501 -20 -マフラー 🧣️ 5 5 501 -20 -テブクロ 🧤️ 5 5 501 -20 -アウター 🧥️ 5 5 501 -20 -オーバー 🧥️ 5 5 501 -20 -コート 🧥️ 5 5 501 -20 -ジャケット 🧥️ 5 5 501 -20 -フク 🧥️ 5 5 501 -20 -クツシタ 🧦️ 5 5 501 -20 -ソックス 🧦️ 5 5 501 -20 -ドレス 👗️ 5 5 501 -20 -フク 👗️ 5 5 501 -20 -ワンピース 👗️ 5 5 501 -20 -キモノ 👘️ 5 5 501 -20 -フク 👘️ 5 5 501 -20 -サリー 🥻️ 5 5 501 -20 -フク 🥻️ 5 5 501 -20 -ミンゾクイショウ 🥻️ 5 5 501 -20 -スイムウェア 🩱️ 5 5 501 -20 -ミズギ 🩱️ 5 5 501 -20 -ワンピースノミズギ 🩱️ 5 5 501 -20 -シタギ 🩲️ 5 5 501 -20 -スイムウェア 🩲️ 5 5 501 -20 -パンツ 🩲️ 5 5 501 -20 -ブリーフ 🩲️ 5 5 501 -20 -ミズギ 🩲️ 5 5 501 -20 -シタギ 🩳️ 5 5 501 -20 -ショーツ 🩳️ 5 5 501 -20 -スイムウェア 🩳️ 5 5 501 -20 -パンツ 🩳️ 5 5 501 -20 -ミズギ 🩳️ 5 5 501 -20 -ビキニ 👙️ 5 5 501 -20 -フク 👙️ 5 5 501 -20 -ミズギ 👙️ 5 5 501 -20 -シャツ 👚️ 5 5 501 -20 -フク 👚️ 5 5 501 -20 -フジンフク 👚️ 5 5 501 -20 -ブラウス 👚️ 5 5 501 -20 -アオグ 🪭️ 5 5 501 -20 -ウチワ 🪭️ 5 5 501 -20 -オウギ 🪭️ 5 5 501 -20 -カゼ 🪭️ 5 5 501 -20 -センス 🪭️ 5 5 501 -20 -ナツ 🪭️ 5 5 501 -20 -ガマグチ 👛️ 5 5 501 -20 -ガマグチザイフ 👛️ 5 5 501 -20 -コゼニイレ 👛️ 5 5 501 -20 -サイフ 👛️ 5 5 501 -20 -カバン 👜️ 5 5 501 -20 -ハンドバッグ 👜️ 5 5 501 -20 -バッグ 👜️ 5 5 501 -20 -バッグ 👝️ 5 5 501 -20 -ポーチ 👝️ 5 5 501 -20 -カミテサゲ 🛍️️ 5 5 501 -20 -カミブクロ 🛍️️ 5 5 501 -20 -ショッピングバッグ 🛍️️ 5 5 501 -20 -バッグ 🛍️️ 5 5 501 -20 -カバン 🎒️ 5 5 501 -20 -ガッコウ 🎒️ 5 5 501 -20 -ショウガクセイ 🎒️ 5 5 501 -20 -ショウガッコウ 🎒️ 5 5 501 -20 -バックパック 🎒️ 5 5 501 -20 -ランドセル 🎒️ 5 5 501 -20 -リュックサック 🎒️ 5 5 501 -20 -クツ 🩴️ 5 5 501 -20 -ゴムゾウリ 🩴️ 5 5 501 -20 -サンダル 🩴️ 5 5 501 -20 -トングサンダル 🩴️ 5 5 501 -20 -ビーサン 🩴️ 5 5 501 -20 -ビーチサンダル 🩴️ 5 5 501 -20 -カワグツ 👞️ 5 5 501 -20 -クツ 👞️ 5 5 501 -20 -シンシグツ 👞️ 5 5 501 -20 -ローファー 👞️ 5 5 501 -20 -アスレチックシューズ 👟️ 5 5 501 -20 -クツ 👟️ 5 5 501 -20 -シューズ 👟️ 5 5 501 -20 -スニーカー 👟️ 5 5 501 -20 -キャンプ 🥾️ 5 5 501 -20 -トザンクツ 🥾️ 5 5 501 -20 -トザングツ 🥾️ 5 5 501 -20 -ハイキング 🥾️ 5 5 501 -20 -ハイキングシューズ 🥾️ 5 5 501 -20 -バックパック 🥾️ 5 5 501 -20 -ブーツ 🥾️ 5 5 501 -20 -スリッポン 🥿️ 5 5 501 -20 -バレエシューズ 🥿️ 5 5 501 -20 -フラットシューズ 🥿️ 5 5 501 -20 -ペタンコクツ 🥿️ 5 5 501 -20 -クツ 👠️ 5 5 501 -20 -ハイヒール 👠️ 5 5 501 -20 -ヒール 👠️ 5 5 501 -20 -ピンヒール 👠️ 5 5 501 -20 -フク 👠️ 5 5 501 -20 -クツ 👡️ 5 5 501 -20 -サンダル 👡️ 5 5 501 -20 -フク 👡️ 5 5 501 -20 -クツ 🩰️ 5 5 501 -20 -シューズ 🩰️ 5 5 501 -20 -ダンス 🩰️ 5 5 501 -20 -トウシューズ 🩰️ 5 5 501 -20 -バレエ 🩰️ 5 5 501 -20 -クツ 👢️ 5 5 501 -20 -フク 👢️ 5 5 501 -20 -ブーツ 👢️ 5 5 501 -20 -ロングブーツ 👢️ 5 5 501 -20 -アフロ 🪮️ 5 5 501 -20 -アフロコーム 🪮️ 5 5 501 -20 -カミ 🪮️ 5 5 501 -20 -クシ 🪮️ 5 5 501 -20 -コーム 🪮️ 5 5 501 -20 -ブラシ 🪮️ 5 5 501 -20 -ヘアピック 🪮️ 5 5 501 -20 -オウカン 👑️ 5 5 501 -20 -カンムリ 👑️ 5 5 501 -20 -クラウン 👑️ 5 5 501 -20 -オンナノボウシ 👒️ 5 5 501 -20 -フジンボウシ 👒️ 5 5 501 -20 -ボウシ 👒️ 5 5 501 -20 -ムギワラ 👒️ 5 5 501 -20 -ムギワラボウシ 👒️ 5 5 501 -20 -シルクハット 🎩️ 5 5 501 -20 -ボウシ 🎩️ 5 5 501 -20 -カクボウ 🎓️ 5 5 501 -20 -ソツギョウ 🎓️ 5 5 501 -20 -ソツギョウシキ 🎓️ 5 5 501 -20 -ボウシ 🎓️ 5 5 501 -20 -キャップ 🧢️ 5 5 501 -20 -ボウシ 🧢️ 5 5 501 -20 -ヤキュウボウ 🧢️ 5 5 501 -20 -グンタイ 🪖️ 5 5 501 -20 -グンヨウヘルメット 🪖️ 5 5 501 -20 -セントウ 🪖️ 5 5 501 -20 -ヘイシ 🪖️ 5 5 501 -20 -ヘルメット 🪖️ 5 5 501 -20 -ミリタリー 🪖️ 5 5 501 -20 -キュウキュウ ⛑️️ 5 5 501 -20 -シロジュウジ ⛑️️ 5 5 501 -20 -シロジュウジヘルメット ⛑️️ 5 5 501 -20 -ハクジュウジ ⛑️️ 5 5 501 -20 -ハクジュウジヘルメット ⛑️️ 5 5 501 -20 -ヘルメット ⛑️️ 5 5 501 -20 -イノル 📿️ 5 5 501 -20 -ジュズ 📿️ 5 5 501 -20 -ネックレス 📿️ 5 5 501 -20 -ネンジュ 📿️ 5 5 501 -20 -ネンズ 📿️ 5 5 501 -20 -ロザリオ 📿️ 5 5 501 -20 -クチベニ 💄️ 5 5 501 -20 -ケショウ 💄️ 5 5 501 -20 -リップ 💄️ 5 5 501 -20 -リップスティック 💄️ 5 5 501 -20 -ジュエリー 💍️ 5 5 501 -20 -ダイア 💍️ 5 5 501 -20 -ダイヤ 💍️ 5 5 501 -20 -ユビワ 💍️ 5 5 501 -20 -リング 💍️ 5 5 501 -20 -ジュエリー 💎️ 5 5 501 -20 -ダイア 💎️ 5 5 501 -20 -ダイヤ 💎️ 5 5 501 -20 -ホウセキ 💎️ 5 5 501 -20 -オトナシ 🔇️ 5 5 501 -20 -ショウオン 🔇️ 5 5 501 -20 -スピーカー 🔇️ 5 5 501 -20 -スピーカーショウオン 🔇️ 5 5 501 -20 -ミュート 🔇️ 5 5 501 -20 -オンリョウ 🔈️ 5 5 501 -20 -スピーカー 🔈️ 5 5 501 -20 -ボリューム 🔈️ 5 5 501 -20 -オンリョウ 🔉️ 5 5 501 -20 -オンリョウショウ 🔉️ 5 5 501 -20 -スピーカー 🔉️ 5 5 501 -20 -スピーカーオンリョウショウ 🔉️ 5 5 501 -20 -ボリューム 🔉️ 5 5 501 -20 -オンリョウ 🔊️ 5 5 501 -20 -オンリョウダイ 🔊️ 5 5 501 -20 -スピーカー 🔊️ 5 5 501 -20 -スピーカーオンリョウダイ 🔊️ 5 5 501 -20 -ダイオンリョウ 🔊️ 5 5 501 -20 -ボリューム 🔊️ 5 5 501 -20 -カクセイキ 📢️ 5 5 501 -20 -スピーカー 📢️ 5 5 501 -20 -メガホン 📢️ 5 5 501 -20 -カクセイキ 📣️ 5 5 501 -20 -スピーカー 📣️ 5 5 501 -20 -メガホン 📣️ 5 5 501 -20 -ユウビン 📯️ 5 5 501 -20 -ユウビンラッパ 📯️ 5 5 501 -20 -ラッパ 📯️ 5 5 501 -20 -カネ 🔔️ 5 5 501 -20 -スズ 🔔️ 5 5 501 -20 -チャペル 🔔️ 5 5 501 -20 -ベル 🔔️ 5 5 501 -20 -オトナシ 🔕️ 5 5 501 -20 -カネ 🔕️ 5 5 501 -20 -ショウオン 🔕️ 5 5 501 -20 -スズ 🔕️ 5 5 501 -20 -ベルショウオン 🔕️ 5 5 501 -20 -ミュート 🔕️ 5 5 501 -20 -オンガク 🎼️ 5 5 501 -20 -ガクフ 🎼️ 5 5 501 -20 -ゴセン 🎼️ 5 5 501 -20 -ゴセンフ 🎼️ 5 5 501 -20 -スコア 🎼️ 5 5 501 -20 -トオンキゴウ 🎼️ 5 5 501 -20 -オンガク 🎵️ 5 5 501 -20 -オンプ 🎵️ 5 5 501 -20 -ハチブオンプ 🎵️ 5 5 501 -20 -レンプ 🎵️ 5 5 501 -20 -オンガク 🎶️ 5 5 501 -20 -オンプ 🎶️ 5 5 501 -20 -ハチブオンプ 🎶️ 5 5 501 -20 -フクスウノオンプ 🎶️ 5 5 501 -20 -オンガク 🎙️️ 5 5 501 -20 -スタジオマイク 🎙️️ 5 5 501 -20 -マイク 🎙️️ 5 5 501 -20 -オンガク 🎚️️ 5 5 501 -20 -スライダー 🎚️️ 5 5 501 -20 -レベル 🎚️️ 5 5 501 -20 -レベルスライダー 🎚️️ 5 5 501 -20 -オンガク 🎛️️ 5 5 501 -20 -コントロール 🎛️️ 5 5 501 -20 -コントロールツマミ 🎛️️ 5 5 501 -20 -ツマミ 🎛️️ 5 5 501 -20 -ノブ 🎛️️ 5 5 501 -20 -ウタ 🎤️ 5 5 501 -20 -オンガク 🎤️ 5 5 501 -20 -カラオケ 🎤️ 5 5 501 -20 -マイク 🎤️ 5 5 501 -20 -イヤフォン 🎧️ 5 5 501 -20 -イヤホン 🎧️ 5 5 501 -20 -オンガク 🎧️ 5 5 501 -20 -ヘッドフォン 🎧️ 5 5 501 -20 -ヘッドホン 🎧️ 5 5 501 -20 -オンガク 📻️ 5 5 501 -20 -ジュシンキ 📻️ 5 5 501 -20 -ホウソウ 📻️ 5 5 501 -20 -ラジオ 📻️ 5 5 501 -20 -オンガク 🎷️ 5 5 501 -20 -ガッキ 🎷️ 5 5 501 -20 -サキソフォン 🎷️ 5 5 501 -20 -サクソフォン 🎷️ 5 5 501 -20 -サックス 🎷️ 5 5 501 -20 -アコーディオン 🪗️ 5 5 501 -20 -オンガク 🪗️ 5 5 501 -20 -ガッキ 🪗️ 5 5 501 -20 -ジャバラ 🪗️ 5 5 501 -20 -オンガク 🎸️ 5 5 501 -20 -ガッキ 🎸️ 5 5 501 -20 -ギター 🎸️ 5 5 501 -20 -オンガク 🎹️ 5 5 501 -20 -ガッキ 🎹️ 5 5 501 -20 -キーボード 🎹️ 5 5 501 -20 -ケンバン 🎹️ 5 5 501 -20 -ピアノ 🎹️ 5 5 501 -20 -オンガク 🎺️ 5 5 501 -20 -ガッキ 🎺️ 5 5 501 -20 -トランペット 🎺️ 5 5 501 -20 -ラッパ 🎺️ 5 5 501 -20 -オンガク 🎻️ 5 5 501 -20 -ガッキ 🎻️ 5 5 501 -20 -バイオリン 🎻️ 5 5 501 -20 -ヴィオラ 🎻️ 5 5 501 -20 -オンガク 🪕️ 5 5 501 -20 -ガッキ 🪕️ 5 5 501 -20 -バンジョー 🪕️ 5 5 501 -20 -オンガク 🥁️ 5 5 501 -20 -ガッキ 🥁️ 5 5 501 -20 -タイコ 🥁️ 5 5 501 -20 -ドラム 🥁️ 5 5 501 -20 -オンガク 🪘️ 5 5 501 -20 -ガッキ 🪘️ 5 5 501 -20 -コンガ 🪘️ 5 5 501 -20 -タイコ 🪘️ 5 5 501 -20 -ビート 🪘️ 5 5 501 -20 -リズム 🪘️ 5 5 501 -20 -オンガク 🪇️ 5 5 501 -20 -ガッキ 🪇️ 5 5 501 -20 -シェイカー 🪇️ 5 5 501 -20 -マラカス 🪇️ 5 5 501 -20 -リズム 🪇️ 5 5 501 -20 -オンガク 🪈️ 5 5 501 -20 -ガッキ 🪈️ 5 5 501 -20 -スイソウガク 🪈️ 5 5 501 -20 -フエ 🪈️ 5 5 501 -20 -フルート 🪈️ 5 5 501 -20 -リコーダー 🪈️ 5 5 501 -20 -ケイタイ 📱️ 5 5 501 -20 -ケイタイデンワ 📱️ 5 5 501 -20 -スマホ 📱️ 5 5 501 -20 -スマートフォン 📱️ 5 5 501 -20 -ケイタイ 📲️ 5 5 501 -20 -ケイタイジュシン 📲️ 5 5 501 -20 -ケイタイデンワ 📲️ 5 5 501 -20 -ジュシン 📲️ 5 5 501 -20 -スマホ 📲️ 5 5 501 -20 -スマートフォン 📲️ 5 5 501 -20 -チャクシンチュウ 📲️ 5 5 501 -20 -デンワハッシン 📲️ 5 5 501 -20 -オヤキ ☎️️ 5 5 501 -20 -クロデンワ ☎️️ 5 5 501 -20 -コテイデンワ ☎️️ 5 5 501 -20 -デンワ ☎️️ 5 5 501 -20 -プッシュホン ☎️️ 5 5 501 -20 -ボタンシキデンワ ☎️️ 5 5 501 -20 -コキ 📞️ 5 5 501 -20 -ジュワキ 📞️ 5 5 501 -20 -デンワ 📞️ 5 5 501 -20 -ページャー 📟️ 5 5 501 -20 -ポケットベル 📟️ 5 5 501 -20 -ポケベル 📟️ 5 5 501 -20 -fax 📠️ 5 5 501 -20 -デンワ 📠️ 5 5 501 -20 -ファックス 📠️ 5 5 501 -20 -フクゴウキ 📠️ 5 5 501 -20 -カンデンチ 🔋️ 5 5 501 -20 -デンチ 🔋️ 5 5 501 -20 -バッテリー 🔋️ 5 5 501 -20 -ジュウデンブソク 🪫️ 5 5 501 -20 -ジュウデンヤバイ 🪫️ 5 5 501 -20 -デンチザンリョウテイカ 🪫️ 5 5 501 -20 -バッテリー 🪫️ 5 5 501 -20 -バッテリーザンリョウテイカ 🪫️ 5 5 501 -20 -バッテリーブソク 🪫️ 5 5 501 -20 -コンセント 🔌️ 5 5 501 -20 -デンゲン 🔌️ 5 5 501 -20 -プラグ 🔌️ 5 5 501 -20 -pc 💻️ 5 5 501 -20 -コンピュータ 💻️ 5 5 501 -20 -コンピューター 💻️ 5 5 501 -20 -ノートパソコン 💻️ 5 5 501 -20 -パソコン 💻️ 5 5 501 -20 -ラップトップ 💻️ 5 5 501 -20 -pc 🖥️️ 5 5 501 -20 -コンピューター 🖥️️ 5 5 501 -20 -デスクトップ 🖥️️ 5 5 501 -20 -デスクトップパソコン 🖥️️ 5 5 501 -20 -パソコン 🖥️️ 5 5 501 -20 -ピーシー 🖥️️ 5 5 501 -20 -インサツキ 🖨️️ 5 5 501 -20 -コピーキ 🖨️️ 5 5 501 -20 -フクゴウキ 🖨️️ 5 5 501 -20 -プリンタ 🖨️️ 5 5 501 -20 -プリンター 🖨️️ 5 5 501 -20 -pc ⌨️️ 5 5 501 -20 -キーボード ⌨️️ 5 5 501 -20 -コンピューター ⌨️️ 5 5 501 -20 -パソコン ⌨️️ 5 5 501 -20 -ピーシー ⌨️️ 5 5 501 -20 -pc 🖱️️ 5 5 501 -20 -コンピューター 🖱️️ 5 5 501 -20 -パソコン 🖱️️ 5 5 501 -20 -ピーシー 🖱️️ 5 5 501 -20 -マウス 🖱️️ 5 5 501 -20 -pc 🖲️️ 5 5 501 -20 -コンピューター 🖲️️ 5 5 501 -20 -トラックボール 🖲️️ 5 5 501 -20 -パソコン 🖲️️ 5 5 501 -20 -ピーシー 🖲️️ 5 5 501 -20 -md 💽️ 5 5 501 -20 -mo 💽️ 5 5 501 -20 -エムオー 💽️ 5 5 501 -20 -エムディー 💽️ 5 5 501 -20 -コンピューター 💽️ 5 5 501 -20 -ミニディスク 💽️ 5 5 501 -20 -fd 💾️ 5 5 501 -20 -エフディー 💾️ 5 5 501 -20 -コンピューター 💾️ 5 5 501 -20 -ディスク 💾️ 5 5 501 -20 -フロッピー 💾️ 5 5 501 -20 -フロッピーディスク 💾️ 5 5 501 -20 -cd 💿️ 5 5 501 -20 -dvd 💿️ 5 5 501 -20 -シーディー 💿️ 5 5 501 -20 -ディスク 💿️ 5 5 501 -20 -ブルレイ 💿️ 5 5 501 -20 -ブルーレイ 💿️ 5 5 501 -20 -cd 📀️ 5 5 501 -20 -dvd 📀️ 5 5 501 -20 -シーディー 📀️ 5 5 501 -20 -ディスク 📀️ 5 5 501 -20 -ブルレイ 📀️ 5 5 501 -20 -ブルーレイ 📀️ 5 5 501 -20 -アバカス 🧮️ 5 5 501 -20 -ソロバン 🧮️ 5 5 501 -20 -エイガ 🎥️ 5 5 501 -20 -エイガカメラ 🎥️ 5 5 501 -20 -カメラ 🎥️ 5 5 501 -20 -ムービー 🎥️ 5 5 501 -20 -エイガ 🎞️️ 5 5 501 -20 -エイガフィルム 🎞️️ 5 5 501 -20 -フィルム 🎞️️ 5 5 501 -20 -フレーム 🎞️️ 5 5 501 -20 -ムービー 🎞️️ 5 5 501 -20 -エイガ 📽️️ 5 5 501 -20 -エイシャキ 📽️️ 5 5 501 -20 -プロジェクター 📽️️ 5 5 501 -20 -ムービー 📽️️ 5 5 501 -20 -エイガ 🎬️ 5 5 501 -20 -カチンコ 🎬️ 5 5 501 -20 -テレビ 📺️ 5 5 501 -20 -ビデオ 📺️ 5 5 501 -20 -カメラ 📷️ 5 5 501 -20 -シャシン 📷️ 5 5 501 -20 -カメラ 📸️ 5 5 501 -20 -カメラフラッシュ 📸️ 5 5 501 -20 -シャシン 📸️ 5 5 501 -20 -フラッシュ 📸️ 5 5 501 -20 -フラッシュヲタイテイルカメラ 📸️ 5 5 501 -20 -カメラ 📹️ 5 5 501 -20 -ドウガ 📹️ 5 5 501 -20 -ビデオ 📹️ 5 5 501 -20 -ビデオカメラ 📹️ 5 5 501 -20 -ムービー 📹️ 5 5 501 -20 -vhs 📼️ 5 5 501 -20 -ドウガ 📼️ 5 5 501 -20 -ビデオ 📼️ 5 5 501 -20 -ビデオカセット 📼️ 5 5 501 -20 -ビデオテープ 📼️ 5 5 501 -20 -ブイエッチエス 📼️ 5 5 501 -20 -ケンサク 🔍️ 5 5 501 -20 -ムシメガネ 🔍️ 5 5 501 -20 -ムシメガネヒダリ 🔍️ 5 5 501 -20 -ルーペ 🔍️ 5 5 501 -20 -ケンサク 🔎️ 5 5 501 -20 -ショウサイ 🔎️ 5 5 501 -20 -ムシメガネ 🔎️ 5 5 501 -20 -ムシメガネミギ 🔎️ 5 5 501 -20 -ルーペ 🔎️ 5 5 501 -20 -アカリ 🕯️️ 5 5 501 -20 -キャンドル 🕯️️ 5 5 501 -20 -ロウソク 🕯️️ 5 5 501 -20 -アカリ 💡️ 5 5 501 -20 -デンキュウ 💡️ 5 5 501 -20 -ヒラメキ 💡️ 5 5 501 -20 -ピコーン 💡️ 5 5 501 -20 -アカリ 🔦️ 5 5 501 -20 -カイチュウデントウ 🔦️ 5 5 501 -20 -デントウ 🔦️ 5 5 501 -20 -ライト 🔦️ 5 5 501 -20 -アカチョウチン 🏮️ 5 5 501 -20 -イザカヤ 🏮️ 5 5 501 -20 -チョウチン 🏮️ 5 5 501 -20 -ノミヤ 🏮️ 5 5 501 -20 -アカリ 🪔️ 5 5 501 -20 -オイル 🪔️ 5 5 501 -20 -ディヤランプ 🪔️ 5 5 501 -20 -ランプ 🪔️ 5 5 501 -20 -ノート 📔️ 5 5 501 -20 -ヒョウシツキノート 📔️ 5 5 501 -20 -ブング 📔️ 5 5 501 -20 -ブンボウグ 📔️ 5 5 501 -20 -ショセキ 📕️ 5 5 501 -20 -トジタホン 📕️ 5 5 501 -20 -ブンボウグ 📕️ 5 5 501 -20 -ホン 📕️ 5 5 501 -20 -ショセキ 📖️ 5 5 501 -20 -ヒライタホン 📖️ 5 5 501 -20 -ブンボウグ 📖️ 5 5 501 -20 -ホン 📖️ 5 5 501 -20 -ショセキ 📗️ 5 5 501 -20 -ブンボウグ 📗️ 5 5 501 -20 -ホン 📗️ 5 5 501 -20 -ミドリノホン 📗️ 5 5 501 -20 -アオイホン 📘️ 5 5 501 -20 -アオノホン 📘️ 5 5 501 -20 -ショセキ 📘️ 5 5 501 -20 -ブンボウグ 📘️ 5 5 501 -20 -ホン 📘️ 5 5 501 -20 -オレンジノホン 📙️ 5 5 501 -20 -ショセキ 📙️ 5 5 501 -20 -ブンボウグ 📙️ 5 5 501 -20 -ホン 📙️ 5 5 501 -20 -ショセキ 📚️ 5 5 501 -20 -ブンボウグ 📚️ 5 5 501 -20 -ホン 📚️ 5 5 501 -20 -ホンノヤマ 📚️ 5 5 501 -20 -ノート 📓️ 5 5 501 -20 -ブング 📓️ 5 5 501 -20 -ブンボウグ 📓️ 5 5 501 -20 -ダイチョウ 📒️ 5 5 501 -20 -ノート 📒️ 5 5 501 -20 -ブング 📒️ 5 5 501 -20 -ブンボウグ 📒️ 5 5 501 -20 -リングノート 📒️ 5 5 501 -20 -カール 📃️ 5 5 501 -20 -ショルイ 📃️ 5 5 501 -20 -ブンショ 📃️ 5 5 501 -20 -マキページ 📃️ 5 5 501 -20 -ショルイ 📜️ 5 5 501 -20 -スクロール 📜️ 5 5 501 -20 -ブンショ 📜️ 5 5 501 -20 -ブンボウグ 📜️ 5 5 501 -20 -マキモノ 📜️ 5 5 501 -20 -ショルイ 📄️ 5 5 501 -20 -ブンショ 📄️ 5 5 501 -20 -ページ 📄️ 5 5 501 -20 -シンブン 📰️ 5 5 501 -20 -シンブンシ 📰️ 5 5 501 -20 -ニュース 📰️ 5 5 501 -20 -シンブン 🗞️️ 5 5 501 -20 -シンブンシ 🗞️️ 5 5 501 -20 -ニュース 🗞️️ 5 5 501 -20 -マルメタシンブン 🗞️️ 5 5 501 -20 -フセン 📑️ 5 5 501 -20 -ブング 📑️ 5 5 501 -20 -ブンボウグ 📑️ 5 5 501 -20 -ページニフセン 📑️ 5 5 501 -20 -ページマーク 📑️ 5 5 501 -20 -マーク 📑️ 5 5 501 -20 -シオリ 🔖️ 5 5 501 -20 -タグ 🔖️ 5 5 501 -20 -フセン 🔖️ 5 5 501 -20 -ブックマーク 🔖️ 5 5 501 -20 -タグ 🏷️️ 5 5 501 -20 -ニフダ 🏷️️ 5 5 501 -20 -ラベル 🏷️️ 5 5 501 -20 -オカネ 💰️ 5 5 501 -20 -カネブクロ 💰️ 5 5 501 -20 -キンブクロ 💰️ 5 5 501 -20 -ショウキン 💰️ 5 5 501 -20 -ドル 💰️ 5 5 501 -20 -ドルブクロ 💰️ 5 5 501 -20 -オカネ 🪙️ 5 5 501 -20 -キンカ 🪙️ 5 5 501 -20 -ギンカ 🪙️ 5 5 501 -20 -コイン 🪙️ 5 5 501 -20 -コウカ 🪙️ 5 5 501 -20 -コゼニ 🪙️ 5 5 501 -20 -エン 💴️ 5 5 501 -20 -エンサツ 💴️ 5 5 501 -20 -オカネ 💴️ 5 5 501 -20 -オサツ 💴️ 5 5 501 -20 -コギッテ 💴️ 5 5 501 -20 -サツタバ 💴️ 5 5 501 -20 -ツウカ 💴️ 5 5 501 -20 -ユウリョウ 💴️ 5 5 501 -20 -オカネ 💵️ 5 5 501 -20 -オサツ 💵️ 5 5 501 -20 -サツタバ 💵️ 5 5 501 -20 -ツウカ 💵️ 5 5 501 -20 -ドル 💵️ 5 5 501 -20 -ドルサツ 💵️ 5 5 501 -20 -オカネ 💶️ 5 5 501 -20 -オサツ 💶️ 5 5 501 -20 -サツタバ 💶️ 5 5 501 -20 -ツウカ 💶️ 5 5 501 -20 -ユーロ 💶️ 5 5 501 -20 -ユーロサツ 💶️ 5 5 501 -20 -オカネ 💷️ 5 5 501 -20 -オサツ 💷️ 5 5 501 -20 -サツタバ 💷️ 5 5 501 -20 -ツウカ 💷️ 5 5 501 -20 -ポンド 💷️ 5 5 501 -20 -ポンドサツ 💷️ 5 5 501 -20 -オカネ 💸️ 5 5 501 -20 -オサツ 💸️ 5 5 501 -20 -サツタバ 💸️ 5 5 501 -20 -ドル 💸️ 5 5 501 -20 -ハネガハエタオカネ 💸️ 5 5 501 -20 -オカネ 💳️ 5 5 501 -20 -カード 💳️ 5 5 501 -20 -キャッシュカード 💳️ 5 5 501 -20 -ギンコウ 💳️ 5 5 501 -20 -クレジットカード 💳️ 5 5 501 -20 -カイケイ 🧾️ 5 5 501 -20 -ボキ 🧾️ 5 5 501 -20 -リョウシュウショ 🧾️ 5 5 501 -20 -レシート 🧾️ 5 5 501 -20 -イチバ 💹️ 5 5 501 -20 -カブ 💹️ 5 5 501 -20 -カブカ 💹️ 5 5 501 -20 -カワセ 💹️ 5 5 501 -20 -グラフ 💹️ 5 5 501 -20 -シジョウ 💹️ 5 5 501 -20 -チャート 💹️ 5 5 501 -20 -イーメール ✉️️ 5 5 501 -20 -テガミ ✉️️ 5 5 501 -20 -デンシメール ✉️️ 5 5 501 -20 -フウトウ ✉️️ 5 5 501 -20 -メール ✉️️ 5 5 501 -20 -ユウビン ✉️️ 5 5 501 -20 -eメール 📧️ 5 5 501 -20 -イーメール 📧️ 5 5 501 -20 -テガミ 📧️ 5 5 501 -20 -デンシメール 📧️ 5 5 501 -20 -フウトウ 📧️ 5 5 501 -20 -メール 📧️ 5 5 501 -20 -ユウビン 📧️ 5 5 501 -20 -eメール 📨️ 5 5 501 -20 -イーメール 📨️ 5 5 501 -20 -ジュシン 📨️ 5 5 501 -20 -ジュシンスル 📨️ 5 5 501 -20 -ジュシンチュウ 📨️ 5 5 501 -20 -デンシメール 📨️ 5 5 501 -20 -メール 📨️ 5 5 501 -20 -メールジュシンチュウ 📨️ 5 5 501 -20 -eメール 📩️ 5 5 501 -20 -イーメール 📩️ 5 5 501 -20 -ソウシン 📩️ 5 5 501 -20 -ソウシンスル 📩️ 5 5 501 -20 -デンシメール 📩️ 5 5 501 -20 -メール 📩️ 5 5 501 -20 -メールジュシン 📩️ 5 5 501 -20 -メールスル 📩️ 5 5 501 -20 -イーメール 📤️ 5 5 501 -20 -ソウシン 📤️ 5 5 501 -20 -ソウシントレイ 📤️ 5 5 501 -20 -デンシメール 📤️ 5 5 501 -20 -トレイ 📤️ 5 5 501 -20 -メール 📤️ 5 5 501 -20 -イーメール 📥️ 5 5 501 -20 -ジュシン 📥️ 5 5 501 -20 -ジュシントレイ 📥️ 5 5 501 -20 -デンシメール 📥️ 5 5 501 -20 -トレイ 📥️ 5 5 501 -20 -メール 📥️ 5 5 501 -20 -コヅツミ 📦️ 5 5 501 -20 -タクハイビン 📦️ 5 5 501 -20 -タッキュウビン 📦️ 5 5 501 -20 -ダンボール 📦️ 5 5 501 -20 -ニモツ 📦️ 5 5 501 -20 -パック 📦️ 5 5 501 -20 -パッケージ 📦️ 5 5 501 -20 -テガミアリ 📫️ 5 5 501 -20 -トジタ 📫️ 5 5 501 -20 -トジタユウビンウケ 📫️ 5 5 501 -20 -ハタツキポスト 📫️ 5 5 501 -20 -ポスト 📫️ 5 5 501 -20 -メール 📫️ 5 5 501 -20 -ユウビン 📫️ 5 5 501 -20 -ユウビンウケ 📫️ 5 5 501 -20 -ユウビンバコ 📫️ 5 5 501 -20 -テガミナシ 📪️ 5 5 501 -20 -トジタ 📪️ 5 5 501 -20 -トジタユウビンウケ 📪️ 5 5 501 -20 -ハタツキポスト 📪️ 5 5 501 -20 -ポスト 📪️ 5 5 501 -20 -メール 📪️ 5 5 501 -20 -ユウビン 📪️ 5 5 501 -20 -ユウビンウケ 📪️ 5 5 501 -20 -ユウビンバコ 📪️ 5 5 501 -20 -テガミアリ 📬️ 5 5 501 -20 -ヒライタ 📬️ 5 5 501 -20 -ヒライタユウビンウケ 📬️ 5 5 501 -20 -ポスト 📬️ 5 5 501 -20 -ユウビンウケ 📬️ 5 5 501 -20 -ユウビンバコ 📬️ 5 5 501 -20 -テガミナシ 📭️ 5 5 501 -20 -ヒライタ 📭️ 5 5 501 -20 -ヒライタユウビンウケ 📭️ 5 5 501 -20 -ポスト 📭️ 5 5 501 -20 -ユウビンウケ 📭️ 5 5 501 -20 -ユウビンバコ 📭️ 5 5 501 -20 -テガミ 📮️ 5 5 501 -20 -ポスト 📮️ 5 5 501 -20 -ユウビン 📮️ 5 5 501 -20 -ユウビンバコ 📮️ 5 5 501 -20 -ユウビンポスト 📮️ 5 5 501 -20 -センキョ 🗳️️ 5 5 501 -20 -トウヒョウバコ 🗳️️ 5 5 501 -20 -エンピツ ✏️️ 5 5 501 -20 -ブング ✏️️ 5 5 501 -20 -ブンボウグ ✏️️ 5 5 501 -20 -エディット ✒️️ 5 5 501 -20 -ブング ✒️️ 5 5 501 -20 -ブンボウグ ✒️️ 5 5 501 -20 -ペン ✒️️ 5 5 501 -20 -ペンサキ ✒️️ 5 5 501 -20 -マンネンヒツ ✒️️ 5 5 501 -20 -ブング 🖋️️ 5 5 501 -20 -ブンボウグ 🖋️️ 5 5 501 -20 -マンネンヒツ 🖋️️ 5 5 501 -20 -ブング 🖊️️ 5 5 501 -20 -ブンボウグ 🖊️️ 5 5 501 -20 -ペン 🖊️️ 5 5 501 -20 -ボールペン 🖊️️ 5 5 501 -20 -エノグ 🖌️️ 5 5 501 -20 -エフデ 🖌️️ 5 5 501 -20 -ブング 🖌️️ 5 5 501 -20 -ブンボウグ 🖌️️ 5 5 501 -20 -クレヨン 🖍️️ 5 5 501 -20 -ブング 🖍️️ 5 5 501 -20 -ブンボウグ 🖍️️ 5 5 501 -20 -エンピツトメモ 📝️ 5 5 501 -20 -カミトエンピツ 📝️ 5 5 501 -20 -ブング 📝️ 5 5 501 -20 -ブンボウグ 📝️ 5 5 501 -20 -メモ 📝️ 5 5 501 -20 -カバン 💼️ 5 5 501 -20 -ブリーフケース 💼️ 5 5 501 -20 -ファイル 📁️ 5 5 501 -20 -フォルダー 📁️ 5 5 501 -20 -ブング 📁️ 5 5 501 -20 -ブンボウグ 📁️ 5 5 501 -20 -ヒライタフォルダー 📂️ 5 5 501 -20 -ファイル 📂️ 5 5 501 -20 -フォルダー 📂️ 5 5 501 -20 -ブング 📂️ 5 5 501 -20 -ブンボウグ 📂️ 5 5 501 -20 -インデックス 🗂️️ 5 5 501 -20 -カードフォルダー 🗂️️ 5 5 501 -20 -フォルダー 🗂️️ 5 5 501 -20 -ブング 🗂️️ 5 5 501 -20 -ブンボウグ 🗂️️ 5 5 501 -20 -カレンダー 📅️ 5 5 501 -20 -スケジュール 📅️ 5 5 501 -20 -ヒヅケ 📅️ 5 5 501 -20 -ヨテイ 📅️ 5 5 501 -20 -カレンダー 📆️ 5 5 501 -20 -スケジュール 📆️ 5 5 501 -20 -ヒヅケ 📆️ 5 5 501 -20 -ヒメクリ 📆️ 5 5 501 -20 -ヒメクリカレンダー 📆️ 5 5 501 -20 -ヨテイ 📆️ 5 5 501 -20 -ノート 🗒️️ 5 5 501 -20 -ブング 🗒️️ 5 5 501 -20 -ブンボウグ 🗒️️ 5 5 501 -20 -メモチョウ 🗒️️ 5 5 501 -20 -リングメモ 🗒️️ 5 5 501 -20 -カレンダー 🗓️️ 5 5 501 -20 -スケジュール 🗓️️ 5 5 501 -20 -ツキメクリカレンダー 🗓️️ 5 5 501 -20 -ヒヅケ 🗓️️ 5 5 501 -20 -ヨテイ 🗓️️ 5 5 501 -20 -カードインデックス 📇️ 5 5 501 -20 -ブング 📇️ 5 5 501 -20 -ブンボウグ 📇️ 5 5 501 -20 -メイシホルダー 📇️ 5 5 501 -20 -ローロデックス 📇️ 5 5 501 -20 -ウエムキ 📈️ 5 5 501 -20 -ウワムキ 📈️ 5 5 501 -20 -オレセングラフ 📈️ 5 5 501 -20 -グラフ 📈️ 5 5 501 -20 -グラフウエムキ 📈️ 5 5 501 -20 -グラフウワムキ 📈️ 5 5 501 -20 -ジョウショウ 📈️ 5 5 501 -20 -オレセングラフ 📉️ 5 5 501 -20 -カコウ 📉️ 5 5 501 -20 -グラフ 📉️ 5 5 501 -20 -グラフシタムキ 📉️ 5 5 501 -20 -シタムキ 📉️ 5 5 501 -20 -グラフ 📊️ 5 5 501 -20 -チャート 📊️ 5 5 501 -20 -ボウグラフ 📊️ 5 5 501 -20 -クリップ 📋️ 5 5 501 -20 -クリップボード 📋️ 5 5 501 -20 -ブング 📋️ 5 5 501 -20 -ブンボウグ 📋️ 5 5 501 -20 -オシピン 📌️ 5 5 501 -20 -ガビョウ 📌️ 5 5 501 -20 -ピン 📌️ 5 5 501 -20 -ブング 📌️ 5 5 501 -20 -ブンボウグ 📌️ 5 5 501 -20 -プッシュピン 📌️ 5 5 501 -20 -オシピン 📍️ 5 5 501 -20 -ガビョウ 📍️ 5 5 501 -20 -ピン 📍️ 5 5 501 -20 -ブング 📍️ 5 5 501 -20 -ブンボウグ 📍️ 5 5 501 -20 -プッシュピン 📍️ 5 5 501 -20 -マルイオシピン 📍️ 5 5 501 -20 -カミクリップ 📎️ 5 5 501 -20 -クリップ 📎️ 5 5 501 -20 -ゼムクリップ 📎️ 5 5 501 -20 -ブング 📎️ 5 5 501 -20 -ブンボウグ 📎️ 5 5 501 -20 -ペーパークリップ 📎️ 5 5 501 -20 -カミクリップ 🖇️️ 5 5 501 -20 -ツナガッタクリップ 🖇️️ 5 5 501 -20 -ブング 🖇️️ 5 5 501 -20 -ブンボウグ 🖇️️ 5 5 501 -20 -ペーパークリップ 🖇️️ 5 5 501 -20 -ジョウギ 📏️ 5 5 501 -20 -ブング 📏️ 5 5 501 -20 -ブンボウグ 📏️ 5 5 501 -20 -モノサシ 📏️ 5 5 501 -20 -サンカクジョウギ 📐️ 5 5 501 -20 -ジョウギ 📐️ 5 5 501 -20 -ブング 📐️ 5 5 501 -20 -ブンボウグ 📐️ 5 5 501 -20 -カット ✂️️ 5 5 501 -20 -キル ✂️️ 5 5 501 -20 -ハサミ ✂️️ 5 5 501 -20 -ビヨウイン ✂️️ 5 5 501 -20 -ブング ✂️️ 5 5 501 -20 -ブンボウグ ✂️️ 5 5 501 -20 -カードファイルボックス 🗃️️ 5 5 501 -20 -ハコ 🗃️️ 5 5 501 -20 -ファイル 🗃️️ 5 5 501 -20 -ブング 🗃️️ 5 5 501 -20 -ブンボウグ 🗃️️ 5 5 501 -20 -ボックス 🗃️️ 5 5 501 -20 -キャビネット 🗄️️ 5 5 501 -20 -ヒキダシ 🗄️️ 5 5 501 -20 -ファイル 🗄️️ 5 5 501 -20 -ファイルキャビネット 🗄️️ 5 5 501 -20 -クズカゴ 🗑️️ 5 5 501 -20 -ゴミカゴ 🗑️️ 5 5 501 -20 -ゴミバコ 🗑️️ 5 5 501 -20 -カギ 🔒️ 5 5 501 -20 -ジョウ 🔒️ 5 5 501 -20 -セジョウ 🔒️ 5 5 501 -20 -トジタジョウ 🔒️ 5 5 501 -20 -ロック 🔒️ 5 5 501 -20 -ロックオン 🔒️ 5 5 501 -20 -カイジョウ 🔓️ 5 5 501 -20 -カギ 🔓️ 5 5 501 -20 -ジョウ 🔓️ 5 5 501 -20 -ヒライタジョウ 🔓️ 5 5 501 -20 -ロック 🔓️ 5 5 501 -20 -ロックオフ 🔓️ 5 5 501 -20 -カギ 🔏️ 5 5 501 -20 -トジタジョウトペン 🔏️ 5 5 501 -20 -プライバシー 🔏️ 5 5 501 -20 -ロック 🔏️ 5 5 501 -20 -アンゼン 🔐️ 5 5 501 -20 -カギ 🔐️ 5 5 501 -20 -キー 🔐️ 5 5 501 -20 -セキュリティ 🔐️ 5 5 501 -20 -トジタジョウトカギ 🔐️ 5 5 501 -20 -ロック 🔐️ 5 5 501 -20 -ロックカクニン 🔐️ 5 5 501 -20 -カギ 🔑️ 5 5 501 -20 -キー 🔑️ 5 5 501 -20 -パスワード 🔑️ 5 5 501 -20 -キー 🗝️️ 5 5 501 -20 -テガカリ 🗝️️ 5 5 501 -20 -パスワード 🗝️️ 5 5 501 -20 -フルイカギ 🗝️️ 5 5 501 -20 -カナヅチ 🔨️ 5 5 501 -20 -コウグ 🔨️ 5 5 501 -20 -トンカチ 🔨️ 5 5 501 -20 -ハンマー 🔨️ 5 5 501 -20 -オノ 🪓️ 5 5 501 -20 -キ 🪓️ 5 5 501 -20 -コウグ 🪓️ 5 5 501 -20 -ハチェット 🪓️ 5 5 501 -20 -マキワリ 🪓️ 5 5 501 -20 -コウグ ⛏️️ 5 5 501 -20 -サイクツ ⛏️️ 5 5 501 -20 -ツルハシ ⛏️️ 5 5 501 -20 -カナヅチ ⚒️️ 5 5 501 -20 -コウグ ⚒️️ 5 5 501 -20 -ツルハシ ⚒️️ 5 5 501 -20 -トンカチ ⚒️️ 5 5 501 -20 -ハンマー ⚒️️ 5 5 501 -20 -ハンマートツルハシ ⚒️️ 5 5 501 -20 -カナヅチ 🛠️️ 5 5 501 -20 -コウグ 🛠️️ 5 5 501 -20 -トンカチ 🛠️️ 5 5 501 -20 -ハンマートレンチ 🛠️️ 5 5 501 -20 -レンチ 🛠️️ 5 5 501 -20 -タントウ 🗡️️ 5 5 501 -20 -ダガー 🗡️️ 5 5 501 -20 -ナイフ 🗡️️ 5 5 501 -20 -ブキ 🗡️️ 5 5 501 -20 -カタナ ⚔️️ 5 5 501 -20 -クロスシタケン ⚔️️ 5 5 501 -20 -ケン ⚔️️ 5 5 501 -20 -ツルギ ⚔️️ 5 5 501 -20 -ブキ ⚔️️ 5 5 501 -20 -バクダン 💣️ 5 5 501 -20 -オモチャ 🪃️ 5 5 501 -20 -オーストラリア 🪃️ 5 5 501 -20 -カエッテクル 🪃️ 5 5 501 -20 -ガング 🪃️ 5 5 501 -20 -ハネカエリ 🪃️ 5 5 501 -20 -ブキ 🪃️ 5 5 501 -20 -ブーメラン 🪃️ 5 5 501 -20 -イテ 🏹️ 5 5 501 -20 -シャシュ 🏹️ 5 5 501 -20 -セイザ 🏹️ 5 5 501 -20 -ブキ 🏹️ 5 5 501 -20 -ヤ 🏹️ 5 5 501 -20 -ユミヤ 🏹️ 5 5 501 -20 -シールド 🛡️️ 5 5 501 -20 -タテ 🛡️️ 5 5 501 -20 -ボウグ 🛡️️ 5 5 501 -20 -コウグ 🪚️ 5 5 501 -20 -ダイク 🪚️ 5 5 501 -20 -ノコ 🪚️ 5 5 501 -20 -ノコギリ 🪚️ 5 5 501 -20 -ハ 🪚️ 5 5 501 -20 -モッコウ 🪚️ 5 5 501 -20 -コウグ 🔧️ 5 5 501 -20 -スパナ 🔧️ 5 5 501 -20 -レンチ 🔧️ 5 5 501 -20 -コウグ 🪛️ 5 5 501 -20 -スクリュードライバー 🪛️ 5 5 501 -20 -ドライバー 🪛️ 5 5 501 -20 -ネジマワシ 🪛️ 5 5 501 -20 -コウグ 🔩️ 5 5 501 -20 -ナット 🔩️ 5 5 501 -20 -ボルト 🔩️ 5 5 501 -20 -ボルトトナット 🔩️ 5 5 501 -20 -ギア ⚙️️ 5 5 501 -20 -コウグ ⚙️️ 5 5 501 -20 -ハグルマ ⚙️️ 5 5 501 -20 -クランプ 🗜️️ 5 5 501 -20 -コウグ 🗜️️ 5 5 501 -20 -バイス 🗜️️ 5 5 501 -20 -マンリキ 🗜️️ 5 5 501 -20 -カガク ⚖️️ 5 5 501 -20 -ジッケン ⚖️️ 5 5 501 -20 -セイザ ⚖️️ 5 5 501 -20 -テンビン ⚖️️ 5 5 501 -20 -ハカリ ⚖️️ 5 5 501 -20 -アクセシビリティ 🦯️ 5 5 501 -20 -シカク 🦯️ 5 5 501 -20 -ショウガイ 🦯️ 5 5 501 -20 -シロツエ 🦯️ 5 5 501 -20 -ツエ 🦯️ 5 5 501 -20 -ハクジョウ 🦯️ 5 5 501 -20 -リンク 🔗️ 5 5 501 -20 -リンクシンボル 🔗️ 5 5 501 -20 -クサリ ⛓️️ 5 5 501 -20 -チェーン ⛓️️ 5 5 501 -20 -カケガネ 🪝️ 5 5 501 -20 -カケキン 🪝️ 5 5 501 -20 -トメガネ 🪝️ 5 5 501 -20 -ヒッカケ 🪝️ 5 5 501 -20 -フック 🪝️ 5 5 501 -20 -キカイコウ 🧰️ 5 5 501 -20 -コウグバコ 🧰️ 5 5 501 -20 -セイビシ 🧰️ 5 5 501 -20 -ツールボックス 🧰️ 5 5 501 -20 -メカニック 🧰️ 5 5 501 -20 -テイテツ 🧲️ 5 5 501 -20 -マグネット 🧲️ 5 5 501 -20 -ユージガタジシャク 🧲️ 5 5 501 -20 -コウショサギョウ 🪜️ 5 5 501 -20 -ステッパー 🪜️ 5 5 501 -20 -ノボル 🪜️ 5 5 501 -20 -ハシゴ 🪜️ 5 5 501 -20 -カガク ⚗️️ 5 5 501 -20 -ジッケン ⚗️️ 5 5 501 -20 -ジョウリュウキ ⚗️️ 5 5 501 -20 -カガク 🧪️ 5 5 501 -20 -シケンカン 🧪️ 5 5 501 -20 -ジッケン 🧪️ 5 5 501 -20 -ラボ 🧪️ 5 5 501 -20 -セイブツガク 🧫️ 5 5 501 -20 -バイヨウ 🧫️ 5 5 501 -20 -バクテリア 🧫️ 5 5 501 -20 -ペトリサラ 🧫️ 5 5 501 -20 -dna 🧬️ 5 5 501 -20 -イデンシ 🧬️ 5 5 501 -20 -シンカ 🧬️ 5 5 501 -20 -セイブツガク 🧬️ 5 5 501 -20 -ディーエヌエー 🧬️ 5 5 501 -20 -カガク 🔬️ 5 5 501 -20 -ケンキュウ 🔬️ 5 5 501 -20 -ケンビキョウ 🔬️ 5 5 501 -20 -サイエンス 🔬️ 5 5 501 -20 -カガク 🔭️ 5 5 501 -20 -カンソク 🔭️ 5 5 501 -20 -サイエンス 🔭️ 5 5 501 -20 -テンタイカンソク 🔭️ 5 5 501 -20 -ボウエンキョウ 🔭️ 5 5 501 -20 -アンテナ 📡️ 5 5 501 -20 -エイセイアンテナ 📡️ 5 5 501 -20 -デンパ 📡️ 5 5 501 -20 -パラボラ 📡️ 5 5 501 -20 -パラボラアンテナ 📡️ 5 5 501 -20 -イシャ 💉️ 5 5 501 -20 -クスリ 💉️ 5 5 501 -20 -チュウシャ 💉️ 5 5 501 -20 -チュウシャキ 💉️ 5 5 501 -20 -ビョウキ 💉️ 5 5 501 -20 -イシャ 🩸️ 5 5 501 -20 -ケガ 🩸️ 5 5 501 -20 -ケツエキ 🩸️ 5 5 501 -20 -ケンケツ 🩸️ 5 5 501 -20 -セイリ 🩸️ 5 5 501 -20 -イシャ 💊️ 5 5 501 -20 -カゼグスリ 💊️ 5 5 501 -20 -カプセル 💊️ 5 5 501 -20 -クスリ 💊️ 5 5 501 -20 -ビョウキ 💊️ 5 5 501 -20 -キズ 🩹️ 5 5 501 -20 -クスリ 🩹️ 5 5 501 -20 -ケガ 🩹️ 5 5 501 -20 -テアテ 🩹️ 5 5 501 -20 -バンソウコウ 🩹️ 5 5 501 -20 -ケガ 🩼️ 5 5 501 -20 -ショウガイ 🩼️ 5 5 501 -20 -ステッキ 🩼️ 5 5 501 -20 -ツエ 🩼️ 5 5 501 -20 -ホコウホジョ 🩼️ 5 5 501 -20 -マツバヅエ 🩼️ 5 5 501 -20 -イシャ 🩺️ 5 5 501 -20 -シンゾウ 🩺️ 5 5 501 -20 -チョウシンキ 🩺️ 5 5 501 -20 -ビョウキ 🩺️ 5 5 501 -20 -イシャ 🩻️ 5 5 501 -20 -エックスセン 🩻️ 5 5 501 -20 -コッカク 🩻️ 5 5 501 -20 -ホネ 🩻️ 5 5 501 -20 -レントゲン 🩻️ 5 5 501 -20 -ト 🚪️ 5 5 501 -20 -トビラ 🚪️ 5 5 501 -20 -ドア 🚪️ 5 5 501 -20 -アクセシビリティ 🛗️ 5 5 501 -20 -エレベーター 🛗️ 5 5 501 -20 -ショウコウキ 🛗️ 5 5 501 -20 -バリアフリー 🛗️ 5 5 501 -20 -リフト 🛗️ 5 5 501 -20 -カガミ 🪞️ 5 5 501 -20 -スガタミ 🪞️ 5 5 501 -20 -ハンシャ 🪞️ 5 5 501 -20 -ミダシナミ 🪞️ 5 5 501 -20 -ミラー 🪞️ 5 5 501 -20 -アケル 🪟️ 5 5 501 -20 -カンキ 🪟️ 5 5 501 -20 -ナガメ 🪟️ 5 5 501 -20 -フレーム 🪟️ 5 5 501 -20 -マド 🪟️ 5 5 501 -20 -スイミン 🛏️️ 5 5 501 -20 -ネル 🛏️️ 5 5 501 -20 -ベッド 🛏️️ 5 5 501 -20 -ホテル 🛏️️ 5 5 501 -20 -ソファ 🛋️️ 5 5 501 -20 -ソファトランプ 🛋️️ 5 5 501 -20 -ホテル 🛋️️ 5 5 501 -20 -ランプ 🛋️️ 5 5 501 -20 -イス 🪑️ 5 5 501 -20 -カグ 🪑️ 5 5 501 -20 -コシカケ 🪑️ 5 5 501 -20 -シート 🪑️ 5 5 501 -20 -チェア 🪑️ 5 5 501 -20 -オテアライ 🚽️ 5 5 501 -20 -トイレ 🚽️ 5 5 501 -20 -ベンキ 🚽️ 5 5 501 -20 -ベンザ 🚽️ 5 5 501 -20 -キュウインカップ 🪠️ 5 5 501 -20 -スッポン 🪠️ 5 5 501 -20 -ツウスイカップ 🪠️ 5 5 501 -20 -トイレ 🪠️ 5 5 501 -20 -プランジャー 🪠️ 5 5 501 -20 -ラバーカップ 🪠️ 5 5 501 -20 -シャワー 🚿️ 5 5 501 -20 -フロ 🚿️ 5 5 501 -20 -バスタブ 🛁️ 5 5 501 -20 -フロ 🛁️ 5 5 501 -20 -ヨクソウ 🛁️ 5 5 501 -20 -オビキヨセル 🪤️ 5 5 501 -20 -シカケ 🪤️ 5 5 501 -20 -ネズミトリ 🪤️ 5 5 501 -20 -バネ 🪤️ 5 5 501 -20 -マウストラップ 🪤️ 5 5 501 -20 -ワナ 🪤️ 5 5 501 -20 -カミソリ 🪒️ 5 5 501 -20 -ハ 🪒️ 5 5 501 -20 -ヒゲソリ 🪒️ 5 5 501 -20 -レーザー 🪒️ 5 5 501 -20 -ケショウスイ 🧴️ 5 5 501 -20 -シャンプー 🧴️ 5 5 501 -20 -ヒヤケドメ 🧴️ 5 5 501 -20 -ローション 🧴️ 5 5 501 -20 -アンゼンピン 🧷️ 5 5 501 -20 -トメピン 🧷️ 5 5 501 -20 -ソウジ 🧹️ 5 5 501 -20 -ハク 🧹️ 5 5 501 -20 -ホウキ 🧹️ 5 5 501 -20 -マジョ 🧹️ 5 5 501 -20 -カゴ 🧺️ 5 5 501 -20 -シュウカク 🧺️ 5 5 501 -20 -センタク 🧺️ 5 5 501 -20 -ピクニック 🧺️ 5 5 501 -20 -キッチンペーパー 🧻️ 5 5 501 -20 -トイレットペーパー 🧻️ 5 5 501 -20 -ペーパータオル 🧻️ 5 5 501 -20 -オケ 🪣️ 5 5 501 -20 -バケツ 🪣️ 5 5 501 -20 -ポリバケツ 🪣️ 5 5 501 -20 -ヨウキ 🪣️ 5 5 501 -20 -セッケン 🧼️ 5 5 501 -20 -ソープ 🧼️ 5 5 501 -20 -フロ 🧼️ 5 5 501 -20 -アブク 🫧️ 5 5 501 -20 -アワ 🫧️ 5 5 501 -20 -シャボンダマ 🫧️ 5 5 501 -20 -スイチュウ 🫧️ 5 5 501 -20 -セッケン 🫧️ 5 5 501 -20 -バブル 🫧️ 5 5 501 -20 -エイセイ 🪥️ 5 5 501 -20 -オテイレ 🪥️ 5 5 501 -20 -センメンジョ 🪥️ 5 5 501 -20 -ハブラシ 🪥️ 5 5 501 -20 -ハミガキ 🪥️ 5 5 501 -20 -ムシバ 🪥️ 5 5 501 -20 -カイメン 🧽️ 5 5 501 -20 -キュウシュウ 🧽️ 5 5 501 -20 -スポンジ 🧽️ 5 5 501 -20 -ソウジ 🧽️ 5 5 501 -20 -ショウカ 🧯️ 5 5 501 -20 -ショウカキ 🧯️ 5 5 501 -20 -ショウカキグ 🧯️ 5 5 501 -20 -ショウボウ 🧯️ 5 5 501 -20 -カイモノ 🛒️ 5 5 501 -20 -カート 🛒️ 5 5 501 -20 -ショッピング 🛒️ 5 5 501 -20 -ショッピングカート 🛒️ 5 5 501 -20 -スーパー 🛒️ 5 5 501 -20 -キツエン 🚬️ 5 5 501 -20 -タバコ 🚬️ 5 5 501 -20 -カンオケ ⚰️️ 5 5 501 -20 -シ ⚰️️ 5 5 501 -20 -ヒツギ ⚰️️ 5 5 501 -20 -マイソウ ⚰️️ 5 5 501 -20 -オハカ 🪦️ 5 5 501 -20 -セキヒ 🪦️ 5 5 501 -20 -ハカバ 🪦️ 5 5 501 -20 -ボセキ 🪦️ 5 5 501 -20 -ボチ 🪦️ 5 5 501 -20 -マイソウ 🪦️ 5 5 501 -20 -イハイ ⚱️️ 5 5 501 -20 -コツツボ ⚱️️ 5 5 501 -20 -シ ⚱️️ 5 5 501 -20 -ソウギ ⚱️️ 5 5 501 -20 -マイソウ ⚱️️ 5 5 501 -20 -オマモリ 🧿️ 5 5 501 -20 -ジャシ 🧿️ 5 5 501 -20 -ナザール 🧿️ 5 5 501 -20 -ナザールボンジュウ 🧿️ 5 5 501 -20 -ナザール・ボンジュウ 🧿️ 5 5 501 -20 -ビーズ 🧿️ 5 5 501 -20 -マヨケ 🧿️ 5 5 501 -20 -オマモリ 🪬️ 5 5 501 -20 -ゴフ 🪬️ 5 5 501 -20 -テ 🪬️ 5 5 501 -20 -ハムサ 🪬️ 5 5 501 -20 -ファーティマ 🪬️ 5 5 501 -20 -ミリアム 🪬️ 5 5 501 -20 -メ 🪬️ 5 5 501 -20 -カオ 🗿️ 5 5 501 -20 -ゾウ 🗿️ 5 5 501 -20 -モアイ 🗿️ 5 5 501 -20 -モヤイ 🗿️ 5 5 501 -20 -イギ 🪧️ 5 5 501 -20 -カンバン 🪧️ 5 5 501 -20 -コウギ 🪧️ 5 5 501 -20 -シュチョウ 🪧️ 5 5 501 -20 -デモ 🪧️ 5 5 501 -20 -プラカード 🪧️ 5 5 501 -20 -id 🪪️ 5 5 501 -20 -アイディーカード 🪪️ 5 5 501 -20 -ウンテンメンキョショウ 🪪️ 5 5 501 -20 -カード 🪪️ 5 5 501 -20 -セキュリティ 🪪️ 5 5 501 -20 -ミブンショウ 🪪️ 5 5 501 -20 -ミブンショウメイショ 🪪️ 5 5 501 -20 -atm 🏧️ 5 5 501 -20 -エーティーエム 🏧️ 5 5 501 -20 -ギンコウ 🏧️ 5 5 501 -20 -ゲンキンジドウアズケバライキ 🏧️ 5 5 501 -20 -クズカゴ 🚮️ 5 5 501 -20 -ゴミステ 🚮️ 5 5 501 -20 -ゴミバコ 🚮️ 5 5 501 -20 -インリョウスイ 🚰️ 5 5 501 -20 -スイドウ 🚰️ 5 5 501 -20 -ノミミズ 🚰️ 5 5 501 -20 -ミズ 🚰️ 5 5 501 -20 -クルマイス ♿️ 5 5 501 -20 -バリアフリー ♿️ 5 5 501 -20 -バリヤフリー ♿️ 5 5 501 -20 -wc 🚹️ 5 5 501 -20 -オテアライ 🚹️ 5 5 501 -20 -ケショウシツ 🚹️ 5 5 501 -20 -ダンシ 🚹️ 5 5 501 -20 -ダンシトイレ 🚹️ 5 5 501 -20 -ダンセイ 🚹️ 5 5 501 -20 -トイレ 🚹️ 5 5 501 -20 -wc 🚺️ 5 5 501 -20 -オテアライ 🚺️ 5 5 501 -20 -ケショウシツ 🚺️ 5 5 501 -20 -ジョシ 🚺️ 5 5 501 -20 -ジョシトイレ 🚺️ 5 5 501 -20 -ジョセイ 🚺️ 5 5 501 -20 -トイレ 🚺️ 5 5 501 -20 -wc 🚻️ 5 5 501 -20 -オテアライ 🚻️ 5 5 501 -20 -ケショウシツ 🚻️ 5 5 501 -20 -ダブリューシー 🚻️ 5 5 501 -20 -トイレ 🚻️ 5 5 501 -20 -アカチャン 🚼️ 5 5 501 -20 -アカンボウ 🚼️ 5 5 501 -20 -ベビー 🚼️ 5 5 501 -20 -ベビーシート 🚼️ 5 5 501 -20 -wc 🚾️ 5 5 501 -20 -オテアライ 🚾️ 5 5 501 -20 -ケショウシツ 🚾️ 5 5 501 -20 -ダブリューシー 🚾️ 5 5 501 -20 -トイレ 🚾️ 5 5 501 -20 -シュツニュウコク 🛂️ 5 5 501 -20 -シュツニュウコクシンサ 🛂️ 5 5 501 -20 -ニュウシュッコク 🛂️ 5 5 501 -20 -パスポートコントロール 🛂️ 5 5 501 -20 -ゼイカン 🛃️ 5 5 501 -20 -ツウカン 🛃️ 5 5 501 -20 -スーツケース 🛄️ 5 5 501 -20 -テニモツ 🛄️ 5 5 501 -20 -テニモツウケトリ 🛄️ 5 5 501 -20 -バゲッジクレーム 🛄️ 5 5 501 -20 -スーツケース 🛅️ 5 5 501 -20 -テニモツ 🛅️ 5 5 501 -20 -テニモツアズカリ 🛅️ 5 5 501 -20 -ロッカー 🛅️ 5 5 501 -20 -キケン ⚠️️ 5 5 501 -20 -ケイコク ⚠️️ 5 5 501 -20 -チュウイ ⚠️️ 5 5 501 -20 -ヒョウシキ ⚠️️ 5 5 501 -20 -コドモ 🚸️ 5 5 501 -20 -ジドウオウダン 🚸️ 5 5 501 -20 -ツウガクロ 🚸️ 5 5 501 -20 -ヒョウシキ 🚸️ 5 5 501 -20 -キセイ ⛔️ 5 5 501 -20 -シャリョウシンニュウキンシ ⛔️ 5 5 501 -20 -タチイリキンシ ⛔️ 5 5 501 -20 -ドウロ ⛔️ 5 5 501 -20 -ヒョウシキ ⛔️ 5 5 501 -20 -キセイ 🚫️ 5 5 501 -20 -キンシ 🚫️ 5 5 501 -20 -シャリョウツウコウドメ 🚫️ 5 5 501 -20 -ドウロ 🚫️ 5 5 501 -20 -ヒョウシキ 🚫️ 5 5 501 -20 -キセイ 🚳️ 5 5 501 -20 -キンシ 🚳️ 5 5 501 -20 -ジテンシャ 🚳️ 5 5 501 -20 -ジテンシャキンシ 🚳️ 5 5 501 -20 -ドウロ 🚳️ 5 5 501 -20 -ヒョウシキ 🚳️ 5 5 501 -20 -キンエン 🚭️ 5 5 501 -20 -キンシ 🚭️ 5 5 501 -20 -タバコ 🚭️ 5 5 501 -20 -キンシ 🚯️ 5 5 501 -20 -ゴミ 🚯️ 5 5 501 -20 -ゴミステキンシ 🚯️ 5 5 501 -20 -ポイステキンシ 🚯️ 5 5 501 -20 -インヨウフカ 🚱️ 5 5 501 -20 -キンシ 🚱️ 5 5 501 -20 -ノメナイミズ 🚱️ 5 5 501 -20 -キセイ 🚷️ 5 5 501 -20 -キンシ 🚷️ 5 5 501 -20 -ドウロ 🚷️ 5 5 501 -20 -ヒョウシキ 🚷️ 5 5 501 -20 -ホコウシャタチイリキンシ 🚷️ 5 5 501 -20 -ケイタイキンシ 📵️ 5 5 501 -20 -ケイタイデンワキンシ 📵️ 5 5 501 -20 -スマホキンシ 📵️ 5 5 501 -20 -スマートフォンキンシ 📵️ 5 5 501 -20 -18キン 🔞️ 5 5 501 -20 -18サイミマンキンシ 🔞️ 5 5 501 -20 -キンシ 🔞️ 5 5 501 -20 -ミセイネン 🔞️ 5 5 501 -20 -キケン ☢️️ 5 5 501 -20 -ホウシャセイ ☢️️ 5 5 501 -20 -ホウシャセン ☢️️ 5 5 501 -20 -ホウシャノウ ☢️️ 5 5 501 -20 -キケン ☣️️ 5 5 501 -20 -バイオハザード ☣️️ 5 5 501 -20 -ユウガイブッシツ ☣️️ 5 5 501 -20 -ウエ ⬆️️ 5 5 501 -20 -ウエヤジルシ ⬆️️ 5 5 501 -20 -キタ ⬆️️ 5 5 501 -20 -ヤジルシ ⬆️️ 5 5 501 -20 -ホクトウ ↗️️ 5 5 501 -20 -ミギウエ ↗️️ 5 5 501 -20 -ミギウエヤジルシ ↗️️ 5 5 501 -20 -ヤジルシ ↗️️ 5 5 501 -20 -ヒガシ ➡️️ 5 5 501 -20 -ミギ ➡️️ 5 5 501 -20 -ミギヤジルシ ➡️️ 5 5 501 -20 -ヤジルシ ➡️️ 5 5 501 -20 -ナントウ ↘️️ 5 5 501 -20 -ミギシタ ↘️️ 5 5 501 -20 -ミギシタヤジルシ ↘️️ 5 5 501 -20 -ヤジルシ ↘️️ 5 5 501 -20 -シタ ⬇️️ 5 5 501 -20 -シタヤジルシ ⬇️️ 5 5 501 -20 -ミナミ ⬇️️ 5 5 501 -20 -ヤジルシ ⬇️️ 5 5 501 -20 -ナンセイ ↙️️ 5 5 501 -20 -ヒダリシタ ↙️️ 5 5 501 -20 -ヒダリシタヤジルシ ↙️️ 5 5 501 -20 -ヤジルシ ↙️️ 5 5 501 -20 -ニシ ⬅️️ 5 5 501 -20 -ヒダリ ⬅️️ 5 5 501 -20 -ヒダリヤジルシ ⬅️️ 5 5 501 -20 -ヤジルシ ⬅️️ 5 5 501 -20 -ヒダリウエ ↖️️ 5 5 501 -20 -ヒダリウエヤジルシ ↖️️ 5 5 501 -20 -ホクセイ ↖️️ 5 5 501 -20 -ヤジルシ ↖️️ 5 5 501 -20 -ジョウゲ ↕️️ 5 5 501 -20 -ジョウゲヤジルシ ↕️️ 5 5 501 -20 -ヤジルシ ↕️️ 5 5 501 -20 -ヤジルシジョウゲ ↕️️ 5 5 501 -20 -サユウ ↔️️ 5 5 501 -20 -サユウヤジルシ ↔️️ 5 5 501 -20 -ヤジルシ ↔️️ 5 5 501 -20 -ヤジルシサユウ ↔️️ 5 5 501 -20 -カーブ ↩️️ 5 5 501 -20 -キョクセン ↩️️ 5 5 501 -20 -ヒダリ ↩️️ 5 5 501 -20 -ミギカーブヤジルシ ↩️️ 5 5 501 -20 -ヤジルシ ↩️️ 5 5 501 -20 -カーブ ↪️️ 5 5 501 -20 -キョクセン ↪️️ 5 5 501 -20 -ヒダリカーブヤジルシ ↪️️ 5 5 501 -20 -ミギ ↪️️ 5 5 501 -20 -ヤジルシ ↪️️ 5 5 501 -20 -ウエ ⤴️️ 5 5 501 -20 -ウエカーブヤジルシ ⤴️️ 5 5 501 -20 -ウエヤジルシ ⤴️️ 5 5 501 -20 -カーブ ⤴️️ 5 5 501 -20 -キョクセン ⤴️️ 5 5 501 -20 -グッド ⤴️️ 5 5 501 -20 -ヤジルシ ⤴️️ 5 5 501 -20 -カーブ ⤵️️ 5 5 501 -20 -キョクセン ⤵️️ 5 5 501 -20 -シタ ⤵️️ 5 5 501 -20 -シタカーブヤジルシ ⤵️️ 5 5 501 -20 -シタヤジルシ ⤵️️ 5 5 501 -20 -バッド ⤵️️ 5 5 501 -20 -ヤジルシ ⤵️️ 5 5 501 -20 -クリカエシ 🔃️ 5 5 501 -20 -サイヨミコミ 🔃️ 5 5 501 -20 -トケイマワリ 🔃️ 5 5 501 -20 -ミギマワリ 🔃️ 5 5 501 -20 -ミギマワリタテヤジルシ 🔃️ 5 5 501 -20 -ヤジルシ 🔃️ 5 5 501 -20 -リロード 🔃️ 5 5 501 -20 -クリカエシ 🔄️ 5 5 501 -20 -ハントケイマワリ 🔄️ 5 5 501 -20 -ヒダリマワリヤジルシ 🔄️ 5 5 501 -20 -ヤジルシ 🔄️ 5 5 501 -20 -リピート 🔄️ 5 5 501 -20 -back 🔙️ 5 5 501 -20 -backヤジルシ 🔙️ 5 5 501 -20 -バック 🔙️ 5 5 501 -20 -バックヤジルシ 🔙️ 5 5 501 -20 -モドル 🔙️ 5 5 501 -20 -ヤジルシ 🔙️ 5 5 501 -20 -end 🔚️ 5 5 501 -20 -endヤジルシ 🔚️ 5 5 501 -20 -エンド 🔚️ 5 5 501 -20 -エンドヤジルシ 🔚️ 5 5 501 -20 -オワリ 🔚️ 5 5 501 -20 -ヤジルシ 🔚️ 5 5 501 -20 -on 🔛️ 5 5 501 -20 -onヤジルシ 🔛️ 5 5 501 -20 -オン 🔛️ 5 5 501 -20 -オンヤジルシ 🔛️ 5 5 501 -20 -ヤジルシ 🔛️ 5 5 501 -20 -soon 🔜️ 5 5 501 -20 -soonヤジルシ 🔜️ 5 5 501 -20 -スグ 🔜️ 5 5 501 -20 -スーン 🔜️ 5 5 501 -20 -スーンヤジルシ 🔜️ 5 5 501 -20 -ヤジルシ 🔜️ 5 5 501 -20 -top 🔝️ 5 5 501 -20 -topヤジルシ 🔝️ 5 5 501 -20 -ウエ 🔝️ 5 5 501 -20 -トップ 🔝️ 5 5 501 -20 -トップヤジルシ 🔝️ 5 5 501 -20 -ヤジルシ 🔝️ 5 5 501 -20 -イノリ 🛐️ 5 5 501 -20 -シュウキョウ 🛐️ 5 5 501 -20 -レイハイジョ 🛐️ 5 5 501 -20 -ゲンシ ⚛️️ 5 5 501 -20 -ゲンシノシンボル ⚛️️ 5 5 501 -20 -ゲンソ ⚛️️ 5 5 501 -20 -ブンシ ⚛️️ 5 5 501 -20 -ムシンロン ⚛️️ 5 5 501 -20 -オーム 🕉️️ 5 5 501 -20 -シュウキョウ 🕉️️ 5 5 501 -20 -ヒンドゥーキョウ 🕉️️ 5 5 501 -20 -シュウキョウ ✡️️ 5 5 501 -20 -ダビデノホシ ✡️️ 5 5 501 -20 -ホシ ✡️️ 5 5 501 -20 -ユダヤキョウ ✡️️ 5 5 501 -20 -シュウキョウ ☸️️ 5 5 501 -20 -テンボウリン ☸️️ 5 5 501 -20 -テンポウリン ☸️️ 5 5 501 -20 -ブッキョウ ☸️️ 5 5 501 -20 -ホウリン ☸️️ 5 5 501 -20 -インヤン ☯️️ 5 5 501 -20 -インヨウ ☯️️ 5 5 501 -20 -シュウキョウ ☯️️ 5 5 501 -20 -ドウキョウ ☯️️ 5 5 501 -20 -キリストキョウ ✝️️ 5 5 501 -20 -クロス ✝️️ 5 5 501 -20 -シュウキョウ ✝️️ 5 5 501 -20 -ジュウジカ ✝️️ 5 5 501 -20 -キリストキョウ ☦️️ 5 5 501 -20 -シュウキョウ ☦️️ 5 5 501 -20 -ジュウジカ ☦️️ 5 5 501 -20 -ハッタンジュウジカ ☦️️ 5 5 501 -20 -イスラムキョウ ☪️️ 5 5 501 -20 -シュウキョウ ☪️️ 5 5 501 -20 -ホシ ☪️️ 5 5 501 -20 -ホシトミカヅキ ☪️️ 5 5 501 -20 -ミカヅキ ☪️️ 5 5 501 -20 -ピースマーク ☮️️ 5 5 501 -20 -ヘイワ ☮️️ 5 5 501 -20 -シュウキョウ 🕎️ 5 5 501 -20 -ショクダイ 🕎️ 5 5 501 -20 -メノラー 🕎️ 5 5 501 -20 -メノーラー 🕎️ 5 5 501 -20 -ユダヤキョウ 🕎️ 5 5 501 -20 -ウラナイ 🔯️ 5 5 501 -20 -ダビデ 🔯️ 5 5 501 -20 -ホシ 🔯️ 5 5 501 -20 -ロクボウセイ 🔯️ 5 5 501 -20 -ロッカクセイ 🔯️ 5 5 501 -20 -カンダ 🪯️ 5 5 501 -20 -ケン 🪯️ 5 5 501 -20 -シクキョウ 🪯️ 5 5 501 -20 -シュウキョウ 🪯️ 5 5 501 -20 -シークキョウ 🪯️ 5 5 501 -20 -オヒツジザ ♈️ 5 5 501 -20 -セイザ ♈️ 5 5 501 -20 -オウシザ ♉️ 5 5 501 -20 -セイザ ♉️ 5 5 501 -20 -セイザ ♊️ 5 5 501 -20 -フタゴザ ♊️ 5 5 501 -20 -カニザ ♋️ 5 5 501 -20 -セイザ ♋️ 5 5 501 -20 -シシザ ♌️ 5 5 501 -20 -セイザ ♌️ 5 5 501 -20 -オトメザ ♍️ 5 5 501 -20 -セイザ ♍️ 5 5 501 -20 -セイザ ♎️ 5 5 501 -20 -テンビンザ ♎️ 5 5 501 -20 -サソリザ ♏️ 5 5 501 -20 -セイザ ♏️ 5 5 501 -20 -イテザ ♐️ 5 5 501 -20 -セイザ ♐️ 5 5 501 -20 -セイザ ♑️ 5 5 501 -20 -ヤギザ ♑️ 5 5 501 -20 -セイザ ♒️ 5 5 501 -20 -ミズガメザ ♒️ 5 5 501 -20 -ウオザ ♓️ 5 5 501 -20 -セイザ ♓️ 5 5 501 -20 -セイザ ⛎️ 5 5 501 -20 -ヘビツカイザ ⛎️ 5 5 501 -20 -ヘビツカザ ⛎️ 5 5 501 -20 -コウサ 🔀️ 5 5 501 -20 -シャッフル 🔀️ 5 5 501 -20 -シャッフルボタン 🔀️ 5 5 501 -20 -ボタン 🔀️ 5 5 501 -20 -ヤジルシ 🔀️ 5 5 501 -20 -クリカエシ 🔁️ 5 5 501 -20 -ゼンキョク 🔁️ 5 5 501 -20 -ボタン 🔁️ 5 5 501 -20 -ヤジルシ 🔁️ 5 5 501 -20 -リピートボタン 🔁️ 5 5 501 -20 -1キョクリピートボタン 🔂️ 5 5 501 -20 -クリカエシ 🔂️ 5 5 501 -20 -ボタン 🔂️ 5 5 501 -20 -ヤジルシ 🔂️ 5 5 501 -20 -リピート 🔂️ 5 5 501 -20 -サイセイ ▶️️ 5 5 501 -20 -サイセイボタン ▶️️ 5 5 501 -20 -ツギヘ ▶️️ 5 5 501 -20 -プレイ ▶️️ 5 5 501 -20 -ボタン ▶️️ 5 5 501 -20 -ミギムキサンカク ▶️️ 5 5 501 -20 -ヤジルシ ▶️️ 5 5 501 -20 -ハヤオクリ ⏩️ 5 5 501 -20 -ハヤオクリボタン ⏩️ 5 5 501 -20 -ボタン ⏩️ 5 5 501 -20 -ミギ ⏩️ 5 5 501 -20 -ヤジルシ ⏩️ 5 5 501 -20 -ツギノキョクボタン ⏭️️ 5 5 501 -20 -ツギノシーン ⏭️️ 5 5 501 -20 -ツギノトラック ⏭️️ 5 5 501 -20 -ボタン ⏭️️ 5 5 501 -20 -ヤジルシ ⏭️️ 5 5 501 -20 -イチジテイシ ⏯️️ 5 5 501 -20 -イチジテイシボタン ⏯️️ 5 5 501 -20 -サイセイ ⏯️️ 5 5 501 -20 -サイセイボタン ⏯️️ 5 5 501 -20 -ボタン ⏯️️ 5 5 501 -20 -ヤジルシ ⏯️️ 5 5 501 -20 -ギャクサイセイ ◀️️ 5 5 501 -20 -ギャクサイセイボタン ◀️️ 5 5 501 -20 -ヒダリムキサンカク ◀️️ 5 5 501 -20 -ボタン ◀️️ 5 5 501 -20 -マキモドシ ◀️️ 5 5 501 -20 -モドル ◀️️ 5 5 501 -20 -ヤジルシ ◀️️ 5 5 501 -20 -ハヤモドシ ⏪️ 5 5 501 -20 -ハヤモドシボタン ⏪️ 5 5 501 -20 -ヒダリ ⏪️ 5 5 501 -20 -マキモドシ ⏪️ 5 5 501 -20 -モドル ⏪️ 5 5 501 -20 -ヤジルシ ⏪️ 5 5 501 -20 -ボタン ⏮️️ 5 5 501 -20 -マエノキョクボタン ⏮️️ 5 5 501 -20 -マエノシーン ⏮️️ 5 5 501 -20 -マエノトラック ⏮️️ 5 5 501 -20 -ヤジルシ ⏮️️ 5 5 501 -20 -ウエ 🔼️ 5 5 501 -20 -ウエボタン 🔼️ 5 5 501 -20 -ウエムキサンカク 🔼️ 5 5 501 -20 -サンカク 🔼️ 5 5 501 -20 -ボタン 🔼️ 5 5 501 -20 -ヤジルシ 🔼️ 5 5 501 -20 -ウエ ⏫️ 5 5 501 -20 -コウソクジョウボタン ⏫️ 5 5 501 -20 -ニジュウ ⏫️ 5 5 501 -20 -ボタン ⏫️ 5 5 501 -20 -ヤジルシ ⏫️ 5 5 501 -20 -サンカク 🔽️ 5 5 501 -20 -シタ 🔽️ 5 5 501 -20 -シタボタン 🔽️ 5 5 501 -20 -シタムキサンカク 🔽️ 5 5 501 -20 -ボタン 🔽️ 5 5 501 -20 -ヤジルシ 🔽️ 5 5 501 -20 -コウソクシタボタン ⏬️ 5 5 501 -20 -シタ ⏬️ 5 5 501 -20 -ニジュウ ⏬️ 5 5 501 -20 -ボタン ⏬️ 5 5 501 -20 -ヤジルシ ⏬️ 5 5 501 -20 -イチジテイシ ⏸️️ 5 5 501 -20 -イチジテイシボタン ⏸️️ 5 5 501 -20 -ボタン ⏸️️ 5 5 501 -20 -ポーズ ⏸️️ 5 5 501 -20 -ストップ ⏹️️ 5 5 501 -20 -テイシ ⏹️️ 5 5 501 -20 -テイシボタン ⏹️️ 5 5 501 -20 -ボタン ⏹️️ 5 5 501 -20 -ボタン ⏺️️ 5 5 501 -20 -ロクオン ⏺️️ 5 5 501 -20 -ロクオンロクガボタン ⏺️️ 5 5 501 -20 -ロクガ ⏺️️ 5 5 501 -20 -イジェクト ⏏️️ 5 5 501 -20 -トリダシ ⏏️️ 5 5 501 -20 -トリダシボタン ⏏️️ 5 5 501 -20 -ボタン ⏏️️ 5 5 501 -20 -エイガ 🎦️ 5 5 501 -20 -エイガカン 🎦️ 5 5 501 -20 -カメラ 🎦️ 5 5 501 -20 -ドウガ 🎦️ 5 5 501 -20 -アカルサ 🔅️ 5 5 501 -20 -キド 🔅️ 5 5 501 -20 -クライ 🔅️ 5 5 501 -20 -テイキド 🔅️ 5 5 501 -20 -ブライトネス 🔅️ 5 5 501 -20 -アカルイ 🔆️ 5 5 501 -20 -アカルサ 🔆️ 5 5 501 -20 -キド 🔆️ 5 5 501 -20 -コウキド 🔆️ 5 5 501 -20 -ブライトネス 🔆️ 5 5 501 -20 -アンテナマーク 📶️ 5 5 501 -20 -ケイタイ 📶️ 5 5 501 -20 -ケイタイデンワ 📶️ 5 5 501 -20 -ケンナイ 📶️ 5 5 501 -20 -スマホ 📶️ 5 5 501 -20 -スマートフォン 📶️ 5 5 501 -20 -デンパ 📶️ 5 5 501 -20 -インターネット 🛜️ 5 5 501 -20 -スマホ 🛜️ 5 5 501 -20 -デンパ 🛜️ 5 5 501 -20 -ネット 🛜️ 5 5 501 -20 -ネットワーク 🛜️ 5 5 501 -20 -パソコン 🛜️ 5 5 501 -20 -ムセン 🛜️ 5 5 501 -20 -ワイファイ 🛜️ 5 5 501 -20 -ワイヤレス 🛜️ 5 5 501 -20 -ケイタイ 📳️ 5 5 501 -20 -ケイタイデンワ 📳️ 5 5 501 -20 -スマホ 📳️ 5 5 501 -20 -スマートフォン 📳️ 5 5 501 -20 -マナーモード 📳️ 5 5 501 -20 -ケイタイ 📴️ 5 5 501 -20 -ケイタイデンワ 📴️ 5 5 501 -20 -ケイタイデンワデンゲンオフ 📴️ 5 5 501 -20 -スマホ 📴️ 5 5 501 -20 -スマートフォン 📴️ 5 5 501 -20 -デンゲンオフ 📴️ 5 5 501 -20 -オンナ ♀️️ 5 5 501 -20 -シンボル ♀️️ 5 5 501 -20 -ジョセイ ♀️️ 5 5 501 -20 -ジョセイノマーク ♀️️ 5 5 501 -20 -オトコ ♂️️ 5 5 501 -20 -シンボル ♂️️ 5 5 501 -20 -ダンセイ ♂️️ 5 5 501 -20 -ダンセイノマーク ♂️️ 5 5 501 -20 -lgbt ⚧️️ 5 5 501 -20 -シンボル ⚧️️ 5 5 501 -20 -セイベツ ⚧️️ 5 5 501 -20 -ティージー ⚧️️ 5 5 501 -20 -トランスジェンダーノマーク ⚧️️ 5 5 501 -20 -カケザン ✖️️ 5 5 501 -20 -カケル ✖️️ 5 5 501 -20 -キゴウ ✖️️ 5 5 501 -20 -キャンセル ✖️️ 5 5 501 -20 -ジョウザン ✖️️ 5 5 501 -20 -バツ ✖️️ 5 5 501 -20 -ペケ ✖️️ 5 5 501 -20 -カサン ➕️ 5 5 501 -20 -キゴウ ➕️ 5 5 501 -20 -タシザン ➕️ 5 5 501 -20 -タス ➕️ 5 5 501 -20 -プラス ➕️ 5 5 501 -20 -キゴウ ➖️ 5 5 501 -20 -ゲンザン ➖️ 5 5 501 -20 -ヒキザン ➖️ 5 5 501 -20 -ヒク ➖️ 5 5 501 -20 -マイナス ➖️ 5 5 501 -20 -ー ➖️ 5 5 501 -20 -キゴウ ➗️ 5 5 501 -20 -ジョサン ➗️ 5 5 501 -20 -ワリザン ➗️ 5 5 501 -20 -ワル ➗️ 5 5 501 -20 -・ ➗️ 5 5 501 -20 -イコール 🟰️ 5 5 501 -20 -スウガク 🟰️ 5 5 501 -20 -トウゴウ 🟰️ 5 5 501 -20 -ヒトシイ 🟰️ 5 5 501 -20 -フトジノトウゴウ 🟰️ 5 5 501 -20 -エイエン ♾️️ 5 5 501 -20 -バンブツ ♾️️ 5 5 501 -20 -ムゲン ♾️️ 5 5 501 -20 -ムゲンダイ ♾️️ 5 5 501 -20 -エクスクラメーションマーク ‼️️ 5 5 501 -20 -キゴウ ‼️️ 5 5 501 -20 -ニジュウカンタンフ ‼️️ 5 5 501 -20 -ビックリマーク ‼️️ 5 5 501 -20 -ヤクモノ ‼️️ 5 5 501 -20 -カンタンフギモンフ ⁉️️ 5 5 501 -20 -キゴウ ⁉️️ 5 5 501 -20 -ハテナマーク ⁉️️ 5 5 501 -20 -ビックリマーク ⁉️️ 5 5 501 -20 -アカイギモンフ ❓️ 5 5 501 -20 -キゴウ ❓️ 5 5 501 -20 -ギモンフ ❓️ 5 5 501 -20 -クエスチョン ❓️ 5 5 501 -20 -クエスチョンマーク ❓️ 5 5 501 -20 -ハテナ ❓️ 5 5 501 -20 -ハテナマーク ❓️ 5 5 501 -20 -ヤクモノ ❓️ 5 5 501 -20 -キゴウ ❔️ 5 5 501 -20 -クエスチョン ❔️ 5 5 501 -20 -クエスチョンマーク ❔️ 5 5 501 -20 -シロイギモンフ ❔️ 5 5 501 -20 -ハテナ ❔️ 5 5 501 -20 -ハテナマーク ❔️ 5 5 501 -20 -ヤクモノ ❔️ 5 5 501 -20 -エクスクラメーションマーク ❕️ 5 5 501 -20 -キゴウ ❕️ 5 5 501 -20 -シロイカンタンフ ❕️ 5 5 501 -20 -ビックリ ❕️ 5 5 501 -20 -ビックリマーク ❕️ 5 5 501 -20 -ヤクモノ ❕️ 5 5 501 -20 -アカイカンタンフ ❗️ 5 5 501 -20 -エクスクラメーションマーク ❗️ 5 5 501 -20 -カンタンフ ❗️ 5 5 501 -20 -キゴウ ❗️ 5 5 501 -20 -ビックリマーク ❗️ 5 5 501 -20 -ヤクモノ ❗️ 5 5 501 -20 -キゴウ 〰️️ 5 5 501 -20 -チョウオンキゴウ 〰️️ 5 5 501 -20 -ナミセン 〰️️ 5 5 501 -20 -ハセン 〰️️ 5 5 501 -20 -ヤクモノ 〰️️ 5 5 501 -20 -ー 〰️️ 5 5 501 -20 -エン 💱️ 5 5 501 -20 -オカネ 💱️ 5 5 501 -20 -ガイカリョウガエ 💱️ 5 5 501 -20 -ツウカ 💱️ 5 5 501 -20 -ドル 💱️ 5 5 501 -20 -リョウガエ 💱️ 5 5 501 -20 -オカネ 💲️ 5 5 501 -20 -ツウカ 💲️ 5 5 501 -20 -ドル 💲️ 5 5 501 -20 -ドルキゴウ 💲️ 5 5 501 -20 -アスクレピオスノツエ ⚕️️ 5 5 501 -20 -イシャ ⚕️️ 5 5 501 -20 -イリョウ ⚕️️ 5 5 501 -20 -イリョウノシンボル ⚕️️ 5 5 501 -20 -チリョウ ⚕️️ 5 5 501 -20 -サイセイ ♻️️ 5 5 501 -20 -サイリヨウ ♻️️ 5 5 501 -20 -ジュンカンヤジルシ ♻️️ 5 5 501 -20 -リサイクル ♻️️ 5 5 501 -20 -リサイクルマーク ♻️️ 5 5 501 -20 -エンブレム ⚜️️ 5 5 501 -20 -フランスオウケ ⚜️️ 5 5 501 -20 -フルールドリス ⚜️️ 5 5 501 -20 -モンショウ ⚜️️ 5 5 501 -20 -ユリ ⚜️️ 5 5 501 -20 -イカリ 🔱️ 5 5 501 -20 -ウミ 🔱️ 5 5 501 -20 -エンブレム 🔱️ 5 5 501 -20 -トライデント 🔱️ 5 5 501 -20 -ミツマタ 🔱️ 5 5 501 -20 -ナフダ 📛️ 5 5 501 -20 -ホイクエン 📛️ 5 5 501 -20 -ホイクショ 📛️ 5 5 501 -20 -ヨウチエン 📛️ 5 5 501 -20 -ショシンシャ 🔰️ 5 5 501 -20 -ショシンシャマーク 🔰️ 5 5 501 -20 -ハツ 🔰️ 5 5 501 -20 -ワカバマーク 🔰️ 5 5 501 -20 -エン ⭕️ 5 5 501 -20 -キゴウ ⭕️ 5 5 501 -20 -フトイマル ⭕️ 5 5 501 -20 -マル ⭕️ 5 5 501 -20 -ワ ⭕️ 5 5 501 -20 -キゴウ ✅️ 5 5 501 -20 -シロヌキノチェック ✅️ 5 5 501 -20 -チェック ✅️ 5 5 501 -20 -チェックマーク ✅️ 5 5 501 -20 -ピン ✅️ 5 5 501 -20 -キゴウ ☑️️ 5 5 501 -20 -チェック ☑️️ 5 5 501 -20 -チェックボックス ☑️️ 5 5 501 -20 -チェックマーク ☑️️ 5 5 501 -20 -キゴウ ✔️️ 5 5 501 -20 -チェック ✔️️ 5 5 501 -20 -チェックマーク ✔️️ 5 5 501 -20 -フトジノチェック ✔️️ 5 5 501 -20 -カケザン ❌️ 5 5 501 -20 -キゴウ ❌️ 5 5 501 -20 -キャンセル ❌️ 5 5 501 -20 -ジョウザン ❌️ 5 5 501 -20 -バツ ❌️ 5 5 501 -20 -ペケ ❌️ 5 5 501 -20 -カケザン ❎️ 5 5 501 -20 -キゴウ ❎️ 5 5 501 -20 -キャンセル ❎️ 5 5 501 -20 -シロヌキノバツ ❎️ 5 5 501 -20 -ジョウザン ❎️ 5 5 501 -20 -バツ ❎️ 5 5 501 -20 -ペケ ❎️ 5 5 501 -20 -キゴウ ➰️ 5 5 501 -20 -チョウオン ➰️ 5 5 501 -20 -ループ ➰️ 5 5 501 -20 -ワッカ ➰️ 5 5 501 -20 -キゴウ ➿️ 5 5 501 -20 -ダブルループ ➿️ 5 5 501 -20 -フリーダイヤル ➿️ 5 5 501 -20 -ループ ➿️ 5 5 501 -20 -ワッカ ➿️ 5 5 501 -20 -アンテン 〽️️ 5 5 501 -20 -イオリテン 〽️️ 5 5 501 -20 -ウタキゴウ 〽️️ 5 5 501 -20 -キゴウ 〽️️ 5 5 501 -20 -ヤクモノ 〽️️ 5 5 501 -20 -アスタリスク ✳️️ 5 5 501 -20 -カザリ ✳️️ 5 5 501 -20 -キゴウ ✳️️ 5 5 501 -20 -ハッカクアスタリスク ✳️️ 5 5 501 -20 -ホシ ✳️️ 5 5 501 -20 -ヤクモノ ✳️️ 5 5 501 -20 -カザリ ✴️️ 5 5 501 -20 -キゴウ ✴️️ 5 5 501 -20 -スパーク ✴️️ 5 5 501 -20 -ハッカクセイ ✴️️ 5 5 501 -20 -ホシ ✴️️ 5 5 501 -20 -ヤクモノ ✴️️ 5 5 501 -20 -アスタリスク ❇️️ 5 5 501 -20 -キゴウ ❇️️ 5 5 501 -20 -スパーク ❇️️ 5 5 501 -20 -スパークル ❇️️ 5 5 501 -20 -ヤクモノ ❇️️ 5 5 501 -20 -cマーク ©️️ 5 5 501 -20 -キゴウ ©️️ 5 5 501 -20 -コピーライト ©️️ 5 5 501 -20 -シーマーク ©️️ 5 5 501 -20 -チョサクケン ©️️ 5 5 501 -20 -チョサクケンマーク ©️️ 5 5 501 -20 -アールマーク ®️️ 5 5 501 -20 -キゴウ ®️️ 5 5 501 -20 -トウロクショウヒョウ ®️️ 5 5 501 -20 -トウロクショウヒョウマーク ®️️ 5 5 501 -20 -tmマーク ™️️ 5 5 501 -20 -キゴウ ™️️ 5 5 501 -20 -ショウヒョウ ™️️ 5 5 501 -20 -ショウヒョウマーク ™️️ 5 5 501 -20 -ティーエムマーク ™️️ 5 5 501 -20 -トレードマーク ™️️ 5 5 501 -20 -カコミスウジ #️⃣️ 5 5 501 -20 -シャープ #️⃣️ 5 5 501 -20 -シャープダイヤル #️⃣️ 5 5 501 -20 -カコミスウジ *️⃣️ 5 5 501 -20 -0 0️⃣️ 5 5 501 -20 -カコミスウジ 0️⃣️ 5 5 501 -20 -1 1️⃣️ 5 5 501 -20 -カコミスウジ 1️⃣️ 5 5 501 -20 -2 2️⃣️ 5 5 501 -20 -カコミスウジ 2️⃣️ 5 5 501 -20 -3 3️⃣️ 5 5 501 -20 -カコミスウジ 3️⃣️ 5 5 501 -20 -4 4️⃣️ 5 5 501 -20 -カコミスウジ 4️⃣️ 5 5 501 -20 -5 5️⃣️ 5 5 501 -20 -カコミスウジ 5️⃣️ 5 5 501 -20 -6 6️⃣️ 5 5 501 -20 -カコミスウジ 6️⃣️ 5 5 501 -20 -7 7️⃣️ 5 5 501 -20 -カコミスウジ 7️⃣️ 5 5 501 -20 -8 8️⃣️ 5 5 501 -20 -カコミスウジ 8️⃣️ 5 5 501 -20 -9 9️⃣️ 5 5 501 -20 -カコミスウジ 9️⃣️ 5 5 501 -20 -10 🔟️ 5 5 501 -20 -カコミスウジ 🔟️ 5 5 501 -20 -abcd 🔠️ 5 5 501 -20 -アルファベット 🔠️ 5 5 501 -20 -エイオオモジノニュウリョク 🔠️ 5 5 501 -20 -エイジ 🔠️ 5 5 501 -20 -エービーシーディ 🔠️ 5 5 501 -20 -オオモジ 🔠️ 5 5 501 -20 -ダイモンジ 🔠️ 5 5 501 -20 -ローマジ 🔠️ 5 5 501 -20 -abcd 🔡️ 5 5 501 -20 -アルファベット 🔡️ 5 5 501 -20 -エイコモジノニュウリョク 🔡️ 5 5 501 -20 -エイジ 🔡️ 5 5 501 -20 -エービーシーディー 🔡️ 5 5 501 -20 -コモジ 🔡️ 5 5 501 -20 -ローマジ 🔡️ 5 5 501 -20 -1234 🔢️ 5 5 501 -20 -スウジ 🔢️ 5 5 501 -20 -スウジノニュウリョク 🔢️ 5 5 501 -20 -ニュウリョク 🔢️ 5 5 501 -20 -キゴウ 🔣️ 5 5 501 -20 -キゴウノニュウリョク 🔣️ 5 5 501 -20 -ニュウリョク 🔣️ 5 5 501 -20 -abc 🔤️ 5 5 501 -20 -アルファベット 🔤️ 5 5 501 -20 -エイゴ 🔤️ 5 5 501 -20 -エイジ 🔤️ 5 5 501 -20 -エイジノニュウリョク 🔤️ 5 5 501 -20 -エイビーシー 🔤️ 5 5 501 -20 -エービーシー 🔤️ 5 5 501 -20 -ローマジ 🔤️ 5 5 501 -20 -a 🅰️️ 5 5 501 -20 -エイガタ 🅰️️ 5 5 501 -20 -エーガタ 🅰️️ 5 5 501 -20 -ケツエキガタ 🅰️️ 5 5 501 -20 -ケツエキガタエイガタ 🅰️️ 5 5 501 -20 -ケツエキガタエーガタ 🅰️️ 5 5 501 -20 -ab 🆎️ 5 5 501 -20 -エイビーガタ 🆎️ 5 5 501 -20 -エービーガタ 🆎️ 5 5 501 -20 -ケツエキガタ 🆎️ 5 5 501 -20 -ケツエキガタエイビーガタ 🆎️ 5 5 501 -20 -ケツエキガタエービーガタ 🆎️ 5 5 501 -20 -b 🅱️️ 5 5 501 -20 -ケツエキガタ 🅱️️ 5 5 501 -20 -ケツエキガタビーガタ 🅱️️ 5 5 501 -20 -ビーガタ 🅱️️ 5 5 501 -20 -cl 🆑️ 5 5 501 -20 -clマーク 🆑️ 5 5 501 -20 -クリア 🆑️ 5 5 501 -20 -シーエル 🆑️ 5 5 501 -20 -シーエルマーク 🆑️ 5 5 501 -20 -cool 🆒️ 5 5 501 -20 -coolマーク 🆒️ 5 5 501 -20 -クール 🆒️ 5 5 501 -20 -クールマーク 🆒️ 5 5 501 -20 -freeマーク 🆓️ 5 5 501 -20 -タダ 🆓️ 5 5 501 -20 -フリー 🆓️ 5 5 501 -20 -フリーマーク 🆓️ 5 5 501 -20 -ムリョウ 🆓️ 5 5 501 -20 -i ℹ️️ 5 5 501 -20 -iマーク ℹ️️ 5 5 501 -20 -アイ ℹ️️ 5 5 501 -20 -アイマーク ℹ️️ 5 5 501 -20 -インフォメーション ℹ️️ 5 5 501 -20 -インフォメーションシンボル ℹ️️ 5 5 501 -20 -ジョウホウ ℹ️️ 5 5 501 -20 -id 🆔️ 5 5 501 -20 -idマーク 🆔️ 5 5 501 -20 -アイディー 🆔️ 5 5 501 -20 -アイディーマーク 🆔️ 5 5 501 -20 -m Ⓜ️️ 5 5 501 -20 -エム Ⓜ️️ 5 5 501 -20 -チカテツ Ⓜ️️ 5 5 501 -20 -マル Ⓜ️️ 5 5 501 -20 -マルイエムマーク Ⓜ️️ 5 5 501 -20 -new 🆕️ 5 5 501 -20 -newマーク 🆕️ 5 5 501 -20 -アタラシイ 🆕️ 5 5 501 -20 -ニュー 🆕️ 5 5 501 -20 -ニューマーク 🆕️ 5 5 501 -20 -ng 🆖️ 5 5 501 -20 -ngマーク 🆖️ 5 5 501 -20 -エヌジー 🆖️ 5 5 501 -20 -エヌジーマーク 🆖️ 5 5 501 -20 -ボツ 🆖️ 5 5 501 -20 -o 🅾️️ 5 5 501 -20 -オーガタ 🅾️️ 5 5 501 -20 -ケツエキガタ 🅾️️ 5 5 501 -20 -ケツエキガタオーガタ 🅾️️ 5 5 501 -20 -ok 🆗️ 5 5 501 -20 -okマーク 🆗️ 5 5 501 -20 -オッケー 🆗️ 5 5 501 -20 -オーケー 🆗️ 5 5 501 -20 -オーケーマーク 🆗️ 5 5 501 -20 -p 🅿️️ 5 5 501 -20 -チュウシャ 🅿️️ 5 5 501 -20 -チュウシャジョウ 🅿️️ 5 5 501 -20 -パーキング 🅿️️ 5 5 501 -20 -ピー 🅿️️ 5 5 501 -20 -ピーマーク 🅿️️ 5 5 501 -20 -sos 🆘️ 5 5 501 -20 -sosマーク 🆘️ 5 5 501 -20 -エスオーエス 🆘️ 5 5 501 -20 -エスオーエスマーク 🆘️ 5 5 501 -20 -タスケテ 🆘️ 5 5 501 -20 -up 🆙️ 5 5 501 -20 -upマーク 🆙️ 5 5 501 -20 -アップ 🆙️ 5 5 501 -20 -アップマーク 🆙️ 5 5 501 -20 -コウシン 🆙️ 5 5 501 -20 -vs 🆚️ 5 5 501 -20 -vsマーク 🆚️ 5 5 501 -20 -バーサス 🆚️ 5 5 501 -20 -バーサスマーク 🆚️ 5 5 501 -20 -ブイエス 🆚️ 5 5 501 -20 -ブイエスマーク 🆚️ 5 5 501 -20 -ヴァーサス 🆚️ 5 5 501 -20 -ヴィエス 🆚️ 5 5 501 -20 -ココ 🈁️ 5 5 501 -20 -ココノマーク 🈁️ 5 5 501 -20 -サ 🈂️️ 5 5 501 -20 -サノマーク 🈂️️ 5 5 501 -20 -サービス 🈂️️ 5 5 501 -20 -サービスリョウ 🈂️️ 5 5 501 -20 -ゲツガク 🈷️️ 5 5 501 -20 -ツキ 🈷️️ 5 5 501 -20 -ツキギメ 🈷️️ 5 5 501 -20 -ツキマーク 🈷️️ 5 5 501 -20 -ユウ 🈶️ 5 5 501 -20 -ユウゲン 🈶️ 5 5 501 -20 -ユウマーク 🈶️ 5 5 501 -20 -ユウリョウ 🈶️ 5 5 501 -20 -シテイ 🈯️ 5 5 501 -20 -シテイセキ 🈯️ 5 5 501 -20 -ユビ 🈯️ 5 5 501 -20 -ユビマーク 🈯️ 5 5 501 -20 -オトク 🉐️ 5 5 501 -20 -トク 🉐️ 5 5 501 -20 -マルトク 🉐️ 5 5 501 -20 -ディスカウント 🈹️ 5 5 501 -20 -ワリ 🈹️ 5 5 501 -20 -ワリビキ 🈹️ 5 5 501 -20 -ワリマーク 🈹️ 5 5 501 -20 -タダ 🈚️ 5 5 501 -20 -ム 🈚️ 5 5 501 -20 -ムマーク 🈚️ 5 5 501 -20 -ムリョウ 🈚️ 5 5 501 -20 -キン 🈲️ 5 5 501 -20 -キンシ 🈲️ 5 5 501 -20 -キンマーク 🈲️ 5 5 501 -20 -ゲンキン 🈲️ 5 5 501 -20 -カ 🉑️ 5 5 501 -20 -カノウ 🉑️ 5 5 501 -20 -カマーク 🉑️ 5 5 501 -20 -キョカ 🉑️ 5 5 501 -20 -シン 🈸️ 5 5 501 -20 -シンセイ 🈸️ 5 5 501 -20 -シンマーク 🈸️ 5 5 501 -20 -モウシコミ 🈸️ 5 5 501 -20 -モウシコミマーク 🈸️ 5 5 501 -20 -ゴウ 🈴️ 5 5 501 -20 -ゴウカク 🈴️ 5 5 501 -20 -ゴウマーク 🈴️ 5 5 501 -20 -アキ 🈳️ 5 5 501 -20 -アキマーク 🈳️ 5 5 501 -20 -カラ 🈳️ 5 5 501 -20 -クウ 🈳️ 5 5 501 -20 -クウシツ 🈳️ 5 5 501 -20 -クウセキ 🈳️ 5 5 501 -20 -ソラ 🈳️ 5 5 501 -20 -ソラマーク 🈳️ 5 5 501 -20 -イワイ ㊗️️ 5 5 501 -20 -イワイマーク ㊗️️ 5 5 501 -20 -オイワイ ㊗️️ 5 5 501 -20 -オメデトウ ㊗️️ 5 5 501 -20 -シュク ㊗️️ 5 5 501 -20 -シュクマーク ㊗️️ 5 5 501 -20 -ゴクヒ ㊙️️ 5 5 501 -20 -シャガイヒ ㊙️️ 5 5 501 -20 -ヒ ㊙️️ 5 5 501 -20 -ヒミツ ㊙️️ 5 5 501 -20 -マルヒ ㊙️️ 5 5 501 -20 -エイ 🈺️ 5 5 501 -20 -エイギョウ 🈺️ 5 5 501 -20 -エイギョウチュウ 🈺️ 5 5 501 -20 -エイギョウビ 🈺️ 5 5 501 -20 -エイマーク 🈺️ 5 5 501 -20 -マン 🈵️ 5 5 501 -20 -マンイン 🈵️ 5 5 501 -20 -マンシツ 🈵️ 5 5 501 -20 -マンシャ 🈵️ 5 5 501 -20 -マンセキ 🈵️ 5 5 501 -20 -マンマーク 🈵️ 5 5 501 -20 -アカ 🔴️ 5 5 501 -20 -アカイマル 🔴️ 5 5 501 -20 -オオキイマル 🔴️ 5 5 501 -20 -オオマル 🔴️ 5 5 501 -20 -マル 🔴️ 5 5 501 -20 -マルイボタン 🔴️ 5 5 501 -20 -オレンジ 🟠️ 5 5 501 -20 -オレンジノマル 🟠️ 5 5 501 -20 -マル 🟠️ 5 5 501 -20 -マルイボタン 🟠️ 5 5 501 -20 -キイロ 🟡️ 5 5 501 -20 -キイロイマル 🟡️ 5 5 501 -20 -マル 🟡️ 5 5 501 -20 -マルイボタン 🟡️ 5 5 501 -20 -マル 🟢️ 5 5 501 -20 -マルイボタン 🟢️ 5 5 501 -20 -ミドリ 🟢️ 5 5 501 -20 -ミドリノマル 🟢️ 5 5 501 -20 -アオ 🔵️ 5 5 501 -20 -アオイマル 🔵️ 5 5 501 -20 -オオキイマル 🔵️ 5 5 501 -20 -オオマル 🔵️ 5 5 501 -20 -マル 🔵️ 5 5 501 -20 -マルイボタン 🔵️ 5 5 501 -20 -マル 🟣️ 5 5 501 -20 -マルイボタン 🟣️ 5 5 501 -20 -ムラサキ 🟣️ 5 5 501 -20 -ムラサキノマル 🟣️ 5 5 501 -20 -チャイロ 🟤️ 5 5 501 -20 -チャイロノマル 🟤️ 5 5 501 -20 -マル 🟤️ 5 5 501 -20 -マルイボタン 🟤️ 5 5 501 -20 -クロ ⚫️ 5 5 501 -20 -クロイマル ⚫️ 5 5 501 -20 -マル ⚫️ 5 5 501 -20 -マルイボタン ⚫️ 5 5 501 -20 -シロ ⚪️ 5 5 501 -20 -シロイマル ⚪️ 5 5 501 -20 -マル ⚪️ 5 5 501 -20 -マルイボタン ⚪️ 5 5 501 -20 -アカ 🟥️ 5 5 501 -20 -アカイシカク 🟥️ 5 5 501 -20 -シカク 🟥️ 5 5 501 -20 -セイホウケイ 🟥️ 5 5 501 -20 -オレンジ 🟧️ 5 5 501 -20 -オレンジノシカク 🟧️ 5 5 501 -20 -シカク 🟧️ 5 5 501 -20 -セイホウケイ 🟧️ 5 5 501 -20 -キイロ 🟨️ 5 5 501 -20 -キイロイシカク 🟨️ 5 5 501 -20 -シカク 🟨️ 5 5 501 -20 -セイホウケイ 🟨️ 5 5 501 -20 -シカク 🟩️ 5 5 501 -20 -セイホウケイ 🟩️ 5 5 501 -20 -ミドリ 🟩️ 5 5 501 -20 -ミドリノシカク 🟩️ 5 5 501 -20 -アオ 🟦️ 5 5 501 -20 -アオイシカク 🟦️ 5 5 501 -20 -シカク 🟦️ 5 5 501 -20 -セイホウケイ 🟦️ 5 5 501 -20 -シカク 🟪️ 5 5 501 -20 -セイホウケイ 🟪️ 5 5 501 -20 -ムラサキ 🟪️ 5 5 501 -20 -ムラサキノシカク 🟪️ 5 5 501 -20 -シカク 🟫️ 5 5 501 -20 -セイホウケイ 🟫️ 5 5 501 -20 -チャイロ 🟫️ 5 5 501 -20 -チャイロイシカク 🟫️ 5 5 501 -20 -クロ ⬛️ 5 5 501 -20 -クロシカクトクダイ ⬛️ 5 5 501 -20 -シカク ⬛️ 5 5 501 -20 -セイホウケイ ⬛️ 5 5 501 -20 -シカク ⬜️ 5 5 501 -20 -シロ ⬜️ 5 5 501 -20 -シロシカクトクダイ ⬜️ 5 5 501 -20 -セイホウケイ ⬜️ 5 5 501 -20 -クロ ◼️️ 5 5 501 -20 -クロシカクダイ ◼️️ 5 5 501 -20 -シカク ◼️️ 5 5 501 -20 -セイホウケイ ◼️️ 5 5 501 -20 -シカク ◻️️ 5 5 501 -20 -シロ ◻️️ 5 5 501 -20 -シロシカクダイ ◻️️ 5 5 501 -20 -セイホウケイ ◻️️ 5 5 501 -20 -クロ ◾️ 5 5 501 -20 -クロシカクチュウ ◾️ 5 5 501 -20 -シカク ◾️ 5 5 501 -20 -セイホウケイ ◾️ 5 5 501 -20 -シカク ◽️ 5 5 501 -20 -シロ ◽️ 5 5 501 -20 -シロシカクチュウ ◽️ 5 5 501 -20 -セイホウケイ ◽️ 5 5 501 -20 -クロ ▪️️ 5 5 501 -20 -クロシカクショウ ▪️️ 5 5 501 -20 -シカク ▪️️ 5 5 501 -20 -セイホウケイ ▪️️ 5 5 501 -20 -シカク ▫️️ 5 5 501 -20 -シロ ▫️️ 5 5 501 -20 -シロシカクショウ ▫️️ 5 5 501 -20 -セイホウケイ ▫️️ 5 5 501 -20 -オオキイオレンジノヒシガタ 🔶️ 5 5 501 -20 -オオキイヒシガタ 🔶️ 5 5 501 -20 -オレンジ 🔶️ 5 5 501 -20 -シカク 🔶️ 5 5 501 -20 -ダイア 🔶️ 5 5 501 -20 -ダイヤ 🔶️ 5 5 501 -20 -ヒシガタ 🔶️ 5 5 501 -20 -アオ 🔷️ 5 5 501 -20 -オオキイアオノヒシガタ 🔷️ 5 5 501 -20 -オオキイヒシガタ 🔷️ 5 5 501 -20 -シカク 🔷️ 5 5 501 -20 -ダイア 🔷️ 5 5 501 -20 -ダイヤ 🔷️ 5 5 501 -20 -ヒシガタ 🔷️ 5 5 501 -20 -オレンジ 🔸️ 5 5 501 -20 -シカク 🔸️ 5 5 501 -20 -ダイア 🔸️ 5 5 501 -20 -ダイヤ 🔸️ 5 5 501 -20 -チイサイオレンジノヒシガタ 🔸️ 5 5 501 -20 -チイサイヒシガタ 🔸️ 5 5 501 -20 -ヒシガタ 🔸️ 5 5 501 -20 -アオ 🔹️ 5 5 501 -20 -シカク 🔹️ 5 5 501 -20 -ダイア 🔹️ 5 5 501 -20 -ダイヤ 🔹️ 5 5 501 -20 -チイサイアオノヒシガタ 🔹️ 5 5 501 -20 -チイサイヒシガタ 🔹️ 5 5 501 -20 -ヒシガタ 🔹️ 5 5 501 -20 -アカ 🔺️ 5 5 501 -20 -アカイウエサンカク 🔺️ 5 5 501 -20 -ウエ 🔺️ 5 5 501 -20 -ウエムキサンカク 🔺️ 5 5 501 -20 -サンカク 🔺️ 5 5 501 -20 -アカ 🔻️ 5 5 501 -20 -アカイシタサンカク 🔻️ 5 5 501 -20 -サンカク 🔻️ 5 5 501 -20 -シタ 🔻️ 5 5 501 -20 -シタムキサンカク 🔻️ 5 5 501 -20 -カワイイ 💠️ 5 5 501 -20 -ダイア 💠️ 5 5 501 -20 -ダイヤ 💠️ 5 5 501 -20 -ドットツキヒシガタ 💠️ 5 5 501 -20 -ヒシガタ 💠️ 5 5 501 -20 -ニジュウマル 🔘️ 5 5 501 -20 -ボタン 🔘️ 5 5 501 -20 -ラジオボタン 🔘️ 5 5 501 -20 -シカク 🔳️ 5 5 501 -20 -シカクボタン 🔳️ 5 5 501 -20 -シロワクシカク 🔳️ 5 5 501 -20 -セイホウケイ 🔳️ 5 5 501 -20 -ボタン 🔳️ 5 5 501 -20 -クロワクシカク 🔲️ 5 5 501 -20 -シカク 🔲️ 5 5 501 -20 -シカクボタン 🔲️ 5 5 501 -20 -セイホウケイ 🔲️ 5 5 501 -20 -ボタン 🔲️ 5 5 501 -20 -スポーツ 🏁️ 5 5 501 -20 -チェッカー 🏁️ 5 5 501 -20 -チェッカーフラグ 🏁️ 5 5 501 -20 -チェッカーフラッグ 🏁️ 5 5 501 -20 -ハタ 🏁️ 5 5 501 -20 -フラグ 🏁️ 5 5 501 -20 -フラッグ 🏁️ 5 5 501 -20 -レース 🏁️ 5 5 501 -20 -ゴルフ 🚩️ 5 5 501 -20 -サンカクノハタ 🚩️ 5 5 501 -20 -スポーツ 🚩️ 5 5 501 -20 -ハタ 🚩️ 5 5 501 -20 -フラグ 🚩️ 5 5 501 -20 -フラッグ 🚩️ 5 5 501 -20 -シュクジツ 🎌️ 5 5 501 -20 -シュクジツノハタ 🎌️ 5 5 501 -20 -ハタ 🎌️ 5 5 501 -20 -ヒノマル 🎌️ 5 5 501 -20 -フラグ 🎌️ 5 5 501 -20 -フラッグ 🎌️ 5 5 501 -20 -クロ 🏴️ 5 5 501 -20 -クロハタ 🏴️ 5 5 501 -20 -コッキ 🏴️ 5 5 501 -20 -ハタ 🏴️ 5 5 501 -20 -フラグ 🏴️ 5 5 501 -20 -フラッグ 🏴️ 5 5 501 -20 -シラハタ 🏳️️ 5 5 501 -20 -シロ 🏳️️ 5 5 501 -20 -シロハタ 🏳️️ 5 5 501 -20 -ハタ 🏳️️ 5 5 501 -20 -ハッキ 🏳️️ 5 5 501 -20 -フラグ 🏳️️ 5 5 501 -20 -フラッグ 🏳️️ 5 5 501 -20 -lgbt 🏳️‍🌈️ 5 5 501 -20 -ニジイロノハタ 🏳️‍🌈️ 5 5 501 -20 -ハタ 🏳️‍🌈️ 5 5 501 -20 -フラグ 🏳️‍🌈️ 5 5 501 -20 -フラッグ 🏳️‍🌈️ 5 5 501 -20 -レインボー 🏳️‍🌈️ 5 5 501 -20 -レインボーフラッグ 🏳️‍🌈️ 5 5 501 -20 -lgbt 🏳️‍⚧️️ 5 5 501 -20 -ティージー 🏳️‍⚧️️ 5 5 501 -20 -トランスジェンダー 🏳️‍⚧️️ 5 5 501 -20 -トランスジェンダーフラッグ 🏳️‍⚧️️ 5 5 501 -20 -ハタ 🏳️‍⚧️️ 5 5 501 -20 -フラグ 🏳️‍⚧️️ 5 5 501 -20 -フラッグ 🏳️‍⚧️️ 5 5 501 -20 -カイゾク 🏴‍☠️️ 5 5 501 -20 -カイゾクキ 🏴‍☠️️ 5 5 501 -20 -ジョリーロジャー 🏴‍☠️️ 5 5 501 -20 -タカラモノ 🏴‍☠️️ 5 5 501 -20 -ホウモツ 🏴‍☠️️ 5 5 501 -20 -リャクダツ 🏴‍☠️️ 5 5 501 -20 -アセンショントウ 🇦🇨️ 5 5 501 -20 -コッキ 🇦🇨️ 5 5 501 -20 -ハタ 🇦🇨️ 5 5 501 -20 -フラグ 🇦🇨️ 5 5 501 -20 -フラッグ 🇦🇨️ 5 5 501 -20 -アンドラ 🇦🇩️ 5 5 501 -20 -コッキ 🇦🇩️ 5 5 501 -20 -ハタ 🇦🇩️ 5 5 501 -20 -フラグ 🇦🇩️ 5 5 501 -20 -フラッグ 🇦🇩️ 5 5 501 -20 -アラブ 🇦🇪️ 5 5 501 -20 -アラブシュチョウコクレンポウ 🇦🇪️ 5 5 501 -20 -コッキ 🇦🇪️ 5 5 501 -20 -ハタ 🇦🇪️ 5 5 501 -20 -フラグ 🇦🇪️ 5 5 501 -20 -フラッグ 🇦🇪️ 5 5 501 -20 -アフガニスタン 🇦🇫️ 5 5 501 -20 -コッキ 🇦🇫️ 5 5 501 -20 -ハタ 🇦🇫️ 5 5 501 -20 -フラグ 🇦🇫️ 5 5 501 -20 -フラッグ 🇦🇫️ 5 5 501 -20 -アンティグアバーブーダ 🇦🇬️ 5 5 501 -20 -アンティグア・バーブーダ 🇦🇬️ 5 5 501 -20 -コッキ 🇦🇬️ 5 5 501 -20 -ハタ 🇦🇬️ 5 5 501 -20 -フラグ 🇦🇬️ 5 5 501 -20 -フラッグ 🇦🇬️ 5 5 501 -20 -アンギラ 🇦🇮️ 5 5 501 -20 -コッキ 🇦🇮️ 5 5 501 -20 -ハタ 🇦🇮️ 5 5 501 -20 -フラグ 🇦🇮️ 5 5 501 -20 -フラッグ 🇦🇮️ 5 5 501 -20 -アルバニア 🇦🇱️ 5 5 501 -20 -コッキ 🇦🇱️ 5 5 501 -20 -ハタ 🇦🇱️ 5 5 501 -20 -フラグ 🇦🇱️ 5 5 501 -20 -フラッグ 🇦🇱️ 5 5 501 -20 -アルメニア 🇦🇲️ 5 5 501 -20 -コッキ 🇦🇲️ 5 5 501 -20 -ハタ 🇦🇲️ 5 5 501 -20 -フラグ 🇦🇲️ 5 5 501 -20 -フラッグ 🇦🇲️ 5 5 501 -20 -アンゴラ 🇦🇴️ 5 5 501 -20 -コッキ 🇦🇴️ 5 5 501 -20 -ハタ 🇦🇴️ 5 5 501 -20 -フラグ 🇦🇴️ 5 5 501 -20 -フラッグ 🇦🇴️ 5 5 501 -20 -コッキ 🇦🇶️ 5 5 501 -20 -ナンキョク 🇦🇶️ 5 5 501 -20 -ナンキョクタイリク 🇦🇶️ 5 5 501 -20 -ハタ 🇦🇶️ 5 5 501 -20 -フラグ 🇦🇶️ 5 5 501 -20 -フラッグ 🇦🇶️ 5 5 501 -20 -アルゼンチン 🇦🇷️ 5 5 501 -20 -コッキ 🇦🇷️ 5 5 501 -20 -ハタ 🇦🇷️ 5 5 501 -20 -フラグ 🇦🇷️ 5 5 501 -20 -フラッグ 🇦🇷️ 5 5 501 -20 -アメリカリョウサモア 🇦🇸️ 5 5 501 -20 -コッキ 🇦🇸️ 5 5 501 -20 -ハタ 🇦🇸️ 5 5 501 -20 -フラグ 🇦🇸️ 5 5 501 -20 -フラッグ 🇦🇸️ 5 5 501 -20 -ベイリョウサモア 🇦🇸️ 5 5 501 -20 -オーストリア 🇦🇹️ 5 5 501 -20 -コッキ 🇦🇹️ 5 5 501 -20 -ハタ 🇦🇹️ 5 5 501 -20 -フラグ 🇦🇹️ 5 5 501 -20 -フラッグ 🇦🇹️ 5 5 501 -20 -オーストラリア 🇦🇺️ 5 5 501 -20 -コッキ 🇦🇺️ 5 5 501 -20 -ハタ 🇦🇺️ 5 5 501 -20 -フラグ 🇦🇺️ 5 5 501 -20 -フラッグ 🇦🇺️ 5 5 501 -20 -アルバ 🇦🇼️ 5 5 501 -20 -コッキ 🇦🇼️ 5 5 501 -20 -ハタ 🇦🇼️ 5 5 501 -20 -フラグ 🇦🇼️ 5 5 501 -20 -フラッグ 🇦🇼️ 5 5 501 -20 -オーランドショトウ 🇦🇽️ 5 5 501 -20 -コッキ 🇦🇽️ 5 5 501 -20 -ハタ 🇦🇽️ 5 5 501 -20 -フラグ 🇦🇽️ 5 5 501 -20 -フラッグ 🇦🇽️ 5 5 501 -20 -アゼルバイジャン 🇦🇿️ 5 5 501 -20 -コッキ 🇦🇿️ 5 5 501 -20 -ハタ 🇦🇿️ 5 5 501 -20 -フラグ 🇦🇿️ 5 5 501 -20 -フラッグ 🇦🇿️ 5 5 501 -20 -コッキ 🇧🇦️ 5 5 501 -20 -ハタ 🇧🇦️ 5 5 501 -20 -フラグ 🇧🇦️ 5 5 501 -20 -フラッグ 🇧🇦️ 5 5 501 -20 -ボスニアヘルツェゴビナ 🇧🇦️ 5 5 501 -20 -ボスニア・ヘルツェゴビナ 🇧🇦️ 5 5 501 -20 -コッキ 🇧🇧️ 5 5 501 -20 -ハタ 🇧🇧️ 5 5 501 -20 -バルバドス 🇧🇧️ 5 5 501 -20 -フラグ 🇧🇧️ 5 5 501 -20 -フラッグ 🇧🇧️ 5 5 501 -20 -コッキ 🇧🇩️ 5 5 501 -20 -ハタ 🇧🇩️ 5 5 501 -20 -バングラデシュ 🇧🇩️ 5 5 501 -20 -フラグ 🇧🇩️ 5 5 501 -20 -フラッグ 🇧🇩️ 5 5 501 -20 -コッキ 🇧🇪️ 5 5 501 -20 -ハタ 🇧🇪️ 5 5 501 -20 -フラグ 🇧🇪️ 5 5 501 -20 -フラッグ 🇧🇪️ 5 5 501 -20 -ベルギー 🇧🇪️ 5 5 501 -20 -コッキ 🇧🇫️ 5 5 501 -20 -ハタ 🇧🇫️ 5 5 501 -20 -フラグ 🇧🇫️ 5 5 501 -20 -フラッグ 🇧🇫️ 5 5 501 -20 -ブルキナファソ 🇧🇫️ 5 5 501 -20 -コッキ 🇧🇬️ 5 5 501 -20 -ハタ 🇧🇬️ 5 5 501 -20 -フラグ 🇧🇬️ 5 5 501 -20 -フラッグ 🇧🇬️ 5 5 501 -20 -ブルガリア 🇧🇬️ 5 5 501 -20 -コッキ 🇧🇭️ 5 5 501 -20 -ハタ 🇧🇭️ 5 5 501 -20 -バーレーン 🇧🇭️ 5 5 501 -20 -フラグ 🇧🇭️ 5 5 501 -20 -フラッグ 🇧🇭️ 5 5 501 -20 -コッキ 🇧🇮️ 5 5 501 -20 -ハタ 🇧🇮️ 5 5 501 -20 -フラグ 🇧🇮️ 5 5 501 -20 -フラッグ 🇧🇮️ 5 5 501 -20 -ブルンジ 🇧🇮️ 5 5 501 -20 -コッキ 🇧🇯️ 5 5 501 -20 -ハタ 🇧🇯️ 5 5 501 -20 -フラグ 🇧🇯️ 5 5 501 -20 -フラッグ 🇧🇯️ 5 5 501 -20 -ベナン 🇧🇯️ 5 5 501 -20 -コッキ 🇧🇱️ 5 5 501 -20 -サンバルテルミー 🇧🇱️ 5 5 501 -20 -サン・バルテルミー 🇧🇱️ 5 5 501 -20 -ハタ 🇧🇱️ 5 5 501 -20 -フラグ 🇧🇱️ 5 5 501 -20 -フラッグ 🇧🇱️ 5 5 501 -20 -コッキ 🇧🇲️ 5 5 501 -20 -ハタ 🇧🇲️ 5 5 501 -20 -バミューダ 🇧🇲️ 5 5 501 -20 -フラグ 🇧🇲️ 5 5 501 -20 -フラッグ 🇧🇲️ 5 5 501 -20 -コッキ 🇧🇳️ 5 5 501 -20 -ハタ 🇧🇳️ 5 5 501 -20 -フラグ 🇧🇳️ 5 5 501 -20 -フラッグ 🇧🇳️ 5 5 501 -20 -ブルネイ 🇧🇳️ 5 5 501 -20 -コッキ 🇧🇴️ 5 5 501 -20 -ハタ 🇧🇴️ 5 5 501 -20 -フラグ 🇧🇴️ 5 5 501 -20 -フラッグ 🇧🇴️ 5 5 501 -20 -ボリビア 🇧🇴️ 5 5 501 -20 -オランダリョウカリブ 🇧🇶️ 5 5 501 -20 -コッキ 🇧🇶️ 5 5 501 -20 -ハタ 🇧🇶️ 5 5 501 -20 -フラグ 🇧🇶️ 5 5 501 -20 -フラッグ 🇧🇶️ 5 5 501 -20 -コッキ 🇧🇷️ 5 5 501 -20 -ハタ 🇧🇷️ 5 5 501 -20 -フラグ 🇧🇷️ 5 5 501 -20 -フラッグ 🇧🇷️ 5 5 501 -20 -ブラジル 🇧🇷️ 5 5 501 -20 -コッキ 🇧🇸️ 5 5 501 -20 -ハタ 🇧🇸️ 5 5 501 -20 -バハマ 🇧🇸️ 5 5 501 -20 -フラグ 🇧🇸️ 5 5 501 -20 -フラッグ 🇧🇸️ 5 5 501 -20 -コッキ 🇧🇹️ 5 5 501 -20 -ハタ 🇧🇹️ 5 5 501 -20 -フラグ 🇧🇹️ 5 5 501 -20 -フラッグ 🇧🇹️ 5 5 501 -20 -ブータン 🇧🇹️ 5 5 501 -20 -コッキ 🇧🇻️ 5 5 501 -20 -ハタ 🇧🇻️ 5 5 501 -20 -フラグ 🇧🇻️ 5 5 501 -20 -フラッグ 🇧🇻️ 5 5 501 -20 -ブーベトウ 🇧🇻️ 5 5 501 -20 -コッキ 🇧🇼️ 5 5 501 -20 -ハタ 🇧🇼️ 5 5 501 -20 -フラグ 🇧🇼️ 5 5 501 -20 -フラッグ 🇧🇼️ 5 5 501 -20 -ボツワナ 🇧🇼️ 5 5 501 -20 -コッキ 🇧🇾️ 5 5 501 -20 -ハタ 🇧🇾️ 5 5 501 -20 -フラグ 🇧🇾️ 5 5 501 -20 -フラッグ 🇧🇾️ 5 5 501 -20 -ベラルーシ 🇧🇾️ 5 5 501 -20 -コッキ 🇧🇿️ 5 5 501 -20 -ハタ 🇧🇿️ 5 5 501 -20 -フラグ 🇧🇿️ 5 5 501 -20 -フラッグ 🇧🇿️ 5 5 501 -20 -ベリーズ 🇧🇿️ 5 5 501 -20 -カナダ 🇨🇦️ 5 5 501 -20 -コッキ 🇨🇦️ 5 5 501 -20 -ハタ 🇨🇦️ 5 5 501 -20 -フラグ 🇨🇦️ 5 5 501 -20 -フラッグ 🇨🇦️ 5 5 501 -20 -キーリングショトウ 🇨🇨️ 5 5 501 -20 -ココスショトウ 🇨🇨️ 5 5 501 -20 -コッキ 🇨🇨️ 5 5 501 -20 -ハタ 🇨🇨️ 5 5 501 -20 -フラグ 🇨🇨️ 5 5 501 -20 -フラッグ 🇨🇨️ 5 5 501 -20 -キンシャサ 🇨🇩️ 5 5 501 -20 -コッキ 🇨🇩️ 5 5 501 -20 -コンゴミンシュキョウワコク 🇨🇩️ 5 5 501 -20 -ハタ 🇨🇩️ 5 5 501 -20 -フラグ 🇨🇩️ 5 5 501 -20 -フラッグ 🇨🇩️ 5 5 501 -20 -コッキ 🇨🇫️ 5 5 501 -20 -チュウオウアフリカキョウワコク 🇨🇫️ 5 5 501 -20 -ハタ 🇨🇫️ 5 5 501 -20 -フラグ 🇨🇫️ 5 5 501 -20 -フラッグ 🇨🇫️ 5 5 501 -20 -コッキ 🇨🇬️ 5 5 501 -20 -コンゴキョウワコク 🇨🇬️ 5 5 501 -20 -ハタ 🇨🇬️ 5 5 501 -20 -フラグ 🇨🇬️ 5 5 501 -20 -フラッグ 🇨🇬️ 5 5 501 -20 -ブラザビル 🇨🇬️ 5 5 501 -20 -コッキ 🇨🇭️ 5 5 501 -20 -スイス 🇨🇭️ 5 5 501 -20 -ハタ 🇨🇭️ 5 5 501 -20 -フラグ 🇨🇭️ 5 5 501 -20 -フラッグ 🇨🇭️ 5 5 501 -20 -コッキ 🇨🇮️ 5 5 501 -20 -コートジボワール 🇨🇮️ 5 5 501 -20 -ハタ 🇨🇮️ 5 5 501 -20 -フラグ 🇨🇮️ 5 5 501 -20 -フラッグ 🇨🇮️ 5 5 501 -20 -クックショトウ 🇨🇰️ 5 5 501 -20 -コッキ 🇨🇰️ 5 5 501 -20 -ハタ 🇨🇰️ 5 5 501 -20 -フラグ 🇨🇰️ 5 5 501 -20 -フラッグ 🇨🇰️ 5 5 501 -20 -コッキ 🇨🇱️ 5 5 501 -20 -チリ 🇨🇱️ 5 5 501 -20 -ハタ 🇨🇱️ 5 5 501 -20 -フラグ 🇨🇱️ 5 5 501 -20 -フラッグ 🇨🇱️ 5 5 501 -20 -カメルーン 🇨🇲️ 5 5 501 -20 -コッキ 🇨🇲️ 5 5 501 -20 -ハタ 🇨🇲️ 5 5 501 -20 -フラグ 🇨🇲️ 5 5 501 -20 -フラッグ 🇨🇲️ 5 5 501 -20 -コッキ 🇨🇳️ 5 5 501 -20 -チュウゴク 🇨🇳️ 5 5 501 -20 -ハタ 🇨🇳️ 5 5 501 -20 -フラグ 🇨🇳️ 5 5 501 -20 -フラッグ 🇨🇳️ 5 5 501 -20 -コッキ 🇨🇴️ 5 5 501 -20 -コロンビア 🇨🇴️ 5 5 501 -20 -ハタ 🇨🇴️ 5 5 501 -20 -フラグ 🇨🇴️ 5 5 501 -20 -フラッグ 🇨🇴️ 5 5 501 -20 -クリッパートントウ 🇨🇵️ 5 5 501 -20 -コッキ 🇨🇵️ 5 5 501 -20 -ハタ 🇨🇵️ 5 5 501 -20 -フラグ 🇨🇵️ 5 5 501 -20 -フラッグ 🇨🇵️ 5 5 501 -20 -コスタリカ 🇨🇷️ 5 5 501 -20 -コッキ 🇨🇷️ 5 5 501 -20 -ハタ 🇨🇷️ 5 5 501 -20 -フラグ 🇨🇷️ 5 5 501 -20 -フラッグ 🇨🇷️ 5 5 501 -20 -キューバ 🇨🇺️ 5 5 501 -20 -コッキ 🇨🇺️ 5 5 501 -20 -ハタ 🇨🇺️ 5 5 501 -20 -フラグ 🇨🇺️ 5 5 501 -20 -フラッグ 🇨🇺️ 5 5 501 -20 -カーボベルデ 🇨🇻️ 5 5 501 -20 -コッキ 🇨🇻️ 5 5 501 -20 -ハタ 🇨🇻️ 5 5 501 -20 -フラグ 🇨🇻️ 5 5 501 -20 -フラッグ 🇨🇻️ 5 5 501 -20 -キュラソー 🇨🇼️ 5 5 501 -20 -キュラソートウ 🇨🇼️ 5 5 501 -20 -コッキ 🇨🇼️ 5 5 501 -20 -ハタ 🇨🇼️ 5 5 501 -20 -フラグ 🇨🇼️ 5 5 501 -20 -フラッグ 🇨🇼️ 5 5 501 -20 -クリスマストウ 🇨🇽️ 5 5 501 -20 -コッキ 🇨🇽️ 5 5 501 -20 -ハタ 🇨🇽️ 5 5 501 -20 -フラグ 🇨🇽️ 5 5 501 -20 -フラッグ 🇨🇽️ 5 5 501 -20 -キプロス 🇨🇾️ 5 5 501 -20 -コッキ 🇨🇾️ 5 5 501 -20 -ハタ 🇨🇾️ 5 5 501 -20 -フラグ 🇨🇾️ 5 5 501 -20 -フラッグ 🇨🇾️ 5 5 501 -20 -コッキ 🇨🇿️ 5 5 501 -20 -チェコ 🇨🇿️ 5 5 501 -20 -ハタ 🇨🇿️ 5 5 501 -20 -フラグ 🇨🇿️ 5 5 501 -20 -フラッグ 🇨🇿️ 5 5 501 -20 -コッキ 🇩🇪️ 5 5 501 -20 -ドイツ 🇩🇪️ 5 5 501 -20 -ハタ 🇩🇪️ 5 5 501 -20 -フラグ 🇩🇪️ 5 5 501 -20 -フラッグ 🇩🇪️ 5 5 501 -20 -コッキ 🇩🇬️ 5 5 501 -20 -ディエゴガルシアトウ 🇩🇬️ 5 5 501 -20 -ハタ 🇩🇬️ 5 5 501 -20 -フラグ 🇩🇬️ 5 5 501 -20 -フラッグ 🇩🇬️ 5 5 501 -20 -コッキ 🇩🇯️ 5 5 501 -20 -ジブチ 🇩🇯️ 5 5 501 -20 -ハタ 🇩🇯️ 5 5 501 -20 -フラグ 🇩🇯️ 5 5 501 -20 -フラッグ 🇩🇯️ 5 5 501 -20 -コッキ 🇩🇰️ 5 5 501 -20 -デンマーク 🇩🇰️ 5 5 501 -20 -ハタ 🇩🇰️ 5 5 501 -20 -フラグ 🇩🇰️ 5 5 501 -20 -フラッグ 🇩🇰️ 5 5 501 -20 -コッキ 🇩🇲️ 5 5 501 -20 -ドミニカコク 🇩🇲️ 5 5 501 -20 -ハタ 🇩🇲️ 5 5 501 -20 -フラグ 🇩🇲️ 5 5 501 -20 -フラッグ 🇩🇲️ 5 5 501 -20 -コッキ 🇩🇴️ 5 5 501 -20 -ドミニカキョウワコク 🇩🇴️ 5 5 501 -20 -ハタ 🇩🇴️ 5 5 501 -20 -フラグ 🇩🇴️ 5 5 501 -20 -フラッグ 🇩🇴️ 5 5 501 -20 -アルジェリア 🇩🇿️ 5 5 501 -20 -コッキ 🇩🇿️ 5 5 501 -20 -ハタ 🇩🇿️ 5 5 501 -20 -フラグ 🇩🇿️ 5 5 501 -20 -フラッグ 🇩🇿️ 5 5 501 -20 -コッキ 🇪🇦️ 5 5 501 -20 -セウタトメリリャ 🇪🇦️ 5 5 501 -20 -セウタ・メリリャ 🇪🇦️ 5 5 501 -20 -ハタ 🇪🇦️ 5 5 501 -20 -フラグ 🇪🇦️ 5 5 501 -20 -フラッグ 🇪🇦️ 5 5 501 -20 -エクアドル 🇪🇨️ 5 5 501 -20 -コッキ 🇪🇨️ 5 5 501 -20 -ハタ 🇪🇨️ 5 5 501 -20 -フラグ 🇪🇨️ 5 5 501 -20 -フラッグ 🇪🇨️ 5 5 501 -20 -エストニア 🇪🇪️ 5 5 501 -20 -コッキ 🇪🇪️ 5 5 501 -20 -ハタ 🇪🇪️ 5 5 501 -20 -フラグ 🇪🇪️ 5 5 501 -20 -フラッグ 🇪🇪️ 5 5 501 -20 -エジプト 🇪🇬️ 5 5 501 -20 -コッキ 🇪🇬️ 5 5 501 -20 -ハタ 🇪🇬️ 5 5 501 -20 -フラグ 🇪🇬️ 5 5 501 -20 -フラッグ 🇪🇬️ 5 5 501 -20 -コッキ 🇪🇭️ 5 5 501 -20 -ニシサハラ 🇪🇭️ 5 5 501 -20 -ハタ 🇪🇭️ 5 5 501 -20 -フラグ 🇪🇭️ 5 5 501 -20 -フラッグ 🇪🇭️ 5 5 501 -20 -エリトリア 🇪🇷️ 5 5 501 -20 -コッキ 🇪🇷️ 5 5 501 -20 -ハタ 🇪🇷️ 5 5 501 -20 -フラグ 🇪🇷️ 5 5 501 -20 -フラッグ 🇪🇷️ 5 5 501 -20 -コッキ 🇪🇸️ 5 5 501 -20 -スペイン 🇪🇸️ 5 5 501 -20 -ハタ 🇪🇸️ 5 5 501 -20 -フラグ 🇪🇸️ 5 5 501 -20 -フラッグ 🇪🇸️ 5 5 501 -20 -エチオピア 🇪🇹️ 5 5 501 -20 -コッキ 🇪🇹️ 5 5 501 -20 -ハタ 🇪🇹️ 5 5 501 -20 -フラグ 🇪🇹️ 5 5 501 -20 -フラッグ 🇪🇹️ 5 5 501 -20 -eu 🇪🇺️ 5 5 501 -20 -イーユー 🇪🇺️ 5 5 501 -20 -オウシュウレンゴウ 🇪🇺️ 5 5 501 -20 -コッキ 🇪🇺️ 5 5 501 -20 -ハタ 🇪🇺️ 5 5 501 -20 -フラグ 🇪🇺️ 5 5 501 -20 -フラッグ 🇪🇺️ 5 5 501 -20 -コッキ 🇫🇮️ 5 5 501 -20 -ハタ 🇫🇮️ 5 5 501 -20 -フィンランド 🇫🇮️ 5 5 501 -20 -フラグ 🇫🇮️ 5 5 501 -20 -フラッグ 🇫🇮️ 5 5 501 -20 -コッキ 🇫🇯️ 5 5 501 -20 -ハタ 🇫🇯️ 5 5 501 -20 -フィジー 🇫🇯️ 5 5 501 -20 -フラグ 🇫🇯️ 5 5 501 -20 -フラッグ 🇫🇯️ 5 5 501 -20 -コッキ 🇫🇰️ 5 5 501 -20 -ハタ 🇫🇰️ 5 5 501 -20 -フォークランドショトウ 🇫🇰️ 5 5 501 -20 -フラグ 🇫🇰️ 5 5 501 -20 -フラッグ 🇫🇰️ 5 5 501 -20 -コッキ 🇫🇲️ 5 5 501 -20 -ハタ 🇫🇲️ 5 5 501 -20 -フラグ 🇫🇲️ 5 5 501 -20 -フラッグ 🇫🇲️ 5 5 501 -20 -ミクロネシア 🇫🇲️ 5 5 501 -20 -ミクロネシアレンポウ 🇫🇲️ 5 5 501 -20 -コッキ 🇫🇴️ 5 5 501 -20 -ハタ 🇫🇴️ 5 5 501 -20 -フェローショトウ 🇫🇴️ 5 5 501 -20 -フラグ 🇫🇴️ 5 5 501 -20 -フラッグ 🇫🇴️ 5 5 501 -20 -コッキ 🇫🇷️ 5 5 501 -20 -ハタ 🇫🇷️ 5 5 501 -20 -フラグ 🇫🇷️ 5 5 501 -20 -フラッグ 🇫🇷️ 5 5 501 -20 -フランス 🇫🇷️ 5 5 501 -20 -ガボン 🇬🇦️ 5 5 501 -20 -コッキ 🇬🇦️ 5 5 501 -20 -ハタ 🇬🇦️ 5 5 501 -20 -フラグ 🇬🇦️ 5 5 501 -20 -フラッグ 🇬🇦️ 5 5 501 -20 -イギリス 🇬🇧️ 5 5 501 -20 -コッキ 🇬🇧️ 5 5 501 -20 -ハタ 🇬🇧️ 5 5 501 -20 -フラグ 🇬🇧️ 5 5 501 -20 -フラッグ 🇬🇧️ 5 5 501 -20 -グレナダ 🇬🇩️ 5 5 501 -20 -コッキ 🇬🇩️ 5 5 501 -20 -ハタ 🇬🇩️ 5 5 501 -20 -フラグ 🇬🇩️ 5 5 501 -20 -フラッグ 🇬🇩️ 5 5 501 -20 -コッキ 🇬🇪️ 5 5 501 -20 -ジョージア 🇬🇪️ 5 5 501 -20 -ハタ 🇬🇪️ 5 5 501 -20 -フラグ 🇬🇪️ 5 5 501 -20 -フラッグ 🇬🇪️ 5 5 501 -20 -コッキ 🇬🇫️ 5 5 501 -20 -ハタ 🇬🇫️ 5 5 501 -20 -フツリョウギアナ 🇬🇫️ 5 5 501 -20 -フラグ 🇬🇫️ 5 5 501 -20 -フラッグ 🇬🇫️ 5 5 501 -20 -フランスリョウギアナ 🇬🇫️ 5 5 501 -20 -ガーンジー 🇬🇬️ 5 5 501 -20 -コッキ 🇬🇬️ 5 5 501 -20 -ハタ 🇬🇬️ 5 5 501 -20 -フラグ 🇬🇬️ 5 5 501 -20 -フラッグ 🇬🇬️ 5 5 501 -20 -ガーナ 🇬🇭️ 5 5 501 -20 -コッキ 🇬🇭️ 5 5 501 -20 -ハタ 🇬🇭️ 5 5 501 -20 -フラグ 🇬🇭️ 5 5 501 -20 -フラッグ 🇬🇭️ 5 5 501 -20 -コッキ 🇬🇮️ 5 5 501 -20 -ジブラルタル 🇬🇮️ 5 5 501 -20 -ハタ 🇬🇮️ 5 5 501 -20 -フラグ 🇬🇮️ 5 5 501 -20 -フラッグ 🇬🇮️ 5 5 501 -20 -グリーンランド 🇬🇱️ 5 5 501 -20 -コッキ 🇬🇱️ 5 5 501 -20 -ハタ 🇬🇱️ 5 5 501 -20 -フラグ 🇬🇱️ 5 5 501 -20 -フラッグ 🇬🇱️ 5 5 501 -20 -ガンビア 🇬🇲️ 5 5 501 -20 -コッキ 🇬🇲️ 5 5 501 -20 -ハタ 🇬🇲️ 5 5 501 -20 -フラグ 🇬🇲️ 5 5 501 -20 -フラッグ 🇬🇲️ 5 5 501 -20 -ギニア 🇬🇳️ 5 5 501 -20 -コッキ 🇬🇳️ 5 5 501 -20 -ハタ 🇬🇳️ 5 5 501 -20 -フラグ 🇬🇳️ 5 5 501 -20 -フラッグ 🇬🇳️ 5 5 501 -20 -グアドループ 🇬🇵️ 5 5 501 -20 -コッキ 🇬🇵️ 5 5 501 -20 -ハタ 🇬🇵️ 5 5 501 -20 -フラグ 🇬🇵️ 5 5 501 -20 -フラッグ 🇬🇵️ 5 5 501 -20 -コッキ 🇬🇶️ 5 5 501 -20 -セキドウギニア 🇬🇶️ 5 5 501 -20 -ハタ 🇬🇶️ 5 5 501 -20 -フラグ 🇬🇶️ 5 5 501 -20 -フラッグ 🇬🇶️ 5 5 501 -20 -ギリシャ 🇬🇷️ 5 5 501 -20 -コッキ 🇬🇷️ 5 5 501 -20 -ハタ 🇬🇷️ 5 5 501 -20 -フラグ 🇬🇷️ 5 5 501 -20 -フラッグ 🇬🇷️ 5 5 501 -20 -コッキ 🇬🇸️ 5 5 501 -20 -サウスジョージア・サウスサンドウィッチショトウ 🇬🇸️ 5 5 501 -20 -ハタ 🇬🇸️ 5 5 501 -20 -フラグ 🇬🇸️ 5 5 501 -20 -フラッグ 🇬🇸️ 5 5 501 -20 -グアテマラ 🇬🇹️ 5 5 501 -20 -コッキ 🇬🇹️ 5 5 501 -20 -ハタ 🇬🇹️ 5 5 501 -20 -フラグ 🇬🇹️ 5 5 501 -20 -フラッグ 🇬🇹️ 5 5 501 -20 -グアム 🇬🇺️ 5 5 501 -20 -コッキ 🇬🇺️ 5 5 501 -20 -ハタ 🇬🇺️ 5 5 501 -20 -フラグ 🇬🇺️ 5 5 501 -20 -フラッグ 🇬🇺️ 5 5 501 -20 -ギニアビサウ 🇬🇼️ 5 5 501 -20 -コッキ 🇬🇼️ 5 5 501 -20 -ハタ 🇬🇼️ 5 5 501 -20 -フラグ 🇬🇼️ 5 5 501 -20 -フラッグ 🇬🇼️ 5 5 501 -20 -ガイアナ 🇬🇾️ 5 5 501 -20 -コッキ 🇬🇾️ 5 5 501 -20 -ハタ 🇬🇾️ 5 5 501 -20 -フラグ 🇬🇾️ 5 5 501 -20 -フラッグ 🇬🇾️ 5 5 501 -20 -コッキ 🇭🇰️ 5 5 501 -20 -チュウカジンミンキョウワコクホンコントクベツギョウセイク 🇭🇰️ 5 5 501 -20 -ハタ 🇭🇰️ 5 5 501 -20 -フラグ 🇭🇰️ 5 5 501 -20 -フラッグ 🇭🇰️ 5 5 501 -20 -ホンコン 🇭🇰️ 5 5 501 -20 -コッキ 🇭🇲️ 5 5 501 -20 -ハタ 🇭🇲️ 5 5 501 -20 -ハードトウ 🇭🇲️ 5 5 501 -20 -ハードトウトマクドナルドショトウ 🇭🇲️ 5 5 501 -20 -ハードトウ・マクドナルドショトウ 🇭🇲️ 5 5 501 -20 -フラグ 🇭🇲️ 5 5 501 -20 -フラッグ 🇭🇲️ 5 5 501 -20 -マクドナルドショトウ 🇭🇲️ 5 5 501 -20 -コッキ 🇭🇳️ 5 5 501 -20 -ハタ 🇭🇳️ 5 5 501 -20 -フラグ 🇭🇳️ 5 5 501 -20 -フラッグ 🇭🇳️ 5 5 501 -20 -ホンジュラス 🇭🇳️ 5 5 501 -20 -クロアチア 🇭🇷️ 5 5 501 -20 -コッキ 🇭🇷️ 5 5 501 -20 -ハタ 🇭🇷️ 5 5 501 -20 -フラグ 🇭🇷️ 5 5 501 -20 -フラッグ 🇭🇷️ 5 5 501 -20 -コッキ 🇭🇹️ 5 5 501 -20 -ハイチ 🇭🇹️ 5 5 501 -20 -ハタ 🇭🇹️ 5 5 501 -20 -フラグ 🇭🇹️ 5 5 501 -20 -フラッグ 🇭🇹️ 5 5 501 -20 -コッキ 🇭🇺️ 5 5 501 -20 -ハタ 🇭🇺️ 5 5 501 -20 -ハンガリー 🇭🇺️ 5 5 501 -20 -フラグ 🇭🇺️ 5 5 501 -20 -フラッグ 🇭🇺️ 5 5 501 -20 -カナリアショトウ 🇮🇨️ 5 5 501 -20 -コッキ 🇮🇨️ 5 5 501 -20 -ハタ 🇮🇨️ 5 5 501 -20 -フラグ 🇮🇨️ 5 5 501 -20 -フラッグ 🇮🇨️ 5 5 501 -20 -インドネシア 🇮🇩️ 5 5 501 -20 -コッキ 🇮🇩️ 5 5 501 -20 -ハタ 🇮🇩️ 5 5 501 -20 -フラグ 🇮🇩️ 5 5 501 -20 -フラッグ 🇮🇩️ 5 5 501 -20 -アイルランド 🇮🇪️ 5 5 501 -20 -コッキ 🇮🇪️ 5 5 501 -20 -ハタ 🇮🇪️ 5 5 501 -20 -フラグ 🇮🇪️ 5 5 501 -20 -フラッグ 🇮🇪️ 5 5 501 -20 -イスラエル 🇮🇱️ 5 5 501 -20 -コッキ 🇮🇱️ 5 5 501 -20 -ハタ 🇮🇱️ 5 5 501 -20 -フラグ 🇮🇱️ 5 5 501 -20 -フラッグ 🇮🇱️ 5 5 501 -20 -コッキ 🇮🇲️ 5 5 501 -20 -ハタ 🇮🇲️ 5 5 501 -20 -フラグ 🇮🇲️ 5 5 501 -20 -フラッグ 🇮🇲️ 5 5 501 -20 -マントウ 🇮🇲️ 5 5 501 -20 -インド 🇮🇳️ 5 5 501 -20 -コッキ 🇮🇳️ 5 5 501 -20 -ハタ 🇮🇳️ 5 5 501 -20 -フラグ 🇮🇳️ 5 5 501 -20 -フラッグ 🇮🇳️ 5 5 501 -20 -イギリスリョウインドヨウチイキ 🇮🇴️ 5 5 501 -20 -エイリョウインドヨウチイキ 🇮🇴️ 5 5 501 -20 -コッキ 🇮🇴️ 5 5 501 -20 -ハタ 🇮🇴️ 5 5 501 -20 -フラグ 🇮🇴️ 5 5 501 -20 -フラッグ 🇮🇴️ 5 5 501 -20 -イラク 🇮🇶️ 5 5 501 -20 -コッキ 🇮🇶️ 5 5 501 -20 -ハタ 🇮🇶️ 5 5 501 -20 -フラグ 🇮🇶️ 5 5 501 -20 -フラッグ 🇮🇶️ 5 5 501 -20 -イラン 🇮🇷️ 5 5 501 -20 -コッキ 🇮🇷️ 5 5 501 -20 -ハタ 🇮🇷️ 5 5 501 -20 -フラグ 🇮🇷️ 5 5 501 -20 -フラッグ 🇮🇷️ 5 5 501 -20 -アイスランド 🇮🇸️ 5 5 501 -20 -コッキ 🇮🇸️ 5 5 501 -20 -ハタ 🇮🇸️ 5 5 501 -20 -フラグ 🇮🇸️ 5 5 501 -20 -フラッグ 🇮🇸️ 5 5 501 -20 -イタリア 🇮🇹️ 5 5 501 -20 -コッキ 🇮🇹️ 5 5 501 -20 -ハタ 🇮🇹️ 5 5 501 -20 -フラグ 🇮🇹️ 5 5 501 -20 -フラッグ 🇮🇹️ 5 5 501 -20 -コッキ 🇯🇪️ 5 5 501 -20 -ジャージー 🇯🇪️ 5 5 501 -20 -ハタ 🇯🇪️ 5 5 501 -20 -フラグ 🇯🇪️ 5 5 501 -20 -フラッグ 🇯🇪️ 5 5 501 -20 -コッキ 🇯🇲️ 5 5 501 -20 -ジャマイカ 🇯🇲️ 5 5 501 -20 -ハタ 🇯🇲️ 5 5 501 -20 -フラグ 🇯🇲️ 5 5 501 -20 -フラッグ 🇯🇲️ 5 5 501 -20 -コッキ 🇯🇴️ 5 5 501 -20 -ハタ 🇯🇴️ 5 5 501 -20 -フラグ 🇯🇴️ 5 5 501 -20 -フラッグ 🇯🇴️ 5 5 501 -20 -ヨルダン 🇯🇴️ 5 5 501 -20 -コッキ 🇯🇵️ 5 5 501 -20 -シュクジツ 🇯🇵️ 5 5 501 -20 -ニッポン 🇯🇵️ 5 5 501 -20 -ニホン 🇯🇵️ 5 5 501 -20 -ハタ 🇯🇵️ 5 5 501 -20 -ヒノマル 🇯🇵️ 5 5 501 -20 -フラグ 🇯🇵️ 5 5 501 -20 -フラッグ 🇯🇵️ 5 5 501 -20 -ケニア 🇰🇪️ 5 5 501 -20 -コッキ 🇰🇪️ 5 5 501 -20 -ハタ 🇰🇪️ 5 5 501 -20 -フラグ 🇰🇪️ 5 5 501 -20 -フラッグ 🇰🇪️ 5 5 501 -20 -キルギス 🇰🇬️ 5 5 501 -20 -コッキ 🇰🇬️ 5 5 501 -20 -ハタ 🇰🇬️ 5 5 501 -20 -フラグ 🇰🇬️ 5 5 501 -20 -フラッグ 🇰🇬️ 5 5 501 -20 -カンボジア 🇰🇭️ 5 5 501 -20 -コッキ 🇰🇭️ 5 5 501 -20 -コロンビア 🇰🇭️ 5 5 501 -20 -ハタ 🇰🇭️ 5 5 501 -20 -フラグ 🇰🇭️ 5 5 501 -20 -フラッグ 🇰🇭️ 5 5 501 -20 -キリバス 🇰🇮️ 5 5 501 -20 -コッキ 🇰🇮️ 5 5 501 -20 -ハタ 🇰🇮️ 5 5 501 -20 -フラグ 🇰🇮️ 5 5 501 -20 -フラッグ 🇰🇮️ 5 5 501 -20 -コッキ 🇰🇲️ 5 5 501 -20 -コモロ 🇰🇲️ 5 5 501 -20 -ハタ 🇰🇲️ 5 5 501 -20 -フラグ 🇰🇲️ 5 5 501 -20 -フラッグ 🇰🇲️ 5 5 501 -20 -コッキ 🇰🇳️ 5 5 501 -20 -セントクリストファーネーヴィス 🇰🇳️ 5 5 501 -20 -セントクリストファー・ネーヴィス 🇰🇳️ 5 5 501 -20 -ハタ 🇰🇳️ 5 5 501 -20 -フラグ 🇰🇳️ 5 5 501 -20 -フラッグ 🇰🇳️ 5 5 501 -20 -キタチョウセン 🇰🇵️ 5 5 501 -20 -コッキ 🇰🇵️ 5 5 501 -20 -ハタ 🇰🇵️ 5 5 501 -20 -フラグ 🇰🇵️ 5 5 501 -20 -フラッグ 🇰🇵️ 5 5 501 -20 -カンコク 🇰🇷️ 5 5 501 -20 -コッキ 🇰🇷️ 5 5 501 -20 -ハタ 🇰🇷️ 5 5 501 -20 -フラグ 🇰🇷️ 5 5 501 -20 -フラッグ 🇰🇷️ 5 5 501 -20 -クウェート 🇰🇼️ 5 5 501 -20 -コッキ 🇰🇼️ 5 5 501 -20 -ハタ 🇰🇼️ 5 5 501 -20 -フラグ 🇰🇼️ 5 5 501 -20 -フラッグ 🇰🇼️ 5 5 501 -20 -ケイマンショトウ 🇰🇾️ 5 5 501 -20 -コッキ 🇰🇾️ 5 5 501 -20 -ハタ 🇰🇾️ 5 5 501 -20 -フラグ 🇰🇾️ 5 5 501 -20 -フラッグ 🇰🇾️ 5 5 501 -20 -カザフスタン 🇰🇿️ 5 5 501 -20 -コッキ 🇰🇿️ 5 5 501 -20 -ハタ 🇰🇿️ 5 5 501 -20 -フラグ 🇰🇿️ 5 5 501 -20 -フラッグ 🇰🇿️ 5 5 501 -20 -コッキ 🇱🇦️ 5 5 501 -20 -ハタ 🇱🇦️ 5 5 501 -20 -フラグ 🇱🇦️ 5 5 501 -20 -フラッグ 🇱🇦️ 5 5 501 -20 -ラオス 🇱🇦️ 5 5 501 -20 -コッキ 🇱🇧️ 5 5 501 -20 -ハタ 🇱🇧️ 5 5 501 -20 -フラグ 🇱🇧️ 5 5 501 -20 -フラッグ 🇱🇧️ 5 5 501 -20 -レバノン 🇱🇧️ 5 5 501 -20 -コッキ 🇱🇨️ 5 5 501 -20 -セントルシア 🇱🇨️ 5 5 501 -20 -ハタ 🇱🇨️ 5 5 501 -20 -フラグ 🇱🇨️ 5 5 501 -20 -フラッグ 🇱🇨️ 5 5 501 -20 -コッキ 🇱🇮️ 5 5 501 -20 -ハタ 🇱🇮️ 5 5 501 -20 -フラグ 🇱🇮️ 5 5 501 -20 -フラッグ 🇱🇮️ 5 5 501 -20 -リヒテンシュタイン 🇱🇮️ 5 5 501 -20 -コッキ 🇱🇰️ 5 5 501 -20 -スリランカ 🇱🇰️ 5 5 501 -20 -ハタ 🇱🇰️ 5 5 501 -20 -フラグ 🇱🇰️ 5 5 501 -20 -フラッグ 🇱🇰️ 5 5 501 -20 -コッキ 🇱🇷️ 5 5 501 -20 -ハタ 🇱🇷️ 5 5 501 -20 -フラグ 🇱🇷️ 5 5 501 -20 -フラッグ 🇱🇷️ 5 5 501 -20 -リベリア 🇱🇷️ 5 5 501 -20 -コッキ 🇱🇸️ 5 5 501 -20 -ハタ 🇱🇸️ 5 5 501 -20 -フラグ 🇱🇸️ 5 5 501 -20 -フラッグ 🇱🇸️ 5 5 501 -20 -レソト 🇱🇸️ 5 5 501 -20 -コッキ 🇱🇹️ 5 5 501 -20 -ハタ 🇱🇹️ 5 5 501 -20 -フラグ 🇱🇹️ 5 5 501 -20 -フラッグ 🇱🇹️ 5 5 501 -20 -リトアニア 🇱🇹️ 5 5 501 -20 -コッキ 🇱🇺️ 5 5 501 -20 -ハタ 🇱🇺️ 5 5 501 -20 -フラグ 🇱🇺️ 5 5 501 -20 -フラッグ 🇱🇺️ 5 5 501 -20 -ルクセンブルク 🇱🇺️ 5 5 501 -20 -ルクセンブルグ 🇱🇺️ 5 5 501 -20 -コッキ 🇱🇻️ 5 5 501 -20 -ハタ 🇱🇻️ 5 5 501 -20 -フラグ 🇱🇻️ 5 5 501 -20 -フラッグ 🇱🇻️ 5 5 501 -20 -ラトビア 🇱🇻️ 5 5 501 -20 -コッキ 🇱🇾️ 5 5 501 -20 -ハタ 🇱🇾️ 5 5 501 -20 -フラグ 🇱🇾️ 5 5 501 -20 -フラッグ 🇱🇾️ 5 5 501 -20 -リビア 🇱🇾️ 5 5 501 -20 -コッキ 🇲🇦️ 5 5 501 -20 -ハタ 🇲🇦️ 5 5 501 -20 -フラグ 🇲🇦️ 5 5 501 -20 -フラッグ 🇲🇦️ 5 5 501 -20 -モロッコ 🇲🇦️ 5 5 501 -20 -コッキ 🇲🇨️ 5 5 501 -20 -ハタ 🇲🇨️ 5 5 501 -20 -フラグ 🇲🇨️ 5 5 501 -20 -フラッグ 🇲🇨️ 5 5 501 -20 -モナコ 🇲🇨️ 5 5 501 -20 -コッキ 🇲🇩️ 5 5 501 -20 -ハタ 🇲🇩️ 5 5 501 -20 -フラグ 🇲🇩️ 5 5 501 -20 -フラッグ 🇲🇩️ 5 5 501 -20 -モルドバ 🇲🇩️ 5 5 501 -20 -コッキ 🇲🇪️ 5 5 501 -20 -ハタ 🇲🇪️ 5 5 501 -20 -フラグ 🇲🇪️ 5 5 501 -20 -フラッグ 🇲🇪️ 5 5 501 -20 -モンテネグロ 🇲🇪️ 5 5 501 -20 -コッキ 🇲🇫️ 5 5 501 -20 -サンマルタン 🇲🇫️ 5 5 501 -20 -サン・マルタン 🇲🇫️ 5 5 501 -20 -ハタ 🇲🇫️ 5 5 501 -20 -フラグ 🇲🇫️ 5 5 501 -20 -フラッグ 🇲🇫️ 5 5 501 -20 -コッキ 🇲🇬️ 5 5 501 -20 -ハタ 🇲🇬️ 5 5 501 -20 -フラグ 🇲🇬️ 5 5 501 -20 -フラッグ 🇲🇬️ 5 5 501 -20 -マダガスカル 🇲🇬️ 5 5 501 -20 -コッキ 🇲🇭️ 5 5 501 -20 -ハタ 🇲🇭️ 5 5 501 -20 -フラグ 🇲🇭️ 5 5 501 -20 -フラッグ 🇲🇭️ 5 5 501 -20 -マーシャルショトウ 🇲🇭️ 5 5 501 -20 -キタマケドニア 🇲🇰️ 5 5 501 -20 -コッキ 🇲🇰️ 5 5 501 -20 -ハタ 🇲🇰️ 5 5 501 -20 -フラグ 🇲🇰️ 5 5 501 -20 -フラッグ 🇲🇰️ 5 5 501 -20 -マケドニア 🇲🇰️ 5 5 501 -20 -コッキ 🇲🇱️ 5 5 501 -20 -ハタ 🇲🇱️ 5 5 501 -20 -フラグ 🇲🇱️ 5 5 501 -20 -フラッグ 🇲🇱️ 5 5 501 -20 -マリ 🇲🇱️ 5 5 501 -20 -コッキ 🇲🇲️ 5 5 501 -20 -ハタ 🇲🇲️ 5 5 501 -20 -ビルマ 🇲🇲️ 5 5 501 -20 -フラグ 🇲🇲️ 5 5 501 -20 -フラッグ 🇲🇲️ 5 5 501 -20 -ミャンマー 🇲🇲️ 5 5 501 -20 -コッキ 🇲🇳️ 5 5 501 -20 -ハタ 🇲🇳️ 5 5 501 -20 -フラグ 🇲🇳️ 5 5 501 -20 -フラッグ 🇲🇳️ 5 5 501 -20 -モンゴル 🇲🇳️ 5 5 501 -20 -コッキ 🇲🇴️ 5 5 501 -20 -チュウカジンミンキョウワコクマカオトクベツギョウセイク 🇲🇴️ 5 5 501 -20 -ハタ 🇲🇴️ 5 5 501 -20 -フラグ 🇲🇴️ 5 5 501 -20 -フラッグ 🇲🇴️ 5 5 501 -20 -マカオ 🇲🇴️ 5 5 501 -20 -キタマリアナショトウ 🇲🇵️ 5 5 501 -20 -コッキ 🇲🇵️ 5 5 501 -20 -ハタ 🇲🇵️ 5 5 501 -20 -フラグ 🇲🇵️ 5 5 501 -20 -フラッグ 🇲🇵️ 5 5 501 -20 -コッキ 🇲🇶️ 5 5 501 -20 -ハタ 🇲🇶️ 5 5 501 -20 -フラグ 🇲🇶️ 5 5 501 -20 -フラッグ 🇲🇶️ 5 5 501 -20 -マルティニーク 🇲🇶️ 5 5 501 -20 -コッキ 🇲🇷️ 5 5 501 -20 -ハタ 🇲🇷️ 5 5 501 -20 -フラグ 🇲🇷️ 5 5 501 -20 -フラッグ 🇲🇷️ 5 5 501 -20 -モーリタニア 🇲🇷️ 5 5 501 -20 -コッキ 🇲🇸️ 5 5 501 -20 -ハタ 🇲🇸️ 5 5 501 -20 -フラグ 🇲🇸️ 5 5 501 -20 -フラッグ 🇲🇸️ 5 5 501 -20 -モントセラト 🇲🇸️ 5 5 501 -20 -コッキ 🇲🇹️ 5 5 501 -20 -ハタ 🇲🇹️ 5 5 501 -20 -フラグ 🇲🇹️ 5 5 501 -20 -フラッグ 🇲🇹️ 5 5 501 -20 -マルタ 🇲🇹️ 5 5 501 -20 -コッキ 🇲🇺️ 5 5 501 -20 -ハタ 🇲🇺️ 5 5 501 -20 -フラグ 🇲🇺️ 5 5 501 -20 -フラッグ 🇲🇺️ 5 5 501 -20 -モーリシャス 🇲🇺️ 5 5 501 -20 -コッキ 🇲🇻️ 5 5 501 -20 -ハタ 🇲🇻️ 5 5 501 -20 -フラグ 🇲🇻️ 5 5 501 -20 -フラッグ 🇲🇻️ 5 5 501 -20 -モルディブ 🇲🇻️ 5 5 501 -20 -コッキ 🇲🇼️ 5 5 501 -20 -ハタ 🇲🇼️ 5 5 501 -20 -フラグ 🇲🇼️ 5 5 501 -20 -フラッグ 🇲🇼️ 5 5 501 -20 -マラウィ 🇲🇼️ 5 5 501 -20 -マラウイ 🇲🇼️ 5 5 501 -20 -コッキ 🇲🇽️ 5 5 501 -20 -ハタ 🇲🇽️ 5 5 501 -20 -フラグ 🇲🇽️ 5 5 501 -20 -フラッグ 🇲🇽️ 5 5 501 -20 -メキシコ 🇲🇽️ 5 5 501 -20 -コッキ 🇲🇾️ 5 5 501 -20 -ハタ 🇲🇾️ 5 5 501 -20 -フラグ 🇲🇾️ 5 5 501 -20 -フラッグ 🇲🇾️ 5 5 501 -20 -マレーシア 🇲🇾️ 5 5 501 -20 -コッキ 🇲🇿️ 5 5 501 -20 -ハタ 🇲🇿️ 5 5 501 -20 -フラグ 🇲🇿️ 5 5 501 -20 -フラッグ 🇲🇿️ 5 5 501 -20 -モザンビーク 🇲🇿️ 5 5 501 -20 -コッキ 🇳🇦️ 5 5 501 -20 -ナミビア 🇳🇦️ 5 5 501 -20 -ハタ 🇳🇦️ 5 5 501 -20 -フラグ 🇳🇦️ 5 5 501 -20 -フラッグ 🇳🇦️ 5 5 501 -20 -コッキ 🇳🇨️ 5 5 501 -20 -ニューカレドニア 🇳🇨️ 5 5 501 -20 -ハタ 🇳🇨️ 5 5 501 -20 -フラグ 🇳🇨️ 5 5 501 -20 -フラッグ 🇳🇨️ 5 5 501 -20 -コッキ 🇳🇪️ 5 5 501 -20 -ニジェール 🇳🇪️ 5 5 501 -20 -ハタ 🇳🇪️ 5 5 501 -20 -フラグ 🇳🇪️ 5 5 501 -20 -フラッグ 🇳🇪️ 5 5 501 -20 -コッキ 🇳🇫️ 5 5 501 -20 -ノーフォークトウ 🇳🇫️ 5 5 501 -20 -ハタ 🇳🇫️ 5 5 501 -20 -フラグ 🇳🇫️ 5 5 501 -20 -フラッグ 🇳🇫️ 5 5 501 -20 -コッキ 🇳🇬️ 5 5 501 -20 -ナイジェリア 🇳🇬️ 5 5 501 -20 -ハタ 🇳🇬️ 5 5 501 -20 -フラグ 🇳🇬️ 5 5 501 -20 -フラッグ 🇳🇬️ 5 5 501 -20 -コッキ 🇳🇮️ 5 5 501 -20 -ニカラグア 🇳🇮️ 5 5 501 -20 -ハタ 🇳🇮️ 5 5 501 -20 -フラグ 🇳🇮️ 5 5 501 -20 -フラッグ 🇳🇮️ 5 5 501 -20 -オランダ 🇳🇱️ 5 5 501 -20 -コッキ 🇳🇱️ 5 5 501 -20 -ハタ 🇳🇱️ 5 5 501 -20 -フラグ 🇳🇱️ 5 5 501 -20 -フラッグ 🇳🇱️ 5 5 501 -20 -コッキ 🇳🇴️ 5 5 501 -20 -ノルウェー 🇳🇴️ 5 5 501 -20 -ハタ 🇳🇴️ 5 5 501 -20 -フラグ 🇳🇴️ 5 5 501 -20 -フラッグ 🇳🇴️ 5 5 501 -20 -コッキ 🇳🇵️ 5 5 501 -20 -ネパール 🇳🇵️ 5 5 501 -20 -ハタ 🇳🇵️ 5 5 501 -20 -フラグ 🇳🇵️ 5 5 501 -20 -フラッグ 🇳🇵️ 5 5 501 -20 -コッキ 🇳🇷️ 5 5 501 -20 -ナウル 🇳🇷️ 5 5 501 -20 -ハタ 🇳🇷️ 5 5 501 -20 -フラグ 🇳🇷️ 5 5 501 -20 -フラッグ 🇳🇷️ 5 5 501 -20 -コッキ 🇳🇺️ 5 5 501 -20 -ニウエ 🇳🇺️ 5 5 501 -20 -ハタ 🇳🇺️ 5 5 501 -20 -フラグ 🇳🇺️ 5 5 501 -20 -フラッグ 🇳🇺️ 5 5 501 -20 -コッキ 🇳🇿️ 5 5 501 -20 -ニュージーランド 🇳🇿️ 5 5 501 -20 -ハタ 🇳🇿️ 5 5 501 -20 -フラグ 🇳🇿️ 5 5 501 -20 -フラッグ 🇳🇿️ 5 5 501 -20 -オマーン 🇴🇲️ 5 5 501 -20 -コッキ 🇴🇲️ 5 5 501 -20 -ハタ 🇴🇲️ 5 5 501 -20 -フラグ 🇴🇲️ 5 5 501 -20 -フラッグ 🇴🇲️ 5 5 501 -20 -コッキ 🇵🇦️ 5 5 501 -20 -ハタ 🇵🇦️ 5 5 501 -20 -パナマ 🇵🇦️ 5 5 501 -20 -フラグ 🇵🇦️ 5 5 501 -20 -フラッグ 🇵🇦️ 5 5 501 -20 -コッキ 🇵🇪️ 5 5 501 -20 -ハタ 🇵🇪️ 5 5 501 -20 -フラグ 🇵🇪️ 5 5 501 -20 -フラッグ 🇵🇪️ 5 5 501 -20 -ペルー 🇵🇪️ 5 5 501 -20 -コッキ 🇵🇫️ 5 5 501 -20 -ハタ 🇵🇫️ 5 5 501 -20 -フツリョウポリネシア 🇵🇫️ 5 5 501 -20 -フラグ 🇵🇫️ 5 5 501 -20 -フラッグ 🇵🇫️ 5 5 501 -20 -フランスリョウポリネシア 🇵🇫️ 5 5 501 -20 -コッキ 🇵🇬️ 5 5 501 -20 -ハタ 🇵🇬️ 5 5 501 -20 -パプアニューギニア 🇵🇬️ 5 5 501 -20 -フラグ 🇵🇬️ 5 5 501 -20 -フラッグ 🇵🇬️ 5 5 501 -20 -コッキ 🇵🇭️ 5 5 501 -20 -ハタ 🇵🇭️ 5 5 501 -20 -フィリピン 🇵🇭️ 5 5 501 -20 -フラグ 🇵🇭️ 5 5 501 -20 -フラッグ 🇵🇭️ 5 5 501 -20 -コッキ 🇵🇰️ 5 5 501 -20 -ハタ 🇵🇰️ 5 5 501 -20 -パキスタン 🇵🇰️ 5 5 501 -20 -フラグ 🇵🇰️ 5 5 501 -20 -フラッグ 🇵🇰️ 5 5 501 -20 -コッキ 🇵🇱️ 5 5 501 -20 -ハタ 🇵🇱️ 5 5 501 -20 -フラグ 🇵🇱️ 5 5 501 -20 -フラッグ 🇵🇱️ 5 5 501 -20 -ポーランド 🇵🇱️ 5 5 501 -20 -コッキ 🇵🇲️ 5 5 501 -20 -サンピエールシマ・ミクロントウ 🇵🇲️ 5 5 501 -20 -サンピエールトウ 🇵🇲️ 5 5 501 -20 -サンピエールトウ・ミクロントウ 🇵🇲️ 5 5 501 -20 -ハタ 🇵🇲️ 5 5 501 -20 -フラグ 🇵🇲️ 5 5 501 -20 -フラッグ 🇵🇲️ 5 5 501 -20 -ミクロントウ 🇵🇲️ 5 5 501 -20 -コッキ 🇵🇳️ 5 5 501 -20 -ハタ 🇵🇳️ 5 5 501 -20 -ピトケアンショトウ 🇵🇳️ 5 5 501 -20 -フラグ 🇵🇳️ 5 5 501 -20 -フラッグ 🇵🇳️ 5 5 501 -20 -コッキ 🇵🇷️ 5 5 501 -20 -ハタ 🇵🇷️ 5 5 501 -20 -フラグ 🇵🇷️ 5 5 501 -20 -フラッグ 🇵🇷️ 5 5 501 -20 -プエルトリコ 🇵🇷️ 5 5 501 -20 -コッキ 🇵🇸️ 5 5 501 -20 -ハタ 🇵🇸️ 5 5 501 -20 -パレスチナジチク 🇵🇸️ 5 5 501 -20 -フラグ 🇵🇸️ 5 5 501 -20 -フラッグ 🇵🇸️ 5 5 501 -20 -コッキ 🇵🇹️ 5 5 501 -20 -ハタ 🇵🇹️ 5 5 501 -20 -フラグ 🇵🇹️ 5 5 501 -20 -フラッグ 🇵🇹️ 5 5 501 -20 -ポルトガル 🇵🇹️ 5 5 501 -20 -コッキ 🇵🇼️ 5 5 501 -20 -ハタ 🇵🇼️ 5 5 501 -20 -パラオ 🇵🇼️ 5 5 501 -20 -フラグ 🇵🇼️ 5 5 501 -20 -フラッグ 🇵🇼️ 5 5 501 -20 -コッキ 🇵🇾️ 5 5 501 -20 -ハタ 🇵🇾️ 5 5 501 -20 -パラグアイ 🇵🇾️ 5 5 501 -20 -フラグ 🇵🇾️ 5 5 501 -20 -フラッグ 🇵🇾️ 5 5 501 -20 -カタール 🇶🇦️ 5 5 501 -20 -コッキ 🇶🇦️ 5 5 501 -20 -ハタ 🇶🇦️ 5 5 501 -20 -フラグ 🇶🇦️ 5 5 501 -20 -フラッグ 🇶🇦️ 5 5 501 -20 -コッキ 🇷🇪️ 5 5 501 -20 -ハタ 🇷🇪️ 5 5 501 -20 -フラグ 🇷🇪️ 5 5 501 -20 -フラッグ 🇷🇪️ 5 5 501 -20 -レユニオン 🇷🇪️ 5 5 501 -20 -コッキ 🇷🇴️ 5 5 501 -20 -ハタ 🇷🇴️ 5 5 501 -20 -フラグ 🇷🇴️ 5 5 501 -20 -フラッグ 🇷🇴️ 5 5 501 -20 -ルーマニア 🇷🇴️ 5 5 501 -20 -コッキ 🇷🇸️ 5 5 501 -20 -セルビア 🇷🇸️ 5 5 501 -20 -ハタ 🇷🇸️ 5 5 501 -20 -フラグ 🇷🇸️ 5 5 501 -20 -フラッグ 🇷🇸️ 5 5 501 -20 -コッキ 🇷🇺️ 5 5 501 -20 -ハタ 🇷🇺️ 5 5 501 -20 -フラグ 🇷🇺️ 5 5 501 -20 -フラッグ 🇷🇺️ 5 5 501 -20 -ロシア 🇷🇺️ 5 5 501 -20 -コッキ 🇷🇼️ 5 5 501 -20 -ハタ 🇷🇼️ 5 5 501 -20 -フラグ 🇷🇼️ 5 5 501 -20 -フラッグ 🇷🇼️ 5 5 501 -20 -ルワンダ 🇷🇼️ 5 5 501 -20 -コッキ 🇸🇦️ 5 5 501 -20 -サウジアラビア 🇸🇦️ 5 5 501 -20 -ハタ 🇸🇦️ 5 5 501 -20 -フラグ 🇸🇦️ 5 5 501 -20 -フラッグ 🇸🇦️ 5 5 501 -20 -コッキ 🇸🇧️ 5 5 501 -20 -ソロモンショトウ 🇸🇧️ 5 5 501 -20 -ハタ 🇸🇧️ 5 5 501 -20 -フラグ 🇸🇧️ 5 5 501 -20 -フラッグ 🇸🇧️ 5 5 501 -20 -コッキ 🇸🇨️ 5 5 501 -20 -セーシェル 🇸🇨️ 5 5 501 -20 -ハタ 🇸🇨️ 5 5 501 -20 -フラグ 🇸🇨️ 5 5 501 -20 -フラッグ 🇸🇨️ 5 5 501 -20 -コッキ 🇸🇩️ 5 5 501 -20 -スーダン 🇸🇩️ 5 5 501 -20 -ハタ 🇸🇩️ 5 5 501 -20 -フラグ 🇸🇩️ 5 5 501 -20 -フラッグ 🇸🇩️ 5 5 501 -20 -コッキ 🇸🇪️ 5 5 501 -20 -スウェーデン 🇸🇪️ 5 5 501 -20 -ハタ 🇸🇪️ 5 5 501 -20 -フラグ 🇸🇪️ 5 5 501 -20 -フラッグ 🇸🇪️ 5 5 501 -20 -コッキ 🇸🇬️ 5 5 501 -20 -シンガポール 🇸🇬️ 5 5 501 -20 -ハタ 🇸🇬️ 5 5 501 -20 -フラグ 🇸🇬️ 5 5 501 -20 -フラッグ 🇸🇬️ 5 5 501 -20 -コッキ 🇸🇭️ 5 5 501 -20 -セントヘレナ 🇸🇭️ 5 5 501 -20 -ハタ 🇸🇭️ 5 5 501 -20 -フラグ 🇸🇭️ 5 5 501 -20 -フラッグ 🇸🇭️ 5 5 501 -20 -コッキ 🇸🇮️ 5 5 501 -20 -スロベニア 🇸🇮️ 5 5 501 -20 -ハタ 🇸🇮️ 5 5 501 -20 -フラグ 🇸🇮️ 5 5 501 -20 -フラッグ 🇸🇮️ 5 5 501 -20 -コッキ 🇸🇯️ 5 5 501 -20 -スバールバルショトウ 🇸🇯️ 5 5 501 -20 -スバールバルショトウ・ヤンマイエントウ 🇸🇯️ 5 5 501 -20 -スヴァールバルショトウオヨビヤンマイエントウ 🇸🇯️ 5 5 501 -20 -ハタ 🇸🇯️ 5 5 501 -20 -フラグ 🇸🇯️ 5 5 501 -20 -フラッグ 🇸🇯️ 5 5 501 -20 -ヤンマイエントウ 🇸🇯️ 5 5 501 -20 -コッキ 🇸🇰️ 5 5 501 -20 -スロバキア 🇸🇰️ 5 5 501 -20 -ハタ 🇸🇰️ 5 5 501 -20 -フラグ 🇸🇰️ 5 5 501 -20 -フラッグ 🇸🇰️ 5 5 501 -20 -コッキ 🇸🇱️ 5 5 501 -20 -シエラレオネ 🇸🇱️ 5 5 501 -20 -ハタ 🇸🇱️ 5 5 501 -20 -フラグ 🇸🇱️ 5 5 501 -20 -フラッグ 🇸🇱️ 5 5 501 -20 -コッキ 🇸🇲️ 5 5 501 -20 -サンマリノ 🇸🇲️ 5 5 501 -20 -ハタ 🇸🇲️ 5 5 501 -20 -フラグ 🇸🇲️ 5 5 501 -20 -フラッグ 🇸🇲️ 5 5 501 -20 -コッキ 🇸🇳️ 5 5 501 -20 -セネガル 🇸🇳️ 5 5 501 -20 -ハタ 🇸🇳️ 5 5 501 -20 -フラグ 🇸🇳️ 5 5 501 -20 -フラッグ 🇸🇳️ 5 5 501 -20 -コッキ 🇸🇴️ 5 5 501 -20 -ソマリア 🇸🇴️ 5 5 501 -20 -ハタ 🇸🇴️ 5 5 501 -20 -フラグ 🇸🇴️ 5 5 501 -20 -フラッグ 🇸🇴️ 5 5 501 -20 -コッキ 🇸🇷️ 5 5 501 -20 -スリナム 🇸🇷️ 5 5 501 -20 -ハタ 🇸🇷️ 5 5 501 -20 -フラグ 🇸🇷️ 5 5 501 -20 -フラッグ 🇸🇷️ 5 5 501 -20 -コッキ 🇸🇸️ 5 5 501 -20 -ハタ 🇸🇸️ 5 5 501 -20 -フラグ 🇸🇸️ 5 5 501 -20 -フラッグ 🇸🇸️ 5 5 501 -20 -ミナミスーダン 🇸🇸️ 5 5 501 -20 -コッキ 🇸🇹️ 5 5 501 -20 -サントメプリンシペ 🇸🇹️ 5 5 501 -20 -サントメ・プリンシペ 🇸🇹️ 5 5 501 -20 -ハタ 🇸🇹️ 5 5 501 -20 -フラグ 🇸🇹️ 5 5 501 -20 -フラッグ 🇸🇹️ 5 5 501 -20 -エルサルバドル 🇸🇻️ 5 5 501 -20 -コッキ 🇸🇻️ 5 5 501 -20 -ハタ 🇸🇻️ 5 5 501 -20 -フラグ 🇸🇻️ 5 5 501 -20 -フラッグ 🇸🇻️ 5 5 501 -20 -コッキ 🇸🇽️ 5 5 501 -20 -シントマールテン 🇸🇽️ 5 5 501 -20 -シント・マールテン 🇸🇽️ 5 5 501 -20 -ハタ 🇸🇽️ 5 5 501 -20 -フラグ 🇸🇽️ 5 5 501 -20 -フラッグ 🇸🇽️ 5 5 501 -20 -コッキ 🇸🇾️ 5 5 501 -20 -シリア 🇸🇾️ 5 5 501 -20 -ハタ 🇸🇾️ 5 5 501 -20 -フラグ 🇸🇾️ 5 5 501 -20 -フラッグ 🇸🇾️ 5 5 501 -20 -エスワティニ 🇸🇿️ 5 5 501 -20 -コッキ 🇸🇿️ 5 5 501 -20 -スワジランド 🇸🇿️ 5 5 501 -20 -ハタ 🇸🇿️ 5 5 501 -20 -フラグ 🇸🇿️ 5 5 501 -20 -フラッグ 🇸🇿️ 5 5 501 -20 -コッキ 🇹🇦️ 5 5 501 -20 -トリスタンダクーニャ 🇹🇦️ 5 5 501 -20 -トリスタン・ダ・クーニャ 🇹🇦️ 5 5 501 -20 -ハタ 🇹🇦️ 5 5 501 -20 -フラグ 🇹🇦️ 5 5 501 -20 -フラッグ 🇹🇦️ 5 5 501 -20 -コッキ 🇹🇨️ 5 5 501 -20 -タークスカイコスショトウ 🇹🇨️ 5 5 501 -20 -ハタ 🇹🇨️ 5 5 501 -20 -フラグ 🇹🇨️ 5 5 501 -20 -フラッグ 🇹🇨️ 5 5 501 -20 -コッキ 🇹🇩️ 5 5 501 -20 -チャド 🇹🇩️ 5 5 501 -20 -ハタ 🇹🇩️ 5 5 501 -20 -フラグ 🇹🇩️ 5 5 501 -20 -フラッグ 🇹🇩️ 5 5 501 -20 -コッキ 🇹🇫️ 5 5 501 -20 -ハタ 🇹🇫️ 5 5 501 -20 -フツリョウキョクナンショトウ 🇹🇫️ 5 5 501 -20 -フラグ 🇹🇫️ 5 5 501 -20 -フラッグ 🇹🇫️ 5 5 501 -20 -コッキ 🇹🇬️ 5 5 501 -20 -トーゴ 🇹🇬️ 5 5 501 -20 -ハタ 🇹🇬️ 5 5 501 -20 -フラグ 🇹🇬️ 5 5 501 -20 -フラッグ 🇹🇬️ 5 5 501 -20 -コッキ 🇹🇭️ 5 5 501 -20 -タイ 🇹🇭️ 5 5 501 -20 -ハタ 🇹🇭️ 5 5 501 -20 -フラグ 🇹🇭️ 5 5 501 -20 -フラッグ 🇹🇭️ 5 5 501 -20 -コッキ 🇹🇯️ 5 5 501 -20 -タジキスタン 🇹🇯️ 5 5 501 -20 -ハタ 🇹🇯️ 5 5 501 -20 -フラグ 🇹🇯️ 5 5 501 -20 -フラッグ 🇹🇯️ 5 5 501 -20 -コッキ 🇹🇰️ 5 5 501 -20 -トケラウ 🇹🇰️ 5 5 501 -20 -ハタ 🇹🇰️ 5 5 501 -20 -フラグ 🇹🇰️ 5 5 501 -20 -フラッグ 🇹🇰️ 5 5 501 -20 -コッキ 🇹🇱️ 5 5 501 -20 -ハタ 🇹🇱️ 5 5 501 -20 -ヒガシティモール 🇹🇱️ 5 5 501 -20 -フラグ 🇹🇱️ 5 5 501 -20 -フラッグ 🇹🇱️ 5 5 501 -20 -コッキ 🇹🇲️ 5 5 501 -20 -トルクメニスタン 🇹🇲️ 5 5 501 -20 -ハタ 🇹🇲️ 5 5 501 -20 -フラグ 🇹🇲️ 5 5 501 -20 -フラッグ 🇹🇲️ 5 5 501 -20 -コッキ 🇹🇳️ 5 5 501 -20 -チュニジア 🇹🇳️ 5 5 501 -20 -ハタ 🇹🇳️ 5 5 501 -20 -フラグ 🇹🇳️ 5 5 501 -20 -フラッグ 🇹🇳️ 5 5 501 -20 -コッキ 🇹🇴️ 5 5 501 -20 -トンガ 🇹🇴️ 5 5 501 -20 -ハタ 🇹🇴️ 5 5 501 -20 -フラグ 🇹🇴️ 5 5 501 -20 -フラッグ 🇹🇴️ 5 5 501 -20 -コッキ 🇹🇷️ 5 5 501 -20 -トルコ 🇹🇷️ 5 5 501 -20 -ハタ 🇹🇷️ 5 5 501 -20 -フラグ 🇹🇷️ 5 5 501 -20 -フラッグ 🇹🇷️ 5 5 501 -20 -コッキ 🇹🇹️ 5 5 501 -20 -トリニダードトバゴ 🇹🇹️ 5 5 501 -20 -トリニダード・トバゴ 🇹🇹️ 5 5 501 -20 -ハタ 🇹🇹️ 5 5 501 -20 -フラグ 🇹🇹️ 5 5 501 -20 -フラッグ 🇹🇹️ 5 5 501 -20 -コッキ 🇹🇻️ 5 5 501 -20 -ツバル 🇹🇻️ 5 5 501 -20 -ハタ 🇹🇻️ 5 5 501 -20 -フラグ 🇹🇻️ 5 5 501 -20 -フラッグ 🇹🇻️ 5 5 501 -20 -コッキ 🇹🇼️ 5 5 501 -20 -タイワン 🇹🇼️ 5 5 501 -20 -ハタ 🇹🇼️ 5 5 501 -20 -フラグ 🇹🇼️ 5 5 501 -20 -フラッグ 🇹🇼️ 5 5 501 -20 -コッキ 🇹🇿️ 5 5 501 -20 -タンザニア 🇹🇿️ 5 5 501 -20 -ハタ 🇹🇿️ 5 5 501 -20 -フラグ 🇹🇿️ 5 5 501 -20 -フラッグ 🇹🇿️ 5 5 501 -20 -ウクライナ 🇺🇦️ 5 5 501 -20 -コッキ 🇺🇦️ 5 5 501 -20 -ハタ 🇺🇦️ 5 5 501 -20 -フラグ 🇺🇦️ 5 5 501 -20 -フラッグ 🇺🇦️ 5 5 501 -20 -ウガンダ 🇺🇬️ 5 5 501 -20 -コッキ 🇺🇬️ 5 5 501 -20 -ハタ 🇺🇬️ 5 5 501 -20 -フラグ 🇺🇬️ 5 5 501 -20 -フラッグ 🇺🇬️ 5 5 501 -20 -ガッシュウコクリョウユウショウリトウ 🇺🇲️ 5 5 501 -20 -コッキ 🇺🇲️ 5 5 501 -20 -ハタ 🇺🇲️ 5 5 501 -20 -フラグ 🇺🇲️ 5 5 501 -20 -フラッグ 🇺🇲️ 5 5 501 -20 -コクサイレンゴウ 🇺🇳️ 5 5 501 -20 -コクレン 🇺🇳️ 5 5 501 -20 -コッキ 🇺🇳️ 5 5 501 -20 -ハタ 🇺🇳️ 5 5 501 -20 -フラグ 🇺🇳️ 5 5 501 -20 -フラッグ 🇺🇳️ 5 5 501 -20 -アメリカ 🇺🇸️ 5 5 501 -20 -アメリカガッシュウコク 🇺🇸️ 5 5 501 -20 -コッキ 🇺🇸️ 5 5 501 -20 -ハタ 🇺🇸️ 5 5 501 -20 -フラグ 🇺🇸️ 5 5 501 -20 -フラッグ 🇺🇸️ 5 5 501 -20 -ウルグアイ 🇺🇾️ 5 5 501 -20 -コッキ 🇺🇾️ 5 5 501 -20 -ハタ 🇺🇾️ 5 5 501 -20 -フラグ 🇺🇾️ 5 5 501 -20 -フラッグ 🇺🇾️ 5 5 501 -20 -ウズベキスタン 🇺🇿️ 5 5 501 -20 -コッキ 🇺🇿️ 5 5 501 -20 -ハタ 🇺🇿️ 5 5 501 -20 -フラグ 🇺🇿️ 5 5 501 -20 -フラッグ 🇺🇿️ 5 5 501 -20 -コッキ 🇻🇦️ 5 5 501 -20 -ハタ 🇻🇦️ 5 5 501 -20 -バチカン 🇻🇦️ 5 5 501 -20 -バチカンシコク 🇻🇦️ 5 5 501 -20 -フラグ 🇻🇦️ 5 5 501 -20 -フラッグ 🇻🇦️ 5 5 501 -20 -コッキ 🇻🇨️ 5 5 501 -20 -セントビンセントオヨビグレナディーンショトウ 🇻🇨️ 5 5 501 -20 -ハタ 🇻🇨️ 5 5 501 -20 -フラグ 🇻🇨️ 5 5 501 -20 -フラッグ 🇻🇨️ 5 5 501 -20 -コッキ 🇻🇪️ 5 5 501 -20 -ハタ 🇻🇪️ 5 5 501 -20 -フラグ 🇻🇪️ 5 5 501 -20 -フラッグ 🇻🇪️ 5 5 501 -20 -ベネズエラ 🇻🇪️ 5 5 501 -20 -イギリスリョウヴァージンショトウ 🇻🇬️ 5 5 501 -20 -エイリョウヴァージンショトウ 🇻🇬️ 5 5 501 -20 -コッキ 🇻🇬️ 5 5 501 -20 -ハタ 🇻🇬️ 5 5 501 -20 -フラグ 🇻🇬️ 5 5 501 -20 -フラッグ 🇻🇬️ 5 5 501 -20 -アメリカリョウヴァージンショトウ 🇻🇮️ 5 5 501 -20 -コッキ 🇻🇮️ 5 5 501 -20 -ハタ 🇻🇮️ 5 5 501 -20 -フラグ 🇻🇮️ 5 5 501 -20 -フラッグ 🇻🇮️ 5 5 501 -20 -ベイリョウヴァージンショトウ 🇻🇮️ 5 5 501 -20 -コッキ 🇻🇳️ 5 5 501 -20 -ハタ 🇻🇳️ 5 5 501 -20 -フラグ 🇻🇳️ 5 5 501 -20 -フラッグ 🇻🇳️ 5 5 501 -20 -ベトナム 🇻🇳️ 5 5 501 -20 -コッキ 🇻🇺️ 5 5 501 -20 -ハタ 🇻🇺️ 5 5 501 -20 -バヌアツ 🇻🇺️ 5 5 501 -20 -フラグ 🇻🇺️ 5 5 501 -20 -フラッグ 🇻🇺️ 5 5 501 -20 -ウォリスフツナ 🇼🇫️ 5 5 501 -20 -ウォリス・フツナ 🇼🇫️ 5 5 501 -20 -コッキ 🇼🇫️ 5 5 501 -20 -ハタ 🇼🇫️ 5 5 501 -20 -フラグ 🇼🇫️ 5 5 501 -20 -フラッグ 🇼🇫️ 5 5 501 -20 -コッキ 🇼🇸️ 5 5 501 -20 -サモア 🇼🇸️ 5 5 501 -20 -ハタ 🇼🇸️ 5 5 501 -20 -フラグ 🇼🇸️ 5 5 501 -20 -フラッグ 🇼🇸️ 5 5 501 -20 -コソボ 🇽🇰️ 5 5 501 -20 -コッキ 🇽🇰️ 5 5 501 -20 -ハタ 🇽🇰️ 5 5 501 -20 -フラグ 🇽🇰️ 5 5 501 -20 -フラッグ 🇽🇰️ 5 5 501 -20 -イエメン 🇾🇪️ 5 5 501 -20 -コッキ 🇾🇪️ 5 5 501 -20 -ハタ 🇾🇪️ 5 5 501 -20 -フラグ 🇾🇪️ 5 5 501 -20 -フラッグ 🇾🇪️ 5 5 501 -20 -コッキ 🇾🇹️ 5 5 501 -20 -ハタ 🇾🇹️ 5 5 501 -20 -フラグ 🇾🇹️ 5 5 501 -20 -フラッグ 🇾🇹️ 5 5 501 -20 -マヨット 🇾🇹️ 5 5 501 -20 -コッキ 🇿🇦️ 5 5 501 -20 -ハタ 🇿🇦️ 5 5 501 -20 -フラグ 🇿🇦️ 5 5 501 -20 -フラッグ 🇿🇦️ 5 5 501 -20 -ミナミアフリカ 🇿🇦️ 5 5 501 -20 -コッキ 🇿🇲️ 5 5 501 -20 -ザンビア 🇿🇲️ 5 5 501 -20 -ハタ 🇿🇲️ 5 5 501 -20 -フラグ 🇿🇲️ 5 5 501 -20 -フラッグ 🇿🇲️ 5 5 501 -20 -コッキ 🇿🇼️ 5 5 501 -20 -ジンバブエ 🇿🇼️ 5 5 501 -20 -ハタ 🇿🇼️ 5 5 501 -20 -フラグ 🇿🇼️ 5 5 501 -20 -フラッグ 🇿🇼️ 5 5 501 -20 -イングランド 🏴󠁧󠁢󠁥󠁮󠁧󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁥󠁮󠁧󠁿️ 5 5 501 -20 -スコットランド 🏴󠁧󠁢󠁳󠁣󠁴󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁳󠁣󠁴󠁿️ 5 5 501 -20 -ウェールズ 🏴󠁧󠁢󠁷󠁬󠁳󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁷󠁬󠁳󠁿️ 5 5 501 -20 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E15.1.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E15.1.txt deleted file mode 100644 index 4c7aad6..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_dict_E15.1.txt +++ /dev/null @@ -1,8663 +0,0 @@ -エガオ 😀️ 5 5 501 -20 -カオ 😀️ 5 5 501 -20 -スマイル 😀️ 5 5 501 -20 -ニッコリ 😀️ 5 5 501 -20 -ニッコリワラウ 😀️ 5 5 501 -20 -ワラウ 😀️ 5 5 501 -20 -エガオ 😃️ 5 5 501 -20 -カオ 😃️ 5 5 501 -20 -スマイル 😃️ 5 5 501 -20 -ワーイ 😃️ 5 5 501 -20 -エガオ 😄️ 5 5 501 -20 -カオ 😄️ 5 5 501 -20 -スマイル 😄️ 5 5 501 -20 -ワーイ 😄️ 5 5 501 -20 -エガオ 😁️ 5 5 501 -20 -カオ 😁️ 5 5 501 -20 -スマイル 😁️ 5 5 501 -20 -ニヤットワラウ 😁️ 5 5 501 -20 -ワライ 😁️ 5 5 501 -20 -ワラウ 😁️ 5 5 501 -20 -ウレシイ 😆️ 5 5 501 -20 -エガオ 😆️ 5 5 501 -20 -カオ 😆️ 5 5 501 -20 -キャー 😆️ 5 5 501 -20 -スマイル 😆️ 5 5 501 -20 -マンゾク 😆️ 5 5 501 -20 -アセ 😅️ 5 5 501 -20 -エガオ 😅️ 5 5 501 -20 -カオ 😅️ 5 5 501 -20 -スマイル 😅️ 5 5 501 -20 -ヒヤアセ 😅️ 5 5 501 -20 -ヒヤアセエガオ 😅️ 5 5 501 -20 -ワーイ 😅️ 5 5 501 -20 -エガオ 🤣️ 5 5 501 -20 -カオ 🤣️ 5 5 501 -20 -スマイル 🤣️ 5 5 501 -20 -ワライコロゲル 🤣️ 5 5 501 -20 -ワラウ 🤣️ 5 5 501 -20 -ウレシナキ 😂️ 5 5 501 -20 -エガオ 😂️ 5 5 501 -20 -カオ 😂️ 5 5 501 -20 -スマイル 😂️ 5 5 501 -20 -ナミダ 😂️ 5 5 501 -20 -ワライ 😂️ 5 5 501 -20 -ワラウ 😂️ 5 5 501 -20 -エガオ 🙂️ 5 5 501 -20 -カオ 🙂️ 5 5 501 -20 -スマイル 🙂️ 5 5 501 -20 -ホホエミ 🙂️ 5 5 501 -20 -ホホエム 🙂️ 5 5 501 -20 -カオ 🙃️ 5 5 501 -20 -サカサマ 🙃️ 5 5 501 -20 -サカサマノカオ 🙃️ 5 5 501 -20 -エキタイ 🫠️ 5 5 501 -20 -カオ 🫠️ 5 5 501 -20 -トケソウ 🫠️ 5 5 501 -20 -トケテイルカオ 🫠️ 5 5 501 -20 -トケル 🫠️ 5 5 501 -20 -トロケル 🫠️ 5 5 501 -20 -トロトロ 🫠️ 5 5 501 -20 -ヨウカイ 🫠️ 5 5 501 -20 -ウィンク 😉️ 5 5 501 -20 -ウインク 😉️ 5 5 501 -20 -カオ 😉️ 5 5 501 -20 -エガオ 😊️ 5 5 501 -20 -カオ 😊️ 5 5 501 -20 -スマイル 😊️ 5 5 501 -20 -ニコニコ 😊️ 5 5 501 -20 -ホオヲアカラメル 😊️ 5 5 501 -20 -ホホエミ 😊️ 5 5 501 -20 -ホホヲアカラメル 😊️ 5 5 501 -20 -メヲホソメル 😊️ 5 5 501 -20 -エガオ 😇️ 5 5 501 -20 -カオ 😇️ 5 5 501 -20 -スマイル 😇️ 5 5 501 -20 -テンシ 😇️ 5 5 501 -20 -テンシノワ 😇️ 5 5 501 -20 -テンシノワガツイタエガオ 😇️ 5 5 501 -20 -エガオ 🥰️ 5 5 501 -20 -カオ 🥰️ 5 5 501 -20 -ハートノエガオ 🥰️ 5 5 501 -20 -ムチュウ 🥰️ 5 5 501 -20 -メロメロ 🥰️ 5 5 501 -20 -ラブ 🥰️ 5 5 501 -20 -エガオ 😍️ 5 5 501 -20 -カオ 😍️ 5 5 501 -20 -スマイル 😍️ 5 5 501 -20 -ハート 😍️ 5 5 501 -20 -メガハートノエガオ 😍️ 5 5 501 -20 -ラブ 😍️ 5 5 501 -20 -エガオ 🤩️ 5 5 501 -20 -カオ 🤩️ 5 5 501 -20 -スマイル 🤩️ 5 5 501 -20 -ホシ 🤩️ 5 5 501 -20 -メガホシノエガオ 🤩️ 5 5 501 -20 -カオ 😘️ 5 5 501 -20 -キス 😘️ 5 5 501 -20 -チュッ 😘️ 5 5 501 -20 -ナゲキッス 😘️ 5 5 501 -20 -ハート 😘️ 5 5 501 -20 -カオ 😗️ 5 5 501 -20 -キス 😗️ 5 5 501 -20 -チュッ 😗️ 5 5 501 -20 -エガオ ☺️️ 5 5 501 -20 -カオ ☺️️ 5 5 501 -20 -スマイリー ☺️️ 5 5 501 -20 -スマイル ☺️️ 5 5 501 -20 -ホッ ☺️️ 5 5 501 -20 -カオ 😚️ 5 5 501 -20 -キス 😚️ 5 5 501 -20 -チュッ 😚️ 5 5 501 -20 -メヲトジル 😚️ 5 5 501 -20 -エガオ 😙️ 5 5 501 -20 -カオ 😙️ 5 5 501 -20 -キス 😙️ 5 5 501 -20 -スマイル 😙️ 5 5 501 -20 -チュッ 😙️ 5 5 501 -20 -ニッコリキス 😙️ 5 5 501 -20 -ウレシナミダノカオ 🥲️ 5 5 501 -20 -カオ 🥲️ 5 5 501 -20 -カンドウ 🥲️ 5 5 501 -20 -ジーン 🥲️ 5 5 501 -20 -ナク 🥲️ 5 5 501 -20 -ナミダ 🥲️ 5 5 501 -20 -ウマイ 😋️ 5 5 501 -20 -エガオ 😋️ 5 5 501 -20 -オイシイ 😋️ 5 5 501 -20 -カオ 😋️ 5 5 501 -20 -スマイル 😋️ 5 5 501 -20 -ニコニコ 😋️ 5 5 501 -20 -ニコニコペロリ 😋️ 5 5 501 -20 -カオ 😛️ 5 5 501 -20 -シタ 😛️ 5 5 501 -20 -シタヲダシタカオ 😛️ 5 5 501 -20 -ベロ 😛️ 5 5 501 -20 -ベー 😛️ 5 5 501 -20 -アッカンベー 😜️ 5 5 501 -20 -カオ 😜️ 5 5 501 -20 -シタ 😜️ 5 5 501 -20 -ジョウダン 😜️ 5 5 501 -20 -ジョーク 😜️ 5 5 501 -20 -ベー 😜️ 5 5 501 -20 -オカシイ 🤪️ 5 5 501 -20 -カオ 🤪️ 5 5 501 -20 -ジョーク 🤪️ 5 5 501 -20 -フザケ 🤪️ 5 5 501 -20 -フザケタカオ 🤪️ 5 5 501 -20 -カオ 😝️ 5 5 501 -20 -シタ 😝️ 5 5 501 -20 -ベロ 😝️ 5 5 501 -20 -ベー 😝️ 5 5 501 -20 -メヲトジテベー 😝️ 5 5 501 -20 -ワーイ 😝️ 5 5 501 -20 -オカネノカオ 🤑️ 5 5 501 -20 -カオ 🤑️ 5 5 501 -20 -シタ 🤑️ 5 5 501 -20 -ベロ 🤑️ 5 5 501 -20 -ベー 🤑️ 5 5 501 -20 -エガオ 🤗️ 5 5 501 -20 -カオ 🤗️ 5 5 501 -20 -スマイル 🤗️ 5 5 501 -20 -ハグ 🤗️ 5 5 501 -20 -エガオ 🤭️ 5 5 501 -20 -カオ 🤭️ 5 5 501 -20 -クスクス 🤭️ 5 5 501 -20 -クチニテヲアテタカオ 🤭️ 5 5 501 -20 -スマイル 🤭️ 5 5 501 -20 -ナイショ 🤭️ 5 5 501 -20 -イワナイ 🫢️ 5 5 501 -20 -エッ 🫢️ 5 5 501 -20 -オソレ 🫢️ 5 5 501 -20 -オドロキ 🫢️ 5 5 501 -20 -オノノキ 🫢️ 5 5 501 -20 -カオ 🫢️ 5 5 501 -20 -ヒミツ 🫢️ 5 5 501 -20 -ビックリ 🫢️ 5 5 501 -20 -メヲアケテクチニテヲアテタカオ 🫢️ 5 5 501 -20 -カオ 🫣️ 5 5 501 -20 -キニナル 🫣️ 5 5 501 -20 -コワイモノミタサ 🫣️ 5 5 501 -20 -コワゴワ 🫣️ 5 5 501 -20 -ヌスミミ 🫣️ 5 5 501 -20 -ノゾキミ 🫣️ 5 5 501 -20 -ハズカシイ 🫣️ 5 5 501 -20 -ユビノマカラノゾキミルカオ 🫣️ 5 5 501 -20 -カオ 🤫️ 5 5 501 -20 -シズカニ 🤫️ 5 5 501 -20 -シッ 🤫️ 5 5 501 -20 -シー 🤫️ 5 5 501 -20 -シーッ 🤫️ 5 5 501 -20 -ダマレ 🤫️ 5 5 501 -20 -ウーン 🤔️ 5 5 501 -20 -カオ 🤔️ 5 5 501 -20 -カンガエチュウ 🤔️ 5 5 501 -20 -カンガエル 🤔️ 5 5 501 -20 -カンガエルカオ 🤔️ 5 5 501 -20 -イエッサー 🫡️ 5 5 501 -20 -オーケー 🫡️ 5 5 501 -20 -カオ 🫡️ 5 5 501 -20 -グンタイ 🫡️ 5 5 501 -20 -ケイレイ 🫡️ 5 5 501 -20 -ケイレイスルカオ 🫡️ 5 5 501 -20 -ショウチ 🫡️ 5 5 501 -20 -リョウカイ 🫡️ 5 5 501 -20 -ワカッタ 🫡️ 5 5 501 -20 -カオ 🤐️ 5 5 501 -20 -クチ 🤐️ 5 5 501 -20 -クチチャック 🤐️ 5 5 501 -20 -チャック 🤐️ 5 5 501 -20 -ウタガイ 🤨️ 5 5 501 -20 -オドロキ 🤨️ 5 5 501 -20 -カオ 🤨️ 5 5 501 -20 -マユヲアゲタカオ 🤨️ 5 5 501 -20 -カオ 😐️ 5 5 501 -20 -ポーカーフェイス 😐️ 5 5 501 -20 -ムヒョウジョウ 😐️ 5 5 501 -20 -カオ 😑️ 5 5 501 -20 -ムカンジョウ 😑️ 5 5 501 -20 -ムヒョウジョウ 😑️ 5 5 501 -20 -カオ 😶️ 5 5 501 -20 -クチナシ 😶️ 5 5 501 -20 -クチノナイカオ 😶️ 5 5 501 -20 -ダンマリ 😶️ 5 5 501 -20 -チンモク 😶️ 5 5 501 -20 -ウチキ 🫥️ 5 5 501 -20 -カオ 🫥️ 5 5 501 -20 -テンセンノカオ 🫥️ 5 5 501 -20 -ナイコウテキ 🫥️ 5 5 501 -20 -ムムム 🫥️ 5 5 501 -20 -ユウウツ 🫥️ 5 5 501 -20 -ラクタン 🫥️ 5 5 501 -20 -ウワノソラ 😶‍🌫️️ 5 5 501 -20 -カオ 😶‍🌫️️ 5 5 501 -20 -クモ 😶‍🌫️️ 5 5 501 -20 -クモノナカ 😶‍🌫️️ 5 5 501 -20 -クモノナカノカオ 😶‍🌫️️ 5 5 501 -20 -コッソリ 😶‍🌫️️ 5 5 501 -20 -ホウシンジョウタイ 😶‍🌫️️ 5 5 501 -20 -ボンヤリ 😶‍🌫️️ 5 5 501 -20 -ムチュウ 😶‍🌫️️ 5 5 501 -20 -ウスワライヲスルカオ 😏️ 5 5 501 -20 -カオ 😏️ 5 5 501 -20 -ニヤリ 😏️ 5 5 501 -20 -フッ 😏️ 5 5 501 -20 -カオ 😒️ 5 5 501 -20 -シラケ 😒️ 5 5 501 -20 -シラケタ 😒️ 5 5 501 -20 -シラケル 😒️ 5 5 501 -20 -ジトメ 😒️ 5 5 501 -20 -ウエヲミルカオ 🙄️ 5 5 501 -20 -ウワメ 🙄️ 5 5 501 -20 -カオ 🙄️ 5 5 501 -20 -イー 😬️ 5 5 501 -20 -カオ 😬️ 5 5 501 -20 -シカメガオ 😬️ 5 5 501 -20 -シカメッツラ 😬️ 5 5 501 -20 -シカメツラ 😬️ 5 5 501 -20 -アキラメ 😮‍💨️ 5 5 501 -20 -アンシン 😮‍💨️ 5 5 501 -20 -イキヲハクカオ 😮‍💨️ 5 5 501 -20 -カオ 😮‍💨️ 5 5 501 -20 -コキュウ 😮‍💨️ 5 5 501 -20 -タメイキ 😮‍💨️ 5 5 501 -20 -ハァ 😮‍💨️ 5 5 501 -20 -ヒトアンシン 😮‍💨️ 5 5 501 -20 -ホットシタ 😮‍💨️ 5 5 501 -20 -ウソツキ 🤥️ 5 5 501 -20 -ウソツキノカオ 🤥️ 5 5 501 -20 -カオ 🤥️ 5 5 501 -20 -ピノキオノカオ 🤥️ 5 5 501 -20 -カオ 🫨️ 5 5 501 -20 -コワイ 🫨️ 5 5 501 -20 -ショック 🫨️ 5 5 501 -20 -シンドウ 🫨️ 5 5 501 -20 -ジシン 🫨️ 5 5 501 -20 -ビクビク 🫨️ 5 5 501 -20 -フルエテイル 🫨️ 5 5 501 -20 -フルエテイルカオ 🫨️ 5 5 501 -20 -フルエルカオ 🫨️ 5 5 501 -20 -ブルブル 🫨️ 5 5 501 -20 -no 🙂‍↔️️ 5 5 501 -20 -イイエ 🙂‍↔️️ 5 5 501 -20 -イヤ 🙂‍↔️️ 5 5 501 -20 -イヤダ 🙂‍↔️️ 5 5 501 -20 -ウウン 🙂‍↔️️ 5 5 501 -20 -カオ 🙂‍↔️️ 5 5 501 -20 -クビヲフル 🙂‍↔️️ 5 5 501 -20 -クビヲヨコニフル 🙂‍↔️️ 5 5 501 -20 -ノー 🙂‍↔️️ 5 5 501 -20 -フサンセイ 🙂‍↔️️ 5 5 501 -20 -イイヨ 🙂‍↕️️ 5 5 501 -20 -ウナズク 🙂‍↕️️ 5 5 501 -20 -ウン 🙂‍↕️️ 5 5 501 -20 -ウンウン 🙂‍↕️️ 5 5 501 -20 -カオ 🙂‍↕️️ 5 5 501 -20 -クビヲタテニフル 🙂‍↕️️ 5 5 501 -20 -クビヲフル 🙂‍↕️️ 5 5 501 -20 -ハイ 🙂‍↕️️ 5 5 501 -20 -リョウカイ 🙂‍↕️️ 5 5 501 -20 -ワカル 🙂‍↕️️ 5 5 501 -20 -アンシン 😌️ 5 5 501 -20 -カオ 😌️ 5 5 501 -20 -ホッ 😌️ 5 5 501 -20 -ホットシタカオ 😌️ 5 5 501 -20 -カオ 😔️ 5 5 501 -20 -ショボーン 😔️ 5 5 501 -20 -ションボリ 😔️ 5 5 501 -20 -カオ 😪️ 5 5 501 -20 -ネムイ 😪️ 5 5 501 -20 -ネムル 😪️ 5 5 501 -20 -ネル 😪️ 5 5 501 -20 -カオ 🤤️ 5 5 501 -20 -ヨダレ 🤤️ 5 5 501 -20 -ヨダレヲタラシタカオ 🤤️ 5 5 501 -20 -zzz 😴️ 5 5 501 -20 -カオ 😴️ 5 5 501 -20 -ネムイ 😴️ 5 5 501 -20 -ネムル 😴️ 5 5 501 -20 -ネル 😴️ 5 5 501 -20 -カオ 😷️ 5 5 501 -20 -カゼ 😷️ 5 5 501 -20 -カフンショウ 😷️ 5 5 501 -20 -ビョウキ 😷️ 5 5 501 -20 -マスク 😷️ 5 5 501 -20 -マスクガオ 😷️ 5 5 501 -20 -カオ 🤒️ 5 5 501 -20 -カゼ 🤒️ 5 5 501 -20 -タイオンケイ 🤒️ 5 5 501 -20 -ネツガアルカオ 🤒️ 5 5 501 -20 -ネツヲハカル 🤒️ 5 5 501 -20 -ビョウキ 🤒️ 5 5 501 -20 -カオ 🤕️ 5 5 501 -20 -ケガ 🤕️ 5 5 501 -20 -ケガシテルカオ 🤕️ 5 5 501 -20 -ホウタイ 🤕️ 5 5 501 -20 -ホウタイヲマイタカオ 🤕️ 5 5 501 -20 -カオ 🤢️ 5 5 501 -20 -キモチワルイ 🤢️ 5 5 501 -20 -グアイノワルイカオ 🤢️ 5 5 501 -20 -ハキケヲモヨオシテイルカオ 🤢️ 5 5 501 -20 -ビョウキ 🤢️ 5 5 501 -20 -オウトスルカオ 🤮️ 5 5 501 -20 -カオ 🤮️ 5 5 501 -20 -キモチワルイ 🤮️ 5 5 501 -20 -ゲロ 🤮️ 5 5 501 -20 -ビョウキ 🤮️ 5 5 501 -20 -カオ 🤧️ 5 5 501 -20 -カゼ 🤧️ 5 5 501 -20 -カフンショウ 🤧️ 5 5 501 -20 -クシャミ 🤧️ 5 5 501 -20 -クシャミスルカオ 🤧️ 5 5 501 -20 -アカイカオ 🥵️ 5 5 501 -20 -アセ 🥵️ 5 5 501 -20 -アツイカオ 🥵️ 5 5 501 -20 -アツサ 🥵️ 5 5 501 -20 -ネッチュウショウ 🥵️ 5 5 501 -20 -ハツネツ 🥵️ 5 5 501 -20 -アオイカオ 🥶️ 5 5 501 -20 -コゴエ 🥶️ 5 5 501 -20 -サムイカオ 🥶️ 5 5 501 -20 -サムサ 🥶️ 5 5 501 -20 -シモヤケ 🥶️ 5 5 501 -20 -ツララ 🥶️ 5 5 501 -20 -ウツロナメ 🥴️ 5 5 501 -20 -チュウドク 🥴️ 5 5 501 -20 -フラフラノカオ 🥴️ 5 5 501 -20 -ベロンベロン 🥴️ 5 5 501 -20 -ホロヨイ 🥴️ 5 5 501 -20 -メマイ 🥴️ 5 5 501 -20 -カオ 😵️ 5 5 501 -20 -フラフラ 😵️ 5 5 501 -20 -メマイ 😵️ 5 5 501 -20 -ウズマキ 😵‍💫️ 5 5 501 -20 -カオ 😵‍💫️ 5 5 501 -20 -グルグル 😵‍💫️ 5 5 501 -20 -コマル 😵‍💫️ 5 5 501 -20 -コンラン 😵‍💫️ 5 5 501 -20 -フラフラ 😵‍💫️ 5 5 501 -20 -メガグルグル 😵‍💫️ 5 5 501 -20 -メガマワル 😵‍💫️ 5 5 501 -20 -メマイ 😵‍💫️ 5 5 501 -20 -メヲマワシタカオ 😵‍💫️ 5 5 501 -20 -アタマバクハツ 🤯️ 5 5 501 -20 -オドロキ 🤯️ 5 5 501 -20 -カオ 🤯️ 5 5 501 -20 -ショック 🤯️ 5 5 501 -20 -バクハツ 🤯️ 5 5 501 -20 -ボンッ 🤯️ 5 5 501 -20 -カウガール 🤠️ 5 5 501 -20 -カウボーイ 🤠️ 5 5 501 -20 -カウボーイノカオ 🤠️ 5 5 501 -20 -カオ 🤠️ 5 5 501 -20 -オイワイ 🥳️ 5 5 501 -20 -パーティー 🥳️ 5 5 501 -20 -パーティーノカオ 🥳️ 5 5 501 -20 -フエ 🥳️ 5 5 501 -20 -ボウシ 🥳️ 5 5 501 -20 -カオ 🥸️ 5 5 501 -20 -カソウ 🥸️ 5 5 501 -20 -ヒゲ 🥸️ 5 5 501 -20 -ヘンソウ 🥸️ 5 5 501 -20 -ヘンソウシタカオ 🥸️ 5 5 501 -20 -メガネ 🥸️ 5 5 501 -20 -エガオ 😎️ 5 5 501 -20 -カオ 😎️ 5 5 501 -20 -クール 😎️ 5 5 501 -20 -サングラスデエガオ 😎️ 5 5 501 -20 -スマイル 😎️ 5 5 501 -20 -オタク 🤓️ 5 5 501 -20 -カオ 🤓️ 5 5 501 -20 -マニア 🤓️ 5 5 501 -20 -メガネ 🤓️ 5 5 501 -20 -カオ 🧐️ 5 5 501 -20 -カタメガネ 🧐️ 5 5 501 -20 -カンガエル 🧐️ 5 5 501 -20 -メガネ 🧐️ 5 5 501 -20 -モノクルヲツケタカオ 🧐️ 5 5 501 -20 -カオ 😕️ 5 5 501 -20 -コンラン 😕️ 5 5 501 -20 -コンワク 😕️ 5 5 501 -20 -カオ 🫤️ 5 5 501 -20 -ガッカリ 🫤️ 5 5 501 -20 -クチガナナメノカオ 🫤️ 5 5 501 -20 -コンワク 🫤️ 5 5 501 -20 -フフク 🫤️ 5 5 501 -20 -フマン 🫤️ 5 5 501 -20 -ムカンシン 🫤️ 5 5 501 -20 -ムキリョク 🫤️ 5 5 501 -20 -カオ 😟️ 5 5 501 -20 -シンパイ 😟️ 5 5 501 -20 -ナヤムカオ 😟️ 5 5 501 -20 -カオ 🙁️ 5 5 501 -20 -コマッタ 🙁️ 5 5 501 -20 -シカメッツラ 🙁️ 5 5 501 -20 -シカメツラ 🙁️ 5 5 501 -20 -スコシコマッタ 🙁️ 5 5 501 -20 -スコシコマッタカオ 🙁️ 5 5 501 -20 -カオ ☹️️ 5 5 501 -20 -コマッタ ☹️️ 5 5 501 -20 -コマッタカオ ☹️️ 5 5 501 -20 -シカメッツラ ☹️️ 5 5 501 -20 -シカメツラ ☹️️ 5 5 501 -20 -カオ 😮️ 5 5 501 -20 -キョウカン 😮️ 5 5 501 -20 -クチガヒライタカオ 😮️ 5 5 501 -20 -ヘー 😮️ 5 5 501 -20 -オドロキ 😯️ 5 5 501 -20 -カオ 😯️ 5 5 501 -20 -ビックリ 😯️ 5 5 501 -20 -ビックリガオ 😯️ 5 5 501 -20 -ポカーン 😯️ 5 5 501 -20 -オドロキ 😲️ 5 5 501 -20 -カオ 😲️ 5 5 501 -20 -キョウガク 😲️ 5 5 501 -20 -ビックリ 😲️ 5 5 501 -20 -ビックリシタカオ 😲️ 5 5 501 -20 -アカクナル 😳️ 5 5 501 -20 -カオ 😳️ 5 5 501 -20 -セキメン 😳️ 5 5 501 -20 -ウッタエルヨウナカオ 🥺️ 5 5 501 -20 -カオ 🥺️ 5 5 501 -20 -コイヌノメ 🥺️ 5 5 501 -20 -コンガン 🥺️ 5 5 501 -20 -ナサケ 🥺️ 5 5 501 -20 -ピエン 🥺️ 5 5 501 -20 -アリガトウ 🥹️ 5 5 501 -20 -ウルウル 🥹️ 5 5 501 -20 -ウレシイ 🥹️ 5 5 501 -20 -ウレシナミダ 🥹️ 5 5 501 -20 -カオ 🥹️ 5 5 501 -20 -コンガン 🥹️ 5 5 501 -20 -ナキガオ 🥹️ 5 5 501 -20 -ナミダ 🥹️ 5 5 501 -20 -ナミダヲコラエタカオ 🥹️ 5 5 501 -20 -アキレガオ 😦️ 5 5 501 -20 -カオ 😦️ 5 5 501 -20 -シカメガオ 😦️ 5 5 501 -20 -シカメッツラ 😦️ 5 5 501 -20 -シカメツラ 😦️ 5 5 501 -20 -フホンイ 😦️ 5 5 501 -20 -フマン 😦️ 5 5 501 -20 -カオ 😧️ 5 5 501 -20 -クノウ 😧️ 5 5 501 -20 -クモン 😧️ 5 5 501 -20 -アオザメ 😨️ 5 5 501 -20 -カオ 😨️ 5 5 501 -20 -ガーン 😨️ 5 5 501 -20 -アオザメ 😰️ 5 5 501 -20 -カオ 😰️ 5 5 501 -20 -ヒヤアセ 😰️ 5 5 501 -20 -ヒヤアセアオザメ 😰️ 5 5 501 -20 -アセ 😥️ 5 5 501 -20 -カオ 😥️ 5 5 501 -20 -コマッタ 😥️ 5 5 501 -20 -ドウシヨウ 😥️ 5 5 501 -20 -カオ 😢️ 5 5 501 -20 -カナシイ 😢️ 5 5 501 -20 -ナキガオ 😢️ 5 5 501 -20 -ナク 😢️ 5 5 501 -20 -ナミダ 😢️ 5 5 501 -20 -オオナキ 😭️ 5 5 501 -20 -カオ 😭️ 5 5 501 -20 -カナシイ 😭️ 5 5 501 -20 -ゴウキュウ 😭️ 5 5 501 -20 -ナク 😭️ 5 5 501 -20 -ナミダ 😭️ 5 5 501 -20 -カオ 😱️ 5 5 501 -20 -ガーン 😱️ 5 5 501 -20 -キョウフ 😱️ 5 5 501 -20 -サケビ 😱️ 5 5 501 -20 -ショック 😱️ 5 5 501 -20 -カオ 😖️ 5 5 501 -20 -コンラン 😖️ 5 5 501 -20 -コンワク 😖️ 5 5 501 -20 -コンワクシタカオ 😖️ 5 5 501 -20 -カオ 😣️ 5 5 501 -20 -ガマン 😣️ 5 5 501 -20 -カオ 😞️ 5 5 501 -20 -ガッカリ 😞️ 5 5 501 -20 -ガックリ 😞️ 5 5 501 -20 -シツボウシタカオ 😞️ 5 5 501 -20 -アセ 😓️ 5 5 501 -20 -カオ 😓️ 5 5 501 -20 -キモヲヒヤシタ 😓️ 5 5 501 -20 -ヒヤアセ 😓️ 5 5 501 -20 -アキラメ 😩️ 5 5 501 -20 -カオ 😩️ 5 5 501 -20 -ツカレ 😩️ 5 5 501 -20 -カオ 😫️ 5 5 501 -20 -ゲンカイ 😫️ 5 5 501 -20 -ツカレ 😫️ 5 5 501 -20 -ツカレタ 😫️ 5 5 501 -20 -アクビシタカオ 🥱️ 5 5 501 -20 -カオ 🥱️ 5 5 501 -20 -タイクツ 🥱️ 5 5 501 -20 -ツカレ 🥱️ 5 5 501 -20 -ネムイ 🥱️ 5 5 501 -20 -フアー 🥱️ 5 5 501 -20 -カオ 😤️ 5 5 501 -20 -カチホコッタカオ 😤️ 5 5 501 -20 -トクイゲ 😤️ 5 5 501 -20 -ハナイキ 😤️ 5 5 501 -20 -フンッ 😤️ 5 5 501 -20 -イカリ 😡️ 5 5 501 -20 -カオ 😡️ 5 5 501 -20 -カンカン 😡️ 5 5 501 -20 -ゲキド 😡️ 5 5 501 -20 -フクレッツラ 😡️ 5 5 501 -20 -プンプン 😡️ 5 5 501 -20 -イカリ 😠️ 5 5 501 -20 -カオ 😠️ 5 5 501 -20 -プンプン 😠️ 5 5 501 -20 -イカリ 🤬️ 5 5 501 -20 -カオ 🤬️ 5 5 501 -20 -ノノシリ 🤬️ 5 5 501 -20 -ノノシル 🤬️ 5 5 501 -20 -アクマ 😈️ 5 5 501 -20 -エガオ 😈️ 5 5 501 -20 -カオ 😈️ 5 5 501 -20 -スマイル 😈️ 5 5 501 -20 -デビル 😈️ 5 5 501 -20 -ワラッタアクマ 😈️ 5 5 501 -20 -アクマ 👿️ 5 5 501 -20 -オコッタアクマ 👿️ 5 5 501 -20 -カオ 👿️ 5 5 501 -20 -カンカン 👿️ 5 5 501 -20 -ゲキド 👿️ 5 5 501 -20 -デビル 👿️ 5 5 501 -20 -カオ 💀️ 5 5 501 -20 -ガイコツ 💀️ 5 5 501 -20 -シ 💀️ 5 5 501 -20 -スカル 💀️ 5 5 501 -20 -ドクロ 💀️ 5 5 501 -20 -カオ ☠️️ 5 5 501 -20 -ガイコツ ☠️️ 5 5 501 -20 -スカル ☠️️ 5 5 501 -20 -ドクロ ☠️️ 5 5 501 -20 -ドクロトホネ ☠️️ 5 5 501 -20 -ウンコ 💩️ 5 5 501 -20 -ウンチ 💩️ 5 5 501 -20 -カオ 💩️ 5 5 501 -20 -カオ 🤡️ 5 5 501 -20 -ピエロ 🤡️ 5 5 501 -20 -ピエロノカオ 🤡️ 5 5 501 -20 -オニ 👹️ 5 5 501 -20 -オメン 👹️ 5 5 501 -20 -カオ 👹️ 5 5 501 -20 -ナマハゲ 👹️ 5 5 501 -20 -バケモノ 👹️ 5 5 501 -20 -オメン 👺️ 5 5 501 -20 -カオ 👺️ 5 5 501 -20 -テング 👺️ 5 5 501 -20 -オバケ 👻️ 5 5 501 -20 -ゴースト 👻️ 5 5 501 -20 -ユウレイ 👻️ 5 5 501 -20 -ユーレイ 👻️ 5 5 501 -20 -イセイジン 👽️ 5 5 501 -20 -ウチュウジン 👽️ 5 5 501 -20 -エイリアン 👽️ 5 5 501 -20 -カオ 👽️ 5 5 501 -20 -グレイ 👽️ 5 5 501 -20 -ユーフォー 👽️ 5 5 501 -20 -イセイジン 👾️ 5 5 501 -20 -インベーダー 👾️ 5 5 501 -20 -ウチュウジン 👾️ 5 5 501 -20 -エイリアン 👾️ 5 5 501 -20 -カオ 👾️ 5 5 501 -20 -モンスター 👾️ 5 5 501 -20 -カオ 🤖️ 5 5 501 -20 -ロボット 🤖️ 5 5 501 -20 -エガオ 😺️ 5 5 501 -20 -カオ 😺️ 5 5 501 -20 -スマイル 😺️ 5 5 501 -20 -ニッコリワラウネコ 😺️ 5 5 501 -20 -ネコ 😺️ 5 5 501 -20 -エガオ 😸️ 5 5 501 -20 -カオ 😸️ 5 5 501 -20 -スマイル 😸️ 5 5 501 -20 -ニヤットワラウネコ 😸️ 5 5 501 -20 -ネコ 😸️ 5 5 501 -20 -ワラウ 😸️ 5 5 501 -20 -ウレシナキスルネコ 😹️ 5 5 501 -20 -エガオ 😹️ 5 5 501 -20 -カオ 😹️ 5 5 501 -20 -スマイル 😹️ 5 5 501 -20 -ナミダ 😹️ 5 5 501 -20 -ネコ 😹️ 5 5 501 -20 -エガオ 😻️ 5 5 501 -20 -カオ 😻️ 5 5 501 -20 -スマイル 😻️ 5 5 501 -20 -ネコ 😻️ 5 5 501 -20 -ハート 😻️ 5 5 501 -20 -メガハートノネコ 😻️ 5 5 501 -20 -カオ 😼️ 5 5 501 -20 -ニヤリ 😼️ 5 5 501 -20 -ニヤリトスルネコ 😼️ 5 5 501 -20 -ネコ 😼️ 5 5 501 -20 -フッ 😼️ 5 5 501 -20 -カオ 😽️ 5 5 501 -20 -キス 😽️ 5 5 501 -20 -チュッ 😽️ 5 5 501 -20 -ネコ 😽️ 5 5 501 -20 -ネコノキス 😽️ 5 5 501 -20 -カオ 🙀️ 5 5 501 -20 -ガーン 🙀️ 5 5 501 -20 -ショック 🙀️ 5 5 501 -20 -ゼツボウスルネコ 🙀️ 5 5 501 -20 -ネコ 🙀️ 5 5 501 -20 -ビックリ 🙀️ 5 5 501 -20 -カオ 😿️ 5 5 501 -20 -カナシイ 😿️ 5 5 501 -20 -ナイテイルネコ 😿️ 5 5 501 -20 -ナミダ 😿️ 5 5 501 -20 -ネコ 😿️ 5 5 501 -20 -カオ 😾️ 5 5 501 -20 -ネコ 😾️ 5 5 501 -20 -フキゲン 😾️ 5 5 501 -20 -フキゲンナネコ 😾️ 5 5 501 -20 -プンプン 😾️ 5 5 501 -20 -サル 🙈️ 5 5 501 -20 -サンザル 🙈️ 5 5 501 -20 -ミザル 🙈️ 5 5 501 -20 -キカザル 🙉️ 5 5 501 -20 -サル 🙉️ 5 5 501 -20 -サンザル 🙉️ 5 5 501 -20 -イワザル 🙊️ 5 5 501 -20 -サル 🙊️ 5 5 501 -20 -サンザル 🙊️ 5 5 501 -20 -コイブミ 💌️ 5 5 501 -20 -テガミ 💌️ 5 5 501 -20 -ハート 💌️ 5 5 501 -20 -フウトウ 💌️ 5 5 501 -20 -ラブレター 💌️ 5 5 501 -20 -キューピッド 💘️ 5 5 501 -20 -ハート 💘️ 5 5 501 -20 -ハートニヤ 💘️ 5 5 501 -20 -ハートノヤ 💘️ 5 5 501 -20 -ヤ 💘️ 5 5 501 -20 -ハート 💝️ 5 5 501 -20 -ハートニリボン 💝️ 5 5 501 -20 -バレンタイン 💝️ 5 5 501 -20 -バレンタインデー 💝️ 5 5 501 -20 -リボン 💝️ 5 5 501 -20 -キラキラ 💖️ 5 5 501 -20 -キラキラハート 💖️ 5 5 501 -20 -ハート 💖️ 5 5 501 -20 -ピカピカハート 💖️ 5 5 501 -20 -オオキクナルハート 💗️ 5 5 501 -20 -トキメキ 💗️ 5 5 501 -20 -ドキドキ 💗️ 5 5 501 -20 -ハート 💗️ 5 5 501 -20 -ドキドキ 💓️ 5 5 501 -20 -ドキドキスルハート 💓️ 5 5 501 -20 -ハート 💓️ 5 5 501 -20 -カイテンスルハート 💞️ 5 5 501 -20 -カワイイ 💞️ 5 5 501 -20 -ハート 💞️ 5 5 501 -20 -2ツノハート 💕️ 5 5 501 -20 -ハート 💕️ 5 5 501 -20 -フタツノハート 💕️ 5 5 501 -20 -ラブ 💕️ 5 5 501 -20 -ハート 💟️ 5 5 501 -20 -ハートデコ 💟️ 5 5 501 -20 -ハートデコレーション 💟️ 5 5 501 -20 -エクスクラメーションマーク ❣️️ 5 5 501 -20 -ハート ❣️️ 5 5 501 -20 -ハートノビックリ ❣️️ 5 5 501 -20 -ビックリマーク ❣️️ 5 5 501 -20 -シツレン 💔️ 5 5 501 -20 -ハート 💔️ 5 5 501 -20 -ハートブレイク 💔️ 5 5 501 -20 -ワカレタ 💔️ 5 5 501 -20 -ワレタハート 💔️ 5 5 501 -20 -アイ ❤️‍🔥️ 5 5 501 -20 -セイナルシンゾウ ❤️‍🔥️ 5 5 501 -20 -ネツイ ❤️‍🔥️ 5 5 501 -20 -ハート ❤️‍🔥️ 5 5 501 -20 -ヒノツイタ ❤️‍🔥️ 5 5 501 -20 -フンキ ❤️‍🔥️ 5 5 501 -20 -ホノオ ❤️‍🔥️ 5 5 501 -20 -モエルハート ❤️‍🔥️ 5 5 501 -20 -ヤルキ ❤️‍🔥️ 5 5 501 -20 -カイフクチュウ ❤️‍🩹️ 5 5 501 -20 -キズツイタ ❤️‍🩹️ 5 5 501 -20 -ケガ ❤️‍🩹️ 5 5 501 -20 -ショウシン ❤️‍🩹️ 5 5 501 -20 -チリョウチュウ ❤️‍🩹️ 5 5 501 -20 -ツライ ❤️‍🩹️ 5 5 501 -20 -ドウジョウ ❤️‍🩹️ 5 5 501 -20 -ハート ❤️‍🩹️ 5 5 501 -20 -ホウタイ ❤️‍🩹️ 5 5 501 -20 -ホウタイヲマイタハート ❤️‍🩹️ 5 5 501 -20 -アカイハート ❤️️ 5 5 501 -20 -クロハート ❤️️ 5 5 501 -20 -ハート ❤️️ 5 5 501 -20 -ハートマーク ❤️️ 5 5 501 -20 -カワイイ 🩷️ 5 5 501 -20 -スキ 🩷️ 5 5 501 -20 -ハート 🩷️ 5 5 501 -20 -ピンク 🩷️ 5 5 501 -20 -ピンクノハート 🩷️ 5 5 501 -20 -ラブ 🩷️ 5 5 501 -20 -オレンジノハート 🧡️ 5 5 501 -20 -ハート 🧡️ 5 5 501 -20 -キイロノハート 💛️ 5 5 501 -20 -ハート 💛️ 5 5 501 -20 -ハート 💚️ 5 5 501 -20 -ミドリノハート 💚️ 5 5 501 -20 -アオイハート 💙️ 5 5 501 -20 -ハート 💙️ 5 5 501 -20 -ウスイアオ 🩵️ 5 5 501 -20 -ウスイアオノハート 🩵️ 5 5 501 -20 -シアン 🩵️ 5 5 501 -20 -ティールブルー 🩵️ 5 5 501 -20 -ハート 🩵️ 5 5 501 -20 -ミズイロノハート 🩵️ 5 5 501 -20 -ハート 💜️ 5 5 501 -20 -ムラサキノハート 💜️ 5 5 501 -20 -チャイロイハート 🤎️ 5 5 501 -20 -ハート 🤎️ 5 5 501 -20 -クロイハート 🖤️ 5 5 501 -20 -ハート 🖤️ 5 5 501 -20 -ギンイロ 🩶️ 5 5 501 -20 -スレートグレー 🩶️ 5 5 501 -20 -ハイイロ 🩶️ 5 5 501 -20 -ハイイロノハート 🩶️ 5 5 501 -20 -ハート 🩶️ 5 5 501 -20 -シロイハート 🤍️ 5 5 501 -20 -ハート 🤍️ 5 5 501 -20 -キス 💋️ 5 5 501 -20 -キスマーク 💋️ 5 5 501 -20 -クチビル 💋️ 5 5 501 -20 -チュッ 💋️ 5 5 501 -20 -100 💯️ 5 5 501 -20 -100テン 💯️ 5 5 501 -20 -100テンマンテン 💯️ 5 5 501 -20 -ゼンモンセイカイ 💯️ 5 5 501 -20 -ヒャクテンマンテン 💯️ 5 5 501 -20 -マンテン 💯️ 5 5 501 -20 -イカリ 💢️ 5 5 501 -20 -ムカッ 💢️ 5 5 501 -20 -ショウゲキ 💥️ 5 5 501 -20 -ショウトツ 💥️ 5 5 501 -20 -ドンッ 💥️ 5 5 501 -20 -クラクラ 💫️ 5 5 501 -20 -ホシ 💫️ 5 5 501 -20 -メガマワル 💫️ 5 5 501 -20 -アセ 💦️ 5 5 501 -20 -アセアセ 💦️ 5 5 501 -20 -イソグ 💨️ 5 5 501 -20 -イソゲ 💨️ 5 5 501 -20 -ダッシュ 💨️ 5 5 501 -20 -ハシル 💨️ 5 5 501 -20 -アナ 🕳️️ 5 5 501 -20 -カイワ 💬️ 5 5 501 -20 -カイワノフキダシ 💬️ 5 5 501 -20 -セリフ 💬️ 5 5 501 -20 -フキダシ 💬️ 5 5 501 -20 -フキダシ 👁️‍🗨️️ 5 5 501 -20 -フキダシノメ 👁️‍🗨️️ 5 5 501 -20 -メ 👁️‍🗨️️ 5 5 501 -20 -モクゲキ 👁️‍🗨️️ 5 5 501 -20 -カイワ 🗨️️ 5 5 501 -20 -セリフ 🗨️️ 5 5 501 -20 -フキダシ 🗨️️ 5 5 501 -20 -フキダシヒダリ 🗨️️ 5 5 501 -20 -イカリノフキダシ 🗯️️ 5 5 501 -20 -フキダシ 🗯️️ 5 5 501 -20 -カンガエゴト 💭️ 5 5 501 -20 -クモガタノフキダシ 💭️ 5 5 501 -20 -フキダシ 💭️ 5 5 501 -20 -モクモク 💭️ 5 5 501 -20 -zzz 💤️ 5 5 501 -20 -イビキ 💤️ 5 5 501 -20 -グーグー 💤️ 5 5 501 -20 -ネル 💤️ 5 5 501 -20 -サヨナラ 👋️ 5 5 501 -20 -テ 👋️ 5 5 501 -20 -テヲフル 👋️ 5 5 501 -20 -バイバイ 👋️ 5 5 501 -20 -テ 🤚️ 5 5 501 -20 -テノコウ 🤚️ 5 5 501 -20 -テ 🖐️️ 5 5 501 -20 -パー 🖐️️ 5 5 501 -20 -ヒライタテ 🖐️️ 5 5 501 -20 -キョシュ ✋️ 5 5 501 -20 -テ ✋️ 5 5 501 -20 -テノヒラ ✋️ 5 5 501 -20 -パー ✋️ 5 5 501 -20 -スポック 🖖️ 5 5 501 -20 -テ 🖖️ 5 5 501 -20 -バルカンジン 🖖️ 5 5 501 -20 -バルカンノアイサツ 🖖️ 5 5 501 -20 -テ 🫱️ 5 5 501 -20 -ホウコウ 🫱️ 5 5 501 -20 -ミギ 🫱️ 5 5 501 -20 -ミギガワ 🫱️ 5 5 501 -20 -ミギニムケタテ 🫱️ 5 5 501 -20 -テ 🫲️ 5 5 501 -20 -ヒダリ 🫲️ 5 5 501 -20 -ヒダリガワ 🫲️ 5 5 501 -20 -ヒダリニムケタテ 🫲️ 5 5 501 -20 -ホウコウ 🫲️ 5 5 501 -20 -オトス 🫳️ 5 5 501 -20 -シタ 🫳️ 5 5 501 -20 -シタガワ 🫳️ 5 5 501 -20 -シタニムケタテ 🫳️ 5 5 501 -20 -テ 🫳️ 5 5 501 -20 -ウエ 🫴️ 5 5 501 -20 -ウエガワ 🫴️ 5 5 501 -20 -ウエニムケタテ 🫴️ 5 5 501 -20 -ウケル 🫴️ 5 5 501 -20 -テ 🫴️ 5 5 501 -20 -オシテイルテ 🫷️ 5 5 501 -20 -オス 🫷️ 5 5 501 -20 -コトワル 🫷️ 5 5 501 -20 -ストップ 🫷️ 5 5 501 -20 -テ 🫷️ 5 5 501 -20 -ハイタッチ 🫷️ 5 5 501 -20 -ヒダリムキ 🫷️ 5 5 501 -20 -ヒダリムキニオシテイルテ 🫷️ 5 5 501 -20 -マテ 🫷️ 5 5 501 -20 -オス 🫸️ 5 5 501 -20 -コトワル 🫸️ 5 5 501 -20 -ストップ 🫸️ 5 5 501 -20 -ハイタッチ 🫸️ 5 5 501 -20 -マテ 🫸️ 5 5 501 -20 -ミギムキ 🫸️ 5 5 501 -20 -ミギムキニオシテイルテ 🫸️ 5 5 501 -20 -ok 👌️ 5 5 501 -20 -オッケー 👌️ 5 5 501 -20 -オーケー 👌️ 5 5 501 -20 -オーケーノテ 👌️ 5 5 501 -20 -テ 👌️ 5 5 501 -20 -ウワムキニスボメタテ 🤌️ 5 5 501 -20 -ジェスチャー 🤌️ 5 5 501 -20 -スボメル 🤌️ 5 5 501 -20 -テ 🤌️ 5 5 501 -20 -ユビ 🤌️ 5 5 501 -20 -スコシダケ 🤏️ 5 5 501 -20 -チョット 🤏️ 5 5 501 -20 -ツマンデイルユビ 🤏️ 5 5 501 -20 -テ 🤏️ 5 5 501 -20 -ユビ 🤏️ 5 5 501 -20 -チョキ ✌️️ 5 5 501 -20 -テ ✌️️ 5 5 501 -20 -ピース ✌️️ 5 5 501 -20 -ブイサイン ✌️️ 5 5 501 -20 -テ 🤞️ 5 5 501 -20 -ユビ 🤞️ 5 5 501 -20 -ユビヲクロス 🤞️ 5 5 501 -20 -オヤユビトヒトサシユビヲクロス 🫰️ 5 5 501 -20 -ダイスキ 🫰️ 5 5 501 -20 -テ 🫰️ 5 5 501 -20 -ハート 🫰️ 5 5 501 -20 -ユビ 🫰️ 5 5 501 -20 -ユビハート 🫰️ 5 5 501 -20 -ユビヲクロス 🫰️ 5 5 501 -20 -アイシテル 🤟️ 5 5 501 -20 -アイラブユー 🤟️ 5 5 501 -20 -テ 🤟️ 5 5 501 -20 -キツネ 🤘️ 5 5 501 -20 -ツノノユビサイン 🤘️ 5 5 501 -20 -テ 🤘️ 5 5 501 -20 -テ 🤙️ 5 5 501 -20 -デンワ 🤙️ 5 5 501 -20 -デンワノアイズ 🤙️ 5 5 501 -20 -デンワノジェスチャー 🤙️ 5 5 501 -20 -テ 👈️ 5 5 501 -20 -ヒダリ 👈️ 5 5 501 -20 -ヒダリユビサシ 👈️ 5 5 501 -20 -ヤジルシ 👈️ 5 5 501 -20 -ユビサシ 👈️ 5 5 501 -20 -ユビサス 👈️ 5 5 501 -20 -テ 👉️ 5 5 501 -20 -ミギ 👉️ 5 5 501 -20 -ミギユビサシ 👉️ 5 5 501 -20 -ヤジルシ 👉️ 5 5 501 -20 -ユビサシ 👉️ 5 5 501 -20 -ユビサス 👉️ 5 5 501 -20 -ウエ 👆️ 5 5 501 -20 -テ 👆️ 5 5 501 -20 -テノコウウエユビサシ 👆️ 5 5 501 -20 -テノコウジョウユビサシ 👆️ 5 5 501 -20 -ヤジルシ 👆️ 5 5 501 -20 -ユビサシ 👆️ 5 5 501 -20 -ユビサス 👆️ 5 5 501 -20 -ウエ 🖕️ 5 5 501 -20 -タテタナカユビ 🖕️ 5 5 501 -20 -テ 🖕️ 5 5 501 -20 -ナカユビ 🖕️ 5 5 501 -20 -ユビサシ 🖕️ 5 5 501 -20 -シタ 👇️ 5 5 501 -20 -シタユビサシ 👇️ 5 5 501 -20 -テ 👇️ 5 5 501 -20 -ヤジルシ 👇️ 5 5 501 -20 -ユビサシ 👇️ 5 5 501 -20 -ユビサス 👇️ 5 5 501 -20 -ウエ ☝️️ 5 5 501 -20 -ウエユビサシ ☝️️ 5 5 501 -20 -テ ☝️️ 5 5 501 -20 -ヒトサシユビ ☝️️ 5 5 501 -20 -ユビサシ ☝️️ 5 5 501 -20 -m9 🫵️ 5 5 501 -20 -オマエダ 🫵️ 5 5 501 -20 -テ 🫵️ 5 5 501 -20 -ヒトヲユビサシテイルテ 🫵️ 5 5 501 -20 -プギャー 🫵️ 5 5 501 -20 -ユビサシ 🫵️ 5 5 501 -20 -ok 👍️ 5 5 501 -20 -ウエ 👍️ 5 5 501 -20 -オッケー 👍️ 5 5 501 -20 -オヤユビ 👍️ 5 5 501 -20 -オヤユビサイン 👍️ 5 5 501 -20 -オーケー 👍️ 5 5 501 -20 -グッド 👍️ 5 5 501 -20 -サムアップ 👍️ 5 5 501 -20 -サムズアップ 👍️ 5 5 501 -20 -テ 👍️ 5 5 501 -20 -ng 👎️ 5 5 501 -20 -エヌジー 👎️ 5 5 501 -20 -サムズダウン 👎️ 5 5 501 -20 -シタ 👎️ 5 5 501 -20 -ダメ 👎️ 5 5 501 -20 -テ 👎️ 5 5 501 -20 -ブーイング 👎️ 5 5 501 -20 -ボツ 👎️ 5 5 501 -20 -グー ✊️ 5 5 501 -20 -ゲンコツ ✊️ 5 5 501 -20 -テ ✊️ 5 5 501 -20 -グー 👊️ 5 5 501 -20 -ゲンコツ 👊️ 5 5 501 -20 -テ 👊️ 5 5 501 -20 -パンチ 👊️ 5 5 501 -20 -コブシ 🤛️ 5 5 501 -20 -テ 🤛️ 5 5 501 -20 -パンチ 🤛️ 5 5 501 -20 -ヒダリ 🤛️ 5 5 501 -20 -ヒダリムキノコブシ 🤛️ 5 5 501 -20 -コブシ 🤜️ 5 5 501 -20 -テ 🤜️ 5 5 501 -20 -パンチ 🤜️ 5 5 501 -20 -ミギ 🤜️ 5 5 501 -20 -ミギムキノコブシ 🤜️ 5 5 501 -20 -テ 👏️ 5 5 501 -20 -ハクシュ 👏️ 5 5 501 -20 -パチパチ 👏️ 5 5 501 -20 -テ 🙌️ 5 5 501 -20 -テヲアゲル 🙌️ 5 5 501 -20 -バンザイ 🙌️ 5 5 501 -20 -リョウテ 🙌️ 5 5 501 -20 -アイ 🫶️ 5 5 501 -20 -テ 🫶️ 5 5 501 -20 -ハート 🫶️ 5 5 501 -20 -ハートガタノテ 🫶️ 5 5 501 -20 -ハートポーズ 🫶️ 5 5 501 -20 -ラブ 🫶️ 5 5 501 -20 -オッハー 👐️ 5 5 501 -20 -テ 👐️ 5 5 501 -20 -テノヒラ 👐️ 5 5 501 -20 -リョウテノヒラ 👐️ 5 5 501 -20 -イノリ 🤲️ 5 5 501 -20 -テ 🤲️ 5 5 501 -20 -テノヒラヲソロエタリョウテ 🤲️ 5 5 501 -20 -リョウテ 🤲️ 5 5 501 -20 -アクシュ 🤝️ 5 5 501 -20 -ゴウイ 🤝️ 5 5 501 -20 -テ 🤝️ 5 5 501 -20 -ヨロシク 🤝️ 5 5 501 -20 -イノリ 🙏️ 5 5 501 -20 -イノル 🙏️ 5 5 501 -20 -オネガイ 🙏️ 5 5 501 -20 -ガッショウ 🙏️ 5 5 501 -20 -ゴメンナサイ 🙏️ 5 5 501 -20 -リョウテ 🙏️ 5 5 501 -20 -カイテイルテ ✍️️ 5 5 501 -20 -テ ✍️️ 5 5 501 -20 -テガキ ✍️️ 5 5 501 -20 -テデカク ✍️️ 5 5 501 -20 -ツメ 💅️ 5 5 501 -20 -ネイル 💅️ 5 5 501 -20 -マニキュア 💅️ 5 5 501 -20 -マニキュアヲヌルテ 💅️ 5 5 501 -20 -ジドリ 🤳️ 5 5 501 -20 -ジブンドリ 🤳️ 5 5 501 -20 -スマホ 🤳️ 5 5 501 -20 -セルフィー 🤳️ 5 5 501 -20 -キントレ 💪️ 5 5 501 -20 -キンニク 💪️ 5 5 501 -20 -チカラコブ 💪️ 5 5 501 -20 -ムキムキ 💪️ 5 5 501 -20 -アクセシビリティ 🦾️ 5 5 501 -20 -ウデ 🦾️ 5 5 501 -20 -ギシュ 🦾️ 5 5 501 -20 -ジンコウソウグ 🦾️ 5 5 501 -20 -テ 🦾️ 5 5 501 -20 -アクセシビリティ 🦿️ 5 5 501 -20 -アシ 🦿️ 5 5 501 -20 -ギソク 🦿️ 5 5 501 -20 -ジンコウソウグ 🦿️ 5 5 501 -20 -アシ 🦵️ 5 5 501 -20 -キック 🦵️ 5 5 501 -20 -アシ 🦶️ 5 5 501 -20 -キック 🦶️ 5 5 501 -20 -ダンス 🦶️ 5 5 501 -20 -フミツケル 🦶️ 5 5 501 -20 -カオ 👂️ 5 5 501 -20 -カラダ 👂️ 5 5 501 -20 -ミミ 👂️ 5 5 501 -20 -アクセシビリティ 🦻️ 5 5 501 -20 -チョウカク 🦻️ 5 5 501 -20 -ホチョウキヲツケタミミ 🦻️ 5 5 501 -20 -ミミ 🦻️ 5 5 501 -20 -カオ 👃️ 5 5 501 -20 -カラダ 👃️ 5 5 501 -20 -ハナ 👃️ 5 5 501 -20 -アタマ 🧠️ 5 5 501 -20 -チシキ 🧠️ 5 5 501 -20 -ノウ 🧠️ 5 5 501 -20 -ノウミソ 🧠️ 5 5 501 -20 -コドウ 🫀️ 5 5 501 -20 -シンゾウ 🫀️ 5 5 501 -20 -シンパク 🫀️ 5 5 501 -20 -ゾウキ 🫀️ 5 5 501 -20 -ミャク 🫀️ 5 5 501 -20 -コキュウ 🫁️ 5 5 501 -20 -ゾウキ 🫁️ 5 5 501 -20 -ハイ 🫁️ 5 5 501 -20 -ハ 🦷️ 5 5 501 -20 -ハイシャ 🦷️ 5 5 501 -20 -コッカク 🦴️ 5 5 501 -20 -ホネ 🦴️ 5 5 501 -20 -カオ 👀️ 5 5 501 -20 -カラダ 👀️ 5 5 501 -20 -メ 👀️ 5 5 501 -20 -リョウメ 👀️ 5 5 501 -20 -カタメ 👁️️ 5 5 501 -20 -ヒトツメ 👁️️ 5 5 501 -20 -メ 👁️️ 5 5 501 -20 -カオ 👅️ 5 5 501 -20 -シタ 👅️ 5 5 501 -20 -ベロ 👅️ 5 5 501 -20 -ベー 👅️ 5 5 501 -20 -カオ 👄️ 5 5 501 -20 -キス 👄️ 5 5 501 -20 -クチ 👄️ 5 5 501 -20 -クチビル 👄️ 5 5 501 -20 -クチ 🫦️ 5 5 501 -20 -クチビル 🫦️ 5 5 501 -20 -クチビルヲカム 🫦️ 5 5 501 -20 -クチビルヲカンデイルクチ 🫦️ 5 5 501 -20 -クヤシイ 🫦️ 5 5 501 -20 -クヤシサ 🫦️ 5 5 501 -20 -ユウワク 🫦️ 5 5 501 -20 -アカチャン 👶️ 5 5 501 -20 -アカンボウ 👶️ 5 5 501 -20 -カオ 👶️ 5 5 501 -20 -ベビー 👶️ 5 5 501 -20 -カオ 🧒️ 5 5 501 -20 -コドモ 🧒️ 5 5 501 -20 -オトコノコ 👦️ 5 5 501 -20 -カオ 👦️ 5 5 501 -20 -コドモ 👦️ 5 5 501 -20 -ショウネン 👦️ 5 5 501 -20 -オンナ 👧️ 5 5 501 -20 -オンナノコ 👧️ 5 5 501 -20 -カオ 👧️ 5 5 501 -20 -コドモ 👧️ 5 5 501 -20 -ショウジョ 👧️ 5 5 501 -20 -オトナ 🧑️ 5 5 501 -20 -カオ 🧑️ 5 5 501 -20 -セイジン 🧑️ 5 5 501 -20 -カオ 👱️ 5 5 501 -20 -キンパツ 👱️ 5 5 501 -20 -キンパツノヒト 👱️ 5 5 501 -20 -ヒト 👱️ 5 5 501 -20 -ブロンド 👱️ 5 5 501 -20 -オトコ 👨️ 5 5 501 -20 -オトナ 👨️ 5 5 501 -20 -カオ 👨️ 5 5 501 -20 -ダンセイ 👨️ 5 5 501 -20 -アゴヒゲ 🧔️ 5 5 501 -20 -アゴヒゲノダンセイ 🧔️ 5 5 501 -20 -アゴヒゲノヒト 🧔️ 5 5 501 -20 -カオ 🧔️ 5 5 501 -20 -ヒゲ 🧔️ 5 5 501 -20 -ヒゲノハエタヒト 🧔️ 5 5 501 -20 -ヒト 🧔️ 5 5 501 -20 -アゴヒゲ 🧔‍♂️️ 5 5 501 -20 -アゴヒゲノダンセイ 🧔‍♂️️ 5 5 501 -20 -オトコ 🧔‍♂️️ 5 5 501 -20 -カオ 🧔‍♂️️ 5 5 501 -20 -ダンセイ 🧔‍♂️️ 5 5 501 -20 -ヒゲ 🧔‍♂️️ 5 5 501 -20 -ヒゲノハエタダンセイ 🧔‍♂️️ 5 5 501 -20 -アゴヒゲ 🧔‍♀️️ 5 5 501 -20 -アゴヒゲノジョセイ 🧔‍♀️️ 5 5 501 -20 -オンナ 🧔‍♀️️ 5 5 501 -20 -カオ 🧔‍♀️️ 5 5 501 -20 -ジョセイ 🧔‍♀️️ 5 5 501 -20 -ヒゲ 🧔‍♀️️ 5 5 501 -20 -ヒゲノハエタジョセイ 🧔‍♀️️ 5 5 501 -20 -アカゲ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦰️ 5 5 501 -20 -オトナ 👨‍🦰️ 5 5 501 -20 -カオ 👨‍🦰️ 5 5 501 -20 -ダンセイ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦰️ 5 5 501 -20 -カオ 👨‍🦰️ 5 5 501 -20 -オトコ 👨‍🦱️ 5 5 501 -20 -オトナ 👨‍🦱️ 5 5 501 -20 -カオ 👨‍🦱️ 5 5 501 -20 -ダンセイ 👨‍🦱️ 5 5 501 -20 -マキゲ 👨‍🦱️ 5 5 501 -20 -オトコ 👨‍🦱️ 5 5 501 -20 -カオ 👨‍🦱️ 5 5 501 -20 -カール 👨‍🦱️ 5 5 501 -20 -オトコ 👨‍🦳️ 5 5 501 -20 -オトナ 👨‍🦳️ 5 5 501 -20 -カオ 👨‍🦳️ 5 5 501 -20 -シラガ 👨‍🦳️ 5 5 501 -20 -ダンセイ 👨‍🦳️ 5 5 501 -20 -オトコ 👨‍🦳️ 5 5 501 -20 -カオ 👨‍🦳️ 5 5 501 -20 -オトコ 👨‍🦲️ 5 5 501 -20 -オトナ 👨‍🦲️ 5 5 501 -20 -カオ 👨‍🦲️ 5 5 501 -20 -ダンセイ 👨‍🦲️ 5 5 501 -20 -ハゲアタマ 👨‍🦲️ 5 5 501 -20 -オトコ 👨‍🦲️ 5 5 501 -20 -カオ 👨‍🦲️ 5 5 501 -20 -ハゲ 👨‍🦲️ 5 5 501 -20 -オトナ 👩️ 5 5 501 -20 -オンナ 👩️ 5 5 501 -20 -カオ 👩️ 5 5 501 -20 -ジョセイ 👩️ 5 5 501 -20 -アカゲ 👩‍🦰️ 5 5 501 -20 -オトナ 👩‍🦰️ 5 5 501 -20 -オンナ 👩‍🦰️ 5 5 501 -20 -カオ 👩‍🦰️ 5 5 501 -20 -ジョセイ 👩‍🦰️ 5 5 501 -20 -オンナ 👩‍🦰️ 5 5 501 -20 -カオ 👩‍🦰️ 5 5 501 -20 -アカゲ 🧑‍🦰️ 5 5 501 -20 -オトナ 🧑‍🦰️ 5 5 501 -20 -カオ 🧑‍🦰️ 5 5 501 -20 -セイジン 🧑‍🦰️ 5 5 501 -20 -カオ 🧑‍🦰️ 5 5 501 -20 -オトナ 👩‍🦱️ 5 5 501 -20 -オンナ 👩‍🦱️ 5 5 501 -20 -カオ 👩‍🦱️ 5 5 501 -20 -ジョセイ 👩‍🦱️ 5 5 501 -20 -マキゲ 👩‍🦱️ 5 5 501 -20 -オンナ 👩‍🦱️ 5 5 501 -20 -カオ 👩‍🦱️ 5 5 501 -20 -カール 👩‍🦱️ 5 5 501 -20 -オトナ 🧑‍🦱️ 5 5 501 -20 -カオ 🧑‍🦱️ 5 5 501 -20 -セイジン 🧑‍🦱️ 5 5 501 -20 -マキゲ 🧑‍🦱️ 5 5 501 -20 -カオ 🧑‍🦱️ 5 5 501 -20 -カール 🧑‍🦱️ 5 5 501 -20 -オトナ 👩‍🦳️ 5 5 501 -20 -オンナ 👩‍🦳️ 5 5 501 -20 -カオ 👩‍🦳️ 5 5 501 -20 -シラガ 👩‍🦳️ 5 5 501 -20 -ジョセイ 👩‍🦳️ 5 5 501 -20 -オンナ 👩‍🦳️ 5 5 501 -20 -カオ 👩‍🦳️ 5 5 501 -20 -オトナ 🧑‍🦳️ 5 5 501 -20 -カオ 🧑‍🦳️ 5 5 501 -20 -シラガ 🧑‍🦳️ 5 5 501 -20 -セイジン 🧑‍🦳️ 5 5 501 -20 -カオ 🧑‍🦳️ 5 5 501 -20 -オトナ 👩‍🦲️ 5 5 501 -20 -オンナ 👩‍🦲️ 5 5 501 -20 -カオ 👩‍🦲️ 5 5 501 -20 -ジョセイ 👩‍🦲️ 5 5 501 -20 -ハゲアタマ 👩‍🦲️ 5 5 501 -20 -オンナ 👩‍🦲️ 5 5 501 -20 -カオ 👩‍🦲️ 5 5 501 -20 -ハゲ 👩‍🦲️ 5 5 501 -20 -オトナ 🧑‍🦲️ 5 5 501 -20 -カオ 🧑‍🦲️ 5 5 501 -20 -セイジン 🧑‍🦲️ 5 5 501 -20 -ハゲアタマ 🧑‍🦲️ 5 5 501 -20 -カオ 🧑‍🦲️ 5 5 501 -20 -ハゲ 🧑‍🦲️ 5 5 501 -20 -オンナ 👱‍♀️️ 5 5 501 -20 -キンパツ 👱‍♀️️ 5 5 501 -20 -キンパツノジョセイ 👱‍♀️️ 5 5 501 -20 -ジョセイ 👱‍♀️️ 5 5 501 -20 -ブロンド 👱‍♀️️ 5 5 501 -20 -オトコ 👱‍♂️️ 5 5 501 -20 -キンパツ 👱‍♂️️ 5 5 501 -20 -キンパツノダンセイ 👱‍♂️️ 5 5 501 -20 -ダンセイ 👱‍♂️️ 5 5 501 -20 -ブロンド 👱‍♂️️ 5 5 501 -20 -オトシヨリ 🧓️ 5 5 501 -20 -カオ 🧓️ 5 5 501 -20 -コウレイシャ 🧓️ 5 5 501 -20 -ロウジン 🧓️ 5 5 501 -20 -オジイサン 👴️ 5 5 501 -20 -オトシヨリ 👴️ 5 5 501 -20 -カオ 👴️ 5 5 501 -20 -コウレイシャ 👴️ 5 5 501 -20 -ダンセイ 👴️ 5 5 501 -20 -ロウジン 👴️ 5 5 501 -20 -オトシヨリ 👵️ 5 5 501 -20 -オバアサン 👵️ 5 5 501 -20 -カオ 👵️ 5 5 501 -20 -コウレイシャ 👵️ 5 5 501 -20 -ジョセイ 👵️ 5 5 501 -20 -ロウジン 👵️ 5 5 501 -20 -キャラクター 🙍️ 5 5 501 -20 -シカメガオ 🙍️ 5 5 501 -20 -シカメッツラ 🙍️ 5 5 501 -20 -シカメッツラノヒト 🙍️ 5 5 501 -20 -シカメツラ 🙍️ 5 5 501 -20 -シカメツラノヒト 🙍️ 5 5 501 -20 -オトコ 🙍‍♂️️ 5 5 501 -20 -シカメガオ 🙍‍♂️️ 5 5 501 -20 -シカメッツラ 🙍‍♂️️ 5 5 501 -20 -シカメッツラノオトコ 🙍‍♂️️ 5 5 501 -20 -シカメツラノオトコ 🙍‍♂️️ 5 5 501 -20 -ダンセイ 🙍‍♂️️ 5 5 501 -20 -オンナ 🙍‍♀️️ 5 5 501 -20 -シカメガオ 🙍‍♀️️ 5 5 501 -20 -シカメッツラ 🙍‍♀️️ 5 5 501 -20 -シカメッツラノオンナ 🙍‍♀️️ 5 5 501 -20 -シカメツラノオンナ 🙍‍♀️️ 5 5 501 -20 -ジョセイ 🙍‍♀️️ 5 5 501 -20 -キャラクター 🙎️ 5 5 501 -20 -ヒト 🙎️ 5 5 501 -20 -フキゲン 🙎️ 5 5 501 -20 -フキゲンナヒト 🙎️ 5 5 501 -20 -プンプン 🙎️ 5 5 501 -20 -オトコ 🙎‍♂️️ 5 5 501 -20 -ダンセイ 🙎‍♂️️ 5 5 501 -20 -フキゲン 🙎‍♂️️ 5 5 501 -20 -フキゲンナオトコ 🙎‍♂️️ 5 5 501 -20 -プンプン 🙎‍♂️️ 5 5 501 -20 -オンナ 🙎‍♀️️ 5 5 501 -20 -ジョセイ 🙎‍♀️️ 5 5 501 -20 -フキゲン 🙎‍♀️️ 5 5 501 -20 -フキゲンナオンナ 🙎‍♀️️ 5 5 501 -20 -プンプン 🙎‍♀️️ 5 5 501 -20 -ng 🙅️ 5 5 501 -20 -エヌジー 🙅️ 5 5 501 -20 -ジェスチャー 🙅️ 5 5 501 -20 -ダメ 🙅️ 5 5 501 -20 -ダメノポーズヲスルヒト 🙅️ 5 5 501 -20 -バツ 🙅️ 5 5 501 -20 -ヒト 🙅️ 5 5 501 -20 -ng 🙅‍♂️️ 5 5 501 -20 -エヌジー 🙅‍♂️️ 5 5 501 -20 -オトコ 🙅‍♂️️ 5 5 501 -20 -ジェスチャー 🙅‍♂️️ 5 5 501 -20 -ダメノポーズヲスルオトコ 🙅‍♂️️ 5 5 501 -20 -ダンセイ 🙅‍♂️️ 5 5 501 -20 -バツ 🙅‍♂️️ 5 5 501 -20 -ng 🙅‍♀️️ 5 5 501 -20 -エヌジー 🙅‍♀️️ 5 5 501 -20 -オンナ 🙅‍♀️️ 5 5 501 -20 -ジェスチャー 🙅‍♀️️ 5 5 501 -20 -ジョセイ 🙅‍♀️️ 5 5 501 -20 -ダメノポーズヲスルオンナ 🙅‍♀️️ 5 5 501 -20 -バツ 🙅‍♀️️ 5 5 501 -20 -ok 🙆️ 5 5 501 -20 -オーケー 🙆️ 5 5 501 -20 -オーケーノポーズヲスルヒト 🙆️ 5 5 501 -20 -ジェスチャー 🙆️ 5 5 501 -20 -ヒト 🙆️ 5 5 501 -20 -マル 🙆️ 5 5 501 -20 -ok 🙆‍♂️️ 5 5 501 -20 -オッケー 🙆‍♂️️ 5 5 501 -20 -オーケー 🙆‍♂️️ 5 5 501 -20 -オーケーノポーズヲスルオトコ 🙆‍♂️️ 5 5 501 -20 -ジェスチャー 🙆‍♂️️ 5 5 501 -20 -ダンセイ 🙆‍♂️️ 5 5 501 -20 -マル 🙆‍♂️️ 5 5 501 -20 -ok 🙆‍♀️️ 5 5 501 -20 -オッケー 🙆‍♀️️ 5 5 501 -20 -オーケー 🙆‍♀️️ 5 5 501 -20 -オーケーノポーズヲスルオンナ 🙆‍♀️️ 5 5 501 -20 -ジェスチャー 🙆‍♀️️ 5 5 501 -20 -ジョセイ 🙆‍♀️️ 5 5 501 -20 -マル 🙆‍♀️️ 5 5 501 -20 -アンナイ 💁️ 5 5 501 -20 -アンナイスルヒト 💁️ 5 5 501 -20 -ウケツケ 💁️ 5 5 501 -20 -ウケツケジョウ 💁️ 5 5 501 -20 -カオ 💁️ 5 5 501 -20 -アンナイ 💁‍♂️️ 5 5 501 -20 -アンナイスルオトコ 💁‍♂️️ 5 5 501 -20 -オトコ 💁‍♂️️ 5 5 501 -20 -ジェスチャー 💁‍♂️️ 5 5 501 -20 -ダンセイ 💁‍♂️️ 5 5 501 -20 -アンナイ 💁‍♀️️ 5 5 501 -20 -アンナイスルオンナ 💁‍♀️️ 5 5 501 -20 -オンナ 💁‍♀️️ 5 5 501 -20 -ジェスチャー 💁‍♀️️ 5 5 501 -20 -ジョセイ 💁‍♀️️ 5 5 501 -20 -キョシュ 🙋️ 5 5 501 -20 -テヲアゲル 🙋️ 5 5 501 -20 -テヲアゲルジン 🙋️ 5 5 501 -20 -テヲアゲルヒト 🙋️ 5 5 501 -20 -ヒト 🙋️ 5 5 501 -20 -オトコ 🙋‍♂️️ 5 5 501 -20 -キョシュ 🙋‍♂️️ 5 5 501 -20 -ダンセイ 🙋‍♂️️ 5 5 501 -20 -テヲアゲル 🙋‍♂️️ 5 5 501 -20 -テヲアゲルオトコ 🙋‍♂️️ 5 5 501 -20 -オンナ 🙋‍♀️️ 5 5 501 -20 -キョシュ 🙋‍♀️️ 5 5 501 -20 -ジョセイ 🙋‍♀️️ 5 5 501 -20 -テヲアゲル 🙋‍♀️️ 5 5 501 -20 -テヲアゲルオンナ 🙋‍♀️️ 5 5 501 -20 -アクセシビリティ 🧏️ 5 5 501 -20 -キコエナイ 🧏️ 5 5 501 -20 -ショウガイ 🧏️ 5 5 501 -20 -チョウカク 🧏️ 5 5 501 -20 -ヒト 🧏️ 5 5 501 -20 -ミミノフジユウナヒト 🧏️ 5 5 501 -20 -アクセシビリティ 🧏‍♂️️ 5 5 501 -20 -ショウガイ 🧏‍♂️️ 5 5 501 -20 -ダンセイ 🧏‍♂️️ 5 5 501 -20 -チョウカク 🧏‍♂️️ 5 5 501 -20 -ミミノフジユウナダンセイ 🧏‍♂️️ 5 5 501 -20 -アクセシビリティ 🧏‍♀️️ 5 5 501 -20 -ショウガイ 🧏‍♀️️ 5 5 501 -20 -ジョセイ 🧏‍♀️️ 5 5 501 -20 -チョウカク 🧏‍♀️️ 5 5 501 -20 -ミミノフジユウナジョセイ 🧏‍♀️️ 5 5 501 -20 -オジギ 🙇️ 5 5 501 -20 -オジギスルヒト 🙇️ 5 5 501 -20 -ゴメンナサイ 🙇️ 5 5 501 -20 -ドゲザ 🙇️ 5 5 501 -20 -オジギ 🙇‍♂️️ 5 5 501 -20 -オジギスルオトコ 🙇‍♂️️ 5 5 501 -20 -オトコ 🙇‍♂️️ 5 5 501 -20 -ゴメンナサイ 🙇‍♂️️ 5 5 501 -20 -ダンセイ 🙇‍♂️️ 5 5 501 -20 -ドゲザ 🙇‍♂️️ 5 5 501 -20 -オジギ 🙇‍♀️️ 5 5 501 -20 -オジギスルオンナ 🙇‍♀️️ 5 5 501 -20 -オンナ 🙇‍♀️️ 5 5 501 -20 -ゴメンナサイ 🙇‍♀️️ 5 5 501 -20 -ジョセイ 🙇‍♀️️ 5 5 501 -20 -ドゲザ 🙇‍♀️️ 5 5 501 -20 -アチャー 🤦️ 5 5 501 -20 -ジェスチャー 🤦️ 5 5 501 -20 -ヒタイニテ 🤦️ 5 5 501 -20 -ヒタイニテヲアテルヒト 🤦️ 5 5 501 -20 -アチャー 🤦‍♂️️ 5 5 501 -20 -オトコ 🤦‍♂️️ 5 5 501 -20 -ジェスチャー 🤦‍♂️️ 5 5 501 -20 -ダンセイ 🤦‍♂️️ 5 5 501 -20 -ヒタイニテ 🤦‍♂️️ 5 5 501 -20 -ヒタイニテヲアテルオトコ 🤦‍♂️️ 5 5 501 -20 -アチャー 🤦‍♀️️ 5 5 501 -20 -オンナ 🤦‍♀️️ 5 5 501 -20 -ジェスチャー 🤦‍♀️️ 5 5 501 -20 -ジョセイ 🤦‍♀️️ 5 5 501 -20 -ヒタイニテ 🤦‍♀️️ 5 5 501 -20 -ヒタイニテヲアテルオンナ 🤦‍♀️️ 5 5 501 -20 -オテアゲ 🤷️ 5 5 501 -20 -オテアゲスルヒト 🤷️ 5 5 501 -20 -ジェスチャー 🤷️ 5 5 501 -20 -オテアゲ 🤷‍♂️️ 5 5 501 -20 -オテアゲスルオトコ 🤷‍♂️️ 5 5 501 -20 -オトコ 🤷‍♂️️ 5 5 501 -20 -ジェスチャー 🤷‍♂️️ 5 5 501 -20 -ダンセイ 🤷‍♂️️ 5 5 501 -20 -オテアゲ 🤷‍♀️️ 5 5 501 -20 -オテアゲスルオンナ 🤷‍♀️️ 5 5 501 -20 -オンナ 🤷‍♀️️ 5 5 501 -20 -ジェスチャー 🤷‍♀️️ 5 5 501 -20 -ジョセイ 🤷‍♀️️ 5 5 501 -20 -イシ 🧑‍⚕️️ 5 5 501 -20 -イシャ 🧑‍⚕️️ 5 5 501 -20 -セラピスト 🧑‍⚕️️ 5 5 501 -20 -イシ 👨‍⚕️️ 5 5 501 -20 -イシャ 👨‍⚕️️ 5 5 501 -20 -オトコ 👨‍⚕️️ 5 5 501 -20 -ダンセイ 👨‍⚕️️ 5 5 501 -20 -ダンセイノイシャ 👨‍⚕️️ 5 5 501 -20 -イシ 👩‍⚕️️ 5 5 501 -20 -イシャ 👩‍⚕️️ 5 5 501 -20 -オンナ 👩‍⚕️️ 5 5 501 -20 -ジョセイ 👩‍⚕️️ 5 5 501 -20 -ジョセイノイシャ 👩‍⚕️️ 5 5 501 -20 -カクボウ 🧑‍🎓️ 5 5 501 -20 -ガクセイ 🧑‍🎓️ 5 5 501 -20 -ソツギョウ 🧑‍🎓️ 5 5 501 -20 -オトコ 👨‍🎓️ 5 5 501 -20 -カクボウ 👨‍🎓️ 5 5 501 -20 -ガクセイ 👨‍🎓️ 5 5 501 -20 -ソツギョウ 👨‍🎓️ 5 5 501 -20 -ダンシガクセイ 👨‍🎓️ 5 5 501 -20 -ダンセイ 👨‍🎓️ 5 5 501 -20 -オンナ 👩‍🎓️ 5 5 501 -20 -カクボウ 👩‍🎓️ 5 5 501 -20 -ガクセイ 👩‍🎓️ 5 5 501 -20 -ジョシガクセイ 👩‍🎓️ 5 5 501 -20 -ジョセイ 👩‍🎓️ 5 5 501 -20 -ソツギョウ 👩‍🎓️ 5 5 501 -20 -キョウシ 🧑‍🏫️ 5 5 501 -20 -キョウジュ 🧑‍🏫️ 5 5 501 -20 -コウシ 🧑‍🏫️ 5 5 501 -20 -センセイ 🧑‍🏫️ 5 5 501 -20 -タンニン 🧑‍🏫️ 5 5 501 -20 -オトコ 👨‍🏫️ 5 5 501 -20 -キョウシ 👨‍🏫️ 5 5 501 -20 -キョウジュ 👨‍🏫️ 5 5 501 -20 -センセイ 👨‍🏫️ 5 5 501 -20 -ダンセイ 👨‍🏫️ 5 5 501 -20 -ダンセイノキョウシ 👨‍🏫️ 5 5 501 -20 -オンナ 👩‍🏫️ 5 5 501 -20 -キョウシ 👩‍🏫️ 5 5 501 -20 -キョウジュ 👩‍🏫️ 5 5 501 -20 -ジョセイ 👩‍🏫️ 5 5 501 -20 -ジョセイノキョウシ 👩‍🏫️ 5 5 501 -20 -センセイ 👩‍🏫️ 5 5 501 -20 -サイバン 🧑‍⚖️️ 5 5 501 -20 -サイバンカン 🧑‍⚖️️ 5 5 501 -20 -オトコ 👨‍⚖️️ 5 5 501 -20 -サイバン 👨‍⚖️️ 5 5 501 -20 -サイバンカン 👨‍⚖️️ 5 5 501 -20 -ダンセイ 👨‍⚖️️ 5 5 501 -20 -ダンセイノサイバンカン 👨‍⚖️️ 5 5 501 -20 -オンナ 👩‍⚖️️ 5 5 501 -20 -サイバン 👩‍⚖️️ 5 5 501 -20 -サイバンカン 👩‍⚖️️ 5 5 501 -20 -ジョセイ 👩‍⚖️️ 5 5 501 -20 -ジョセイノサイバンカン 👩‍⚖️️ 5 5 501 -20 -ガーデナー 🧑‍🌾️ 5 5 501 -20 -ノウカ 🧑‍🌾️ 5 5 501 -20 -ノウギョウ 🧑‍🌾️ 5 5 501 -20 -ノウジョウヌシ 🧑‍🌾️ 5 5 501 -20 -オトコ 👨‍🌾️ 5 5 501 -20 -ダンセイ 👨‍🌾️ 5 5 501 -20 -ノウカ 👨‍🌾️ 5 5 501 -20 -ノウカノダンセイ 👨‍🌾️ 5 5 501 -20 -ノウフ 👨‍🌾️ 5 5 501 -20 -オンナ 👩‍🌾️ 5 5 501 -20 -ジョセイ 👩‍🌾️ 5 5 501 -20 -ノウカ 👩‍🌾️ 5 5 501 -20 -ノウカノジョセイ 👩‍🌾️ 5 5 501 -20 -コック 🧑‍🍳️ 5 5 501 -20 -シェフ 🧑‍🍳️ 5 5 501 -20 -リョウリ 🧑‍🍳️ 5 5 501 -20 -オトコ 👨‍🍳️ 5 5 501 -20 -コック 👨‍🍳️ 5 5 501 -20 -シェフ 👨‍🍳️ 5 5 501 -20 -ダンセイ 👨‍🍳️ 5 5 501 -20 -ダンセイノコック 👨‍🍳️ 5 5 501 -20 -リョウリ 👨‍🍳️ 5 5 501 -20 -オンナ 👩‍🍳️ 5 5 501 -20 -コック 👩‍🍳️ 5 5 501 -20 -シェフ 👩‍🍳️ 5 5 501 -20 -ジョセイ 👩‍🍳️ 5 5 501 -20 -ジョセイノコック 👩‍🍳️ 5 5 501 -20 -リョウリ 👩‍🍳️ 5 5 501 -20 -コウサク 🧑‍🔧️ 5 5 501 -20 -サギョウイン 🧑‍🔧️ 5 5 501 -20 -スパナ 🧑‍🔧️ 5 5 501 -20 -セイビシ 🧑‍🔧️ 5 5 501 -20 -メカニック 🧑‍🔧️ 5 5 501 -20 -オトコ 👨‍🔧️ 5 5 501 -20 -コウサク 👨‍🔧️ 5 5 501 -20 -スパナ 👨‍🔧️ 5 5 501 -20 -ダンセイ 👨‍🔧️ 5 5 501 -20 -ダンセイノセイビシ 👨‍🔧️ 5 5 501 -20 -メカニック 👨‍🔧️ 5 5 501 -20 -オンナ 👩‍🔧️ 5 5 501 -20 -コウサク 👩‍🔧️ 5 5 501 -20 -ジョセイ 👩‍🔧️ 5 5 501 -20 -ジョセイノセイビシ 👩‍🔧️ 5 5 501 -20 -スパナ 👩‍🔧️ 5 5 501 -20 -メカニック 👩‍🔧️ 5 5 501 -20 -コウイン 🧑‍🏭️ 5 5 501 -20 -コウジョウ 🧑‍🏭️ 5 5 501 -20 -モノヅクリ 🧑‍🏭️ 5 5 501 -20 -ヨウセツコウ 🧑‍🏭️ 5 5 501 -20 -オトコ 👨‍🏭️ 5 5 501 -20 -ダンセイ 👨‍🏭️ 5 5 501 -20 -ダンセイノヨウセツコウ 👨‍🏭️ 5 5 501 -20 -ヨウセツ 👨‍🏭️ 5 5 501 -20 -オンナ 👩‍🏭️ 5 5 501 -20 -ジョセイ 👩‍🏭️ 5 5 501 -20 -ジョセイノヨウセツコウ 👩‍🏭️ 5 5 501 -20 -ヨウセツ 👩‍🏭️ 5 5 501 -20 -カイシャイン 🧑‍💼️ 5 5 501 -20 -サラリーマン 🧑‍💼️ 5 5 501 -20 -ビジネスパーソン 🧑‍💼️ 5 5 501 -20 -カイシャイン 👨‍💼️ 5 5 501 -20 -サラリーマン 👨‍💼️ 5 5 501 -20 -ダンセイ 👨‍💼️ 5 5 501 -20 -ダンセイカイシャイン 👨‍💼️ 5 5 501 -20 -ビジネスパーソン 👨‍💼️ 5 5 501 -20 -ビジネスマン 👨‍💼️ 5 5 501 -20 -ol 👩‍💼️ 5 5 501 -20 -オーエル 👩‍💼️ 5 5 501 -20 -オール 👩‍💼️ 5 5 501 -20 -カイシャイン 👩‍💼️ 5 5 501 -20 -サラリーマン 👩‍💼️ 5 5 501 -20 -ジョセイ 👩‍💼️ 5 5 501 -20 -ジョセイカイシャイン 👩‍💼️ 5 5 501 -20 -ビジネスパーソン 👩‍💼️ 5 5 501 -20 -カガクシャ 🧑‍🔬️ 5 5 501 -20 -セイブツガクシャ 🧑‍🔬️ 5 5 501 -20 -ブツリガクシャ 🧑‍🔬️ 5 5 501 -20 -オトコ 👨‍🔬️ 5 5 501 -20 -カガクシャ 👨‍🔬️ 5 5 501 -20 -ダンセイ 👨‍🔬️ 5 5 501 -20 -ダンセイカガクシャ 👨‍🔬️ 5 5 501 -20 -オンナ 👩‍🔬️ 5 5 501 -20 -カガクシャ 👩‍🔬️ 5 5 501 -20 -ジョセイ 👩‍🔬️ 5 5 501 -20 -ジョセイカガクシャ 👩‍🔬️ 5 5 501 -20 -カイハツシャ 🧑‍💻️ 5 5 501 -20 -ギジュツシャ 🧑‍💻️ 5 5 501 -20 -コンピュータ 🧑‍💻️ 5 5 501 -20 -パソコン 🧑‍💻️ 5 5 501 -20 -プログラマ 🧑‍💻️ 5 5 501 -20 -カイハツシャ 👨‍💻️ 5 5 501 -20 -コンピュータ 👨‍💻️ 5 5 501 -20 -ダンセイ 👨‍💻️ 5 5 501 -20 -ダンセイギジュツシャ 👨‍💻️ 5 5 501 -20 -デベロッパ 👨‍💻️ 5 5 501 -20 -パソコン 👨‍💻️ 5 5 501 -20 -プログラマ 👨‍💻️ 5 5 501 -20 -カイハツシャ 👩‍💻️ 5 5 501 -20 -コンピュータ 👩‍💻️ 5 5 501 -20 -ジョセイ 👩‍💻️ 5 5 501 -20 -ジョセイギジュツシャ 👩‍💻️ 5 5 501 -20 -デベロッパ 👩‍💻️ 5 5 501 -20 -パソコン 👩‍💻️ 5 5 501 -20 -プログラマ 👩‍💻️ 5 5 501 -20 -アーティスト 🧑‍🎤️ 5 5 501 -20 -カシュ 🧑‍🎤️ 5 5 501 -20 -シンガー 🧑‍🎤️ 5 5 501 -20 -スター 🧑‍🎤️ 5 5 501 -20 -ロッカー 🧑‍🎤️ 5 5 501 -20 -アーティスト 👨‍🎤️ 5 5 501 -20 -オトコ 👨‍🎤️ 5 5 501 -20 -カシュ 👨‍🎤️ 5 5 501 -20 -シンガー 👨‍🎤️ 5 5 501 -20 -ダンセイ 👨‍🎤️ 5 5 501 -20 -ダンセイカシュ 👨‍🎤️ 5 5 501 -20 -アーティスト 👩‍🎤️ 5 5 501 -20 -オンナ 👩‍🎤️ 5 5 501 -20 -カシュ 👩‍🎤️ 5 5 501 -20 -シンガー 👩‍🎤️ 5 5 501 -20 -ジョセイ 👩‍🎤️ 5 5 501 -20 -ジョセイカシュ 👩‍🎤️ 5 5 501 -20 -アーティスト 🧑‍🎨️ 5 5 501 -20 -エカキ 🧑‍🎨️ 5 5 501 -20 -ガカ 🧑‍🎨️ 5 5 501 -20 -ゲイジュツカ 🧑‍🎨️ 5 5 501 -20 -アーティスト 👨‍🎨️ 5 5 501 -20 -オトコ 👨‍🎨️ 5 5 501 -20 -ガカ 👨‍🎨️ 5 5 501 -20 -ゲイジュツカ 👨‍🎨️ 5 5 501 -20 -ダンセイ 👨‍🎨️ 5 5 501 -20 -ダンセイノゲイジュツカ 👨‍🎨️ 5 5 501 -20 -アーティスト 👩‍🎨️ 5 5 501 -20 -オンナ 👩‍🎨️ 5 5 501 -20 -ガカ 👩‍🎨️ 5 5 501 -20 -ゲイジュツカ 👩‍🎨️ 5 5 501 -20 -ジョセイ 👩‍🎨️ 5 5 501 -20 -ジョセイノゲイジュツカ 👩‍🎨️ 5 5 501 -20 -キチョウ 🧑‍✈️️ 5 5 501 -20 -ソウジュウシ 🧑‍✈️️ 5 5 501 -20 -パイロット 🧑‍✈️️ 5 5 501 -20 -オトコ 👨‍✈️️ 5 5 501 -20 -ソウジュウシ 👨‍✈️️ 5 5 501 -20 -ダンセイ 👨‍✈️️ 5 5 501 -20 -ダンセイパイロット 👨‍✈️️ 5 5 501 -20 -オンナ 👩‍✈️️ 5 5 501 -20 -ジョセイ 👩‍✈️️ 5 5 501 -20 -ジョセイパイロット 👩‍✈️️ 5 5 501 -20 -ソウジュウシ 👩‍✈️️ 5 5 501 -20 -ウチュウヒコウシ 🧑‍🚀️ 5 5 501 -20 -ロケット 🧑‍🚀️ 5 5 501 -20 -ウチュウヒコウシ 👨‍🚀️ 5 5 501 -20 -オトコ 👨‍🚀️ 5 5 501 -20 -ダンセイ 👨‍🚀️ 5 5 501 -20 -ダンセイウチュウヒコウシ 👨‍🚀️ 5 5 501 -20 -ウチュウヒコウシ 👩‍🚀️ 5 5 501 -20 -オンナ 👩‍🚀️ 5 5 501 -20 -ジョセイ 👩‍🚀️ 5 5 501 -20 -ジョセイウチュウヒコウシ 👩‍🚀️ 5 5 501 -20 -キュウジョタイ 🧑‍🚒️ 5 5 501 -20 -ショウボウシ 🧑‍🚒️ 5 5 501 -20 -レスキュー 🧑‍🚒️ 5 5 501 -20 -オトコ 👨‍🚒️ 5 5 501 -20 -ショウボウシ 👨‍🚒️ 5 5 501 -20 -ダンセイ 👨‍🚒️ 5 5 501 -20 -ダンセイショウボウシ 👨‍🚒️ 5 5 501 -20 -オンナ 👩‍🚒️ 5 5 501 -20 -ショウボウシ 👩‍🚒️ 5 5 501 -20 -ジョセイ 👩‍🚒️ 5 5 501 -20 -ジョセイショウボウシ 👩‍🚒️ 5 5 501 -20 -オマワリサン 👮️ 5 5 501 -20 -カオ 👮️ 5 5 501 -20 -ケイカン 👮️ 5 5 501 -20 -ケイサツ 👮️ 5 5 501 -20 -ケイサツカン 👮️ 5 5 501 -20 -ポリス 👮️ 5 5 501 -20 -オマワリサン 👮‍♂️️ 5 5 501 -20 -ケイカン 👮‍♂️️ 5 5 501 -20 -ケイサツ 👮‍♂️️ 5 5 501 -20 -ケイサツカン 👮‍♂️️ 5 5 501 -20 -ダンセイ 👮‍♂️️ 5 5 501 -20 -ダンセイケイサツカン 👮‍♂️️ 5 5 501 -20 -オマワリサン 👮‍♀️️ 5 5 501 -20 -ケイカン 👮‍♀️️ 5 5 501 -20 -ケイサツ 👮‍♀️️ 5 5 501 -20 -ケイサツカン 👮‍♀️️ 5 5 501 -20 -ジョセイ 👮‍♀️️ 5 5 501 -20 -ジョセイケイサツカン 👮‍♀️️ 5 5 501 -20 -スパイ 🕵️️ 5 5 501 -20 -タンテイ 🕵️️ 5 5 501 -20 -ムシメガネ 🕵️️ 5 5 501 -20 -オトコ 🕵️‍♂️️ 5 5 501 -20 -タンテイ 🕵️‍♂️️ 5 5 501 -20 -ダンセイ 🕵️‍♂️️ 5 5 501 -20 -ダンセイノタンテイ 🕵️‍♂️️ 5 5 501 -20 -ムシメガネ 🕵️‍♂️️ 5 5 501 -20 -オンナ 🕵️‍♀️️ 5 5 501 -20 -ジョセイ 🕵️‍♀️️ 5 5 501 -20 -ジョセイノタンテイ 🕵️‍♀️️ 5 5 501 -20 -タンテイ 🕵️‍♀️️ 5 5 501 -20 -ムシメガネ 🕵️‍♀️️ 5 5 501 -20 -エイヘイ 💂️ 5 5 501 -20 -カオ 💂️ 5 5 501 -20 -ケイビ 💂️ 5 5 501 -20 -シュエイ 💂️ 5 5 501 -20 -モンバン 💂️ 5 5 501 -20 -エイヘイ 💂‍♂️️ 5 5 501 -20 -ケイビ 💂‍♂️️ 5 5 501 -20 -シュエイ 💂‍♂️️ 5 5 501 -20 -ダンセイ 💂‍♂️️ 5 5 501 -20 -ダンセイノエイヘイ 💂‍♂️️ 5 5 501 -20 -モンバン 💂‍♂️️ 5 5 501 -20 -エイヘイ 💂‍♀️️ 5 5 501 -20 -ケイビ 💂‍♀️️ 5 5 501 -20 -シュエイ 💂‍♀️️ 5 5 501 -20 -ジョセイ 💂‍♀️️ 5 5 501 -20 -ジョセイノエイヘイ 💂‍♀️️ 5 5 501 -20 -モンバン 💂‍♀️️ 5 5 501 -20 -オンミツ 🥷️ 5 5 501 -20 -クサノモノ 🥷️ 5 5 501 -20 -シノビ 🥷️ 5 5 501 -20 -スパイ 🥷️ 5 5 501 -20 -ニンジャ 🥷️ 5 5 501 -20 -ニンジュツ 🥷️ 5 5 501 -20 -カオ 👷️ 5 5 501 -20 -カナヅチ 👷️ 5 5 501 -20 -ケンセツサギョウイン 👷️ 5 5 501 -20 -コウジ 👷️ 5 5 501 -20 -ハンマー 👷️ 5 5 501 -20 -ヘルメット 👷️ 5 5 501 -20 -ケンセツサギョウイン 👷‍♂️️ 5 5 501 -20 -コウジ 👷‍♂️️ 5 5 501 -20 -ダンセイ 👷‍♂️️ 5 5 501 -20 -ダンセイノケンセツサギョウイン 👷‍♂️️ 5 5 501 -20 -ハンマー 👷‍♂️️ 5 5 501 -20 -ヘルメット 👷‍♂️️ 5 5 501 -20 -ケンセツサギョウイン 👷‍♀️️ 5 5 501 -20 -コウジ 👷‍♀️️ 5 5 501 -20 -ジョセイ 👷‍♀️️ 5 5 501 -20 -ジョセイノケンセツサギョウイン 👷‍♀️️ 5 5 501 -20 -ハンマー 👷‍♀️️ 5 5 501 -20 -ヘルメット 👷‍♀️️ 5 5 501 -20 -オウカンヲカブッタヒト 🫅️ 5 5 501 -20 -オウケ 🫅️ 5 5 501 -20 -オウサマ 🫅️ 5 5 501 -20 -オウゾク 🫅️ 5 5 501 -20 -クンシュ 🫅️ 5 5 501 -20 -ヒト 🫅️ 5 5 501 -20 -オウジ 🤴️ 5 5 501 -20 -オトコ 🤴️ 5 5 501 -20 -ダンセイ 🤴️ 5 5 501 -20 -プリンス 🤴️ 5 5 501 -20 -オウジョ 👸️ 5 5 501 -20 -オヒメサマ 👸️ 5 5 501 -20 -オンナ 👸️ 5 5 501 -20 -カオ 👸️ 5 5 501 -20 -クイーン 👸️ 5 5 501 -20 -ジョセイ 👸️ 5 5 501 -20 -プリンセス 👸️ 5 5 501 -20 -カオ 👳️ 5 5 501 -20 -ターバン 👳️ 5 5 501 -20 -ターバンノヒト 👳️ 5 5 501 -20 -オトコ 👳‍♂️️ 5 5 501 -20 -ターバン 👳‍♂️️ 5 5 501 -20 -ターバンノダンセイ 👳‍♂️️ 5 5 501 -20 -ダンセイ 👳‍♂️️ 5 5 501 -20 -オンナ 👳‍♀️️ 5 5 501 -20 -ジョセイ 👳‍♀️️ 5 5 501 -20 -ターバン 👳‍♀️️ 5 5 501 -20 -ターバンノジョセイ 👳‍♀️️ 5 5 501 -20 -オトコ 👲️ 5 5 501 -20 -オワンボウ 👲️ 5 5 501 -20 -カオ 👲️ 5 5 501 -20 -ダンセイ 👲️ 5 5 501 -20 -チュウカボウノダンセイ 👲️ 5 5 501 -20 -オンナ 🧕️ 5 5 501 -20 -ジョセイ 🧕️ 5 5 501 -20 -スカーフ 🧕️ 5 5 501 -20 -スカーフノジョセイ 🧕️ 5 5 501 -20 -ヒジャブ 🧕️ 5 5 501 -20 -ベール 🧕️ 5 5 501 -20 -オトコ 🤵️ 5 5 501 -20 -ケッコン 🤵️ 5 5 501 -20 -タキシード 🤵️ 5 5 501 -20 -タキシードノヒト 🤵️ 5 5 501 -20 -ダンセイ 🤵️ 5 5 501 -20 -ハナムコ 🤵️ 5 5 501 -20 -オトコ 🤵‍♂️️ 5 5 501 -20 -タキシード 🤵‍♂️️ 5 5 501 -20 -タキシードノオトコ 🤵‍♂️️ 5 5 501 -20 -タキシードノダンセイ 🤵‍♂️️ 5 5 501 -20 -ダンセイ 🤵‍♂️️ 5 5 501 -20 -オンナ 🤵‍♀️️ 5 5 501 -20 -ジョセイ 🤵‍♀️️ 5 5 501 -20 -タキシード 🤵‍♀️️ 5 5 501 -20 -タキシードノオンナ 🤵‍♀️️ 5 5 501 -20 -タキシードノジョセイ 🤵‍♀️️ 5 5 501 -20 -オンナ 👰️ 5 5 501 -20 -カオ 👰️ 5 5 501 -20 -ケッコン 👰️ 5 5 501 -20 -ジョセイ 👰️ 5 5 501 -20 -ハナヨメ 👰️ 5 5 501 -20 -ベールノヒト 👰️ 5 5 501 -20 -オトコ 👰‍♂️️ 5 5 501 -20 -ダンセイ 👰‍♂️️ 5 5 501 -20 -ベール 👰‍♂️️ 5 5 501 -20 -ベールノダンセイ 👰‍♂️️ 5 5 501 -20 -オンナ 👰‍♀️️ 5 5 501 -20 -ジョセイ 👰‍♀️️ 5 5 501 -20 -ベール 👰‍♀️️ 5 5 501 -20 -ベールノジョセイ 👰‍♀️️ 5 5 501 -20 -オンナ 🤰️ 5 5 501 -20 -ジョセイ 🤰️ 5 5 501 -20 -ニンシン 🤰️ 5 5 501 -20 -ニンプ 🤰️ 5 5 501 -20 -オトコ 🫃️ 5 5 501 -20 -ダンセイ 🫃️ 5 5 501 -20 -ニンシン 🫃️ 5 5 501 -20 -ニンシンシタダンセイ 🫃️ 5 5 501 -20 -ニンシンシタヒト 🫃️ 5 5 501 -20 -ニンプ 🫃️ 5 5 501 -20 -ヒト 🫃️ 5 5 501 -20 -オナカ 🫄️ 5 5 501 -20 -ニンシン 🫄️ 5 5 501 -20 -ニンシンシタヒト 🫄️ 5 5 501 -20 -ニンプ 🫄️ 5 5 501 -20 -ヒト 🫄️ 5 5 501 -20 -アカチャン 🤱️ 5 5 501 -20 -オンナ 🤱️ 5 5 501 -20 -ジュニュウ 🤱️ 5 5 501 -20 -ジョセイ 🤱️ 5 5 501 -20 -ミルク 🤱️ 5 5 501 -20 -アカチャン 👩‍🍼️ 5 5 501 -20 -オンナ 👩‍🍼️ 5 5 501 -20 -ジュニュウ 👩‍🍼️ 5 5 501 -20 -ジュニュウスルジョセイ 👩‍🍼️ 5 5 501 -20 -ジョセイ 👩‍🍼️ 5 5 501 -20 -アカチャン 👨‍🍼️ 5 5 501 -20 -オトコ 👨‍🍼️ 5 5 501 -20 -ジュニュウ 👨‍🍼️ 5 5 501 -20 -ジュニュウスルダンセイ 👨‍🍼️ 5 5 501 -20 -ダンセイ 👨‍🍼️ 5 5 501 -20 -アカチャン 🧑‍🍼️ 5 5 501 -20 -ジュニュウ 🧑‍🍼️ 5 5 501 -20 -ジュニュウスルヒト 🧑‍🍼️ 5 5 501 -20 -ヒト 🧑‍🍼️ 5 5 501 -20 -エンジェル 👼️ 5 5 501 -20 -カオ 👼️ 5 5 501 -20 -テンシ 👼️ 5 5 501 -20 -カオ 🎅️ 5 5 501 -20 -クリスマス 🎅️ 5 5 501 -20 -サンタ 🎅️ 5 5 501 -20 -サンタクロース 🎅️ 5 5 501 -20 -オンナ 🤶️ 5 5 501 -20 -クリスマス 🤶️ 5 5 501 -20 -サンタクロース 🤶️ 5 5 501 -20 -ジョセイ 🤶️ 5 5 501 -20 -ジョセイノサンタ 🤶️ 5 5 501 -20 -クリスマス 🧑‍🎄️ 5 5 501 -20 -サンタクロース 🧑‍🎄️ 5 5 501 -20 -サンタサン 🧑‍🎄️ 5 5 501 -20 -スーパーヒーロー 🦸️ 5 5 501 -20 -ゼン 🦸️ 5 5 501 -20 -チョウジン 🦸️ 5 5 501 -20 -ヒロイン 🦸️ 5 5 501 -20 -ヒーロー 🦸️ 5 5 501 -20 -ゼン 🦸‍♂️️ 5 5 501 -20 -ダンセイ 🦸‍♂️️ 5 5 501 -20 -ダンセイノスーパーヒーロー 🦸‍♂️️ 5 5 501 -20 -チョウジン 🦸‍♂️️ 5 5 501 -20 -ヒーロー 🦸‍♂️️ 5 5 501 -20 -ジョセイ 🦸‍♀️️ 5 5 501 -20 -ジョセイノスーパーヒーロー 🦸‍♀️️ 5 5 501 -20 -ゼン 🦸‍♀️️ 5 5 501 -20 -チョウジン 🦸‍♀️️ 5 5 501 -20 -ヒロイン 🦸‍♀️️ 5 5 501 -20 -ヒーロー 🦸‍♀️️ 5 5 501 -20 -アク 🦹️ 5 5 501 -20 -アクヤク 🦹️ 5 5 501 -20 -チョウジン 🦹️ 5 5 501 -20 -ハンニン 🦹️ 5 5 501 -20 -ワル 🦹️ 5 5 501 -20 -ヴィラン 🦹️ 5 5 501 -20 -アク 🦹‍♂️️ 5 5 501 -20 -ダンセイ 🦹‍♂️️ 5 5 501 -20 -ダンセイノアクヤク 🦹‍♂️️ 5 5 501 -20 -チョウジン 🦹‍♂️️ 5 5 501 -20 -ハンニン 🦹‍♂️️ 5 5 501 -20 -ワル 🦹‍♂️️ 5 5 501 -20 -ヴィラン 🦹‍♂️️ 5 5 501 -20 -アク 🦹‍♀️️ 5 5 501 -20 -ジョセイ 🦹‍♀️️ 5 5 501 -20 -ジョセイノアクヤク 🦹‍♀️️ 5 5 501 -20 -チョウジン 🦹‍♀️️ 5 5 501 -20 -ハンニン 🦹‍♀️️ 5 5 501 -20 -ワル 🦹‍♀️️ 5 5 501 -20 -ヴィラン 🦹‍♀️️ 5 5 501 -20 -マジョ 🧙️ 5 5 501 -20 -マホウ 🧙️ 5 5 501 -20 -マホウツカイ 🧙️ 5 5 501 -20 -オトコ 🧙‍♂️️ 5 5 501 -20 -オトコノマホウツカイ 🧙‍♂️️ 5 5 501 -20 -ダンセイ 🧙‍♂️️ 5 5 501 -20 -マホウツカイ 🧙‍♂️️ 5 5 501 -20 -オンナ 🧙‍♀️️ 5 5 501 -20 -オンナノマホウツカイ 🧙‍♀️️ 5 5 501 -20 -ジョセイ 🧙‍♀️️ 5 5 501 -20 -マジョ 🧙‍♀️️ 5 5 501 -20 -マホウツカイ 🧙‍♀️️ 5 5 501 -20 -オベロン 🧚️ 5 5 501 -20 -デンセツ 🧚️ 5 5 501 -20 -パック 🧚️ 5 5 501 -20 -マホウ 🧚️ 5 5 501 -20 -ヨウセイ 🧚️ 5 5 501 -20 -オトコ 🧚‍♂️️ 5 5 501 -20 -オトコノヨウセイ 🧚‍♂️️ 5 5 501 -20 -ダンセイ 🧚‍♂️️ 5 5 501 -20 -ヨウセイ 🧚‍♂️️ 5 5 501 -20 -オンナ 🧚‍♀️️ 5 5 501 -20 -オンナノヨウセイ 🧚‍♀️️ 5 5 501 -20 -ジョセイ 🧚‍♀️️ 5 5 501 -20 -ヨウセイ 🧚‍♀️️ 5 5 501 -20 -キュウケツキ 🧛️ 5 5 501 -20 -ドラキュラ 🧛️ 5 5 501 -20 -バンパイア 🧛️ 5 5 501 -20 -オトコ 🧛‍♂️️ 5 5 501 -20 -オトコノキュウケツキ 🧛‍♂️️ 5 5 501 -20 -キュウケツキ 🧛‍♂️️ 5 5 501 -20 -ダンセイ 🧛‍♂️️ 5 5 501 -20 -ドラキュラ 🧛‍♂️️ 5 5 501 -20 -バンパイア 🧛‍♂️️ 5 5 501 -20 -オンナ 🧛‍♀️️ 5 5 501 -20 -オンナノキュウケツキ 🧛‍♀️️ 5 5 501 -20 -キュウケツキ 🧛‍♀️️ 5 5 501 -20 -ジョセイ 🧛‍♀️️ 5 5 501 -20 -ドラキュラ 🧛‍♀️️ 5 5 501 -20 -バンパイア 🧛‍♀️️ 5 5 501 -20 -ニンギョ 🧜️ 5 5 501 -20 -マーマン 🧜️ 5 5 501 -20 -マーメイド 🧜️ 5 5 501 -20 -オトコ 🧜‍♂️️ 5 5 501 -20 -ダンセイ 🧜‍♂️️ 5 5 501 -20 -ニンギョ 🧜‍♂️️ 5 5 501 -20 -マーマン 🧜‍♂️️ 5 5 501 -20 -オンナ 🧜‍♀️️ 5 5 501 -20 -ジョセイ 🧜‍♀️️ 5 5 501 -20 -ニンギョ 🧜‍♀️️ 5 5 501 -20 -マーメイド 🧜‍♀️️ 5 5 501 -20 -エルフ 🧝️ 5 5 501 -20 -コヨウセイ 🧝️ 5 5 501 -20 -ヨウセイ 🧝️ 5 5 501 -20 -エルフ 🧝‍♂️️ 5 5 501 -20 -オトコ 🧝‍♂️️ 5 5 501 -20 -オトコノエルフ 🧝‍♂️️ 5 5 501 -20 -ダンセイ 🧝‍♂️️ 5 5 501 -20 -エルフ 🧝‍♀️️ 5 5 501 -20 -オンナ 🧝‍♀️️ 5 5 501 -20 -オンナノエルフ 🧝‍♀️️ 5 5 501 -20 -ジョセイ 🧝‍♀️️ 5 5 501 -20 -セイレイ 🧞️ 5 5 501 -20 -マジン 🧞️ 5 5 501 -20 -オトコ 🧞‍♂️️ 5 5 501 -20 -オトコノセイレイ 🧞‍♂️️ 5 5 501 -20 -セイレイ 🧞‍♂️️ 5 5 501 -20 -ダンセイ 🧞‍♂️️ 5 5 501 -20 -マジン 🧞‍♂️️ 5 5 501 -20 -オンナ 🧞‍♀️️ 5 5 501 -20 -オンナノセイレイ 🧞‍♀️️ 5 5 501 -20 -ジョセイ 🧞‍♀️️ 5 5 501 -20 -セイレイ 🧞‍♀️️ 5 5 501 -20 -マジン 🧞‍♀️️ 5 5 501 -20 -ゾンビ 🧟️ 5 5 501 -20 -ホラー 🧟️ 5 5 501 -20 -オトコ 🧟‍♂️️ 5 5 501 -20 -オトコノゾンビ 🧟‍♂️️ 5 5 501 -20 -ゾンビ 🧟‍♂️️ 5 5 501 -20 -ダンセイ 🧟‍♂️️ 5 5 501 -20 -ホラー 🧟‍♂️️ 5 5 501 -20 -オンナ 🧟‍♀️️ 5 5 501 -20 -オンナノゾンビ 🧟‍♀️️ 5 5 501 -20 -ジョセイ 🧟‍♀️️ 5 5 501 -20 -ゾンビ 🧟‍♀️️ 5 5 501 -20 -ホラー 🧟‍♀️️ 5 5 501 -20 -オトギバナシ 🧌️ 5 5 501 -20 -トロール 🧌️ 5 5 501 -20 -ファンタジー 🧌️ 5 5 501 -20 -モンスター 🧌️ 5 5 501 -20 -エステ 💆️ 5 5 501 -20 -フェイスマッサージ 💆️ 5 5 501 -20 -フェイスマッサージチュウノヒト 💆️ 5 5 501 -20 -マッサージ 💆️ 5 5 501 -20 -エステ 💆‍♂️️ 5 5 501 -20 -オトコ 💆‍♂️️ 5 5 501 -20 -ダンセイ 💆‍♂️️ 5 5 501 -20 -フェイスマッサージ 💆‍♂️️ 5 5 501 -20 -フェイスマッサージチュウノオトコ 💆‍♂️️ 5 5 501 -20 -マッサージ 💆‍♂️️ 5 5 501 -20 -エステ 💆‍♀️️ 5 5 501 -20 -オンナ 💆‍♀️️ 5 5 501 -20 -ジョセイ 💆‍♀️️ 5 5 501 -20 -フェイスマッサージ 💆‍♀️️ 5 5 501 -20 -フェイスマッサージチュウノオンナ 💆‍♀️️ 5 5 501 -20 -マッサージ 💆‍♀️️ 5 5 501 -20 -サンパツ 💇️ 5 5 501 -20 -サンパツサレルヒト 💇️ 5 5 501 -20 -トコヤ 💇️ 5 5 501 -20 -ビヨウイン 💇️ 5 5 501 -20 -ビヨウシツ 💇️ 5 5 501 -20 -ヘアカット 💇️ 5 5 501 -20 -サンパツサレルオトコ 💇‍♂️️ 5 5 501 -20 -ダンセイ 💇‍♂️️ 5 5 501 -20 -トコヤ 💇‍♂️️ 5 5 501 -20 -ビヨウイン 💇‍♂️️ 5 5 501 -20 -ビヨウシツ 💇‍♂️️ 5 5 501 -20 -ヘアカット 💇‍♂️️ 5 5 501 -20 -サンパツサレルオンナ 💇‍♀️️ 5 5 501 -20 -ジョセイ 💇‍♀️️ 5 5 501 -20 -トコヤ 💇‍♀️️ 5 5 501 -20 -ビヨウイン 💇‍♀️️ 5 5 501 -20 -ビヨウシツ 💇‍♀️️ 5 5 501 -20 -ヘアカット 💇‍♀️️ 5 5 501 -20 -アルクヒト 🚶️ 5 5 501 -20 -ウォーキング 🚶️ 5 5 501 -20 -ホコウ 🚶️ 5 5 501 -20 -ホコウシャ 🚶️ 5 5 501 -20 -アルクオトコ 🚶‍♂️️ 5 5 501 -20 -ウォーキング 🚶‍♂️️ 5 5 501 -20 -ダンセイ 🚶‍♂️️ 5 5 501 -20 -ホコウ 🚶‍♂️️ 5 5 501 -20 -ホコウシャ 🚶‍♂️️ 5 5 501 -20 -アルクオンナ 🚶‍♀️️ 5 5 501 -20 -ウォーキング 🚶‍♀️️ 5 5 501 -20 -ジョセイ 🚶‍♀️️ 5 5 501 -20 -ホコウ 🚶‍♀️️ 5 5 501 -20 -ホコウシャ 🚶‍♀️️ 5 5 501 -20 -アルクヒト 🚶‍➡️️ 5 5 501 -20 -ウォーキング 🚶‍➡️️ 5 5 501 -20 -ホコウ 🚶‍➡️️ 5 5 501 -20 -ホコウシャ 🚶‍➡️️ 5 5 501 -20 -アルクオンナ 🚶‍♀️‍➡️️ 5 5 501 -20 -ウォーキング 🚶‍♀️‍➡️️ 5 5 501 -20 -ジョセイ 🚶‍♀️‍➡️️ 5 5 501 -20 -ホコウ 🚶‍♀️‍➡️️ 5 5 501 -20 -ホコウシャ 🚶‍♀️‍➡️️ 5 5 501 -20 -アルクオトコ 🚶‍♂️‍➡️️ 5 5 501 -20 -ウォーキング 🚶‍♂️‍➡️️ 5 5 501 -20 -ダンセイ 🚶‍♂️‍➡️️ 5 5 501 -20 -ホコウ 🚶‍♂️‍➡️️ 5 5 501 -20 -ホコウシャ 🚶‍♂️‍➡️️ 5 5 501 -20 -キリツ 🧍️ 5 5 501 -20 -タッテイル 🧍️ 5 5 501 -20 -タツヒト 🧍️ 5 5 501 -20 -ヒト 🧍️ 5 5 501 -20 -キリツ 🧍‍♂️️ 5 5 501 -20 -タツオトコ 🧍‍♂️️ 5 5 501 -20 -ダンセイ 🧍‍♂️️ 5 5 501 -20 -キリツ 🧍‍♀️️ 5 5 501 -20 -ジョセイ 🧍‍♀️️ 5 5 501 -20 -タツオンナ 🧍‍♀️️ 5 5 501 -20 -スワル 🧎️ 5 5 501 -20 -セイザスルヒト 🧎️ 5 5 501 -20 -ヒザマズク 🧎️ 5 5 501 -20 -ヒト 🧎️ 5 5 501 -20 -スワル 🧎‍♂️️ 5 5 501 -20 -セイザスルダンセイ 🧎‍♂️️ 5 5 501 -20 -ダンセイ 🧎‍♂️️ 5 5 501 -20 -ヒザマズク 🧎‍♂️️ 5 5 501 -20 -ジョセイ 🧎‍♀️️ 5 5 501 -20 -スワル 🧎‍♀️️ 5 5 501 -20 -セイザスルジョセイ 🧎‍♀️️ 5 5 501 -20 -ヒザマズク 🧎‍♀️️ 5 5 501 -20 -スワル 🧎‍➡️️ 5 5 501 -20 -セイザスルヒト 🧎‍➡️️ 5 5 501 -20 -ヒザマズク 🧎‍➡️️ 5 5 501 -20 -ヒト 🧎‍➡️️ 5 5 501 -20 -ジョセイ 🧎‍♀️‍➡️️ 5 5 501 -20 -スワル 🧎‍♀️‍➡️️ 5 5 501 -20 -セイザスルジョセイ 🧎‍♀️‍➡️️ 5 5 501 -20 -ヒザマズク 🧎‍♀️‍➡️️ 5 5 501 -20 -スワル 🧎‍♂️‍➡️️ 5 5 501 -20 -セイザスルダンセイ 🧎‍♂️‍➡️️ 5 5 501 -20 -ダンセイ 🧎‍♂️‍➡️️ 5 5 501 -20 -ヒザマズク 🧎‍♂️‍➡️️ 5 5 501 -20 -アクセシビリティ 🧑‍🦯️ 5 5 501 -20 -シカク 🧑‍🦯️ 5 5 501 -20 -ショウガイ 🧑‍🦯️ 5 5 501 -20 -ツエヲツイタヒト 🧑‍🦯️ 5 5 501 -20 -メ 🧑‍🦯️ 5 5 501 -20 -アクセシビリティ 🧑‍🦯‍➡️️ 5 5 501 -20 -シカク 🧑‍🦯‍➡️️ 5 5 501 -20 -ショウガイ 🧑‍🦯‍➡️️ 5 5 501 -20 -ツエヲツイタヒト 🧑‍🦯‍➡️️ 5 5 501 -20 -メ 🧑‍🦯‍➡️️ 5 5 501 -20 -アクセシビリティ 👨‍🦯️ 5 5 501 -20 -シカク 👨‍🦯️ 5 5 501 -20 -ショウガイ 👨‍🦯️ 5 5 501 -20 -ダンセイ 👨‍🦯️ 5 5 501 -20 -ツエヲツイタダンセイ 👨‍🦯️ 5 5 501 -20 -メ 👨‍🦯️ 5 5 501 -20 -アクセシビリティ 👨‍🦯‍➡️️ 5 5 501 -20 -シカク 👨‍🦯‍➡️️ 5 5 501 -20 -ショウガイ 👨‍🦯‍➡️️ 5 5 501 -20 -ダンセイ 👨‍🦯‍➡️️ 5 5 501 -20 -ツエヲツイタダンセイ 👨‍🦯‍➡️️ 5 5 501 -20 -メ 👨‍🦯‍➡️️ 5 5 501 -20 -アクセシビリティ 👩‍🦯️ 5 5 501 -20 -シカク 👩‍🦯️ 5 5 501 -20 -ショウガイ 👩‍🦯️ 5 5 501 -20 -ジョセイ 👩‍🦯️ 5 5 501 -20 -ツエヲツイタジョセイ 👩‍🦯️ 5 5 501 -20 -メ 👩‍🦯️ 5 5 501 -20 -アクセシビリティ 👩‍🦯‍➡️️ 5 5 501 -20 -シカク 👩‍🦯‍➡️️ 5 5 501 -20 -ショウガイ 👩‍🦯‍➡️️ 5 5 501 -20 -ジョセイ 👩‍🦯‍➡️️ 5 5 501 -20 -ツエヲツイタジョセイ 👩‍🦯‍➡️️ 5 5 501 -20 -メ 👩‍🦯‍➡️️ 5 5 501 -20 -アクセシビリティ 🧑‍🦼️ 5 5 501 -20 -クルマイス 🧑‍🦼️ 5 5 501 -20 -ショウガイ 🧑‍🦼️ 5 5 501 -20 -デンドウクルマイスノヒト 🧑‍🦼️ 5 5 501 -20 -アクセシビリティ 🧑‍🦼‍➡️️ 5 5 501 -20 -クルマイス 🧑‍🦼‍➡️️ 5 5 501 -20 -ショウガイ 🧑‍🦼‍➡️️ 5 5 501 -20 -デンドウクルマイスノヒト 🧑‍🦼‍➡️️ 5 5 501 -20 -アクセシビリティ 👨‍🦼️ 5 5 501 -20 -クルマイス 👨‍🦼️ 5 5 501 -20 -ショウガイ 👨‍🦼️ 5 5 501 -20 -ダンセイ 👨‍🦼️ 5 5 501 -20 -デンドウクルマイスノダンセイ 👨‍🦼️ 5 5 501 -20 -アクセシビリティ 👨‍🦼‍➡️️ 5 5 501 -20 -クルマイス 👨‍🦼‍➡️️ 5 5 501 -20 -ショウガイ 👨‍🦼‍➡️️ 5 5 501 -20 -ダンセイ 👨‍🦼‍➡️️ 5 5 501 -20 -デンドウクルマイスノダンセイ 👨‍🦼‍➡️️ 5 5 501 -20 -アクセシビリティ 👩‍🦼️ 5 5 501 -20 -クルマイス 👩‍🦼️ 5 5 501 -20 -ショウガイ 👩‍🦼️ 5 5 501 -20 -ジョセイ 👩‍🦼️ 5 5 501 -20 -デンドウクルマイスノジョセイ 👩‍🦼️ 5 5 501 -20 -アクセシビリティ 👩‍🦼‍➡️️ 5 5 501 -20 -クルマイス 👩‍🦼‍➡️️ 5 5 501 -20 -ショウガイ 👩‍🦼‍➡️️ 5 5 501 -20 -ジョセイ 👩‍🦼‍➡️️ 5 5 501 -20 -デンドウクルマイスノジョセイ 👩‍🦼‍➡️️ 5 5 501 -20 -アクセシビリティ 🧑‍🦽️ 5 5 501 -20 -クルマイス 🧑‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノヒト 🧑‍🦽️ 5 5 501 -20 -ショウガイ 🧑‍🦽️ 5 5 501 -20 -アクセシビリティ 🧑‍🦽‍➡️️ 5 5 501 -20 -クルマイス 🧑‍🦽‍➡️️ 5 5 501 -20 -シュドウシキクルマイスノヒト 🧑‍🦽‍➡️️ 5 5 501 -20 -ショウガイ 🧑‍🦽‍➡️️ 5 5 501 -20 -アクセシビリティ 👨‍🦽️ 5 5 501 -20 -クルマイス 👨‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノダンセイ 👨‍🦽️ 5 5 501 -20 -ショウガイ 👨‍🦽️ 5 5 501 -20 -ダンセイ 👨‍🦽️ 5 5 501 -20 -アクセシビリティ 👨‍🦽‍➡️️ 5 5 501 -20 -クルマイス 👨‍🦽‍➡️️ 5 5 501 -20 -シュドウシキクルマイスノダンセイ 👨‍🦽‍➡️️ 5 5 501 -20 -ショウガイ 👨‍🦽‍➡️️ 5 5 501 -20 -ダンセイ 👨‍🦽‍➡️️ 5 5 501 -20 -アクセシビリティ 👩‍🦽️ 5 5 501 -20 -クルマイス 👩‍🦽️ 5 5 501 -20 -シュドウシキクルマイスノジョセイ 👩‍🦽️ 5 5 501 -20 -ショウガイ 👩‍🦽️ 5 5 501 -20 -ジョセイ 👩‍🦽️ 5 5 501 -20 -アクセシビリティ 👩‍🦽‍➡️️ 5 5 501 -20 -クルマイス 👩‍🦽‍➡️️ 5 5 501 -20 -シュドウシキクルマイスノジョセイ 👩‍🦽‍➡️️ 5 5 501 -20 -ショウガイ 👩‍🦽‍➡️️ 5 5 501 -20 -ジョセイ 👩‍🦽‍➡️️ 5 5 501 -20 -ジョギング 🏃️ 5 5 501 -20 -スポーツ 🏃️ 5 5 501 -20 -ハシルヒト 🏃️ 5 5 501 -20 -マラソン 🏃️ 5 5 501 -20 -ランナー 🏃️ 5 5 501 -20 -ランニング 🏃️ 5 5 501 -20 -ジョギング 🏃‍♂️️ 5 5 501 -20 -ダンセイ 🏃‍♂️️ 5 5 501 -20 -ハシルオトコ 🏃‍♂️️ 5 5 501 -20 -マラソン 🏃‍♂️️ 5 5 501 -20 -ランナー 🏃‍♂️️ 5 5 501 -20 -ランニング 🏃‍♂️️ 5 5 501 -20 -ジョギング 🏃‍♀️️ 5 5 501 -20 -ジョセイ 🏃‍♀️️ 5 5 501 -20 -ハシルオンナ 🏃‍♀️️ 5 5 501 -20 -マラソン 🏃‍♀️️ 5 5 501 -20 -ランナー 🏃‍♀️️ 5 5 501 -20 -ランニング 🏃‍♀️️ 5 5 501 -20 -ジョギング 🏃‍➡️️ 5 5 501 -20 -ハシルヒト 🏃‍➡️️ 5 5 501 -20 -マラソン 🏃‍➡️️ 5 5 501 -20 -ランナー 🏃‍➡️️ 5 5 501 -20 -ランニング 🏃‍➡️️ 5 5 501 -20 -ジョギング 🏃‍♀️‍➡️️ 5 5 501 -20 -ジョセイ 🏃‍♀️‍➡️️ 5 5 501 -20 -ハシルオンナ 🏃‍♀️‍➡️️ 5 5 501 -20 -マラソン 🏃‍♀️‍➡️️ 5 5 501 -20 -ランナー 🏃‍♀️‍➡️️ 5 5 501 -20 -ランニング 🏃‍♀️‍➡️️ 5 5 501 -20 -ジョギング 🏃‍♂️‍➡️️ 5 5 501 -20 -ダンセイ 🏃‍♂️‍➡️️ 5 5 501 -20 -ハシルオトコ 🏃‍♂️‍➡️️ 5 5 501 -20 -マラソン 🏃‍♂️‍➡️️ 5 5 501 -20 -ランナー 🏃‍♂️‍➡️️ 5 5 501 -20 -ランニング 🏃‍♂️‍➡️️ 5 5 501 -20 -オドリコ 💃️ 5 5 501 -20 -オドルオンナ 💃️ 5 5 501 -20 -ジョセイ 💃️ 5 5 501 -20 -ダンサー 💃️ 5 5 501 -20 -ダンス 💃️ 5 5 501 -20 -フラメンコ 💃️ 5 5 501 -20 -オトコ 🕺️ 5 5 501 -20 -オドルオトコ 🕺️ 5 5 501 -20 -ダンサー 🕺️ 5 5 501 -20 -ダンス 🕺️ 5 5 501 -20 -ダンセイ 🕺️ 5 5 501 -20 -ウイテルビジネスマン 🕴️️ 5 5 501 -20 -オトコ 🕴️️ 5 5 501 -20 -クウチュウフユウ 🕴️️ 5 5 501 -20 -スーツ 🕴️️ 5 5 501 -20 -ダンセイ 🕴️️ 5 5 501 -20 -ビジネスマン 🕴️️ 5 5 501 -20 -ウサミミ 👯️ 5 5 501 -20 -カオ 👯️ 5 5 501 -20 -ダンサー 👯️ 5 5 501 -20 -バニー 👯️ 5 5 501 -20 -バニーガール 👯️ 5 5 501 -20 -バニーボーイ 👯️ 5 5 501 -20 -パーティー 👯️ 5 5 501 -20 -ウサミミ 👯‍♂️️ 5 5 501 -20 -オトコ 👯‍♂️️ 5 5 501 -20 -ダンサー 👯‍♂️️ 5 5 501 -20 -ダンセイ 👯‍♂️️ 5 5 501 -20 -バニーボーイ 👯‍♂️️ 5 5 501 -20 -パーティー 👯‍♂️️ 5 5 501 -20 -ウサミミ 👯‍♀️️ 5 5 501 -20 -オンナ 👯‍♀️️ 5 5 501 -20 -ジョセイ 👯‍♀️️ 5 5 501 -20 -ダンサー 👯‍♀️️ 5 5 501 -20 -バニーガール 👯‍♀️️ 5 5 501 -20 -パーティー 👯‍♀️️ 5 5 501 -20 -サウナ 🧖️ 5 5 501 -20 -サウナニハイルヒト 🧖️ 5 5 501 -20 -オトコ 🧖‍♂️️ 5 5 501 -20 -サウナ 🧖‍♂️️ 5 5 501 -20 -サウナニハイルオトコ 🧖‍♂️️ 5 5 501 -20 -ダンセイ 🧖‍♂️️ 5 5 501 -20 -オンナ 🧖‍♀️️ 5 5 501 -20 -サウナ 🧖‍♀️️ 5 5 501 -20 -サウナニハイルオンナ 🧖‍♀️️ 5 5 501 -20 -ジョセイ 🧖‍♀️️ 5 5 501 -20 -トザン 🧗️ 5 5 501 -20 -ヤマノボリ 🧗️ 5 5 501 -20 -ヤマヲノボルヒト 🧗️ 5 5 501 -20 -オトコ 🧗‍♂️️ 5 5 501 -20 -ダンセイ 🧗‍♂️️ 5 5 501 -20 -トザン 🧗‍♂️️ 5 5 501 -20 -ヤマノボリ 🧗‍♂️️ 5 5 501 -20 -ヤマヲノボルオトコ 🧗‍♂️️ 5 5 501 -20 -オンナ 🧗‍♀️️ 5 5 501 -20 -ジョセイ 🧗‍♀️️ 5 5 501 -20 -トザン 🧗‍♀️️ 5 5 501 -20 -ヤマノボリ 🧗‍♀️️ 5 5 501 -20 -ヤマヲノボルオンナ 🧗‍♀️️ 5 5 501 -20 -スポーツ 🤺️ 5 5 501 -20 -フェンシング 🤺️ 5 5 501 -20 -フェンシングヲスルヒト 🤺️ 5 5 501 -20 -キシュ 🏇️ 5 5 501 -20 -ケイバ 🏇️ 5 5 501 -20 -ジョウバ 🏇️ 5 5 501 -20 -ジョッキー 🏇️ 5 5 501 -20 -スポーツ 🏇️ 5 5 501 -20 -スキー ⛷️️ 5 5 501 -20 -スキーヤー ⛷️️ 5 5 501 -20 -ストック ⛷️️ 5 5 501 -20 -スポーツ ⛷️️ 5 5 501 -20 -スノボ 🏂️ 5 5 501 -20 -スノーボーダー 🏂️ 5 5 501 -20 -スノーボード 🏂️ 5 5 501 -20 -スポーツ 🏂️ 5 5 501 -20 -ゴルフ 🏌️️ 5 5 501 -20 -ゴルファー 🏌️️ 5 5 501 -20 -ゴルフヲスルヒト 🏌️️ 5 5 501 -20 -スポーツ 🏌️️ 5 5 501 -20 -オトコ 🏌️‍♂️️ 5 5 501 -20 -ゴルフ 🏌️‍♂️️ 5 5 501 -20 -ゴルファー 🏌️‍♂️️ 5 5 501 -20 -ゴルフヲスルオトコ 🏌️‍♂️️ 5 5 501 -20 -スポーツ 🏌️‍♂️️ 5 5 501 -20 -ダンセイ 🏌️‍♂️️ 5 5 501 -20 -オンナ 🏌️‍♀️️ 5 5 501 -20 -ゴルフ 🏌️‍♀️️ 5 5 501 -20 -ゴルファー 🏌️‍♀️️ 5 5 501 -20 -ゴルフヲスルオンナ 🏌️‍♀️️ 5 5 501 -20 -ジョセイ 🏌️‍♀️️ 5 5 501 -20 -スポーツ 🏌️‍♀️️ 5 5 501 -20 -サーファー 🏄️ 5 5 501 -20 -サーフィン 🏄️ 5 5 501 -20 -サーフィンスルヒト 🏄️ 5 5 501 -20 -スポーツ 🏄️ 5 5 501 -20 -ナミノリ 🏄️ 5 5 501 -20 -オトコ 🏄‍♂️️ 5 5 501 -20 -サーファー 🏄‍♂️️ 5 5 501 -20 -サーフィンスルオトコ 🏄‍♂️️ 5 5 501 -20 -スポーツ 🏄‍♂️️ 5 5 501 -20 -ダンセイ 🏄‍♂️️ 5 5 501 -20 -ナミノリ 🏄‍♂️️ 5 5 501 -20 -オンナ 🏄‍♀️️ 5 5 501 -20 -サーファー 🏄‍♀️️ 5 5 501 -20 -サーフィンスルオンナ 🏄‍♀️️ 5 5 501 -20 -ジョセイ 🏄‍♀️️ 5 5 501 -20 -スポーツ 🏄‍♀️️ 5 5 501 -20 -ナミノリ 🏄‍♀️️ 5 5 501 -20 -カヌー 🚣️ 5 5 501 -20 -カヤック 🚣️ 5 5 501 -20 -スポーツ 🚣️ 5 5 501 -20 -ノリモノ 🚣️ 5 5 501 -20 -フネ 🚣️ 5 5 501 -20 -ボートヲコグヒト 🚣️ 5 5 501 -20 -カヌー 🚣‍♂️️ 5 5 501 -20 -カヤック 🚣‍♂️️ 5 5 501 -20 -スポーツ 🚣‍♂️️ 5 5 501 -20 -ダンセイ 🚣‍♂️️ 5 5 501 -20 -フネ 🚣‍♂️️ 5 5 501 -20 -ボートヲコグオトコ 🚣‍♂️️ 5 5 501 -20 -カヌー 🚣‍♀️️ 5 5 501 -20 -カヤック 🚣‍♀️️ 5 5 501 -20 -ジョセイ 🚣‍♀️️ 5 5 501 -20 -スポーツ 🚣‍♀️️ 5 5 501 -20 -フネ 🚣‍♀️️ 5 5 501 -20 -ボートヲコグオンナ 🚣‍♀️️ 5 5 501 -20 -オヨグヒト 🏊️ 5 5 501 -20 -スイエイ 🏊️ 5 5 501 -20 -スイマー 🏊️ 5 5 501 -20 -スイミング 🏊️ 5 5 501 -20 -スイム 🏊️ 5 5 501 -20 -スポーツ 🏊️ 5 5 501 -20 -オヨグオトコ 🏊‍♂️️ 5 5 501 -20 -スイエイ 🏊‍♂️️ 5 5 501 -20 -スイマー 🏊‍♂️️ 5 5 501 -20 -スイミング 🏊‍♂️️ 5 5 501 -20 -スイム 🏊‍♂️️ 5 5 501 -20 -スポーツ 🏊‍♂️️ 5 5 501 -20 -ダンセイ 🏊‍♂️️ 5 5 501 -20 -オヨグオンナ 🏊‍♀️️ 5 5 501 -20 -ジョセイ 🏊‍♀️️ 5 5 501 -20 -スイエイ 🏊‍♀️️ 5 5 501 -20 -スイマー 🏊‍♀️️ 5 5 501 -20 -スイミング 🏊‍♀️️ 5 5 501 -20 -スイム 🏊‍♀️️ 5 5 501 -20 -スポーツ 🏊‍♀️️ 5 5 501 -20 -キュウギ ⛹️️ 5 5 501 -20 -スポーツ ⛹️️ 5 5 501 -20 -バスケ ⛹️️ 5 5 501 -20 -バスケットボール ⛹️️ 5 5 501 -20 -バスケットボールヲスルヒト ⛹️️ 5 5 501 -20 -キュウギ ⛹️‍♂️️ 5 5 501 -20 -スポーツ ⛹️‍♂️️ 5 5 501 -20 -ダンセイ ⛹️‍♂️️ 5 5 501 -20 -バスケ ⛹️‍♂️️ 5 5 501 -20 -バスケットボール ⛹️‍♂️️ 5 5 501 -20 -バスケットボールヲスルオトコ ⛹️‍♂️️ 5 5 501 -20 -キュウギ ⛹️‍♀️️ 5 5 501 -20 -ジョセイ ⛹️‍♀️️ 5 5 501 -20 -スポーツ ⛹️‍♀️️ 5 5 501 -20 -バスケ ⛹️‍♀️️ 5 5 501 -20 -バスケットボール ⛹️‍♀️️ 5 5 501 -20 -バスケットボールヲスルオンナ ⛹️‍♀️️ 5 5 501 -20 -ウェイトリフティング 🏋️️ 5 5 501 -20 -ジュウリョウアゲ 🏋️️ 5 5 501 -20 -ジュウリョウアゲヲスルヒト 🏋️️ 5 5 501 -20 -スポーツ 🏋️️ 5 5 501 -20 -ウェイトリフティング 🏋️‍♂️️ 5 5 501 -20 -オトコ 🏋️‍♂️️ 5 5 501 -20 -ジュウリョウアゲヲスルオトコ 🏋️‍♂️️ 5 5 501 -20 -スポーツ 🏋️‍♂️️ 5 5 501 -20 -ダンセイ 🏋️‍♂️️ 5 5 501 -20 -ウェイトリフティング 🏋️‍♀️️ 5 5 501 -20 -オンナ 🏋️‍♀️️ 5 5 501 -20 -ジュウリョウアゲヲスルオンナ 🏋️‍♀️️ 5 5 501 -20 -ジョセイ 🏋️‍♀️️ 5 5 501 -20 -スポーツ 🏋️‍♀️️ 5 5 501 -20 -ケイリン 🚴️ 5 5 501 -20 -サイクリング 🚴️ 5 5 501 -20 -ジテンシャニノルジン 🚴️ 5 5 501 -20 -ジテンシャニノルヒト 🚴️ 5 5 501 -20 -スポーツ 🚴️ 5 5 501 -20 -ロードバイク 🚴️ 5 5 501 -20 -ロードレース 🚴️ 5 5 501 -20 -ケイリン 🚴‍♂️️ 5 5 501 -20 -サイクリング 🚴‍♂️️ 5 5 501 -20 -ジテンシャニノルオトコ 🚴‍♂️️ 5 5 501 -20 -スポーツ 🚴‍♂️️ 5 5 501 -20 -ダンセイ 🚴‍♂️️ 5 5 501 -20 -ロードレース 🚴‍♂️️ 5 5 501 -20 -ケイリン 🚴‍♀️️ 5 5 501 -20 -サイクリング 🚴‍♀️️ 5 5 501 -20 -ジテンシャニノルオンナ 🚴‍♀️️ 5 5 501 -20 -ジョセイ 🚴‍♀️️ 5 5 501 -20 -スポーツ 🚴‍♀️️ 5 5 501 -20 -ロードレース 🚴‍♀️️ 5 5 501 -20 -サイクリング 🚵️ 5 5 501 -20 -ジテンシャ 🚵️ 5 5 501 -20 -スポーツ 🚵️ 5 5 501 -20 -マウンテンバイク 🚵️ 5 5 501 -20 -マウンテンバイクニノルヒト 🚵️ 5 5 501 -20 -オトコ 🚵‍♂️️ 5 5 501 -20 -サイクリング 🚵‍♂️️ 5 5 501 -20 -ジテンシャ 🚵‍♂️️ 5 5 501 -20 -スポーツ 🚵‍♂️️ 5 5 501 -20 -ダンセイ 🚵‍♂️️ 5 5 501 -20 -マウンテンバイクニノルオトコ 🚵‍♂️️ 5 5 501 -20 -オンナ 🚵‍♀️️ 5 5 501 -20 -サイクリング 🚵‍♀️️ 5 5 501 -20 -ジテンシャ 🚵‍♀️️ 5 5 501 -20 -ジョセイ 🚵‍♀️️ 5 5 501 -20 -スポーツ 🚵‍♀️️ 5 5 501 -20 -マウンテンバイクニノルオンナ 🚵‍♀️️ 5 5 501 -20 -スポーツ 🤸️ 5 5 501 -20 -ソクテン 🤸️ 5 5 501 -20 -ソクテンスルヒト 🤸️ 5 5 501 -20 -タイソウ 🤸️ 5 5 501 -20 -オトコ 🤸‍♂️️ 5 5 501 -20 -スポーツ 🤸‍♂️️ 5 5 501 -20 -ソクテン 🤸‍♂️️ 5 5 501 -20 -ソクテンスルオトコ 🤸‍♂️️ 5 5 501 -20 -タイソウ 🤸‍♂️️ 5 5 501 -20 -ダンセイ 🤸‍♂️️ 5 5 501 -20 -オンナ 🤸‍♀️️ 5 5 501 -20 -ジョセイ 🤸‍♀️️ 5 5 501 -20 -スポーツ 🤸‍♀️️ 5 5 501 -20 -ソクテン 🤸‍♀️️ 5 5 501 -20 -ソクテンスルオンナ 🤸‍♀️️ 5 5 501 -20 -タイソウ 🤸‍♀️️ 5 5 501 -20 -スポーツ 🤼️ 5 5 501 -20 -レスラー 🤼️ 5 5 501 -20 -レスリング 🤼️ 5 5 501 -20 -レスリングスルヒト 🤼️ 5 5 501 -20 -レスリングヲスルヒト 🤼️ 5 5 501 -20 -オトコ 🤼‍♂️️ 5 5 501 -20 -スポーツ 🤼‍♂️️ 5 5 501 -20 -ダンセイ 🤼‍♂️️ 5 5 501 -20 -レスリング 🤼‍♂️️ 5 5 501 -20 -レスリングスルオトコ 🤼‍♂️️ 5 5 501 -20 -レスリングヲスルオトコ 🤼‍♂️️ 5 5 501 -20 -オンナ 🤼‍♀️️ 5 5 501 -20 -ジョセイ 🤼‍♀️️ 5 5 501 -20 -スポーツ 🤼‍♀️️ 5 5 501 -20 -レスリング 🤼‍♀️️ 5 5 501 -20 -レスリングスルオンナ 🤼‍♀️️ 5 5 501 -20 -レスリングヲスルオンナ 🤼‍♀️️ 5 5 501 -20 -キュウギ 🤽️ 5 5 501 -20 -スイキュウ 🤽️ 5 5 501 -20 -スイキュウヲスルヒト 🤽️ 5 5 501 -20 -スポーツ 🤽️ 5 5 501 -20 -オトコ 🤽‍♂️️ 5 5 501 -20 -キュウギ 🤽‍♂️️ 5 5 501 -20 -スイキュウ 🤽‍♂️️ 5 5 501 -20 -スイキュウヲスルオトコ 🤽‍♂️️ 5 5 501 -20 -スポーツ 🤽‍♂️️ 5 5 501 -20 -ダンセイ 🤽‍♂️️ 5 5 501 -20 -オンナ 🤽‍♀️️ 5 5 501 -20 -キュウギ 🤽‍♀️️ 5 5 501 -20 -ジョセイ 🤽‍♀️️ 5 5 501 -20 -スイキュウ 🤽‍♀️️ 5 5 501 -20 -スイキュウヲスルオンナ 🤽‍♀️️ 5 5 501 -20 -スポーツ 🤽‍♀️️ 5 5 501 -20 -キュウギ 🤾️ 5 5 501 -20 -スポーツ 🤾️ 5 5 501 -20 -ハンドボール 🤾️ 5 5 501 -20 -ハンドボールヲスルヒト 🤾️ 5 5 501 -20 -オトコ 🤾‍♂️️ 5 5 501 -20 -キュウギ 🤾‍♂️️ 5 5 501 -20 -スポーツ 🤾‍♂️️ 5 5 501 -20 -ダンセイ 🤾‍♂️️ 5 5 501 -20 -ハンドボール 🤾‍♂️️ 5 5 501 -20 -ハンドボールヲスルオトコ 🤾‍♂️️ 5 5 501 -20 -オンナ 🤾‍♀️️ 5 5 501 -20 -キュウギ 🤾‍♀️️ 5 5 501 -20 -ジョセイ 🤾‍♀️️ 5 5 501 -20 -スポーツ 🤾‍♀️️ 5 5 501 -20 -ハンドボール 🤾‍♀️️ 5 5 501 -20 -ハンドボールヲスルオンナ 🤾‍♀️️ 5 5 501 -20 -ジャグラー 🤹️ 5 5 501 -20 -ジャグリング 🤹️ 5 5 501 -20 -ジャグリングヲスルヒト 🤹️ 5 5 501 -20 -ダイドウゲイ 🤹️ 5 5 501 -20 -オトコ 🤹‍♂️️ 5 5 501 -20 -ジャグラー 🤹‍♂️️ 5 5 501 -20 -ジャグリング 🤹‍♂️️ 5 5 501 -20 -ジャグリングヲスルオトコ 🤹‍♂️️ 5 5 501 -20 -ダイドウゲイ 🤹‍♂️️ 5 5 501 -20 -ダンセイ 🤹‍♂️️ 5 5 501 -20 -オンナ 🤹‍♀️️ 5 5 501 -20 -ジャグラー 🤹‍♀️️ 5 5 501 -20 -ジャグリング 🤹‍♀️️ 5 5 501 -20 -ジャグリングヲスルオンナ 🤹‍♀️️ 5 5 501 -20 -ジョセイ 🤹‍♀️️ 5 5 501 -20 -ダイドウゲイ 🤹‍♀️️ 5 5 501 -20 -メイソウ 🧘️ 5 5 501 -20 -ヨガ 🧘️ 5 5 501 -20 -ヨガノポーズヲスルヒト 🧘️ 5 5 501 -20 -オトコ 🧘‍♂️️ 5 5 501 -20 -ダンセイ 🧘‍♂️️ 5 5 501 -20 -メイソウ 🧘‍♂️️ 5 5 501 -20 -ヨガ 🧘‍♂️️ 5 5 501 -20 -ヨガノポーズヲスルオトコ 🧘‍♂️️ 5 5 501 -20 -オンナ 🧘‍♀️️ 5 5 501 -20 -ジョセイ 🧘‍♀️️ 5 5 501 -20 -メイソウ 🧘‍♀️️ 5 5 501 -20 -ヨガ 🧘‍♀️️ 5 5 501 -20 -ヨガノポーズヲスルオンナ 🧘‍♀️️ 5 5 501 -20 -バスタブ 🛀️ 5 5 501 -20 -フロ 🛀️ 5 5 501 -20 -フロニハイルジン 🛀️ 5 5 501 -20 -フロニハイルヒト 🛀️ 5 5 501 -20 -ヨクソウ 🛀️ 5 5 501 -20 -ネル 🛌️ 5 5 501 -20 -ベッド 🛌️ 5 5 501 -20 -ベッドニネルヒト 🛌️ 5 5 501 -20 -ホテル 🛌️ 5 5 501 -20 -カップル 🧑‍🤝‍🧑️ 5 5 501 -20 -コイビト 🧑‍🤝‍🧑️ 5 5 501 -20 -ツナグ 🧑‍🤝‍🧑️ 5 5 501 -20 -テ 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグ 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグ2ニン 🧑‍🤝‍🧑️ 5 5 501 -20 -テヲツナグフタリ 🧑‍🤝‍🧑️ 5 5 501 -20 -トモダチ 🧑‍🤝‍🧑️ 5 5 501 -20 -ヒト 🧑‍🤝‍🧑️ 5 5 501 -20 -オンナ 👭️ 5 5 501 -20 -カップル 👭️ 5 5 501 -20 -コイビト 👭️ 5 5 501 -20 -テヲツナグジョセイ 👭️ 5 5 501 -20 -トモダチ 👭️ 5 5 501 -20 -ドウセイ 👭️ 5 5 501 -20 -イセイ 👫️ 5 5 501 -20 -カップル 👫️ 5 5 501 -20 -コイビト 👫️ 5 5 501 -20 -ダンジョ 👫️ 5 5 501 -20 -テヲツナグダンジョ 👫️ 5 5 501 -20 -トモダチ 👫️ 5 5 501 -20 -フタリ 👫️ 5 5 501 -20 -オトコ 👬️ 5 5 501 -20 -カップル 👬️ 5 5 501 -20 -コイビト 👬️ 5 5 501 -20 -テヲツナグダンセイ 👬️ 5 5 501 -20 -トモダチ 👬️ 5 5 501 -20 -ドウセイ 👬️ 5 5 501 -20 -2ニンデキス 💏️ 5 5 501 -20 -カップル 💏️ 5 5 501 -20 -キス 💏️ 5 5 501 -20 -チュッ 💏️ 5 5 501 -20 -ハート 💏️ 5 5 501 -20 -フタリデキス 💏️ 5 5 501 -20 -2ニンデキス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -カップル 👩‍❤️‍💋‍👨️ 5 5 501 -20 -キス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ジョセイ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ジョセイトダンセイデキス 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -チュッ 👩‍❤️‍💋‍👨️ 5 5 501 -20 -ハート 👩‍❤️‍💋‍👨️ 5 5 501 -20 -2ニンデキス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -カップル 👨‍❤️‍💋‍👨️ 5 5 501 -20 -キス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイ 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ダンセイトダンセイデキス 👨‍❤️‍💋‍👨️ 5 5 501 -20 -チュッ 👨‍❤️‍💋‍👨️ 5 5 501 -20 -ハート 👨‍❤️‍💋‍👨️ 5 5 501 -20 -2ニンデキス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -カップル 👩‍❤️‍💋‍👩️ 5 5 501 -20 -キス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ジョセイ 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ジョセイトジョセイデキス 👩‍❤️‍💋‍👩️ 5 5 501 -20 -チュッ 👩‍❤️‍💋‍👩️ 5 5 501 -20 -ハート 👩‍❤️‍💋‍👩️ 5 5 501 -20 -アツアツ 💑️ 5 5 501 -20 -カップル 💑️ 5 5 501 -20 -カップルトハート 💑️ 5 5 501 -20 -コイビト 💑️ 5 5 501 -20 -ハート 💑️ 5 5 501 -20 -アツアツ 👩‍❤️‍👨️ 5 5 501 -20 -カップル 👩‍❤️‍👨️ 5 5 501 -20 -カップルトハート 👩‍❤️‍👨️ 5 5 501 -20 -コイビト 👩‍❤️‍👨️ 5 5 501 -20 -ジョセイ 👩‍❤️‍👨️ 5 5 501 -20 -ジョセイトダンセイノカップル 👩‍❤️‍👨️ 5 5 501 -20 -ダンセイ 👩‍❤️‍👨️ 5 5 501 -20 -ハート 👩‍❤️‍👨️ 5 5 501 -20 -アツアツ 👨‍❤️‍👨️ 5 5 501 -20 -カップル 👨‍❤️‍👨️ 5 5 501 -20 -カップルトハート 👨‍❤️‍👨️ 5 5 501 -20 -コイビト 👨‍❤️‍👨️ 5 5 501 -20 -ダンセイ 👨‍❤️‍👨️ 5 5 501 -20 -ダンセイトダンセイノカップル 👨‍❤️‍👨️ 5 5 501 -20 -ハート 👨‍❤️‍👨️ 5 5 501 -20 -アツアツ 👩‍❤️‍👩️ 5 5 501 -20 -カップル 👩‍❤️‍👩️ 5 5 501 -20 -カップルトハート 👩‍❤️‍👩️ 5 5 501 -20 -コイビト 👩‍❤️‍👩️ 5 5 501 -20 -ジョセイ 👩‍❤️‍👩️ 5 5 501 -20 -ジョセイトジョセイノカップル 👩‍❤️‍👩️ 5 5 501 -20 -ハート 👩‍❤️‍👩️ 5 5 501 -20 -オトコノコ 👨‍👩‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👦️ 5 5 501 -20 -ダンセイトジョセイトオトコノコノカゾク 👨‍👩‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧️ 5 5 501 -20 -カゾク 👨‍👩‍👧️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧️ 5 5 501 -20 -ダンセイトジョセイトオンナノコノカゾク 👨‍👩‍👧️ 5 5 501 -20 -オトコノコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧‍👦️ 5 5 501 -20 -ダンセイトジョセイトオンナノコトオトコノコノカゾク 👨‍👩‍👧‍👦️ 5 5 501 -20 -オトコノコ 👨‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👨‍👩‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👩‍👦‍👦️ 5 5 501 -20 -ダンセイトジョセイトオトコノコトオトコノコノカゾク 👨‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👩‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👨‍👩‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👩‍👧‍👧️ 5 5 501 -20 -ダンセイトジョセイトオンナノコトオンナノコノカゾク 👨‍👩‍👧‍👧️ 5 5 501 -20 -オトコノコ 👨‍👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👦️ 5 5 501 -20 -ダンセイトダンセイトオトコノコノカゾク 👨‍👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧️ 5 5 501 -20 -カゾク 👨‍👨‍👧️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧️ 5 5 501 -20 -ダンセイトダンセイトオンナノコノカゾク 👨‍👨‍👧️ 5 5 501 -20 -オトコノコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧‍👦️ 5 5 501 -20 -ダンセイトダンセイトオンナノコトオトコノコノカゾク 👨‍👨‍👧‍👦️ 5 5 501 -20 -オトコノコ 👨‍👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👨‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👨‍👦‍👦️ 5 5 501 -20 -ダンセイトダンセイトオトコノコトオトコノコノカゾク 👨‍👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👨‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👨‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👨‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👨‍👧‍👧️ 5 5 501 -20 -ダンセイトダンセイトオンナノコトオンナノコノカゾク 👨‍👨‍👧‍👧️ 5 5 501 -20 -オトコノコ 👩‍👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👦️ 5 5 501 -20 -ジョセイトジョセイトオトコノコノカゾク 👩‍👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧️ 5 5 501 -20 -カゾク 👩‍👩‍👧️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧️ 5 5 501 -20 -ジョセイトジョセイトオンナノコノカゾク 👩‍👩‍👧️ 5 5 501 -20 -オトコノコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧‍👦️ 5 5 501 -20 -ジョセイトジョセイトオンナノコトオトコノコノカゾク 👩‍👩‍👧‍👦️ 5 5 501 -20 -オトコノコ 👩‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👦‍👦️ 5 5 501 -20 -カゾク 👩‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👩‍👩‍👦‍👦️ 5 5 501 -20 -ジョセイトジョセイトオトコノコトオトコノコノカゾク 👩‍👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👩‍👩‍👧‍👧️ 5 5 501 -20 -カゾク 👩‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👩‍👩‍👧‍👧️ 5 5 501 -20 -ジョセイトジョセイトオンナノコトオンナノコノカゾク 👩‍👩‍👧‍👧️ 5 5 501 -20 -オトコノコ 👨‍👦️ 5 5 501 -20 -オヤコ 👨‍👦️ 5 5 501 -20 -カゾク 👨‍👦️ 5 5 501 -20 -ダンセイ 👨‍👦️ 5 5 501 -20 -ダンセイトオトコノコノカゾク 👨‍👦️ 5 5 501 -20 -オトコノコ 👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👦‍👦️ 5 5 501 -20 -カゾク 👨‍👦‍👦️ 5 5 501 -20 -ダンセイ 👨‍👦‍👦️ 5 5 501 -20 -ダンセイトオトコノコトオトコノコノカゾク 👨‍👦‍👦️ 5 5 501 -20 -オヤコ 👨‍👧️ 5 5 501 -20 -オンナノコ 👨‍👧️ 5 5 501 -20 -カゾク 👨‍👧️ 5 5 501 -20 -ダンセイ 👨‍👧️ 5 5 501 -20 -ダンセイトオンナノコノカゾク 👨‍👧️ 5 5 501 -20 -オトコノコ 👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👧‍👦️ 5 5 501 -20 -オンナノコ 👨‍👧‍👦️ 5 5 501 -20 -カゾク 👨‍👧‍👦️ 5 5 501 -20 -ダンセイ 👨‍👧‍👦️ 5 5 501 -20 -ダンセイトオンナノコトオトコノコノカゾク 👨‍👧‍👦️ 5 5 501 -20 -オヤコ 👨‍👧‍👧️ 5 5 501 -20 -オンナノコ 👨‍👧‍👧️ 5 5 501 -20 -カゾク 👨‍👧‍👧️ 5 5 501 -20 -ダンセイ 👨‍👧‍👧️ 5 5 501 -20 -ダンセイトオンナノコトオンナノコノカゾク 👨‍👧‍👧️ 5 5 501 -20 -オトコノコ 👩‍👦️ 5 5 501 -20 -オヤコ 👩‍👦️ 5 5 501 -20 -カゾク 👩‍👦️ 5 5 501 -20 -ジョセイ 👩‍👦️ 5 5 501 -20 -ジョセイトオトコノコノカゾク 👩‍👦️ 5 5 501 -20 -オトコノコ 👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👦‍👦️ 5 5 501 -20 -カゾク 👩‍👦‍👦️ 5 5 501 -20 -ジョセイ 👩‍👦‍👦️ 5 5 501 -20 -ジョセイトオトコノコトオトコノコノカゾク 👩‍👦‍👦️ 5 5 501 -20 -オヤコ 👩‍👧️ 5 5 501 -20 -オンナノコ 👩‍👧️ 5 5 501 -20 -カゾク 👩‍👧️ 5 5 501 -20 -ジョセイ 👩‍👧️ 5 5 501 -20 -ジョセイトオンナノコノカゾク 👩‍👧️ 5 5 501 -20 -オトコノコ 👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👧‍👦️ 5 5 501 -20 -オンナノコ 👩‍👧‍👦️ 5 5 501 -20 -カゾク 👩‍👧‍👦️ 5 5 501 -20 -ジョセイ 👩‍👧‍👦️ 5 5 501 -20 -ジョセイトオンナノコトオトコノコノカゾク 👩‍👧‍👦️ 5 5 501 -20 -オヤコ 👩‍👧‍👧️ 5 5 501 -20 -オンナノコ 👩‍👧‍👧️ 5 5 501 -20 -カゾク 👩‍👧‍👧️ 5 5 501 -20 -ジョセイ 👩‍👧‍👧️ 5 5 501 -20 -ジョセイトオンナノコトオンナノコノカゾク 👩‍👧‍👧️ 5 5 501 -20 -カオ 🗣️️ 5 5 501 -20 -シルエット 🗣️️ 5 5 501 -20 -ハナス 🗣️️ 5 5 501 -20 -ハナスヒトノシルエット 🗣️️ 5 5 501 -20 -1ニン 👤️ 5 5 501 -20 -カゲ 👤️ 5 5 501 -20 -ゲスト 👤️ 5 5 501 -20 -ゲストアカウント 👤️ 5 5 501 -20 -シルエット 👤️ 5 5 501 -20 -ジョウハンシン 👤️ 5 5 501 -20 -ヒトカゲ 👤️ 5 5 501 -20 -ヒトノシルエット 👤️ 5 5 501 -20 -ヒトリ 👤️ 5 5 501 -20 -2ニン 👥️ 5 5 501 -20 -2ニンノシルエット 👥️ 5 5 501 -20 -シルエット 👥️ 5 5 501 -20 -ジョウハンシン 👥️ 5 5 501 -20 -フタリ 👥️ 5 5 501 -20 -アイサツ 🫂️ 5 5 501 -20 -アリガトウ 🫂️ 5 5 501 -20 -オワカレ 🫂️ 5 5 501 -20 -コンニチハ 🫂️ 5 5 501 -20 -サヨウナラ 🫂️ 5 5 501 -20 -ハグスルヒト 🫂️ 5 5 501 -20 -オヤコ 👪️ 5 5 501 -20 -カゾク 👪️ 5 5 501 -20 -オトナフタリ 🧑‍🧑‍🧒️ 5 5 501 -20 -オトナフタリトコドモヒトリノカゾク 🧑‍🧑‍🧒️ 5 5 501 -20 -オヤコ 🧑‍🧑‍🧒️ 5 5 501 -20 -カゾク 🧑‍🧑‍🧒️ 5 5 501 -20 -コドモヒトリ 🧑‍🧑‍🧒️ 5 5 501 -20 -オトナフタリ 🧑‍🧑‍🧒‍🧒️ 5 5 501 -20 -オトナフタリトコドモフタリノカゾク 🧑‍🧑‍🧒‍🧒️ 5 5 501 -20 -オヤコ 🧑‍🧑‍🧒‍🧒️ 5 5 501 -20 -カゾク 🧑‍🧑‍🧒‍🧒️ 5 5 501 -20 -コドモフタリ 🧑‍🧑‍🧒‍🧒️ 5 5 501 -20 -オトナヒトリ 🧑‍🧒️ 5 5 501 -20 -オトナヒトリトコドモヒトリノカゾク 🧑‍🧒️ 5 5 501 -20 -オヤコ 🧑‍🧒️ 5 5 501 -20 -カゾク 🧑‍🧒️ 5 5 501 -20 -コドモヒトリ 🧑‍🧒️ 5 5 501 -20 -オトナヒトリ 🧑‍🧒‍🧒️ 5 5 501 -20 -オトナヒトリトコドモフタリノカゾク 🧑‍🧒‍🧒️ 5 5 501 -20 -オヤコ 🧑‍🧒‍🧒️ 5 5 501 -20 -カゾク 🧑‍🧒‍🧒️ 5 5 501 -20 -コドモフタリ 🧑‍🧒‍🧒️ 5 5 501 -20 -アシ 👣️ 5 5 501 -20 -アシアト 👣️ 5 5 501 -20 -アカゲ 🦰️ 5 5 501 -20 -アカゲノヒト 🦰️ 5 5 501 -20 -アカチャ 🦰️ 5 5 501 -20 -アフロ 🦱️ 5 5 501 -20 -カール 🦱️ 5 5 501 -20 -クセゲ 🦱️ 5 5 501 -20 -パンチパーマ 🦱️ 5 5 501 -20 -マキゲ 🦱️ 5 5 501 -20 -グレー 🦳️ 5 5 501 -20 -コウレイシャ 🦳️ 5 5 501 -20 -シラガ 🦳️ 5 5 501 -20 -ネンパイ 🦳️ 5 5 501 -20 -ロウジン 🦳️ 5 5 501 -20 -カガクリョウホウ 🦲️ 5 5 501 -20 -ケガナイ 🦲️ 5 5 501 -20 -スキンヘッド 🦲️ 5 5 501 -20 -ハゲアタマ 🦲️ 5 5 501 -20 -ボウズ 🦲️ 5 5 501 -20 -カオ 🐵️ 5 5 501 -20 -サル 🐵️ 5 5 501 -20 -サルノカオ 🐵️ 5 5 501 -20 -ドウブツ 🐵️ 5 5 501 -20 -サル 🐒️ 5 5 501 -20 -ドウブツ 🐒️ 5 5 501 -20 -カオ 🦍️ 5 5 501 -20 -ゴリラ 🦍️ 5 5 501 -20 -ドウブツ 🦍️ 5 5 501 -20 -オランウータン 🦧️ 5 5 501 -20 -サル 🦧️ 5 5 501 -20 -ドウブツ 🦧️ 5 5 501 -20 -モリノヒト 🦧️ 5 5 501 -20 -イヌ 🐶️ 5 5 501 -20 -イヌノカオ 🐶️ 5 5 501 -20 -カオ 🐶️ 5 5 501 -20 -ドウブツ 🐶️ 5 5 501 -20 -ペット 🐶️ 5 5 501 -20 -イヌ 🐕️ 5 5 501 -20 -ドウブツ 🐕️ 5 5 501 -20 -ペット 🐕️ 5 5 501 -20 -アクセシビリティ 🦮️ 5 5 501 -20 -イヌ 🦮️ 5 5 501 -20 -シカク 🦮️ 5 5 501 -20 -ショウガイ 🦮️ 5 5 501 -20 -ホジョ 🦮️ 5 5 501 -20 -ホジョケン 🦮️ 5 5 501 -20 -モウドウケン 🦮️ 5 5 501 -20 -アクセシビリティ 🐕‍🦺️ 5 5 501 -20 -イヌ 🐕‍🦺️ 5 5 501 -20 -カイジョケン 🐕‍🦺️ 5 5 501 -20 -サービス 🐕‍🦺️ 5 5 501 -20 -ホジョ 🐕‍🦺️ 5 5 501 -20 -イヌ 🐩️ 5 5 501 -20 -ドウブツ 🐩️ 5 5 501 -20 -プードル 🐩️ 5 5 501 -20 -ペット 🐩️ 5 5 501 -20 -オオカミ 🐺️ 5 5 501 -20 -オオカミノカオ 🐺️ 5 5 501 -20 -カオ 🐺️ 5 5 501 -20 -ドウブツ 🐺️ 5 5 501 -20 -カオ 🦊️ 5 5 501 -20 -キツネ 🦊️ 5 5 501 -20 -キツネノカオ 🦊️ 5 5 501 -20 -ドウブツ 🦊️ 5 5 501 -20 -アライグマ 🦝️ 5 5 501 -20 -コウキシン 🦝️ 5 5 501 -20 -ズルガシコイ 🦝️ 5 5 501 -20 -センサクズキ 🦝️ 5 5 501 -20 -ドウブツ 🦝️ 5 5 501 -20 -カオ 🐱️ 5 5 501 -20 -ドウブツ 🐱️ 5 5 501 -20 -ネコ 🐱️ 5 5 501 -20 -ネコノカsオ 🐱️ 5 5 501 -20 -ネコノカオ 🐱️ 5 5 501 -20 -ペット 🐱️ 5 5 501 -20 -ドウブツ 🐈️ 5 5 501 -20 -ネコ 🐈️ 5 5 501 -20 -ペット 🐈️ 5 5 501 -20 -クロ 🐈‍⬛️ 5 5 501 -20 -クロネコ 🐈‍⬛️ 5 5 501 -20 -ドウブツ 🐈‍⬛️ 5 5 501 -20 -ネコ 🐈‍⬛️ 5 5 501 -20 -フキツ 🐈‍⬛️ 5 5 501 -20 -カオ 🦁️ 5 5 501 -20 -ドウブツ 🦁️ 5 5 501 -20 -ライオン 🦁️ 5 5 501 -20 -ライオンノカオ 🦁️ 5 5 501 -20 -エト 🐯️ 5 5 501 -20 -カオ 🐯️ 5 5 501 -20 -シシ 🐯️ 5 5 501 -20 -ジュウニシ 🐯️ 5 5 501 -20 -トラ 🐯️ 5 5 501 -20 -トラノカオ 🐯️ 5 5 501 -20 -ドウブツ 🐯️ 5 5 501 -20 -トラ 🐅️ 5 5 501 -20 -ドウブツ 🐅️ 5 5 501 -20 -ドウブツ 🐆️ 5 5 501 -20 -ヒョウ 🐆️ 5 5 501 -20 -ウマ 🐴️ 5 5 501 -20 -ウマノカオ 🐴️ 5 5 501 -20 -カオ 🐴️ 5 5 501 -20 -ドウブツ 🐴️ 5 5 501 -20 -エダツノ 🫎️ 5 5 501 -20 -シカ 🫎️ 5 5 501 -20 -シカノカオ 🫎️ 5 5 501 -20 -ドウブツ 🫎️ 5 5 501 -20 -ヘラジカ 🫎️ 5 5 501 -20 -ヘラジカノカオ 🫎️ 5 5 501 -20 -ホニュウルイ 🫎️ 5 5 501 -20 -ウマ 🫏️ 5 5 501 -20 -ドウブツ 🫏️ 5 5 501 -20 -ホニュウルイ 🫏️ 5 5 501 -20 -ラバ 🫏️ 5 5 501 -20 -ロバ 🫏️ 5 5 501 -20 -ウマ 🐎️ 5 5 501 -20 -ケイバ 🐎️ 5 5 501 -20 -ジョウバ 🐎️ 5 5 501 -20 -ドウブツ 🐎️ 5 5 501 -20 -イッカクジュウ 🦄️ 5 5 501 -20 -カオ 🦄️ 5 5 501 -20 -ドウブツ 🦄️ 5 5 501 -20 -ユニコーン 🦄️ 5 5 501 -20 -ユニコーンノカオ 🦄️ 5 5 501 -20 -シマウマ 🦓️ 5 5 501 -20 -シマシマ 🦓️ 5 5 501 -20 -ドウブツ 🦓️ 5 5 501 -20 -カオ 🦌️ 5 5 501 -20 -シカ 🦌️ 5 5 501 -20 -ドウブツ 🦌️ 5 5 501 -20 -ウシ 🦬️ 5 5 501 -20 -ドウブツ 🦬️ 5 5 501 -20 -バイソン 🦬️ 5 5 501 -20 -バッファロー 🦬️ 5 5 501 -20 -ムレ 🦬️ 5 5 501 -20 -ヤギュウ 🦬️ 5 5 501 -20 -ウシ 🐮️ 5 5 501 -20 -ウシノカオ 🐮️ 5 5 501 -20 -エト 🐮️ 5 5 501 -20 -カオ 🐮️ 5 5 501 -20 -ジュウニシ 🐮️ 5 5 501 -20 -ドウブツ 🐮️ 5 5 501 -20 -ウシ 🐂️ 5 5 501 -20 -オウシ 🐂️ 5 5 501 -20 -セイザ 🐂️ 5 5 501 -20 -ドウブツ 🐂️ 5 5 501 -20 -ウシ 🐃️ 5 5 501 -20 -スイギュウ 🐃️ 5 5 501 -20 -ドウブツ 🐃️ 5 5 501 -20 -バッファロー 🐃️ 5 5 501 -20 -ウシ 🐄️ 5 5 501 -20 -ドウブツ 🐄️ 5 5 501 -20 -メウシ 🐄️ 5 5 501 -20 -カオ 🐷️ 5 5 501 -20 -ドウブツ 🐷️ 5 5 501 -20 -ブタ 🐷️ 5 5 501 -20 -ブタノカオ 🐷️ 5 5 501 -20 -ドウブツ 🐖️ 5 5 501 -20 -ブタ 🐖️ 5 5 501 -20 -イノシシ 🐗️ 5 5 501 -20 -カオ 🐗️ 5 5 501 -20 -ドウブツ 🐗️ 5 5 501 -20 -ノブタ 🐗️ 5 5 501 -20 -カオ 🐽️ 5 5 501 -20 -ハナ 🐽️ 5 5 501 -20 -ブタ 🐽️ 5 5 501 -20 -ブタハナ 🐽️ 5 5 501 -20 -ブタバナ 🐽️ 5 5 501 -20 -オヒツジ 🐏️ 5 5 501 -20 -セイザ 🐏️ 5 5 501 -20 -ドウブツ 🐏️ 5 5 501 -20 -ヒツジ 🐏️ 5 5 501 -20 -ドウブツ 🐑️ 5 5 501 -20 -ヒツジ 🐑️ 5 5 501 -20 -セイザ 🐐️ 5 5 501 -20 -ドウブツ 🐐️ 5 5 501 -20 -ヤギ 🐐️ 5 5 501 -20 -ドウブツ 🐪️ 5 5 501 -20 -ラクダ 🐪️ 5 5 501 -20 -ドウブツ 🐫️ 5 5 501 -20 -フタコブ 🐫️ 5 5 501 -20 -フタコブラクダ 🐫️ 5 5 501 -20 -ラクダ 🐫️ 5 5 501 -20 -アルパカ 🦙️ 5 5 501 -20 -グアナコ 🦙️ 5 5 501 -20 -ドウブツ 🦙️ 5 5 501 -20 -ビクーナ 🦙️ 5 5 501 -20 -ヨウモウ 🦙️ 5 5 501 -20 -ラマ 🦙️ 5 5 501 -20 -キリン 🦒️ 5 5 501 -20 -ドウブツ 🦒️ 5 5 501 -20 -ゾウ 🐘️ 5 5 501 -20 -ドウブツ 🐘️ 5 5 501 -20 -キバ 🦣️ 5 5 501 -20 -キョダイ 🦣️ 5 5 501 -20 -ゼツメツ 🦣️ 5 5 501 -20 -ドウブツ 🦣️ 5 5 501 -20 -マンモス 🦣️ 5 5 501 -20 -カオ 🦏️ 5 5 501 -20 -サイ 🦏️ 5 5 501 -20 -ドウブツ 🦏️ 5 5 501 -20 -カバ 🦛️ 5 5 501 -20 -ドウブツ 🦛️ 5 5 501 -20 -エト 🐭️ 5 5 501 -20 -カオ 🐭️ 5 5 501 -20 -ジュウニシ 🐭️ 5 5 501 -20 -ドウブツ 🐭️ 5 5 501 -20 -ネ 🐭️ 5 5 501 -20 -ネズミ 🐭️ 5 5 501 -20 -ネズミノカオ 🐭️ 5 5 501 -20 -ドウブツ 🐁️ 5 5 501 -20 -ネズミ 🐁️ 5 5 501 -20 -ハツカネズミ 🐁️ 5 5 501 -20 -マウス 🐁️ 5 5 501 -20 -ドウブツ 🐀️ 5 5 501 -20 -ネズミ 🐀️ 5 5 501 -20 -ラット 🐀️ 5 5 501 -20 -カオ 🐹️ 5 5 501 -20 -ドウブツ 🐹️ 5 5 501 -20 -ネズミ 🐹️ 5 5 501 -20 -ハムスター 🐹️ 5 5 501 -20 -ハムスターノカオ 🐹️ 5 5 501 -20 -ペット 🐹️ 5 5 501 -20 -ウ 🐰️ 5 5 501 -20 -ウサギ 🐰️ 5 5 501 -20 -ウサギノカオ 🐰️ 5 5 501 -20 -エト 🐰️ 5 5 501 -20 -カオ 🐰️ 5 5 501 -20 -ジュウニシ 🐰️ 5 5 501 -20 -ドウブツ 🐰️ 5 5 501 -20 -ペット 🐰️ 5 5 501 -20 -ウサギ 🐇️ 5 5 501 -20 -ドウブツ 🐇️ 5 5 501 -20 -ペット 🐇️ 5 5 501 -20 -ドウブツ 🐿️️ 5 5 501 -20 -リス 🐿️️ 5 5 501 -20 -ダムヅクリ 🦫️ 5 5 501 -20 -ドウブツ 🦫️ 5 5 501 -20 -ビーバー 🦫️ 5 5 501 -20 -トゲ 🦔️ 5 5 501 -20 -ドウブツ 🦔️ 5 5 501 -20 -ハリネズミ 🦔️ 5 5 501 -20 -キュウケツキ 🦇️ 5 5 501 -20 -コウモリ 🦇️ 5 5 501 -20 -ドウブツ 🦇️ 5 5 501 -20 -バンパイア 🦇️ 5 5 501 -20 -カオ 🐻️ 5 5 501 -20 -クマ 🐻️ 5 5 501 -20 -クマノカオ 🐻️ 5 5 501 -20 -ドウブツ 🐻️ 5 5 501 -20 -クマ 🐻‍❄️️ 5 5 501 -20 -シロ 🐻‍❄️️ 5 5 501 -20 -シロクマ 🐻‍❄️️ 5 5 501 -20 -ドウブツ 🐻‍❄️️ 5 5 501 -20 -ホッキョク 🐻‍❄️️ 5 5 501 -20 -ホッキョクグマ 🐻‍❄️️ 5 5 501 -20 -カオ 🐨️ 5 5 501 -20 -コアラ 🐨️ 5 5 501 -20 -ドウブツ 🐨️ 5 5 501 -20 -カオ 🐼️ 5 5 501 -20 -ドウブツ 🐼️ 5 5 501 -20 -パンダ 🐼️ 5 5 501 -20 -パンダノカオ 🐼️ 5 5 501 -20 -ドウブツ 🦥️ 5 5 501 -20 -ナマケモノ 🦥️ 5 5 501 -20 -ノンビリ 🦥️ 5 5 501 -20 -モノグサ 🦥️ 5 5 501 -20 -アソビスキ 🦦️ 5 5 501 -20 -カワウソ 🦦️ 5 5 501 -20 -サカナヲタベル 🦦️ 5 5 501 -20 -ドウブツ 🦦️ 5 5 501 -20 -ラッコ 🦦️ 5 5 501 -20 -アクシュウ 🦨️ 5 5 501 -20 -スカンク 🦨️ 5 5 501 -20 -ドウブツ 🦨️ 5 5 501 -20 -オーストラリア 🦘️ 5 5 501 -20 -カンガルー 🦘️ 5 5 501 -20 -ジャンプ 🦘️ 5 5 501 -20 -ジョーイ 🦘️ 5 5 501 -20 -ユウタイルイ 🦘️ 5 5 501 -20 -アナグマ 🦡️ 5 5 501 -20 -ドウブツ 🦡️ 5 5 501 -20 -ミツアナグマ 🦡️ 5 5 501 -20 -アシアト 🐾️ 5 5 501 -20 -イヌ 🐾️ 5 5 501 -20 -ドウブツ 🐾️ 5 5 501 -20 -ニクキュウ 🐾️ 5 5 501 -20 -ネコ 🐾️ 5 5 501 -20 -シチメンチョウ 🦃️ 5 5 501 -20 -ターキー 🦃️ 5 5 501 -20 -トリ 🦃️ 5 5 501 -20 -ドウブツ 🦃️ 5 5 501 -20 -カオ 🐔️ 5 5 501 -20 -トリ 🐔️ 5 5 501 -20 -ドウブツ 🐔️ 5 5 501 -20 -ニワトリ 🐔️ 5 5 501 -20 -オンドリ 🐓️ 5 5 501 -20 -トリ 🐓️ 5 5 501 -20 -ドウブツ 🐓️ 5 5 501 -20 -カオ 🐣️ 5 5 501 -20 -タマゴ 🐣️ 5 5 501 -20 -タマゴカラカエッタヒヨコ 🐣️ 5 5 501 -20 -トリ 🐣️ 5 5 501 -20 -ドウブツ 🐣️ 5 5 501 -20 -ヒナ 🐣️ 5 5 501 -20 -ヒナドリ 🐣️ 5 5 501 -20 -ヒヨコ 🐣️ 5 5 501 -20 -フカ 🐣️ 5 5 501 -20 -カオ 🐤️ 5 5 501 -20 -トリ 🐤️ 5 5 501 -20 -ドウブツ 🐤️ 5 5 501 -20 -ヒナ 🐤️ 5 5 501 -20 -ヒヨコ 🐤️ 5 5 501 -20 -ヨコヲムイテイルヒヨコ 🐤️ 5 5 501 -20 -トリ 🐥️ 5 5 501 -20 -ドウブツ 🐥️ 5 5 501 -20 -ヒナ 🐥️ 5 5 501 -20 -ヒヨコ 🐥️ 5 5 501 -20 -マエヲムイテイルヒヨコ 🐥️ 5 5 501 -20 -カオ 🐦️ 5 5 501 -20 -トリ 🐦️ 5 5 501 -20 -ドウブツ 🐦️ 5 5 501 -20 -トリ 🐧️ 5 5 501 -20 -ドウブツ 🐧️ 5 5 501 -20 -ペンギン 🐧️ 5 5 501 -20 -トリ 🕊️️ 5 5 501 -20 -ドウブツ 🕊️️ 5 5 501 -20 -ハト 🕊️️ 5 5 501 -20 -ヘイワ 🕊️️ 5 5 501 -20 -トリ 🦅️ 5 5 501 -20 -ドウブツ 🦅️ 5 5 501 -20 -ワシ 🦅️ 5 5 501 -20 -カモ 🦆️ 5 5 501 -20 -トリ 🦆️ 5 5 501 -20 -ドウブツ 🦆️ 5 5 501 -20 -トリ 🦢️ 5 5 501 -20 -ハクチョウ 🦢️ 5 5 501 -20 -ヒナ 🦢️ 5 5 501 -20 -ミニクイアヒルノコ 🦢️ 5 5 501 -20 -トリ 🦉️ 5 5 501 -20 -ドウブツ 🦉️ 5 5 501 -20 -フクロウ 🦉️ 5 5 501 -20 -ゼツメツ 🦤️ 5 5 501 -20 -トベナイトリ 🦤️ 5 5 501 -20 -トリ 🦤️ 5 5 501 -20 -ドードー 🦤️ 5 5 501 -20 -モーリシャストウ 🦤️ 5 5 501 -20 -ウモウ 🪶️ 5 5 501 -20 -カルイ 🪶️ 5 5 501 -20 -トブ 🪶️ 5 5 501 -20 -トリ 🪶️ 5 5 501 -20 -ハネ 🪶️ 5 5 501 -20 -トリ 🦩️ 5 5 501 -20 -ドウブツ 🦩️ 5 5 501 -20 -ネッタイ 🦩️ 5 5 501 -20 -ピンクイロ 🦩️ 5 5 501 -20 -フラミンゴ 🦩️ 5 5 501 -20 -クジャク 🦚️ 5 5 501 -20 -トリ 🦚️ 5 5 501 -20 -ハデ 🦚️ 5 5 501 -20 -ピーコック 🦚️ 5 5 501 -20 -オウム 🦜️ 5 5 501 -20 -カイゾク 🦜️ 5 5 501 -20 -シャベル 🦜️ 5 5 501 -20 -トリ 🦜️ 5 5 501 -20 -アキ 🪽️ 5 5 501 -20 -シンワ 🪽️ 5 5 501 -20 -ツバサ 🪽️ 5 5 501 -20 -テンシ 🪽️ 5 5 501 -20 -トブ 🪽️ 5 5 501 -20 -トリ 🪽️ 5 5 501 -20 -トリノハネ 🪽️ 5 5 501 -20 -ハネ 🪽️ 5 5 501 -20 -カラス 🐦‍⬛️ 5 5 501 -20 -クロ 🐦‍⬛️ 5 5 501 -20 -クロイトリ 🐦‍⬛️ 5 5 501 -20 -クロトリ 🐦‍⬛️ 5 5 501 -20 -トリ 🐦‍⬛️ 5 5 501 -20 -アヒル 🪿️ 5 5 501 -20 -ガチョウ 🪿️ 5 5 501 -20 -ガーガー 🪿️ 5 5 501 -20 -トリ 🪿️ 5 5 501 -20 -マヌケ 🪿️ 5 5 501 -20 -シンワ 🐦‍🔥️ 5 5 501 -20 -ヒノトリ 🐦‍🔥️ 5 5 501 -20 -フェニックス 🐦‍🔥️ 5 5 501 -20 -フシチョウ 🐦‍🔥️ 5 5 501 -20 -カエル 🐸️ 5 5 501 -20 -カエルノカオ 🐸️ 5 5 501 -20 -カオ 🐸️ 5 5 501 -20 -ドウブツ 🐸️ 5 5 501 -20 -ドウブツ 🐊️ 5 5 501 -20 -ハチュウルイ 🐊️ 5 5 501 -20 -ワニ 🐊️ 5 5 501 -20 -カメ 🐢️ 5 5 501 -20 -ドウブツ 🐢️ 5 5 501 -20 -ハチュウルイ 🐢️ 5 5 501 -20 -トカゲ 🦎️ 5 5 501 -20 -ドウブツ 🦎️ 5 5 501 -20 -ハチュウルイ 🦎️ 5 5 501 -20 -セイザ 🐍️ 5 5 501 -20 -ドウブツ 🐍️ 5 5 501 -20 -ドク 🐍️ 5 5 501 -20 -ハチュウルイ 🐍️ 5 5 501 -20 -ヘビ 🐍️ 5 5 501 -20 -エト 🐲️ 5 5 501 -20 -カオ 🐲️ 5 5 501 -20 -ジュウニシ 🐲️ 5 5 501 -20 -タツ 🐲️ 5 5 501 -20 -ドウブツ 🐲️ 5 5 501 -20 -ドラゴン 🐲️ 5 5 501 -20 -ドラゴンノカオ 🐲️ 5 5 501 -20 -リュウ 🐲️ 5 5 501 -20 -ドウブツ 🐉️ 5 5 501 -20 -ドラゴン 🐉️ 5 5 501 -20 -リュウ 🐉️ 5 5 501 -20 -キョウリュウ 🦕️ 5 5 501 -20 -ソウショクキョウリュウ 🦕️ 5 5 501 -20 -ディプロドクス 🦕️ 5 5 501 -20 -ブラキオサウルス 🦕️ 5 5 501 -20 -リュウキャクルイ 🦕️ 5 5 501 -20 -キョウリュウ 🦖️ 5 5 501 -20 -ティラノサウルス 🦖️ 5 5 501 -20 -クジラ 🐳️ 5 5 501 -20 -シオ 🐳️ 5 5 501 -20 -シオフキ 🐳️ 5 5 501 -20 -シオフキクジラ 🐳️ 5 5 501 -20 -ドウブツ 🐳️ 5 5 501 -20 -クジラ 🐋️ 5 5 501 -20 -ドウブツ 🐋️ 5 5 501 -20 -イルカ 🐬️ 5 5 501 -20 -ドウブツ 🐬️ 5 5 501 -20 -アザラシ 🦭️ 5 5 501 -20 -アシカ 🦭️ 5 5 501 -20 -カイジュウ 🦭️ 5 5 501 -20 -トド 🦭️ 5 5 501 -20 -ドウブツ 🦭️ 5 5 501 -20 -サカナ 🐟️ 5 5 501 -20 -セイザ 🐟️ 5 5 501 -20 -ドウブツ 🐟️ 5 5 501 -20 -サカナ 🐠️ 5 5 501 -20 -ドウブツ 🐠️ 5 5 501 -20 -ネッタイギョ 🐠️ 5 5 501 -20 -サカナ 🐡️ 5 5 501 -20 -ドウブツ 🐡️ 5 5 501 -20 -フグ 🐡️ 5 5 501 -20 -サカナ 🦈️ 5 5 501 -20 -サメ 🦈️ 5 5 501 -20 -ドウブツ 🦈️ 5 5 501 -20 -タコ 🐙️ 5 5 501 -20 -ドウブツ 🐙️ 5 5 501 -20 -カイ 🐚️ 5 5 501 -20 -ドウブツ 🐚️ 5 5 501 -20 -マキガイ 🐚️ 5 5 501 -20 -ウミ 🪸️ 5 5 501 -20 -サンゴ 🪸️ 5 5 501 -20 -サンゴショウ 🪸️ 5 5 501 -20 -ウミ 🪼️ 5 5 501 -20 -クラゲ 🪼️ 5 5 501 -20 -サス 🪼️ 5 5 501 -20 -ショクシュ 🪼️ 5 5 501 -20 -ドク 🪼️ 5 5 501 -20 -ハリ 🪼️ 5 5 501 -20 -ムセキツイドウブツ 🪼️ 5 5 501 -20 -カタツムリ 🐌️ 5 5 501 -20 -デンデンムシ 🐌️ 5 5 501 -20 -ムシ 🐌️ 5 5 501 -20 -チョウ 🦋️ 5 5 501 -20 -ムシ 🦋️ 5 5 501 -20 -イモムシ 🐛️ 5 5 501 -20 -ケムシ 🐛️ 5 5 501 -20 -ゲジゲジ 🐛️ 5 5 501 -20 -ムシ 🐛️ 5 5 501 -20 -アリ 🐜️ 5 5 501 -20 -ムシ 🐜️ 5 5 501 -20 -ハチ 🐝️ 5 5 501 -20 -ミツバチ 🐝️ 5 5 501 -20 -ムシ 🐝️ 5 5 501 -20 -カブトムシ 🪲️ 5 5 501 -20 -コンチュウ 🪲️ 5 5 501 -20 -ツノ 🪲️ 5 5 501 -20 -ムシ 🪲️ 5 5 501 -20 -テントウムシ 🐞️ 5 5 501 -20 -ムシ 🐞️ 5 5 501 -20 -コオロギ 🦗️ 5 5 501 -20 -バッタ 🦗️ 5 5 501 -20 -ムシ 🦗️ 5 5 501 -20 -ガイチュウ 🪳️ 5 5 501 -20 -ゴキブリ 🪳️ 5 5 501 -20 -ムシ 🪳️ 5 5 501 -20 -クモ 🕷️️ 5 5 501 -20 -スパイダー 🕷️️ 5 5 501 -20 -ムシ 🕷️️ 5 5 501 -20 -クモ 🕸️️ 5 5 501 -20 -クモノス 🕸️️ 5 5 501 -20 -サソリ 🦂️ 5 5 501 -20 -セイザ 🦂️ 5 5 501 -20 -ムシ 🦂️ 5 5 501 -20 -ウイルス 🦟️ 5 5 501 -20 -カ 🦟️ 5 5 501 -20 -ネツ 🦟️ 5 5 501 -20 -ビョウキ 🦟️ 5 5 501 -20 -マラリア 🦟️ 5 5 501 -20 -ムシ 🦟️ 5 5 501 -20 -ガイチュウ 🪰️ 5 5 501 -20 -ハエ 🪰️ 5 5 501 -20 -ビョウゲンキン 🪰️ 5 5 501 -20 -フケツ 🪰️ 5 5 501 -20 -ムシ 🪰️ 5 5 501 -20 -キセイチュウ 🪱️ 5 5 501 -20 -ミミズ 🪱️ 5 5 501 -20 -ムシ 🪱️ 5 5 501 -20 -アメーバ 🦠️ 5 5 501 -20 -ウイルス 🦠️ 5 5 501 -20 -サイキン 🦠️ 5 5 501 -20 -バクテリア 🦠️ 5 5 501 -20 -ビセイブツ 🦠️ 5 5 501 -20 -ハナ 💐️ 5 5 501 -20 -ハナタバ 💐️ 5 5 501 -20 -ブーケ 💐️ 5 5 501 -20 -サクラ 🌸️ 5 5 501 -20 -ハナ 🌸️ 5 5 501 -20 -タイヘンヨクデキマシタ 💮️ 5 5 501 -20 -ハナ 💮️ 5 5 501 -20 -ハナマル 💮️ 5 5 501 -20 -ヨクデキマシタ 💮️ 5 5 501 -20 -セイジョウ 🪷️ 5 5 501 -20 -ハス 🪷️ 5 5 501 -20 -ハスノハナ 🪷️ 5 5 501 -20 -ハナ 🪷️ 5 5 501 -20 -ヒンドゥーキョウ 🪷️ 5 5 501 -20 -ブッキョウ 🪷️ 5 5 501 -20 -ロータス 🪷️ 5 5 501 -20 -ショクブツ 🏵️️ 5 5 501 -20 -ハナ 🏵️️ 5 5 501 -20 -ハナカザリ 🏵️️ 5 5 501 -20 -ハナ 🌹️ 5 5 501 -20 -バラ 🌹️ 5 5 501 -20 -シオレタ 🥀️ 5 5 501 -20 -シオレタハナ 🥀️ 5 5 501 -20 -ハナ 🥀️ 5 5 501 -20 -ハイビスカス 🌺️ 5 5 501 -20 -ハナ 🌺️ 5 5 501 -20 -ハナ 🌻️ 5 5 501 -20 -ヒマワリ 🌻️ 5 5 501 -20 -カイカ 🌼️ 5 5 501 -20 -サイタハナ 🌼️ 5 5 501 -20 -ハナ 🌼️ 5 5 501 -20 -チューリップ 🌷️ 5 5 501 -20 -ハナ 🌷️ 5 5 501 -20 -アオムラサキ 🪻️ 5 5 501 -20 -ハナ 🪻️ 5 5 501 -20 -ヒヤシンス 🪻️ 5 5 501 -20 -ラベンダー 🪻️ 5 5 501 -20 -シンメ 🌱️ 5 5 501 -20 -フタバ 🌱️ 5 5 501 -20 -メ 🌱️ 5 5 501 -20 -ウエキバチ 🪴️ 5 5 501 -20 -ショクブツ 🪴️ 5 5 501 -20 -ナエ 🪴️ 5 5 501 -20 -ハチウエ 🪴️ 5 5 501 -20 -ベランダ 🪴️ 5 5 501 -20 -ミズヤリ 🪴️ 5 5 501 -20 -ミドリ 🪴️ 5 5 501 -20 -キ 🌲️ 5 5 501 -20 -ジョウリョクジュ 🌲️ 5 5 501 -20 -キ 🌳️ 5 5 501 -20 -ラクヨウジュ 🌳️ 5 5 501 -20 -キ 🌴️ 5 5 501 -20 -ヤシ 🌴️ 5 5 501 -20 -ヤシノキ 🌴️ 5 5 501 -20 -サボテン 🌵️ 5 5 501 -20 -ショクブツ 🌵️ 5 5 501 -20 -イナホ 🌾️ 5 5 501 -20 -イネ 🌾️ 5 5 501 -20 -クサ 🌾️ 5 5 501 -20 -ススキ 🌾️ 5 5 501 -20 -クサ 🌿️ 5 5 501 -20 -ハ 🌿️ 5 5 501 -20 -ハッパ 🌿️ 5 5 501 -20 -ハーブ 🌿️ 5 5 501 -20 -ヤクソウ 🌿️ 5 5 501 -20 -クサ ☘️️ 5 5 501 -20 -クローバー ☘️️ 5 5 501 -20 -ハ ☘️️ 5 5 501 -20 -4 🍀️ 5 5 501 -20 -クサ 🍀️ 5 5 501 -20 -クローバー 🍀️ 5 5 501 -20 -ハ 🍀️ 5 5 501 -20 -ヨツバ 🍀️ 5 5 501 -20 -ヨツバノクローバー 🍀️ 5 5 501 -20 -カエデ 🍁️ 5 5 501 -20 -コウヨウ 🍁️ 5 5 501 -20 -モミジ 🍁️ 5 5 501 -20 -オチバ 🍂️ 5 5 501 -20 -カレハ 🍂️ 5 5 501 -20 -コノハ 🍂️ 5 5 501 -20 -オチバ 🍃️ 5 5 501 -20 -カゼ 🍃️ 5 5 501 -20 -カゼニユレルハ 🍃️ 5 5 501 -20 -コノハ 🍃️ 5 5 501 -20 -ビュウビュウ 🍃️ 5 5 501 -20 -エイソウ 🪹️ 5 5 501 -20 -カラッポノス 🪹️ 5 5 501 -20 -ス 🪹️ 5 5 501 -20 -スヅクリ 🪹️ 5 5 501 -20 -トリノス 🪹️ 5 5 501 -20 -エイソウ 🪺️ 5 5 501 -20 -ス 🪺️ 5 5 501 -20 -スヅクリ 🪺️ 5 5 501 -20 -タマゴ 🪺️ 5 5 501 -20 -トリノス 🪺️ 5 5 501 -20 -トリノタマゴトス 🪺️ 5 5 501 -20 -キノコ 🍄️ 5 5 501 -20 -ドク 🍄️ 5 5 501 -20 -マッシュルーム 🍄️ 5 5 501 -20 -ヤサイ 🍄️ 5 5 501 -20 -クダモノ 🍇️ 5 5 501 -20 -グレープ 🍇️ 5 5 501 -20 -ブドウ 🍇️ 5 5 501 -20 -クダモノ 🍈️ 5 5 501 -20 -メロン 🍈️ 5 5 501 -20 -ヤサイ 🍈️ 5 5 501 -20 -クダモノ 🍉️ 5 5 501 -20 -スイカ 🍉️ 5 5 501 -20 -ヤサイ 🍉️ 5 5 501 -20 -オレンジ 🍊️ 5 5 501 -20 -クダモノ 🍊️ 5 5 501 -20 -ミカン 🍊️ 5 5 501 -20 -クダモノ 🍋️ 5 5 501 -20 -レモン 🍋️ 5 5 501 -20 -カンキツルイ 🍋‍🟩️ 5 5 501 -20 -クダモノ 🍋‍🟩️ 5 5 501 -20 -トロピカル 🍋‍🟩️ 5 5 501 -20 -ライム 🍋‍🟩️ 5 5 501 -20 -クダモノ 🍌️ 5 5 501 -20 -バナナ 🍌️ 5 5 501 -20 -クダモノ 🍍️ 5 5 501 -20 -トロピカル 🍍️ 5 5 501 -20 -パイナップル 🍍️ 5 5 501 -20 -パイン 🍍️ 5 5 501 -20 -クダモノ 🥭️ 5 5 501 -20 -トロピカル 🥭️ 5 5 501 -20 -マンゴー 🥭️ 5 5 501 -20 -アカリンゴ 🍎️ 5 5 501 -20 -アップル 🍎️ 5 5 501 -20 -クダモノ 🍎️ 5 5 501 -20 -リンゴ 🍎️ 5 5 501 -20 -アオリンゴ 🍏️ 5 5 501 -20 -アップル 🍏️ 5 5 501 -20 -クダモノ 🍏️ 5 5 501 -20 -リンゴ 🍏️ 5 5 501 -20 -クダモノ 🍐️ 5 5 501 -20 -セイヨウナシ 🍐️ 5 5 501 -20 -ナシ 🍐️ 5 5 501 -20 -ヨウナシ 🍐️ 5 5 501 -20 -クダモノ 🍑️ 5 5 501 -20 -ピーチ 🍑️ 5 5 501 -20 -モモ 🍑️ 5 5 501 -20 -クダモノ 🍒️ 5 5 501 -20 -サクランボ 🍒️ 5 5 501 -20 -チェリー 🍒️ 5 5 501 -20 -イチゴ 🍓️ 5 5 501 -20 -クダモノ 🍓️ 5 5 501 -20 -ストロベリー 🍓️ 5 5 501 -20 -クダモノ 🫐️ 5 5 501 -20 -ビルベリー 🫐️ 5 5 501 -20 -ブルーベリー 🫐️ 5 5 501 -20 -ベリー 🫐️ 5 5 501 -20 -キウイ 🥝️ 5 5 501 -20 -キウイフルーツ 🥝️ 5 5 501 -20 -クダモノ 🥝️ 5 5 501 -20 -クダモノ 🍅️ 5 5 501 -20 -トマト 🍅️ 5 5 501 -20 -ヤサイ 🍅️ 5 5 501 -20 -オリーブ 🫒️ 5 5 501 -20 -カジツ 🫒️ 5 5 501 -20 -ジツ 🫒️ 5 5 501 -20 -ミ 🫒️ 5 5 501 -20 -クダモノ 🥥️ 5 5 501 -20 -ココナッツ 🥥️ 5 5 501 -20 -ココナツ 🥥️ 5 5 501 -20 -ヤシノミ 🥥️ 5 5 501 -20 -アボカド 🥑️ 5 5 501 -20 -アボガド 🥑️ 5 5 501 -20 -クダモノ 🥑️ 5 5 501 -20 -ヤサイ 🥑️ 5 5 501 -20 -ナス 🍆️ 5 5 501 -20 -ヤサイ 🍆️ 5 5 501 -20 -イモ 🥔️ 5 5 501 -20 -ジャガイモ 🥔️ 5 5 501 -20 -ポテト 🥔️ 5 5 501 -20 -ヤサイ 🥔️ 5 5 501 -20 -ニンジン 🥕️ 5 5 501 -20 -ヤサイ 🥕️ 5 5 501 -20 -コーン 🌽️ 5 5 501 -20 -トウモロコシ 🌽️ 5 5 501 -20 -ヤサイ 🌽️ 5 5 501 -20 -カライ 🌶️️ 5 5 501 -20 -コウシンリョウ 🌶️️ 5 5 501 -20 -トウガラシ 🌶️️ 5 5 501 -20 -ヤサイ 🌶️️ 5 5 501 -20 -アカピーマン 🫑️ 5 5 501 -20 -トウガラシ 🫑️ 5 5 501 -20 -パプリカ 🫑️ 5 5 501 -20 -ピーマン 🫑️ 5 5 501 -20 -ヤサイ 🫑️ 5 5 501 -20 -キュウリ 🥒️ 5 5 501 -20 -ツケモノ 🥒️ 5 5 501 -20 -ピクルス 🥒️ 5 5 501 -20 -ヤサイ 🥒️ 5 5 501 -20 -キャベツ 🥬️ 5 5 501 -20 -ケール 🥬️ 5 5 501 -20 -チンゲンサイ 🥬️ 5 5 501 -20 -ハヤサイ 🥬️ 5 5 501 -20 -レタス 🥬️ 5 5 501 -20 -ブロッコリー 🥦️ 5 5 501 -20 -ヤサイ 🥦️ 5 5 501 -20 -カオリ 🧄️ 5 5 501 -20 -ニオイ 🧄️ 5 5 501 -20 -ニンニク 🧄️ 5 5 501 -20 -ヤクミ 🧄️ 5 5 501 -20 -ヤサイ 🧄️ 5 5 501 -20 -タマネギ 🧅️ 5 5 501 -20 -ネギ 🧅️ 5 5 501 -20 -ヤクミ 🧅️ 5 5 501 -20 -ヤサイ 🧅️ 5 5 501 -20 -ナッツ 🥜️ 5 5 501 -20 -ピーナッツ 🥜️ 5 5 501 -20 -ヤサイ 🥜️ 5 5 501 -20 -ラッカセイ 🥜️ 5 5 501 -20 -アズキ 🫘️ 5 5 501 -20 -キントキマメ 🫘️ 5 5 501 -20 -ビーンズ 🫘️ 5 5 501 -20 -マメ 🫘️ 5 5 501 -20 -レッドキドニー 🫘️ 5 5 501 -20 -クリ 🌰️ 5 5 501 -20 -ヤサイ 🌰️ 5 5 501 -20 -ショウガ 🫚️ 5 5 501 -20 -ジンジャー 🫚️ 5 5 501 -20 -スパイス 🫚️ 5 5 501 -20 -ヤクミ 🫚️ 5 5 501 -20 -エダマメ 🫛️ 5 5 501 -20 -エンドウマメ 🫛️ 5 5 501 -20 -グリーンピース 🫛️ 5 5 501 -20 -サヤ 🫛️ 5 5 501 -20 -マメ 🫛️ 5 5 501 -20 -ヤサイ 🫛️ 5 5 501 -20 -キノコ 🍄‍🟫️ 5 5 501 -20 -シイタケ 🍄‍🟫️ 5 5 501 -20 -チャイロ 🍄‍🟫️ 5 5 501 -20 -マッシュルーム 🍄‍🟫️ 5 5 501 -20 -ショクパン 🍞️ 5 5 501 -20 -パン 🍞️ 5 5 501 -20 -ベーカリー 🍞️ 5 5 501 -20 -クロワッサン 🥐️ 5 5 501 -20 -パン 🥐️ 5 5 501 -20 -フランス 🥐️ 5 5 501 -20 -ベーカリー 🥐️ 5 5 501 -20 -バゲット 🥖️ 5 5 501 -20 -パン 🥖️ 5 5 501 -20 -フランスパン 🥖️ 5 5 501 -20 -ベーカリー 🥖️ 5 5 501 -20 -アレパ 🫓️ 5 5 501 -20 -ナン 🫓️ 5 5 501 -20 -パン 🫓️ 5 5 501 -20 -ピタパン 🫓️ 5 5 501 -20 -フラットブレッド 🫓️ 5 5 501 -20 -ラバシ 🫓️ 5 5 501 -20 -ネジリ 🥨️ 5 5 501 -20 -パン 🥨️ 5 5 501 -20 -プレッツェル 🥨️ 5 5 501 -20 -クリームチーズ 🥯️ 5 5 501 -20 -パンヤ 🥯️ 5 5 501 -20 -ベーカリー 🥯️ 5 5 501 -20 -ベーグル 🥯️ 5 5 501 -20 -パンケーキ 🥞️ 5 5 501 -20 -ホットケーキ 🥞️ 5 5 501 -20 -フンワリ 🧇️ 5 5 501 -20 -ヤキガシ 🧇️ 5 5 501 -20 -ワッフル 🧇️ 5 5 501 -20 -チーズ 🧀️ 5 5 501 -20 -ニク 🍖️ 5 5 501 -20 -ホネツキニク 🍖️ 5 5 501 -20 -モモニク 🍖️ 5 5 501 -20 -チキン 🍗️ 5 5 501 -20 -トリモモニク 🍗️ 5 5 501 -20 -ニク 🍗️ 5 5 501 -20 -ニワトリモモニク 🍗️ 5 5 501 -20 -ホネツキニク 🍗️ 5 5 501 -20 -モモニク 🍗️ 5 5 501 -20 -ステーキ 🥩️ 5 5 501 -20 -ステーキニク 🥩️ 5 5 501 -20 -ニク 🥩️ 5 5 501 -20 -ビーフ 🥩️ 5 5 501 -20 -ポーク 🥩️ 5 5 501 -20 -ラム 🥩️ 5 5 501 -20 -ニク 🥓️ 5 5 501 -20 -ベーコン 🥓️ 5 5 501 -20 -ハンバーガー 🍔️ 5 5 501 -20 -バーガー 🍔️ 5 5 501 -20 -フライドポテト 🍟️ 5 5 501 -20 -フレンチフライ 🍟️ 5 5 501 -20 -ポテト 🍟️ 5 5 501 -20 -ポテトフライ 🍟️ 5 5 501 -20 -チーズ 🍕️ 5 5 501 -20 -ピザ 🍕️ 5 5 501 -20 -ピッツァ 🍕️ 5 5 501 -20 -ソーセージ 🌭️ 5 5 501 -20 -フランクフルト 🌭️ 5 5 501 -20 -ホットドッグ 🌭️ 5 5 501 -20 -サンドイッチ 🥪️ 5 5 501 -20 -パン 🥪️ 5 5 501 -20 -タコス 🌮️ 5 5 501 -20 -メキシカン 🌮️ 5 5 501 -20 -ソフトタコス 🌯️ 5 5 501 -20 -ブリトー 🌯️ 5 5 501 -20 -メキシカン 🌯️ 5 5 501 -20 -タマル 🫔️ 5 5 501 -20 -タマレス 🫔️ 5 5 501 -20 -チマキ 🫔️ 5 5 501 -20 -メキシカン 🫔️ 5 5 501 -20 -ケバブ 🥙️ 5 5 501 -20 -ケバブサンド 🥙️ 5 5 501 -20 -ラップサンド 🥙️ 5 5 501 -20 -コロッケ 🧆️ 5 5 501 -20 -ニクダンゴ 🧆️ 5 5 501 -20 -ヒヨコマメ 🧆️ 5 5 501 -20 -ファラフェル 🧆️ 5 5 501 -20 -タマゴ 🥚️ 5 5 501 -20 -タマゴ 🍳️ 5 5 501 -20 -フライパン 🍳️ 5 5 501 -20 -メダマヤキ 🍳️ 5 5 501 -20 -リョウリ 🍳️ 5 5 501 -20 -シーフード 🥘️ 5 5 501 -20 -パエリア 🥘️ 5 5 501 -20 -シチュー 🍲️ 5 5 501 -20 -ナベ 🍲️ 5 5 501 -20 -ナベリョウリ 🍲️ 5 5 501 -20 -ニコミ 🍲️ 5 5 501 -20 -ニモノ 🍲️ 5 5 501 -20 -スイス 🫕️ 5 5 501 -20 -チョコ 🫕️ 5 5 501 -20 -チーズ 🫕️ 5 5 501 -20 -トカス 🫕️ 5 5 501 -20 -ナベ 🫕️ 5 5 501 -20 -フォンデュ 🫕️ 5 5 501 -20 -オカユ 🥣️ 5 5 501 -20 -シリアル 🥣️ 5 5 501 -20 -チョウショク 🥣️ 5 5 501 -20 -ボウルトスプーン 🥣️ 5 5 501 -20 -グリーン 🥗️ 5 5 501 -20 -グリーンサラダ 🥗️ 5 5 501 -20 -サラダ 🥗️ 5 5 501 -20 -オカシ 🍿️ 5 5 501 -20 -ポップコーン 🍿️ 5 5 501 -20 -ニュウセイヒン 🧈️ 5 5 501 -20 -バター 🧈️ 5 5 501 -20 -シオ 🧂️ 5 5 501 -20 -チョウミリョウ 🧂️ 5 5 501 -20 -フリカケヨウキ 🧂️ 5 5 501 -20 -ヤクミ 🧂️ 5 5 501 -20 -カン 🥫️ 5 5 501 -20 -カンヅメ 🥫️ 5 5 501 -20 -ヒジョウショク 🥫️ 5 5 501 -20 -エキベン 🍱️ 5 5 501 -20 -ベントウ 🍱️ 5 5 501 -20 -マクノウチ 🍱️ 5 5 501 -20 -オカシ 🍘️ 5 5 501 -20 -オセンベイ 🍘️ 5 5 501 -20 -センベイ 🍘️ 5 5 501 -20 -オニギリ 🍙️ 5 5 501 -20 -オムスビ 🍙️ 5 5 501 -20 -コメ 🍙️ 5 5 501 -20 -コメ 🍚️ 5 5 501 -20 -ゴハン 🍚️ 5 5 501 -20 -チャワン 🍚️ 5 5 501 -20 -ライス 🍚️ 5 5 501 -20 -カレー 🍛️ 5 5 501 -20 -カレーライス 🍛️ 5 5 501 -20 -ライス 🍛️ 5 5 501 -20 -アツアツ 🍜️ 5 5 501 -20 -ドンブリ 🍜️ 5 5 501 -20 -ラーメン 🍜️ 5 5 501 -20 -スパゲッティ 🍝️ 5 5 501 -20 -スパゲッティー 🍝️ 5 5 501 -20 -パスタ 🍝️ 5 5 501 -20 -イモ 🍠️ 5 5 501 -20 -サツマイモ 🍠️ 5 5 501 -20 -ヤキイモ 🍠️ 5 5 501 -20 -オデン 🍢️ 5 5 501 -20 -オスシ 🍣️ 5 5 501 -20 -スシ 🍣️ 5 5 501 -20 -エビ 🍤️ 5 5 501 -20 -エビフライ 🍤️ 5 5 501 -20 -テンプラ 🍤️ 5 5 501 -20 -フライ 🍤️ 5 5 501 -20 -ウズ 🍥️ 5 5 501 -20 -ウズマキ 🍥️ 5 5 501 -20 -ナルト 🍥️ 5 5 501 -20 -ネリモノ 🍥️ 5 5 501 -20 -アキ 🥮️ 5 5 501 -20 -オイワイ 🥮️ 5 5 501 -20 -ゲッペイ 🥮️ 5 5 501 -20 -チュウカカシ 🥮️ 5 5 501 -20 -チュウシュウセツ 🥮️ 5 5 501 -20 -チュウシュウブシ 🥮️ 5 5 501 -20 -オダンゴ 🍡️ 5 5 501 -20 -ダンゴ 🍡️ 5 5 501 -20 -ワガシ 🍡️ 5 5 501 -20 -ギョウザ 🥟️ 5 5 501 -20 -テンシン 🥟️ 5 5 501 -20 -ニクマン 🥟️ 5 5 501 -20 -オミクジ 🥠️ 5 5 501 -20 -フォーチュンクッキー 🥠️ 5 5 501 -20 -チュウカ 🥡️ 5 5 501 -20 -テイクアウトベントウ 🥡️ 5 5 501 -20 -ベントウ 🥡️ 5 5 501 -20 -モチカエリ 🥡️ 5 5 501 -20 -カニ 🦀️ 5 5 501 -20 -セイザ 🦀️ 5 5 501 -20 -ドウブツ 🦀️ 5 5 501 -20 -ザリガニ 🦞️ 5 5 501 -20 -シーフード 🦞️ 5 5 501 -20 -ハサミ 🦞️ 5 5 501 -20 -ビスク 🦞️ 5 5 501 -20 -ロブスター 🦞️ 5 5 501 -20 -エビ 🦐️ 5 5 501 -20 -シュリンプ 🦐️ 5 5 501 -20 -シーフード 🦐️ 5 5 501 -20 -ドウブツ 🦐️ 5 5 501 -20 -イカ 🦑️ 5 5 501 -20 -シーフード 🦑️ 5 5 501 -20 -ドウブツ 🦑️ 5 5 501 -20 -オイスター 🦪️ 5 5 501 -20 -カイ 🦪️ 5 5 501 -20 -カキ 🦪️ 5 5 501 -20 -ギョカイ 🦪️ 5 5 501 -20 -シーフード 🦪️ 5 5 501 -20 -ナマガキ 🦪️ 5 5 501 -20 -アイス 🍦️ 5 5 501 -20 -オカシ 🍦️ 5 5 501 -20 -スイーツ 🍦️ 5 5 501 -20 -ソフト 🍦️ 5 5 501 -20 -ソフトクリーム 🍦️ 5 5 501 -20 -デザート 🍦️ 5 5 501 -20 -アイス 🍧️ 5 5 501 -20 -オカシ 🍧️ 5 5 501 -20 -カキゴオリ 🍧️ 5 5 501 -20 -コオリ 🍧️ 5 5 501 -20 -デザート 🍧️ 5 5 501 -20 -アイス 🍨️ 5 5 501 -20 -アイスクリーム 🍨️ 5 5 501 -20 -オカシ 🍨️ 5 5 501 -20 -スイーツ 🍨️ 5 5 501 -20 -デザート 🍨️ 5 5 501 -20 -オカシ 🍩️ 5 5 501 -20 -スイーツ 🍩️ 5 5 501 -20 -デザート 🍩️ 5 5 501 -20 -ドーナツ 🍩️ 5 5 501 -20 -オカシ 🍪️ 5 5 501 -20 -クッキー 🍪️ 5 5 501 -20 -スイーツ 🍪️ 5 5 501 -20 -デザート 🍪️ 5 5 501 -20 -オタンジョウビ 🎂️ 5 5 501 -20 -ケーキ 🎂️ 5 5 501 -20 -タンジョウビ 🎂️ 5 5 501 -20 -バースデー 🎂️ 5 5 501 -20 -バースデーケーキ 🎂️ 5 5 501 -20 -オカシ 🍰️ 5 5 501 -20 -ケーキ 🍰️ 5 5 501 -20 -ショートケーキ 🍰️ 5 5 501 -20 -スイーツ 🍰️ 5 5 501 -20 -デザート 🍰️ 5 5 501 -20 -オカシ 🧁️ 5 5 501 -20 -カップケーキ 🧁️ 5 5 501 -20 -ケーキ 🧁️ 5 5 501 -20 -スイーツ 🧁️ 5 5 501 -20 -ベーカリー 🧁️ 5 5 501 -20 -オカシ 🥧️ 5 5 501 -20 -タルト 🥧️ 5 5 501 -20 -パイ 🥧️ 5 5 501 -20 -オカシ 🍫️ 5 5 501 -20 -スイーツ 🍫️ 5 5 501 -20 -チョコ 🍫️ 5 5 501 -20 -チョコレート 🍫️ 5 5 501 -20 -デザート 🍫️ 5 5 501 -20 -アメ 🍬️ 5 5 501 -20 -オカシ 🍬️ 5 5 501 -20 -キャンディ 🍬️ 5 5 501 -20 -キャンディー 🍬️ 5 5 501 -20 -アメ 🍭️ 5 5 501 -20 -オカシ 🍭️ 5 5 501 -20 -キャンディ 🍭️ 5 5 501 -20 -キャンディー 🍭️ 5 5 501 -20 -ペロペロキャンディ 🍭️ 5 5 501 -20 -ボウツキキャンディ 🍭️ 5 5 501 -20 -オカシ 🍮️ 5 5 501 -20 -スイーツ 🍮️ 5 5 501 -20 -デザート 🍮️ 5 5 501 -20 -プリン 🍮️ 5 5 501 -20 -アマイ 🍯️ 5 5 501 -20 -ハチミツ 🍯️ 5 5 501 -20 -ハニー 🍯️ 5 5 501 -20 -ハニーポット 🍯️ 5 5 501 -20 -ミツビン 🍯️ 5 5 501 -20 -アカチャン 🍼️ 5 5 501 -20 -ホニュウビン 🍼️ 5 5 501 -20 -ミルク 🍼️ 5 5 501 -20 -ギュウニュウ 🥛️ 5 5 501 -20 -ギュウニュウイリノコップ 🥛️ 5 5 501 -20 -コップ 🥛️ 5 5 501 -20 -ミルク 🥛️ 5 5 501 -20 -アタタカイノミモノ ☕️ 5 5 501 -20 -カップ ☕️ 5 5 501 -20 -キッサテン ☕️ 5 5 501 -20 -コウチャ ☕️ 5 5 501 -20 -コーヒー ☕️ 5 5 501 -20 -ノミモノ ☕️ 5 5 501 -20 -ホットドリンク ☕️ 5 5 501 -20 -オチャ 🫖️ 5 5 501 -20 -キュウス 🫖️ 5 5 501 -20 -チャキ 🫖️ 5 5 501 -20 -ティーポット 🫖️ 5 5 501 -20 -ノミモノ 🫖️ 5 5 501 -20 -オチャ 🍵️ 5 5 501 -20 -ノミモノ 🍵️ 5 5 501 -20 -ユノミ 🍵️ 5 5 501 -20 -リョクチャ 🍵️ 5 5 501 -20 -サケ 🍶️ 5 5 501 -20 -トックリ 🍶️ 5 5 501 -20 -ニホンシュ 🍶️ 5 5 501 -20 -アワ 🍾️ 5 5 501 -20 -シャンパン 🍾️ 5 5 501 -20 -シャンペン 🍾️ 5 5 501 -20 -スパークリングワイン 🍾️ 5 5 501 -20 -スプマンテ 🍾️ 5 5 501 -20 -ボトル 🍾️ 5 5 501 -20 -グラス 🍷️ 5 5 501 -20 -バー 🍷️ 5 5 501 -20 -ワイン 🍷️ 5 5 501 -20 -ワイングラス 🍷️ 5 5 501 -20 -カクテル 🍸️ 5 5 501 -20 -カクテルグラス 🍸️ 5 5 501 -20 -グラス 🍸️ 5 5 501 -20 -バー 🍸️ 5 5 501 -20 -カクテル 🍹️ 5 5 501 -20 -トロピカル 🍹️ 5 5 501 -20 -トロピカルドリンク 🍹️ 5 5 501 -20 -バー 🍹️ 5 5 501 -20 -イザカヤ 🍺️ 5 5 501 -20 -ジョッキ 🍺️ 5 5 501 -20 -バー 🍺️ 5 5 501 -20 -ビール 🍺️ 5 5 501 -20 -ビールジョッキ 🍺️ 5 5 501 -20 -エンカイ 🍻️ 5 5 501 -20 -カンパイ 🍻️ 5 5 501 -20 -ジョッキ 🍻️ 5 5 501 -20 -ビール 🍻️ 5 5 501 -20 -ビールデカンパイ 🍻️ 5 5 501 -20 -カンパイ 🥂️ 5 5 501 -20 -グラスデカンパイ 🥂️ 5 5 501 -20 -シャンパン 🥂️ 5 5 501 -20 -シャンペン 🥂️ 5 5 501 -20 -スパークリングワイン 🥂️ 5 5 501 -20 -スプマンテ 🥂️ 5 5 501 -20 -ウィスキー 🥃️ 5 5 501 -20 -ウイスキー 🥃️ 5 5 501 -20 -グラス 🥃️ 5 5 501 -20 -タンブラー 🥃️ 5 5 501 -20 -タンブラーグラス 🥃️ 5 5 501 -20 -エキタイ 🫗️ 5 5 501 -20 -ガラス 🫗️ 5 5 501 -20 -コップ 🫗️ 5 5 501 -20 -コップカラソソグ 🫗️ 5 5 501 -20 -コボス 🫗️ 5 5 501 -20 -ソソグ 🫗️ 5 5 501 -20 -ノミモノ 🫗️ 5 5 501 -20 -コップ 🥤️ 5 5 501 -20 -ジュース 🥤️ 5 5 501 -20 -ストローカップ 🥤️ 5 5 501 -20 -オチャ 🧋️ 5 5 501 -20 -タピオカ 🧋️ 5 5 501 -20 -タピオカドリンク 🧋️ 5 5 501 -20 -ドリンク 🧋️ 5 5 501 -20 -バブルティー 🧋️ 5 5 501 -20 -ミルクティー 🧋️ 5 5 501 -20 -カミパックインリョウ 🧃️ 5 5 501 -20 -ジュース 🧃️ 5 5 501 -20 -ドリンク 🧃️ 5 5 501 -20 -ノミモノ 🧃️ 5 5 501 -20 -オチャ 🧉️ 5 5 501 -20 -ドリンク 🧉️ 5 5 501 -20 -ノミモノ 🧉️ 5 5 501 -20 -マテチャ 🧉️ 5 5 501 -20 -カクゴオリ 🧊️ 5 5 501 -20 -コオリ 🧊️ 5 5 501 -20 -ツメタイ 🧊️ 5 5 501 -20 -オハシ 🥢️ 5 5 501 -20 -ハシ 🥢️ 5 5 501 -20 -オサラ 🍽️️ 5 5 501 -20 -サラ 🍽️️ 5 5 501 -20 -ナイフ 🍽️️ 5 5 501 -20 -ナイフトフォークトサラ 🍽️️ 5 5 501 -20 -フォーク 🍽️️ 5 5 501 -20 -カトラリー 🍴️ 5 5 501 -20 -ナイフ 🍴️ 5 5 501 -20 -ナイフトフォーク 🍴️ 5 5 501 -20 -ナイフ・フォーク 🍴️ 5 5 501 -20 -フォーク 🍴️ 5 5 501 -20 -レストラン 🍴️ 5 5 501 -20 -カトラリー 🥄️ 5 5 501 -20 -ショッキ 🥄️ 5 5 501 -20 -スプーン 🥄️ 5 5 501 -20 -ナイフ 🔪️ 5 5 501 -20 -ホウチョウ 🔪️ 5 5 501 -20 -リョウリ 🔪️ 5 5 501 -20 -アキ 🫙️ 5 5 501 -20 -アキビン 🫙️ 5 5 501 -20 -カラノビン 🫙️ 5 5 501 -20 -チョウミリョウ 🫙️ 5 5 501 -20 -ビン 🫙️ 5 5 501 -20 -ホゾン 🫙️ 5 5 501 -20 -ヨウキ 🫙️ 5 5 501 -20 -カメ 🏺️ 5 5 501 -20 -セイザ 🏺️ 5 5 501 -20 -ツボ 🏺️ 5 5 501 -20 -ミズガメ 🏺️ 5 5 501 -20 -アフリカ 🌍️ 5 5 501 -20 -チキュウ 🌍️ 5 5 501 -20 -ヨーロッパ 🌍️ 5 5 501 -20 -アメリカ 🌎️ 5 5 501 -20 -アメリカタイリク 🌎️ 5 5 501 -20 -チキュウ 🌎️ 5 5 501 -20 -アジア 🌏️ 5 5 501 -20 -オーストラリア 🌏️ 5 5 501 -20 -チキュウ 🌏️ 5 5 501 -20 -シゴセン 🌐️ 5 5 501 -20 -シゴセンノアルチキュウ 🌐️ 5 5 501 -20 -チキュウ 🌐️ 5 5 501 -20 -セカイ 🗺️️ 5 5 501 -20 -セカイチズ 🗺️️ 5 5 501 -20 -チズ 🗺️️ 5 5 501 -20 -チズ 🗾️ 5 5 501 -20 -ニッポン 🗾️ 5 5 501 -20 -ニッポンチズ 🗾️ 5 5 501 -20 -ニホン 🗾️ 5 5 501 -20 -ニホンチズ 🗾️ 5 5 501 -20 -オリエンテーリング 🧭️ 5 5 501 -20 -コウカイ 🧭️ 5 5 501 -20 -コウクウ 🧭️ 5 5 501 -20 -コンパス 🧭️ 5 5 501 -20 -ジシャク 🧭️ 5 5 501 -20 -カンセツ 🏔️️ 5 5 501 -20 -ヤマ 🏔️️ 5 5 501 -20 -ユキ 🏔️️ 5 5 501 -20 -ユキヤマ 🏔️️ 5 5 501 -20 -サンガク ⛰️️ 5 5 501 -20 -ヤマ ⛰️️ 5 5 501 -20 -カザン 🌋️ 5 5 501 -20 -フンカ 🌋️ 5 5 501 -20 -ヤマ 🌋️ 5 5 501 -20 -フジサン 🗻️ 5 5 501 -20 -ヤマ 🗻️ 5 5 501 -20 -キャンプ 🏕️️ 5 5 501 -20 -テント 🏕️️ 5 5 501 -20 -ヤマ 🏕️️ 5 5 501 -20 -スナハマ 🏖️️ 5 5 501 -20 -パラソル 🏖️️ 5 5 501 -20 -ビーチ 🏖️️ 5 5 501 -20 -ビーチパラソル 🏖️️ 5 5 501 -20 -サバク 🏜️️ 5 5 501 -20 -サボテン 🏜️️ 5 5 501 -20 -サボテンノアルサバク 🏜️️ 5 5 501 -20 -シマ 🏝️️ 5 5 501 -20 -ムジントウ 🏝️️ 5 5 501 -20 -ヤシ 🏝️️ 5 5 501 -20 -ヤシノキノアルシマ 🏝️️ 5 5 501 -20 -コウエン 🏞️️ 5 5 501 -20 -コクリツコウエン 🏞️️ 5 5 501 -20 -シゼン 🏞️️ 5 5 501 -20 -キョウギジョウ 🏟️️ 5 5 501 -20 -スタジアム 🏟️️ 5 5 501 -20 -ヤキュウジョウ 🏟️️ 5 5 501 -20 -シセキ 🏛️️ 5 5 501 -20 -レキシ 🏛️️ 5 5 501 -20 -レキシテキケンゾウブツ 🏛️️ 5 5 501 -20 -レキシテキナタテモノ 🏛️️ 5 5 501 -20 -クレーン 🏗️️ 5 5 501 -20 -ケンセツ 🏗️️ 5 5 501 -20 -ケンセツチュウ 🏗️️ 5 5 501 -20 -コウジ 🏗️️ 5 5 501 -20 -カベ 🧱️ 5 5 501 -20 -シックイ 🧱️ 5 5 501 -20 -ネンド 🧱️ 5 5 501 -20 -モルタル 🧱️ 5 5 501 -20 -レンガ 🧱️ 5 5 501 -20 -オモタイ 🪨️ 5 5 501 -20 -カタイ 🪨️ 5 5 501 -20 -ガンセキ 🪨️ 5 5 501 -20 -キョガン 🪨️ 5 5 501 -20 -セキザイ 🪨️ 5 5 501 -20 -ザイモク 🪵️ 5 5 501 -20 -ジュモク 🪵️ 5 5 501 -20 -マルタ 🪵️ 5 5 501 -20 -モクザイ 🪵️ 5 5 501 -20 -ログ 🪵️ 5 5 501 -20 -コヤ 🛖️ 5 5 501 -20 -バンガロー 🛖️ 5 5 501 -20 -ユルト 🛖️ 5 5 501 -20 -ワラブキコヤ 🛖️ 5 5 501 -20 -イエ 🏘️️ 5 5 501 -20 -ジュウタクガイ 🏘️️ 5 5 501 -20 -フクスウノイエ 🏘️️ 5 5 501 -20 -マチ 🏘️️ 5 5 501 -20 -アキヤ 🏚️️ 5 5 501 -20 -イエ 🏚️️ 5 5 501 -20 -タテモノ 🏚️️ 5 5 501 -20 -ハイオク 🏚️️ 5 5 501 -20 -イエ 🏠️ 5 5 501 -20 -カオク 🏠️ 5 5 501 -20 -タテモノ 🏠️ 5 5 501 -20 -マイホーム 🏠️ 5 5 501 -20 -イエ 🏡️ 5 5 501 -20 -ウチ 🏡️ 5 5 501 -20 -タテモノ 🏡️ 5 5 501 -20 -ニワ 🏡️ 5 5 501 -20 -ニワツキノイエ 🏡️ 5 5 501 -20 -ホーム 🏡️ 5 5 501 -20 -マイホーム 🏡️ 5 5 501 -20 -オフィスビル 🏢️ 5 5 501 -20 -タテモノ 🏢️ 5 5 501 -20 -ビル 🏢️ 5 5 501 -20 -タテモノ 🏣️ 5 5 501 -20 -ユウビン 🏣️ 5 5 501 -20 -ユウビンキョク 🏣️ 5 5 501 -20 -セイヨウノユウビンキョク 🏤️ 5 5 501 -20 -タテモノ 🏤️ 5 5 501 -20 -ユウビン 🏤️ 5 5 501 -20 -イシャ 🏥️ 5 5 501 -20 -クスリ 🏥️ 5 5 501 -20 -タテモノ 🏥️ 5 5 501 -20 -ビョウイン 🏥️ 5 5 501 -20 -ギンコウ 🏦️ 5 5 501 -20 -タテモノ 🏦️ 5 5 501 -20 -タテモノ 🏨️ 5 5 501 -20 -ホテル 🏨️ 5 5 501 -20 -タテモノ 🏩️ 5 5 501 -20 -ホテル 🏩️ 5 5 501 -20 -ラブホ 🏩️ 5 5 501 -20 -ラブホテル 🏩️ 5 5 501 -20 -コンビニ 🏪️ 5 5 501 -20 -コンビニエンスストア 🏪️ 5 5 501 -20 -タテモノ 🏪️ 5 5 501 -20 -ガッコウ 🏫️ 5 5 501 -20 -タテモノ 🏫️ 5 5 501 -20 -タテモノ 🏬️ 5 5 501 -20 -デパート 🏬️ 5 5 501 -20 -ヒャッカテン 🏬️ 5 5 501 -20 -コウジョウ 🏭️ 5 5 501 -20 -コウバ 🏭️ 5 5 501 -20 -タテモノ 🏭️ 5 5 501 -20 -オシロ 🏯️ 5 5 501 -20 -シロ 🏯️ 5 5 501 -20 -タテモノ 🏯️ 5 5 501 -20 -ニッポン 🏯️ 5 5 501 -20 -ニホン 🏯️ 5 5 501 -20 -オシロ 🏰️ 5 5 501 -20 -キャッスル 🏰️ 5 5 501 -20 -シロ 🏰️ 5 5 501 -20 -セイヨウノシロ 🏰️ 5 5 501 -20 -タテモノ 🏰️ 5 5 501 -20 -キョウカイ 💒️ 5 5 501 -20 -ケッコン 💒️ 5 5 501 -20 -ケッコンシキ 💒️ 5 5 501 -20 -シキジョウ 💒️ 5 5 501 -20 -タテモノ 💒️ 5 5 501 -20 -タワー 🗼️ 5 5 501 -20 -トウキョウ 🗼️ 5 5 501 -20 -トウキョウタワー 🗼️ 5 5 501 -20 -アメリカ 🗽️ 5 5 501 -20 -ジユウノメガミ 🗽️ 5 5 501 -20 -チョウゾウ 🗽️ 5 5 501 -20 -ニューヨーク 🗽️ 5 5 501 -20 -メガミ 🗽️ 5 5 501 -20 -キョウカイ ⛪️ 5 5 501 -20 -キリストキョウ ⛪️ 5 5 501 -20 -シュウキョウ ⛪️ 5 5 501 -20 -タテモノ ⛪️ 5 5 501 -20 -チャペル ⛪️ 5 5 501 -20 -イスラムキョウ 🕌️ 5 5 501 -20 -シュウキョウ 🕌️ 5 5 501 -20 -タテモノ 🕌️ 5 5 501 -20 -モスク 🕌️ 5 5 501 -20 -シュウキョウ 🛕️ 5 5 501 -20 -タテモノ 🛕️ 5 5 501 -20 -テラ 🛕️ 5 5 501 -20 -ヒンズーキョウ 🛕️ 5 5 501 -20 -ヒンドゥーキョウノジイン 🛕️ 5 5 501 -20 -シナゴーグ 🕍️ 5 5 501 -20 -シュウキョウ 🕍️ 5 5 501 -20 -タテモノ 🕍️ 5 5 501 -20 -ユダヤキョウ 🕍️ 5 5 501 -20 -シュウキョウ ⛩️️ 5 5 501 -20 -シントウ ⛩️️ 5 5 501 -20 -ジンジャ ⛩️️ 5 5 501 -20 -タテモノ ⛩️️ 5 5 501 -20 -トリイ ⛩️️ 5 5 501 -20 -イスラムキョウ 🕋️ 5 5 501 -20 -カーバ 🕋️ 5 5 501 -20 -シュウキョウ 🕋️ 5 5 501 -20 -セイチ 🕋️ 5 5 501 -20 -タテモノ 🕋️ 5 5 501 -20 -メッカ 🕋️ 5 5 501 -20 -コウエン ⛲️ 5 5 501 -20 -フンスイ ⛲️ 5 5 501 -20 -キャンプ ⛺️ 5 5 501 -20 -テント ⛺️ 5 5 501 -20 -キリ 🌁️ 5 5 501 -20 -キリノトカイ 🌁️ 5 5 501 -20 -トカイ 🌁️ 5 5 501 -20 -ナガレボシ 🌃️ 5 5 501 -20 -ホシ 🌃️ 5 5 501 -20 -ヤケイ 🌃️ 5 5 501 -20 -ヨル 🌃️ 5 5 501 -20 -ヨルノトカイ 🌃️ 5 5 501 -20 -コウソウビル 🏙️️ 5 5 501 -20 -トカイ 🏙️️ 5 5 501 -20 -ビルグン 🏙️️ 5 5 501 -20 -アサ 🌄️ 5 5 501 -20 -アサヒ 🌄️ 5 5 501 -20 -ゴライコウ 🌄️ 5 5 501 -20 -タイヨウ 🌄️ 5 5 501 -20 -ヒノデ 🌄️ 5 5 501 -20 -ヤマカラヒノデ 🌄️ 5 5 501 -20 -アサ 🌅️ 5 5 501 -20 -アサヒ 🌅️ 5 5 501 -20 -タイヨウ 🌅️ 5 5 501 -20 -ヒノデ 🌅️ 5 5 501 -20 -トカイ 🌆️ 5 5 501 -20 -ユウガタ 🌆️ 5 5 501 -20 -ユウグレ 🌆️ 5 5 501 -20 -ユウグレノトカイ 🌆️ 5 5 501 -20 -ユウヒ 🌆️ 5 5 501 -20 -ヨル 🌆️ 5 5 501 -20 -タイヨウ 🌇️ 5 5 501 -20 -ユウガタ 🌇️ 5 5 501 -20 -ユウグレ 🌇️ 5 5 501 -20 -ユウヒ 🌇️ 5 5 501 -20 -ハシ 🌉️ 5 5 501 -20 -ヤケイ 🌉️ 5 5 501 -20 -ヨル 🌉️ 5 5 501 -20 -ヨルノハシ 🌉️ 5 5 501 -20 -イイキブン ♨️️ 5 5 501 -20 -オンセン ♨️️ 5 5 501 -20 -オンセンマーク ♨️️ 5 5 501 -20 -メリーゴーランド 🎠️ 5 5 501 -20 -ユウエンチ 🎠️ 5 5 501 -20 -コウエン 🛝️ 5 5 501 -20 -スベリダイ 🛝️ 5 5 501 -20 -ユウグ 🛝️ 5 5 501 -20 -カンランシャ 🎡️ 5 5 501 -20 -ユウエンチ 🎡️ 5 5 501 -20 -コースター 🎢️ 5 5 501 -20 -ジェットコースター 🎢️ 5 5 501 -20 -ユウエンチ 🎢️ 5 5 501 -20 -サンパツ 💈️ 5 5 501 -20 -トコヤ 💈️ 5 5 501 -20 -バーバー 💈️ 5 5 501 -20 -ビヨウイン 💈️ 5 5 501 -20 -ビヨウシツ 💈️ 5 5 501 -20 -ヘアサロン 💈️ 5 5 501 -20 -リハツテン 💈️ 5 5 501 -20 -イベント 🎪️ 5 5 501 -20 -サーカス 🎪️ 5 5 501 -20 -サーカステント 🎪️ 5 5 501 -20 -テント 🎪️ 5 5 501 -20 -sl 🚂️ 5 5 501 -20 -エスエル 🚂️ 5 5 501 -20 -ジョウキキカンシャ 🚂️ 5 5 501 -20 -ノリモノ 🚂️ 5 5 501 -20 -レッシャ 🚂️ 5 5 501 -20 -デンシャ 🚃️ 5 5 501 -20 -ノリモノ 🚃️ 5 5 501 -20 -レッシャ 🚃️ 5 5 501 -20 -シンカンセン 🚄️ 5 5 501 -20 -デンシャ 🚄️ 5 5 501 -20 -ノリモノ 🚄️ 5 5 501 -20 -0ケイ 🚅️ 5 5 501 -20 -シンカンセン 🚅️ 5 5 501 -20 -ゼロケイシンカンセン 🚅️ 5 5 501 -20 -デンシャ 🚅️ 5 5 501 -20 -ノゾミ 🚅️ 5 5 501 -20 -ノリモノ 🚅️ 5 5 501 -20 -マルイシンカンセン 🚅️ 5 5 501 -20 -デンシャ 🚆️ 5 5 501 -20 -デンシャショウメン 🚆️ 5 5 501 -20 -ノリモノ 🚆️ 5 5 501 -20 -レッシャ 🚆️ 5 5 501 -20 -チカテツ 🚇️ 5 5 501 -20 -デンシャ 🚇️ 5 5 501 -20 -ノリモノ 🚇️ 5 5 501 -20 -メトロ 🚇️ 5 5 501 -20 -デンシャ 🚈️ 5 5 501 -20 -ノリモノ 🚈️ 5 5 501 -20 -ライトレール 🚈️ 5 5 501 -20 -エキ 🚉️ 5 5 501 -20 -デンシャ 🚉️ 5 5 501 -20 -ノリモノ 🚉️ 5 5 501 -20 -フミキリ 🚉️ 5 5 501 -20 -レッシャ 🚉️ 5 5 501 -20 -デンシャ 🚊️ 5 5 501 -20 -ノリモノ 🚊️ 5 5 501 -20 -ロメンデンシャ 🚊️ 5 5 501 -20 -ロメンデンシャショウメン 🚊️ 5 5 501 -20 -デンシャ 🚝️ 5 5 501 -20 -ノリモノ 🚝️ 5 5 501 -20 -モノレール 🚝️ 5 5 501 -20 -デンシャ 🚞️ 5 5 501 -20 -トザンテツドウ 🚞️ 5 5 501 -20 -トザンデンシャ 🚞️ 5 5 501 -20 -ノリモノ 🚞️ 5 5 501 -20 -デンシャ 🚋️ 5 5 501 -20 -ノリモノ 🚋️ 5 5 501 -20 -ロメンデンシャ 🚋️ 5 5 501 -20 -ノリモノ 🚌️ 5 5 501 -20 -バス 🚌️ 5 5 501 -20 -ノリモノ 🚍️ 5 5 501 -20 -バス 🚍️ 5 5 501 -20 -バスショウメン 🚍️ 5 5 501 -20 -トロリーバス 🚎️ 5 5 501 -20 -ノリモノ 🚎️ 5 5 501 -20 -バス 🚎️ 5 5 501 -20 -ノリモノ 🚐️ 5 5 501 -20 -バス 🚐️ 5 5 501 -20 -マイクロバス 🚐️ 5 5 501 -20 -キュウキュウシャ 🚑️ 5 5 501 -20 -ノリモノ 🚑️ 5 5 501 -20 -ショウボウシャ 🚒️ 5 5 501 -20 -ノリモノ 🚒️ 5 5 501 -20 -ケイサツ 🚓️ 5 5 501 -20 -ノリモノ 🚓️ 5 5 501 -20 -パトカー 🚓️ 5 5 501 -20 -ケイサツ 🚔️ 5 5 501 -20 -ノリモノ 🚔️ 5 5 501 -20 -パトカー 🚔️ 5 5 501 -20 -パトカーショウメン 🚔️ 5 5 501 -20 -タクシー 🚕️ 5 5 501 -20 -ノリモノ 🚕️ 5 5 501 -20 -タクシー 🚖️ 5 5 501 -20 -タクシーショウメン 🚖️ 5 5 501 -20 -ノリモノ 🚖️ 5 5 501 -20 -クルマ 🚗️ 5 5 501 -20 -ジドウシャ 🚗️ 5 5 501 -20 -ノリモノ 🚗️ 5 5 501 -20 -クルマ 🚘️ 5 5 501 -20 -ジドウシャ 🚘️ 5 5 501 -20 -ジドウシャショウメン 🚘️ 5 5 501 -20 -ノリモノ 🚘️ 5 5 501 -20 -rv 🚙️ 5 5 501 -20 -suv 🚙️ 5 5 501 -20 -suvクルマ 🚙️ 5 5 501 -20 -アールブイシャ 🚙️ 5 5 501 -20 -エスユーブイシャ 🚙️ 5 5 501 -20 -クルマ 🚙️ 5 5 501 -20 -ジドウシャ 🚙️ 5 5 501 -20 -ノリモノ 🚙️ 5 5 501 -20 -クルマ 🛻️ 5 5 501 -20 -ケイトラック 🛻️ 5 5 501 -20 -トラック 🛻️ 5 5 501 -20 -ノリモノ 🛻️ 5 5 501 -20 -ハイタツ 🛻️ 5 5 501 -20 -ピックアップトラック 🛻️ 5 5 501 -20 -クルマ 🚚️ 5 5 501 -20 -トラック 🚚️ 5 5 501 -20 -ノリモノ 🚚️ 5 5 501 -20 -ハイタツ 🚚️ 5 5 501 -20 -クルマ 🚛️ 5 5 501 -20 -トラック 🚛️ 5 5 501 -20 -トレーラー 🚛️ 5 5 501 -20 -ノリモノ 🚛️ 5 5 501 -20 -クルマ 🚜️ 5 5 501 -20 -トラクター 🚜️ 5 5 501 -20 -ノリモノ 🚜️ 5 5 501 -20 -f1 🏎️️ 5 5 501 -20 -エフワン 🏎️️ 5 5 501 -20 -クルマ 🏎️️ 5 5 501 -20 -スポーツ 🏎️️ 5 5 501 -20 -ノリモノ 🏎️️ 5 5 501 -20 -モータースポーツ 🏎️️ 5 5 501 -20 -レーシングカー 🏎️️ 5 5 501 -20 -オートバイ 🏍️️ 5 5 501 -20 -オートレース 🏍️️ 5 5 501 -20 -スポーツ 🏍️️ 5 5 501 -20 -ノリモノ 🏍️️ 5 5 501 -20 -バイク 🏍️️ 5 5 501 -20 -モータースポーツ 🏍️️ 5 5 501 -20 -ゲンツキ 🛵️ 5 5 501 -20 -スクーター 🛵️ 5 5 501 -20 -アクセシビリティ 🦽️ 5 5 501 -20 -イス 🦽️ 5 5 501 -20 -クルマイス 🦽️ 5 5 501 -20 -シュドウシキクルマイス 🦽️ 5 5 501 -20 -アクセシビリティ 🦼️ 5 5 501 -20 -イス 🦼️ 5 5 501 -20 -クルマイス 🦼️ 5 5 501 -20 -デンドウクルマイス 🦼️ 5 5 501 -20 -オートリクシャー 🛺️ 5 5 501 -20 -サンリンタクシー 🛺️ 5 5 501 -20 -タクシー 🛺️ 5 5 501 -20 -トゥクトゥク 🛺️ 5 5 501 -20 -リクシャー 🛺️ 5 5 501 -20 -ジテンシャ 🚲️ 5 5 501 -20 -ノリモノ 🚲️ 5 5 501 -20 -キックスクーター 🛴️ 5 5 501 -20 -キックスケーター 🛴️ 5 5 501 -20 -キックボード 🛴️ 5 5 501 -20 -スケボー 🛹️ 5 5 501 -20 -スケートボード 🛹️ 5 5 501 -20 -ボード 🛹️ 5 5 501 -20 -スケート 🛼️ 5 5 501 -20 -スポーツ 🛼️ 5 5 501 -20 -ローラースケート 🛼️ 5 5 501 -20 -ノリモノ 🚏️ 5 5 501 -20 -バステイ 🚏️ 5 5 501 -20 -バスノリバ 🚏️ 5 5 501 -20 -コウソク 🛣️️ 5 5 501 -20 -コウソクドウロ 🛣️️ 5 5 501 -20 -ドウロ 🛣️️ 5 5 501 -20 -センロ 🛤️️ 5 5 501 -20 -テツドウ 🛤️️ 5 5 501 -20 -セキユ 🛢️️ 5 5 501 -20 -ドラムカン 🛢️️ 5 5 501 -20 -ガススタンド ⛽️ 5 5 501 -20 -ガソリン ⛽️ 5 5 501 -20 -ガソリンスタンド ⛽️ 5 5 501 -20 -ガソリンノズル ⛽️ 5 5 501 -20 -シャリン 🛞️ 5 5 501 -20 -スポーク 🛞️ 5 5 501 -20 -タイヤ 🛞️ 5 5 501 -20 -ホイール 🛞️ 5 5 501 -20 -パトカー 🚨️ 5 5 501 -20 -パトランプ 🚨️ 5 5 501 -20 -シンゴウ 🚥️ 5 5 501 -20 -シンゴウキ 🚥️ 5 5 501 -20 -シンゴウヨコ 🚥️ 5 5 501 -20 -シンゴウ 🚦️ 5 5 501 -20 -シンゴウキ 🚦️ 5 5 501 -20 -シンゴウタテ 🚦️ 5 5 501 -20 -ストップ 🛑️ 5 5 501 -20 -トマレ 🛑️ 5 5 501 -20 -トマレノヒョウシキ 🛑️ 5 5 501 -20 -ヒョウシキ 🛑️ 5 5 501 -20 -コウジチュウ 🚧️ 5 5 501 -20 -サイン 🚧️ 5 5 501 -20 -ツウコウドメ 🚧️ 5 5 501 -20 -イカリ ⚓️ 5 5 501 -20 -フネ ⚓️ 5 5 501 -20 -ミナト ⚓️ 5 5 501 -20 -アンゼン 🛟️ 5 5 501 -20 -ウキワ 🛟️ 5 5 501 -20 -キュウメイグ 🛟️ 5 5 501 -20 -キュウメイフカン 🛟️ 5 5 501 -20 -ライフセーバー 🛟️ 5 5 501 -20 -レスキュー 🛟️ 5 5 501 -20 -ノリモノ ⛵️ 5 5 501 -20 -ハンセン ⛵️ 5 5 501 -20 -フネ ⛵️ 5 5 501 -20 -ボート ⛵️ 5 5 501 -20 -ヨット ⛵️ 5 5 501 -20 -リゾート ⛵️ 5 5 501 -20 -カヌー 🛶️ 5 5 501 -20 -カヤック 🛶️ 5 5 501 -20 -ノリモノ 🛶️ 5 5 501 -20 -フネ 🛶️ 5 5 501 -20 -ボート 🛶️ 5 5 501 -20 -スピードボート 🚤️ 5 5 501 -20 -ノリモノ 🚤️ 5 5 501 -20 -フネ 🚤️ 5 5 501 -20 -ボート 🚤️ 5 5 501 -20 -キャクセン 🛳️️ 5 5 501 -20 -ノリモノ 🛳️️ 5 5 501 -20 -フネ 🛳️️ 5 5 501 -20 -リョカクセン 🛳️️ 5 5 501 -20 -ノリモノ ⛴️️ 5 5 501 -20 -フェリー ⛴️️ 5 5 501 -20 -フネ ⛴️️ 5 5 501 -20 -ノリモノ 🛥️️ 5 5 501 -20 -フネ 🛥️️ 5 5 501 -20 -ボート 🛥️️ 5 5 501 -20 -モーターボート 🛥️️ 5 5 501 -20 -ノリモノ 🚢️ 5 5 501 -20 -フネ 🚢️ 5 5 501 -20 -ノリモノ ✈️️ 5 5 501 -20 -ヒコウキ ✈️️ 5 5 501 -20 -コガタキ 🛩️️ 5 5 501 -20 -コガタヒコウキ 🛩️️ 5 5 501 -20 -ノリモノ 🛩️️ 5 5 501 -20 -ヒコウキ 🛩️️ 5 5 501 -20 -ノリモノ 🛫️ 5 5 501 -20 -ヒコウキ 🛫️ 5 5 501 -20 -ヒコウキリリク 🛫️ 5 5 501 -20 -リリク 🛫️ 5 5 501 -20 -チャクリク 🛬️ 5 5 501 -20 -ノリモノ 🛬️ 5 5 501 -20 -ヒコウキ 🛬️ 5 5 501 -20 -ヒコウキチャクリク 🛬️ 5 5 501 -20 -スカイダイビング 🪂️ 5 5 501 -20 -パラグライダー 🪂️ 5 5 501 -20 -パラシュート 🪂️ 5 5 501 -20 -イス 💺️ 5 5 501 -20 -ザセキ 💺️ 5 5 501 -20 -セキ 💺️ 5 5 501 -20 -ノリモノ 🚁️ 5 5 501 -20 -ヘリ 🚁️ 5 5 501 -20 -ヘリコプター 🚁️ 5 5 501 -20 -ケンスイシキモノレール 🚟️ 5 5 501 -20 -デンシャ 🚟️ 5 5 501 -20 -ノリモノ 🚟️ 5 5 501 -20 -モノレール 🚟️ 5 5 501 -20 -ケーブルカー 🚠️ 5 5 501 -20 -ゴンドラ 🚠️ 5 5 501 -20 -ノリモノ 🚠️ 5 5 501 -20 -ゴンドラ 🚡️ 5 5 501 -20 -ノリモノ 🚡️ 5 5 501 -20 -ロープウェイ 🚡️ 5 5 501 -20 -ウチュウ 🛰️️ 5 5 501 -20 -ジンコウエイセイ 🛰️️ 5 5 501 -20 -ウチュウ 🚀️ 5 5 501 -20 -ノリモノ 🚀️ 5 5 501 -20 -ロケット 🚀️ 5 5 501 -20 -ufo 🛸️ 5 5 501 -20 -ウチュウ 🛸️ 5 5 501 -20 -ソラトブエンバン 🛸️ 5 5 501 -20 -ノリモノ 🛸️ 5 5 501 -20 -ユーフォー 🛸️ 5 5 501 -20 -ベル 🛎️️ 5 5 501 -20 -ベルボーイベル 🛎️️ 5 5 501 -20 -ホテル 🛎️️ 5 5 501 -20 -スーツケース 🧳️ 5 5 501 -20 -パッキング 🧳️ 5 5 501 -20 -リョコウ 🧳️ 5 5 501 -20 -リョコウカバン 🧳️ 5 5 501 -20 -スナ ⌛️ 5 5 501 -20 -スナドケイ ⌛️ 5 5 501 -20 -トケイ ⌛️ 5 5 501 -20 -スナ ⏳️ 5 5 501 -20 -スナガオチテイルスナドケイ ⏳️ 5 5 501 -20 -スナドケイ ⏳️ 5 5 501 -20 -トケイ ⏳️ 5 5 501 -20 -ウデドケイ ⌚️ 5 5 501 -20 -トケイ ⌚️ 5 5 501 -20 -アラーム ⏰️ 5 5 501 -20 -トケイ ⏰️ 5 5 501 -20 -メザマシ ⏰️ 5 5 501 -20 -メザマシドケイ ⏰️ 5 5 501 -20 -ストップウォッチ ⏱️️ 5 5 501 -20 -トケイ ⏱️️ 5 5 501 -20 -タイマー ⏲️️ 5 5 501 -20 -トケイ ⏲️️ 5 5 501 -20 -オキドケイ 🕰️️ 5 5 501 -20 -トケイ 🕰️️ 5 5 501 -20 -マンテルクロック 🕰️️ 5 5 501 -20 -12ジ 🕛️ 5 5 501 -20 -ショウゴ 🕛️ 5 5 501 -20 -ジュウニジ 🕛️ 5 5 501 -20 -トケイ 🕛️ 5 5 501 -20 -12ジハン 🕧️ 5 5 501 -20 -トケイ 🕧️ 5 5 501 -20 -1ジ 🕐️ 5 5 501 -20 -イチジ 🕐️ 5 5 501 -20 -トケイ 🕐️ 5 5 501 -20 -1ジハン 🕜️ 5 5 501 -20 -トケイ 🕜️ 5 5 501 -20 -2ジ 🕑️ 5 5 501 -20 -トケイ 🕑️ 5 5 501 -20 -ニジ 🕑️ 5 5 501 -20 -2ジハン 🕝️ 5 5 501 -20 -トケイ 🕝️ 5 5 501 -20 -3ジ 🕒️ 5 5 501 -20 -サンジ 🕒️ 5 5 501 -20 -トケイ 🕒️ 5 5 501 -20 -3ジハン 🕞️ 5 5 501 -20 -トケイ 🕞️ 5 5 501 -20 -4ジ 🕓️ 5 5 501 -20 -トケイ 🕓️ 5 5 501 -20 -ヨジ 🕓️ 5 5 501 -20 -4ジハン 🕟️ 5 5 501 -20 -トケイ 🕟️ 5 5 501 -20 -5ジ 🕔️ 5 5 501 -20 -ゴジ 🕔️ 5 5 501 -20 -トケイ 🕔️ 5 5 501 -20 -5ジハン 🕠️ 5 5 501 -20 -トケイ 🕠️ 5 5 501 -20 -6ジ 🕕️ 5 5 501 -20 -トケイ 🕕️ 5 5 501 -20 -ロクジ 🕕️ 5 5 501 -20 -6ジハン 🕡️ 5 5 501 -20 -トケイ 🕡️ 5 5 501 -20 -7ジ 🕖️ 5 5 501 -20 -シチジ 🕖️ 5 5 501 -20 -トケイ 🕖️ 5 5 501 -20 -ナナジ 🕖️ 5 5 501 -20 -7ジハン 🕢️ 5 5 501 -20 -トケイ 🕢️ 5 5 501 -20 -8ジ 🕗️ 5 5 501 -20 -トケイ 🕗️ 5 5 501 -20 -ハチジ 🕗️ 5 5 501 -20 -8ジハン 🕣️ 5 5 501 -20 -トケイ 🕣️ 5 5 501 -20 -9ジ 🕘️ 5 5 501 -20 -クジ 🕘️ 5 5 501 -20 -トケイ 🕘️ 5 5 501 -20 -9ジハン 🕤️ 5 5 501 -20 -トケイ 🕤️ 5 5 501 -20 -10ジ 🕙️ 5 5 501 -20 -ジュウジ 🕙️ 5 5 501 -20 -トケイ 🕙️ 5 5 501 -20 -メザマシ 🕙️ 5 5 501 -20 -10ジハン 🕥️ 5 5 501 -20 -トケイ 🕥️ 5 5 501 -20 -11ジ 🕚️ 5 5 501 -20 -ジュウイチジ 🕚️ 5 5 501 -20 -トケイ 🕚️ 5 5 501 -20 -11ジハン 🕦️ 5 5 501 -20 -トケイ 🕦️ 5 5 501 -20 -シンゲツ 🌑️ 5 5 501 -20 -ツキ 🌑️ 5 5 501 -20 -ツキ 🌒️ 5 5 501 -20 -ハツカヅキ 🌒️ 5 5 501 -20 -ハツヅキ 🌒️ 5 5 501 -20 -ミカヅキ 🌒️ 5 5 501 -20 -ジョウゲン 🌓️ 5 5 501 -20 -ジョウゲンノツキ 🌓️ 5 5 501 -20 -ツキ 🌓️ 5 5 501 -20 -ハンゲツ 🌓️ 5 5 501 -20 -カケヅキ 🌔️ 5 5 501 -20 -ジュウサンヤツキ 🌔️ 5 5 501 -20 -ジュウサンヨツキ 🌔️ 5 5 501 -20 -ツキ 🌔️ 5 5 501 -20 -トオカヤノツキ 🌔️ 5 5 501 -20 -トオカンヤノツキ 🌔️ 5 5 501 -20 -ツキ 🌕️ 5 5 501 -20 -マンゲツ 🌕️ 5 5 501 -20 -イマチヅキ 🌖️ 5 5 501 -20 -ツキ 🌖️ 5 5 501 -20 -ネマチヅキ 🌖️ 5 5 501 -20 -ネマチノツキ 🌖️ 5 5 501 -20 -カゲン 🌗️ 5 5 501 -20 -カゲンノツキ 🌗️ 5 5 501 -20 -ツキ 🌗️ 5 5 501 -20 -ハンゲツ 🌗️ 5 5 501 -20 -アリアケヅキ 🌘️ 5 5 501 -20 -ツキ 🌘️ 5 5 501 -20 -ミカヅキ 🌘️ 5 5 501 -20 -ツキ 🌙️ 5 5 501 -20 -ミカヅキ 🌙️ 5 5 501 -20 -カオ 🌚️ 5 5 501 -20 -カオノアルシンゲツ 🌚️ 5 5 501 -20 -シンゲツ 🌚️ 5 5 501 -20 -ツキ 🌚️ 5 5 501 -20 -カオ 🌛️ 5 5 501 -20 -カオノアルジョウゲンノツキ 🌛️ 5 5 501 -20 -ジョウゲンノツキ 🌛️ 5 5 501 -20 -ツキ 🌛️ 5 5 501 -20 -ミカヅキ 🌛️ 5 5 501 -20 -カオ 🌜️ 5 5 501 -20 -カオノアルカゲンノツキ 🌜️ 5 5 501 -20 -カゲンノツキ 🌜️ 5 5 501 -20 -ツキ 🌜️ 5 5 501 -20 -オンド 🌡️️ 5 5 501 -20 -オンドケイ 🌡️️ 5 5 501 -20 -キオン 🌡️️ 5 5 501 -20 -テンキ 🌡️️ 5 5 501 -20 -タイヨウ ☀️️ 5 5 501 -20 -ハレ ☀️️ 5 5 501 -20 -カオ 🌝️ 5 5 501 -20 -カオノアルマンゲツ 🌝️ 5 5 501 -20 -ツキ 🌝️ 5 5 501 -20 -カオ 🌞️ 5 5 501 -20 -カオノアルタイヨウ 🌞️ 5 5 501 -20 -タイヨウ 🌞️ 5 5 501 -20 -テンタイ 🪐️ 5 5 501 -20 -ドセイ 🪐️ 5 5 501 -20 -ホシ 🪐️ 5 5 501 -20 -リング 🪐️ 5 5 501 -20 -ワクセイ 🪐️ 5 5 501 -20 -ワノアルワクセイ 🪐️ 5 5 501 -20 -スター ⭐️ 5 5 501 -20 -ホシ ⭐️ 5 5 501 -20 -カガヤキ 🌟️ 5 5 501 -20 -キラキラ 🌟️ 5 5 501 -20 -キラキラボシ 🌟️ 5 5 501 -20 -スター 🌟️ 5 5 501 -20 -ホシ 🌟️ 5 5 501 -20 -スター 🌠️ 5 5 501 -20 -ナガレボシ 🌠️ 5 5 501 -20 -ホシ 🌠️ 5 5 501 -20 -アマノガワ 🌌️ 5 5 501 -20 -ギンガ 🌌️ 5 5 501 -20 -ホシゾラ 🌌️ 5 5 501 -20 -ミルキーウェイ 🌌️ 5 5 501 -20 -ヨゾラ 🌌️ 5 5 501 -20 -クモ ☁️️ 5 5 501 -20 -クモリ ☁️️ 5 5 501 -20 -テンキ ☁️️ 5 5 501 -20 -クモ ⛅️ 5 5 501 -20 -クモリ ⛅️ 5 5 501 -20 -クモリトキドキハレ ⛅️ 5 5 501 -20 -タイヨウ ⛅️ 5 5 501 -20 -テンキ ⛅️ 5 5 501 -20 -トキドキクモリ ⛅️ 5 5 501 -20 -アメ ⛈️️ 5 5 501 -20 -イナズマ ⛈️️ 5 5 501 -20 -イナヅマ ⛈️️ 5 5 501 -20 -カミナリ ⛈️️ 5 5 501 -20 -クモ ⛈️️ 5 5 501 -20 -テンキ ⛈️️ 5 5 501 -20 -ライウ ⛈️️ 5 5 501 -20 -クモ 🌤️️ 5 5 501 -20 -タイヨウ 🌤️️ 5 5 501 -20 -テンキ 🌤️️ 5 5 501 -20 -ハレ 🌤️️ 5 5 501 -20 -ハレトキドキクモリ 🌤️️ 5 5 501 -20 -クモ 🌥️️ 5 5 501 -20 -クモリ 🌥️️ 5 5 501 -20 -クモリイチジハレ 🌥️️ 5 5 501 -20 -タイヨウ 🌥️️ 5 5 501 -20 -テンキ 🌥️️ 5 5 501 -20 -アメトキドキハレ 🌦️️ 5 5 501 -20 -アメノチハレ 🌦️️ 5 5 501 -20 -クモ 🌦️️ 5 5 501 -20 -クモリ 🌦️️ 5 5 501 -20 -タイヨウ 🌦️️ 5 5 501 -20 -テンキ 🌦️️ 5 5 501 -20 -テンキアメ 🌦️️ 5 5 501 -20 -アマグモ 🌧️️ 5 5 501 -20 -アメ 🌧️️ 5 5 501 -20 -クモ 🌧️️ 5 5 501 -20 -テンキ 🌧️️ 5 5 501 -20 -クモ 🌨️️ 5 5 501 -20 -テンキ 🌨️️ 5 5 501 -20 -ユキ 🌨️️ 5 5 501 -20 -ユキグモ 🌨️️ 5 5 501 -20 -イナズマ 🌩️️ 5 5 501 -20 -イナヅマ 🌩️️ 5 5 501 -20 -カミナリ 🌩️️ 5 5 501 -20 -クモ 🌩️️ 5 5 501 -20 -テンキ 🌩️️ 5 5 501 -20 -ライウン 🌩️️ 5 5 501 -20 -タツマキ 🌪️️ 5 5 501 -20 -テンキ 🌪️️ 5 5 501 -20 -トップウ 🌪️️ 5 5 501 -20 -キリ 🌫️️ 5 5 501 -20 -テンキ 🌫️️ 5 5 501 -20 -カオ 🌬️️ 5 5 501 -20 -カオノアルカゼ 🌬️️ 5 5 501 -20 -カゼ 🌬️️ 5 5 501 -20 -ウズ 🌀️ 5 5 501 -20 -ウズマキ 🌀️ 5 5 501 -20 -クルクル 🌀️ 5 5 501 -20 -グルグル 🌀️ 5 5 501 -20 -サイクロン 🌀️ 5 5 501 -20 -タイフウ 🌀️ 5 5 501 -20 -ハリケーン 🌀️ 5 5 501 -20 -メマイ 🌀️ 5 5 501 -20 -モヤモヤ 🌀️ 5 5 501 -20 -ニジ 🌈️ 5 5 501 -20 -レインボー 🌈️ 5 5 501 -20 -アメ 🌂️ 5 5 501 -20 -カサ 🌂️ 5 5 501 -20 -テンキ 🌂️ 5 5 501 -20 -トジタカサ 🌂️ 5 5 501 -20 -モチモノ 🌂️ 5 5 501 -20 -アメ ☂️️ 5 5 501 -20 -カサ ☂️️ 5 5 501 -20 -テンキ ☂️️ 5 5 501 -20 -モチモノ ☂️️ 5 5 501 -20 -アメ ☔️ 5 5 501 -20 -カサ ☔️ 5 5 501 -20 -カサトアメ ☔️ 5 5 501 -20 -テンキ ☔️ 5 5 501 -20 -モチモノ ☔️ 5 5 501 -20 -カサ ⛱️️ 5 5 501 -20 -スナハマ ⛱️️ 5 5 501 -20 -パラソル ⛱️️ 5 5 501 -20 -ビーチ ⛱️️ 5 5 501 -20 -イナズマ ⚡️ 5 5 501 -20 -イナヅマ ⚡️ 5 5 501 -20 -カミナリ ⚡️ 5 5 501 -20 -キケン ⚡️ 5 5 501 -20 -コウデンアツ ⚡️ 5 5 501 -20 -デンキ ⚡️ 5 5 501 -20 -ケッショウ ❄️️ 5 5 501 -20 -ユキ ❄️️ 5 5 501 -20 -ユキノケッショウ ❄️️ 5 5 501 -20 -ユキ ☃️️ 5 5 501 -20 -ユキダルマ ☃️️ 5 5 501 -20 -ユキダルマトユキ ☃️️ 5 5 501 -20 -ユキ ⛄️ 5 5 501 -20 -ユキダルマ ⛄️ 5 5 501 -20 -ウチュウ ☄️️ 5 5 501 -20 -スイセイ ☄️️ 5 5 501 -20 -ヒ 🔥️ 5 5 501 -20 -ファイアー 🔥️ 5 5 501 -20 -ファイヤー 🔥️ 5 5 501 -20 -ホノオ 🔥️ 5 5 501 -20 -アセ 💧️ 5 5 501 -20 -シズク 💧️ 5 5 501 -20 -スイテキ 💧️ 5 5 501 -20 -タラーッ 💧️ 5 5 501 -20 -ナミダ 💧️ 5 5 501 -20 -ウミ 🌊️ 5 5 501 -20 -テンキ 🌊️ 5 5 501 -20 -ナミ 🌊️ 5 5 501 -20 -ハロウ 🌊️ 5 5 501 -20 -カボチャ 🎃️ 5 5 501 -20 -ハロウィン 🎃️ 5 5 501 -20 -ハロウィンカボチャ 🎃️ 5 5 501 -20 -ハロウィーン 🎃️ 5 5 501 -20 -クリスマス 🎄️ 5 5 501 -20 -クリスマスイブ 🎄️ 5 5 501 -20 -クリスマスツリー 🎄️ 5 5 501 -20 -ツリー 🎄️ 5 5 501 -20 -ウチアゲハナビ 🎆️ 5 5 501 -20 -オマツリ 🎆️ 5 5 501 -20 -ハナビ 🎆️ 5 5 501 -20 -ハナビタイカイ 🎆️ 5 5 501 -20 -オマツリ 🎇️ 5 5 501 -20 -センコウハナビ 🎇️ 5 5 501 -20 -ハナビ 🎇️ 5 5 501 -20 -カヤク 🧨️ 5 5 501 -20 -ダイナマイト 🧨️ 5 5 501 -20 -バクチク 🧨️ 5 5 501 -20 -バクハツ 🧨️ 5 5 501 -20 -バクヤク 🧨️ 5 5 501 -20 -キラキラ ✨️ 5 5 501 -20 -スター ✨️ 5 5 501 -20 -ピカピカ ✨️ 5 5 501 -20 -ホシ ✨️ 5 5 501 -20 -バルーン 🎈️ 5 5 501 -20 -フウセン 🎈️ 5 5 501 -20 -オイワイ 🎉️ 5 5 501 -20 -クラッカー 🎉️ 5 5 501 -20 -パーティー 🎉️ 5 5 501 -20 -パーティークラッカー 🎉️ 5 5 501 -20 -オイワイ 🎊️ 5 5 501 -20 -クスダマ 🎊️ 5 5 501 -20 -パーティー 🎊️ 5 5 501 -20 -タナバタ 🎋️ 5 5 501 -20 -タンザク 🎋️ 5 5 501 -20 -ニッポン 🎋️ 5 5 501 -20 -ニホン 🎋️ 5 5 501 -20 -ワ 🎋️ 5 5 501 -20 -オイワイ 🎍️ 5 5 501 -20 -カドマツ 🎍️ 5 5 501 -20 -ショウガツ 🎍️ 5 5 501 -20 -タケ 🎍️ 5 5 501 -20 -ニッポン 🎍️ 5 5 501 -20 -ニホン 🎍️ 5 5 501 -20 -ワ 🎍️ 5 5 501 -20 -オイワイ 🎎️ 5 5 501 -20 -オダイリサマ 🎎️ 5 5 501 -20 -オダイリヨウ 🎎️ 5 5 501 -20 -オヒナサマ 🎎️ 5 5 501 -20 -ニッポン 🎎️ 5 5 501 -20 -ニホン 🎎️ 5 5 501 -20 -ニンギョウ 🎎️ 5 5 501 -20 -ヒナマツリ 🎎️ 5 5 501 -20 -ワ 🎎️ 5 5 501 -20 -オイワイ 🎏️ 5 5 501 -20 -コイノボリ 🎏️ 5 5 501 -20 -コドモノヒ 🎏️ 5 5 501 -20 -カゼ 🎐️ 5 5 501 -20 -スズ 🎐️ 5 5 501 -20 -ナツ 🎐️ 5 5 501 -20 -フウリン 🎐️ 5 5 501 -20 -ジュウゴヤ 🎑️ 5 5 501 -20 -ジュウゴヨ 🎑️ 5 5 501 -20 -ススキ 🎑️ 5 5 501 -20 -ツキ 🎑️ 5 5 501 -20 -ツキミ 🎑️ 5 5 501 -20 -アカイフウトウ 🧧️ 5 5 501 -20 -オカネ 🧧️ 5 5 501 -20 -オトシダマ 🧧️ 5 5 501 -20 -コウウン 🧧️ 5 5 501 -20 -ゴシュウギ 🧧️ 5 5 501 -20 -ホンパオ 🧧️ 5 5 501 -20 -ホンボア 🧧️ 5 5 501 -20 -オイワイ 🎀️ 5 5 501 -20 -リボン 🎀️ 5 5 501 -20 -オイワイ 🎁️ 5 5 501 -20 -ギフト 🎁️ 5 5 501 -20 -ハコ 🎁️ 5 5 501 -20 -プレゼント 🎁️ 5 5 501 -20 -オイワイ 🎗️️ 5 5 501 -20 -リボン 🎗️️ 5 5 501 -20 -リマインダー 🎗️️ 5 5 501 -20 -リマインダーリボン 🎗️️ 5 5 501 -20 -チケット 🎟️️ 5 5 501 -20 -ニュウジョウケン 🎟️️ 5 5 501 -20 -ニュウジョウパス 🎟️️ 5 5 501 -20 -ハンケン 🎟️️ 5 5 501 -20 -キップ 🎫️ 5 5 501 -20 -チケット 🎫️ 5 5 501 -20 -オイワイ 🎖️️ 5 5 501 -20 -クンショウ 🎖️️ 5 5 501 -20 -ヒョウショウ 🎖️️ 5 5 501 -20 -メダル 🎖️️ 5 5 501 -20 -カップ 🏆️ 5 5 501 -20 -ショウハイ 🏆️ 5 5 501 -20 -トロフィー 🏆️ 5 5 501 -20 -ヒョウショウ 🏆️ 5 5 501 -20 -ユウショウカップ 🏆️ 5 5 501 -20 -スポーツ 🏅️ 5 5 501 -20 -ヒョウショウ 🏅️ 5 5 501 -20 -メダル 🏅️ 5 5 501 -20 -1イ 🥇️ 5 5 501 -20 -キン 🥇️ 5 5 501 -20 -キンメダル 🥇️ 5 5 501 -20 -ゴールド 🥇️ 5 5 501 -20 -メダル 🥇️ 5 5 501 -20 -2イ 🥈️ 5 5 501 -20 -ギン 🥈️ 5 5 501 -20 -ギンメダル 🥈️ 5 5 501 -20 -シルバー 🥈️ 5 5 501 -20 -メダル 🥈️ 5 5 501 -20 -3イ 🥉️ 5 5 501 -20 -ドウ 🥉️ 5 5 501 -20 -ドウメダル 🥉️ 5 5 501 -20 -ブロンズ 🥉️ 5 5 501 -20 -メダル 🥉️ 5 5 501 -20 -サッカー ⚽️ 5 5 501 -20 -サッカーボール ⚽️ 5 5 501 -20 -スポーツ ⚽️ 5 5 501 -20 -ボール ⚽️ 5 5 501 -20 -スポーツ ⚾️ 5 5 501 -20 -ボール ⚾️ 5 5 501 -20 -ヤキュウ ⚾️ 5 5 501 -20 -ヤキュウボール ⚾️ 5 5 501 -20 -スポーツ 🥎️ 5 5 501 -20 -ソフトボール 🥎️ 5 5 501 -20 -ヘタナゲ 🥎️ 5 5 501 -20 -ボール 🥎️ 5 5 501 -20 -スポーツ 🏀️ 5 5 501 -20 -バスケ 🏀️ 5 5 501 -20 -バスケットボール 🏀️ 5 5 501 -20 -ボール 🏀️ 5 5 501 -20 -スポーツ 🏐️ 5 5 501 -20 -バレー 🏐️ 5 5 501 -20 -バレーボール 🏐️ 5 5 501 -20 -ボール 🏐️ 5 5 501 -20 -アメフト 🏈️ 5 5 501 -20 -アメリカンフットボール 🏈️ 5 5 501 -20 -スポーツ 🏈️ 5 5 501 -20 -ボール 🏈️ 5 5 501 -20 -ラグビー 🏈️ 5 5 501 -20 -ラグビーボール 🏈️ 5 5 501 -20 -スポーツ 🏉️ 5 5 501 -20 -ボール 🏉️ 5 5 501 -20 -ラグビー 🏉️ 5 5 501 -20 -ラグビーボール 🏉️ 5 5 501 -20 -スポーツ 🎾️ 5 5 501 -20 -テニス 🎾️ 5 5 501 -20 -テニスボール 🎾️ 5 5 501 -20 -ボール 🎾️ 5 5 501 -20 -ラケット 🎾️ 5 5 501 -20 -アルティメット 🥏️ 5 5 501 -20 -フライングディスク 🥏️ 5 5 501 -20 -フリスビー 🥏️ 5 5 501 -20 -スポーツ 🎳️ 5 5 501 -20 -タマ 🎳️ 5 5 501 -20 -ボウリング 🎳️ 5 5 501 -20 -ボール 🎳️ 5 5 501 -20 -クリケット 🏏️ 5 5 501 -20 -スポーツ 🏏️ 5 5 501 -20 -バット 🏏️ 5 5 501 -20 -ボール 🏏️ 5 5 501 -20 -スティック 🏑️ 5 5 501 -20 -スポーツ 🏑️ 5 5 501 -20 -フィールドホッケー 🏑️ 5 5 501 -20 -ホッケー 🏑️ 5 5 501 -20 -ボール 🏑️ 5 5 501 -20 -アイスホッケー 🏒️ 5 5 501 -20 -スティック 🏒️ 5 5 501 -20 -スポーツ 🏒️ 5 5 501 -20 -パック 🏒️ 5 5 501 -20 -ホッケー 🏒️ 5 5 501 -20 -ゴール 🥍️ 5 5 501 -20 -スティック 🥍️ 5 5 501 -20 -スポーツ 🥍️ 5 5 501 -20 -ボール 🥍️ 5 5 501 -20 -ラクロス 🥍️ 5 5 501 -20 -スポーツ 🏓️ 5 5 501 -20 -タッキュウ 🏓️ 5 5 501 -20 -ピンポン 🏓️ 5 5 501 -20 -ボール 🏓️ 5 5 501 -20 -ラケット 🏓️ 5 5 501 -20 -シャトル 🏸️ 5 5 501 -20 -スポーツ 🏸️ 5 5 501 -20 -バドミントン 🏸️ 5 5 501 -20 -ラケット 🏸️ 5 5 501 -20 -グローブ 🥊️ 5 5 501 -20 -スポーツ 🥊️ 5 5 501 -20 -ボクシング 🥊️ 5 5 501 -20 -ボクシンググローブ 🥊️ 5 5 501 -20 -カラテ 🥋️ 5 5 501 -20 -ジュウドウ 🥋️ 5 5 501 -20 -スポーツ 🥋️ 5 5 501 -20 -テコンドー 🥋️ 5 5 501 -20 -ドウギ 🥋️ 5 5 501 -20 -ブドウ 🥋️ 5 5 501 -20 -ゴール 🥅️ 5 5 501 -20 -ゴールネット 🥅️ 5 5 501 -20 -スポーツ 🥅️ 5 5 501 -20 -ネット 🥅️ 5 5 501 -20 -ゴルフ ⛳️ 5 5 501 -20 -スポーツ ⛳️ 5 5 501 -20 -ハタ ⛳️ 5 5 501 -20 -フラグ ⛳️ 5 5 501 -20 -フラッグ ⛳️ 5 5 501 -20 -ホール ⛳️ 5 5 501 -20 -アイススケート ⛸️️ 5 5 501 -20 -スケート ⛸️️ 5 5 501 -20 -スポーツ ⛸️️ 5 5 501 -20 -フィギュアスケート ⛸️️ 5 5 501 -20 -サカナ 🎣️ 5 5 501 -20 -スポーツ 🎣️ 5 5 501 -20 -ツリ 🎣️ 5 5 501 -20 -ツリザオ 🎣️ 5 5 501 -20 -シュノーケリング 🤿️ 5 5 501 -20 -スキューバ 🤿️ 5 5 501 -20 -スポーツ 🤿️ 5 5 501 -20 -ダイビングマスク 🤿️ 5 5 501 -20 -マスク 🤿️ 5 5 501 -20 -エキデン 🎽️ 5 5 501 -20 -シャツ 🎽️ 5 5 501 -20 -スポーツ 🎽️ 5 5 501 -20 -タスキ 🎽️ 5 5 501 -20 -チョウキョリソウ 🎽️ 5 5 501 -20 -マラソン 🎽️ 5 5 501 -20 -ランニング 🎽️ 5 5 501 -20 -ランニングシャツ 🎽️ 5 5 501 -20 -イタ 🎿️ 5 5 501 -20 -スキー 🎿️ 5 5 501 -20 -スキーブーツ 🎿️ 5 5 501 -20 -ストック 🎿️ 5 5 501 -20 -スポーツ 🎿️ 5 5 501 -20 -ユキ 🎿️ 5 5 501 -20 -スケルトン 🛷️ 5 5 501 -20 -スポーツ 🛷️ 5 5 501 -20 -ソリ 🛷️ 5 5 501 -20 -ソリキョウギ 🛷️ 5 5 501 -20 -ボブスレー 🛷️ 5 5 501 -20 -リュージュ 🛷️ 5 5 501 -20 -カーリング 🥌️ 5 5 501 -20 -ストーン 🥌️ 5 5 501 -20 -スポーツ 🥌️ 5 5 501 -20 -アタリ 🎯️ 5 5 501 -20 -スポーツ 🎯️ 5 5 501 -20 -ダーツ 🎯️ 5 5 501 -20 -テキ 🎯️ 5 5 501 -20 -ブルズアイ 🎯️ 5 5 501 -20 -マト 🎯️ 5 5 501 -20 -オモチャ 🪀️ 5 5 501 -20 -カイテン 🪀️ 5 5 501 -20 -ガング 🪀️ 5 5 501 -20 -ヨーヨー 🪀️ 5 5 501 -20 -オモチャ 🪁️ 5 5 501 -20 -カイト 🪁️ 5 5 501 -20 -ガング 🪁️ 5 5 501 -20 -タコ 🪁️ 5 5 501 -20 -タコアゲ 🪁️ 5 5 501 -20 -ケンジュウ 🔫️ 5 5 501 -20 -ジュウ 🔫️ 5 5 501 -20 -ピストル 🔫️ 5 5 501 -20 -ブキ 🔫️ 5 5 501 -20 -ミズデッポウ 🔫️ 5 5 501 -20 -リボルバー 🔫️ 5 5 501 -20 -エイトボール 🎱️ 5 5 501 -20 -スポーツ 🎱️ 5 5 501 -20 -ビリヤード 🎱️ 5 5 501 -20 -ボール 🎱️ 5 5 501 -20 -ウラナイ 🔮️ 5 5 501 -20 -ウンメイ 🔮️ 5 5 501 -20 -スイショウ 🔮️ 5 5 501 -20 -スイショウダマ 🔮️ 5 5 501 -20 -タマ 🔮️ 5 5 501 -20 -ツエ 🪄️ 5 5 501 -20 -マジュツ 🪄️ 5 5 501 -20 -マホウノツエ 🪄️ 5 5 501 -20 -ゲーム 🎮️ 5 5 501 -20 -コントローラ 🎮️ 5 5 501 -20 -コントローラー 🎮️ 5 5 501 -20 -テレビゲーム 🎮️ 5 5 501 -20 -ビデオゲーム 🎮️ 5 5 501 -20 -ゲーム 🕹️️ 5 5 501 -20 -コントローラ 🕹️️ 5 5 501 -20 -ジョイスティック 🕹️️ 5 5 501 -20 -スティック 🕹️️ 5 5 501 -20 -テレビゲーム 🕹️️ 5 5 501 -20 -スリーセブン 🎰️ 5 5 501 -20 -スロット 🎰️ 5 5 501 -20 -スロットマシン 🎰️ 5 5 501 -20 -ゲーム 🎲️ 5 5 501 -20 -サイコロ 🎲️ 5 5 501 -20 -ダイス 🎲️ 5 5 501 -20 -カギ 🧩️ 5 5 501 -20 -クミアワセ 🧩️ 5 5 501 -20 -ジグソーパズル 🧩️ 5 5 501 -20 -パズル 🧩️ 5 5 501 -20 -ピース 🧩️ 5 5 501 -20 -オモチャ 🧸️ 5 5 501 -20 -ガング 🧸️ 5 5 501 -20 -クマ 🧸️ 5 5 501 -20 -テディベア 🧸️ 5 5 501 -20 -ヌイグルミ 🧸️ 5 5 501 -20 -オイワイ 🪅️ 5 5 501 -20 -タンジョウビ 🪅️ 5 5 501 -20 -ニンギョウ 🪅️ 5 5 501 -20 -パーティー 🪅️ 5 5 501 -20 -ピニャータ 🪅️ 5 5 501 -20 -キラキラ 🪩️ 5 5 501 -20 -ダンス 🪩️ 5 5 501 -20 -ディスコ 🪩️ 5 5 501 -20 -パーティー 🪩️ 5 5 501 -20 -ミラーボール 🪩️ 5 5 501 -20 -イレコ 🪆️ 5 5 501 -20 -ニンギョウ 🪆️ 5 5 501 -20 -マトリョーシカ 🪆️ 5 5 501 -20 -ロシア 🪆️ 5 5 501 -20 -カード ♠️️ 5 5 501 -20 -スペード ♠️️ 5 5 501 -20 -トランプ ♠️️ 5 5 501 -20 -カード ♥️️ 5 5 501 -20 -トランプ ♥️️ 5 5 501 -20 -ハート ♥️️ 5 5 501 -20 -カード ♦️️ 5 5 501 -20 -ダイア ♦️️ 5 5 501 -20 -ダイヤ ♦️️ 5 5 501 -20 -トランプ ♦️️ 5 5 501 -20 -カード ♣️️ 5 5 501 -20 -クラブ ♣️️ 5 5 501 -20 -クローバー ♣️️ 5 5 501 -20 -トランプ ♣️️ 5 5 501 -20 -コマ ♟️️ 5 5 501 -20 -ステコマ ♟️️ 5 5 501 -20 -ステゴマ ♟️️ 5 5 501 -20 -チェス ♟️️ 5 5 501 -20 -チェスノコマ ♟️️ 5 5 501 -20 -カード 🃏️ 5 5 501 -20 -ジジ 🃏️ 5 5 501 -20 -ジョーカー 🃏️ 5 5 501 -20 -トランプ 🃏️ 5 5 501 -20 -ババ 🃏️ 5 5 501 -20 -ゲーム 🀄️ 5 5 501 -20 -ジャンパイ 🀄️ 5 5 501 -20 -パイ 🀄️ 5 5 501 -20 -マージャン 🀄️ 5 5 501 -20 -マージャンパイ 🀄️ 5 5 501 -20 -カード 🎴️ 5 5 501 -20 -ゲーム 🎴️ 5 5 501 -20 -ハナフダ 🎴️ 5 5 501 -20 -エンゲイ 🎭️ 5 5 501 -20 -エンゲキ 🎭️ 5 5 501 -20 -カメン 🎭️ 5 5 501 -20 -ゲイジュツ 🎭️ 5 5 501 -20 -ゲキジョウ 🎭️ 5 5 501 -20 -ブタイゲイジュツ 🎭️ 5 5 501 -20 -エ 🖼️️ 5 5 501 -20 -カイガ 🖼️️ 5 5 501 -20 -ゲイジュツ 🖼️️ 5 5 501 -20 -ビジュツカン 🖼️️ 5 5 501 -20 -アート 🎨️ 5 5 501 -20 -エ 🎨️ 5 5 501 -20 -エノグパレット 🎨️ 5 5 501 -20 -パレット 🎨️ 5 5 501 -20 -ビジュツカン 🎨️ 5 5 501 -20 -フデ 🎨️ 5 5 501 -20 -イト 🧵️ 5 5 501 -20 -イトマキ 🧵️ 5 5 501 -20 -サイホウ 🧵️ 5 5 501 -20 -ヌイバリ 🧵️ 5 5 501 -20 -ヒモ 🧵️ 5 5 501 -20 -サイホウ 🪡️ 5 5 501 -20 -シシュウ 🪡️ 5 5 501 -20 -ステッチ 🪡️ 5 5 501 -20 -ヌイバリ 🪡️ 5 5 501 -20 -ヌウ 🪡️ 5 5 501 -20 -ハリ 🪡️ 5 5 501 -20 -アミモノ 🧶️ 5 5 501 -20 -カギバリ 🧶️ 5 5 501 -20 -ケイト 🧶️ 5 5 501 -20 -ケイトダマ 🧶️ 5 5 501 -20 -ニット 🧶️ 5 5 501 -20 -ツナ 🪢️ 5 5 501 -20 -ネジレ 🪢️ 5 5 501 -20 -ノット 🪢️ 5 5 501 -20 -ヒモ 🪢️ 5 5 501 -20 -ムスビメ 🪢️ 5 5 501 -20 -ロープ 🪢️ 5 5 501 -20 -メガネ 👓️ 5 5 501 -20 -サングラス 🕶️️ 5 5 501 -20 -メガネ 🕶️️ 5 5 501 -20 -ゴーグル 🥽️ 5 5 501 -20 -スイエイ 🥽️ 5 5 501 -20 -ホゴメガネ 🥽️ 5 5 501 -20 -ヨウセツ 🥽️ 5 5 501 -20 -イシャ 🥼️ 5 5 501 -20 -カガクシャ 🥼️ 5 5 501 -20 -ジッケン 🥼️ 5 5 501 -20 -ハクイ 🥼️ 5 5 501 -20 -アンゼンベスト 🦺️ 5 5 501 -20 -キンキュウ 🦺️ 5 5 501 -20 -コウジ 🦺️ 5 5 501 -20 -チョッキ 🦺️ 5 5 501 -20 -ハンシャ 🦺️ 5 5 501 -20 -ベスト 🦺️ 5 5 501 -20 -シャツ 👔️ 5 5 501 -20 -タイ 👔️ 5 5 501 -20 -ネクタイ 👔️ 5 5 501 -20 -フク 👔️ 5 5 501 -20 -ワイシャツ 👔️ 5 5 501 -20 -tシャツ 👕️ 5 5 501 -20 -シャツ 👕️ 5 5 501 -20 -ティーシャツ 👕️ 5 5 501 -20 -フク 👕️ 5 5 501 -20 -ジーパン 👖️ 5 5 501 -20 -ジーンズ 👖️ 5 5 501 -20 -ズボン 👖️ 5 5 501 -20 -デニム 👖️ 5 5 501 -20 -パンツ 👖️ 5 5 501 -20 -フク 👖️ 5 5 501 -20 -エリマキ 🧣️ 5 5 501 -20 -クビマキ 🧣️ 5 5 501 -20 -スカーフ 🧣️ 5 5 501 -20 -マフラー 🧣️ 5 5 501 -20 -テブクロ 🧤️ 5 5 501 -20 -アウター 🧥️ 5 5 501 -20 -オーバー 🧥️ 5 5 501 -20 -コート 🧥️ 5 5 501 -20 -ジャケット 🧥️ 5 5 501 -20 -フク 🧥️ 5 5 501 -20 -クツシタ 🧦️ 5 5 501 -20 -ソックス 🧦️ 5 5 501 -20 -ドレス 👗️ 5 5 501 -20 -フク 👗️ 5 5 501 -20 -ワンピース 👗️ 5 5 501 -20 -キモノ 👘️ 5 5 501 -20 -フク 👘️ 5 5 501 -20 -サリー 🥻️ 5 5 501 -20 -フク 🥻️ 5 5 501 -20 -ミンゾクイショウ 🥻️ 5 5 501 -20 -スイムウェア 🩱️ 5 5 501 -20 -ミズギ 🩱️ 5 5 501 -20 -ワンピースノミズギ 🩱️ 5 5 501 -20 -シタギ 🩲️ 5 5 501 -20 -スイムウェア 🩲️ 5 5 501 -20 -パンツ 🩲️ 5 5 501 -20 -ブリーフ 🩲️ 5 5 501 -20 -ミズギ 🩲️ 5 5 501 -20 -シタギ 🩳️ 5 5 501 -20 -ショーツ 🩳️ 5 5 501 -20 -スイムウェア 🩳️ 5 5 501 -20 -パンツ 🩳️ 5 5 501 -20 -ミズギ 🩳️ 5 5 501 -20 -ビキニ 👙️ 5 5 501 -20 -フク 👙️ 5 5 501 -20 -ミズギ 👙️ 5 5 501 -20 -シャツ 👚️ 5 5 501 -20 -フク 👚️ 5 5 501 -20 -フジンフク 👚️ 5 5 501 -20 -ブラウス 👚️ 5 5 501 -20 -アオグ 🪭️ 5 5 501 -20 -ウチワ 🪭️ 5 5 501 -20 -オウギ 🪭️ 5 5 501 -20 -カゼ 🪭️ 5 5 501 -20 -センス 🪭️ 5 5 501 -20 -ナツ 🪭️ 5 5 501 -20 -ガマグチ 👛️ 5 5 501 -20 -ガマグチザイフ 👛️ 5 5 501 -20 -コゼニイレ 👛️ 5 5 501 -20 -サイフ 👛️ 5 5 501 -20 -カバン 👜️ 5 5 501 -20 -ハンドバッグ 👜️ 5 5 501 -20 -バッグ 👜️ 5 5 501 -20 -バッグ 👝️ 5 5 501 -20 -ポーチ 👝️ 5 5 501 -20 -カミテサゲ 🛍️️ 5 5 501 -20 -カミブクロ 🛍️️ 5 5 501 -20 -ショッピングバッグ 🛍️️ 5 5 501 -20 -バッグ 🛍️️ 5 5 501 -20 -カバン 🎒️ 5 5 501 -20 -ガッコウ 🎒️ 5 5 501 -20 -ショウガクセイ 🎒️ 5 5 501 -20 -ショウガッコウ 🎒️ 5 5 501 -20 -バックパック 🎒️ 5 5 501 -20 -ランドセル 🎒️ 5 5 501 -20 -リュックサック 🎒️ 5 5 501 -20 -クツ 🩴️ 5 5 501 -20 -ゴムゾウリ 🩴️ 5 5 501 -20 -サンダル 🩴️ 5 5 501 -20 -トングサンダル 🩴️ 5 5 501 -20 -ビーサン 🩴️ 5 5 501 -20 -ビーチサンダル 🩴️ 5 5 501 -20 -カワグツ 👞️ 5 5 501 -20 -クツ 👞️ 5 5 501 -20 -シンシグツ 👞️ 5 5 501 -20 -ローファー 👞️ 5 5 501 -20 -アスレチックシューズ 👟️ 5 5 501 -20 -クツ 👟️ 5 5 501 -20 -シューズ 👟️ 5 5 501 -20 -スニーカー 👟️ 5 5 501 -20 -キャンプ 🥾️ 5 5 501 -20 -トザンクツ 🥾️ 5 5 501 -20 -トザングツ 🥾️ 5 5 501 -20 -ハイキング 🥾️ 5 5 501 -20 -ハイキングシューズ 🥾️ 5 5 501 -20 -バックパック 🥾️ 5 5 501 -20 -ブーツ 🥾️ 5 5 501 -20 -スリッポン 🥿️ 5 5 501 -20 -バレエシューズ 🥿️ 5 5 501 -20 -フラットシューズ 🥿️ 5 5 501 -20 -ペタンコクツ 🥿️ 5 5 501 -20 -クツ 👠️ 5 5 501 -20 -ハイヒール 👠️ 5 5 501 -20 -ヒール 👠️ 5 5 501 -20 -ピンヒール 👠️ 5 5 501 -20 -フク 👠️ 5 5 501 -20 -クツ 👡️ 5 5 501 -20 -サンダル 👡️ 5 5 501 -20 -フク 👡️ 5 5 501 -20 -クツ 🩰️ 5 5 501 -20 -シューズ 🩰️ 5 5 501 -20 -ダンス 🩰️ 5 5 501 -20 -トウシューズ 🩰️ 5 5 501 -20 -バレエ 🩰️ 5 5 501 -20 -クツ 👢️ 5 5 501 -20 -フク 👢️ 5 5 501 -20 -ブーツ 👢️ 5 5 501 -20 -ロングブーツ 👢️ 5 5 501 -20 -アフロ 🪮️ 5 5 501 -20 -アフロコーム 🪮️ 5 5 501 -20 -カミ 🪮️ 5 5 501 -20 -クシ 🪮️ 5 5 501 -20 -コーム 🪮️ 5 5 501 -20 -ブラシ 🪮️ 5 5 501 -20 -ヘアピック 🪮️ 5 5 501 -20 -オウカン 👑️ 5 5 501 -20 -カンムリ 👑️ 5 5 501 -20 -クラウン 👑️ 5 5 501 -20 -オンナノボウシ 👒️ 5 5 501 -20 -フジンボウシ 👒️ 5 5 501 -20 -ボウシ 👒️ 5 5 501 -20 -ムギワラ 👒️ 5 5 501 -20 -ムギワラボウシ 👒️ 5 5 501 -20 -シルクハット 🎩️ 5 5 501 -20 -ボウシ 🎩️ 5 5 501 -20 -カクボウ 🎓️ 5 5 501 -20 -ソツギョウ 🎓️ 5 5 501 -20 -ソツギョウシキ 🎓️ 5 5 501 -20 -ボウシ 🎓️ 5 5 501 -20 -キャップ 🧢️ 5 5 501 -20 -ボウシ 🧢️ 5 5 501 -20 -ヤキュウボウ 🧢️ 5 5 501 -20 -グンタイ 🪖️ 5 5 501 -20 -グンヨウヘルメット 🪖️ 5 5 501 -20 -セントウ 🪖️ 5 5 501 -20 -ヘイシ 🪖️ 5 5 501 -20 -ヘルメット 🪖️ 5 5 501 -20 -ミリタリー 🪖️ 5 5 501 -20 -キュウキュウ ⛑️️ 5 5 501 -20 -シロジュウジ ⛑️️ 5 5 501 -20 -シロジュウジヘルメット ⛑️️ 5 5 501 -20 -ハクジュウジ ⛑️️ 5 5 501 -20 -ハクジュウジヘルメット ⛑️️ 5 5 501 -20 -ヘルメット ⛑️️ 5 5 501 -20 -イノル 📿️ 5 5 501 -20 -ジュズ 📿️ 5 5 501 -20 -ネックレス 📿️ 5 5 501 -20 -ネンジュ 📿️ 5 5 501 -20 -ネンズ 📿️ 5 5 501 -20 -ロザリオ 📿️ 5 5 501 -20 -クチベニ 💄️ 5 5 501 -20 -ケショウ 💄️ 5 5 501 -20 -リップ 💄️ 5 5 501 -20 -リップスティック 💄️ 5 5 501 -20 -ジュエリー 💍️ 5 5 501 -20 -ダイア 💍️ 5 5 501 -20 -ダイヤ 💍️ 5 5 501 -20 -ユビワ 💍️ 5 5 501 -20 -リング 💍️ 5 5 501 -20 -ジュエリー 💎️ 5 5 501 -20 -ダイア 💎️ 5 5 501 -20 -ダイヤ 💎️ 5 5 501 -20 -ホウセキ 💎️ 5 5 501 -20 -オトナシ 🔇️ 5 5 501 -20 -ショウオン 🔇️ 5 5 501 -20 -スピーカー 🔇️ 5 5 501 -20 -スピーカーショウオン 🔇️ 5 5 501 -20 -ミュート 🔇️ 5 5 501 -20 -オンリョウ 🔈️ 5 5 501 -20 -スピーカー 🔈️ 5 5 501 -20 -ボリューム 🔈️ 5 5 501 -20 -オンリョウ 🔉️ 5 5 501 -20 -オンリョウショウ 🔉️ 5 5 501 -20 -スピーカー 🔉️ 5 5 501 -20 -スピーカーオンリョウショウ 🔉️ 5 5 501 -20 -ボリューム 🔉️ 5 5 501 -20 -オンリョウ 🔊️ 5 5 501 -20 -オンリョウダイ 🔊️ 5 5 501 -20 -スピーカー 🔊️ 5 5 501 -20 -スピーカーオンリョウダイ 🔊️ 5 5 501 -20 -ダイオンリョウ 🔊️ 5 5 501 -20 -ボリューム 🔊️ 5 5 501 -20 -カクセイキ 📢️ 5 5 501 -20 -スピーカー 📢️ 5 5 501 -20 -メガホン 📢️ 5 5 501 -20 -カクセイキ 📣️ 5 5 501 -20 -スピーカー 📣️ 5 5 501 -20 -メガホン 📣️ 5 5 501 -20 -ユウビン 📯️ 5 5 501 -20 -ユウビンラッパ 📯️ 5 5 501 -20 -ラッパ 📯️ 5 5 501 -20 -カネ 🔔️ 5 5 501 -20 -スズ 🔔️ 5 5 501 -20 -チャペル 🔔️ 5 5 501 -20 -ベル 🔔️ 5 5 501 -20 -オトナシ 🔕️ 5 5 501 -20 -カネ 🔕️ 5 5 501 -20 -ショウオン 🔕️ 5 5 501 -20 -スズ 🔕️ 5 5 501 -20 -ベルショウオン 🔕️ 5 5 501 -20 -ミュート 🔕️ 5 5 501 -20 -オンガク 🎼️ 5 5 501 -20 -ガクフ 🎼️ 5 5 501 -20 -ゴセン 🎼️ 5 5 501 -20 -ゴセンフ 🎼️ 5 5 501 -20 -スコア 🎼️ 5 5 501 -20 -トオンキゴウ 🎼️ 5 5 501 -20 -オンガク 🎵️ 5 5 501 -20 -オンプ 🎵️ 5 5 501 -20 -ハチブオンプ 🎵️ 5 5 501 -20 -レンプ 🎵️ 5 5 501 -20 -オンガク 🎶️ 5 5 501 -20 -オンプ 🎶️ 5 5 501 -20 -ハチブオンプ 🎶️ 5 5 501 -20 -フクスウノオンプ 🎶️ 5 5 501 -20 -オンガク 🎙️️ 5 5 501 -20 -スタジオマイク 🎙️️ 5 5 501 -20 -マイク 🎙️️ 5 5 501 -20 -オンガク 🎚️️ 5 5 501 -20 -スライダー 🎚️️ 5 5 501 -20 -レベル 🎚️️ 5 5 501 -20 -レベルスライダー 🎚️️ 5 5 501 -20 -オンガク 🎛️️ 5 5 501 -20 -コントロール 🎛️️ 5 5 501 -20 -コントロールツマミ 🎛️️ 5 5 501 -20 -ツマミ 🎛️️ 5 5 501 -20 -ノブ 🎛️️ 5 5 501 -20 -ウタ 🎤️ 5 5 501 -20 -オンガク 🎤️ 5 5 501 -20 -カラオケ 🎤️ 5 5 501 -20 -マイク 🎤️ 5 5 501 -20 -イヤフォン 🎧️ 5 5 501 -20 -イヤホン 🎧️ 5 5 501 -20 -オンガク 🎧️ 5 5 501 -20 -ヘッドフォン 🎧️ 5 5 501 -20 -ヘッドホン 🎧️ 5 5 501 -20 -オンガク 📻️ 5 5 501 -20 -ジュシンキ 📻️ 5 5 501 -20 -ホウソウ 📻️ 5 5 501 -20 -ラジオ 📻️ 5 5 501 -20 -オンガク 🎷️ 5 5 501 -20 -ガッキ 🎷️ 5 5 501 -20 -サキソフォン 🎷️ 5 5 501 -20 -サクソフォン 🎷️ 5 5 501 -20 -サックス 🎷️ 5 5 501 -20 -アコーディオン 🪗️ 5 5 501 -20 -オンガク 🪗️ 5 5 501 -20 -ガッキ 🪗️ 5 5 501 -20 -ジャバラ 🪗️ 5 5 501 -20 -オンガク 🎸️ 5 5 501 -20 -ガッキ 🎸️ 5 5 501 -20 -ギター 🎸️ 5 5 501 -20 -オンガク 🎹️ 5 5 501 -20 -ガッキ 🎹️ 5 5 501 -20 -キーボード 🎹️ 5 5 501 -20 -ケンバン 🎹️ 5 5 501 -20 -ピアノ 🎹️ 5 5 501 -20 -オンガク 🎺️ 5 5 501 -20 -ガッキ 🎺️ 5 5 501 -20 -トランペット 🎺️ 5 5 501 -20 -ラッパ 🎺️ 5 5 501 -20 -オンガク 🎻️ 5 5 501 -20 -ガッキ 🎻️ 5 5 501 -20 -バイオリン 🎻️ 5 5 501 -20 -ヴィオラ 🎻️ 5 5 501 -20 -オンガク 🪕️ 5 5 501 -20 -ガッキ 🪕️ 5 5 501 -20 -バンジョー 🪕️ 5 5 501 -20 -オンガク 🥁️ 5 5 501 -20 -ガッキ 🥁️ 5 5 501 -20 -タイコ 🥁️ 5 5 501 -20 -ドラム 🥁️ 5 5 501 -20 -オンガク 🪘️ 5 5 501 -20 -ガッキ 🪘️ 5 5 501 -20 -コンガ 🪘️ 5 5 501 -20 -タイコ 🪘️ 5 5 501 -20 -ビート 🪘️ 5 5 501 -20 -リズム 🪘️ 5 5 501 -20 -オンガク 🪇️ 5 5 501 -20 -ガッキ 🪇️ 5 5 501 -20 -シェイカー 🪇️ 5 5 501 -20 -マラカス 🪇️ 5 5 501 -20 -リズム 🪇️ 5 5 501 -20 -オンガク 🪈️ 5 5 501 -20 -ガッキ 🪈️ 5 5 501 -20 -スイソウガク 🪈️ 5 5 501 -20 -フエ 🪈️ 5 5 501 -20 -フルート 🪈️ 5 5 501 -20 -リコーダー 🪈️ 5 5 501 -20 -ケイタイ 📱️ 5 5 501 -20 -ケイタイデンワ 📱️ 5 5 501 -20 -スマホ 📱️ 5 5 501 -20 -スマートフォン 📱️ 5 5 501 -20 -ケイタイ 📲️ 5 5 501 -20 -ケイタイジュシン 📲️ 5 5 501 -20 -ケイタイデンワ 📲️ 5 5 501 -20 -ジュシン 📲️ 5 5 501 -20 -スマホ 📲️ 5 5 501 -20 -スマートフォン 📲️ 5 5 501 -20 -チャクシンチュウ 📲️ 5 5 501 -20 -デンワハッシン 📲️ 5 5 501 -20 -オヤキ ☎️️ 5 5 501 -20 -クロデンワ ☎️️ 5 5 501 -20 -コテイデンワ ☎️️ 5 5 501 -20 -デンワ ☎️️ 5 5 501 -20 -プッシュホン ☎️️ 5 5 501 -20 -ボタンシキデンワ ☎️️ 5 5 501 -20 -コキ 📞️ 5 5 501 -20 -ジュワキ 📞️ 5 5 501 -20 -デンワ 📞️ 5 5 501 -20 -ページャー 📟️ 5 5 501 -20 -ポケットベル 📟️ 5 5 501 -20 -ポケベル 📟️ 5 5 501 -20 -fax 📠️ 5 5 501 -20 -デンワ 📠️ 5 5 501 -20 -ファックス 📠️ 5 5 501 -20 -フクゴウキ 📠️ 5 5 501 -20 -カンデンチ 🔋️ 5 5 501 -20 -デンチ 🔋️ 5 5 501 -20 -バッテリー 🔋️ 5 5 501 -20 -ジュウデンブソク 🪫️ 5 5 501 -20 -ジュウデンヤバイ 🪫️ 5 5 501 -20 -デンチザンリョウテイカ 🪫️ 5 5 501 -20 -バッテリー 🪫️ 5 5 501 -20 -バッテリーザンリョウテイカ 🪫️ 5 5 501 -20 -バッテリーブソク 🪫️ 5 5 501 -20 -コンセント 🔌️ 5 5 501 -20 -デンゲン 🔌️ 5 5 501 -20 -プラグ 🔌️ 5 5 501 -20 -pc 💻️ 5 5 501 -20 -コンピュータ 💻️ 5 5 501 -20 -コンピューター 💻️ 5 5 501 -20 -ノートパソコン 💻️ 5 5 501 -20 -パソコン 💻️ 5 5 501 -20 -ラップトップ 💻️ 5 5 501 -20 -pc 🖥️️ 5 5 501 -20 -コンピューター 🖥️️ 5 5 501 -20 -デスクトップ 🖥️️ 5 5 501 -20 -デスクトップパソコン 🖥️️ 5 5 501 -20 -パソコン 🖥️️ 5 5 501 -20 -ピーシー 🖥️️ 5 5 501 -20 -インサツキ 🖨️️ 5 5 501 -20 -コピーキ 🖨️️ 5 5 501 -20 -フクゴウキ 🖨️️ 5 5 501 -20 -プリンタ 🖨️️ 5 5 501 -20 -プリンター 🖨️️ 5 5 501 -20 -pc ⌨️️ 5 5 501 -20 -キーボード ⌨️️ 5 5 501 -20 -コンピューター ⌨️️ 5 5 501 -20 -パソコン ⌨️️ 5 5 501 -20 -ピーシー ⌨️️ 5 5 501 -20 -pc 🖱️️ 5 5 501 -20 -コンピューター 🖱️️ 5 5 501 -20 -パソコン 🖱️️ 5 5 501 -20 -ピーシー 🖱️️ 5 5 501 -20 -マウス 🖱️️ 5 5 501 -20 -pc 🖲️️ 5 5 501 -20 -コンピューター 🖲️️ 5 5 501 -20 -トラックボール 🖲️️ 5 5 501 -20 -パソコン 🖲️️ 5 5 501 -20 -ピーシー 🖲️️ 5 5 501 -20 -md 💽️ 5 5 501 -20 -mo 💽️ 5 5 501 -20 -エムオー 💽️ 5 5 501 -20 -エムディー 💽️ 5 5 501 -20 -コンピューター 💽️ 5 5 501 -20 -ミニディスク 💽️ 5 5 501 -20 -fd 💾️ 5 5 501 -20 -エフディー 💾️ 5 5 501 -20 -コンピューター 💾️ 5 5 501 -20 -ディスク 💾️ 5 5 501 -20 -フロッピー 💾️ 5 5 501 -20 -フロッピーディスク 💾️ 5 5 501 -20 -cd 💿️ 5 5 501 -20 -dvd 💿️ 5 5 501 -20 -シーディー 💿️ 5 5 501 -20 -ディスク 💿️ 5 5 501 -20 -ブルレイ 💿️ 5 5 501 -20 -ブルーレイ 💿️ 5 5 501 -20 -cd 📀️ 5 5 501 -20 -dvd 📀️ 5 5 501 -20 -シーディー 📀️ 5 5 501 -20 -ディスク 📀️ 5 5 501 -20 -ブルレイ 📀️ 5 5 501 -20 -ブルーレイ 📀️ 5 5 501 -20 -アバカス 🧮️ 5 5 501 -20 -ソロバン 🧮️ 5 5 501 -20 -エイガ 🎥️ 5 5 501 -20 -エイガカメラ 🎥️ 5 5 501 -20 -カメラ 🎥️ 5 5 501 -20 -ムービー 🎥️ 5 5 501 -20 -エイガ 🎞️️ 5 5 501 -20 -エイガフィルム 🎞️️ 5 5 501 -20 -フィルム 🎞️️ 5 5 501 -20 -フレーム 🎞️️ 5 5 501 -20 -ムービー 🎞️️ 5 5 501 -20 -エイガ 📽️️ 5 5 501 -20 -エイシャキ 📽️️ 5 5 501 -20 -プロジェクター 📽️️ 5 5 501 -20 -ムービー 📽️️ 5 5 501 -20 -エイガ 🎬️ 5 5 501 -20 -カチンコ 🎬️ 5 5 501 -20 -テレビ 📺️ 5 5 501 -20 -ビデオ 📺️ 5 5 501 -20 -カメラ 📷️ 5 5 501 -20 -シャシン 📷️ 5 5 501 -20 -カメラ 📸️ 5 5 501 -20 -カメラフラッシュ 📸️ 5 5 501 -20 -シャシン 📸️ 5 5 501 -20 -フラッシュ 📸️ 5 5 501 -20 -フラッシュヲタイテイルカメラ 📸️ 5 5 501 -20 -カメラ 📹️ 5 5 501 -20 -ドウガ 📹️ 5 5 501 -20 -ビデオ 📹️ 5 5 501 -20 -ビデオカメラ 📹️ 5 5 501 -20 -ムービー 📹️ 5 5 501 -20 -vhs 📼️ 5 5 501 -20 -ドウガ 📼️ 5 5 501 -20 -ビデオ 📼️ 5 5 501 -20 -ビデオカセット 📼️ 5 5 501 -20 -ビデオテープ 📼️ 5 5 501 -20 -ブイエッチエス 📼️ 5 5 501 -20 -ケンサク 🔍️ 5 5 501 -20 -ムシメガネ 🔍️ 5 5 501 -20 -ムシメガネヒダリ 🔍️ 5 5 501 -20 -ルーペ 🔍️ 5 5 501 -20 -ケンサク 🔎️ 5 5 501 -20 -ショウサイ 🔎️ 5 5 501 -20 -ムシメガネ 🔎️ 5 5 501 -20 -ムシメガネミギ 🔎️ 5 5 501 -20 -ルーペ 🔎️ 5 5 501 -20 -アカリ 🕯️️ 5 5 501 -20 -キャンドル 🕯️️ 5 5 501 -20 -ロウソク 🕯️️ 5 5 501 -20 -アカリ 💡️ 5 5 501 -20 -デンキュウ 💡️ 5 5 501 -20 -ヒラメキ 💡️ 5 5 501 -20 -ピコーン 💡️ 5 5 501 -20 -アカリ 🔦️ 5 5 501 -20 -カイチュウデントウ 🔦️ 5 5 501 -20 -デントウ 🔦️ 5 5 501 -20 -ライト 🔦️ 5 5 501 -20 -アカチョウチン 🏮️ 5 5 501 -20 -イザカヤ 🏮️ 5 5 501 -20 -チョウチン 🏮️ 5 5 501 -20 -ノミヤ 🏮️ 5 5 501 -20 -アカリ 🪔️ 5 5 501 -20 -オイル 🪔️ 5 5 501 -20 -ディヤランプ 🪔️ 5 5 501 -20 -ランプ 🪔️ 5 5 501 -20 -ノート 📔️ 5 5 501 -20 -ヒョウシツキノート 📔️ 5 5 501 -20 -ブング 📔️ 5 5 501 -20 -ブンボウグ 📔️ 5 5 501 -20 -ショセキ 📕️ 5 5 501 -20 -トジタホン 📕️ 5 5 501 -20 -ブンボウグ 📕️ 5 5 501 -20 -ホン 📕️ 5 5 501 -20 -ショセキ 📖️ 5 5 501 -20 -ヒライタホン 📖️ 5 5 501 -20 -ブンボウグ 📖️ 5 5 501 -20 -ホン 📖️ 5 5 501 -20 -ショセキ 📗️ 5 5 501 -20 -ブンボウグ 📗️ 5 5 501 -20 -ホン 📗️ 5 5 501 -20 -ミドリノホン 📗️ 5 5 501 -20 -アオイホン 📘️ 5 5 501 -20 -アオノホン 📘️ 5 5 501 -20 -ショセキ 📘️ 5 5 501 -20 -ブンボウグ 📘️ 5 5 501 -20 -ホン 📘️ 5 5 501 -20 -オレンジノホン 📙️ 5 5 501 -20 -ショセキ 📙️ 5 5 501 -20 -ブンボウグ 📙️ 5 5 501 -20 -ホン 📙️ 5 5 501 -20 -ショセキ 📚️ 5 5 501 -20 -ブンボウグ 📚️ 5 5 501 -20 -ホン 📚️ 5 5 501 -20 -ホンノヤマ 📚️ 5 5 501 -20 -ノート 📓️ 5 5 501 -20 -ブング 📓️ 5 5 501 -20 -ブンボウグ 📓️ 5 5 501 -20 -ダイチョウ 📒️ 5 5 501 -20 -ノート 📒️ 5 5 501 -20 -ブング 📒️ 5 5 501 -20 -ブンボウグ 📒️ 5 5 501 -20 -リングノート 📒️ 5 5 501 -20 -カール 📃️ 5 5 501 -20 -ショルイ 📃️ 5 5 501 -20 -ブンショ 📃️ 5 5 501 -20 -マキページ 📃️ 5 5 501 -20 -ショルイ 📜️ 5 5 501 -20 -スクロール 📜️ 5 5 501 -20 -ブンショ 📜️ 5 5 501 -20 -ブンボウグ 📜️ 5 5 501 -20 -マキモノ 📜️ 5 5 501 -20 -ショルイ 📄️ 5 5 501 -20 -ブンショ 📄️ 5 5 501 -20 -ページ 📄️ 5 5 501 -20 -シンブン 📰️ 5 5 501 -20 -シンブンシ 📰️ 5 5 501 -20 -ニュース 📰️ 5 5 501 -20 -シンブン 🗞️️ 5 5 501 -20 -シンブンシ 🗞️️ 5 5 501 -20 -ニュース 🗞️️ 5 5 501 -20 -マルメタシンブン 🗞️️ 5 5 501 -20 -フセン 📑️ 5 5 501 -20 -ブング 📑️ 5 5 501 -20 -ブンボウグ 📑️ 5 5 501 -20 -ページニフセン 📑️ 5 5 501 -20 -ページマーク 📑️ 5 5 501 -20 -マーク 📑️ 5 5 501 -20 -シオリ 🔖️ 5 5 501 -20 -タグ 🔖️ 5 5 501 -20 -フセン 🔖️ 5 5 501 -20 -ブックマーク 🔖️ 5 5 501 -20 -タグ 🏷️️ 5 5 501 -20 -ニフダ 🏷️️ 5 5 501 -20 -ラベル 🏷️️ 5 5 501 -20 -オカネ 💰️ 5 5 501 -20 -カネブクロ 💰️ 5 5 501 -20 -キンブクロ 💰️ 5 5 501 -20 -ショウキン 💰️ 5 5 501 -20 -ドル 💰️ 5 5 501 -20 -ドルブクロ 💰️ 5 5 501 -20 -オカネ 🪙️ 5 5 501 -20 -キンカ 🪙️ 5 5 501 -20 -ギンカ 🪙️ 5 5 501 -20 -コイン 🪙️ 5 5 501 -20 -コウカ 🪙️ 5 5 501 -20 -コゼニ 🪙️ 5 5 501 -20 -エン 💴️ 5 5 501 -20 -エンサツ 💴️ 5 5 501 -20 -オカネ 💴️ 5 5 501 -20 -オサツ 💴️ 5 5 501 -20 -コギッテ 💴️ 5 5 501 -20 -サツタバ 💴️ 5 5 501 -20 -ツウカ 💴️ 5 5 501 -20 -ユウリョウ 💴️ 5 5 501 -20 -オカネ 💵️ 5 5 501 -20 -オサツ 💵️ 5 5 501 -20 -サツタバ 💵️ 5 5 501 -20 -ツウカ 💵️ 5 5 501 -20 -ドル 💵️ 5 5 501 -20 -ドルサツ 💵️ 5 5 501 -20 -オカネ 💶️ 5 5 501 -20 -オサツ 💶️ 5 5 501 -20 -サツタバ 💶️ 5 5 501 -20 -ツウカ 💶️ 5 5 501 -20 -ユーロ 💶️ 5 5 501 -20 -ユーロサツ 💶️ 5 5 501 -20 -オカネ 💷️ 5 5 501 -20 -オサツ 💷️ 5 5 501 -20 -サツタバ 💷️ 5 5 501 -20 -ツウカ 💷️ 5 5 501 -20 -ポンド 💷️ 5 5 501 -20 -ポンドサツ 💷️ 5 5 501 -20 -オカネ 💸️ 5 5 501 -20 -オサツ 💸️ 5 5 501 -20 -サツタバ 💸️ 5 5 501 -20 -ドル 💸️ 5 5 501 -20 -ハネガハエタオカネ 💸️ 5 5 501 -20 -オカネ 💳️ 5 5 501 -20 -カード 💳️ 5 5 501 -20 -キャッシュカード 💳️ 5 5 501 -20 -ギンコウ 💳️ 5 5 501 -20 -クレジットカード 💳️ 5 5 501 -20 -カイケイ 🧾️ 5 5 501 -20 -ボキ 🧾️ 5 5 501 -20 -リョウシュウショ 🧾️ 5 5 501 -20 -レシート 🧾️ 5 5 501 -20 -イチバ 💹️ 5 5 501 -20 -カブ 💹️ 5 5 501 -20 -カブカ 💹️ 5 5 501 -20 -カワセ 💹️ 5 5 501 -20 -グラフ 💹️ 5 5 501 -20 -シジョウ 💹️ 5 5 501 -20 -チャート 💹️ 5 5 501 -20 -イーメール ✉️️ 5 5 501 -20 -テガミ ✉️️ 5 5 501 -20 -デンシメール ✉️️ 5 5 501 -20 -フウトウ ✉️️ 5 5 501 -20 -メール ✉️️ 5 5 501 -20 -ユウビン ✉️️ 5 5 501 -20 -eメール 📧️ 5 5 501 -20 -イーメール 📧️ 5 5 501 -20 -テガミ 📧️ 5 5 501 -20 -デンシメール 📧️ 5 5 501 -20 -フウトウ 📧️ 5 5 501 -20 -メール 📧️ 5 5 501 -20 -ユウビン 📧️ 5 5 501 -20 -eメール 📨️ 5 5 501 -20 -イーメール 📨️ 5 5 501 -20 -ジュシン 📨️ 5 5 501 -20 -ジュシンスル 📨️ 5 5 501 -20 -ジュシンチュウ 📨️ 5 5 501 -20 -デンシメール 📨️ 5 5 501 -20 -メール 📨️ 5 5 501 -20 -メールジュシンチュウ 📨️ 5 5 501 -20 -eメール 📩️ 5 5 501 -20 -イーメール 📩️ 5 5 501 -20 -ソウシン 📩️ 5 5 501 -20 -ソウシンスル 📩️ 5 5 501 -20 -デンシメール 📩️ 5 5 501 -20 -メール 📩️ 5 5 501 -20 -メールジュシン 📩️ 5 5 501 -20 -メールスル 📩️ 5 5 501 -20 -イーメール 📤️ 5 5 501 -20 -ソウシン 📤️ 5 5 501 -20 -ソウシントレイ 📤️ 5 5 501 -20 -デンシメール 📤️ 5 5 501 -20 -トレイ 📤️ 5 5 501 -20 -メール 📤️ 5 5 501 -20 -イーメール 📥️ 5 5 501 -20 -ジュシン 📥️ 5 5 501 -20 -ジュシントレイ 📥️ 5 5 501 -20 -デンシメール 📥️ 5 5 501 -20 -トレイ 📥️ 5 5 501 -20 -メール 📥️ 5 5 501 -20 -コヅツミ 📦️ 5 5 501 -20 -タクハイビン 📦️ 5 5 501 -20 -タッキュウビン 📦️ 5 5 501 -20 -ダンボール 📦️ 5 5 501 -20 -ニモツ 📦️ 5 5 501 -20 -パック 📦️ 5 5 501 -20 -パッケージ 📦️ 5 5 501 -20 -テガミアリ 📫️ 5 5 501 -20 -トジタ 📫️ 5 5 501 -20 -トジタユウビンウケ 📫️ 5 5 501 -20 -ハタツキポスト 📫️ 5 5 501 -20 -ポスト 📫️ 5 5 501 -20 -メール 📫️ 5 5 501 -20 -ユウビン 📫️ 5 5 501 -20 -ユウビンウケ 📫️ 5 5 501 -20 -ユウビンバコ 📫️ 5 5 501 -20 -テガミナシ 📪️ 5 5 501 -20 -トジタ 📪️ 5 5 501 -20 -トジタユウビンウケ 📪️ 5 5 501 -20 -ハタツキポスト 📪️ 5 5 501 -20 -ポスト 📪️ 5 5 501 -20 -メール 📪️ 5 5 501 -20 -ユウビン 📪️ 5 5 501 -20 -ユウビンウケ 📪️ 5 5 501 -20 -ユウビンバコ 📪️ 5 5 501 -20 -テガミアリ 📬️ 5 5 501 -20 -ヒライタ 📬️ 5 5 501 -20 -ヒライタユウビンウケ 📬️ 5 5 501 -20 -ポスト 📬️ 5 5 501 -20 -ユウビンウケ 📬️ 5 5 501 -20 -ユウビンバコ 📬️ 5 5 501 -20 -テガミナシ 📭️ 5 5 501 -20 -ヒライタ 📭️ 5 5 501 -20 -ヒライタユウビンウケ 📭️ 5 5 501 -20 -ポスト 📭️ 5 5 501 -20 -ユウビンウケ 📭️ 5 5 501 -20 -ユウビンバコ 📭️ 5 5 501 -20 -テガミ 📮️ 5 5 501 -20 -ポスト 📮️ 5 5 501 -20 -ユウビン 📮️ 5 5 501 -20 -ユウビンバコ 📮️ 5 5 501 -20 -ユウビンポスト 📮️ 5 5 501 -20 -センキョ 🗳️️ 5 5 501 -20 -トウヒョウバコ 🗳️️ 5 5 501 -20 -エンピツ ✏️️ 5 5 501 -20 -ブング ✏️️ 5 5 501 -20 -ブンボウグ ✏️️ 5 5 501 -20 -エディット ✒️️ 5 5 501 -20 -ブング ✒️️ 5 5 501 -20 -ブンボウグ ✒️️ 5 5 501 -20 -ペン ✒️️ 5 5 501 -20 -ペンサキ ✒️️ 5 5 501 -20 -マンネンヒツ ✒️️ 5 5 501 -20 -ブング 🖋️️ 5 5 501 -20 -ブンボウグ 🖋️️ 5 5 501 -20 -マンネンヒツ 🖋️️ 5 5 501 -20 -ブング 🖊️️ 5 5 501 -20 -ブンボウグ 🖊️️ 5 5 501 -20 -ペン 🖊️️ 5 5 501 -20 -ボールペン 🖊️️ 5 5 501 -20 -エノグ 🖌️️ 5 5 501 -20 -エフデ 🖌️️ 5 5 501 -20 -ブング 🖌️️ 5 5 501 -20 -ブンボウグ 🖌️️ 5 5 501 -20 -クレヨン 🖍️️ 5 5 501 -20 -ブング 🖍️️ 5 5 501 -20 -ブンボウグ 🖍️️ 5 5 501 -20 -エンピツトメモ 📝️ 5 5 501 -20 -カミトエンピツ 📝️ 5 5 501 -20 -ブング 📝️ 5 5 501 -20 -ブンボウグ 📝️ 5 5 501 -20 -メモ 📝️ 5 5 501 -20 -カバン 💼️ 5 5 501 -20 -ブリーフケース 💼️ 5 5 501 -20 -ファイル 📁️ 5 5 501 -20 -フォルダー 📁️ 5 5 501 -20 -ブング 📁️ 5 5 501 -20 -ブンボウグ 📁️ 5 5 501 -20 -ヒライタフォルダー 📂️ 5 5 501 -20 -ファイル 📂️ 5 5 501 -20 -フォルダー 📂️ 5 5 501 -20 -ブング 📂️ 5 5 501 -20 -ブンボウグ 📂️ 5 5 501 -20 -インデックス 🗂️️ 5 5 501 -20 -カードフォルダー 🗂️️ 5 5 501 -20 -フォルダー 🗂️️ 5 5 501 -20 -ブング 🗂️️ 5 5 501 -20 -ブンボウグ 🗂️️ 5 5 501 -20 -カレンダー 📅️ 5 5 501 -20 -スケジュール 📅️ 5 5 501 -20 -ヒヅケ 📅️ 5 5 501 -20 -ヨテイ 📅️ 5 5 501 -20 -カレンダー 📆️ 5 5 501 -20 -スケジュール 📆️ 5 5 501 -20 -ヒヅケ 📆️ 5 5 501 -20 -ヒメクリ 📆️ 5 5 501 -20 -ヒメクリカレンダー 📆️ 5 5 501 -20 -ヨテイ 📆️ 5 5 501 -20 -ノート 🗒️️ 5 5 501 -20 -ブング 🗒️️ 5 5 501 -20 -ブンボウグ 🗒️️ 5 5 501 -20 -メモチョウ 🗒️️ 5 5 501 -20 -リングメモ 🗒️️ 5 5 501 -20 -カレンダー 🗓️️ 5 5 501 -20 -スケジュール 🗓️️ 5 5 501 -20 -ツキメクリカレンダー 🗓️️ 5 5 501 -20 -ヒヅケ 🗓️️ 5 5 501 -20 -ヨテイ 🗓️️ 5 5 501 -20 -カードインデックス 📇️ 5 5 501 -20 -ブング 📇️ 5 5 501 -20 -ブンボウグ 📇️ 5 5 501 -20 -メイシホルダー 📇️ 5 5 501 -20 -ローロデックス 📇️ 5 5 501 -20 -ウエムキ 📈️ 5 5 501 -20 -ウワムキ 📈️ 5 5 501 -20 -オレセングラフ 📈️ 5 5 501 -20 -グラフ 📈️ 5 5 501 -20 -グラフウエムキ 📈️ 5 5 501 -20 -グラフウワムキ 📈️ 5 5 501 -20 -ジョウショウ 📈️ 5 5 501 -20 -オレセングラフ 📉️ 5 5 501 -20 -カコウ 📉️ 5 5 501 -20 -グラフ 📉️ 5 5 501 -20 -グラフシタムキ 📉️ 5 5 501 -20 -シタムキ 📉️ 5 5 501 -20 -グラフ 📊️ 5 5 501 -20 -チャート 📊️ 5 5 501 -20 -ボウグラフ 📊️ 5 5 501 -20 -クリップ 📋️ 5 5 501 -20 -クリップボード 📋️ 5 5 501 -20 -ブング 📋️ 5 5 501 -20 -ブンボウグ 📋️ 5 5 501 -20 -オシピン 📌️ 5 5 501 -20 -ガビョウ 📌️ 5 5 501 -20 -ピン 📌️ 5 5 501 -20 -ブング 📌️ 5 5 501 -20 -ブンボウグ 📌️ 5 5 501 -20 -プッシュピン 📌️ 5 5 501 -20 -オシピン 📍️ 5 5 501 -20 -ガビョウ 📍️ 5 5 501 -20 -ピン 📍️ 5 5 501 -20 -ブング 📍️ 5 5 501 -20 -ブンボウグ 📍️ 5 5 501 -20 -プッシュピン 📍️ 5 5 501 -20 -マルイオシピン 📍️ 5 5 501 -20 -カミクリップ 📎️ 5 5 501 -20 -クリップ 📎️ 5 5 501 -20 -ゼムクリップ 📎️ 5 5 501 -20 -ブング 📎️ 5 5 501 -20 -ブンボウグ 📎️ 5 5 501 -20 -ペーパークリップ 📎️ 5 5 501 -20 -カミクリップ 🖇️️ 5 5 501 -20 -ツナガッタクリップ 🖇️️ 5 5 501 -20 -ブング 🖇️️ 5 5 501 -20 -ブンボウグ 🖇️️ 5 5 501 -20 -ペーパークリップ 🖇️️ 5 5 501 -20 -ジョウギ 📏️ 5 5 501 -20 -ブング 📏️ 5 5 501 -20 -ブンボウグ 📏️ 5 5 501 -20 -モノサシ 📏️ 5 5 501 -20 -サンカクジョウギ 📐️ 5 5 501 -20 -ジョウギ 📐️ 5 5 501 -20 -ブング 📐️ 5 5 501 -20 -ブンボウグ 📐️ 5 5 501 -20 -カット ✂️️ 5 5 501 -20 -キル ✂️️ 5 5 501 -20 -ハサミ ✂️️ 5 5 501 -20 -ビヨウイン ✂️️ 5 5 501 -20 -ブング ✂️️ 5 5 501 -20 -ブンボウグ ✂️️ 5 5 501 -20 -カードファイルボックス 🗃️️ 5 5 501 -20 -ハコ 🗃️️ 5 5 501 -20 -ファイル 🗃️️ 5 5 501 -20 -ブング 🗃️️ 5 5 501 -20 -ブンボウグ 🗃️️ 5 5 501 -20 -ボックス 🗃️️ 5 5 501 -20 -キャビネット 🗄️️ 5 5 501 -20 -ヒキダシ 🗄️️ 5 5 501 -20 -ファイル 🗄️️ 5 5 501 -20 -ファイルキャビネット 🗄️️ 5 5 501 -20 -クズカゴ 🗑️️ 5 5 501 -20 -ゴミカゴ 🗑️️ 5 5 501 -20 -ゴミバコ 🗑️️ 5 5 501 -20 -カギ 🔒️ 5 5 501 -20 -ジョウ 🔒️ 5 5 501 -20 -セジョウ 🔒️ 5 5 501 -20 -トジタジョウ 🔒️ 5 5 501 -20 -ロック 🔒️ 5 5 501 -20 -ロックオン 🔒️ 5 5 501 -20 -カイジョウ 🔓️ 5 5 501 -20 -カギ 🔓️ 5 5 501 -20 -ジョウ 🔓️ 5 5 501 -20 -ヒライタジョウ 🔓️ 5 5 501 -20 -ロック 🔓️ 5 5 501 -20 -ロックオフ 🔓️ 5 5 501 -20 -カギ 🔏️ 5 5 501 -20 -トジタジョウトペン 🔏️ 5 5 501 -20 -プライバシー 🔏️ 5 5 501 -20 -ロック 🔏️ 5 5 501 -20 -アンゼン 🔐️ 5 5 501 -20 -カギ 🔐️ 5 5 501 -20 -キー 🔐️ 5 5 501 -20 -セキュリティ 🔐️ 5 5 501 -20 -トジタジョウトカギ 🔐️ 5 5 501 -20 -ロック 🔐️ 5 5 501 -20 -ロックカクニン 🔐️ 5 5 501 -20 -カギ 🔑️ 5 5 501 -20 -キー 🔑️ 5 5 501 -20 -パスワード 🔑️ 5 5 501 -20 -キー 🗝️️ 5 5 501 -20 -テガカリ 🗝️️ 5 5 501 -20 -パスワード 🗝️️ 5 5 501 -20 -フルイカギ 🗝️️ 5 5 501 -20 -カナヅチ 🔨️ 5 5 501 -20 -コウグ 🔨️ 5 5 501 -20 -トンカチ 🔨️ 5 5 501 -20 -ハンマー 🔨️ 5 5 501 -20 -オノ 🪓️ 5 5 501 -20 -キ 🪓️ 5 5 501 -20 -コウグ 🪓️ 5 5 501 -20 -ハチェット 🪓️ 5 5 501 -20 -マキワリ 🪓️ 5 5 501 -20 -コウグ ⛏️️ 5 5 501 -20 -サイクツ ⛏️️ 5 5 501 -20 -ツルハシ ⛏️️ 5 5 501 -20 -カナヅチ ⚒️️ 5 5 501 -20 -コウグ ⚒️️ 5 5 501 -20 -ツルハシ ⚒️️ 5 5 501 -20 -トンカチ ⚒️️ 5 5 501 -20 -ハンマー ⚒️️ 5 5 501 -20 -ハンマートツルハシ ⚒️️ 5 5 501 -20 -カナヅチ 🛠️️ 5 5 501 -20 -コウグ 🛠️️ 5 5 501 -20 -トンカチ 🛠️️ 5 5 501 -20 -ハンマートレンチ 🛠️️ 5 5 501 -20 -レンチ 🛠️️ 5 5 501 -20 -タントウ 🗡️️ 5 5 501 -20 -ダガー 🗡️️ 5 5 501 -20 -ナイフ 🗡️️ 5 5 501 -20 -ブキ 🗡️️ 5 5 501 -20 -カタナ ⚔️️ 5 5 501 -20 -クロスシタケン ⚔️️ 5 5 501 -20 -ケン ⚔️️ 5 5 501 -20 -ツルギ ⚔️️ 5 5 501 -20 -ブキ ⚔️️ 5 5 501 -20 -バクダン 💣️ 5 5 501 -20 -オモチャ 🪃️ 5 5 501 -20 -オーストラリア 🪃️ 5 5 501 -20 -カエッテクル 🪃️ 5 5 501 -20 -ガング 🪃️ 5 5 501 -20 -ハネカエリ 🪃️ 5 5 501 -20 -ブキ 🪃️ 5 5 501 -20 -ブーメラン 🪃️ 5 5 501 -20 -イテ 🏹️ 5 5 501 -20 -シャシュ 🏹️ 5 5 501 -20 -セイザ 🏹️ 5 5 501 -20 -ブキ 🏹️ 5 5 501 -20 -ヤ 🏹️ 5 5 501 -20 -ユミヤ 🏹️ 5 5 501 -20 -シールド 🛡️️ 5 5 501 -20 -タテ 🛡️️ 5 5 501 -20 -ボウグ 🛡️️ 5 5 501 -20 -コウグ 🪚️ 5 5 501 -20 -ダイク 🪚️ 5 5 501 -20 -ノコ 🪚️ 5 5 501 -20 -ノコギリ 🪚️ 5 5 501 -20 -ハ 🪚️ 5 5 501 -20 -モッコウ 🪚️ 5 5 501 -20 -コウグ 🔧️ 5 5 501 -20 -スパナ 🔧️ 5 5 501 -20 -レンチ 🔧️ 5 5 501 -20 -コウグ 🪛️ 5 5 501 -20 -スクリュードライバー 🪛️ 5 5 501 -20 -ドライバー 🪛️ 5 5 501 -20 -ネジマワシ 🪛️ 5 5 501 -20 -コウグ 🔩️ 5 5 501 -20 -ナット 🔩️ 5 5 501 -20 -ボルト 🔩️ 5 5 501 -20 -ボルトトナット 🔩️ 5 5 501 -20 -ギア ⚙️️ 5 5 501 -20 -コウグ ⚙️️ 5 5 501 -20 -ハグルマ ⚙️️ 5 5 501 -20 -クランプ 🗜️️ 5 5 501 -20 -コウグ 🗜️️ 5 5 501 -20 -バイス 🗜️️ 5 5 501 -20 -マンリキ 🗜️️ 5 5 501 -20 -カガク ⚖️️ 5 5 501 -20 -ジッケン ⚖️️ 5 5 501 -20 -セイザ ⚖️️ 5 5 501 -20 -テンビン ⚖️️ 5 5 501 -20 -ハカリ ⚖️️ 5 5 501 -20 -アクセシビリティ 🦯️ 5 5 501 -20 -シカク 🦯️ 5 5 501 -20 -ショウガイ 🦯️ 5 5 501 -20 -シロツエ 🦯️ 5 5 501 -20 -ツエ 🦯️ 5 5 501 -20 -ハクジョウ 🦯️ 5 5 501 -20 -リンク 🔗️ 5 5 501 -20 -リンクシンボル 🔗️ 5 5 501 -20 -クサリ ⛓️‍💥️ 5 5 501 -20 -コワレタ ⛓️‍💥️ 5 5 501 -20 -コワレタクサリ ⛓️‍💥️ 5 5 501 -20 -チェーン ⛓️‍💥️ 5 5 501 -20 -クサリ ⛓️️ 5 5 501 -20 -チェーン ⛓️️ 5 5 501 -20 -カケガネ 🪝️ 5 5 501 -20 -カケキン 🪝️ 5 5 501 -20 -トメガネ 🪝️ 5 5 501 -20 -ヒッカケ 🪝️ 5 5 501 -20 -フック 🪝️ 5 5 501 -20 -キカイコウ 🧰️ 5 5 501 -20 -コウグバコ 🧰️ 5 5 501 -20 -セイビシ 🧰️ 5 5 501 -20 -ツールボックス 🧰️ 5 5 501 -20 -メカニック 🧰️ 5 5 501 -20 -テイテツ 🧲️ 5 5 501 -20 -マグネット 🧲️ 5 5 501 -20 -ユージガタジシャク 🧲️ 5 5 501 -20 -コウショサギョウ 🪜️ 5 5 501 -20 -ステッパー 🪜️ 5 5 501 -20 -ノボル 🪜️ 5 5 501 -20 -ハシゴ 🪜️ 5 5 501 -20 -カガク ⚗️️ 5 5 501 -20 -ジッケン ⚗️️ 5 5 501 -20 -ジョウリュウキ ⚗️️ 5 5 501 -20 -カガク 🧪️ 5 5 501 -20 -シケンカン 🧪️ 5 5 501 -20 -ジッケン 🧪️ 5 5 501 -20 -ラボ 🧪️ 5 5 501 -20 -セイブツガク 🧫️ 5 5 501 -20 -バイヨウ 🧫️ 5 5 501 -20 -バクテリア 🧫️ 5 5 501 -20 -ペトリサラ 🧫️ 5 5 501 -20 -dna 🧬️ 5 5 501 -20 -イデンシ 🧬️ 5 5 501 -20 -シンカ 🧬️ 5 5 501 -20 -セイブツガク 🧬️ 5 5 501 -20 -ディーエヌエー 🧬️ 5 5 501 -20 -カガク 🔬️ 5 5 501 -20 -ケンキュウ 🔬️ 5 5 501 -20 -ケンビキョウ 🔬️ 5 5 501 -20 -サイエンス 🔬️ 5 5 501 -20 -カガク 🔭️ 5 5 501 -20 -カンソク 🔭️ 5 5 501 -20 -サイエンス 🔭️ 5 5 501 -20 -テンタイカンソク 🔭️ 5 5 501 -20 -ボウエンキョウ 🔭️ 5 5 501 -20 -アンテナ 📡️ 5 5 501 -20 -エイセイアンテナ 📡️ 5 5 501 -20 -デンパ 📡️ 5 5 501 -20 -パラボラ 📡️ 5 5 501 -20 -パラボラアンテナ 📡️ 5 5 501 -20 -イシャ 💉️ 5 5 501 -20 -クスリ 💉️ 5 5 501 -20 -チュウシャ 💉️ 5 5 501 -20 -チュウシャキ 💉️ 5 5 501 -20 -ビョウキ 💉️ 5 5 501 -20 -イシャ 🩸️ 5 5 501 -20 -ケガ 🩸️ 5 5 501 -20 -ケツエキ 🩸️ 5 5 501 -20 -ケンケツ 🩸️ 5 5 501 -20 -セイリ 🩸️ 5 5 501 -20 -イシャ 💊️ 5 5 501 -20 -カゼグスリ 💊️ 5 5 501 -20 -カプセル 💊️ 5 5 501 -20 -クスリ 💊️ 5 5 501 -20 -ビョウキ 💊️ 5 5 501 -20 -キズ 🩹️ 5 5 501 -20 -クスリ 🩹️ 5 5 501 -20 -ケガ 🩹️ 5 5 501 -20 -テアテ 🩹️ 5 5 501 -20 -バンソウコウ 🩹️ 5 5 501 -20 -ケガ 🩼️ 5 5 501 -20 -ショウガイ 🩼️ 5 5 501 -20 -ステッキ 🩼️ 5 5 501 -20 -ツエ 🩼️ 5 5 501 -20 -ホコウホジョ 🩼️ 5 5 501 -20 -マツバヅエ 🩼️ 5 5 501 -20 -イシャ 🩺️ 5 5 501 -20 -シンゾウ 🩺️ 5 5 501 -20 -チョウシンキ 🩺️ 5 5 501 -20 -ビョウキ 🩺️ 5 5 501 -20 -イシャ 🩻️ 5 5 501 -20 -エックスセン 🩻️ 5 5 501 -20 -コッカク 🩻️ 5 5 501 -20 -ホネ 🩻️ 5 5 501 -20 -レントゲン 🩻️ 5 5 501 -20 -ト 🚪️ 5 5 501 -20 -トビラ 🚪️ 5 5 501 -20 -ドア 🚪️ 5 5 501 -20 -アクセシビリティ 🛗️ 5 5 501 -20 -エレベーター 🛗️ 5 5 501 -20 -ショウコウキ 🛗️ 5 5 501 -20 -バリアフリー 🛗️ 5 5 501 -20 -リフト 🛗️ 5 5 501 -20 -カガミ 🪞️ 5 5 501 -20 -スガタミ 🪞️ 5 5 501 -20 -ハンシャ 🪞️ 5 5 501 -20 -ミダシナミ 🪞️ 5 5 501 -20 -ミラー 🪞️ 5 5 501 -20 -アケル 🪟️ 5 5 501 -20 -カンキ 🪟️ 5 5 501 -20 -ナガメ 🪟️ 5 5 501 -20 -フレーム 🪟️ 5 5 501 -20 -マド 🪟️ 5 5 501 -20 -スイミン 🛏️️ 5 5 501 -20 -ネル 🛏️️ 5 5 501 -20 -ベッド 🛏️️ 5 5 501 -20 -ホテル 🛏️️ 5 5 501 -20 -ソファ 🛋️️ 5 5 501 -20 -ソファトランプ 🛋️️ 5 5 501 -20 -ホテル 🛋️️ 5 5 501 -20 -ランプ 🛋️️ 5 5 501 -20 -イス 🪑️ 5 5 501 -20 -カグ 🪑️ 5 5 501 -20 -コシカケ 🪑️ 5 5 501 -20 -シート 🪑️ 5 5 501 -20 -チェア 🪑️ 5 5 501 -20 -オテアライ 🚽️ 5 5 501 -20 -トイレ 🚽️ 5 5 501 -20 -ベンキ 🚽️ 5 5 501 -20 -ベンザ 🚽️ 5 5 501 -20 -キュウインカップ 🪠️ 5 5 501 -20 -スッポン 🪠️ 5 5 501 -20 -ツウスイカップ 🪠️ 5 5 501 -20 -トイレ 🪠️ 5 5 501 -20 -プランジャー 🪠️ 5 5 501 -20 -ラバーカップ 🪠️ 5 5 501 -20 -シャワー 🚿️ 5 5 501 -20 -フロ 🚿️ 5 5 501 -20 -バスタブ 🛁️ 5 5 501 -20 -フロ 🛁️ 5 5 501 -20 -ヨクソウ 🛁️ 5 5 501 -20 -オビキヨセル 🪤️ 5 5 501 -20 -シカケ 🪤️ 5 5 501 -20 -ネズミトリ 🪤️ 5 5 501 -20 -バネ 🪤️ 5 5 501 -20 -マウストラップ 🪤️ 5 5 501 -20 -ワナ 🪤️ 5 5 501 -20 -カミソリ 🪒️ 5 5 501 -20 -ハ 🪒️ 5 5 501 -20 -ヒゲソリ 🪒️ 5 5 501 -20 -レーザー 🪒️ 5 5 501 -20 -ケショウスイ 🧴️ 5 5 501 -20 -シャンプー 🧴️ 5 5 501 -20 -ヒヤケドメ 🧴️ 5 5 501 -20 -ローション 🧴️ 5 5 501 -20 -アンゼンピン 🧷️ 5 5 501 -20 -トメピン 🧷️ 5 5 501 -20 -ソウジ 🧹️ 5 5 501 -20 -ハク 🧹️ 5 5 501 -20 -ホウキ 🧹️ 5 5 501 -20 -マジョ 🧹️ 5 5 501 -20 -カゴ 🧺️ 5 5 501 -20 -シュウカク 🧺️ 5 5 501 -20 -センタク 🧺️ 5 5 501 -20 -ピクニック 🧺️ 5 5 501 -20 -キッチンペーパー 🧻️ 5 5 501 -20 -トイレットペーパー 🧻️ 5 5 501 -20 -ペーパータオル 🧻️ 5 5 501 -20 -オケ 🪣️ 5 5 501 -20 -バケツ 🪣️ 5 5 501 -20 -ポリバケツ 🪣️ 5 5 501 -20 -ヨウキ 🪣️ 5 5 501 -20 -セッケン 🧼️ 5 5 501 -20 -ソープ 🧼️ 5 5 501 -20 -フロ 🧼️ 5 5 501 -20 -アブク 🫧️ 5 5 501 -20 -アワ 🫧️ 5 5 501 -20 -シャボンダマ 🫧️ 5 5 501 -20 -スイチュウ 🫧️ 5 5 501 -20 -セッケン 🫧️ 5 5 501 -20 -バブル 🫧️ 5 5 501 -20 -エイセイ 🪥️ 5 5 501 -20 -オテイレ 🪥️ 5 5 501 -20 -センメンジョ 🪥️ 5 5 501 -20 -ハブラシ 🪥️ 5 5 501 -20 -ハミガキ 🪥️ 5 5 501 -20 -ムシバ 🪥️ 5 5 501 -20 -カイメン 🧽️ 5 5 501 -20 -キュウシュウ 🧽️ 5 5 501 -20 -スポンジ 🧽️ 5 5 501 -20 -ソウジ 🧽️ 5 5 501 -20 -ショウカ 🧯️ 5 5 501 -20 -ショウカキ 🧯️ 5 5 501 -20 -ショウカキグ 🧯️ 5 5 501 -20 -ショウボウ 🧯️ 5 5 501 -20 -カイモノ 🛒️ 5 5 501 -20 -カート 🛒️ 5 5 501 -20 -ショッピング 🛒️ 5 5 501 -20 -ショッピングカート 🛒️ 5 5 501 -20 -スーパー 🛒️ 5 5 501 -20 -キツエン 🚬️ 5 5 501 -20 -タバコ 🚬️ 5 5 501 -20 -カンオケ ⚰️️ 5 5 501 -20 -シ ⚰️️ 5 5 501 -20 -ヒツギ ⚰️️ 5 5 501 -20 -マイソウ ⚰️️ 5 5 501 -20 -オハカ 🪦️ 5 5 501 -20 -セキヒ 🪦️ 5 5 501 -20 -ハカバ 🪦️ 5 5 501 -20 -ボセキ 🪦️ 5 5 501 -20 -ボチ 🪦️ 5 5 501 -20 -マイソウ 🪦️ 5 5 501 -20 -イハイ ⚱️️ 5 5 501 -20 -コツツボ ⚱️️ 5 5 501 -20 -シ ⚱️️ 5 5 501 -20 -ソウギ ⚱️️ 5 5 501 -20 -マイソウ ⚱️️ 5 5 501 -20 -オマモリ 🧿️ 5 5 501 -20 -ジャシ 🧿️ 5 5 501 -20 -ナザール 🧿️ 5 5 501 -20 -ナザールボンジュウ 🧿️ 5 5 501 -20 -ナザール・ボンジュウ 🧿️ 5 5 501 -20 -ビーズ 🧿️ 5 5 501 -20 -マヨケ 🧿️ 5 5 501 -20 -オマモリ 🪬️ 5 5 501 -20 -ゴフ 🪬️ 5 5 501 -20 -テ 🪬️ 5 5 501 -20 -ハムサ 🪬️ 5 5 501 -20 -ファーティマ 🪬️ 5 5 501 -20 -ミリアム 🪬️ 5 5 501 -20 -メ 🪬️ 5 5 501 -20 -カオ 🗿️ 5 5 501 -20 -ゾウ 🗿️ 5 5 501 -20 -モアイ 🗿️ 5 5 501 -20 -モヤイ 🗿️ 5 5 501 -20 -イギ 🪧️ 5 5 501 -20 -カンバン 🪧️ 5 5 501 -20 -コウギ 🪧️ 5 5 501 -20 -シュチョウ 🪧️ 5 5 501 -20 -デモ 🪧️ 5 5 501 -20 -プラカード 🪧️ 5 5 501 -20 -id 🪪️ 5 5 501 -20 -アイディーカード 🪪️ 5 5 501 -20 -ウンテンメンキョショウ 🪪️ 5 5 501 -20 -カード 🪪️ 5 5 501 -20 -セキュリティ 🪪️ 5 5 501 -20 -ミブンショウ 🪪️ 5 5 501 -20 -ミブンショウメイショ 🪪️ 5 5 501 -20 -atm 🏧️ 5 5 501 -20 -エーティーエム 🏧️ 5 5 501 -20 -ギンコウ 🏧️ 5 5 501 -20 -ゲンキンジドウアズケバライキ 🏧️ 5 5 501 -20 -クズカゴ 🚮️ 5 5 501 -20 -ゴミステ 🚮️ 5 5 501 -20 -ゴミバコ 🚮️ 5 5 501 -20 -インリョウスイ 🚰️ 5 5 501 -20 -スイドウ 🚰️ 5 5 501 -20 -ノミミズ 🚰️ 5 5 501 -20 -ミズ 🚰️ 5 5 501 -20 -クルマイス ♿️ 5 5 501 -20 -バリアフリー ♿️ 5 5 501 -20 -バリヤフリー ♿️ 5 5 501 -20 -wc 🚹️ 5 5 501 -20 -オテアライ 🚹️ 5 5 501 -20 -ケショウシツ 🚹️ 5 5 501 -20 -ダンシ 🚹️ 5 5 501 -20 -ダンシトイレ 🚹️ 5 5 501 -20 -ダンセイ 🚹️ 5 5 501 -20 -トイレ 🚹️ 5 5 501 -20 -wc 🚺️ 5 5 501 -20 -オテアライ 🚺️ 5 5 501 -20 -ケショウシツ 🚺️ 5 5 501 -20 -ジョシ 🚺️ 5 5 501 -20 -ジョシトイレ 🚺️ 5 5 501 -20 -ジョセイ 🚺️ 5 5 501 -20 -トイレ 🚺️ 5 5 501 -20 -wc 🚻️ 5 5 501 -20 -オテアライ 🚻️ 5 5 501 -20 -ケショウシツ 🚻️ 5 5 501 -20 -ダブリューシー 🚻️ 5 5 501 -20 -トイレ 🚻️ 5 5 501 -20 -アカチャン 🚼️ 5 5 501 -20 -アカンボウ 🚼️ 5 5 501 -20 -ベビー 🚼️ 5 5 501 -20 -ベビーシート 🚼️ 5 5 501 -20 -wc 🚾️ 5 5 501 -20 -オテアライ 🚾️ 5 5 501 -20 -ケショウシツ 🚾️ 5 5 501 -20 -ダブリューシー 🚾️ 5 5 501 -20 -トイレ 🚾️ 5 5 501 -20 -シュツニュウコク 🛂️ 5 5 501 -20 -シュツニュウコクシンサ 🛂️ 5 5 501 -20 -ニュウシュッコク 🛂️ 5 5 501 -20 -パスポートコントロール 🛂️ 5 5 501 -20 -ゼイカン 🛃️ 5 5 501 -20 -ツウカン 🛃️ 5 5 501 -20 -スーツケース 🛄️ 5 5 501 -20 -テニモツ 🛄️ 5 5 501 -20 -テニモツウケトリ 🛄️ 5 5 501 -20 -バゲッジクレーム 🛄️ 5 5 501 -20 -スーツケース 🛅️ 5 5 501 -20 -テニモツ 🛅️ 5 5 501 -20 -テニモツアズカリ 🛅️ 5 5 501 -20 -ロッカー 🛅️ 5 5 501 -20 -キケン ⚠️️ 5 5 501 -20 -ケイコク ⚠️️ 5 5 501 -20 -チュウイ ⚠️️ 5 5 501 -20 -ヒョウシキ ⚠️️ 5 5 501 -20 -コドモ 🚸️ 5 5 501 -20 -ジドウオウダン 🚸️ 5 5 501 -20 -ツウガクロ 🚸️ 5 5 501 -20 -ヒョウシキ 🚸️ 5 5 501 -20 -キセイ ⛔️ 5 5 501 -20 -シャリョウシンニュウキンシ ⛔️ 5 5 501 -20 -タチイリキンシ ⛔️ 5 5 501 -20 -ドウロ ⛔️ 5 5 501 -20 -ヒョウシキ ⛔️ 5 5 501 -20 -キセイ 🚫️ 5 5 501 -20 -キンシ 🚫️ 5 5 501 -20 -シャリョウツウコウドメ 🚫️ 5 5 501 -20 -ドウロ 🚫️ 5 5 501 -20 -ヒョウシキ 🚫️ 5 5 501 -20 -キセイ 🚳️ 5 5 501 -20 -キンシ 🚳️ 5 5 501 -20 -ジテンシャ 🚳️ 5 5 501 -20 -ジテンシャキンシ 🚳️ 5 5 501 -20 -ドウロ 🚳️ 5 5 501 -20 -ヒョウシキ 🚳️ 5 5 501 -20 -キンエン 🚭️ 5 5 501 -20 -キンシ 🚭️ 5 5 501 -20 -タバコ 🚭️ 5 5 501 -20 -キンシ 🚯️ 5 5 501 -20 -ゴミ 🚯️ 5 5 501 -20 -ゴミステキンシ 🚯️ 5 5 501 -20 -ポイステキンシ 🚯️ 5 5 501 -20 -インヨウフカ 🚱️ 5 5 501 -20 -キンシ 🚱️ 5 5 501 -20 -ノメナイミズ 🚱️ 5 5 501 -20 -キセイ 🚷️ 5 5 501 -20 -キンシ 🚷️ 5 5 501 -20 -ドウロ 🚷️ 5 5 501 -20 -ヒョウシキ 🚷️ 5 5 501 -20 -ホコウシャタチイリキンシ 🚷️ 5 5 501 -20 -ケイタイキンシ 📵️ 5 5 501 -20 -ケイタイデンワキンシ 📵️ 5 5 501 -20 -スマホキンシ 📵️ 5 5 501 -20 -スマートフォンキンシ 📵️ 5 5 501 -20 -18キン 🔞️ 5 5 501 -20 -18サイミマンキンシ 🔞️ 5 5 501 -20 -キンシ 🔞️ 5 5 501 -20 -ミセイネン 🔞️ 5 5 501 -20 -キケン ☢️️ 5 5 501 -20 -ホウシャセイ ☢️️ 5 5 501 -20 -ホウシャセン ☢️️ 5 5 501 -20 -ホウシャノウ ☢️️ 5 5 501 -20 -キケン ☣️️ 5 5 501 -20 -バイオハザード ☣️️ 5 5 501 -20 -ユウガイブッシツ ☣️️ 5 5 501 -20 -ウエ ⬆️️ 5 5 501 -20 -ウエヤジルシ ⬆️️ 5 5 501 -20 -キタ ⬆️️ 5 5 501 -20 -ヤジルシ ⬆️️ 5 5 501 -20 -ホクトウ ↗️️ 5 5 501 -20 -ミギウエ ↗️️ 5 5 501 -20 -ミギウエヤジルシ ↗️️ 5 5 501 -20 -ヤジルシ ↗️️ 5 5 501 -20 -ヒガシ ➡️️ 5 5 501 -20 -ミギ ➡️️ 5 5 501 -20 -ミギヤジルシ ➡️️ 5 5 501 -20 -ヤジルシ ➡️️ 5 5 501 -20 -ナントウ ↘️️ 5 5 501 -20 -ミギシタ ↘️️ 5 5 501 -20 -ミギシタヤジルシ ↘️️ 5 5 501 -20 -ヤジルシ ↘️️ 5 5 501 -20 -シタ ⬇️️ 5 5 501 -20 -シタヤジルシ ⬇️️ 5 5 501 -20 -ミナミ ⬇️️ 5 5 501 -20 -ヤジルシ ⬇️️ 5 5 501 -20 -ナンセイ ↙️️ 5 5 501 -20 -ヒダリシタ ↙️️ 5 5 501 -20 -ヒダリシタヤジルシ ↙️️ 5 5 501 -20 -ヤジルシ ↙️️ 5 5 501 -20 -ニシ ⬅️️ 5 5 501 -20 -ヒダリ ⬅️️ 5 5 501 -20 -ヒダリヤジルシ ⬅️️ 5 5 501 -20 -ヤジルシ ⬅️️ 5 5 501 -20 -ヒダリウエ ↖️️ 5 5 501 -20 -ヒダリウエヤジルシ ↖️️ 5 5 501 -20 -ホクセイ ↖️️ 5 5 501 -20 -ヤジルシ ↖️️ 5 5 501 -20 -ジョウゲ ↕️️ 5 5 501 -20 -ジョウゲヤジルシ ↕️️ 5 5 501 -20 -ヤジルシ ↕️️ 5 5 501 -20 -ヤジルシジョウゲ ↕️️ 5 5 501 -20 -サユウ ↔️️ 5 5 501 -20 -サユウヤジルシ ↔️️ 5 5 501 -20 -ヤジルシ ↔️️ 5 5 501 -20 -ヤジルシサユウ ↔️️ 5 5 501 -20 -カーブ ↩️️ 5 5 501 -20 -キョクセン ↩️️ 5 5 501 -20 -ヒダリ ↩️️ 5 5 501 -20 -ミギカーブヤジルシ ↩️️ 5 5 501 -20 -ヤジルシ ↩️️ 5 5 501 -20 -カーブ ↪️️ 5 5 501 -20 -キョクセン ↪️️ 5 5 501 -20 -ヒダリカーブヤジルシ ↪️️ 5 5 501 -20 -ミギ ↪️️ 5 5 501 -20 -ヤジルシ ↪️️ 5 5 501 -20 -ウエ ⤴️️ 5 5 501 -20 -ウエカーブヤジルシ ⤴️️ 5 5 501 -20 -ウエヤジルシ ⤴️️ 5 5 501 -20 -カーブ ⤴️️ 5 5 501 -20 -キョクセン ⤴️️ 5 5 501 -20 -グッド ⤴️️ 5 5 501 -20 -ヤジルシ ⤴️️ 5 5 501 -20 -カーブ ⤵️️ 5 5 501 -20 -キョクセン ⤵️️ 5 5 501 -20 -シタ ⤵️️ 5 5 501 -20 -シタカーブヤジルシ ⤵️️ 5 5 501 -20 -シタヤジルシ ⤵️️ 5 5 501 -20 -バッド ⤵️️ 5 5 501 -20 -ヤジルシ ⤵️️ 5 5 501 -20 -クリカエシ 🔃️ 5 5 501 -20 -サイヨミコミ 🔃️ 5 5 501 -20 -トケイマワリ 🔃️ 5 5 501 -20 -ミギマワリ 🔃️ 5 5 501 -20 -ミギマワリタテヤジルシ 🔃️ 5 5 501 -20 -ヤジルシ 🔃️ 5 5 501 -20 -リロード 🔃️ 5 5 501 -20 -クリカエシ 🔄️ 5 5 501 -20 -ハントケイマワリ 🔄️ 5 5 501 -20 -ヒダリマワリヤジルシ 🔄️ 5 5 501 -20 -ヤジルシ 🔄️ 5 5 501 -20 -リピート 🔄️ 5 5 501 -20 -back 🔙️ 5 5 501 -20 -backヤジルシ 🔙️ 5 5 501 -20 -バック 🔙️ 5 5 501 -20 -バックヤジルシ 🔙️ 5 5 501 -20 -モドル 🔙️ 5 5 501 -20 -ヤジルシ 🔙️ 5 5 501 -20 -end 🔚️ 5 5 501 -20 -endヤジルシ 🔚️ 5 5 501 -20 -エンド 🔚️ 5 5 501 -20 -エンドヤジルシ 🔚️ 5 5 501 -20 -オワリ 🔚️ 5 5 501 -20 -ヤジルシ 🔚️ 5 5 501 -20 -on 🔛️ 5 5 501 -20 -onヤジルシ 🔛️ 5 5 501 -20 -オン 🔛️ 5 5 501 -20 -オンヤジルシ 🔛️ 5 5 501 -20 -ヤジルシ 🔛️ 5 5 501 -20 -soon 🔜️ 5 5 501 -20 -soonヤジルシ 🔜️ 5 5 501 -20 -スグ 🔜️ 5 5 501 -20 -スーン 🔜️ 5 5 501 -20 -スーンヤジルシ 🔜️ 5 5 501 -20 -ヤジルシ 🔜️ 5 5 501 -20 -top 🔝️ 5 5 501 -20 -topヤジルシ 🔝️ 5 5 501 -20 -ウエ 🔝️ 5 5 501 -20 -トップ 🔝️ 5 5 501 -20 -トップヤジルシ 🔝️ 5 5 501 -20 -ヤジルシ 🔝️ 5 5 501 -20 -イノリ 🛐️ 5 5 501 -20 -シュウキョウ 🛐️ 5 5 501 -20 -レイハイジョ 🛐️ 5 5 501 -20 -ゲンシ ⚛️️ 5 5 501 -20 -ゲンシノシンボル ⚛️️ 5 5 501 -20 -ゲンソ ⚛️️ 5 5 501 -20 -ブンシ ⚛️️ 5 5 501 -20 -ムシンロン ⚛️️ 5 5 501 -20 -オーム 🕉️️ 5 5 501 -20 -シュウキョウ 🕉️️ 5 5 501 -20 -ヒンドゥーキョウ 🕉️️ 5 5 501 -20 -シュウキョウ ✡️️ 5 5 501 -20 -ダビデノホシ ✡️️ 5 5 501 -20 -ホシ ✡️️ 5 5 501 -20 -ユダヤキョウ ✡️️ 5 5 501 -20 -シュウキョウ ☸️️ 5 5 501 -20 -テンボウリン ☸️️ 5 5 501 -20 -テンポウリン ☸️️ 5 5 501 -20 -ブッキョウ ☸️️ 5 5 501 -20 -ホウリン ☸️️ 5 5 501 -20 -インヤン ☯️️ 5 5 501 -20 -インヨウ ☯️️ 5 5 501 -20 -シュウキョウ ☯️️ 5 5 501 -20 -ドウキョウ ☯️️ 5 5 501 -20 -キリストキョウ ✝️️ 5 5 501 -20 -クロス ✝️️ 5 5 501 -20 -シュウキョウ ✝️️ 5 5 501 -20 -ジュウジカ ✝️️ 5 5 501 -20 -キリストキョウ ☦️️ 5 5 501 -20 -シュウキョウ ☦️️ 5 5 501 -20 -ジュウジカ ☦️️ 5 5 501 -20 -ハッタンジュウジカ ☦️️ 5 5 501 -20 -イスラムキョウ ☪️️ 5 5 501 -20 -シュウキョウ ☪️️ 5 5 501 -20 -ホシ ☪️️ 5 5 501 -20 -ホシトミカヅキ ☪️️ 5 5 501 -20 -ミカヅキ ☪️️ 5 5 501 -20 -ピースマーク ☮️️ 5 5 501 -20 -ヘイワ ☮️️ 5 5 501 -20 -シュウキョウ 🕎️ 5 5 501 -20 -ショクダイ 🕎️ 5 5 501 -20 -メノラー 🕎️ 5 5 501 -20 -メノーラー 🕎️ 5 5 501 -20 -ユダヤキョウ 🕎️ 5 5 501 -20 -ウラナイ 🔯️ 5 5 501 -20 -ダビデ 🔯️ 5 5 501 -20 -ホシ 🔯️ 5 5 501 -20 -ロクボウセイ 🔯️ 5 5 501 -20 -ロッカクセイ 🔯️ 5 5 501 -20 -カンダ 🪯️ 5 5 501 -20 -ケン 🪯️ 5 5 501 -20 -シクキョウ 🪯️ 5 5 501 -20 -シュウキョウ 🪯️ 5 5 501 -20 -シークキョウ 🪯️ 5 5 501 -20 -オヒツジザ ♈️ 5 5 501 -20 -セイザ ♈️ 5 5 501 -20 -オウシザ ♉️ 5 5 501 -20 -セイザ ♉️ 5 5 501 -20 -セイザ ♊️ 5 5 501 -20 -フタゴザ ♊️ 5 5 501 -20 -カニザ ♋️ 5 5 501 -20 -セイザ ♋️ 5 5 501 -20 -シシザ ♌️ 5 5 501 -20 -セイザ ♌️ 5 5 501 -20 -オトメザ ♍️ 5 5 501 -20 -セイザ ♍️ 5 5 501 -20 -セイザ ♎️ 5 5 501 -20 -テンビンザ ♎️ 5 5 501 -20 -サソリザ ♏️ 5 5 501 -20 -セイザ ♏️ 5 5 501 -20 -イテザ ♐️ 5 5 501 -20 -セイザ ♐️ 5 5 501 -20 -セイザ ♑️ 5 5 501 -20 -ヤギザ ♑️ 5 5 501 -20 -セイザ ♒️ 5 5 501 -20 -ミズガメザ ♒️ 5 5 501 -20 -ウオザ ♓️ 5 5 501 -20 -セイザ ♓️ 5 5 501 -20 -セイザ ⛎️ 5 5 501 -20 -ヘビツカイザ ⛎️ 5 5 501 -20 -ヘビツカザ ⛎️ 5 5 501 -20 -コウサ 🔀️ 5 5 501 -20 -シャッフル 🔀️ 5 5 501 -20 -シャッフルボタン 🔀️ 5 5 501 -20 -ボタン 🔀️ 5 5 501 -20 -ヤジルシ 🔀️ 5 5 501 -20 -クリカエシ 🔁️ 5 5 501 -20 -ゼンキョク 🔁️ 5 5 501 -20 -ボタン 🔁️ 5 5 501 -20 -ヤジルシ 🔁️ 5 5 501 -20 -リピートボタン 🔁️ 5 5 501 -20 -1キョクリピートボタン 🔂️ 5 5 501 -20 -クリカエシ 🔂️ 5 5 501 -20 -ボタン 🔂️ 5 5 501 -20 -ヤジルシ 🔂️ 5 5 501 -20 -リピート 🔂️ 5 5 501 -20 -サイセイ ▶️️ 5 5 501 -20 -サイセイボタン ▶️️ 5 5 501 -20 -ツギヘ ▶️️ 5 5 501 -20 -プレイ ▶️️ 5 5 501 -20 -ボタン ▶️️ 5 5 501 -20 -ミギムキサンカク ▶️️ 5 5 501 -20 -ヤジルシ ▶️️ 5 5 501 -20 -ハヤオクリ ⏩️ 5 5 501 -20 -ハヤオクリボタン ⏩️ 5 5 501 -20 -ボタン ⏩️ 5 5 501 -20 -ミギ ⏩️ 5 5 501 -20 -ヤジルシ ⏩️ 5 5 501 -20 -ツギノキョクボタン ⏭️️ 5 5 501 -20 -ツギノシーン ⏭️️ 5 5 501 -20 -ツギノトラック ⏭️️ 5 5 501 -20 -ボタン ⏭️️ 5 5 501 -20 -ヤジルシ ⏭️️ 5 5 501 -20 -イチジテイシ ⏯️️ 5 5 501 -20 -イチジテイシボタン ⏯️️ 5 5 501 -20 -サイセイ ⏯️️ 5 5 501 -20 -サイセイボタン ⏯️️ 5 5 501 -20 -ボタン ⏯️️ 5 5 501 -20 -ヤジルシ ⏯️️ 5 5 501 -20 -ギャクサイセイ ◀️️ 5 5 501 -20 -ギャクサイセイボタン ◀️️ 5 5 501 -20 -ヒダリムキサンカク ◀️️ 5 5 501 -20 -ボタン ◀️️ 5 5 501 -20 -マキモドシ ◀️️ 5 5 501 -20 -モドル ◀️️ 5 5 501 -20 -ヤジルシ ◀️️ 5 5 501 -20 -ハヤモドシ ⏪️ 5 5 501 -20 -ハヤモドシボタン ⏪️ 5 5 501 -20 -ヒダリ ⏪️ 5 5 501 -20 -マキモドシ ⏪️ 5 5 501 -20 -モドル ⏪️ 5 5 501 -20 -ヤジルシ ⏪️ 5 5 501 -20 -ボタン ⏮️️ 5 5 501 -20 -マエノキョクボタン ⏮️️ 5 5 501 -20 -マエノシーン ⏮️️ 5 5 501 -20 -マエノトラック ⏮️️ 5 5 501 -20 -ヤジルシ ⏮️️ 5 5 501 -20 -ウエ 🔼️ 5 5 501 -20 -ウエボタン 🔼️ 5 5 501 -20 -ウエムキサンカク 🔼️ 5 5 501 -20 -サンカク 🔼️ 5 5 501 -20 -ボタン 🔼️ 5 5 501 -20 -ヤジルシ 🔼️ 5 5 501 -20 -ウエ ⏫️ 5 5 501 -20 -コウソクジョウボタン ⏫️ 5 5 501 -20 -ニジュウ ⏫️ 5 5 501 -20 -ボタン ⏫️ 5 5 501 -20 -ヤジルシ ⏫️ 5 5 501 -20 -サンカク 🔽️ 5 5 501 -20 -シタ 🔽️ 5 5 501 -20 -シタボタン 🔽️ 5 5 501 -20 -シタムキサンカク 🔽️ 5 5 501 -20 -ボタン 🔽️ 5 5 501 -20 -ヤジルシ 🔽️ 5 5 501 -20 -コウソクシタボタン ⏬️ 5 5 501 -20 -シタ ⏬️ 5 5 501 -20 -ニジュウ ⏬️ 5 5 501 -20 -ボタン ⏬️ 5 5 501 -20 -ヤジルシ ⏬️ 5 5 501 -20 -イチジテイシ ⏸️️ 5 5 501 -20 -イチジテイシボタン ⏸️️ 5 5 501 -20 -ボタン ⏸️️ 5 5 501 -20 -ポーズ ⏸️️ 5 5 501 -20 -ストップ ⏹️️ 5 5 501 -20 -テイシ ⏹️️ 5 5 501 -20 -テイシボタン ⏹️️ 5 5 501 -20 -ボタン ⏹️️ 5 5 501 -20 -ボタン ⏺️️ 5 5 501 -20 -ロクオン ⏺️️ 5 5 501 -20 -ロクオンロクガボタン ⏺️️ 5 5 501 -20 -ロクガ ⏺️️ 5 5 501 -20 -イジェクト ⏏️️ 5 5 501 -20 -トリダシ ⏏️️ 5 5 501 -20 -トリダシボタン ⏏️️ 5 5 501 -20 -ボタン ⏏️️ 5 5 501 -20 -エイガ 🎦️ 5 5 501 -20 -エイガカン 🎦️ 5 5 501 -20 -カメラ 🎦️ 5 5 501 -20 -ドウガ 🎦️ 5 5 501 -20 -アカルサ 🔅️ 5 5 501 -20 -キド 🔅️ 5 5 501 -20 -クライ 🔅️ 5 5 501 -20 -テイキド 🔅️ 5 5 501 -20 -ブライトネス 🔅️ 5 5 501 -20 -アカルイ 🔆️ 5 5 501 -20 -アカルサ 🔆️ 5 5 501 -20 -キド 🔆️ 5 5 501 -20 -コウキド 🔆️ 5 5 501 -20 -ブライトネス 🔆️ 5 5 501 -20 -アンテナマーク 📶️ 5 5 501 -20 -ケイタイ 📶️ 5 5 501 -20 -ケイタイデンワ 📶️ 5 5 501 -20 -ケンナイ 📶️ 5 5 501 -20 -スマホ 📶️ 5 5 501 -20 -スマートフォン 📶️ 5 5 501 -20 -デンパ 📶️ 5 5 501 -20 -インターネット 🛜️ 5 5 501 -20 -スマホ 🛜️ 5 5 501 -20 -デンパ 🛜️ 5 5 501 -20 -ネット 🛜️ 5 5 501 -20 -ネットワーク 🛜️ 5 5 501 -20 -パソコン 🛜️ 5 5 501 -20 -ムセン 🛜️ 5 5 501 -20 -ワイファイ 🛜️ 5 5 501 -20 -ワイヤレス 🛜️ 5 5 501 -20 -ケイタイ 📳️ 5 5 501 -20 -ケイタイデンワ 📳️ 5 5 501 -20 -スマホ 📳️ 5 5 501 -20 -スマートフォン 📳️ 5 5 501 -20 -マナーモード 📳️ 5 5 501 -20 -ケイタイ 📴️ 5 5 501 -20 -ケイタイデンワ 📴️ 5 5 501 -20 -ケイタイデンワデンゲンオフ 📴️ 5 5 501 -20 -スマホ 📴️ 5 5 501 -20 -スマートフォン 📴️ 5 5 501 -20 -デンゲンオフ 📴️ 5 5 501 -20 -オンナ ♀️️ 5 5 501 -20 -シンボル ♀️️ 5 5 501 -20 -ジョセイ ♀️️ 5 5 501 -20 -ジョセイノマーク ♀️️ 5 5 501 -20 -オトコ ♂️️ 5 5 501 -20 -シンボル ♂️️ 5 5 501 -20 -ダンセイ ♂️️ 5 5 501 -20 -ダンセイノマーク ♂️️ 5 5 501 -20 -lgbt ⚧️️ 5 5 501 -20 -シンボル ⚧️️ 5 5 501 -20 -セイベツ ⚧️️ 5 5 501 -20 -ティージー ⚧️️ 5 5 501 -20 -トランスジェンダーノマーク ⚧️️ 5 5 501 -20 -カケザン ✖️️ 5 5 501 -20 -カケル ✖️️ 5 5 501 -20 -キゴウ ✖️️ 5 5 501 -20 -キャンセル ✖️️ 5 5 501 -20 -ジョウザン ✖️️ 5 5 501 -20 -バツ ✖️️ 5 5 501 -20 -ペケ ✖️️ 5 5 501 -20 -カサン ➕️ 5 5 501 -20 -キゴウ ➕️ 5 5 501 -20 -タシザン ➕️ 5 5 501 -20 -タス ➕️ 5 5 501 -20 -プラス ➕️ 5 5 501 -20 -キゴウ ➖️ 5 5 501 -20 -ゲンザン ➖️ 5 5 501 -20 -ヒキザン ➖️ 5 5 501 -20 -ヒク ➖️ 5 5 501 -20 -マイナス ➖️ 5 5 501 -20 -ー ➖️ 5 5 501 -20 -キゴウ ➗️ 5 5 501 -20 -ジョサン ➗️ 5 5 501 -20 -ワリザン ➗️ 5 5 501 -20 -ワル ➗️ 5 5 501 -20 -・ ➗️ 5 5 501 -20 -イコール 🟰️ 5 5 501 -20 -スウガク 🟰️ 5 5 501 -20 -トウゴウ 🟰️ 5 5 501 -20 -ヒトシイ 🟰️ 5 5 501 -20 -フトジノトウゴウ 🟰️ 5 5 501 -20 -エイエン ♾️️ 5 5 501 -20 -バンブツ ♾️️ 5 5 501 -20 -ムゲン ♾️️ 5 5 501 -20 -ムゲンダイ ♾️️ 5 5 501 -20 -エクスクラメーションマーク ‼️️ 5 5 501 -20 -キゴウ ‼️️ 5 5 501 -20 -ニジュウカンタンフ ‼️️ 5 5 501 -20 -ビックリマーク ‼️️ 5 5 501 -20 -ヤクモノ ‼️️ 5 5 501 -20 -カンタンフギモンフ ⁉️️ 5 5 501 -20 -キゴウ ⁉️️ 5 5 501 -20 -ハテナマーク ⁉️️ 5 5 501 -20 -ビックリマーク ⁉️️ 5 5 501 -20 -アカイギモンフ ❓️ 5 5 501 -20 -キゴウ ❓️ 5 5 501 -20 -ギモンフ ❓️ 5 5 501 -20 -クエスチョン ❓️ 5 5 501 -20 -クエスチョンマーク ❓️ 5 5 501 -20 -ハテナ ❓️ 5 5 501 -20 -ハテナマーク ❓️ 5 5 501 -20 -ヤクモノ ❓️ 5 5 501 -20 -キゴウ ❔️ 5 5 501 -20 -クエスチョン ❔️ 5 5 501 -20 -クエスチョンマーク ❔️ 5 5 501 -20 -シロイギモンフ ❔️ 5 5 501 -20 -ハテナ ❔️ 5 5 501 -20 -ハテナマーク ❔️ 5 5 501 -20 -ヤクモノ ❔️ 5 5 501 -20 -エクスクラメーションマーク ❕️ 5 5 501 -20 -キゴウ ❕️ 5 5 501 -20 -シロイカンタンフ ❕️ 5 5 501 -20 -ビックリ ❕️ 5 5 501 -20 -ビックリマーク ❕️ 5 5 501 -20 -ヤクモノ ❕️ 5 5 501 -20 -アカイカンタンフ ❗️ 5 5 501 -20 -エクスクラメーションマーク ❗️ 5 5 501 -20 -カンタンフ ❗️ 5 5 501 -20 -キゴウ ❗️ 5 5 501 -20 -ビックリマーク ❗️ 5 5 501 -20 -ヤクモノ ❗️ 5 5 501 -20 -キゴウ 〰️️ 5 5 501 -20 -チョウオンキゴウ 〰️️ 5 5 501 -20 -ナミセン 〰️️ 5 5 501 -20 -ハセン 〰️️ 5 5 501 -20 -ヤクモノ 〰️️ 5 5 501 -20 -ー 〰️️ 5 5 501 -20 -エン 💱️ 5 5 501 -20 -オカネ 💱️ 5 5 501 -20 -ガイカリョウガエ 💱️ 5 5 501 -20 -ツウカ 💱️ 5 5 501 -20 -ドル 💱️ 5 5 501 -20 -リョウガエ 💱️ 5 5 501 -20 -オカネ 💲️ 5 5 501 -20 -ツウカ 💲️ 5 5 501 -20 -ドル 💲️ 5 5 501 -20 -ドルキゴウ 💲️ 5 5 501 -20 -アスクレピオスノツエ ⚕️️ 5 5 501 -20 -イシャ ⚕️️ 5 5 501 -20 -イリョウ ⚕️️ 5 5 501 -20 -イリョウノシンボル ⚕️️ 5 5 501 -20 -チリョウ ⚕️️ 5 5 501 -20 -サイセイ ♻️️ 5 5 501 -20 -サイリヨウ ♻️️ 5 5 501 -20 -ジュンカンヤジルシ ♻️️ 5 5 501 -20 -リサイクル ♻️️ 5 5 501 -20 -リサイクルマーク ♻️️ 5 5 501 -20 -エンブレム ⚜️️ 5 5 501 -20 -フランスオウケ ⚜️️ 5 5 501 -20 -フルールドリス ⚜️️ 5 5 501 -20 -モンショウ ⚜️️ 5 5 501 -20 -ユリ ⚜️️ 5 5 501 -20 -イカリ 🔱️ 5 5 501 -20 -ウミ 🔱️ 5 5 501 -20 -エンブレム 🔱️ 5 5 501 -20 -トライデント 🔱️ 5 5 501 -20 -ミツマタ 🔱️ 5 5 501 -20 -ナフダ 📛️ 5 5 501 -20 -ホイクエン 📛️ 5 5 501 -20 -ホイクショ 📛️ 5 5 501 -20 -ヨウチエン 📛️ 5 5 501 -20 -ショシンシャ 🔰️ 5 5 501 -20 -ショシンシャマーク 🔰️ 5 5 501 -20 -ハツ 🔰️ 5 5 501 -20 -ワカバマーク 🔰️ 5 5 501 -20 -エン ⭕️ 5 5 501 -20 -キゴウ ⭕️ 5 5 501 -20 -フトイマル ⭕️ 5 5 501 -20 -マル ⭕️ 5 5 501 -20 -ワ ⭕️ 5 5 501 -20 -キゴウ ✅️ 5 5 501 -20 -シロヌキノチェック ✅️ 5 5 501 -20 -チェック ✅️ 5 5 501 -20 -チェックマーク ✅️ 5 5 501 -20 -ピン ✅️ 5 5 501 -20 -キゴウ ☑️️ 5 5 501 -20 -チェック ☑️️ 5 5 501 -20 -チェックボックス ☑️️ 5 5 501 -20 -チェックマーク ☑️️ 5 5 501 -20 -キゴウ ✔️️ 5 5 501 -20 -チェック ✔️️ 5 5 501 -20 -チェックマーク ✔️️ 5 5 501 -20 -フトジノチェック ✔️️ 5 5 501 -20 -カケザン ❌️ 5 5 501 -20 -キゴウ ❌️ 5 5 501 -20 -キャンセル ❌️ 5 5 501 -20 -ジョウザン ❌️ 5 5 501 -20 -バツ ❌️ 5 5 501 -20 -ペケ ❌️ 5 5 501 -20 -カケザン ❎️ 5 5 501 -20 -キゴウ ❎️ 5 5 501 -20 -キャンセル ❎️ 5 5 501 -20 -シロヌキノバツ ❎️ 5 5 501 -20 -ジョウザン ❎️ 5 5 501 -20 -バツ ❎️ 5 5 501 -20 -ペケ ❎️ 5 5 501 -20 -キゴウ ➰️ 5 5 501 -20 -チョウオン ➰️ 5 5 501 -20 -ループ ➰️ 5 5 501 -20 -ワッカ ➰️ 5 5 501 -20 -キゴウ ➿️ 5 5 501 -20 -ダブルループ ➿️ 5 5 501 -20 -フリーダイヤル ➿️ 5 5 501 -20 -ループ ➿️ 5 5 501 -20 -ワッカ ➿️ 5 5 501 -20 -アンテン 〽️️ 5 5 501 -20 -イオリテン 〽️️ 5 5 501 -20 -ウタキゴウ 〽️️ 5 5 501 -20 -キゴウ 〽️️ 5 5 501 -20 -ヤクモノ 〽️️ 5 5 501 -20 -アスタリスク ✳️️ 5 5 501 -20 -カザリ ✳️️ 5 5 501 -20 -キゴウ ✳️️ 5 5 501 -20 -ハッカクアスタリスク ✳️️ 5 5 501 -20 -ホシ ✳️️ 5 5 501 -20 -ヤクモノ ✳️️ 5 5 501 -20 -カザリ ✴️️ 5 5 501 -20 -キゴウ ✴️️ 5 5 501 -20 -スパーク ✴️️ 5 5 501 -20 -ハッカクセイ ✴️️ 5 5 501 -20 -ホシ ✴️️ 5 5 501 -20 -ヤクモノ ✴️️ 5 5 501 -20 -アスタリスク ❇️️ 5 5 501 -20 -キゴウ ❇️️ 5 5 501 -20 -スパーク ❇️️ 5 5 501 -20 -スパークル ❇️️ 5 5 501 -20 -ヤクモノ ❇️️ 5 5 501 -20 -cマーク ©️️ 5 5 501 -20 -キゴウ ©️️ 5 5 501 -20 -コピーライト ©️️ 5 5 501 -20 -シーマーク ©️️ 5 5 501 -20 -チョサクケン ©️️ 5 5 501 -20 -チョサクケンマーク ©️️ 5 5 501 -20 -アールマーク ®️️ 5 5 501 -20 -キゴウ ®️️ 5 5 501 -20 -トウロクショウヒョウ ®️️ 5 5 501 -20 -トウロクショウヒョウマーク ®️️ 5 5 501 -20 -tmマーク ™️️ 5 5 501 -20 -キゴウ ™️️ 5 5 501 -20 -ショウヒョウ ™️️ 5 5 501 -20 -ショウヒョウマーク ™️️ 5 5 501 -20 -ティーエムマーク ™️️ 5 5 501 -20 -トレードマーク ™️️ 5 5 501 -20 -カコミスウジ #️⃣️ 5 5 501 -20 -シャープ #️⃣️ 5 5 501 -20 -シャープダイヤル #️⃣️ 5 5 501 -20 -カコミスウジ *️⃣️ 5 5 501 -20 -0 0️⃣️ 5 5 501 -20 -カコミスウジ 0️⃣️ 5 5 501 -20 -1 1️⃣️ 5 5 501 -20 -カコミスウジ 1️⃣️ 5 5 501 -20 -2 2️⃣️ 5 5 501 -20 -カコミスウジ 2️⃣️ 5 5 501 -20 -3 3️⃣️ 5 5 501 -20 -カコミスウジ 3️⃣️ 5 5 501 -20 -4 4️⃣️ 5 5 501 -20 -カコミスウジ 4️⃣️ 5 5 501 -20 -5 5️⃣️ 5 5 501 -20 -カコミスウジ 5️⃣️ 5 5 501 -20 -6 6️⃣️ 5 5 501 -20 -カコミスウジ 6️⃣️ 5 5 501 -20 -7 7️⃣️ 5 5 501 -20 -カコミスウジ 7️⃣️ 5 5 501 -20 -8 8️⃣️ 5 5 501 -20 -カコミスウジ 8️⃣️ 5 5 501 -20 -9 9️⃣️ 5 5 501 -20 -カコミスウジ 9️⃣️ 5 5 501 -20 -10 🔟️ 5 5 501 -20 -カコミスウジ 🔟️ 5 5 501 -20 -abcd 🔠️ 5 5 501 -20 -アルファベット 🔠️ 5 5 501 -20 -エイオオモジノニュウリョク 🔠️ 5 5 501 -20 -エイジ 🔠️ 5 5 501 -20 -エービーシーディ 🔠️ 5 5 501 -20 -オオモジ 🔠️ 5 5 501 -20 -ダイモンジ 🔠️ 5 5 501 -20 -ローマジ 🔠️ 5 5 501 -20 -abcd 🔡️ 5 5 501 -20 -アルファベット 🔡️ 5 5 501 -20 -エイコモジノニュウリョク 🔡️ 5 5 501 -20 -エイジ 🔡️ 5 5 501 -20 -エービーシーディー 🔡️ 5 5 501 -20 -コモジ 🔡️ 5 5 501 -20 -ローマジ 🔡️ 5 5 501 -20 -1234 🔢️ 5 5 501 -20 -スウジ 🔢️ 5 5 501 -20 -スウジノニュウリョク 🔢️ 5 5 501 -20 -ニュウリョク 🔢️ 5 5 501 -20 -キゴウ 🔣️ 5 5 501 -20 -キゴウノニュウリョク 🔣️ 5 5 501 -20 -ニュウリョク 🔣️ 5 5 501 -20 -abc 🔤️ 5 5 501 -20 -アルファベット 🔤️ 5 5 501 -20 -エイゴ 🔤️ 5 5 501 -20 -エイジ 🔤️ 5 5 501 -20 -エイジノニュウリョク 🔤️ 5 5 501 -20 -エイビーシー 🔤️ 5 5 501 -20 -エービーシー 🔤️ 5 5 501 -20 -ローマジ 🔤️ 5 5 501 -20 -a 🅰️️ 5 5 501 -20 -エイガタ 🅰️️ 5 5 501 -20 -エーガタ 🅰️️ 5 5 501 -20 -ケツエキガタ 🅰️️ 5 5 501 -20 -ケツエキガタエイガタ 🅰️️ 5 5 501 -20 -ケツエキガタエーガタ 🅰️️ 5 5 501 -20 -ab 🆎️ 5 5 501 -20 -エイビーガタ 🆎️ 5 5 501 -20 -エービーガタ 🆎️ 5 5 501 -20 -ケツエキガタ 🆎️ 5 5 501 -20 -ケツエキガタエイビーガタ 🆎️ 5 5 501 -20 -ケツエキガタエービーガタ 🆎️ 5 5 501 -20 -b 🅱️️ 5 5 501 -20 -ケツエキガタ 🅱️️ 5 5 501 -20 -ケツエキガタビーガタ 🅱️️ 5 5 501 -20 -ビーガタ 🅱️️ 5 5 501 -20 -cl 🆑️ 5 5 501 -20 -clマーク 🆑️ 5 5 501 -20 -クリア 🆑️ 5 5 501 -20 -シーエル 🆑️ 5 5 501 -20 -シーエルマーク 🆑️ 5 5 501 -20 -cool 🆒️ 5 5 501 -20 -coolマーク 🆒️ 5 5 501 -20 -クール 🆒️ 5 5 501 -20 -クールマーク 🆒️ 5 5 501 -20 -freeマーク 🆓️ 5 5 501 -20 -タダ 🆓️ 5 5 501 -20 -フリー 🆓️ 5 5 501 -20 -フリーマーク 🆓️ 5 5 501 -20 -ムリョウ 🆓️ 5 5 501 -20 -i ℹ️️ 5 5 501 -20 -iマーク ℹ️️ 5 5 501 -20 -アイ ℹ️️ 5 5 501 -20 -アイマーク ℹ️️ 5 5 501 -20 -インフォメーション ℹ️️ 5 5 501 -20 -インフォメーションシンボル ℹ️️ 5 5 501 -20 -ジョウホウ ℹ️️ 5 5 501 -20 -id 🆔️ 5 5 501 -20 -idマーク 🆔️ 5 5 501 -20 -アイディー 🆔️ 5 5 501 -20 -アイディーマーク 🆔️ 5 5 501 -20 -m Ⓜ️️ 5 5 501 -20 -エム Ⓜ️️ 5 5 501 -20 -チカテツ Ⓜ️️ 5 5 501 -20 -マル Ⓜ️️ 5 5 501 -20 -マルイエムマーク Ⓜ️️ 5 5 501 -20 -new 🆕️ 5 5 501 -20 -newマーク 🆕️ 5 5 501 -20 -アタラシイ 🆕️ 5 5 501 -20 -ニュー 🆕️ 5 5 501 -20 -ニューマーク 🆕️ 5 5 501 -20 -ng 🆖️ 5 5 501 -20 -ngマーク 🆖️ 5 5 501 -20 -エヌジー 🆖️ 5 5 501 -20 -エヌジーマーク 🆖️ 5 5 501 -20 -ボツ 🆖️ 5 5 501 -20 -o 🅾️️ 5 5 501 -20 -オーガタ 🅾️️ 5 5 501 -20 -ケツエキガタ 🅾️️ 5 5 501 -20 -ケツエキガタオーガタ 🅾️️ 5 5 501 -20 -ok 🆗️ 5 5 501 -20 -okマーク 🆗️ 5 5 501 -20 -オッケー 🆗️ 5 5 501 -20 -オーケー 🆗️ 5 5 501 -20 -オーケーマーク 🆗️ 5 5 501 -20 -p 🅿️️ 5 5 501 -20 -チュウシャ 🅿️️ 5 5 501 -20 -チュウシャジョウ 🅿️️ 5 5 501 -20 -パーキング 🅿️️ 5 5 501 -20 -ピー 🅿️️ 5 5 501 -20 -ピーマーク 🅿️️ 5 5 501 -20 -sos 🆘️ 5 5 501 -20 -sosマーク 🆘️ 5 5 501 -20 -エスオーエス 🆘️ 5 5 501 -20 -エスオーエスマーク 🆘️ 5 5 501 -20 -タスケテ 🆘️ 5 5 501 -20 -up 🆙️ 5 5 501 -20 -upマーク 🆙️ 5 5 501 -20 -アップ 🆙️ 5 5 501 -20 -アップマーク 🆙️ 5 5 501 -20 -コウシン 🆙️ 5 5 501 -20 -vs 🆚️ 5 5 501 -20 -vsマーク 🆚️ 5 5 501 -20 -バーサス 🆚️ 5 5 501 -20 -バーサスマーク 🆚️ 5 5 501 -20 -ブイエス 🆚️ 5 5 501 -20 -ブイエスマーク 🆚️ 5 5 501 -20 -ヴァーサス 🆚️ 5 5 501 -20 -ヴィエス 🆚️ 5 5 501 -20 -ココ 🈁️ 5 5 501 -20 -ココノマーク 🈁️ 5 5 501 -20 -サ 🈂️️ 5 5 501 -20 -サノマーク 🈂️️ 5 5 501 -20 -サービス 🈂️️ 5 5 501 -20 -サービスリョウ 🈂️️ 5 5 501 -20 -ゲツガク 🈷️️ 5 5 501 -20 -ツキ 🈷️️ 5 5 501 -20 -ツキギメ 🈷️️ 5 5 501 -20 -ツキマーク 🈷️️ 5 5 501 -20 -ユウ 🈶️ 5 5 501 -20 -ユウゲン 🈶️ 5 5 501 -20 -ユウマーク 🈶️ 5 5 501 -20 -ユウリョウ 🈶️ 5 5 501 -20 -シテイ 🈯️ 5 5 501 -20 -シテイセキ 🈯️ 5 5 501 -20 -ユビ 🈯️ 5 5 501 -20 -ユビマーク 🈯️ 5 5 501 -20 -オトク 🉐️ 5 5 501 -20 -トク 🉐️ 5 5 501 -20 -マルトク 🉐️ 5 5 501 -20 -ディスカウント 🈹️ 5 5 501 -20 -ワリ 🈹️ 5 5 501 -20 -ワリビキ 🈹️ 5 5 501 -20 -ワリマーク 🈹️ 5 5 501 -20 -タダ 🈚️ 5 5 501 -20 -ム 🈚️ 5 5 501 -20 -ムマーク 🈚️ 5 5 501 -20 -ムリョウ 🈚️ 5 5 501 -20 -キン 🈲️ 5 5 501 -20 -キンシ 🈲️ 5 5 501 -20 -キンマーク 🈲️ 5 5 501 -20 -ゲンキン 🈲️ 5 5 501 -20 -カ 🉑️ 5 5 501 -20 -カノウ 🉑️ 5 5 501 -20 -カマーク 🉑️ 5 5 501 -20 -キョカ 🉑️ 5 5 501 -20 -シン 🈸️ 5 5 501 -20 -シンセイ 🈸️ 5 5 501 -20 -シンマーク 🈸️ 5 5 501 -20 -モウシコミ 🈸️ 5 5 501 -20 -モウシコミマーク 🈸️ 5 5 501 -20 -ゴウ 🈴️ 5 5 501 -20 -ゴウカク 🈴️ 5 5 501 -20 -ゴウマーク 🈴️ 5 5 501 -20 -アキ 🈳️ 5 5 501 -20 -アキマーク 🈳️ 5 5 501 -20 -カラ 🈳️ 5 5 501 -20 -クウ 🈳️ 5 5 501 -20 -クウシツ 🈳️ 5 5 501 -20 -クウセキ 🈳️ 5 5 501 -20 -ソラ 🈳️ 5 5 501 -20 -ソラマーク 🈳️ 5 5 501 -20 -イワイ ㊗️️ 5 5 501 -20 -イワイマーク ㊗️️ 5 5 501 -20 -オイワイ ㊗️️ 5 5 501 -20 -オメデトウ ㊗️️ 5 5 501 -20 -シュク ㊗️️ 5 5 501 -20 -シュクマーク ㊗️️ 5 5 501 -20 -ゴクヒ ㊙️️ 5 5 501 -20 -シャガイヒ ㊙️️ 5 5 501 -20 -ヒ ㊙️️ 5 5 501 -20 -ヒミツ ㊙️️ 5 5 501 -20 -マルヒ ㊙️️ 5 5 501 -20 -エイ 🈺️ 5 5 501 -20 -エイギョウ 🈺️ 5 5 501 -20 -エイギョウチュウ 🈺️ 5 5 501 -20 -エイギョウビ 🈺️ 5 5 501 -20 -エイマーク 🈺️ 5 5 501 -20 -マン 🈵️ 5 5 501 -20 -マンイン 🈵️ 5 5 501 -20 -マンシツ 🈵️ 5 5 501 -20 -マンシャ 🈵️ 5 5 501 -20 -マンセキ 🈵️ 5 5 501 -20 -マンマーク 🈵️ 5 5 501 -20 -アカ 🔴️ 5 5 501 -20 -アカイマル 🔴️ 5 5 501 -20 -オオキイマル 🔴️ 5 5 501 -20 -オオマル 🔴️ 5 5 501 -20 -マル 🔴️ 5 5 501 -20 -マルイボタン 🔴️ 5 5 501 -20 -オレンジ 🟠️ 5 5 501 -20 -オレンジノマル 🟠️ 5 5 501 -20 -マル 🟠️ 5 5 501 -20 -マルイボタン 🟠️ 5 5 501 -20 -キイロ 🟡️ 5 5 501 -20 -キイロイマル 🟡️ 5 5 501 -20 -マル 🟡️ 5 5 501 -20 -マルイボタン 🟡️ 5 5 501 -20 -マル 🟢️ 5 5 501 -20 -マルイボタン 🟢️ 5 5 501 -20 -ミドリ 🟢️ 5 5 501 -20 -ミドリノマル 🟢️ 5 5 501 -20 -アオ 🔵️ 5 5 501 -20 -アオイマル 🔵️ 5 5 501 -20 -オオキイマル 🔵️ 5 5 501 -20 -オオマル 🔵️ 5 5 501 -20 -マル 🔵️ 5 5 501 -20 -マルイボタン 🔵️ 5 5 501 -20 -マル 🟣️ 5 5 501 -20 -マルイボタン 🟣️ 5 5 501 -20 -ムラサキ 🟣️ 5 5 501 -20 -ムラサキノマル 🟣️ 5 5 501 -20 -チャイロ 🟤️ 5 5 501 -20 -チャイロノマル 🟤️ 5 5 501 -20 -マル 🟤️ 5 5 501 -20 -マルイボタン 🟤️ 5 5 501 -20 -クロ ⚫️ 5 5 501 -20 -クロイマル ⚫️ 5 5 501 -20 -マル ⚫️ 5 5 501 -20 -マルイボタン ⚫️ 5 5 501 -20 -シロ ⚪️ 5 5 501 -20 -シロイマル ⚪️ 5 5 501 -20 -マル ⚪️ 5 5 501 -20 -マルイボタン ⚪️ 5 5 501 -20 -アカ 🟥️ 5 5 501 -20 -アカイシカク 🟥️ 5 5 501 -20 -シカク 🟥️ 5 5 501 -20 -セイホウケイ 🟥️ 5 5 501 -20 -オレンジ 🟧️ 5 5 501 -20 -オレンジノシカク 🟧️ 5 5 501 -20 -シカク 🟧️ 5 5 501 -20 -セイホウケイ 🟧️ 5 5 501 -20 -キイロ 🟨️ 5 5 501 -20 -キイロイシカク 🟨️ 5 5 501 -20 -シカク 🟨️ 5 5 501 -20 -セイホウケイ 🟨️ 5 5 501 -20 -シカク 🟩️ 5 5 501 -20 -セイホウケイ 🟩️ 5 5 501 -20 -ミドリ 🟩️ 5 5 501 -20 -ミドリノシカク 🟩️ 5 5 501 -20 -アオ 🟦️ 5 5 501 -20 -アオイシカク 🟦️ 5 5 501 -20 -シカク 🟦️ 5 5 501 -20 -セイホウケイ 🟦️ 5 5 501 -20 -シカク 🟪️ 5 5 501 -20 -セイホウケイ 🟪️ 5 5 501 -20 -ムラサキ 🟪️ 5 5 501 -20 -ムラサキノシカク 🟪️ 5 5 501 -20 -シカク 🟫️ 5 5 501 -20 -セイホウケイ 🟫️ 5 5 501 -20 -チャイロ 🟫️ 5 5 501 -20 -チャイロイシカク 🟫️ 5 5 501 -20 -クロ ⬛️ 5 5 501 -20 -クロシカクトクダイ ⬛️ 5 5 501 -20 -シカク ⬛️ 5 5 501 -20 -セイホウケイ ⬛️ 5 5 501 -20 -シカク ⬜️ 5 5 501 -20 -シロ ⬜️ 5 5 501 -20 -シロシカクトクダイ ⬜️ 5 5 501 -20 -セイホウケイ ⬜️ 5 5 501 -20 -クロ ◼️️ 5 5 501 -20 -クロシカクダイ ◼️️ 5 5 501 -20 -シカク ◼️️ 5 5 501 -20 -セイホウケイ ◼️️ 5 5 501 -20 -シカク ◻️️ 5 5 501 -20 -シロ ◻️️ 5 5 501 -20 -シロシカクダイ ◻️️ 5 5 501 -20 -セイホウケイ ◻️️ 5 5 501 -20 -クロ ◾️ 5 5 501 -20 -クロシカクチュウ ◾️ 5 5 501 -20 -シカク ◾️ 5 5 501 -20 -セイホウケイ ◾️ 5 5 501 -20 -シカク ◽️ 5 5 501 -20 -シロ ◽️ 5 5 501 -20 -シロシカクチュウ ◽️ 5 5 501 -20 -セイホウケイ ◽️ 5 5 501 -20 -クロ ▪️️ 5 5 501 -20 -クロシカクショウ ▪️️ 5 5 501 -20 -シカク ▪️️ 5 5 501 -20 -セイホウケイ ▪️️ 5 5 501 -20 -シカク ▫️️ 5 5 501 -20 -シロ ▫️️ 5 5 501 -20 -シロシカクショウ ▫️️ 5 5 501 -20 -セイホウケイ ▫️️ 5 5 501 -20 -オオキイオレンジノヒシガタ 🔶️ 5 5 501 -20 -オオキイヒシガタ 🔶️ 5 5 501 -20 -オレンジ 🔶️ 5 5 501 -20 -シカク 🔶️ 5 5 501 -20 -ダイア 🔶️ 5 5 501 -20 -ダイヤ 🔶️ 5 5 501 -20 -ヒシガタ 🔶️ 5 5 501 -20 -アオ 🔷️ 5 5 501 -20 -オオキイアオノヒシガタ 🔷️ 5 5 501 -20 -オオキイヒシガタ 🔷️ 5 5 501 -20 -シカク 🔷️ 5 5 501 -20 -ダイア 🔷️ 5 5 501 -20 -ダイヤ 🔷️ 5 5 501 -20 -ヒシガタ 🔷️ 5 5 501 -20 -オレンジ 🔸️ 5 5 501 -20 -シカク 🔸️ 5 5 501 -20 -ダイア 🔸️ 5 5 501 -20 -ダイヤ 🔸️ 5 5 501 -20 -チイサイオレンジノヒシガタ 🔸️ 5 5 501 -20 -チイサイヒシガタ 🔸️ 5 5 501 -20 -ヒシガタ 🔸️ 5 5 501 -20 -アオ 🔹️ 5 5 501 -20 -シカク 🔹️ 5 5 501 -20 -ダイア 🔹️ 5 5 501 -20 -ダイヤ 🔹️ 5 5 501 -20 -チイサイアオノヒシガタ 🔹️ 5 5 501 -20 -チイサイヒシガタ 🔹️ 5 5 501 -20 -ヒシガタ 🔹️ 5 5 501 -20 -アカ 🔺️ 5 5 501 -20 -アカイウエサンカク 🔺️ 5 5 501 -20 -ウエ 🔺️ 5 5 501 -20 -ウエムキサンカク 🔺️ 5 5 501 -20 -サンカク 🔺️ 5 5 501 -20 -アカ 🔻️ 5 5 501 -20 -アカイシタサンカク 🔻️ 5 5 501 -20 -サンカク 🔻️ 5 5 501 -20 -シタ 🔻️ 5 5 501 -20 -シタムキサンカク 🔻️ 5 5 501 -20 -カワイイ 💠️ 5 5 501 -20 -ダイア 💠️ 5 5 501 -20 -ダイヤ 💠️ 5 5 501 -20 -ドットツキヒシガタ 💠️ 5 5 501 -20 -ヒシガタ 💠️ 5 5 501 -20 -ニジュウマル 🔘️ 5 5 501 -20 -ボタン 🔘️ 5 5 501 -20 -ラジオボタン 🔘️ 5 5 501 -20 -シカク 🔳️ 5 5 501 -20 -シカクボタン 🔳️ 5 5 501 -20 -シロワクシカク 🔳️ 5 5 501 -20 -セイホウケイ 🔳️ 5 5 501 -20 -ボタン 🔳️ 5 5 501 -20 -クロワクシカク 🔲️ 5 5 501 -20 -シカク 🔲️ 5 5 501 -20 -シカクボタン 🔲️ 5 5 501 -20 -セイホウケイ 🔲️ 5 5 501 -20 -ボタン 🔲️ 5 5 501 -20 -スポーツ 🏁️ 5 5 501 -20 -チェッカー 🏁️ 5 5 501 -20 -チェッカーフラグ 🏁️ 5 5 501 -20 -チェッカーフラッグ 🏁️ 5 5 501 -20 -ハタ 🏁️ 5 5 501 -20 -フラグ 🏁️ 5 5 501 -20 -フラッグ 🏁️ 5 5 501 -20 -レース 🏁️ 5 5 501 -20 -ゴルフ 🚩️ 5 5 501 -20 -サンカクノハタ 🚩️ 5 5 501 -20 -スポーツ 🚩️ 5 5 501 -20 -ハタ 🚩️ 5 5 501 -20 -フラグ 🚩️ 5 5 501 -20 -フラッグ 🚩️ 5 5 501 -20 -シュクジツ 🎌️ 5 5 501 -20 -シュクジツノハタ 🎌️ 5 5 501 -20 -ハタ 🎌️ 5 5 501 -20 -ヒノマル 🎌️ 5 5 501 -20 -フラグ 🎌️ 5 5 501 -20 -フラッグ 🎌️ 5 5 501 -20 -クロ 🏴️ 5 5 501 -20 -クロハタ 🏴️ 5 5 501 -20 -コッキ 🏴️ 5 5 501 -20 -ハタ 🏴️ 5 5 501 -20 -フラグ 🏴️ 5 5 501 -20 -フラッグ 🏴️ 5 5 501 -20 -シラハタ 🏳️️ 5 5 501 -20 -シロ 🏳️️ 5 5 501 -20 -シロハタ 🏳️️ 5 5 501 -20 -ハタ 🏳️️ 5 5 501 -20 -ハッキ 🏳️️ 5 5 501 -20 -フラグ 🏳️️ 5 5 501 -20 -フラッグ 🏳️️ 5 5 501 -20 -lgbt 🏳️‍🌈️ 5 5 501 -20 -ニジイロノハタ 🏳️‍🌈️ 5 5 501 -20 -ハタ 🏳️‍🌈️ 5 5 501 -20 -フラグ 🏳️‍🌈️ 5 5 501 -20 -フラッグ 🏳️‍🌈️ 5 5 501 -20 -レインボー 🏳️‍🌈️ 5 5 501 -20 -レインボーフラッグ 🏳️‍🌈️ 5 5 501 -20 -lgbt 🏳️‍⚧️️ 5 5 501 -20 -ティージー 🏳️‍⚧️️ 5 5 501 -20 -トランスジェンダー 🏳️‍⚧️️ 5 5 501 -20 -トランスジェンダーフラッグ 🏳️‍⚧️️ 5 5 501 -20 -ハタ 🏳️‍⚧️️ 5 5 501 -20 -フラグ 🏳️‍⚧️️ 5 5 501 -20 -フラッグ 🏳️‍⚧️️ 5 5 501 -20 -カイゾク 🏴‍☠️️ 5 5 501 -20 -カイゾクキ 🏴‍☠️️ 5 5 501 -20 -ジョリーロジャー 🏴‍☠️️ 5 5 501 -20 -タカラモノ 🏴‍☠️️ 5 5 501 -20 -ホウモツ 🏴‍☠️️ 5 5 501 -20 -リャクダツ 🏴‍☠️️ 5 5 501 -20 -アセンショントウ 🇦🇨️ 5 5 501 -20 -コッキ 🇦🇨️ 5 5 501 -20 -ハタ 🇦🇨️ 5 5 501 -20 -フラグ 🇦🇨️ 5 5 501 -20 -フラッグ 🇦🇨️ 5 5 501 -20 -アンドラ 🇦🇩️ 5 5 501 -20 -コッキ 🇦🇩️ 5 5 501 -20 -ハタ 🇦🇩️ 5 5 501 -20 -フラグ 🇦🇩️ 5 5 501 -20 -フラッグ 🇦🇩️ 5 5 501 -20 -アラブ 🇦🇪️ 5 5 501 -20 -アラブシュチョウコクレンポウ 🇦🇪️ 5 5 501 -20 -コッキ 🇦🇪️ 5 5 501 -20 -ハタ 🇦🇪️ 5 5 501 -20 -フラグ 🇦🇪️ 5 5 501 -20 -フラッグ 🇦🇪️ 5 5 501 -20 -アフガニスタン 🇦🇫️ 5 5 501 -20 -コッキ 🇦🇫️ 5 5 501 -20 -ハタ 🇦🇫️ 5 5 501 -20 -フラグ 🇦🇫️ 5 5 501 -20 -フラッグ 🇦🇫️ 5 5 501 -20 -アンティグアバーブーダ 🇦🇬️ 5 5 501 -20 -アンティグア・バーブーダ 🇦🇬️ 5 5 501 -20 -コッキ 🇦🇬️ 5 5 501 -20 -ハタ 🇦🇬️ 5 5 501 -20 -フラグ 🇦🇬️ 5 5 501 -20 -フラッグ 🇦🇬️ 5 5 501 -20 -アンギラ 🇦🇮️ 5 5 501 -20 -コッキ 🇦🇮️ 5 5 501 -20 -ハタ 🇦🇮️ 5 5 501 -20 -フラグ 🇦🇮️ 5 5 501 -20 -フラッグ 🇦🇮️ 5 5 501 -20 -アルバニア 🇦🇱️ 5 5 501 -20 -コッキ 🇦🇱️ 5 5 501 -20 -ハタ 🇦🇱️ 5 5 501 -20 -フラグ 🇦🇱️ 5 5 501 -20 -フラッグ 🇦🇱️ 5 5 501 -20 -アルメニア 🇦🇲️ 5 5 501 -20 -コッキ 🇦🇲️ 5 5 501 -20 -ハタ 🇦🇲️ 5 5 501 -20 -フラグ 🇦🇲️ 5 5 501 -20 -フラッグ 🇦🇲️ 5 5 501 -20 -アンゴラ 🇦🇴️ 5 5 501 -20 -コッキ 🇦🇴️ 5 5 501 -20 -ハタ 🇦🇴️ 5 5 501 -20 -フラグ 🇦🇴️ 5 5 501 -20 -フラッグ 🇦🇴️ 5 5 501 -20 -コッキ 🇦🇶️ 5 5 501 -20 -ナンキョク 🇦🇶️ 5 5 501 -20 -ナンキョクタイリク 🇦🇶️ 5 5 501 -20 -ハタ 🇦🇶️ 5 5 501 -20 -フラグ 🇦🇶️ 5 5 501 -20 -フラッグ 🇦🇶️ 5 5 501 -20 -アルゼンチン 🇦🇷️ 5 5 501 -20 -コッキ 🇦🇷️ 5 5 501 -20 -ハタ 🇦🇷️ 5 5 501 -20 -フラグ 🇦🇷️ 5 5 501 -20 -フラッグ 🇦🇷️ 5 5 501 -20 -アメリカリョウサモア 🇦🇸️ 5 5 501 -20 -コッキ 🇦🇸️ 5 5 501 -20 -ハタ 🇦🇸️ 5 5 501 -20 -フラグ 🇦🇸️ 5 5 501 -20 -フラッグ 🇦🇸️ 5 5 501 -20 -ベイリョウサモア 🇦🇸️ 5 5 501 -20 -オーストリア 🇦🇹️ 5 5 501 -20 -コッキ 🇦🇹️ 5 5 501 -20 -ハタ 🇦🇹️ 5 5 501 -20 -フラグ 🇦🇹️ 5 5 501 -20 -フラッグ 🇦🇹️ 5 5 501 -20 -オーストラリア 🇦🇺️ 5 5 501 -20 -コッキ 🇦🇺️ 5 5 501 -20 -ハタ 🇦🇺️ 5 5 501 -20 -フラグ 🇦🇺️ 5 5 501 -20 -フラッグ 🇦🇺️ 5 5 501 -20 -アルバ 🇦🇼️ 5 5 501 -20 -コッキ 🇦🇼️ 5 5 501 -20 -ハタ 🇦🇼️ 5 5 501 -20 -フラグ 🇦🇼️ 5 5 501 -20 -フラッグ 🇦🇼️ 5 5 501 -20 -オーランドショトウ 🇦🇽️ 5 5 501 -20 -コッキ 🇦🇽️ 5 5 501 -20 -ハタ 🇦🇽️ 5 5 501 -20 -フラグ 🇦🇽️ 5 5 501 -20 -フラッグ 🇦🇽️ 5 5 501 -20 -アゼルバイジャン 🇦🇿️ 5 5 501 -20 -コッキ 🇦🇿️ 5 5 501 -20 -ハタ 🇦🇿️ 5 5 501 -20 -フラグ 🇦🇿️ 5 5 501 -20 -フラッグ 🇦🇿️ 5 5 501 -20 -コッキ 🇧🇦️ 5 5 501 -20 -ハタ 🇧🇦️ 5 5 501 -20 -フラグ 🇧🇦️ 5 5 501 -20 -フラッグ 🇧🇦️ 5 5 501 -20 -ボスニアヘルツェゴビナ 🇧🇦️ 5 5 501 -20 -ボスニア・ヘルツェゴビナ 🇧🇦️ 5 5 501 -20 -コッキ 🇧🇧️ 5 5 501 -20 -ハタ 🇧🇧️ 5 5 501 -20 -バルバドス 🇧🇧️ 5 5 501 -20 -フラグ 🇧🇧️ 5 5 501 -20 -フラッグ 🇧🇧️ 5 5 501 -20 -コッキ 🇧🇩️ 5 5 501 -20 -ハタ 🇧🇩️ 5 5 501 -20 -バングラデシュ 🇧🇩️ 5 5 501 -20 -フラグ 🇧🇩️ 5 5 501 -20 -フラッグ 🇧🇩️ 5 5 501 -20 -コッキ 🇧🇪️ 5 5 501 -20 -ハタ 🇧🇪️ 5 5 501 -20 -フラグ 🇧🇪️ 5 5 501 -20 -フラッグ 🇧🇪️ 5 5 501 -20 -ベルギー 🇧🇪️ 5 5 501 -20 -コッキ 🇧🇫️ 5 5 501 -20 -ハタ 🇧🇫️ 5 5 501 -20 -フラグ 🇧🇫️ 5 5 501 -20 -フラッグ 🇧🇫️ 5 5 501 -20 -ブルキナファソ 🇧🇫️ 5 5 501 -20 -コッキ 🇧🇬️ 5 5 501 -20 -ハタ 🇧🇬️ 5 5 501 -20 -フラグ 🇧🇬️ 5 5 501 -20 -フラッグ 🇧🇬️ 5 5 501 -20 -ブルガリア 🇧🇬️ 5 5 501 -20 -コッキ 🇧🇭️ 5 5 501 -20 -ハタ 🇧🇭️ 5 5 501 -20 -バーレーン 🇧🇭️ 5 5 501 -20 -フラグ 🇧🇭️ 5 5 501 -20 -フラッグ 🇧🇭️ 5 5 501 -20 -コッキ 🇧🇮️ 5 5 501 -20 -ハタ 🇧🇮️ 5 5 501 -20 -フラグ 🇧🇮️ 5 5 501 -20 -フラッグ 🇧🇮️ 5 5 501 -20 -ブルンジ 🇧🇮️ 5 5 501 -20 -コッキ 🇧🇯️ 5 5 501 -20 -ハタ 🇧🇯️ 5 5 501 -20 -フラグ 🇧🇯️ 5 5 501 -20 -フラッグ 🇧🇯️ 5 5 501 -20 -ベナン 🇧🇯️ 5 5 501 -20 -コッキ 🇧🇱️ 5 5 501 -20 -サンバルテルミー 🇧🇱️ 5 5 501 -20 -サン・バルテルミー 🇧🇱️ 5 5 501 -20 -ハタ 🇧🇱️ 5 5 501 -20 -フラグ 🇧🇱️ 5 5 501 -20 -フラッグ 🇧🇱️ 5 5 501 -20 -コッキ 🇧🇲️ 5 5 501 -20 -ハタ 🇧🇲️ 5 5 501 -20 -バミューダ 🇧🇲️ 5 5 501 -20 -フラグ 🇧🇲️ 5 5 501 -20 -フラッグ 🇧🇲️ 5 5 501 -20 -コッキ 🇧🇳️ 5 5 501 -20 -ハタ 🇧🇳️ 5 5 501 -20 -フラグ 🇧🇳️ 5 5 501 -20 -フラッグ 🇧🇳️ 5 5 501 -20 -ブルネイ 🇧🇳️ 5 5 501 -20 -コッキ 🇧🇴️ 5 5 501 -20 -ハタ 🇧🇴️ 5 5 501 -20 -フラグ 🇧🇴️ 5 5 501 -20 -フラッグ 🇧🇴️ 5 5 501 -20 -ボリビア 🇧🇴️ 5 5 501 -20 -オランダリョウカリブ 🇧🇶️ 5 5 501 -20 -コッキ 🇧🇶️ 5 5 501 -20 -ハタ 🇧🇶️ 5 5 501 -20 -フラグ 🇧🇶️ 5 5 501 -20 -フラッグ 🇧🇶️ 5 5 501 -20 -コッキ 🇧🇷️ 5 5 501 -20 -ハタ 🇧🇷️ 5 5 501 -20 -フラグ 🇧🇷️ 5 5 501 -20 -フラッグ 🇧🇷️ 5 5 501 -20 -ブラジル 🇧🇷️ 5 5 501 -20 -コッキ 🇧🇸️ 5 5 501 -20 -ハタ 🇧🇸️ 5 5 501 -20 -バハマ 🇧🇸️ 5 5 501 -20 -フラグ 🇧🇸️ 5 5 501 -20 -フラッグ 🇧🇸️ 5 5 501 -20 -コッキ 🇧🇹️ 5 5 501 -20 -ハタ 🇧🇹️ 5 5 501 -20 -フラグ 🇧🇹️ 5 5 501 -20 -フラッグ 🇧🇹️ 5 5 501 -20 -ブータン 🇧🇹️ 5 5 501 -20 -コッキ 🇧🇻️ 5 5 501 -20 -ハタ 🇧🇻️ 5 5 501 -20 -フラグ 🇧🇻️ 5 5 501 -20 -フラッグ 🇧🇻️ 5 5 501 -20 -ブーベトウ 🇧🇻️ 5 5 501 -20 -コッキ 🇧🇼️ 5 5 501 -20 -ハタ 🇧🇼️ 5 5 501 -20 -フラグ 🇧🇼️ 5 5 501 -20 -フラッグ 🇧🇼️ 5 5 501 -20 -ボツワナ 🇧🇼️ 5 5 501 -20 -コッキ 🇧🇾️ 5 5 501 -20 -ハタ 🇧🇾️ 5 5 501 -20 -フラグ 🇧🇾️ 5 5 501 -20 -フラッグ 🇧🇾️ 5 5 501 -20 -ベラルーシ 🇧🇾️ 5 5 501 -20 -コッキ 🇧🇿️ 5 5 501 -20 -ハタ 🇧🇿️ 5 5 501 -20 -フラグ 🇧🇿️ 5 5 501 -20 -フラッグ 🇧🇿️ 5 5 501 -20 -ベリーズ 🇧🇿️ 5 5 501 -20 -カナダ 🇨🇦️ 5 5 501 -20 -コッキ 🇨🇦️ 5 5 501 -20 -ハタ 🇨🇦️ 5 5 501 -20 -フラグ 🇨🇦️ 5 5 501 -20 -フラッグ 🇨🇦️ 5 5 501 -20 -キーリングショトウ 🇨🇨️ 5 5 501 -20 -ココスショトウ 🇨🇨️ 5 5 501 -20 -コッキ 🇨🇨️ 5 5 501 -20 -ハタ 🇨🇨️ 5 5 501 -20 -フラグ 🇨🇨️ 5 5 501 -20 -フラッグ 🇨🇨️ 5 5 501 -20 -キンシャサ 🇨🇩️ 5 5 501 -20 -コッキ 🇨🇩️ 5 5 501 -20 -コンゴミンシュキョウワコク 🇨🇩️ 5 5 501 -20 -ハタ 🇨🇩️ 5 5 501 -20 -フラグ 🇨🇩️ 5 5 501 -20 -フラッグ 🇨🇩️ 5 5 501 -20 -コッキ 🇨🇫️ 5 5 501 -20 -チュウオウアフリカキョウワコク 🇨🇫️ 5 5 501 -20 -ハタ 🇨🇫️ 5 5 501 -20 -フラグ 🇨🇫️ 5 5 501 -20 -フラッグ 🇨🇫️ 5 5 501 -20 -コッキ 🇨🇬️ 5 5 501 -20 -コンゴキョウワコク 🇨🇬️ 5 5 501 -20 -ハタ 🇨🇬️ 5 5 501 -20 -フラグ 🇨🇬️ 5 5 501 -20 -フラッグ 🇨🇬️ 5 5 501 -20 -ブラザビル 🇨🇬️ 5 5 501 -20 -コッキ 🇨🇭️ 5 5 501 -20 -スイス 🇨🇭️ 5 5 501 -20 -ハタ 🇨🇭️ 5 5 501 -20 -フラグ 🇨🇭️ 5 5 501 -20 -フラッグ 🇨🇭️ 5 5 501 -20 -コッキ 🇨🇮️ 5 5 501 -20 -コートジボワール 🇨🇮️ 5 5 501 -20 -ハタ 🇨🇮️ 5 5 501 -20 -フラグ 🇨🇮️ 5 5 501 -20 -フラッグ 🇨🇮️ 5 5 501 -20 -クックショトウ 🇨🇰️ 5 5 501 -20 -コッキ 🇨🇰️ 5 5 501 -20 -ハタ 🇨🇰️ 5 5 501 -20 -フラグ 🇨🇰️ 5 5 501 -20 -フラッグ 🇨🇰️ 5 5 501 -20 -コッキ 🇨🇱️ 5 5 501 -20 -チリ 🇨🇱️ 5 5 501 -20 -ハタ 🇨🇱️ 5 5 501 -20 -フラグ 🇨🇱️ 5 5 501 -20 -フラッグ 🇨🇱️ 5 5 501 -20 -カメルーン 🇨🇲️ 5 5 501 -20 -コッキ 🇨🇲️ 5 5 501 -20 -ハタ 🇨🇲️ 5 5 501 -20 -フラグ 🇨🇲️ 5 5 501 -20 -フラッグ 🇨🇲️ 5 5 501 -20 -コッキ 🇨🇳️ 5 5 501 -20 -チュウゴク 🇨🇳️ 5 5 501 -20 -ハタ 🇨🇳️ 5 5 501 -20 -フラグ 🇨🇳️ 5 5 501 -20 -フラッグ 🇨🇳️ 5 5 501 -20 -コッキ 🇨🇴️ 5 5 501 -20 -コロンビア 🇨🇴️ 5 5 501 -20 -ハタ 🇨🇴️ 5 5 501 -20 -フラグ 🇨🇴️ 5 5 501 -20 -フラッグ 🇨🇴️ 5 5 501 -20 -クリッパートントウ 🇨🇵️ 5 5 501 -20 -コッキ 🇨🇵️ 5 5 501 -20 -ハタ 🇨🇵️ 5 5 501 -20 -フラグ 🇨🇵️ 5 5 501 -20 -フラッグ 🇨🇵️ 5 5 501 -20 -コスタリカ 🇨🇷️ 5 5 501 -20 -コッキ 🇨🇷️ 5 5 501 -20 -ハタ 🇨🇷️ 5 5 501 -20 -フラグ 🇨🇷️ 5 5 501 -20 -フラッグ 🇨🇷️ 5 5 501 -20 -キューバ 🇨🇺️ 5 5 501 -20 -コッキ 🇨🇺️ 5 5 501 -20 -ハタ 🇨🇺️ 5 5 501 -20 -フラグ 🇨🇺️ 5 5 501 -20 -フラッグ 🇨🇺️ 5 5 501 -20 -カーボベルデ 🇨🇻️ 5 5 501 -20 -コッキ 🇨🇻️ 5 5 501 -20 -ハタ 🇨🇻️ 5 5 501 -20 -フラグ 🇨🇻️ 5 5 501 -20 -フラッグ 🇨🇻️ 5 5 501 -20 -キュラソー 🇨🇼️ 5 5 501 -20 -キュラソートウ 🇨🇼️ 5 5 501 -20 -コッキ 🇨🇼️ 5 5 501 -20 -ハタ 🇨🇼️ 5 5 501 -20 -フラグ 🇨🇼️ 5 5 501 -20 -フラッグ 🇨🇼️ 5 5 501 -20 -クリスマストウ 🇨🇽️ 5 5 501 -20 -コッキ 🇨🇽️ 5 5 501 -20 -ハタ 🇨🇽️ 5 5 501 -20 -フラグ 🇨🇽️ 5 5 501 -20 -フラッグ 🇨🇽️ 5 5 501 -20 -キプロス 🇨🇾️ 5 5 501 -20 -コッキ 🇨🇾️ 5 5 501 -20 -ハタ 🇨🇾️ 5 5 501 -20 -フラグ 🇨🇾️ 5 5 501 -20 -フラッグ 🇨🇾️ 5 5 501 -20 -コッキ 🇨🇿️ 5 5 501 -20 -チェコ 🇨🇿️ 5 5 501 -20 -ハタ 🇨🇿️ 5 5 501 -20 -フラグ 🇨🇿️ 5 5 501 -20 -フラッグ 🇨🇿️ 5 5 501 -20 -コッキ 🇩🇪️ 5 5 501 -20 -ドイツ 🇩🇪️ 5 5 501 -20 -ハタ 🇩🇪️ 5 5 501 -20 -フラグ 🇩🇪️ 5 5 501 -20 -フラッグ 🇩🇪️ 5 5 501 -20 -コッキ 🇩🇬️ 5 5 501 -20 -ディエゴガルシアトウ 🇩🇬️ 5 5 501 -20 -ハタ 🇩🇬️ 5 5 501 -20 -フラグ 🇩🇬️ 5 5 501 -20 -フラッグ 🇩🇬️ 5 5 501 -20 -コッキ 🇩🇯️ 5 5 501 -20 -ジブチ 🇩🇯️ 5 5 501 -20 -ハタ 🇩🇯️ 5 5 501 -20 -フラグ 🇩🇯️ 5 5 501 -20 -フラッグ 🇩🇯️ 5 5 501 -20 -コッキ 🇩🇰️ 5 5 501 -20 -デンマーク 🇩🇰️ 5 5 501 -20 -ハタ 🇩🇰️ 5 5 501 -20 -フラグ 🇩🇰️ 5 5 501 -20 -フラッグ 🇩🇰️ 5 5 501 -20 -コッキ 🇩🇲️ 5 5 501 -20 -ドミニカコク 🇩🇲️ 5 5 501 -20 -ハタ 🇩🇲️ 5 5 501 -20 -フラグ 🇩🇲️ 5 5 501 -20 -フラッグ 🇩🇲️ 5 5 501 -20 -コッキ 🇩🇴️ 5 5 501 -20 -ドミニカキョウワコク 🇩🇴️ 5 5 501 -20 -ハタ 🇩🇴️ 5 5 501 -20 -フラグ 🇩🇴️ 5 5 501 -20 -フラッグ 🇩🇴️ 5 5 501 -20 -アルジェリア 🇩🇿️ 5 5 501 -20 -コッキ 🇩🇿️ 5 5 501 -20 -ハタ 🇩🇿️ 5 5 501 -20 -フラグ 🇩🇿️ 5 5 501 -20 -フラッグ 🇩🇿️ 5 5 501 -20 -コッキ 🇪🇦️ 5 5 501 -20 -セウタトメリリャ 🇪🇦️ 5 5 501 -20 -セウタ・メリリャ 🇪🇦️ 5 5 501 -20 -ハタ 🇪🇦️ 5 5 501 -20 -フラグ 🇪🇦️ 5 5 501 -20 -フラッグ 🇪🇦️ 5 5 501 -20 -エクアドル 🇪🇨️ 5 5 501 -20 -コッキ 🇪🇨️ 5 5 501 -20 -ハタ 🇪🇨️ 5 5 501 -20 -フラグ 🇪🇨️ 5 5 501 -20 -フラッグ 🇪🇨️ 5 5 501 -20 -エストニア 🇪🇪️ 5 5 501 -20 -コッキ 🇪🇪️ 5 5 501 -20 -ハタ 🇪🇪️ 5 5 501 -20 -フラグ 🇪🇪️ 5 5 501 -20 -フラッグ 🇪🇪️ 5 5 501 -20 -エジプト 🇪🇬️ 5 5 501 -20 -コッキ 🇪🇬️ 5 5 501 -20 -ハタ 🇪🇬️ 5 5 501 -20 -フラグ 🇪🇬️ 5 5 501 -20 -フラッグ 🇪🇬️ 5 5 501 -20 -コッキ 🇪🇭️ 5 5 501 -20 -ニシサハラ 🇪🇭️ 5 5 501 -20 -ハタ 🇪🇭️ 5 5 501 -20 -フラグ 🇪🇭️ 5 5 501 -20 -フラッグ 🇪🇭️ 5 5 501 -20 -エリトリア 🇪🇷️ 5 5 501 -20 -コッキ 🇪🇷️ 5 5 501 -20 -ハタ 🇪🇷️ 5 5 501 -20 -フラグ 🇪🇷️ 5 5 501 -20 -フラッグ 🇪🇷️ 5 5 501 -20 -コッキ 🇪🇸️ 5 5 501 -20 -スペイン 🇪🇸️ 5 5 501 -20 -ハタ 🇪🇸️ 5 5 501 -20 -フラグ 🇪🇸️ 5 5 501 -20 -フラッグ 🇪🇸️ 5 5 501 -20 -エチオピア 🇪🇹️ 5 5 501 -20 -コッキ 🇪🇹️ 5 5 501 -20 -ハタ 🇪🇹️ 5 5 501 -20 -フラグ 🇪🇹️ 5 5 501 -20 -フラッグ 🇪🇹️ 5 5 501 -20 -eu 🇪🇺️ 5 5 501 -20 -イーユー 🇪🇺️ 5 5 501 -20 -オウシュウレンゴウ 🇪🇺️ 5 5 501 -20 -コッキ 🇪🇺️ 5 5 501 -20 -ハタ 🇪🇺️ 5 5 501 -20 -フラグ 🇪🇺️ 5 5 501 -20 -フラッグ 🇪🇺️ 5 5 501 -20 -コッキ 🇫🇮️ 5 5 501 -20 -ハタ 🇫🇮️ 5 5 501 -20 -フィンランド 🇫🇮️ 5 5 501 -20 -フラグ 🇫🇮️ 5 5 501 -20 -フラッグ 🇫🇮️ 5 5 501 -20 -コッキ 🇫🇯️ 5 5 501 -20 -ハタ 🇫🇯️ 5 5 501 -20 -フィジー 🇫🇯️ 5 5 501 -20 -フラグ 🇫🇯️ 5 5 501 -20 -フラッグ 🇫🇯️ 5 5 501 -20 -コッキ 🇫🇰️ 5 5 501 -20 -ハタ 🇫🇰️ 5 5 501 -20 -フォークランドショトウ 🇫🇰️ 5 5 501 -20 -フラグ 🇫🇰️ 5 5 501 -20 -フラッグ 🇫🇰️ 5 5 501 -20 -コッキ 🇫🇲️ 5 5 501 -20 -ハタ 🇫🇲️ 5 5 501 -20 -フラグ 🇫🇲️ 5 5 501 -20 -フラッグ 🇫🇲️ 5 5 501 -20 -ミクロネシア 🇫🇲️ 5 5 501 -20 -ミクロネシアレンポウ 🇫🇲️ 5 5 501 -20 -コッキ 🇫🇴️ 5 5 501 -20 -ハタ 🇫🇴️ 5 5 501 -20 -フェローショトウ 🇫🇴️ 5 5 501 -20 -フラグ 🇫🇴️ 5 5 501 -20 -フラッグ 🇫🇴️ 5 5 501 -20 -コッキ 🇫🇷️ 5 5 501 -20 -ハタ 🇫🇷️ 5 5 501 -20 -フラグ 🇫🇷️ 5 5 501 -20 -フラッグ 🇫🇷️ 5 5 501 -20 -フランス 🇫🇷️ 5 5 501 -20 -ガボン 🇬🇦️ 5 5 501 -20 -コッキ 🇬🇦️ 5 5 501 -20 -ハタ 🇬🇦️ 5 5 501 -20 -フラグ 🇬🇦️ 5 5 501 -20 -フラッグ 🇬🇦️ 5 5 501 -20 -イギリス 🇬🇧️ 5 5 501 -20 -コッキ 🇬🇧️ 5 5 501 -20 -ハタ 🇬🇧️ 5 5 501 -20 -フラグ 🇬🇧️ 5 5 501 -20 -フラッグ 🇬🇧️ 5 5 501 -20 -グレナダ 🇬🇩️ 5 5 501 -20 -コッキ 🇬🇩️ 5 5 501 -20 -ハタ 🇬🇩️ 5 5 501 -20 -フラグ 🇬🇩️ 5 5 501 -20 -フラッグ 🇬🇩️ 5 5 501 -20 -コッキ 🇬🇪️ 5 5 501 -20 -ジョージア 🇬🇪️ 5 5 501 -20 -ハタ 🇬🇪️ 5 5 501 -20 -フラグ 🇬🇪️ 5 5 501 -20 -フラッグ 🇬🇪️ 5 5 501 -20 -コッキ 🇬🇫️ 5 5 501 -20 -ハタ 🇬🇫️ 5 5 501 -20 -フツリョウギアナ 🇬🇫️ 5 5 501 -20 -フラグ 🇬🇫️ 5 5 501 -20 -フラッグ 🇬🇫️ 5 5 501 -20 -フランスリョウギアナ 🇬🇫️ 5 5 501 -20 -ガーンジー 🇬🇬️ 5 5 501 -20 -コッキ 🇬🇬️ 5 5 501 -20 -ハタ 🇬🇬️ 5 5 501 -20 -フラグ 🇬🇬️ 5 5 501 -20 -フラッグ 🇬🇬️ 5 5 501 -20 -ガーナ 🇬🇭️ 5 5 501 -20 -コッキ 🇬🇭️ 5 5 501 -20 -ハタ 🇬🇭️ 5 5 501 -20 -フラグ 🇬🇭️ 5 5 501 -20 -フラッグ 🇬🇭️ 5 5 501 -20 -コッキ 🇬🇮️ 5 5 501 -20 -ジブラルタル 🇬🇮️ 5 5 501 -20 -ハタ 🇬🇮️ 5 5 501 -20 -フラグ 🇬🇮️ 5 5 501 -20 -フラッグ 🇬🇮️ 5 5 501 -20 -グリーンランド 🇬🇱️ 5 5 501 -20 -コッキ 🇬🇱️ 5 5 501 -20 -ハタ 🇬🇱️ 5 5 501 -20 -フラグ 🇬🇱️ 5 5 501 -20 -フラッグ 🇬🇱️ 5 5 501 -20 -ガンビア 🇬🇲️ 5 5 501 -20 -コッキ 🇬🇲️ 5 5 501 -20 -ハタ 🇬🇲️ 5 5 501 -20 -フラグ 🇬🇲️ 5 5 501 -20 -フラッグ 🇬🇲️ 5 5 501 -20 -ギニア 🇬🇳️ 5 5 501 -20 -コッキ 🇬🇳️ 5 5 501 -20 -ハタ 🇬🇳️ 5 5 501 -20 -フラグ 🇬🇳️ 5 5 501 -20 -フラッグ 🇬🇳️ 5 5 501 -20 -グアドループ 🇬🇵️ 5 5 501 -20 -コッキ 🇬🇵️ 5 5 501 -20 -ハタ 🇬🇵️ 5 5 501 -20 -フラグ 🇬🇵️ 5 5 501 -20 -フラッグ 🇬🇵️ 5 5 501 -20 -コッキ 🇬🇶️ 5 5 501 -20 -セキドウギニア 🇬🇶️ 5 5 501 -20 -ハタ 🇬🇶️ 5 5 501 -20 -フラグ 🇬🇶️ 5 5 501 -20 -フラッグ 🇬🇶️ 5 5 501 -20 -ギリシャ 🇬🇷️ 5 5 501 -20 -コッキ 🇬🇷️ 5 5 501 -20 -ハタ 🇬🇷️ 5 5 501 -20 -フラグ 🇬🇷️ 5 5 501 -20 -フラッグ 🇬🇷️ 5 5 501 -20 -コッキ 🇬🇸️ 5 5 501 -20 -サウスジョージア・サウスサンドウィッチショトウ 🇬🇸️ 5 5 501 -20 -ハタ 🇬🇸️ 5 5 501 -20 -フラグ 🇬🇸️ 5 5 501 -20 -フラッグ 🇬🇸️ 5 5 501 -20 -グアテマラ 🇬🇹️ 5 5 501 -20 -コッキ 🇬🇹️ 5 5 501 -20 -ハタ 🇬🇹️ 5 5 501 -20 -フラグ 🇬🇹️ 5 5 501 -20 -フラッグ 🇬🇹️ 5 5 501 -20 -グアム 🇬🇺️ 5 5 501 -20 -コッキ 🇬🇺️ 5 5 501 -20 -ハタ 🇬🇺️ 5 5 501 -20 -フラグ 🇬🇺️ 5 5 501 -20 -フラッグ 🇬🇺️ 5 5 501 -20 -ギニアビサウ 🇬🇼️ 5 5 501 -20 -コッキ 🇬🇼️ 5 5 501 -20 -ハタ 🇬🇼️ 5 5 501 -20 -フラグ 🇬🇼️ 5 5 501 -20 -フラッグ 🇬🇼️ 5 5 501 -20 -ガイアナ 🇬🇾️ 5 5 501 -20 -コッキ 🇬🇾️ 5 5 501 -20 -ハタ 🇬🇾️ 5 5 501 -20 -フラグ 🇬🇾️ 5 5 501 -20 -フラッグ 🇬🇾️ 5 5 501 -20 -コッキ 🇭🇰️ 5 5 501 -20 -チュウカジンミンキョウワコクホンコントクベツギョウセイク 🇭🇰️ 5 5 501 -20 -ハタ 🇭🇰️ 5 5 501 -20 -フラグ 🇭🇰️ 5 5 501 -20 -フラッグ 🇭🇰️ 5 5 501 -20 -ホンコン 🇭🇰️ 5 5 501 -20 -コッキ 🇭🇲️ 5 5 501 -20 -ハタ 🇭🇲️ 5 5 501 -20 -ハードトウ 🇭🇲️ 5 5 501 -20 -ハードトウトマクドナルドショトウ 🇭🇲️ 5 5 501 -20 -ハードトウ・マクドナルドショトウ 🇭🇲️ 5 5 501 -20 -フラグ 🇭🇲️ 5 5 501 -20 -フラッグ 🇭🇲️ 5 5 501 -20 -マクドナルドショトウ 🇭🇲️ 5 5 501 -20 -コッキ 🇭🇳️ 5 5 501 -20 -ハタ 🇭🇳️ 5 5 501 -20 -フラグ 🇭🇳️ 5 5 501 -20 -フラッグ 🇭🇳️ 5 5 501 -20 -ホンジュラス 🇭🇳️ 5 5 501 -20 -クロアチア 🇭🇷️ 5 5 501 -20 -コッキ 🇭🇷️ 5 5 501 -20 -ハタ 🇭🇷️ 5 5 501 -20 -フラグ 🇭🇷️ 5 5 501 -20 -フラッグ 🇭🇷️ 5 5 501 -20 -コッキ 🇭🇹️ 5 5 501 -20 -ハイチ 🇭🇹️ 5 5 501 -20 -ハタ 🇭🇹️ 5 5 501 -20 -フラグ 🇭🇹️ 5 5 501 -20 -フラッグ 🇭🇹️ 5 5 501 -20 -コッキ 🇭🇺️ 5 5 501 -20 -ハタ 🇭🇺️ 5 5 501 -20 -ハンガリー 🇭🇺️ 5 5 501 -20 -フラグ 🇭🇺️ 5 5 501 -20 -フラッグ 🇭🇺️ 5 5 501 -20 -カナリアショトウ 🇮🇨️ 5 5 501 -20 -コッキ 🇮🇨️ 5 5 501 -20 -ハタ 🇮🇨️ 5 5 501 -20 -フラグ 🇮🇨️ 5 5 501 -20 -フラッグ 🇮🇨️ 5 5 501 -20 -インドネシア 🇮🇩️ 5 5 501 -20 -コッキ 🇮🇩️ 5 5 501 -20 -ハタ 🇮🇩️ 5 5 501 -20 -フラグ 🇮🇩️ 5 5 501 -20 -フラッグ 🇮🇩️ 5 5 501 -20 -アイルランド 🇮🇪️ 5 5 501 -20 -コッキ 🇮🇪️ 5 5 501 -20 -ハタ 🇮🇪️ 5 5 501 -20 -フラグ 🇮🇪️ 5 5 501 -20 -フラッグ 🇮🇪️ 5 5 501 -20 -イスラエル 🇮🇱️ 5 5 501 -20 -コッキ 🇮🇱️ 5 5 501 -20 -ハタ 🇮🇱️ 5 5 501 -20 -フラグ 🇮🇱️ 5 5 501 -20 -フラッグ 🇮🇱️ 5 5 501 -20 -コッキ 🇮🇲️ 5 5 501 -20 -ハタ 🇮🇲️ 5 5 501 -20 -フラグ 🇮🇲️ 5 5 501 -20 -フラッグ 🇮🇲️ 5 5 501 -20 -マントウ 🇮🇲️ 5 5 501 -20 -インド 🇮🇳️ 5 5 501 -20 -コッキ 🇮🇳️ 5 5 501 -20 -ハタ 🇮🇳️ 5 5 501 -20 -フラグ 🇮🇳️ 5 5 501 -20 -フラッグ 🇮🇳️ 5 5 501 -20 -イギリスリョウインドヨウチイキ 🇮🇴️ 5 5 501 -20 -エイリョウインドヨウチイキ 🇮🇴️ 5 5 501 -20 -コッキ 🇮🇴️ 5 5 501 -20 -ハタ 🇮🇴️ 5 5 501 -20 -フラグ 🇮🇴️ 5 5 501 -20 -フラッグ 🇮🇴️ 5 5 501 -20 -イラク 🇮🇶️ 5 5 501 -20 -コッキ 🇮🇶️ 5 5 501 -20 -ハタ 🇮🇶️ 5 5 501 -20 -フラグ 🇮🇶️ 5 5 501 -20 -フラッグ 🇮🇶️ 5 5 501 -20 -イラン 🇮🇷️ 5 5 501 -20 -コッキ 🇮🇷️ 5 5 501 -20 -ハタ 🇮🇷️ 5 5 501 -20 -フラグ 🇮🇷️ 5 5 501 -20 -フラッグ 🇮🇷️ 5 5 501 -20 -アイスランド 🇮🇸️ 5 5 501 -20 -コッキ 🇮🇸️ 5 5 501 -20 -ハタ 🇮🇸️ 5 5 501 -20 -フラグ 🇮🇸️ 5 5 501 -20 -フラッグ 🇮🇸️ 5 5 501 -20 -イタリア 🇮🇹️ 5 5 501 -20 -コッキ 🇮🇹️ 5 5 501 -20 -ハタ 🇮🇹️ 5 5 501 -20 -フラグ 🇮🇹️ 5 5 501 -20 -フラッグ 🇮🇹️ 5 5 501 -20 -コッキ 🇯🇪️ 5 5 501 -20 -ジャージー 🇯🇪️ 5 5 501 -20 -ハタ 🇯🇪️ 5 5 501 -20 -フラグ 🇯🇪️ 5 5 501 -20 -フラッグ 🇯🇪️ 5 5 501 -20 -コッキ 🇯🇲️ 5 5 501 -20 -ジャマイカ 🇯🇲️ 5 5 501 -20 -ハタ 🇯🇲️ 5 5 501 -20 -フラグ 🇯🇲️ 5 5 501 -20 -フラッグ 🇯🇲️ 5 5 501 -20 -コッキ 🇯🇴️ 5 5 501 -20 -ハタ 🇯🇴️ 5 5 501 -20 -フラグ 🇯🇴️ 5 5 501 -20 -フラッグ 🇯🇴️ 5 5 501 -20 -ヨルダン 🇯🇴️ 5 5 501 -20 -コッキ 🇯🇵️ 5 5 501 -20 -シュクジツ 🇯🇵️ 5 5 501 -20 -ニッポン 🇯🇵️ 5 5 501 -20 -ニホン 🇯🇵️ 5 5 501 -20 -ハタ 🇯🇵️ 5 5 501 -20 -ヒノマル 🇯🇵️ 5 5 501 -20 -フラグ 🇯🇵️ 5 5 501 -20 -フラッグ 🇯🇵️ 5 5 501 -20 -ケニア 🇰🇪️ 5 5 501 -20 -コッキ 🇰🇪️ 5 5 501 -20 -ハタ 🇰🇪️ 5 5 501 -20 -フラグ 🇰🇪️ 5 5 501 -20 -フラッグ 🇰🇪️ 5 5 501 -20 -キルギス 🇰🇬️ 5 5 501 -20 -コッキ 🇰🇬️ 5 5 501 -20 -ハタ 🇰🇬️ 5 5 501 -20 -フラグ 🇰🇬️ 5 5 501 -20 -フラッグ 🇰🇬️ 5 5 501 -20 -カンボジア 🇰🇭️ 5 5 501 -20 -コッキ 🇰🇭️ 5 5 501 -20 -コロンビア 🇰🇭️ 5 5 501 -20 -ハタ 🇰🇭️ 5 5 501 -20 -フラグ 🇰🇭️ 5 5 501 -20 -フラッグ 🇰🇭️ 5 5 501 -20 -キリバス 🇰🇮️ 5 5 501 -20 -コッキ 🇰🇮️ 5 5 501 -20 -ハタ 🇰🇮️ 5 5 501 -20 -フラグ 🇰🇮️ 5 5 501 -20 -フラッグ 🇰🇮️ 5 5 501 -20 -コッキ 🇰🇲️ 5 5 501 -20 -コモロ 🇰🇲️ 5 5 501 -20 -ハタ 🇰🇲️ 5 5 501 -20 -フラグ 🇰🇲️ 5 5 501 -20 -フラッグ 🇰🇲️ 5 5 501 -20 -コッキ 🇰🇳️ 5 5 501 -20 -セントクリストファーネーヴィス 🇰🇳️ 5 5 501 -20 -セントクリストファー・ネーヴィス 🇰🇳️ 5 5 501 -20 -ハタ 🇰🇳️ 5 5 501 -20 -フラグ 🇰🇳️ 5 5 501 -20 -フラッグ 🇰🇳️ 5 5 501 -20 -キタチョウセン 🇰🇵️ 5 5 501 -20 -コッキ 🇰🇵️ 5 5 501 -20 -ハタ 🇰🇵️ 5 5 501 -20 -フラグ 🇰🇵️ 5 5 501 -20 -フラッグ 🇰🇵️ 5 5 501 -20 -カンコク 🇰🇷️ 5 5 501 -20 -コッキ 🇰🇷️ 5 5 501 -20 -ハタ 🇰🇷️ 5 5 501 -20 -フラグ 🇰🇷️ 5 5 501 -20 -フラッグ 🇰🇷️ 5 5 501 -20 -クウェート 🇰🇼️ 5 5 501 -20 -コッキ 🇰🇼️ 5 5 501 -20 -ハタ 🇰🇼️ 5 5 501 -20 -フラグ 🇰🇼️ 5 5 501 -20 -フラッグ 🇰🇼️ 5 5 501 -20 -ケイマンショトウ 🇰🇾️ 5 5 501 -20 -コッキ 🇰🇾️ 5 5 501 -20 -ハタ 🇰🇾️ 5 5 501 -20 -フラグ 🇰🇾️ 5 5 501 -20 -フラッグ 🇰🇾️ 5 5 501 -20 -カザフスタン 🇰🇿️ 5 5 501 -20 -コッキ 🇰🇿️ 5 5 501 -20 -ハタ 🇰🇿️ 5 5 501 -20 -フラグ 🇰🇿️ 5 5 501 -20 -フラッグ 🇰🇿️ 5 5 501 -20 -コッキ 🇱🇦️ 5 5 501 -20 -ハタ 🇱🇦️ 5 5 501 -20 -フラグ 🇱🇦️ 5 5 501 -20 -フラッグ 🇱🇦️ 5 5 501 -20 -ラオス 🇱🇦️ 5 5 501 -20 -コッキ 🇱🇧️ 5 5 501 -20 -ハタ 🇱🇧️ 5 5 501 -20 -フラグ 🇱🇧️ 5 5 501 -20 -フラッグ 🇱🇧️ 5 5 501 -20 -レバノン 🇱🇧️ 5 5 501 -20 -コッキ 🇱🇨️ 5 5 501 -20 -セントルシア 🇱🇨️ 5 5 501 -20 -ハタ 🇱🇨️ 5 5 501 -20 -フラグ 🇱🇨️ 5 5 501 -20 -フラッグ 🇱🇨️ 5 5 501 -20 -コッキ 🇱🇮️ 5 5 501 -20 -ハタ 🇱🇮️ 5 5 501 -20 -フラグ 🇱🇮️ 5 5 501 -20 -フラッグ 🇱🇮️ 5 5 501 -20 -リヒテンシュタイン 🇱🇮️ 5 5 501 -20 -コッキ 🇱🇰️ 5 5 501 -20 -スリランカ 🇱🇰️ 5 5 501 -20 -ハタ 🇱🇰️ 5 5 501 -20 -フラグ 🇱🇰️ 5 5 501 -20 -フラッグ 🇱🇰️ 5 5 501 -20 -コッキ 🇱🇷️ 5 5 501 -20 -ハタ 🇱🇷️ 5 5 501 -20 -フラグ 🇱🇷️ 5 5 501 -20 -フラッグ 🇱🇷️ 5 5 501 -20 -リベリア 🇱🇷️ 5 5 501 -20 -コッキ 🇱🇸️ 5 5 501 -20 -ハタ 🇱🇸️ 5 5 501 -20 -フラグ 🇱🇸️ 5 5 501 -20 -フラッグ 🇱🇸️ 5 5 501 -20 -レソト 🇱🇸️ 5 5 501 -20 -コッキ 🇱🇹️ 5 5 501 -20 -ハタ 🇱🇹️ 5 5 501 -20 -フラグ 🇱🇹️ 5 5 501 -20 -フラッグ 🇱🇹️ 5 5 501 -20 -リトアニア 🇱🇹️ 5 5 501 -20 -コッキ 🇱🇺️ 5 5 501 -20 -ハタ 🇱🇺️ 5 5 501 -20 -フラグ 🇱🇺️ 5 5 501 -20 -フラッグ 🇱🇺️ 5 5 501 -20 -ルクセンブルク 🇱🇺️ 5 5 501 -20 -ルクセンブルグ 🇱🇺️ 5 5 501 -20 -コッキ 🇱🇻️ 5 5 501 -20 -ハタ 🇱🇻️ 5 5 501 -20 -フラグ 🇱🇻️ 5 5 501 -20 -フラッグ 🇱🇻️ 5 5 501 -20 -ラトビア 🇱🇻️ 5 5 501 -20 -コッキ 🇱🇾️ 5 5 501 -20 -ハタ 🇱🇾️ 5 5 501 -20 -フラグ 🇱🇾️ 5 5 501 -20 -フラッグ 🇱🇾️ 5 5 501 -20 -リビア 🇱🇾️ 5 5 501 -20 -コッキ 🇲🇦️ 5 5 501 -20 -ハタ 🇲🇦️ 5 5 501 -20 -フラグ 🇲🇦️ 5 5 501 -20 -フラッグ 🇲🇦️ 5 5 501 -20 -モロッコ 🇲🇦️ 5 5 501 -20 -コッキ 🇲🇨️ 5 5 501 -20 -ハタ 🇲🇨️ 5 5 501 -20 -フラグ 🇲🇨️ 5 5 501 -20 -フラッグ 🇲🇨️ 5 5 501 -20 -モナコ 🇲🇨️ 5 5 501 -20 -コッキ 🇲🇩️ 5 5 501 -20 -ハタ 🇲🇩️ 5 5 501 -20 -フラグ 🇲🇩️ 5 5 501 -20 -フラッグ 🇲🇩️ 5 5 501 -20 -モルドバ 🇲🇩️ 5 5 501 -20 -コッキ 🇲🇪️ 5 5 501 -20 -ハタ 🇲🇪️ 5 5 501 -20 -フラグ 🇲🇪️ 5 5 501 -20 -フラッグ 🇲🇪️ 5 5 501 -20 -モンテネグロ 🇲🇪️ 5 5 501 -20 -コッキ 🇲🇫️ 5 5 501 -20 -サンマルタン 🇲🇫️ 5 5 501 -20 -サン・マルタン 🇲🇫️ 5 5 501 -20 -ハタ 🇲🇫️ 5 5 501 -20 -フラグ 🇲🇫️ 5 5 501 -20 -フラッグ 🇲🇫️ 5 5 501 -20 -コッキ 🇲🇬️ 5 5 501 -20 -ハタ 🇲🇬️ 5 5 501 -20 -フラグ 🇲🇬️ 5 5 501 -20 -フラッグ 🇲🇬️ 5 5 501 -20 -マダガスカル 🇲🇬️ 5 5 501 -20 -コッキ 🇲🇭️ 5 5 501 -20 -ハタ 🇲🇭️ 5 5 501 -20 -フラグ 🇲🇭️ 5 5 501 -20 -フラッグ 🇲🇭️ 5 5 501 -20 -マーシャルショトウ 🇲🇭️ 5 5 501 -20 -キタマケドニア 🇲🇰️ 5 5 501 -20 -コッキ 🇲🇰️ 5 5 501 -20 -ハタ 🇲🇰️ 5 5 501 -20 -フラグ 🇲🇰️ 5 5 501 -20 -フラッグ 🇲🇰️ 5 5 501 -20 -マケドニア 🇲🇰️ 5 5 501 -20 -コッキ 🇲🇱️ 5 5 501 -20 -ハタ 🇲🇱️ 5 5 501 -20 -フラグ 🇲🇱️ 5 5 501 -20 -フラッグ 🇲🇱️ 5 5 501 -20 -マリ 🇲🇱️ 5 5 501 -20 -コッキ 🇲🇲️ 5 5 501 -20 -ハタ 🇲🇲️ 5 5 501 -20 -ビルマ 🇲🇲️ 5 5 501 -20 -フラグ 🇲🇲️ 5 5 501 -20 -フラッグ 🇲🇲️ 5 5 501 -20 -ミャンマー 🇲🇲️ 5 5 501 -20 -コッキ 🇲🇳️ 5 5 501 -20 -ハタ 🇲🇳️ 5 5 501 -20 -フラグ 🇲🇳️ 5 5 501 -20 -フラッグ 🇲🇳️ 5 5 501 -20 -モンゴル 🇲🇳️ 5 5 501 -20 -コッキ 🇲🇴️ 5 5 501 -20 -チュウカジンミンキョウワコクマカオトクベツギョウセイク 🇲🇴️ 5 5 501 -20 -ハタ 🇲🇴️ 5 5 501 -20 -フラグ 🇲🇴️ 5 5 501 -20 -フラッグ 🇲🇴️ 5 5 501 -20 -マカオ 🇲🇴️ 5 5 501 -20 -キタマリアナショトウ 🇲🇵️ 5 5 501 -20 -コッキ 🇲🇵️ 5 5 501 -20 -ハタ 🇲🇵️ 5 5 501 -20 -フラグ 🇲🇵️ 5 5 501 -20 -フラッグ 🇲🇵️ 5 5 501 -20 -コッキ 🇲🇶️ 5 5 501 -20 -ハタ 🇲🇶️ 5 5 501 -20 -フラグ 🇲🇶️ 5 5 501 -20 -フラッグ 🇲🇶️ 5 5 501 -20 -マルティニーク 🇲🇶️ 5 5 501 -20 -コッキ 🇲🇷️ 5 5 501 -20 -ハタ 🇲🇷️ 5 5 501 -20 -フラグ 🇲🇷️ 5 5 501 -20 -フラッグ 🇲🇷️ 5 5 501 -20 -モーリタニア 🇲🇷️ 5 5 501 -20 -コッキ 🇲🇸️ 5 5 501 -20 -ハタ 🇲🇸️ 5 5 501 -20 -フラグ 🇲🇸️ 5 5 501 -20 -フラッグ 🇲🇸️ 5 5 501 -20 -モントセラト 🇲🇸️ 5 5 501 -20 -コッキ 🇲🇹️ 5 5 501 -20 -ハタ 🇲🇹️ 5 5 501 -20 -フラグ 🇲🇹️ 5 5 501 -20 -フラッグ 🇲🇹️ 5 5 501 -20 -マルタ 🇲🇹️ 5 5 501 -20 -コッキ 🇲🇺️ 5 5 501 -20 -ハタ 🇲🇺️ 5 5 501 -20 -フラグ 🇲🇺️ 5 5 501 -20 -フラッグ 🇲🇺️ 5 5 501 -20 -モーリシャス 🇲🇺️ 5 5 501 -20 -コッキ 🇲🇻️ 5 5 501 -20 -ハタ 🇲🇻️ 5 5 501 -20 -フラグ 🇲🇻️ 5 5 501 -20 -フラッグ 🇲🇻️ 5 5 501 -20 -モルディブ 🇲🇻️ 5 5 501 -20 -コッキ 🇲🇼️ 5 5 501 -20 -ハタ 🇲🇼️ 5 5 501 -20 -フラグ 🇲🇼️ 5 5 501 -20 -フラッグ 🇲🇼️ 5 5 501 -20 -マラウィ 🇲🇼️ 5 5 501 -20 -マラウイ 🇲🇼️ 5 5 501 -20 -コッキ 🇲🇽️ 5 5 501 -20 -ハタ 🇲🇽️ 5 5 501 -20 -フラグ 🇲🇽️ 5 5 501 -20 -フラッグ 🇲🇽️ 5 5 501 -20 -メキシコ 🇲🇽️ 5 5 501 -20 -コッキ 🇲🇾️ 5 5 501 -20 -ハタ 🇲🇾️ 5 5 501 -20 -フラグ 🇲🇾️ 5 5 501 -20 -フラッグ 🇲🇾️ 5 5 501 -20 -マレーシア 🇲🇾️ 5 5 501 -20 -コッキ 🇲🇿️ 5 5 501 -20 -ハタ 🇲🇿️ 5 5 501 -20 -フラグ 🇲🇿️ 5 5 501 -20 -フラッグ 🇲🇿️ 5 5 501 -20 -モザンビーク 🇲🇿️ 5 5 501 -20 -コッキ 🇳🇦️ 5 5 501 -20 -ナミビア 🇳🇦️ 5 5 501 -20 -ハタ 🇳🇦️ 5 5 501 -20 -フラグ 🇳🇦️ 5 5 501 -20 -フラッグ 🇳🇦️ 5 5 501 -20 -コッキ 🇳🇨️ 5 5 501 -20 -ニューカレドニア 🇳🇨️ 5 5 501 -20 -ハタ 🇳🇨️ 5 5 501 -20 -フラグ 🇳🇨️ 5 5 501 -20 -フラッグ 🇳🇨️ 5 5 501 -20 -コッキ 🇳🇪️ 5 5 501 -20 -ニジェール 🇳🇪️ 5 5 501 -20 -ハタ 🇳🇪️ 5 5 501 -20 -フラグ 🇳🇪️ 5 5 501 -20 -フラッグ 🇳🇪️ 5 5 501 -20 -コッキ 🇳🇫️ 5 5 501 -20 -ノーフォークトウ 🇳🇫️ 5 5 501 -20 -ハタ 🇳🇫️ 5 5 501 -20 -フラグ 🇳🇫️ 5 5 501 -20 -フラッグ 🇳🇫️ 5 5 501 -20 -コッキ 🇳🇬️ 5 5 501 -20 -ナイジェリア 🇳🇬️ 5 5 501 -20 -ハタ 🇳🇬️ 5 5 501 -20 -フラグ 🇳🇬️ 5 5 501 -20 -フラッグ 🇳🇬️ 5 5 501 -20 -コッキ 🇳🇮️ 5 5 501 -20 -ニカラグア 🇳🇮️ 5 5 501 -20 -ハタ 🇳🇮️ 5 5 501 -20 -フラグ 🇳🇮️ 5 5 501 -20 -フラッグ 🇳🇮️ 5 5 501 -20 -オランダ 🇳🇱️ 5 5 501 -20 -コッキ 🇳🇱️ 5 5 501 -20 -ハタ 🇳🇱️ 5 5 501 -20 -フラグ 🇳🇱️ 5 5 501 -20 -フラッグ 🇳🇱️ 5 5 501 -20 -コッキ 🇳🇴️ 5 5 501 -20 -ノルウェー 🇳🇴️ 5 5 501 -20 -ハタ 🇳🇴️ 5 5 501 -20 -フラグ 🇳🇴️ 5 5 501 -20 -フラッグ 🇳🇴️ 5 5 501 -20 -コッキ 🇳🇵️ 5 5 501 -20 -ネパール 🇳🇵️ 5 5 501 -20 -ハタ 🇳🇵️ 5 5 501 -20 -フラグ 🇳🇵️ 5 5 501 -20 -フラッグ 🇳🇵️ 5 5 501 -20 -コッキ 🇳🇷️ 5 5 501 -20 -ナウル 🇳🇷️ 5 5 501 -20 -ハタ 🇳🇷️ 5 5 501 -20 -フラグ 🇳🇷️ 5 5 501 -20 -フラッグ 🇳🇷️ 5 5 501 -20 -コッキ 🇳🇺️ 5 5 501 -20 -ニウエ 🇳🇺️ 5 5 501 -20 -ハタ 🇳🇺️ 5 5 501 -20 -フラグ 🇳🇺️ 5 5 501 -20 -フラッグ 🇳🇺️ 5 5 501 -20 -コッキ 🇳🇿️ 5 5 501 -20 -ニュージーランド 🇳🇿️ 5 5 501 -20 -ハタ 🇳🇿️ 5 5 501 -20 -フラグ 🇳🇿️ 5 5 501 -20 -フラッグ 🇳🇿️ 5 5 501 -20 -オマーン 🇴🇲️ 5 5 501 -20 -コッキ 🇴🇲️ 5 5 501 -20 -ハタ 🇴🇲️ 5 5 501 -20 -フラグ 🇴🇲️ 5 5 501 -20 -フラッグ 🇴🇲️ 5 5 501 -20 -コッキ 🇵🇦️ 5 5 501 -20 -ハタ 🇵🇦️ 5 5 501 -20 -パナマ 🇵🇦️ 5 5 501 -20 -フラグ 🇵🇦️ 5 5 501 -20 -フラッグ 🇵🇦️ 5 5 501 -20 -コッキ 🇵🇪️ 5 5 501 -20 -ハタ 🇵🇪️ 5 5 501 -20 -フラグ 🇵🇪️ 5 5 501 -20 -フラッグ 🇵🇪️ 5 5 501 -20 -ペルー 🇵🇪️ 5 5 501 -20 -コッキ 🇵🇫️ 5 5 501 -20 -ハタ 🇵🇫️ 5 5 501 -20 -フツリョウポリネシア 🇵🇫️ 5 5 501 -20 -フラグ 🇵🇫️ 5 5 501 -20 -フラッグ 🇵🇫️ 5 5 501 -20 -フランスリョウポリネシア 🇵🇫️ 5 5 501 -20 -コッキ 🇵🇬️ 5 5 501 -20 -ハタ 🇵🇬️ 5 5 501 -20 -パプアニューギニア 🇵🇬️ 5 5 501 -20 -フラグ 🇵🇬️ 5 5 501 -20 -フラッグ 🇵🇬️ 5 5 501 -20 -コッキ 🇵🇭️ 5 5 501 -20 -ハタ 🇵🇭️ 5 5 501 -20 -フィリピン 🇵🇭️ 5 5 501 -20 -フラグ 🇵🇭️ 5 5 501 -20 -フラッグ 🇵🇭️ 5 5 501 -20 -コッキ 🇵🇰️ 5 5 501 -20 -ハタ 🇵🇰️ 5 5 501 -20 -パキスタン 🇵🇰️ 5 5 501 -20 -フラグ 🇵🇰️ 5 5 501 -20 -フラッグ 🇵🇰️ 5 5 501 -20 -コッキ 🇵🇱️ 5 5 501 -20 -ハタ 🇵🇱️ 5 5 501 -20 -フラグ 🇵🇱️ 5 5 501 -20 -フラッグ 🇵🇱️ 5 5 501 -20 -ポーランド 🇵🇱️ 5 5 501 -20 -コッキ 🇵🇲️ 5 5 501 -20 -サンピエールシマ・ミクロントウ 🇵🇲️ 5 5 501 -20 -サンピエールトウ 🇵🇲️ 5 5 501 -20 -サンピエールトウ・ミクロントウ 🇵🇲️ 5 5 501 -20 -ハタ 🇵🇲️ 5 5 501 -20 -フラグ 🇵🇲️ 5 5 501 -20 -フラッグ 🇵🇲️ 5 5 501 -20 -ミクロントウ 🇵🇲️ 5 5 501 -20 -コッキ 🇵🇳️ 5 5 501 -20 -ハタ 🇵🇳️ 5 5 501 -20 -ピトケアンショトウ 🇵🇳️ 5 5 501 -20 -フラグ 🇵🇳️ 5 5 501 -20 -フラッグ 🇵🇳️ 5 5 501 -20 -コッキ 🇵🇷️ 5 5 501 -20 -ハタ 🇵🇷️ 5 5 501 -20 -フラグ 🇵🇷️ 5 5 501 -20 -フラッグ 🇵🇷️ 5 5 501 -20 -プエルトリコ 🇵🇷️ 5 5 501 -20 -コッキ 🇵🇸️ 5 5 501 -20 -ハタ 🇵🇸️ 5 5 501 -20 -パレスチナジチク 🇵🇸️ 5 5 501 -20 -フラグ 🇵🇸️ 5 5 501 -20 -フラッグ 🇵🇸️ 5 5 501 -20 -コッキ 🇵🇹️ 5 5 501 -20 -ハタ 🇵🇹️ 5 5 501 -20 -フラグ 🇵🇹️ 5 5 501 -20 -フラッグ 🇵🇹️ 5 5 501 -20 -ポルトガル 🇵🇹️ 5 5 501 -20 -コッキ 🇵🇼️ 5 5 501 -20 -ハタ 🇵🇼️ 5 5 501 -20 -パラオ 🇵🇼️ 5 5 501 -20 -フラグ 🇵🇼️ 5 5 501 -20 -フラッグ 🇵🇼️ 5 5 501 -20 -コッキ 🇵🇾️ 5 5 501 -20 -ハタ 🇵🇾️ 5 5 501 -20 -パラグアイ 🇵🇾️ 5 5 501 -20 -フラグ 🇵🇾️ 5 5 501 -20 -フラッグ 🇵🇾️ 5 5 501 -20 -カタール 🇶🇦️ 5 5 501 -20 -コッキ 🇶🇦️ 5 5 501 -20 -ハタ 🇶🇦️ 5 5 501 -20 -フラグ 🇶🇦️ 5 5 501 -20 -フラッグ 🇶🇦️ 5 5 501 -20 -コッキ 🇷🇪️ 5 5 501 -20 -ハタ 🇷🇪️ 5 5 501 -20 -フラグ 🇷🇪️ 5 5 501 -20 -フラッグ 🇷🇪️ 5 5 501 -20 -レユニオン 🇷🇪️ 5 5 501 -20 -コッキ 🇷🇴️ 5 5 501 -20 -ハタ 🇷🇴️ 5 5 501 -20 -フラグ 🇷🇴️ 5 5 501 -20 -フラッグ 🇷🇴️ 5 5 501 -20 -ルーマニア 🇷🇴️ 5 5 501 -20 -コッキ 🇷🇸️ 5 5 501 -20 -セルビア 🇷🇸️ 5 5 501 -20 -ハタ 🇷🇸️ 5 5 501 -20 -フラグ 🇷🇸️ 5 5 501 -20 -フラッグ 🇷🇸️ 5 5 501 -20 -コッキ 🇷🇺️ 5 5 501 -20 -ハタ 🇷🇺️ 5 5 501 -20 -フラグ 🇷🇺️ 5 5 501 -20 -フラッグ 🇷🇺️ 5 5 501 -20 -ロシア 🇷🇺️ 5 5 501 -20 -コッキ 🇷🇼️ 5 5 501 -20 -ハタ 🇷🇼️ 5 5 501 -20 -フラグ 🇷🇼️ 5 5 501 -20 -フラッグ 🇷🇼️ 5 5 501 -20 -ルワンダ 🇷🇼️ 5 5 501 -20 -コッキ 🇸🇦️ 5 5 501 -20 -サウジアラビア 🇸🇦️ 5 5 501 -20 -ハタ 🇸🇦️ 5 5 501 -20 -フラグ 🇸🇦️ 5 5 501 -20 -フラッグ 🇸🇦️ 5 5 501 -20 -コッキ 🇸🇧️ 5 5 501 -20 -ソロモンショトウ 🇸🇧️ 5 5 501 -20 -ハタ 🇸🇧️ 5 5 501 -20 -フラグ 🇸🇧️ 5 5 501 -20 -フラッグ 🇸🇧️ 5 5 501 -20 -コッキ 🇸🇨️ 5 5 501 -20 -セーシェル 🇸🇨️ 5 5 501 -20 -ハタ 🇸🇨️ 5 5 501 -20 -フラグ 🇸🇨️ 5 5 501 -20 -フラッグ 🇸🇨️ 5 5 501 -20 -コッキ 🇸🇩️ 5 5 501 -20 -スーダン 🇸🇩️ 5 5 501 -20 -ハタ 🇸🇩️ 5 5 501 -20 -フラグ 🇸🇩️ 5 5 501 -20 -フラッグ 🇸🇩️ 5 5 501 -20 -コッキ 🇸🇪️ 5 5 501 -20 -スウェーデン 🇸🇪️ 5 5 501 -20 -ハタ 🇸🇪️ 5 5 501 -20 -フラグ 🇸🇪️ 5 5 501 -20 -フラッグ 🇸🇪️ 5 5 501 -20 -コッキ 🇸🇬️ 5 5 501 -20 -シンガポール 🇸🇬️ 5 5 501 -20 -ハタ 🇸🇬️ 5 5 501 -20 -フラグ 🇸🇬️ 5 5 501 -20 -フラッグ 🇸🇬️ 5 5 501 -20 -コッキ 🇸🇭️ 5 5 501 -20 -セントヘレナ 🇸🇭️ 5 5 501 -20 -ハタ 🇸🇭️ 5 5 501 -20 -フラグ 🇸🇭️ 5 5 501 -20 -フラッグ 🇸🇭️ 5 5 501 -20 -コッキ 🇸🇮️ 5 5 501 -20 -スロベニア 🇸🇮️ 5 5 501 -20 -ハタ 🇸🇮️ 5 5 501 -20 -フラグ 🇸🇮️ 5 5 501 -20 -フラッグ 🇸🇮️ 5 5 501 -20 -コッキ 🇸🇯️ 5 5 501 -20 -スバールバルショトウ 🇸🇯️ 5 5 501 -20 -スバールバルショトウ・ヤンマイエントウ 🇸🇯️ 5 5 501 -20 -スヴァールバルショトウオヨビヤンマイエントウ 🇸🇯️ 5 5 501 -20 -ハタ 🇸🇯️ 5 5 501 -20 -フラグ 🇸🇯️ 5 5 501 -20 -フラッグ 🇸🇯️ 5 5 501 -20 -ヤンマイエントウ 🇸🇯️ 5 5 501 -20 -コッキ 🇸🇰️ 5 5 501 -20 -スロバキア 🇸🇰️ 5 5 501 -20 -ハタ 🇸🇰️ 5 5 501 -20 -フラグ 🇸🇰️ 5 5 501 -20 -フラッグ 🇸🇰️ 5 5 501 -20 -コッキ 🇸🇱️ 5 5 501 -20 -シエラレオネ 🇸🇱️ 5 5 501 -20 -ハタ 🇸🇱️ 5 5 501 -20 -フラグ 🇸🇱️ 5 5 501 -20 -フラッグ 🇸🇱️ 5 5 501 -20 -コッキ 🇸🇲️ 5 5 501 -20 -サンマリノ 🇸🇲️ 5 5 501 -20 -ハタ 🇸🇲️ 5 5 501 -20 -フラグ 🇸🇲️ 5 5 501 -20 -フラッグ 🇸🇲️ 5 5 501 -20 -コッキ 🇸🇳️ 5 5 501 -20 -セネガル 🇸🇳️ 5 5 501 -20 -ハタ 🇸🇳️ 5 5 501 -20 -フラグ 🇸🇳️ 5 5 501 -20 -フラッグ 🇸🇳️ 5 5 501 -20 -コッキ 🇸🇴️ 5 5 501 -20 -ソマリア 🇸🇴️ 5 5 501 -20 -ハタ 🇸🇴️ 5 5 501 -20 -フラグ 🇸🇴️ 5 5 501 -20 -フラッグ 🇸🇴️ 5 5 501 -20 -コッキ 🇸🇷️ 5 5 501 -20 -スリナム 🇸🇷️ 5 5 501 -20 -ハタ 🇸🇷️ 5 5 501 -20 -フラグ 🇸🇷️ 5 5 501 -20 -フラッグ 🇸🇷️ 5 5 501 -20 -コッキ 🇸🇸️ 5 5 501 -20 -ハタ 🇸🇸️ 5 5 501 -20 -フラグ 🇸🇸️ 5 5 501 -20 -フラッグ 🇸🇸️ 5 5 501 -20 -ミナミスーダン 🇸🇸️ 5 5 501 -20 -コッキ 🇸🇹️ 5 5 501 -20 -サントメプリンシペ 🇸🇹️ 5 5 501 -20 -サントメ・プリンシペ 🇸🇹️ 5 5 501 -20 -ハタ 🇸🇹️ 5 5 501 -20 -フラグ 🇸🇹️ 5 5 501 -20 -フラッグ 🇸🇹️ 5 5 501 -20 -エルサルバドル 🇸🇻️ 5 5 501 -20 -コッキ 🇸🇻️ 5 5 501 -20 -ハタ 🇸🇻️ 5 5 501 -20 -フラグ 🇸🇻️ 5 5 501 -20 -フラッグ 🇸🇻️ 5 5 501 -20 -コッキ 🇸🇽️ 5 5 501 -20 -シントマールテン 🇸🇽️ 5 5 501 -20 -シント・マールテン 🇸🇽️ 5 5 501 -20 -ハタ 🇸🇽️ 5 5 501 -20 -フラグ 🇸🇽️ 5 5 501 -20 -フラッグ 🇸🇽️ 5 5 501 -20 -コッキ 🇸🇾️ 5 5 501 -20 -シリア 🇸🇾️ 5 5 501 -20 -ハタ 🇸🇾️ 5 5 501 -20 -フラグ 🇸🇾️ 5 5 501 -20 -フラッグ 🇸🇾️ 5 5 501 -20 -エスワティニ 🇸🇿️ 5 5 501 -20 -コッキ 🇸🇿️ 5 5 501 -20 -スワジランド 🇸🇿️ 5 5 501 -20 -ハタ 🇸🇿️ 5 5 501 -20 -フラグ 🇸🇿️ 5 5 501 -20 -フラッグ 🇸🇿️ 5 5 501 -20 -コッキ 🇹🇦️ 5 5 501 -20 -トリスタンダクーニャ 🇹🇦️ 5 5 501 -20 -トリスタン・ダ・クーニャ 🇹🇦️ 5 5 501 -20 -ハタ 🇹🇦️ 5 5 501 -20 -フラグ 🇹🇦️ 5 5 501 -20 -フラッグ 🇹🇦️ 5 5 501 -20 -コッキ 🇹🇨️ 5 5 501 -20 -タークスカイコスショトウ 🇹🇨️ 5 5 501 -20 -ハタ 🇹🇨️ 5 5 501 -20 -フラグ 🇹🇨️ 5 5 501 -20 -フラッグ 🇹🇨️ 5 5 501 -20 -コッキ 🇹🇩️ 5 5 501 -20 -チャド 🇹🇩️ 5 5 501 -20 -ハタ 🇹🇩️ 5 5 501 -20 -フラグ 🇹🇩️ 5 5 501 -20 -フラッグ 🇹🇩️ 5 5 501 -20 -コッキ 🇹🇫️ 5 5 501 -20 -ハタ 🇹🇫️ 5 5 501 -20 -フツリョウキョクナンショトウ 🇹🇫️ 5 5 501 -20 -フラグ 🇹🇫️ 5 5 501 -20 -フラッグ 🇹🇫️ 5 5 501 -20 -コッキ 🇹🇬️ 5 5 501 -20 -トーゴ 🇹🇬️ 5 5 501 -20 -ハタ 🇹🇬️ 5 5 501 -20 -フラグ 🇹🇬️ 5 5 501 -20 -フラッグ 🇹🇬️ 5 5 501 -20 -コッキ 🇹🇭️ 5 5 501 -20 -タイ 🇹🇭️ 5 5 501 -20 -ハタ 🇹🇭️ 5 5 501 -20 -フラグ 🇹🇭️ 5 5 501 -20 -フラッグ 🇹🇭️ 5 5 501 -20 -コッキ 🇹🇯️ 5 5 501 -20 -タジキスタン 🇹🇯️ 5 5 501 -20 -ハタ 🇹🇯️ 5 5 501 -20 -フラグ 🇹🇯️ 5 5 501 -20 -フラッグ 🇹🇯️ 5 5 501 -20 -コッキ 🇹🇰️ 5 5 501 -20 -トケラウ 🇹🇰️ 5 5 501 -20 -ハタ 🇹🇰️ 5 5 501 -20 -フラグ 🇹🇰️ 5 5 501 -20 -フラッグ 🇹🇰️ 5 5 501 -20 -コッキ 🇹🇱️ 5 5 501 -20 -ハタ 🇹🇱️ 5 5 501 -20 -ヒガシティモール 🇹🇱️ 5 5 501 -20 -フラグ 🇹🇱️ 5 5 501 -20 -フラッグ 🇹🇱️ 5 5 501 -20 -コッキ 🇹🇲️ 5 5 501 -20 -トルクメニスタン 🇹🇲️ 5 5 501 -20 -ハタ 🇹🇲️ 5 5 501 -20 -フラグ 🇹🇲️ 5 5 501 -20 -フラッグ 🇹🇲️ 5 5 501 -20 -コッキ 🇹🇳️ 5 5 501 -20 -チュニジア 🇹🇳️ 5 5 501 -20 -ハタ 🇹🇳️ 5 5 501 -20 -フラグ 🇹🇳️ 5 5 501 -20 -フラッグ 🇹🇳️ 5 5 501 -20 -コッキ 🇹🇴️ 5 5 501 -20 -トンガ 🇹🇴️ 5 5 501 -20 -ハタ 🇹🇴️ 5 5 501 -20 -フラグ 🇹🇴️ 5 5 501 -20 -フラッグ 🇹🇴️ 5 5 501 -20 -コッキ 🇹🇷️ 5 5 501 -20 -トルコ 🇹🇷️ 5 5 501 -20 -ハタ 🇹🇷️ 5 5 501 -20 -フラグ 🇹🇷️ 5 5 501 -20 -フラッグ 🇹🇷️ 5 5 501 -20 -コッキ 🇹🇹️ 5 5 501 -20 -トリニダードトバゴ 🇹🇹️ 5 5 501 -20 -トリニダード・トバゴ 🇹🇹️ 5 5 501 -20 -ハタ 🇹🇹️ 5 5 501 -20 -フラグ 🇹🇹️ 5 5 501 -20 -フラッグ 🇹🇹️ 5 5 501 -20 -コッキ 🇹🇻️ 5 5 501 -20 -ツバル 🇹🇻️ 5 5 501 -20 -ハタ 🇹🇻️ 5 5 501 -20 -フラグ 🇹🇻️ 5 5 501 -20 -フラッグ 🇹🇻️ 5 5 501 -20 -コッキ 🇹🇼️ 5 5 501 -20 -タイワン 🇹🇼️ 5 5 501 -20 -ハタ 🇹🇼️ 5 5 501 -20 -フラグ 🇹🇼️ 5 5 501 -20 -フラッグ 🇹🇼️ 5 5 501 -20 -コッキ 🇹🇿️ 5 5 501 -20 -タンザニア 🇹🇿️ 5 5 501 -20 -ハタ 🇹🇿️ 5 5 501 -20 -フラグ 🇹🇿️ 5 5 501 -20 -フラッグ 🇹🇿️ 5 5 501 -20 -ウクライナ 🇺🇦️ 5 5 501 -20 -コッキ 🇺🇦️ 5 5 501 -20 -ハタ 🇺🇦️ 5 5 501 -20 -フラグ 🇺🇦️ 5 5 501 -20 -フラッグ 🇺🇦️ 5 5 501 -20 -ウガンダ 🇺🇬️ 5 5 501 -20 -コッキ 🇺🇬️ 5 5 501 -20 -ハタ 🇺🇬️ 5 5 501 -20 -フラグ 🇺🇬️ 5 5 501 -20 -フラッグ 🇺🇬️ 5 5 501 -20 -ガッシュウコクリョウユウショウリトウ 🇺🇲️ 5 5 501 -20 -コッキ 🇺🇲️ 5 5 501 -20 -ハタ 🇺🇲️ 5 5 501 -20 -フラグ 🇺🇲️ 5 5 501 -20 -フラッグ 🇺🇲️ 5 5 501 -20 -コクサイレンゴウ 🇺🇳️ 5 5 501 -20 -コクレン 🇺🇳️ 5 5 501 -20 -コッキ 🇺🇳️ 5 5 501 -20 -ハタ 🇺🇳️ 5 5 501 -20 -フラグ 🇺🇳️ 5 5 501 -20 -フラッグ 🇺🇳️ 5 5 501 -20 -アメリカ 🇺🇸️ 5 5 501 -20 -アメリカガッシュウコク 🇺🇸️ 5 5 501 -20 -コッキ 🇺🇸️ 5 5 501 -20 -ハタ 🇺🇸️ 5 5 501 -20 -フラグ 🇺🇸️ 5 5 501 -20 -フラッグ 🇺🇸️ 5 5 501 -20 -ウルグアイ 🇺🇾️ 5 5 501 -20 -コッキ 🇺🇾️ 5 5 501 -20 -ハタ 🇺🇾️ 5 5 501 -20 -フラグ 🇺🇾️ 5 5 501 -20 -フラッグ 🇺🇾️ 5 5 501 -20 -ウズベキスタン 🇺🇿️ 5 5 501 -20 -コッキ 🇺🇿️ 5 5 501 -20 -ハタ 🇺🇿️ 5 5 501 -20 -フラグ 🇺🇿️ 5 5 501 -20 -フラッグ 🇺🇿️ 5 5 501 -20 -コッキ 🇻🇦️ 5 5 501 -20 -ハタ 🇻🇦️ 5 5 501 -20 -バチカン 🇻🇦️ 5 5 501 -20 -バチカンシコク 🇻🇦️ 5 5 501 -20 -フラグ 🇻🇦️ 5 5 501 -20 -フラッグ 🇻🇦️ 5 5 501 -20 -コッキ 🇻🇨️ 5 5 501 -20 -セントビンセントオヨビグレナディーンショトウ 🇻🇨️ 5 5 501 -20 -ハタ 🇻🇨️ 5 5 501 -20 -フラグ 🇻🇨️ 5 5 501 -20 -フラッグ 🇻🇨️ 5 5 501 -20 -コッキ 🇻🇪️ 5 5 501 -20 -ハタ 🇻🇪️ 5 5 501 -20 -フラグ 🇻🇪️ 5 5 501 -20 -フラッグ 🇻🇪️ 5 5 501 -20 -ベネズエラ 🇻🇪️ 5 5 501 -20 -イギリスリョウヴァージンショトウ 🇻🇬️ 5 5 501 -20 -エイリョウヴァージンショトウ 🇻🇬️ 5 5 501 -20 -コッキ 🇻🇬️ 5 5 501 -20 -ハタ 🇻🇬️ 5 5 501 -20 -フラグ 🇻🇬️ 5 5 501 -20 -フラッグ 🇻🇬️ 5 5 501 -20 -アメリカリョウヴァージンショトウ 🇻🇮️ 5 5 501 -20 -コッキ 🇻🇮️ 5 5 501 -20 -ハタ 🇻🇮️ 5 5 501 -20 -フラグ 🇻🇮️ 5 5 501 -20 -フラッグ 🇻🇮️ 5 5 501 -20 -ベイリョウヴァージンショトウ 🇻🇮️ 5 5 501 -20 -コッキ 🇻🇳️ 5 5 501 -20 -ハタ 🇻🇳️ 5 5 501 -20 -フラグ 🇻🇳️ 5 5 501 -20 -フラッグ 🇻🇳️ 5 5 501 -20 -ベトナム 🇻🇳️ 5 5 501 -20 -コッキ 🇻🇺️ 5 5 501 -20 -ハタ 🇻🇺️ 5 5 501 -20 -バヌアツ 🇻🇺️ 5 5 501 -20 -フラグ 🇻🇺️ 5 5 501 -20 -フラッグ 🇻🇺️ 5 5 501 -20 -ウォリスフツナ 🇼🇫️ 5 5 501 -20 -ウォリス・フツナ 🇼🇫️ 5 5 501 -20 -コッキ 🇼🇫️ 5 5 501 -20 -ハタ 🇼🇫️ 5 5 501 -20 -フラグ 🇼🇫️ 5 5 501 -20 -フラッグ 🇼🇫️ 5 5 501 -20 -コッキ 🇼🇸️ 5 5 501 -20 -サモア 🇼🇸️ 5 5 501 -20 -ハタ 🇼🇸️ 5 5 501 -20 -フラグ 🇼🇸️ 5 5 501 -20 -フラッグ 🇼🇸️ 5 5 501 -20 -コソボ 🇽🇰️ 5 5 501 -20 -コッキ 🇽🇰️ 5 5 501 -20 -ハタ 🇽🇰️ 5 5 501 -20 -フラグ 🇽🇰️ 5 5 501 -20 -フラッグ 🇽🇰️ 5 5 501 -20 -イエメン 🇾🇪️ 5 5 501 -20 -コッキ 🇾🇪️ 5 5 501 -20 -ハタ 🇾🇪️ 5 5 501 -20 -フラグ 🇾🇪️ 5 5 501 -20 -フラッグ 🇾🇪️ 5 5 501 -20 -コッキ 🇾🇹️ 5 5 501 -20 -ハタ 🇾🇹️ 5 5 501 -20 -フラグ 🇾🇹️ 5 5 501 -20 -フラッグ 🇾🇹️ 5 5 501 -20 -マヨット 🇾🇹️ 5 5 501 -20 -コッキ 🇿🇦️ 5 5 501 -20 -ハタ 🇿🇦️ 5 5 501 -20 -フラグ 🇿🇦️ 5 5 501 -20 -フラッグ 🇿🇦️ 5 5 501 -20 -ミナミアフリカ 🇿🇦️ 5 5 501 -20 -コッキ 🇿🇲️ 5 5 501 -20 -ザンビア 🇿🇲️ 5 5 501 -20 -ハタ 🇿🇲️ 5 5 501 -20 -フラグ 🇿🇲️ 5 5 501 -20 -フラッグ 🇿🇲️ 5 5 501 -20 -コッキ 🇿🇼️ 5 5 501 -20 -ジンバブエ 🇿🇼️ 5 5 501 -20 -ハタ 🇿🇼️ 5 5 501 -20 -フラグ 🇿🇼️ 5 5 501 -20 -フラッグ 🇿🇼️ 5 5 501 -20 -イングランド 🏴󠁧󠁢󠁥󠁮󠁧󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁥󠁮󠁧󠁿️ 5 5 501 -20 -スコットランド 🏴󠁧󠁢󠁳󠁣󠁴󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁳󠁣󠁴󠁿️ 5 5 501 -20 -ウェールズ 🏴󠁧󠁢󠁷󠁬󠁳󠁿️ 5 5 501 -20 -ハタ 🏴󠁧󠁢󠁷󠁬󠁳󠁿️ 5 5 501 -20 \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E13.1.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E13.1.txt deleted file mode 100644 index a7707d8..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E13.1.txt +++ /dev/null @@ -1,9 +0,0 @@ -Animals & Nature 🐵️,🐒️,🦍️,🦧️,🐶️,🐕️,🦮️,🐕‍🦺️,🐩️,🐺️,🦊️,🦝️,🐱️,🐈️,🐈‍⬛️,🦁️,🐯️,🐅️,🐆️,🐴️,🐎️,🦄️,🦓️,🦌️,🦬️,🐮️,🐂️,🐃️,🐄️,🐷️,🐖️,🐗️,🐽️,🐏️,🐑️,🐐️,🐪️,🐫️,🦙️,🦒️,🐘️,🦣️,🦏️,🦛️,🐭️,🐁️,🐀️,🐹️,🐰️,🐇️,🐿️️,🦫️,🦔️,🦇️,🐻️,🐻‍❄️️,🐨️,🐼️,🦥️,🦦️,🦨️,🦘️,🦡️,🐾️,🦃️,🐔️,🐓️,🐣️,🐤️,🐥️,🐦️,🐧️,🕊️️,🦅️,🦆️,🦢️,🦉️,🦤️,🪶️,🦩️,🦚️,🦜️,🐸️,🐊️,🐢️,🦎️,🐍️,🐲️,🐉️,🦕️,🦖️,🐳️,🐋️,🐬️,🦭️,🐟️,🐠️,🐡️,🦈️,🐙️,🐚️,🐌️,🦋️,🐛️,🐜️,🐝️,🪲️,🐞️,🦗️,🪳️,🕷️️,🕸️️,🦂️,🦟️,🪰️,🪱️,🦠️,💐️,🌸️,💮️,🏵️️,🌹️,🥀️,🌺️,🌻️,🌼️,🌷️,🌱️,🪴️,🌲️,🌳️,🌴️,🌵️,🌾️,🌿️,☘️️,🍀️,🍁️,🍂️,🍃️,🍄️ -Activities 🎃️,🎄️,🎆️,🎇️,🧨️,✨️,🎈️,🎉️,🎊️,🎋️,🎍️,🎎️,🎏️,🎐️,🎑️,🧧️,🎀️,🎁️,🎗️️,🎟️️,🎫️,🎖️️,🏆️,🏅️,🥇️,🥈️,🥉️,⚽️,⚾️,🥎️,🏀️,🏐️,🏈️,🏉️,🎾️,🥏️,🎳️,🏏️,🏑️,🏒️,🥍️,🏓️,🏸️,🥊️,🥋️,🥅️,⛳️,⛸️️,🎣️,🤿️,🎽️,🎿️,🛷️,🥌️,🎯️,🪀️,🪁️,🔫️,🎱️,🔮️,🪄️,🎮️,🕹️️,🎰️,🎲️,🧩️,🧸️,🪅️,🪆️,♠️️,♥️️,♦️️,♣️️,♟️️,🃏️,🀄️,🎴️,🎭️,🖼️️,🎨️,🧵️,🪡️,🧶️,🪢️ -Food & Drink 🍇️,🍈️,🍉️,🍊️,🍋️,🍌️,🍍️,🥭️,🍎️,🍏️,🍐️,🍑️,🍒️,🍓️,🫐️,🥝️,🍅️,🫒️,🥥️,🥑️,🍆️,🥔️,🥕️,🌽️,🌶️️,🫑️,🥒️,🥬️,🥦️,🧄️,🧅️,🥜️,🌰️,🍞️,🥐️,🥖️,🫓️,🥨️,🥯️,🥞️,🧇️,🧀️,🍖️,🍗️,🥩️,🥓️,🍔️,🍟️,🍕️,🌭️,🥪️,🌮️,🌯️,🫔️,🥙️,🧆️,🥚️,🍳️,🥘️,🍲️,🫕️,🥣️,🥗️,🍿️,🧈️,🧂️,🥫️,🍱️,🍘️,🍙️,🍚️,🍛️,🍜️,🍝️,🍠️,🍢️,🍣️,🍤️,🍥️,🥮️,🍡️,🥟️,🥠️,🥡️,🦀️,🦞️,🦐️,🦑️,🦪️,🍦️,🍧️,🍨️,🍩️,🍪️,🎂️,🍰️,🧁️,🥧️,🍫️,🍬️,🍭️,🍮️,🍯️,🍼️,🥛️,☕️,🫖️,🍵️,🍶️,🍾️,🍷️,🍸️,🍹️,🍺️,🍻️,🥂️,🥃️,🥤️,🧋️,🧃️,🧉️,🧊️,🥢️,🍽️️,🍴️,🥄️,🔪️,🏺️ -Flags 🏁️,🚩️,🎌️,🏴️,🏳️️,🏳️‍🌈️,🏳️‍⚧️️,🏴‍☠️️,🇦🇨️,🇦🇩️,🇦🇪️,🇦🇫️,🇦🇬️,🇦🇮️,🇦🇱️,🇦🇲️,🇦🇴️,🇦🇶️,🇦🇷️,🇦🇸️,🇦🇹️,🇦🇺️,🇦🇼️,🇦🇽️,🇦🇿️,🇧🇦️,🇧🇧️,🇧🇩️,🇧🇪️,🇧🇫️,🇧🇬️,🇧🇭️,🇧🇮️,🇧🇯️,🇧🇱️,🇧🇲️,🇧🇳️,🇧🇴️,🇧🇶️,🇧🇷️,🇧🇸️,🇧🇹️,🇧🇻️,🇧🇼️,🇧🇾️,🇧🇿️,🇨🇦️,🇨🇨️,🇨🇩️,🇨🇫️,🇨🇬️,🇨🇭️,🇨🇮️,🇨🇰️,🇨🇱️,🇨🇲️,🇨🇳️,🇨🇴️,🇨🇵️,🇨🇷️,🇨🇺️,🇨🇻️,🇨🇼️,🇨🇽️,🇨🇾️,🇨🇿️,🇩🇪️,🇩🇬️,🇩🇯️,🇩🇰️,🇩🇲️,🇩🇴️,🇩🇿️,🇪🇦️,🇪🇨️,🇪🇪️,🇪🇬️,🇪🇭️,🇪🇷️,🇪🇸️,🇪🇹️,🇪🇺️,🇫🇮️,🇫🇯️,🇫🇰️,🇫🇲️,🇫🇴️,🇫🇷️,🇬🇦️,🇬🇧️,🇬🇩️,🇬🇪️,🇬🇫️,🇬🇬️,🇬🇭️,🇬🇮️,🇬🇱️,🇬🇲️,🇬🇳️,🇬🇵️,🇬🇶️,🇬🇷️,🇬🇸️,🇬🇹️,🇬🇺️,🇬🇼️,🇬🇾️,🇭🇰️,🇭🇲️,🇭🇳️,🇭🇷️,🇭🇹️,🇭🇺️,🇮🇨️,🇮🇩️,🇮🇪️,🇮🇱️,🇮🇲️,🇮🇳️,🇮🇴️,🇮🇶️,🇮🇷️,🇮🇸️,🇮🇹️,🇯🇪️,🇯🇲️,🇯🇴️,🇯🇵️,🇰🇪️,🇰🇬️,🇰🇭️,🇰🇮️,🇰🇲️,🇰🇳️,🇰🇵️,🇰🇷️,🇰🇼️,🇰🇾️,🇰🇿️,🇱🇦️,🇱🇧️,🇱🇨️,🇱🇮️,🇱🇰️,🇱🇷️,🇱🇸️,🇱🇹️,🇱🇺️,🇱🇻️,🇱🇾️,🇲🇦️,🇲🇨️,🇲🇩️,🇲🇪️,🇲🇫️,🇲🇬️,🇲🇭️,🇲🇰️,🇲🇱️,🇲🇲️,🇲🇳️,🇲🇴️,🇲🇵️,🇲🇶️,🇲🇷️,🇲🇸️,🇲🇹️,🇲🇺️,🇲🇻️,🇲🇼️,🇲🇽️,🇲🇾️,🇲🇿️,🇳🇦️,🇳🇨️,🇳🇪️,🇳🇫️,🇳🇬️,🇳🇮️,🇳🇱️,🇳🇴️,🇳🇵️,🇳🇷️,🇳🇺️,🇳🇿️,🇴🇲️,🇵🇦️,🇵🇪️,🇵🇫️,🇵🇬️,🇵🇭️,🇵🇰️,🇵🇱️,🇵🇲️,🇵🇳️,🇵🇷️,🇵🇸️,🇵🇹️,🇵🇼️,🇵🇾️,🇶🇦️,🇷🇪️,🇷🇴️,🇷🇸️,🇷🇺️,🇷🇼️,🇸🇦️,🇸🇧️,🇸🇨️,🇸🇩️,🇸🇪️,🇸🇬️,🇸🇭️,🇸🇮️,🇸🇯️,🇸🇰️,🇸🇱️,🇸🇲️,🇸🇳️,🇸🇴️,🇸🇷️,🇸🇸️,🇸🇹️,🇸🇻️,🇸🇽️,🇸🇾️,🇸🇿️,🇹🇦️,🇹🇨️,🇹🇩️,🇹🇫️,🇹🇬️,🇹🇭️,🇹🇯️,🇹🇰️,🇹🇱️,🇹🇲️,🇹🇳️,🇹🇴️,🇹🇷️,🇹🇹️,🇹🇻️,🇹🇼️,🇹🇿️,🇺🇦️,🇺🇬️,🇺🇲️,🇺🇳️,🇺🇸️,🇺🇾️,🇺🇿️,🇻🇦️,🇻🇨️,🇻🇪️,🇻🇬️,🇻🇮️,🇻🇳️,🇻🇺️,🇼🇫️,🇼🇸️,🇽🇰️,🇾🇪️,🇾🇹️,🇿🇦️,🇿🇲️,🇿🇼️,🏴󠁧󠁢󠁥󠁮󠁧󠁿️,🏴󠁧󠁢󠁳󠁣󠁴󠁿️,🏴󠁧󠁢󠁷󠁬󠁳󠁿️ -Smileys & People 😀️,😃️,😄️,😁️,😆️,😅️,🤣️,😂️,🙂️,🙃️,😉️,😊️,😇️,🥰️,😍️,🤩️,😘️,😗️,☺️️,😚️,😙️,🥲️,😋️,😛️,😜️,🤪️,😝️,🤑️,🤗️,🤭️,🤫️,🤔️,🤐️,🤨️,😐️,😑️,😶️,😶‍🌫️️,😏️,😒️,🙄️,😬️,😮‍💨️,🤥️,😌️,😔️,😪️,🤤️,😴️,😷️,🤒️,🤕️,🤢️,🤮️,🤧️,🥵️,🥶️,🥴️,😵️,😵‍💫️,🤯️,🤠️,🥳️,🥸️,😎️,🤓️,🧐️,😕️,😟️,🙁️,☹️️,😮️,😯️,😲️,😳️,🥺️,😦️,😧️,😨️,😰️,😥️,😢️,😭️,😱️,😖️,😣️,😞️,😓️,😩️,😫️,🥱️,😤️,😡️,😠️,🤬️,😈️,👿️,💀️,☠️️,💩️,🤡️,👹️,👺️,👻️,👽️,👾️,🤖️,😺️,😸️,😹️,😻️,😼️,😽️,🙀️,😿️,😾️,🙈️,🙉️,🙊️,💌️,💘️,💝️,💖️,💗️,💓️,💞️,💕️,💟️,❣️️,💔️,❤️‍🔥️,❤️‍🩹️,❤️️,🧡️,💛️,💚️,💙️,💜️,🤎️,🖤️,🤍️,💋️,💯️,💢️,💥️,💫️,💦️,💨️,🕳️️,💬️,👁️‍🗨️️,🗨️️,🗯️️,💭️,💤️,👋️,🤚️,🖐️️,✋️,🖖️,👌️,🤌️,🤏️,✌️️,🤞️,🤟️,🤘️,🤙️,👈️,👉️,👆️,🖕️,👇️,☝️️,👍️,👎️,✊️,👊️,🤛️,🤜️,👏️,🙌️,👐️,🤲️,🤝️,🙏️,✍️️,💅️,🤳️,💪️,🦾️,🦿️,🦵️,🦶️,👂️,🦻️,👃️,🧠️,🫀️,🫁️,🦷️,🦴️,👀️,👁️️,👅️,👄️,👶️,🧒️,👦️,👧️,🧑️,👱️,👨️,🧔️,🧔‍♂️️,🧔‍♀️️,👨‍🦰️,👨‍🦰️,👨‍🦱️,👨‍🦱️,👨‍🦳️,👨‍🦳️,👨‍🦲️,👨‍🦲️,👩️,👩‍🦰️,👩‍🦰️,🧑‍🦰️,🧑‍🦰️,👩‍🦱️,👩‍🦱️,🧑‍🦱️,🧑‍🦱️,👩‍🦳️,👩‍🦳️,🧑‍🦳️,🧑‍🦳️,👩‍🦲️,👩‍🦲️,🧑‍🦲️,🧑‍🦲️,👱‍♀️️,👱‍♂️️,🧓️,👴️,👵️,🙍️,🙍‍♂️️,🙍‍♀️️,🙎️,🙎‍♂️️,🙎‍♀️️,🙅️,🙅‍♂️️,🙅‍♀️️,🙆️,🙆‍♂️️,🙆‍♀️️,💁️,💁‍♂️️,💁‍♀️️,🙋️,🙋‍♂️️,🙋‍♀️️,🧏️,🧏‍♂️️,🧏‍♀️️,🙇️,🙇‍♂️️,🙇‍♀️️,🤦️,🤦‍♂️️,🤦‍♀️️,🤷️,🤷‍♂️️,🤷‍♀️️,🧑‍⚕️️,👨‍⚕️️,👩‍⚕️️,🧑‍🎓️,👨‍🎓️,👩‍🎓️,🧑‍🏫️,👨‍🏫️,👩‍🏫️,🧑‍⚖️️,👨‍⚖️️,👩‍⚖️️,🧑‍🌾️,👨‍🌾️,👩‍🌾️,🧑‍🍳️,👨‍🍳️,👩‍🍳️,🧑‍🔧️,👨‍🔧️,👩‍🔧️,🧑‍🏭️,👨‍🏭️,👩‍🏭️,🧑‍💼️,👨‍💼️,👩‍💼️,🧑‍🔬️,👨‍🔬️,👩‍🔬️,🧑‍💻️,👨‍💻️,👩‍💻️,🧑‍🎤️,👨‍🎤️,👩‍🎤️,🧑‍🎨️,👨‍🎨️,👩‍🎨️,🧑‍✈️️,👨‍✈️️,👩‍✈️️,🧑‍🚀️,👨‍🚀️,👩‍🚀️,🧑‍🚒️,👨‍🚒️,👩‍🚒️,👮️,👮‍♂️️,👮‍♀️️,🕵️️,🕵️‍♂️️,🕵️‍♀️️,💂️,💂‍♂️️,💂‍♀️️,🥷️,👷️,👷‍♂️️,👷‍♀️️,🤴️,👸️,👳️,👳‍♂️️,👳‍♀️️,👲️,🧕️,🤵️,🤵‍♂️️,🤵‍♀️️,👰️,👰‍♂️️,👰‍♀️️,🤰️,🤱️,👩‍🍼️,👨‍🍼️,🧑‍🍼️,👼️,🎅️,🤶️,🧑‍🎄️,🦸️,🦸‍♂️️,🦸‍♀️️,🦹️,🦹‍♂️️,🦹‍♀️️,🧙️,🧙‍♂️️,🧙‍♀️️,🧚️,🧚‍♂️️,🧚‍♀️️,🧛️,🧛‍♂️️,🧛‍♀️️,🧜️,🧜‍♂️️,🧜‍♀️️,🧝️,🧝‍♂️️,🧝‍♀️️,🧞️,🧞‍♂️️,🧞‍♀️️,🧟️,🧟‍♂️️,🧟‍♀️️,💆️,💆‍♂️️,💆‍♀️️,💇️,💇‍♂️️,💇‍♀️️,🚶️,🚶‍♂️️,🚶‍♀️️,🧍️,🧍‍♂️️,🧍‍♀️️,🧎️,🧎‍♂️️,🧎‍♀️️,🧑‍🦯️,👨‍🦯️,👩‍🦯️,🧑‍🦼️,👨‍🦼️,👩‍🦼️,🧑‍🦽️,👨‍🦽️,👩‍🦽️,🏃️,🏃‍♂️️,🏃‍♀️️,💃️,🕺️,🕴️️,👯️,👯‍♂️️,👯‍♀️️,🧖️,🧖‍♂️️,🧖‍♀️️,🧗️,🧗‍♂️️,🧗‍♀️️,🤺️,🏇️,⛷️️,🏂️,🏌️️,🏌️‍♂️️,🏌️‍♀️️,🏄️,🏄‍♂️️,🏄‍♀️️,🚣️,🚣‍♂️️,🚣‍♀️️,🏊️,🏊‍♂️️,🏊‍♀️️,⛹️️,⛹️‍♂️️,⛹️‍♀️️,🏋️️,🏋️‍♂️️,🏋️‍♀️️,🚴️,🚴‍♂️️,🚴‍♀️️,🚵️,🚵‍♂️️,🚵‍♀️️,🤸️,🤸‍♂️️,🤸‍♀️️,🤼️,🤼‍♂️️,🤼‍♀️️,🤽️,🤽‍♂️️,🤽‍♀️️,🤾️,🤾‍♂️️,🤾‍♀️️,🤹️,🤹‍♂️️,🤹‍♀️️,🧘️,🧘‍♂️️,🧘‍♀️️,🛀️,🛌️,🧑‍🤝‍🧑️,👭️,👫️,👬️,💏️,👩‍❤️‍💋‍👨️,👨‍❤️‍💋‍👨️,👩‍❤️‍💋‍👩️,💑️,👩‍❤️‍👨️,👨‍❤️‍👨️,👩‍❤️‍👩️,👨‍👩‍👦️,👨‍👩‍👧️,👨‍👩‍👧‍👦️,👨‍👩‍👦‍👦️,👨‍👩‍👧‍👧️,👨‍👨‍👦️,👨‍👨‍👧️,👨‍👨‍👧‍👦️,👨‍👨‍👦‍👦️,👨‍👨‍👧‍👧️,👩‍👩‍👦️,👩‍👩‍👧️,👩‍👩‍👧‍👦️,👩‍👩‍👦‍👦️,👩‍👩‍👧‍👧️,👨‍👦️,👨‍👦‍👦️,👨‍👧️,👨‍👧‍👦️,👨‍👧‍👧️,👩‍👦️,👩‍👦‍👦️,👩‍👧️,👩‍👧‍👦️,👩‍👧‍👧️,🗣️️,👤️,👥️,🫂️,👪️,👣️ -Component 🦰️,🦱️,🦳️,🦲️ -Symbols 🏧️,🚮️,🚰️,♿️,🚹️,🚺️,🚻️,🚼️,🚾️,🛂️,🛃️,🛄️,🛅️,⚠️️,🚸️,⛔️,🚫️,🚳️,🚭️,🚯️,🚱️,🚷️,📵️,🔞️,☢️️,☣️️,⬆️️,↗️️,➡️️,↘️️,⬇️️,↙️️,⬅️️,↖️️,↕️️,↔️️,↩️️,↪️️,⤴️️,⤵️️,🔃️,🔄️,🔙️,🔚️,🔛️,🔜️,🔝️,🛐️,⚛️️,🕉️️,✡️️,☸️️,☯️️,✝️️,☦️️,☪️️,☮️️,🕎️,🔯️,♈️,♉️,♊️,♋️,♌️,♍️,♎️,♏️,♐️,♑️,♒️,♓️,⛎️,🔀️,🔁️,🔂️,▶️️,⏩️,⏭️️,⏯️️,◀️️,⏪️,⏮️️,🔼️,⏫️,🔽️,⏬️,⏸️️,⏹️️,⏺️️,⏏️️,🎦️,🔅️,🔆️,📶️,📳️,📴️,♀️️,♂️️,⚧️️,✖️️,➕️,➖️,➗️,♾️️,‼️️,⁉️️,❓️,❔️,❕️,❗️,〰️️,💱️,💲️,⚕️️,♻️️,⚜️️,🔱️,📛️,🔰️,⭕️,✅️,☑️️,✔️️,❌️,❎️,➰️,➿️,〽️️,✳️️,✴️️,❇️️,©️️,®️️,™️️,#️⃣️,*️⃣️,0️⃣️,1️⃣️,2️⃣️,3️⃣️,4️⃣️,5️⃣️,6️⃣️,7️⃣️,8️⃣️,9️⃣️,🔟️,🔠️,🔡️,🔢️,🔣️,🔤️,🅰️️,🆎️,🅱️️,🆑️,🆒️,🆓️,ℹ️️,🆔️,Ⓜ️️,🆕️,🆖️,🅾️️,🆗️,🅿️️,🆘️,🆙️,🆚️,🈁️,🈂️️,🈷️️,🈶️,🈯️,🉐️,🈹️,🈚️,🈲️,🉑️,🈸️,🈴️,🈳️,㊗️️,㊙️️,🈺️,🈵️,🔴️,🟠️,🟡️,🟢️,🔵️,🟣️,🟤️,⚫️,⚪️,🟥️,🟧️,🟨️,🟩️,🟦️,🟪️,🟫️,⬛️,⬜️,◼️️,◻️️,◾️,◽️,▪️️,▫️️,🔶️,🔷️,🔸️,🔹️,🔺️,🔻️,💠️,🔘️,🔳️,🔲️ -Objects 👓️,🕶️️,🥽️,🥼️,🦺️,👔️,👕️,👖️,🧣️,🧤️,🧥️,🧦️,👗️,👘️,🥻️,🩱️,🩲️,🩳️,👙️,👚️,👛️,👜️,👝️,🛍️️,🎒️,🩴️,👞️,👟️,🥾️,🥿️,👠️,👡️,🩰️,👢️,👑️,👒️,🎩️,🎓️,🧢️,🪖️,⛑️️,📿️,💄️,💍️,💎️,🔇️,🔈️,🔉️,🔊️,📢️,📣️,📯️,🔔️,🔕️,🎼️,🎵️,🎶️,🎙️️,🎚️️,🎛️️,🎤️,🎧️,📻️,🎷️,🪗️,🎸️,🎹️,🎺️,🎻️,🪕️,🥁️,🪘️,📱️,📲️,☎️️,📞️,📟️,📠️,🔋️,🔌️,💻️,🖥️️,🖨️️,⌨️️,🖱️️,🖲️️,💽️,💾️,💿️,📀️,🧮️,🎥️,🎞️️,📽️️,🎬️,📺️,📷️,📸️,📹️,📼️,🔍️,🔎️,🕯️️,💡️,🔦️,🏮️,🪔️,📔️,📕️,📖️,📗️,📘️,📙️,📚️,📓️,📒️,📃️,📜️,📄️,📰️,🗞️️,📑️,🔖️,🏷️️,💰️,🪙️,💴️,💵️,💶️,💷️,💸️,💳️,🧾️,💹️,✉️️,📧️,📨️,📩️,📤️,📥️,📦️,📫️,📪️,📬️,📭️,📮️,🗳️️,✏️️,✒️️,🖋️️,🖊️️,🖌️️,🖍️️,📝️,💼️,📁️,📂️,🗂️️,📅️,📆️,🗒️️,🗓️️,📇️,📈️,📉️,📊️,📋️,📌️,📍️,📎️,🖇️️,📏️,📐️,✂️️,🗃️️,🗄️️,🗑️️,🔒️,🔓️,🔏️,🔐️,🔑️,🗝️️,🔨️,🪓️,⛏️️,⚒️️,🛠️️,🗡️️,⚔️️,💣️,🪃️,🏹️,🛡️️,🪚️,🔧️,🪛️,🔩️,⚙️️,🗜️️,⚖️️,🦯️,🔗️,⛓️️,🪝️,🧰️,🧲️,🪜️,⚗️️,🧪️,🧫️,🧬️,🔬️,🔭️,📡️,💉️,🩸️,💊️,🩹️,🩺️,🚪️,🛗️,🪞️,🪟️,🛏️️,🛋️️,🪑️,🚽️,🪠️,🚿️,🛁️,🪤️,🪒️,🧴️,🧷️,🧹️,🧺️,🧻️,🪣️,🧼️,🪥️,🧽️,🧯️,🛒️,🚬️,⚰️️,🪦️,⚱️️,🧿️,🗿️,🪧️ -Travel & Places 🌍️,🌎️,🌏️,🌐️,🗺️️,🗾️,🧭️,🏔️️,⛰️️,🌋️,🗻️,🏕️️,🏖️️,🏜️️,🏝️️,🏞️️,🏟️️,🏛️️,🏗️️,🧱️,🪨️,🪵️,🛖️,🏘️️,🏚️️,🏠️,🏡️,🏢️,🏣️,🏤️,🏥️,🏦️,🏨️,🏩️,🏪️,🏫️,🏬️,🏭️,🏯️,🏰️,💒️,🗼️,🗽️,⛪️,🕌️,🛕️,🕍️,⛩️️,🕋️,⛲️,⛺️,🌁️,🌃️,🏙️️,🌄️,🌅️,🌆️,🌇️,🌉️,♨️️,🎠️,🎡️,🎢️,💈️,🎪️,🚂️,🚃️,🚄️,🚅️,🚆️,🚇️,🚈️,🚉️,🚊️,🚝️,🚞️,🚋️,🚌️,🚍️,🚎️,🚐️,🚑️,🚒️,🚓️,🚔️,🚕️,🚖️,🚗️,🚘️,🚙️,🛻️,🚚️,🚛️,🚜️,🏎️️,🏍️️,🛵️,🦽️,🦼️,🛺️,🚲️,🛴️,🛹️,🛼️,🚏️,🛣️️,🛤️️,🛢️️,⛽️,🚨️,🚥️,🚦️,🛑️,🚧️,⚓️,⛵️,🛶️,🚤️,🛳️️,⛴️️,🛥️️,🚢️,✈️️,🛩️️,🛫️,🛬️,🪂️,💺️,🚁️,🚟️,🚠️,🚡️,🛰️️,🚀️,🛸️,🛎️️,🧳️,⌛️,⏳️,⌚️,⏰️,⏱️️,⏲️️,🕰️️,🕛️,🕧️,🕐️,🕜️,🕑️,🕝️,🕒️,🕞️,🕓️,🕟️,🕔️,🕠️,🕕️,🕡️,🕖️,🕢️,🕗️,🕣️,🕘️,🕤️,🕙️,🕥️,🕚️,🕦️,🌑️,🌒️,🌓️,🌔️,🌕️,🌖️,🌗️,🌘️,🌙️,🌚️,🌛️,🌜️,🌡️️,☀️️,🌝️,🌞️,🪐️,⭐️,🌟️,🌠️,🌌️,☁️️,⛅️,⛈️️,🌤️️,🌥️️,🌦️️,🌧️️,🌨️️,🌩️️,🌪️️,🌫️️,🌬️️,🌀️,🌈️,🌂️,☂️️,☔️,⛱️️,⚡️,❄️️,☃️️,⛄️,☄️️,🔥️,💧️,🌊️ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E14.0.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E14.0.txt deleted file mode 100644 index 49179bf..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E14.0.txt +++ /dev/null @@ -1,9 +0,0 @@ -Animals & Nature 🐵️,🐒️,🦍️,🦧️,🐶️,🐕️,🦮️,🐕‍🦺️,🐩️,🐺️,🦊️,🦝️,🐱️,🐈️,🐈‍⬛️,🦁️,🐯️,🐅️,🐆️,🐴️,🐎️,🦄️,🦓️,🦌️,🦬️,🐮️,🐂️,🐃️,🐄️,🐷️,🐖️,🐗️,🐽️,🐏️,🐑️,🐐️,🐪️,🐫️,🦙️,🦒️,🐘️,🦣️,🦏️,🦛️,🐭️,🐁️,🐀️,🐹️,🐰️,🐇️,🐿️️,🦫️,🦔️,🦇️,🐻️,🐻‍❄️️,🐨️,🐼️,🦥️,🦦️,🦨️,🦘️,🦡️,🐾️,🦃️,🐔️,🐓️,🐣️,🐤️,🐥️,🐦️,🐧️,🕊️️,🦅️,🦆️,🦢️,🦉️,🦤️,🪶️,🦩️,🦚️,🦜️,🐸️,🐊️,🐢️,🦎️,🐍️,🐲️,🐉️,🦕️,🦖️,🐳️,🐋️,🐬️,🦭️,🐟️,🐠️,🐡️,🦈️,🐙️,🐚️,🪸️,🐌️,🦋️,🐛️,🐜️,🐝️,🪲️,🐞️,🦗️,🪳️,🕷️️,🕸️️,🦂️,🦟️,🪰️,🪱️,🦠️,💐️,🌸️,💮️,🪷️,🏵️️,🌹️,🥀️,🌺️,🌻️,🌼️,🌷️,🌱️,🪴️,🌲️,🌳️,🌴️,🌵️,🌾️,🌿️,☘️️,🍀️,🍁️,🍂️,🍃️,🪹️,🪺️,🍄️ -Activities 🎃️,🎄️,🎆️,🎇️,🧨️,✨️,🎈️,🎉️,🎊️,🎋️,🎍️,🎎️,🎏️,🎐️,🎑️,🧧️,🎀️,🎁️,🎗️️,🎟️️,🎫️,🎖️️,🏆️,🏅️,🥇️,🥈️,🥉️,⚽️,⚾️,🥎️,🏀️,🏐️,🏈️,🏉️,🎾️,🥏️,🎳️,🏏️,🏑️,🏒️,🥍️,🏓️,🏸️,🥊️,🥋️,🥅️,⛳️,⛸️️,🎣️,🤿️,🎽️,🎿️,🛷️,🥌️,🎯️,🪀️,🪁️,🔫️,🎱️,🔮️,🪄️,🎮️,🕹️️,🎰️,🎲️,🧩️,🧸️,🪅️,🪩️,🪆️,♠️️,♥️️,♦️️,♣️️,♟️️,🃏️,🀄️,🎴️,🎭️,🖼️️,🎨️,🧵️,🪡️,🧶️,🪢️ -Food & Drink 🍇️,🍈️,🍉️,🍊️,🍋️,🍌️,🍍️,🥭️,🍎️,🍏️,🍐️,🍑️,🍒️,🍓️,🫐️,🥝️,🍅️,🫒️,🥥️,🥑️,🍆️,🥔️,🥕️,🌽️,🌶️️,🫑️,🥒️,🥬️,🥦️,🧄️,🧅️,🥜️,🫘️,🌰️,🍞️,🥐️,🥖️,🫓️,🥨️,🥯️,🥞️,🧇️,🧀️,🍖️,🍗️,🥩️,🥓️,🍔️,🍟️,🍕️,🌭️,🥪️,🌮️,🌯️,🫔️,🥙️,🧆️,🥚️,🍳️,🥘️,🍲️,🫕️,🥣️,🥗️,🍿️,🧈️,🧂️,🥫️,🍱️,🍘️,🍙️,🍚️,🍛️,🍜️,🍝️,🍠️,🍢️,🍣️,🍤️,🍥️,🥮️,🍡️,🥟️,🥠️,🥡️,🦀️,🦞️,🦐️,🦑️,🦪️,🍦️,🍧️,🍨️,🍩️,🍪️,🎂️,🍰️,🧁️,🥧️,🍫️,🍬️,🍭️,🍮️,🍯️,🍼️,🥛️,☕️,🫖️,🍵️,🍶️,🍾️,🍷️,🍸️,🍹️,🍺️,🍻️,🥂️,🥃️,🫗️,🥤️,🧋️,🧃️,🧉️,🧊️,🥢️,🍽️️,🍴️,🥄️,🔪️,🫙️,🏺️ -Flags 🏁️,🚩️,🎌️,🏴️,🏳️️,🏳️‍🌈️,🏳️‍⚧️️,🏴‍☠️️,🇦🇨️,🇦🇩️,🇦🇪️,🇦🇫️,🇦🇬️,🇦🇮️,🇦🇱️,🇦🇲️,🇦🇴️,🇦🇶️,🇦🇷️,🇦🇸️,🇦🇹️,🇦🇺️,🇦🇼️,🇦🇽️,🇦🇿️,🇧🇦️,🇧🇧️,🇧🇩️,🇧🇪️,🇧🇫️,🇧🇬️,🇧🇭️,🇧🇮️,🇧🇯️,🇧🇱️,🇧🇲️,🇧🇳️,🇧🇴️,🇧🇶️,🇧🇷️,🇧🇸️,🇧🇹️,🇧🇻️,🇧🇼️,🇧🇾️,🇧🇿️,🇨🇦️,🇨🇨️,🇨🇩️,🇨🇫️,🇨🇬️,🇨🇭️,🇨🇮️,🇨🇰️,🇨🇱️,🇨🇲️,🇨🇳️,🇨🇴️,🇨🇵️,🇨🇷️,🇨🇺️,🇨🇻️,🇨🇼️,🇨🇽️,🇨🇾️,🇨🇿️,🇩🇪️,🇩🇬️,🇩🇯️,🇩🇰️,🇩🇲️,🇩🇴️,🇩🇿️,🇪🇦️,🇪🇨️,🇪🇪️,🇪🇬️,🇪🇭️,🇪🇷️,🇪🇸️,🇪🇹️,🇪🇺️,🇫🇮️,🇫🇯️,🇫🇰️,🇫🇲️,🇫🇴️,🇫🇷️,🇬🇦️,🇬🇧️,🇬🇩️,🇬🇪️,🇬🇫️,🇬🇬️,🇬🇭️,🇬🇮️,🇬🇱️,🇬🇲️,🇬🇳️,🇬🇵️,🇬🇶️,🇬🇷️,🇬🇸️,🇬🇹️,🇬🇺️,🇬🇼️,🇬🇾️,🇭🇰️,🇭🇲️,🇭🇳️,🇭🇷️,🇭🇹️,🇭🇺️,🇮🇨️,🇮🇩️,🇮🇪️,🇮🇱️,🇮🇲️,🇮🇳️,🇮🇴️,🇮🇶️,🇮🇷️,🇮🇸️,🇮🇹️,🇯🇪️,🇯🇲️,🇯🇴️,🇯🇵️,🇰🇪️,🇰🇬️,🇰🇭️,🇰🇮️,🇰🇲️,🇰🇳️,🇰🇵️,🇰🇷️,🇰🇼️,🇰🇾️,🇰🇿️,🇱🇦️,🇱🇧️,🇱🇨️,🇱🇮️,🇱🇰️,🇱🇷️,🇱🇸️,🇱🇹️,🇱🇺️,🇱🇻️,🇱🇾️,🇲🇦️,🇲🇨️,🇲🇩️,🇲🇪️,🇲🇫️,🇲🇬️,🇲🇭️,🇲🇰️,🇲🇱️,🇲🇲️,🇲🇳️,🇲🇴️,🇲🇵️,🇲🇶️,🇲🇷️,🇲🇸️,🇲🇹️,🇲🇺️,🇲🇻️,🇲🇼️,🇲🇽️,🇲🇾️,🇲🇿️,🇳🇦️,🇳🇨️,🇳🇪️,🇳🇫️,🇳🇬️,🇳🇮️,🇳🇱️,🇳🇴️,🇳🇵️,🇳🇷️,🇳🇺️,🇳🇿️,🇴🇲️,🇵🇦️,🇵🇪️,🇵🇫️,🇵🇬️,🇵🇭️,🇵🇰️,🇵🇱️,🇵🇲️,🇵🇳️,🇵🇷️,🇵🇸️,🇵🇹️,🇵🇼️,🇵🇾️,🇶🇦️,🇷🇪️,🇷🇴️,🇷🇸️,🇷🇺️,🇷🇼️,🇸🇦️,🇸🇧️,🇸🇨️,🇸🇩️,🇸🇪️,🇸🇬️,🇸🇭️,🇸🇮️,🇸🇯️,🇸🇰️,🇸🇱️,🇸🇲️,🇸🇳️,🇸🇴️,🇸🇷️,🇸🇸️,🇸🇹️,🇸🇻️,🇸🇽️,🇸🇾️,🇸🇿️,🇹🇦️,🇹🇨️,🇹🇩️,🇹🇫️,🇹🇬️,🇹🇭️,🇹🇯️,🇹🇰️,🇹🇱️,🇹🇲️,🇹🇳️,🇹🇴️,🇹🇷️,🇹🇹️,🇹🇻️,🇹🇼️,🇹🇿️,🇺🇦️,🇺🇬️,🇺🇲️,🇺🇳️,🇺🇸️,🇺🇾️,🇺🇿️,🇻🇦️,🇻🇨️,🇻🇪️,🇻🇬️,🇻🇮️,🇻🇳️,🇻🇺️,🇼🇫️,🇼🇸️,🇽🇰️,🇾🇪️,🇾🇹️,🇿🇦️,🇿🇲️,🇿🇼️,🏴󠁧󠁢󠁥󠁮󠁧󠁿️,🏴󠁧󠁢󠁳󠁣󠁴󠁿️,🏴󠁧󠁢󠁷󠁬󠁳󠁿️ -Smileys & People 😀️,😃️,😄️,😁️,😆️,😅️,🤣️,😂️,🙂️,🙃️,🫠️,😉️,😊️,😇️,🥰️,😍️,🤩️,😘️,😗️,☺️️,😚️,😙️,🥲️,😋️,😛️,😜️,🤪️,😝️,🤑️,🤗️,🤭️,🫢️,🫣️,🤫️,🤔️,🫡️,🤐️,🤨️,😐️,😑️,😶️,🫥️,😶‍🌫️️,😏️,😒️,🙄️,😬️,😮‍💨️,🤥️,😌️,😔️,😪️,🤤️,😴️,😷️,🤒️,🤕️,🤢️,🤮️,🤧️,🥵️,🥶️,🥴️,😵️,😵‍💫️,🤯️,🤠️,🥳️,🥸️,😎️,🤓️,🧐️,😕️,🫤️,😟️,🙁️,☹️️,😮️,😯️,😲️,😳️,🥺️,🥹️,😦️,😧️,😨️,😰️,😥️,😢️,😭️,😱️,😖️,😣️,😞️,😓️,😩️,😫️,🥱️,😤️,😡️,😠️,🤬️,😈️,👿️,💀️,☠️️,💩️,🤡️,👹️,👺️,👻️,👽️,👾️,🤖️,😺️,😸️,😹️,😻️,😼️,😽️,🙀️,😿️,😾️,🙈️,🙉️,🙊️,💌️,💘️,💝️,💖️,💗️,💓️,💞️,💕️,💟️,❣️️,💔️,❤️‍🔥️,❤️‍🩹️,❤️️,🧡️,💛️,💚️,💙️,💜️,🤎️,🖤️,🤍️,💋️,💯️,💢️,💥️,💫️,💦️,💨️,🕳️️,💬️,👁️‍🗨️️,🗨️️,🗯️️,💭️,💤️,👋️,🤚️,🖐️️,✋️,🖖️,🫱️,🫲️,🫳️,🫴️,👌️,🤌️,🤏️,✌️️,🤞️,🫰️,🤟️,🤘️,🤙️,👈️,👉️,👆️,🖕️,👇️,☝️️,🫵️,👍️,👎️,✊️,👊️,🤛️,🤜️,👏️,🙌️,🫶️,👐️,🤲️,🤝️,🙏️,✍️️,💅️,🤳️,💪️,🦾️,🦿️,🦵️,🦶️,👂️,🦻️,👃️,🧠️,🫀️,🫁️,🦷️,🦴️,👀️,👁️️,👅️,👄️,🫦️,👶️,🧒️,👦️,👧️,🧑️,👱️,👨️,🧔️,🧔‍♂️️,🧔‍♀️️,👨‍🦰️,👨‍🦰️,👨‍🦱️,👨‍🦱️,👨‍🦳️,👨‍🦳️,👨‍🦲️,👨‍🦲️,👩️,👩‍🦰️,👩‍🦰️,🧑‍🦰️,🧑‍🦰️,👩‍🦱️,👩‍🦱️,🧑‍🦱️,🧑‍🦱️,👩‍🦳️,👩‍🦳️,🧑‍🦳️,🧑‍🦳️,👩‍🦲️,👩‍🦲️,🧑‍🦲️,🧑‍🦲️,👱‍♀️️,👱‍♂️️,🧓️,👴️,👵️,🙍️,🙍‍♂️️,🙍‍♀️️,🙎️,🙎‍♂️️,🙎‍♀️️,🙅️,🙅‍♂️️,🙅‍♀️️,🙆️,🙆‍♂️️,🙆‍♀️️,💁️,💁‍♂️️,💁‍♀️️,🙋️,🙋‍♂️️,🙋‍♀️️,🧏️,🧏‍♂️️,🧏‍♀️️,🙇️,🙇‍♂️️,🙇‍♀️️,🤦️,🤦‍♂️️,🤦‍♀️️,🤷️,🤷‍♂️️,🤷‍♀️️,🧑‍⚕️️,👨‍⚕️️,👩‍⚕️️,🧑‍🎓️,👨‍🎓️,👩‍🎓️,🧑‍🏫️,👨‍🏫️,👩‍🏫️,🧑‍⚖️️,👨‍⚖️️,👩‍⚖️️,🧑‍🌾️,👨‍🌾️,👩‍🌾️,🧑‍🍳️,👨‍🍳️,👩‍🍳️,🧑‍🔧️,👨‍🔧️,👩‍🔧️,🧑‍🏭️,👨‍🏭️,👩‍🏭️,🧑‍💼️,👨‍💼️,👩‍💼️,🧑‍🔬️,👨‍🔬️,👩‍🔬️,🧑‍💻️,👨‍💻️,👩‍💻️,🧑‍🎤️,👨‍🎤️,👩‍🎤️,🧑‍🎨️,👨‍🎨️,👩‍🎨️,🧑‍✈️️,👨‍✈️️,👩‍✈️️,🧑‍🚀️,👨‍🚀️,👩‍🚀️,🧑‍🚒️,👨‍🚒️,👩‍🚒️,👮️,👮‍♂️️,👮‍♀️️,🕵️️,🕵️‍♂️️,🕵️‍♀️️,💂️,💂‍♂️️,💂‍♀️️,🥷️,👷️,👷‍♂️️,👷‍♀️️,🫅️,🤴️,👸️,👳️,👳‍♂️️,👳‍♀️️,👲️,🧕️,🤵️,🤵‍♂️️,🤵‍♀️️,👰️,👰‍♂️️,👰‍♀️️,🤰️,🫃️,🫄️,🤱️,👩‍🍼️,👨‍🍼️,🧑‍🍼️,👼️,🎅️,🤶️,🧑‍🎄️,🦸️,🦸‍♂️️,🦸‍♀️️,🦹️,🦹‍♂️️,🦹‍♀️️,🧙️,🧙‍♂️️,🧙‍♀️️,🧚️,🧚‍♂️️,🧚‍♀️️,🧛️,🧛‍♂️️,🧛‍♀️️,🧜️,🧜‍♂️️,🧜‍♀️️,🧝️,🧝‍♂️️,🧝‍♀️️,🧞️,🧞‍♂️️,🧞‍♀️️,🧟️,🧟‍♂️️,🧟‍♀️️,🧌️,💆️,💆‍♂️️,💆‍♀️️,💇️,💇‍♂️️,💇‍♀️️,🚶️,🚶‍♂️️,🚶‍♀️️,🧍️,🧍‍♂️️,🧍‍♀️️,🧎️,🧎‍♂️️,🧎‍♀️️,🧑‍🦯️,👨‍🦯️,👩‍🦯️,🧑‍🦼️,👨‍🦼️,👩‍🦼️,🧑‍🦽️,👨‍🦽️,👩‍🦽️,🏃️,🏃‍♂️️,🏃‍♀️️,💃️,🕺️,🕴️️,👯️,👯‍♂️️,👯‍♀️️,🧖️,🧖‍♂️️,🧖‍♀️️,🧗️,🧗‍♂️️,🧗‍♀️️,🤺️,🏇️,⛷️️,🏂️,🏌️️,🏌️‍♂️️,🏌️‍♀️️,🏄️,🏄‍♂️️,🏄‍♀️️,🚣️,🚣‍♂️️,🚣‍♀️️,🏊️,🏊‍♂️️,🏊‍♀️️,⛹️️,⛹️‍♂️️,⛹️‍♀️️,🏋️️,🏋️‍♂️️,🏋️‍♀️️,🚴️,🚴‍♂️️,🚴‍♀️️,🚵️,🚵‍♂️️,🚵‍♀️️,🤸️,🤸‍♂️️,🤸‍♀️️,🤼️,🤼‍♂️️,🤼‍♀️️,🤽️,🤽‍♂️️,🤽‍♀️️,🤾️,🤾‍♂️️,🤾‍♀️️,🤹️,🤹‍♂️️,🤹‍♀️️,🧘️,🧘‍♂️️,🧘‍♀️️,🛀️,🛌️,🧑‍🤝‍🧑️,👭️,👫️,👬️,💏️,👩‍❤️‍💋‍👨️,👨‍❤️‍💋‍👨️,👩‍❤️‍💋‍👩️,💑️,👩‍❤️‍👨️,👨‍❤️‍👨️,👩‍❤️‍👩️,👨‍👩‍👦️,👨‍👩‍👧️,👨‍👩‍👧‍👦️,👨‍👩‍👦‍👦️,👨‍👩‍👧‍👧️,👨‍👨‍👦️,👨‍👨‍👧️,👨‍👨‍👧‍👦️,👨‍👨‍👦‍👦️,👨‍👨‍👧‍👧️,👩‍👩‍👦️,👩‍👩‍👧️,👩‍👩‍👧‍👦️,👩‍👩‍👦‍👦️,👩‍👩‍👧‍👧️,👨‍👦️,👨‍👦‍👦️,👨‍👧️,👨‍👧‍👦️,👨‍👧‍👧️,👩‍👦️,👩‍👦‍👦️,👩‍👧️,👩‍👧‍👦️,👩‍👧‍👧️,🗣️️,👤️,👥️,🫂️,👪️,👣️ -Component 🦰️,🦱️,🦳️,🦲️ -Symbols 🏧️,🚮️,🚰️,♿️,🚹️,🚺️,🚻️,🚼️,🚾️,🛂️,🛃️,🛄️,🛅️,⚠️️,🚸️,⛔️,🚫️,🚳️,🚭️,🚯️,🚱️,🚷️,📵️,🔞️,☢️️,☣️️,⬆️️,↗️️,➡️️,↘️️,⬇️️,↙️️,⬅️️,↖️️,↕️️,↔️️,↩️️,↪️️,⤴️️,⤵️️,🔃️,🔄️,🔙️,🔚️,🔛️,🔜️,🔝️,🛐️,⚛️️,🕉️️,✡️️,☸️️,☯️️,✝️️,☦️️,☪️️,☮️️,🕎️,🔯️,♈️,♉️,♊️,♋️,♌️,♍️,♎️,♏️,♐️,♑️,♒️,♓️,⛎️,🔀️,🔁️,🔂️,▶️️,⏩️,⏭️️,⏯️️,◀️️,⏪️,⏮️️,🔼️,⏫️,🔽️,⏬️,⏸️️,⏹️️,⏺️️,⏏️️,🎦️,🔅️,🔆️,📶️,📳️,📴️,♀️️,♂️️,⚧️️,✖️️,➕️,➖️,➗️,🟰️,♾️️,‼️️,⁉️️,❓️,❔️,❕️,❗️,〰️️,💱️,💲️,⚕️️,♻️️,⚜️️,🔱️,📛️,🔰️,⭕️,✅️,☑️️,✔️️,❌️,❎️,➰️,➿️,〽️️,✳️️,✴️️,❇️️,©️️,®️️,™️️,#️⃣️,*️⃣️,0️⃣️,1️⃣️,2️⃣️,3️⃣️,4️⃣️,5️⃣️,6️⃣️,7️⃣️,8️⃣️,9️⃣️,🔟️,🔠️,🔡️,🔢️,🔣️,🔤️,🅰️️,🆎️,🅱️️,🆑️,🆒️,🆓️,ℹ️️,🆔️,Ⓜ️️,🆕️,🆖️,🅾️️,🆗️,🅿️️,🆘️,🆙️,🆚️,🈁️,🈂️️,🈷️️,🈶️,🈯️,🉐️,🈹️,🈚️,🈲️,🉑️,🈸️,🈴️,🈳️,㊗️️,㊙️️,🈺️,🈵️,🔴️,🟠️,🟡️,🟢️,🔵️,🟣️,🟤️,⚫️,⚪️,🟥️,🟧️,🟨️,🟩️,🟦️,🟪️,🟫️,⬛️,⬜️,◼️️,◻️️,◾️,◽️,▪️️,▫️️,🔶️,🔷️,🔸️,🔹️,🔺️,🔻️,💠️,🔘️,🔳️,🔲️ -Objects 👓️,🕶️️,🥽️,🥼️,🦺️,👔️,👕️,👖️,🧣️,🧤️,🧥️,🧦️,👗️,👘️,🥻️,🩱️,🩲️,🩳️,👙️,👚️,👛️,👜️,👝️,🛍️️,🎒️,🩴️,👞️,👟️,🥾️,🥿️,👠️,👡️,🩰️,👢️,👑️,👒️,🎩️,🎓️,🧢️,🪖️,⛑️️,📿️,💄️,💍️,💎️,🔇️,🔈️,🔉️,🔊️,📢️,📣️,📯️,🔔️,🔕️,🎼️,🎵️,🎶️,🎙️️,🎚️️,🎛️️,🎤️,🎧️,📻️,🎷️,🪗️,🎸️,🎹️,🎺️,🎻️,🪕️,🥁️,🪘️,📱️,📲️,☎️️,📞️,📟️,📠️,🔋️,🪫️,🔌️,💻️,🖥️️,🖨️️,⌨️️,🖱️️,🖲️️,💽️,💾️,💿️,📀️,🧮️,🎥️,🎞️️,📽️️,🎬️,📺️,📷️,📸️,📹️,📼️,🔍️,🔎️,🕯️️,💡️,🔦️,🏮️,🪔️,📔️,📕️,📖️,📗️,📘️,📙️,📚️,📓️,📒️,📃️,📜️,📄️,📰️,🗞️️,📑️,🔖️,🏷️️,💰️,🪙️,💴️,💵️,💶️,💷️,💸️,💳️,🧾️,💹️,✉️️,📧️,📨️,📩️,📤️,📥️,📦️,📫️,📪️,📬️,📭️,📮️,🗳️️,✏️️,✒️️,🖋️️,🖊️️,🖌️️,🖍️️,📝️,💼️,📁️,📂️,🗂️️,📅️,📆️,🗒️️,🗓️️,📇️,📈️,📉️,📊️,📋️,📌️,📍️,📎️,🖇️️,📏️,📐️,✂️️,🗃️️,🗄️️,🗑️️,🔒️,🔓️,🔏️,🔐️,🔑️,🗝️️,🔨️,🪓️,⛏️️,⚒️️,🛠️️,🗡️️,⚔️️,💣️,🪃️,🏹️,🛡️️,🪚️,🔧️,🪛️,🔩️,⚙️️,🗜️️,⚖️️,🦯️,🔗️,⛓️️,🪝️,🧰️,🧲️,🪜️,⚗️️,🧪️,🧫️,🧬️,🔬️,🔭️,📡️,💉️,🩸️,💊️,🩹️,🩼️,🩺️,🩻️,🚪️,🛗️,🪞️,🪟️,🛏️️,🛋️️,🪑️,🚽️,🪠️,🚿️,🛁️,🪤️,🪒️,🧴️,🧷️,🧹️,🧺️,🧻️,🪣️,🧼️,🫧️,🪥️,🧽️,🧯️,🛒️,🚬️,⚰️️,🪦️,⚱️️,🧿️,🪬️,🗿️,🪧️,🪪️ -Travel & Places 🌍️,🌎️,🌏️,🌐️,🗺️️,🗾️,🧭️,🏔️️,⛰️️,🌋️,🗻️,🏕️️,🏖️️,🏜️️,🏝️️,🏞️️,🏟️️,🏛️️,🏗️️,🧱️,🪨️,🪵️,🛖️,🏘️️,🏚️️,🏠️,🏡️,🏢️,🏣️,🏤️,🏥️,🏦️,🏨️,🏩️,🏪️,🏫️,🏬️,🏭️,🏯️,🏰️,💒️,🗼️,🗽️,⛪️,🕌️,🛕️,🕍️,⛩️️,🕋️,⛲️,⛺️,🌁️,🌃️,🏙️️,🌄️,🌅️,🌆️,🌇️,🌉️,♨️️,🎠️,🛝️,🎡️,🎢️,💈️,🎪️,🚂️,🚃️,🚄️,🚅️,🚆️,🚇️,🚈️,🚉️,🚊️,🚝️,🚞️,🚋️,🚌️,🚍️,🚎️,🚐️,🚑️,🚒️,🚓️,🚔️,🚕️,🚖️,🚗️,🚘️,🚙️,🛻️,🚚️,🚛️,🚜️,🏎️️,🏍️️,🛵️,🦽️,🦼️,🛺️,🚲️,🛴️,🛹️,🛼️,🚏️,🛣️️,🛤️️,🛢️️,⛽️,🛞️,🚨️,🚥️,🚦️,🛑️,🚧️,⚓️,🛟️,⛵️,🛶️,🚤️,🛳️️,⛴️️,🛥️️,🚢️,✈️️,🛩️️,🛫️,🛬️,🪂️,💺️,🚁️,🚟️,🚠️,🚡️,🛰️️,🚀️,🛸️,🛎️️,🧳️,⌛️,⏳️,⌚️,⏰️,⏱️️,⏲️️,🕰️️,🕛️,🕧️,🕐️,🕜️,🕑️,🕝️,🕒️,🕞️,🕓️,🕟️,🕔️,🕠️,🕕️,🕡️,🕖️,🕢️,🕗️,🕣️,🕘️,🕤️,🕙️,🕥️,🕚️,🕦️,🌑️,🌒️,🌓️,🌔️,🌕️,🌖️,🌗️,🌘️,🌙️,🌚️,🌛️,🌜️,🌡️️,☀️️,🌝️,🌞️,🪐️,⭐️,🌟️,🌠️,🌌️,☁️️,⛅️,⛈️️,🌤️️,🌥️️,🌦️️,🌧️️,🌨️️,🌩️️,🌪️️,🌫️️,🌬️️,🌀️,🌈️,🌂️,☂️️,☔️,⛱️️,⚡️,❄️️,☃️️,⛄️,☄️️,🔥️,💧️,🌊️ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E15.0.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E15.0.txt deleted file mode 100644 index 7aa5332..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E15.0.txt +++ /dev/null @@ -1,9 +0,0 @@ -Animals & Nature 🐵️,🐒️,🦍️,🦧️,🐶️,🐕️,🦮️,🐕‍🦺️,🐩️,🐺️,🦊️,🦝️,🐱️,🐈️,🐈‍⬛️,🦁️,🐯️,🐅️,🐆️,🐴️,🫎️,🫏️,🐎️,🦄️,🦓️,🦌️,🦬️,🐮️,🐂️,🐃️,🐄️,🐷️,🐖️,🐗️,🐽️,🐏️,🐑️,🐐️,🐪️,🐫️,🦙️,🦒️,🐘️,🦣️,🦏️,🦛️,🐭️,🐁️,🐀️,🐹️,🐰️,🐇️,🐿️️,🦫️,🦔️,🦇️,🐻️,🐻‍❄️️,🐨️,🐼️,🦥️,🦦️,🦨️,🦘️,🦡️,🐾️,🦃️,🐔️,🐓️,🐣️,🐤️,🐥️,🐦️,🐧️,🕊️️,🦅️,🦆️,🦢️,🦉️,🦤️,🪶️,🦩️,🦚️,🦜️,🪽️,🐦‍⬛️,🪿️,🐸️,🐊️,🐢️,🦎️,🐍️,🐲️,🐉️,🦕️,🦖️,🐳️,🐋️,🐬️,🦭️,🐟️,🐠️,🐡️,🦈️,🐙️,🐚️,🪸️,🪼️,🐌️,🦋️,🐛️,🐜️,🐝️,🪲️,🐞️,🦗️,🪳️,🕷️️,🕸️️,🦂️,🦟️,🪰️,🪱️,🦠️,💐️,🌸️,💮️,🪷️,🏵️️,🌹️,🥀️,🌺️,🌻️,🌼️,🌷️,🪻️,🌱️,🪴️,🌲️,🌳️,🌴️,🌵️,🌾️,🌿️,☘️️,🍀️,🍁️,🍂️,🍃️,🪹️,🪺️,🍄️ -Activities 🎃️,🎄️,🎆️,🎇️,🧨️,✨️,🎈️,🎉️,🎊️,🎋️,🎍️,🎎️,🎏️,🎐️,🎑️,🧧️,🎀️,🎁️,🎗️️,🎟️️,🎫️,🎖️️,🏆️,🏅️,🥇️,🥈️,🥉️,⚽️,⚾️,🥎️,🏀️,🏐️,🏈️,🏉️,🎾️,🥏️,🎳️,🏏️,🏑️,🏒️,🥍️,🏓️,🏸️,🥊️,🥋️,🥅️,⛳️,⛸️️,🎣️,🤿️,🎽️,🎿️,🛷️,🥌️,🎯️,🪀️,🪁️,🔫️,🎱️,🔮️,🪄️,🎮️,🕹️️,🎰️,🎲️,🧩️,🧸️,🪅️,🪩️,🪆️,♠️️,♥️️,♦️️,♣️️,♟️️,🃏️,🀄️,🎴️,🎭️,🖼️️,🎨️,🧵️,🪡️,🧶️,🪢️ -Food & Drink 🍇️,🍈️,🍉️,🍊️,🍋️,🍌️,🍍️,🥭️,🍎️,🍏️,🍐️,🍑️,🍒️,🍓️,🫐️,🥝️,🍅️,🫒️,🥥️,🥑️,🍆️,🥔️,🥕️,🌽️,🌶️️,🫑️,🥒️,🥬️,🥦️,🧄️,🧅️,🥜️,🫘️,🌰️,🫚️,🫛️,🍞️,🥐️,🥖️,🫓️,🥨️,🥯️,🥞️,🧇️,🧀️,🍖️,🍗️,🥩️,🥓️,🍔️,🍟️,🍕️,🌭️,🥪️,🌮️,🌯️,🫔️,🥙️,🧆️,🥚️,🍳️,🥘️,🍲️,🫕️,🥣️,🥗️,🍿️,🧈️,🧂️,🥫️,🍱️,🍘️,🍙️,🍚️,🍛️,🍜️,🍝️,🍠️,🍢️,🍣️,🍤️,🍥️,🥮️,🍡️,🥟️,🥠️,🥡️,🦀️,🦞️,🦐️,🦑️,🦪️,🍦️,🍧️,🍨️,🍩️,🍪️,🎂️,🍰️,🧁️,🥧️,🍫️,🍬️,🍭️,🍮️,🍯️,🍼️,🥛️,☕️,🫖️,🍵️,🍶️,🍾️,🍷️,🍸️,🍹️,🍺️,🍻️,🥂️,🥃️,🫗️,🥤️,🧋️,🧃️,🧉️,🧊️,🥢️,🍽️️,🍴️,🥄️,🔪️,🫙️,🏺️ -Flags 🏁️,🚩️,🎌️,🏴️,🏳️️,🏳️‍🌈️,🏳️‍⚧️️,🏴‍☠️️,🇦🇨️,🇦🇩️,🇦🇪️,🇦🇫️,🇦🇬️,🇦🇮️,🇦🇱️,🇦🇲️,🇦🇴️,🇦🇶️,🇦🇷️,🇦🇸️,🇦🇹️,🇦🇺️,🇦🇼️,🇦🇽️,🇦🇿️,🇧🇦️,🇧🇧️,🇧🇩️,🇧🇪️,🇧🇫️,🇧🇬️,🇧🇭️,🇧🇮️,🇧🇯️,🇧🇱️,🇧🇲️,🇧🇳️,🇧🇴️,🇧🇶️,🇧🇷️,🇧🇸️,🇧🇹️,🇧🇻️,🇧🇼️,🇧🇾️,🇧🇿️,🇨🇦️,🇨🇨️,🇨🇩️,🇨🇫️,🇨🇬️,🇨🇭️,🇨🇮️,🇨🇰️,🇨🇱️,🇨🇲️,🇨🇳️,🇨🇴️,🇨🇵️,🇨🇷️,🇨🇺️,🇨🇻️,🇨🇼️,🇨🇽️,🇨🇾️,🇨🇿️,🇩🇪️,🇩🇬️,🇩🇯️,🇩🇰️,🇩🇲️,🇩🇴️,🇩🇿️,🇪🇦️,🇪🇨️,🇪🇪️,🇪🇬️,🇪🇭️,🇪🇷️,🇪🇸️,🇪🇹️,🇪🇺️,🇫🇮️,🇫🇯️,🇫🇰️,🇫🇲️,🇫🇴️,🇫🇷️,🇬🇦️,🇬🇧️,🇬🇩️,🇬🇪️,🇬🇫️,🇬🇬️,🇬🇭️,🇬🇮️,🇬🇱️,🇬🇲️,🇬🇳️,🇬🇵️,🇬🇶️,🇬🇷️,🇬🇸️,🇬🇹️,🇬🇺️,🇬🇼️,🇬🇾️,🇭🇰️,🇭🇲️,🇭🇳️,🇭🇷️,🇭🇹️,🇭🇺️,🇮🇨️,🇮🇩️,🇮🇪️,🇮🇱️,🇮🇲️,🇮🇳️,🇮🇴️,🇮🇶️,🇮🇷️,🇮🇸️,🇮🇹️,🇯🇪️,🇯🇲️,🇯🇴️,🇯🇵️,🇰🇪️,🇰🇬️,🇰🇭️,🇰🇮️,🇰🇲️,🇰🇳️,🇰🇵️,🇰🇷️,🇰🇼️,🇰🇾️,🇰🇿️,🇱🇦️,🇱🇧️,🇱🇨️,🇱🇮️,🇱🇰️,🇱🇷️,🇱🇸️,🇱🇹️,🇱🇺️,🇱🇻️,🇱🇾️,🇲🇦️,🇲🇨️,🇲🇩️,🇲🇪️,🇲🇫️,🇲🇬️,🇲🇭️,🇲🇰️,🇲🇱️,🇲🇲️,🇲🇳️,🇲🇴️,🇲🇵️,🇲🇶️,🇲🇷️,🇲🇸️,🇲🇹️,🇲🇺️,🇲🇻️,🇲🇼️,🇲🇽️,🇲🇾️,🇲🇿️,🇳🇦️,🇳🇨️,🇳🇪️,🇳🇫️,🇳🇬️,🇳🇮️,🇳🇱️,🇳🇴️,🇳🇵️,🇳🇷️,🇳🇺️,🇳🇿️,🇴🇲️,🇵🇦️,🇵🇪️,🇵🇫️,🇵🇬️,🇵🇭️,🇵🇰️,🇵🇱️,🇵🇲️,🇵🇳️,🇵🇷️,🇵🇸️,🇵🇹️,🇵🇼️,🇵🇾️,🇶🇦️,🇷🇪️,🇷🇴️,🇷🇸️,🇷🇺️,🇷🇼️,🇸🇦️,🇸🇧️,🇸🇨️,🇸🇩️,🇸🇪️,🇸🇬️,🇸🇭️,🇸🇮️,🇸🇯️,🇸🇰️,🇸🇱️,🇸🇲️,🇸🇳️,🇸🇴️,🇸🇷️,🇸🇸️,🇸🇹️,🇸🇻️,🇸🇽️,🇸🇾️,🇸🇿️,🇹🇦️,🇹🇨️,🇹🇩️,🇹🇫️,🇹🇬️,🇹🇭️,🇹🇯️,🇹🇰️,🇹🇱️,🇹🇲️,🇹🇳️,🇹🇴️,🇹🇷️,🇹🇹️,🇹🇻️,🇹🇼️,🇹🇿️,🇺🇦️,🇺🇬️,🇺🇲️,🇺🇳️,🇺🇸️,🇺🇾️,🇺🇿️,🇻🇦️,🇻🇨️,🇻🇪️,🇻🇬️,🇻🇮️,🇻🇳️,🇻🇺️,🇼🇫️,🇼🇸️,🇽🇰️,🇾🇪️,🇾🇹️,🇿🇦️,🇿🇲️,🇿🇼️,🏴󠁧󠁢󠁥󠁮󠁧󠁿️,🏴󠁧󠁢󠁳󠁣󠁴󠁿️,🏴󠁧󠁢󠁷󠁬󠁳󠁿️ -Smileys & People 😀️,😃️,😄️,😁️,😆️,😅️,🤣️,😂️,🙂️,🙃️,🫠️,😉️,😊️,😇️,🥰️,😍️,🤩️,😘️,😗️,☺️️,😚️,😙️,🥲️,😋️,😛️,😜️,🤪️,😝️,🤑️,🤗️,🤭️,🫢️,🫣️,🤫️,🤔️,🫡️,🤐️,🤨️,😐️,😑️,😶️,🫥️,😶‍🌫️️,😏️,😒️,🙄️,😬️,😮‍💨️,🤥️,🫨️,😌️,😔️,😪️,🤤️,😴️,😷️,🤒️,🤕️,🤢️,🤮️,🤧️,🥵️,🥶️,🥴️,😵️,😵‍💫️,🤯️,🤠️,🥳️,🥸️,😎️,🤓️,🧐️,😕️,🫤️,😟️,🙁️,☹️️,😮️,😯️,😲️,😳️,🥺️,🥹️,😦️,😧️,😨️,😰️,😥️,😢️,😭️,😱️,😖️,😣️,😞️,😓️,😩️,😫️,🥱️,😤️,😡️,😠️,🤬️,😈️,👿️,💀️,☠️️,💩️,🤡️,👹️,👺️,👻️,👽️,👾️,🤖️,😺️,😸️,😹️,😻️,😼️,😽️,🙀️,😿️,😾️,🙈️,🙉️,🙊️,💌️,💘️,💝️,💖️,💗️,💓️,💞️,💕️,💟️,❣️️,💔️,❤️‍🔥️,❤️‍🩹️,❤️️,🩷️,🧡️,💛️,💚️,💙️,🩵️,💜️,🤎️,🖤️,🩶️,🤍️,💋️,💯️,💢️,💥️,💫️,💦️,💨️,🕳️️,💬️,👁️‍🗨️️,🗨️️,🗯️️,💭️,💤️,👋️,🤚️,🖐️️,✋️,🖖️,🫱️,🫲️,🫳️,🫴️,🫷️,🫸️,👌️,🤌️,🤏️,✌️️,🤞️,🫰️,🤟️,🤘️,🤙️,👈️,👉️,👆️,🖕️,👇️,☝️️,🫵️,👍️,👎️,✊️,👊️,🤛️,🤜️,👏️,🙌️,🫶️,👐️,🤲️,🤝️,🙏️,✍️️,💅️,🤳️,💪️,🦾️,🦿️,🦵️,🦶️,👂️,🦻️,👃️,🧠️,🫀️,🫁️,🦷️,🦴️,👀️,👁️️,👅️,👄️,🫦️,👶️,🧒️,👦️,👧️,🧑️,👱️,👨️,🧔️,🧔‍♂️️,🧔‍♀️️,👨‍🦰️,👨‍🦰️,👨‍🦱️,👨‍🦱️,👨‍🦳️,👨‍🦳️,👨‍🦲️,👨‍🦲️,👩️,👩‍🦰️,👩‍🦰️,🧑‍🦰️,🧑‍🦰️,👩‍🦱️,👩‍🦱️,🧑‍🦱️,🧑‍🦱️,👩‍🦳️,👩‍🦳️,🧑‍🦳️,🧑‍🦳️,👩‍🦲️,👩‍🦲️,🧑‍🦲️,🧑‍🦲️,👱‍♀️️,👱‍♂️️,🧓️,👴️,👵️,🙍️,🙍‍♂️️,🙍‍♀️️,🙎️,🙎‍♂️️,🙎‍♀️️,🙅️,🙅‍♂️️,🙅‍♀️️,🙆️,🙆‍♂️️,🙆‍♀️️,💁️,💁‍♂️️,💁‍♀️️,🙋️,🙋‍♂️️,🙋‍♀️️,🧏️,🧏‍♂️️,🧏‍♀️️,🙇️,🙇‍♂️️,🙇‍♀️️,🤦️,🤦‍♂️️,🤦‍♀️️,🤷️,🤷‍♂️️,🤷‍♀️️,🧑‍⚕️️,👨‍⚕️️,👩‍⚕️️,🧑‍🎓️,👨‍🎓️,👩‍🎓️,🧑‍🏫️,👨‍🏫️,👩‍🏫️,🧑‍⚖️️,👨‍⚖️️,👩‍⚖️️,🧑‍🌾️,👨‍🌾️,👩‍🌾️,🧑‍🍳️,👨‍🍳️,👩‍🍳️,🧑‍🔧️,👨‍🔧️,👩‍🔧️,🧑‍🏭️,👨‍🏭️,👩‍🏭️,🧑‍💼️,👨‍💼️,👩‍💼️,🧑‍🔬️,👨‍🔬️,👩‍🔬️,🧑‍💻️,👨‍💻️,👩‍💻️,🧑‍🎤️,👨‍🎤️,👩‍🎤️,🧑‍🎨️,👨‍🎨️,👩‍🎨️,🧑‍✈️️,👨‍✈️️,👩‍✈️️,🧑‍🚀️,👨‍🚀️,👩‍🚀️,🧑‍🚒️,👨‍🚒️,👩‍🚒️,👮️,👮‍♂️️,👮‍♀️️,🕵️️,🕵️‍♂️️,🕵️‍♀️️,💂️,💂‍♂️️,💂‍♀️️,🥷️,👷️,👷‍♂️️,👷‍♀️️,🫅️,🤴️,👸️,👳️,👳‍♂️️,👳‍♀️️,👲️,🧕️,🤵️,🤵‍♂️️,🤵‍♀️️,👰️,👰‍♂️️,👰‍♀️️,🤰️,🫃️,🫄️,🤱️,👩‍🍼️,👨‍🍼️,🧑‍🍼️,👼️,🎅️,🤶️,🧑‍🎄️,🦸️,🦸‍♂️️,🦸‍♀️️,🦹️,🦹‍♂️️,🦹‍♀️️,🧙️,🧙‍♂️️,🧙‍♀️️,🧚️,🧚‍♂️️,🧚‍♀️️,🧛️,🧛‍♂️️,🧛‍♀️️,🧜️,🧜‍♂️️,🧜‍♀️️,🧝️,🧝‍♂️️,🧝‍♀️️,🧞️,🧞‍♂️️,🧞‍♀️️,🧟️,🧟‍♂️️,🧟‍♀️️,🧌️,💆️,💆‍♂️️,💆‍♀️️,💇️,💇‍♂️️,💇‍♀️️,🚶️,🚶‍♂️️,🚶‍♀️️,🧍️,🧍‍♂️️,🧍‍♀️️,🧎️,🧎‍♂️️,🧎‍♀️️,🧑‍🦯️,👨‍🦯️,👩‍🦯️,🧑‍🦼️,👨‍🦼️,👩‍🦼️,🧑‍🦽️,👨‍🦽️,👩‍🦽️,🏃️,🏃‍♂️️,🏃‍♀️️,💃️,🕺️,🕴️️,👯️,👯‍♂️️,👯‍♀️️,🧖️,🧖‍♂️️,🧖‍♀️️,🧗️,🧗‍♂️️,🧗‍♀️️,🤺️,🏇️,⛷️️,🏂️,🏌️️,🏌️‍♂️️,🏌️‍♀️️,🏄️,🏄‍♂️️,🏄‍♀️️,🚣️,🚣‍♂️️,🚣‍♀️️,🏊️,🏊‍♂️️,🏊‍♀️️,⛹️️,⛹️‍♂️️,⛹️‍♀️️,🏋️️,🏋️‍♂️️,🏋️‍♀️️,🚴️,🚴‍♂️️,🚴‍♀️️,🚵️,🚵‍♂️️,🚵‍♀️️,🤸️,🤸‍♂️️,🤸‍♀️️,🤼️,🤼‍♂️️,🤼‍♀️️,🤽️,🤽‍♂️️,🤽‍♀️️,🤾️,🤾‍♂️️,🤾‍♀️️,🤹️,🤹‍♂️️,🤹‍♀️️,🧘️,🧘‍♂️️,🧘‍♀️️,🛀️,🛌️,🧑‍🤝‍🧑️,👭️,👫️,👬️,💏️,👩‍❤️‍💋‍👨️,👨‍❤️‍💋‍👨️,👩‍❤️‍💋‍👩️,💑️,👩‍❤️‍👨️,👨‍❤️‍👨️,👩‍❤️‍👩️,👨‍👩‍👦️,👨‍👩‍👧️,👨‍👩‍👧‍👦️,👨‍👩‍👦‍👦️,👨‍👩‍👧‍👧️,👨‍👨‍👦️,👨‍👨‍👧️,👨‍👨‍👧‍👦️,👨‍👨‍👦‍👦️,👨‍👨‍👧‍👧️,👩‍👩‍👦️,👩‍👩‍👧️,👩‍👩‍👧‍👦️,👩‍👩‍👦‍👦️,👩‍👩‍👧‍👧️,👨‍👦️,👨‍👦‍👦️,👨‍👧️,👨‍👧‍👦️,👨‍👧‍👧️,👩‍👦️,👩‍👦‍👦️,👩‍👧️,👩‍👧‍👦️,👩‍👧‍👧️,🗣️️,👤️,👥️,🫂️,👪️,👣️ -Component 🦰️,🦱️,🦳️,🦲️ -Symbols 🏧️,🚮️,🚰️,♿️,🚹️,🚺️,🚻️,🚼️,🚾️,🛂️,🛃️,🛄️,🛅️,⚠️️,🚸️,⛔️,🚫️,🚳️,🚭️,🚯️,🚱️,🚷️,📵️,🔞️,☢️️,☣️️,⬆️️,↗️️,➡️️,↘️️,⬇️️,↙️️,⬅️️,↖️️,↕️️,↔️️,↩️️,↪️️,⤴️️,⤵️️,🔃️,🔄️,🔙️,🔚️,🔛️,🔜️,🔝️,🛐️,⚛️️,🕉️️,✡️️,☸️️,☯️️,✝️️,☦️️,☪️️,☮️️,🕎️,🔯️,🪯️,♈️,♉️,♊️,♋️,♌️,♍️,♎️,♏️,♐️,♑️,♒️,♓️,⛎️,🔀️,🔁️,🔂️,▶️️,⏩️,⏭️️,⏯️️,◀️️,⏪️,⏮️️,🔼️,⏫️,🔽️,⏬️,⏸️️,⏹️️,⏺️️,⏏️️,🎦️,🔅️,🔆️,📶️,🛜️,📳️,📴️,♀️️,♂️️,⚧️️,✖️️,➕️,➖️,➗️,🟰️,♾️️,‼️️,⁉️️,❓️,❔️,❕️,❗️,〰️️,💱️,💲️,⚕️️,♻️️,⚜️️,🔱️,📛️,🔰️,⭕️,✅️,☑️️,✔️️,❌️,❎️,➰️,➿️,〽️️,✳️️,✴️️,❇️️,©️️,®️️,™️️,#️⃣️,*️⃣️,0️⃣️,1️⃣️,2️⃣️,3️⃣️,4️⃣️,5️⃣️,6️⃣️,7️⃣️,8️⃣️,9️⃣️,🔟️,🔠️,🔡️,🔢️,🔣️,🔤️,🅰️️,🆎️,🅱️️,🆑️,🆒️,🆓️,ℹ️️,🆔️,Ⓜ️️,🆕️,🆖️,🅾️️,🆗️,🅿️️,🆘️,🆙️,🆚️,🈁️,🈂️️,🈷️️,🈶️,🈯️,🉐️,🈹️,🈚️,🈲️,🉑️,🈸️,🈴️,🈳️,㊗️️,㊙️️,🈺️,🈵️,🔴️,🟠️,🟡️,🟢️,🔵️,🟣️,🟤️,⚫️,⚪️,🟥️,🟧️,🟨️,🟩️,🟦️,🟪️,🟫️,⬛️,⬜️,◼️️,◻️️,◾️,◽️,▪️️,▫️️,🔶️,🔷️,🔸️,🔹️,🔺️,🔻️,💠️,🔘️,🔳️,🔲️ -Objects 👓️,🕶️️,🥽️,🥼️,🦺️,👔️,👕️,👖️,🧣️,🧤️,🧥️,🧦️,👗️,👘️,🥻️,🩱️,🩲️,🩳️,👙️,👚️,🪭️,👛️,👜️,👝️,🛍️️,🎒️,🩴️,👞️,👟️,🥾️,🥿️,👠️,👡️,🩰️,👢️,🪮️,👑️,👒️,🎩️,🎓️,🧢️,🪖️,⛑️️,📿️,💄️,💍️,💎️,🔇️,🔈️,🔉️,🔊️,📢️,📣️,📯️,🔔️,🔕️,🎼️,🎵️,🎶️,🎙️️,🎚️️,🎛️️,🎤️,🎧️,📻️,🎷️,🪗️,🎸️,🎹️,🎺️,🎻️,🪕️,🥁️,🪘️,🪇️,🪈️,📱️,📲️,☎️️,📞️,📟️,📠️,🔋️,🪫️,🔌️,💻️,🖥️️,🖨️️,⌨️️,🖱️️,🖲️️,💽️,💾️,💿️,📀️,🧮️,🎥️,🎞️️,📽️️,🎬️,📺️,📷️,📸️,📹️,📼️,🔍️,🔎️,🕯️️,💡️,🔦️,🏮️,🪔️,📔️,📕️,📖️,📗️,📘️,📙️,📚️,📓️,📒️,📃️,📜️,📄️,📰️,🗞️️,📑️,🔖️,🏷️️,💰️,🪙️,💴️,💵️,💶️,💷️,💸️,💳️,🧾️,💹️,✉️️,📧️,📨️,📩️,📤️,📥️,📦️,📫️,📪️,📬️,📭️,📮️,🗳️️,✏️️,✒️️,🖋️️,🖊️️,🖌️️,🖍️️,📝️,💼️,📁️,📂️,🗂️️,📅️,📆️,🗒️️,🗓️️,📇️,📈️,📉️,📊️,📋️,📌️,📍️,📎️,🖇️️,📏️,📐️,✂️️,🗃️️,🗄️️,🗑️️,🔒️,🔓️,🔏️,🔐️,🔑️,🗝️️,🔨️,🪓️,⛏️️,⚒️️,🛠️️,🗡️️,⚔️️,💣️,🪃️,🏹️,🛡️️,🪚️,🔧️,🪛️,🔩️,⚙️️,🗜️️,⚖️️,🦯️,🔗️,⛓️️,🪝️,🧰️,🧲️,🪜️,⚗️️,🧪️,🧫️,🧬️,🔬️,🔭️,📡️,💉️,🩸️,💊️,🩹️,🩼️,🩺️,🩻️,🚪️,🛗️,🪞️,🪟️,🛏️️,🛋️️,🪑️,🚽️,🪠️,🚿️,🛁️,🪤️,🪒️,🧴️,🧷️,🧹️,🧺️,🧻️,🪣️,🧼️,🫧️,🪥️,🧽️,🧯️,🛒️,🚬️,⚰️️,🪦️,⚱️️,🧿️,🪬️,🗿️,🪧️,🪪️ -Travel & Places 🌍️,🌎️,🌏️,🌐️,🗺️️,🗾️,🧭️,🏔️️,⛰️️,🌋️,🗻️,🏕️️,🏖️️,🏜️️,🏝️️,🏞️️,🏟️️,🏛️️,🏗️️,🧱️,🪨️,🪵️,🛖️,🏘️️,🏚️️,🏠️,🏡️,🏢️,🏣️,🏤️,🏥️,🏦️,🏨️,🏩️,🏪️,🏫️,🏬️,🏭️,🏯️,🏰️,💒️,🗼️,🗽️,⛪️,🕌️,🛕️,🕍️,⛩️️,🕋️,⛲️,⛺️,🌁️,🌃️,🏙️️,🌄️,🌅️,🌆️,🌇️,🌉️,♨️️,🎠️,🛝️,🎡️,🎢️,💈️,🎪️,🚂️,🚃️,🚄️,🚅️,🚆️,🚇️,🚈️,🚉️,🚊️,🚝️,🚞️,🚋️,🚌️,🚍️,🚎️,🚐️,🚑️,🚒️,🚓️,🚔️,🚕️,🚖️,🚗️,🚘️,🚙️,🛻️,🚚️,🚛️,🚜️,🏎️️,🏍️️,🛵️,🦽️,🦼️,🛺️,🚲️,🛴️,🛹️,🛼️,🚏️,🛣️️,🛤️️,🛢️️,⛽️,🛞️,🚨️,🚥️,🚦️,🛑️,🚧️,⚓️,🛟️,⛵️,🛶️,🚤️,🛳️️,⛴️️,🛥️️,🚢️,✈️️,🛩️️,🛫️,🛬️,🪂️,💺️,🚁️,🚟️,🚠️,🚡️,🛰️️,🚀️,🛸️,🛎️️,🧳️,⌛️,⏳️,⌚️,⏰️,⏱️️,⏲️️,🕰️️,🕛️,🕧️,🕐️,🕜️,🕑️,🕝️,🕒️,🕞️,🕓️,🕟️,🕔️,🕠️,🕕️,🕡️,🕖️,🕢️,🕗️,🕣️,🕘️,🕤️,🕙️,🕥️,🕚️,🕦️,🌑️,🌒️,🌓️,🌔️,🌕️,🌖️,🌗️,🌘️,🌙️,🌚️,🌛️,🌜️,🌡️️,☀️️,🌝️,🌞️,🪐️,⭐️,🌟️,🌠️,🌌️,☁️️,⛅️,⛈️️,🌤️️,🌥️️,🌦️️,🌧️️,🌨️️,🌩️️,🌪️️,🌫️️,🌬️️,🌀️,🌈️,🌂️,☂️️,☔️,⛱️️,⚡️,❄️️,☃️️,⛄️,☄️️,🔥️,💧️,🌊️ \ No newline at end of file diff --git a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E15.1.txt b/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E15.1.txt deleted file mode 100644 index aa4401d..0000000 --- a/src-tauri/resources/AzooKeyDictionary/AzooKeyDictionary/EmojiDictionary/emoji_genre_E15.1.txt +++ /dev/null @@ -1,9 +0,0 @@ -Animals & Nature 🐵️,🐒️,🦍️,🦧️,🐶️,🐕️,🦮️,🐕‍🦺️,🐩️,🐺️,🦊️,🦝️,🐱️,🐈️,🐈‍⬛️,🦁️,🐯️,🐅️,🐆️,🐴️,🫎️,🫏️,🐎️,🦄️,🦓️,🦌️,🦬️,🐮️,🐂️,🐃️,🐄️,🐷️,🐖️,🐗️,🐽️,🐏️,🐑️,🐐️,🐪️,🐫️,🦙️,🦒️,🐘️,🦣️,🦏️,🦛️,🐭️,🐁️,🐀️,🐹️,🐰️,🐇️,🐿️️,🦫️,🦔️,🦇️,🐻️,🐻‍❄️️,🐨️,🐼️,🦥️,🦦️,🦨️,🦘️,🦡️,🐾️,🦃️,🐔️,🐓️,🐣️,🐤️,🐥️,🐦️,🐧️,🕊️️,🦅️,🦆️,🦢️,🦉️,🦤️,🪶️,🦩️,🦚️,🦜️,🪽️,🐦‍⬛️,🪿️,🐦‍🔥️,🐸️,🐊️,🐢️,🦎️,🐍️,🐲️,🐉️,🦕️,🦖️,🐳️,🐋️,🐬️,🦭️,🐟️,🐠️,🐡️,🦈️,🐙️,🐚️,🪸️,🪼️,🐌️,🦋️,🐛️,🐜️,🐝️,🪲️,🐞️,🦗️,🪳️,🕷️️,🕸️️,🦂️,🦟️,🪰️,🪱️,🦠️,💐️,🌸️,💮️,🪷️,🏵️️,🌹️,🥀️,🌺️,🌻️,🌼️,🌷️,🪻️,🌱️,🪴️,🌲️,🌳️,🌴️,🌵️,🌾️,🌿️,☘️️,🍀️,🍁️,🍂️,🍃️,🪹️,🪺️,🍄️ -Activities 🎃️,🎄️,🎆️,🎇️,🧨️,✨️,🎈️,🎉️,🎊️,🎋️,🎍️,🎎️,🎏️,🎐️,🎑️,🧧️,🎀️,🎁️,🎗️️,🎟️️,🎫️,🎖️️,🏆️,🏅️,🥇️,🥈️,🥉️,⚽️,⚾️,🥎️,🏀️,🏐️,🏈️,🏉️,🎾️,🥏️,🎳️,🏏️,🏑️,🏒️,🥍️,🏓️,🏸️,🥊️,🥋️,🥅️,⛳️,⛸️️,🎣️,🤿️,🎽️,🎿️,🛷️,🥌️,🎯️,🪀️,🪁️,🔫️,🎱️,🔮️,🪄️,🎮️,🕹️️,🎰️,🎲️,🧩️,🧸️,🪅️,🪩️,🪆️,♠️️,♥️️,♦️️,♣️️,♟️️,🃏️,🀄️,🎴️,🎭️,🖼️️,🎨️,🧵️,🪡️,🧶️,🪢️ -Food & Drink 🍇️,🍈️,🍉️,🍊️,🍋️,🍋‍🟩️,🍌️,🍍️,🥭️,🍎️,🍏️,🍐️,🍑️,🍒️,🍓️,🫐️,🥝️,🍅️,🫒️,🥥️,🥑️,🍆️,🥔️,🥕️,🌽️,🌶️️,🫑️,🥒️,🥬️,🥦️,🧄️,🧅️,🥜️,🫘️,🌰️,🫚️,🫛️,🍄‍🟫️,🍞️,🥐️,🥖️,🫓️,🥨️,🥯️,🥞️,🧇️,🧀️,🍖️,🍗️,🥩️,🥓️,🍔️,🍟️,🍕️,🌭️,🥪️,🌮️,🌯️,🫔️,🥙️,🧆️,🥚️,🍳️,🥘️,🍲️,🫕️,🥣️,🥗️,🍿️,🧈️,🧂️,🥫️,🍱️,🍘️,🍙️,🍚️,🍛️,🍜️,🍝️,🍠️,🍢️,🍣️,🍤️,🍥️,🥮️,🍡️,🥟️,🥠️,🥡️,🦀️,🦞️,🦐️,🦑️,🦪️,🍦️,🍧️,🍨️,🍩️,🍪️,🎂️,🍰️,🧁️,🥧️,🍫️,🍬️,🍭️,🍮️,🍯️,🍼️,🥛️,☕️,🫖️,🍵️,🍶️,🍾️,🍷️,🍸️,🍹️,🍺️,🍻️,🥂️,🥃️,🫗️,🥤️,🧋️,🧃️,🧉️,🧊️,🥢️,🍽️️,🍴️,🥄️,🔪️,🫙️,🏺️ -Flags 🏁️,🚩️,🎌️,🏴️,🏳️️,🏳️‍🌈️,🏳️‍⚧️️,🏴‍☠️️,🇦🇨️,🇦🇩️,🇦🇪️,🇦🇫️,🇦🇬️,🇦🇮️,🇦🇱️,🇦🇲️,🇦🇴️,🇦🇶️,🇦🇷️,🇦🇸️,🇦🇹️,🇦🇺️,🇦🇼️,🇦🇽️,🇦🇿️,🇧🇦️,🇧🇧️,🇧🇩️,🇧🇪️,🇧🇫️,🇧🇬️,🇧🇭️,🇧🇮️,🇧🇯️,🇧🇱️,🇧🇲️,🇧🇳️,🇧🇴️,🇧🇶️,🇧🇷️,🇧🇸️,🇧🇹️,🇧🇻️,🇧🇼️,🇧🇾️,🇧🇿️,🇨🇦️,🇨🇨️,🇨🇩️,🇨🇫️,🇨🇬️,🇨🇭️,🇨🇮️,🇨🇰️,🇨🇱️,🇨🇲️,🇨🇳️,🇨🇴️,🇨🇵️,🇨🇷️,🇨🇺️,🇨🇻️,🇨🇼️,🇨🇽️,🇨🇾️,🇨🇿️,🇩🇪️,🇩🇬️,🇩🇯️,🇩🇰️,🇩🇲️,🇩🇴️,🇩🇿️,🇪🇦️,🇪🇨️,🇪🇪️,🇪🇬️,🇪🇭️,🇪🇷️,🇪🇸️,🇪🇹️,🇪🇺️,🇫🇮️,🇫🇯️,🇫🇰️,🇫🇲️,🇫🇴️,🇫🇷️,🇬🇦️,🇬🇧️,🇬🇩️,🇬🇪️,🇬🇫️,🇬🇬️,🇬🇭️,🇬🇮️,🇬🇱️,🇬🇲️,🇬🇳️,🇬🇵️,🇬🇶️,🇬🇷️,🇬🇸️,🇬🇹️,🇬🇺️,🇬🇼️,🇬🇾️,🇭🇰️,🇭🇲️,🇭🇳️,🇭🇷️,🇭🇹️,🇭🇺️,🇮🇨️,🇮🇩️,🇮🇪️,🇮🇱️,🇮🇲️,🇮🇳️,🇮🇴️,🇮🇶️,🇮🇷️,🇮🇸️,🇮🇹️,🇯🇪️,🇯🇲️,🇯🇴️,🇯🇵️,🇰🇪️,🇰🇬️,🇰🇭️,🇰🇮️,🇰🇲️,🇰🇳️,🇰🇵️,🇰🇷️,🇰🇼️,🇰🇾️,🇰🇿️,🇱🇦️,🇱🇧️,🇱🇨️,🇱🇮️,🇱🇰️,🇱🇷️,🇱🇸️,🇱🇹️,🇱🇺️,🇱🇻️,🇱🇾️,🇲🇦️,🇲🇨️,🇲🇩️,🇲🇪️,🇲🇫️,🇲🇬️,🇲🇭️,🇲🇰️,🇲🇱️,🇲🇲️,🇲🇳️,🇲🇴️,🇲🇵️,🇲🇶️,🇲🇷️,🇲🇸️,🇲🇹️,🇲🇺️,🇲🇻️,🇲🇼️,🇲🇽️,🇲🇾️,🇲🇿️,🇳🇦️,🇳🇨️,🇳🇪️,🇳🇫️,🇳🇬️,🇳🇮️,🇳🇱️,🇳🇴️,🇳🇵️,🇳🇷️,🇳🇺️,🇳🇿️,🇴🇲️,🇵🇦️,🇵🇪️,🇵🇫️,🇵🇬️,🇵🇭️,🇵🇰️,🇵🇱️,🇵🇲️,🇵🇳️,🇵🇷️,🇵🇸️,🇵🇹️,🇵🇼️,🇵🇾️,🇶🇦️,🇷🇪️,🇷🇴️,🇷🇸️,🇷🇺️,🇷🇼️,🇸🇦️,🇸🇧️,🇸🇨️,🇸🇩️,🇸🇪️,🇸🇬️,🇸🇭️,🇸🇮️,🇸🇯️,🇸🇰️,🇸🇱️,🇸🇲️,🇸🇳️,🇸🇴️,🇸🇷️,🇸🇸️,🇸🇹️,🇸🇻️,🇸🇽️,🇸🇾️,🇸🇿️,🇹🇦️,🇹🇨️,🇹🇩️,🇹🇫️,🇹🇬️,🇹🇭️,🇹🇯️,🇹🇰️,🇹🇱️,🇹🇲️,🇹🇳️,🇹🇴️,🇹🇷️,🇹🇹️,🇹🇻️,🇹🇼️,🇹🇿️,🇺🇦️,🇺🇬️,🇺🇲️,🇺🇳️,🇺🇸️,🇺🇾️,🇺🇿️,🇻🇦️,🇻🇨️,🇻🇪️,🇻🇬️,🇻🇮️,🇻🇳️,🇻🇺️,🇼🇫️,🇼🇸️,🇽🇰️,🇾🇪️,🇾🇹️,🇿🇦️,🇿🇲️,🇿🇼️,🏴󠁧󠁢󠁥󠁮󠁧󠁿️,🏴󠁧󠁢󠁳󠁣󠁴󠁿️,🏴󠁧󠁢󠁷󠁬󠁳󠁿️ -Smileys & People 😀️,😃️,😄️,😁️,😆️,😅️,🤣️,😂️,🙂️,🙃️,🫠️,😉️,😊️,😇️,🥰️,😍️,🤩️,😘️,😗️,☺️️,😚️,😙️,🥲️,😋️,😛️,😜️,🤪️,😝️,🤑️,🤗️,🤭️,🫢️,🫣️,🤫️,🤔️,🫡️,🤐️,🤨️,😐️,😑️,😶️,🫥️,😶‍🌫️️,😏️,😒️,🙄️,😬️,😮‍💨️,🤥️,🫨️,🙂‍↔️️,🙂‍↕️️,😌️,😔️,😪️,🤤️,😴️,😷️,🤒️,🤕️,🤢️,🤮️,🤧️,🥵️,🥶️,🥴️,😵️,😵‍💫️,🤯️,🤠️,🥳️,🥸️,😎️,🤓️,🧐️,😕️,🫤️,😟️,🙁️,☹️️,😮️,😯️,😲️,😳️,🥺️,🥹️,😦️,😧️,😨️,😰️,😥️,😢️,😭️,😱️,😖️,😣️,😞️,😓️,😩️,😫️,🥱️,😤️,😡️,😠️,🤬️,😈️,👿️,💀️,☠️️,💩️,🤡️,👹️,👺️,👻️,👽️,👾️,🤖️,😺️,😸️,😹️,😻️,😼️,😽️,🙀️,😿️,😾️,🙈️,🙉️,🙊️,💌️,💘️,💝️,💖️,💗️,💓️,💞️,💕️,💟️,❣️️,💔️,❤️‍🔥️,❤️‍🩹️,❤️️,🩷️,🧡️,💛️,💚️,💙️,🩵️,💜️,🤎️,🖤️,🩶️,🤍️,💋️,💯️,💢️,💥️,💫️,💦️,💨️,🕳️️,💬️,👁️‍🗨️️,🗨️️,🗯️️,💭️,💤️,👋️,🤚️,🖐️️,✋️,🖖️,🫱️,🫲️,🫳️,🫴️,🫷️,🫸️,👌️,🤌️,🤏️,✌️️,🤞️,🫰️,🤟️,🤘️,🤙️,👈️,👉️,👆️,🖕️,👇️,☝️️,🫵️,👍️,👎️,✊️,👊️,🤛️,🤜️,👏️,🙌️,🫶️,👐️,🤲️,🤝️,🙏️,✍️️,💅️,🤳️,💪️,🦾️,🦿️,🦵️,🦶️,👂️,🦻️,👃️,🧠️,🫀️,🫁️,🦷️,🦴️,👀️,👁️️,👅️,👄️,🫦️,👶️,🧒️,👦️,👧️,🧑️,👱️,👨️,🧔️,🧔‍♂️️,🧔‍♀️️,👨‍🦰️,👨‍🦰️,👨‍🦱️,👨‍🦱️,👨‍🦳️,👨‍🦳️,👨‍🦲️,👨‍🦲️,👩️,👩‍🦰️,👩‍🦰️,🧑‍🦰️,🧑‍🦰️,👩‍🦱️,👩‍🦱️,🧑‍🦱️,🧑‍🦱️,👩‍🦳️,👩‍🦳️,🧑‍🦳️,🧑‍🦳️,👩‍🦲️,👩‍🦲️,🧑‍🦲️,🧑‍🦲️,👱‍♀️️,👱‍♂️️,🧓️,👴️,👵️,🙍️,🙍‍♂️️,🙍‍♀️️,🙎️,🙎‍♂️️,🙎‍♀️️,🙅️,🙅‍♂️️,🙅‍♀️️,🙆️,🙆‍♂️️,🙆‍♀️️,💁️,💁‍♂️️,💁‍♀️️,🙋️,🙋‍♂️️,🙋‍♀️️,🧏️,🧏‍♂️️,🧏‍♀️️,🙇️,🙇‍♂️️,🙇‍♀️️,🤦️,🤦‍♂️️,🤦‍♀️️,🤷️,🤷‍♂️️,🤷‍♀️️,🧑‍⚕️️,👨‍⚕️️,👩‍⚕️️,🧑‍🎓️,👨‍🎓️,👩‍🎓️,🧑‍🏫️,👨‍🏫️,👩‍🏫️,🧑‍⚖️️,👨‍⚖️️,👩‍⚖️️,🧑‍🌾️,👨‍🌾️,👩‍🌾️,🧑‍🍳️,👨‍🍳️,👩‍🍳️,🧑‍🔧️,👨‍🔧️,👩‍🔧️,🧑‍🏭️,👨‍🏭️,👩‍🏭️,🧑‍💼️,👨‍💼️,👩‍💼️,🧑‍🔬️,👨‍🔬️,👩‍🔬️,🧑‍💻️,👨‍💻️,👩‍💻️,🧑‍🎤️,👨‍🎤️,👩‍🎤️,🧑‍🎨️,👨‍🎨️,👩‍🎨️,🧑‍✈️️,👨‍✈️️,👩‍✈️️,🧑‍🚀️,👨‍🚀️,👩‍🚀️,🧑‍🚒️,👨‍🚒️,👩‍🚒️,👮️,👮‍♂️️,👮‍♀️️,🕵️️,🕵️‍♂️️,🕵️‍♀️️,💂️,💂‍♂️️,💂‍♀️️,🥷️,👷️,👷‍♂️️,👷‍♀️️,🫅️,🤴️,👸️,👳️,👳‍♂️️,👳‍♀️️,👲️,🧕️,🤵️,🤵‍♂️️,🤵‍♀️️,👰️,👰‍♂️️,👰‍♀️️,🤰️,🫃️,🫄️,🤱️,👩‍🍼️,👨‍🍼️,🧑‍🍼️,👼️,🎅️,🤶️,🧑‍🎄️,🦸️,🦸‍♂️️,🦸‍♀️️,🦹️,🦹‍♂️️,🦹‍♀️️,🧙️,🧙‍♂️️,🧙‍♀️️,🧚️,🧚‍♂️️,🧚‍♀️️,🧛️,🧛‍♂️️,🧛‍♀️️,🧜️,🧜‍♂️️,🧜‍♀️️,🧝️,🧝‍♂️️,🧝‍♀️️,🧞️,🧞‍♂️️,🧞‍♀️️,🧟️,🧟‍♂️️,🧟‍♀️️,🧌️,💆️,💆‍♂️️,💆‍♀️️,💇️,💇‍♂️️,💇‍♀️️,🚶️,🚶‍♂️️,🚶‍♀️️,🚶‍➡️️,🚶‍♀️‍➡️️,🚶‍♂️‍➡️️,🧍️,🧍‍♂️️,🧍‍♀️️,🧎️,🧎‍♂️️,🧎‍♀️️,🧎‍➡️️,🧎‍♀️‍➡️️,🧎‍♂️‍➡️️,🧑‍🦯️,🧑‍🦯‍➡️️,👨‍🦯️,👨‍🦯‍➡️️,👩‍🦯️,👩‍🦯‍➡️️,🧑‍🦼️,🧑‍🦼‍➡️️,👨‍🦼️,👨‍🦼‍➡️️,👩‍🦼️,👩‍🦼‍➡️️,🧑‍🦽️,🧑‍🦽‍➡️️,👨‍🦽️,👨‍🦽‍➡️️,👩‍🦽️,👩‍🦽‍➡️️,🏃️,🏃‍♂️️,🏃‍♀️️,🏃‍➡️️,🏃‍♀️‍➡️️,🏃‍♂️‍➡️️,💃️,🕺️,🕴️️,👯️,👯‍♂️️,👯‍♀️️,🧖️,🧖‍♂️️,🧖‍♀️️,🧗️,🧗‍♂️️,🧗‍♀️️,🤺️,🏇️,⛷️️,🏂️,🏌️️,🏌️‍♂️️,🏌️‍♀️️,🏄️,🏄‍♂️️,🏄‍♀️️,🚣️,🚣‍♂️️,🚣‍♀️️,🏊️,🏊‍♂️️,🏊‍♀️️,⛹️️,⛹️‍♂️️,⛹️‍♀️️,🏋️️,🏋️‍♂️️,🏋️‍♀️️,🚴️,🚴‍♂️️,🚴‍♀️️,🚵️,🚵‍♂️️,🚵‍♀️️,🤸️,🤸‍♂️️,🤸‍♀️️,🤼️,🤼‍♂️️,🤼‍♀️️,🤽️,🤽‍♂️️,🤽‍♀️️,🤾️,🤾‍♂️️,🤾‍♀️️,🤹️,🤹‍♂️️,🤹‍♀️️,🧘️,🧘‍♂️️,🧘‍♀️️,🛀️,🛌️,🧑‍🤝‍🧑️,👭️,👫️,👬️,💏️,👩‍❤️‍💋‍👨️,👨‍❤️‍💋‍👨️,👩‍❤️‍💋‍👩️,💑️,👩‍❤️‍👨️,👨‍❤️‍👨️,👩‍❤️‍👩️,👨‍👩‍👦️,👨‍👩‍👧️,👨‍👩‍👧‍👦️,👨‍👩‍👦‍👦️,👨‍👩‍👧‍👧️,👨‍👨‍👦️,👨‍👨‍👧️,👨‍👨‍👧‍👦️,👨‍👨‍👦‍👦️,👨‍👨‍👧‍👧️,👩‍👩‍👦️,👩‍👩‍👧️,👩‍👩‍👧‍👦️,👩‍👩‍👦‍👦️,👩‍👩‍👧‍👧️,👨‍👦️,👨‍👦‍👦️,👨‍👧️,👨‍👧‍👦️,👨‍👧‍👧️,👩‍👦️,👩‍👦‍👦️,👩‍👧️,👩‍👧‍👦️,👩‍👧‍👧️,🗣️️,👤️,👥️,🫂️,👪️,🧑‍🧑‍🧒️,🧑‍🧑‍🧒‍🧒️,🧑‍🧒️,🧑‍🧒‍🧒️,👣️ -Component 🦰️,🦱️,🦳️,🦲️ -Symbols 🏧️,🚮️,🚰️,♿️,🚹️,🚺️,🚻️,🚼️,🚾️,🛂️,🛃️,🛄️,🛅️,⚠️️,🚸️,⛔️,🚫️,🚳️,🚭️,🚯️,🚱️,🚷️,📵️,🔞️,☢️️,☣️️,⬆️️,↗️️,➡️️,↘️️,⬇️️,↙️️,⬅️️,↖️️,↕️️,↔️️,↩️️,↪️️,⤴️️,⤵️️,🔃️,🔄️,🔙️,🔚️,🔛️,🔜️,🔝️,🛐️,⚛️️,🕉️️,✡️️,☸️️,☯️️,✝️️,☦️️,☪️️,☮️️,🕎️,🔯️,🪯️,♈️,♉️,♊️,♋️,♌️,♍️,♎️,♏️,♐️,♑️,♒️,♓️,⛎️,🔀️,🔁️,🔂️,▶️️,⏩️,⏭️️,⏯️️,◀️️,⏪️,⏮️️,🔼️,⏫️,🔽️,⏬️,⏸️️,⏹️️,⏺️️,⏏️️,🎦️,🔅️,🔆️,📶️,🛜️,📳️,📴️,♀️️,♂️️,⚧️️,✖️️,➕️,➖️,➗️,🟰️,♾️️,‼️️,⁉️️,❓️,❔️,❕️,❗️,〰️️,💱️,💲️,⚕️️,♻️️,⚜️️,🔱️,📛️,🔰️,⭕️,✅️,☑️️,✔️️,❌️,❎️,➰️,➿️,〽️️,✳️️,✴️️,❇️️,©️️,®️️,™️️,#️⃣️,*️⃣️,0️⃣️,1️⃣️,2️⃣️,3️⃣️,4️⃣️,5️⃣️,6️⃣️,7️⃣️,8️⃣️,9️⃣️,🔟️,🔠️,🔡️,🔢️,🔣️,🔤️,🅰️️,🆎️,🅱️️,🆑️,🆒️,🆓️,ℹ️️,🆔️,Ⓜ️️,🆕️,🆖️,🅾️️,🆗️,🅿️️,🆘️,🆙️,🆚️,🈁️,🈂️️,🈷️️,🈶️,🈯️,🉐️,🈹️,🈚️,🈲️,🉑️,🈸️,🈴️,🈳️,㊗️️,㊙️️,🈺️,🈵️,🔴️,🟠️,🟡️,🟢️,🔵️,🟣️,🟤️,⚫️,⚪️,🟥️,🟧️,🟨️,🟩️,🟦️,🟪️,🟫️,⬛️,⬜️,◼️️,◻️️,◾️,◽️,▪️️,▫️️,🔶️,🔷️,🔸️,🔹️,🔺️,🔻️,💠️,🔘️,🔳️,🔲️ -Objects 👓️,🕶️️,🥽️,🥼️,🦺️,👔️,👕️,👖️,🧣️,🧤️,🧥️,🧦️,👗️,👘️,🥻️,🩱️,🩲️,🩳️,👙️,👚️,🪭️,👛️,👜️,👝️,🛍️️,🎒️,🩴️,👞️,👟️,🥾️,🥿️,👠️,👡️,🩰️,👢️,🪮️,👑️,👒️,🎩️,🎓️,🧢️,🪖️,⛑️️,📿️,💄️,💍️,💎️,🔇️,🔈️,🔉️,🔊️,📢️,📣️,📯️,🔔️,🔕️,🎼️,🎵️,🎶️,🎙️️,🎚️️,🎛️️,🎤️,🎧️,📻️,🎷️,🪗️,🎸️,🎹️,🎺️,🎻️,🪕️,🥁️,🪘️,🪇️,🪈️,📱️,📲️,☎️️,📞️,📟️,📠️,🔋️,🪫️,🔌️,💻️,🖥️️,🖨️️,⌨️️,🖱️️,🖲️️,💽️,💾️,💿️,📀️,🧮️,🎥️,🎞️️,📽️️,🎬️,📺️,📷️,📸️,📹️,📼️,🔍️,🔎️,🕯️️,💡️,🔦️,🏮️,🪔️,📔️,📕️,📖️,📗️,📘️,📙️,📚️,📓️,📒️,📃️,📜️,📄️,📰️,🗞️️,📑️,🔖️,🏷️️,💰️,🪙️,💴️,💵️,💶️,💷️,💸️,💳️,🧾️,💹️,✉️️,📧️,📨️,📩️,📤️,📥️,📦️,📫️,📪️,📬️,📭️,📮️,🗳️️,✏️️,✒️️,🖋️️,🖊️️,🖌️️,🖍️️,📝️,💼️,📁️,📂️,🗂️️,📅️,📆️,🗒️️,🗓️️,📇️,📈️,📉️,📊️,📋️,📌️,📍️,📎️,🖇️️,📏️,📐️,✂️️,🗃️️,🗄️️,🗑️️,🔒️,🔓️,🔏️,🔐️,🔑️,🗝️️,🔨️,🪓️,⛏️️,⚒️️,🛠️️,🗡️️,⚔️️,💣️,🪃️,🏹️,🛡️️,🪚️,🔧️,🪛️,🔩️,⚙️️,🗜️️,⚖️️,🦯️,🔗️,⛓️‍💥️,⛓️️,🪝️,🧰️,🧲️,🪜️,⚗️️,🧪️,🧫️,🧬️,🔬️,🔭️,📡️,💉️,🩸️,💊️,🩹️,🩼️,🩺️,🩻️,🚪️,🛗️,🪞️,🪟️,🛏️️,🛋️️,🪑️,🚽️,🪠️,🚿️,🛁️,🪤️,🪒️,🧴️,🧷️,🧹️,🧺️,🧻️,🪣️,🧼️,🫧️,🪥️,🧽️,🧯️,🛒️,🚬️,⚰️️,🪦️,⚱️️,🧿️,🪬️,🗿️,🪧️,🪪️ -Travel & Places 🌍️,🌎️,🌏️,🌐️,🗺️️,🗾️,🧭️,🏔️️,⛰️️,🌋️,🗻️,🏕️️,🏖️️,🏜️️,🏝️️,🏞️️,🏟️️,🏛️️,🏗️️,🧱️,🪨️,🪵️,🛖️,🏘️️,🏚️️,🏠️,🏡️,🏢️,🏣️,🏤️,🏥️,🏦️,🏨️,🏩️,🏪️,🏫️,🏬️,🏭️,🏯️,🏰️,💒️,🗼️,🗽️,⛪️,🕌️,🛕️,🕍️,⛩️️,🕋️,⛲️,⛺️,🌁️,🌃️,🏙️️,🌄️,🌅️,🌆️,🌇️,🌉️,♨️️,🎠️,🛝️,🎡️,🎢️,💈️,🎪️,🚂️,🚃️,🚄️,🚅️,🚆️,🚇️,🚈️,🚉️,🚊️,🚝️,🚞️,🚋️,🚌️,🚍️,🚎️,🚐️,🚑️,🚒️,🚓️,🚔️,🚕️,🚖️,🚗️,🚘️,🚙️,🛻️,🚚️,🚛️,🚜️,🏎️️,🏍️️,🛵️,🦽️,🦼️,🛺️,🚲️,🛴️,🛹️,🛼️,🚏️,🛣️️,🛤️️,🛢️️,⛽️,🛞️,🚨️,🚥️,🚦️,🛑️,🚧️,⚓️,🛟️,⛵️,🛶️,🚤️,🛳️️,⛴️️,🛥️️,🚢️,✈️️,🛩️️,🛫️,🛬️,🪂️,💺️,🚁️,🚟️,🚠️,🚡️,🛰️️,🚀️,🛸️,🛎️️,🧳️,⌛️,⏳️,⌚️,⏰️,⏱️️,⏲️️,🕰️️,🕛️,🕧️,🕐️,🕜️,🕑️,🕝️,🕒️,🕞️,🕓️,🕟️,🕔️,🕠️,🕕️,🕡️,🕖️,🕢️,🕗️,🕣️,🕘️,🕤️,🕙️,🕥️,🕚️,🕦️,🌑️,🌒️,🌓️,🌔️,🌕️,🌖️,🌗️,🌘️,🌙️,🌚️,🌛️,🌜️,🌡️️,☀️️,🌝️,🌞️,🪐️,⭐️,🌟️,🌠️,🌌️,☁️️,⛅️,⛈️️,🌤️️,🌥️️,🌦️️,🌧️️,🌨️️,🌩️️,🌪️️,🌫️️,🌬️️,🌀️,🌈️,🌂️,☂️️,☔️,⛱️️,⚡️,❄️️,☃️️,⛄️,☄️️,🔥️,💧️,🌊️ \ No newline at end of file diff --git a/src-tauri/resources/BlocksRuntime.dll b/src-tauri/resources/BlocksRuntime.dll deleted file mode 100644 index 65db68a..0000000 Binary files a/src-tauri/resources/BlocksRuntime.dll and /dev/null differ diff --git a/src-tauri/resources/Foundation.dll b/src-tauri/resources/Foundation.dll deleted file mode 100644 index c6ebf91..0000000 Binary files a/src-tauri/resources/Foundation.dll and /dev/null differ diff --git a/src-tauri/resources/FoundationEssentials.dll b/src-tauri/resources/FoundationEssentials.dll deleted file mode 100644 index c192b50..0000000 Binary files a/src-tauri/resources/FoundationEssentials.dll and /dev/null differ diff --git a/src-tauri/resources/FoundationInternationalization.dll b/src-tauri/resources/FoundationInternationalization.dll deleted file mode 100644 index 42b5cf1..0000000 Binary files a/src-tauri/resources/FoundationInternationalization.dll and /dev/null differ diff --git a/src-tauri/resources/FoundationNetworking.dll b/src-tauri/resources/FoundationNetworking.dll deleted file mode 100644 index c6e211b..0000000 Binary files a/src-tauri/resources/FoundationNetworking.dll and /dev/null differ diff --git a/src-tauri/resources/FoundationXML.dll b/src-tauri/resources/FoundationXML.dll deleted file mode 100644 index cf27338..0000000 Binary files a/src-tauri/resources/FoundationXML.dll and /dev/null differ diff --git a/src-tauri/resources/_FoundationICU.dll b/src-tauri/resources/_FoundationICU.dll deleted file mode 100644 index d002a36..0000000 Binary files a/src-tauri/resources/_FoundationICU.dll and /dev/null differ diff --git a/src-tauri/resources/azookey-swift.dll b/src-tauri/resources/azookey-swift.dll deleted file mode 100644 index a50c138..0000000 Binary files a/src-tauri/resources/azookey-swift.dll and /dev/null differ diff --git a/src-tauri/resources/concrt140.dll b/src-tauri/resources/concrt140.dll deleted file mode 100644 index 9967728..0000000 Binary files a/src-tauri/resources/concrt140.dll and /dev/null differ diff --git a/src-tauri/resources/dispatch.dll b/src-tauri/resources/dispatch.dll deleted file mode 100644 index e6656c1..0000000 Binary files a/src-tauri/resources/dispatch.dll and /dev/null differ diff --git a/src-tauri/resources/ggml-base.dll b/src-tauri/resources/ggml-base.dll deleted file mode 100644 index 64588c5..0000000 Binary files a/src-tauri/resources/ggml-base.dll and /dev/null differ diff --git a/src-tauri/resources/ggml-cpu.dll b/src-tauri/resources/ggml-cpu.dll deleted file mode 100644 index e56598a..0000000 Binary files a/src-tauri/resources/ggml-cpu.dll and /dev/null differ diff --git a/src-tauri/resources/ggml-model-Q5_K_M.gguf b/src-tauri/resources/ggml-model-Q5_K_M.gguf deleted file mode 100644 index 6fc8fc1..0000000 Binary files a/src-tauri/resources/ggml-model-Q5_K_M.gguf and /dev/null differ diff --git a/src-tauri/resources/ggml.dll b/src-tauri/resources/ggml.dll deleted file mode 100644 index 8cf3603..0000000 Binary files a/src-tauri/resources/ggml.dll and /dev/null differ diff --git a/src-tauri/resources/llama.dll b/src-tauri/resources/llama.dll deleted file mode 100644 index 59e2c84..0000000 Binary files a/src-tauri/resources/llama.dll and /dev/null differ diff --git a/src-tauri/resources/msvcp140.dll b/src-tauri/resources/msvcp140.dll deleted file mode 100644 index 0a9b13d..0000000 Binary files a/src-tauri/resources/msvcp140.dll and /dev/null differ diff --git a/src-tauri/resources/msvcp140_1.dll b/src-tauri/resources/msvcp140_1.dll deleted file mode 100644 index 9dc8aa7..0000000 Binary files a/src-tauri/resources/msvcp140_1.dll and /dev/null differ diff --git a/src-tauri/resources/msvcp140_2.dll b/src-tauri/resources/msvcp140_2.dll deleted file mode 100644 index 51c4e88..0000000 Binary files a/src-tauri/resources/msvcp140_2.dll and /dev/null differ diff --git a/src-tauri/resources/msvcp140_atomic_wait.dll b/src-tauri/resources/msvcp140_atomic_wait.dll deleted file mode 100644 index 469f900..0000000 Binary files a/src-tauri/resources/msvcp140_atomic_wait.dll and /dev/null differ diff --git a/src-tauri/resources/msvcp140_codecvt_ids.dll b/src-tauri/resources/msvcp140_codecvt_ids.dll deleted file mode 100644 index df95731..0000000 Binary files a/src-tauri/resources/msvcp140_codecvt_ids.dll and /dev/null differ diff --git a/src-tauri/resources/swiftCRT.dll b/src-tauri/resources/swiftCRT.dll deleted file mode 100644 index 8a578a9..0000000 Binary files a/src-tauri/resources/swiftCRT.dll and /dev/null differ diff --git a/src-tauri/resources/swiftCore.dll b/src-tauri/resources/swiftCore.dll deleted file mode 100644 index 20d0fed..0000000 Binary files a/src-tauri/resources/swiftCore.dll and /dev/null differ diff --git a/src-tauri/resources/swiftDispatch.dll b/src-tauri/resources/swiftDispatch.dll deleted file mode 100644 index 0b5339b..0000000 Binary files a/src-tauri/resources/swiftDispatch.dll and /dev/null differ diff --git a/src-tauri/resources/swiftDistributed.dll b/src-tauri/resources/swiftDistributed.dll deleted file mode 100644 index 2f98b63..0000000 Binary files a/src-tauri/resources/swiftDistributed.dll and /dev/null differ diff --git a/src-tauri/resources/swiftObservation.dll b/src-tauri/resources/swiftObservation.dll deleted file mode 100644 index 11734f4..0000000 Binary files a/src-tauri/resources/swiftObservation.dll and /dev/null differ diff --git a/src-tauri/resources/swiftRegexBuilder.dll b/src-tauri/resources/swiftRegexBuilder.dll deleted file mode 100644 index 02d7a1e..0000000 Binary files a/src-tauri/resources/swiftRegexBuilder.dll and /dev/null differ diff --git a/src-tauri/resources/swiftRemoteMirror.dll b/src-tauri/resources/swiftRemoteMirror.dll deleted file mode 100644 index 9950ef8..0000000 Binary files a/src-tauri/resources/swiftRemoteMirror.dll and /dev/null differ diff --git a/src-tauri/resources/swiftSwiftOnoneSupport.dll b/src-tauri/resources/swiftSwiftOnoneSupport.dll deleted file mode 100644 index c8c5655..0000000 Binary files a/src-tauri/resources/swiftSwiftOnoneSupport.dll and /dev/null differ diff --git a/src-tauri/resources/swiftSynchronization.dll b/src-tauri/resources/swiftSynchronization.dll deleted file mode 100644 index 31efc51..0000000 Binary files a/src-tauri/resources/swiftSynchronization.dll and /dev/null differ diff --git a/src-tauri/resources/swiftWinSDK.dll b/src-tauri/resources/swiftWinSDK.dll deleted file mode 100644 index a3b97ec..0000000 Binary files a/src-tauri/resources/swiftWinSDK.dll and /dev/null differ diff --git a/src-tauri/resources/swift_Concurrency.dll b/src-tauri/resources/swift_Concurrency.dll deleted file mode 100644 index 9ab3d6c..0000000 Binary files a/src-tauri/resources/swift_Concurrency.dll and /dev/null differ diff --git a/src-tauri/resources/swift_Differentiation.dll b/src-tauri/resources/swift_Differentiation.dll deleted file mode 100644 index 49d6e97..0000000 Binary files a/src-tauri/resources/swift_Differentiation.dll and /dev/null differ diff --git a/src-tauri/resources/swift_RegexParser.dll b/src-tauri/resources/swift_RegexParser.dll deleted file mode 100644 index 3fab064..0000000 Binary files a/src-tauri/resources/swift_RegexParser.dll and /dev/null differ diff --git a/src-tauri/resources/swift_StringProcessing.dll b/src-tauri/resources/swift_StringProcessing.dll deleted file mode 100644 index 185aff4..0000000 Binary files a/src-tauri/resources/swift_StringProcessing.dll and /dev/null differ diff --git a/src-tauri/resources/vccorlib140.dll b/src-tauri/resources/vccorlib140.dll deleted file mode 100644 index e402475..0000000 Binary files a/src-tauri/resources/vccorlib140.dll and /dev/null differ diff --git a/src-tauri/resources/vcruntime140.dll b/src-tauri/resources/vcruntime140.dll deleted file mode 100644 index 99e0fbd..0000000 Binary files a/src-tauri/resources/vcruntime140.dll and /dev/null differ diff --git a/src-tauri/resources/vcruntime140_1.dll b/src-tauri/resources/vcruntime140_1.dll deleted file mode 100644 index 8ad4c3b..0000000 Binary files a/src-tauri/resources/vcruntime140_1.dll and /dev/null differ diff --git a/src-tauri/resources/vcruntime140_threads.dll b/src-tauri/resources/vcruntime140_threads.dll deleted file mode 100644 index 1e22f56..0000000 Binary files a/src-tauri/resources/vcruntime140_threads.dll and /dev/null differ diff --git a/src-tauri/src/azookey/azookey_conversion.rs b/src-tauri/src/azookey/azookey_conversion.rs deleted file mode 100644 index 2b4fb9e..0000000 --- a/src-tauri/src/azookey/azookey_conversion.rs +++ /dev/null @@ -1,423 +0,0 @@ -use anyhow::{anyhow, Result}; -use tracing::{debug, info, trace}; - -use super::client::AzookeyConversionClient; - -/// Maximum number of history entries to retain -const MAX_HISTORY_SIZE: usize = 3; - -/// Maximum number of conversion candidates -const MAX_CANDIDATES: usize = 10; - -/// AzookeyConversion - Provides romanized text to kanji conversion and candidate switching -/// -/// This struct implements the logic for character conversion and candidate switching -/// in a Japanese input method system. -pub struct AzookeyConversion { - /// Conversion history (max 3 entries) - conversion_history: Vec, - - /// Pre-conversion text history (max 3 entries) - input_history: Vec, - - /// Whether currently in reconversion mode - is_reconversion_mode: bool, - - /// Current text being converted - current_text: String, - - /// List of reconversion candidates - reconversion_candidates: Option>, - - /// Index of currently selected reconversion candidate - candidate_index: Option, - - /// Common prefix for reconversion - common_prefix: Option, - - /// Client that performs conversion operations - client: AzookeyConversionClient, -} - -impl AzookeyConversion { - /// Creates a new AzookeyConversion instance - /// - /// # Arguments - /// * `client` - Client instance that performs conversion operations - /// - /// # Returns - /// * Initialized AzookeyConversion instance - pub fn new(client: AzookeyConversionClient) -> Self { - info!("Creating new AzookeyConversion instance"); - - Self { - conversion_history: Vec::new(), - input_history: Vec::new(), - is_reconversion_mode: false, - current_text: String::new(), - reconversion_candidates: None, - candidate_index: None, - common_prefix: None, - client, - } - } - - /// Converts text - Main entry point for conversion processing - /// - /// # Arguments - /// * `text` - Text to be converted - /// - /// # Returns - /// * `Result` - Conversion result or error - pub fn convert(&mut self, text: &str) -> Result { - debug!("Starting conversion: {}", text); - trace!( - "Current state: conversion_history={:?}, input_history={:?}, is_reconversion_mode={}", - self.conversion_history, - self.input_history, - self.is_reconversion_mode - ); - - self.current_text = text.to_string(); - - // Check if same as previous conversion result - let same_as_last_conversion = self.is_same_as_last_conversion(text); - trace!("Same as last conversion: {}", same_as_last_conversion); - - // Reset if input changed while in reconversion mode - if !same_as_last_conversion && self.is_reconversion_mode { - debug!("Resetting conversion state due to new input"); - self.reset_reconversion_state(); - } - - // Branch conversion processing - if self.is_reconversion_mode || same_as_last_conversion { - // Same text re-entered or in reconversion mode - info!("Executing AzooKey conversion"); - self.convert_with_candidates(text) - } else { - // Normal conversion processing - info!("Executing regular romaji->kanji conversion"); - self.convert_roman_to_kanji(text) - } - } - - /// Determines if input is the same as the last conversion result - /// - /// # Arguments - /// * `text` - Text to check - /// - /// # Returns - /// * `bool` - True if same as last conversion - fn is_same_as_last_conversion(&self, text: &str) -> bool { - if let Some(last_conversion) = self.conversion_history.last() { - text == last_conversion - } else { - false - } - } - - /// Resets reconversion-related state - fn reset_reconversion_state(&mut self) { - debug!("Resetting reconversion state"); - - trace!( - "Before reset - is_reconversion_mode: {}, common_prefix: {:?}, candidate_index: {:?}", - self.is_reconversion_mode, - self.common_prefix, - self.candidate_index - ); - - self.is_reconversion_mode = false; - self.common_prefix = None; - self.candidate_index = None; - self.reconversion_candidates = None; - - trace!( - "After reset - is_reconversion_mode: {}, common_prefix: {:?}, candidate_index: {:?}", - self.is_reconversion_mode, - self.common_prefix, - self.candidate_index - ); - } - - /// Converts romaji to kanji (initial conversion) - /// - /// # Arguments - /// * `text` - Text to convert - /// - /// # Returns - /// * `Result` - Conversion result or error - fn convert_roman_to_kanji(&mut self, text: &str) -> Result { - debug!("Converting romaji to kanji: {}", text); - - // Get previous conversion result - let previous_conversion = self.get_previous_conversion(); - trace!("Previous conversion: {}", previous_conversion); - - // Detect difference position - let first_diff_position = self.find_first_difference(&previous_conversion, text); - trace!("First difference position: {:?}", first_diff_position); - - // Extract difference text - let diff_text = text.chars().skip(first_diff_position).collect::(); - debug!("Difference to convert: {}", diff_text); - - // Extract common prefix - let prefix = text.chars().take(first_diff_position).collect::(); - trace!("Conversion prefix: {}", prefix); - - // Use client for conversion - self.client.reset_composing_text(); - self.client.insert_at_cursor_position(&diff_text); - - // Get and select conversion candidate - let converted = match self.client.request_candidates("").first() { - Some(candidate) => candidate.text.clone(), - None => return Err(anyhow!("No conversion candidates available")), - }; - trace!("Conversion result: {}", converted); - - // Update history - let result = prefix + &converted; - self.update_history(result.clone(), text.to_string()); - - info!("Romaji->kanji conversion result: {}", result); - Ok(result) - } - - /// Switches between conversion candidates (reconversion) - /// - /// # Arguments - /// * `text` - Text for reconversion - /// - /// # Returns - /// * `Result` - Conversion result or error - fn convert_with_candidates(&mut self, text: &str) -> Result { - debug!("Converting with AzooKey: {}", text); - self.is_reconversion_mode = true; - - // Prepare for reconversion if needed - self.prepare_reconversion_if_needed(); - - // Select and switch candidates - let result = self.select_next_candidate()?; - - // Update history - self.update_history(result.clone(), text.to_string()); - - info!("AzooKey conversion result: {}", result); - Ok(result) - } - - /// Prepares difference processing for reconversion - fn prepare_reconversion_if_needed(&mut self) { - // Only execute on first reconversion - if self.common_prefix.is_none() { - debug!("Preparing for reconversion"); - - // Calculate differences from past history - let previous_output = self.get_previous_output(2); - let previous_input = self.get_previous_input(1); - trace!( - "Previous output: {}, previous input: {}", - previous_output, - previous_input - ); - - // Detect difference position - let first_diff_position = self.find_first_difference(&previous_input, &previous_output); - trace!("First difference position: {:?}", first_diff_position); - - // Extract difference text - let diff_text = previous_input - .chars() - .skip(first_diff_position) - .collect::(); - debug!("Reconversion difference: {}", diff_text); - - // Set common prefix - let prefix = previous_input - .chars() - .take(first_diff_position) - .collect::(); - self.common_prefix = Some(prefix.clone()); - trace!("Set reconversion prefix: {}", prefix); - - // Generate candidates - self.generate_candidates(&diff_text, &prefix); - } - } - - /// Generates conversion candidates - /// - /// # Arguments - /// * `diff_text` - Difference text to convert - /// * `prefix` - Common prefix - fn generate_candidates(&mut self, diff_text: &str, prefix: &str) { - debug!("Generating candidates"); - - self.client.reset_composing_text(); - self.client.insert_at_cursor_position(diff_text); - - // Get candidates from client - let mut candidates = self - .client - .request_candidates(prefix) - .iter() - .map(|c| c.text.clone()) - .collect::>(); - trace!("Retrieved candidates: {:?}", candidates); - - // Include raw text in candidates - candidates.insert(1, diff_text.to_string()); - - // Limit number of candidates (for safety) - if candidates.len() > MAX_CANDIDATES { - candidates.truncate(MAX_CANDIDATES); - } - - trace!("Final candidate list: {:?}", candidates); - self.reconversion_candidates = Some(candidates); - self.candidate_index = Some(0); - } - - /// Selects the next candidate - /// - /// # Returns - /// * `Result` - Selected candidate or error - fn select_next_candidate(&mut self) -> Result { - let candidates = match &self.reconversion_candidates { - Some(cands) => cands, - None => return Err(anyhow!("Candidate list does not exist")), - }; - - let index = match self.candidate_index { - Some(i) => { - // Update index - let new_index = if i + 1 < candidates.len() { i + 1 } else { 0 }; - self.candidate_index = Some(new_index); - new_index - } - None => return Err(anyhow!("Candidate index not initialized")), - }; - - debug!("Updated candidate index: {}", index); - - // Get selected candidate - let prefix = self.common_prefix.clone().unwrap_or_default(); - let selected_candidate = &candidates[index]; - let result = prefix + selected_candidate; - - Ok(result) - } - - /// Updates history - /// - /// # Arguments - /// * `conversion` - Conversion result - /// * `input` - Input text - fn update_history(&mut self, conversion: String, input: String) { - self.conversion_history.push(conversion); - self.input_history.push(input); - - trace!( - "Before trim: conversion_history={}, input_history={}", - self.conversion_history.len(), - self.input_history.len() - ); - - // Limit history size - self.trim_history(); - - trace!( - "After trim: conversion_history={}, input_history={}", - self.conversion_history.len(), - self.input_history.len() - ); - } - - /// Limits history size - fn trim_history(&mut self) { - while self.conversion_history.len() > MAX_HISTORY_SIZE { - self.conversion_history.remove(0); - } - - while self.input_history.len() > MAX_HISTORY_SIZE { - self.input_history.remove(0); - } - } - - /// Gets previous conversion result - /// - /// # Returns - /// * `String` - Previous conversion result or empty string - fn get_previous_conversion(&self) -> String { - self.conversion_history - .last() - .map(|s| s.clone()) - .unwrap_or_default() - } - - /// Gets conversion history from specified index - /// - /// # Arguments - /// * `offset` - Offset from the end - /// - /// # Returns - /// * `String` - Retrieved history or empty string - fn get_previous_output(&self, offset: usize) -> String { - if offset <= self.conversion_history.len() { - self.conversion_history[self.conversion_history.len() - offset].clone() - } else { - String::new() - } - } - - /// Gets input history from specified index - /// - /// # Arguments - /// * `offset` - Offset from the end - /// - /// # Returns - /// * `String` - Retrieved history or empty string - fn get_previous_input(&self, offset: usize) -> String { - if offset <= self.input_history.len() { - self.input_history[self.input_history.len() - offset].clone() - } else { - String::new() - } - } - - /// Finds first difference position between two strings - /// - /// # Arguments - /// * `s1` - First string to compare - /// * `s2` - Second string to compare - /// - /// # Returns - /// * `usize` - First difference position - fn find_first_difference(&self, s1: &str, s2: &str) -> usize { - let result = s1 - .chars() - .zip(s2.chars()) - .position(|(a, b)| a != b) - .unwrap_or_else(|| { - // If one is a prefix of the other - let min_len = s1.chars().count().min(s2.chars().count()); - if s1.len() != s2.len() { - min_len - } else { - 0 - } - }); - - trace!( - "String comparison: \"{}\" and \"{}\" differ at position: {}", - s1, - s2, - result - ); - result - } -} diff --git a/src-tauri/src/azookey/client.rs b/src-tauri/src/azookey/client.rs deleted file mode 100644 index e561ea4..0000000 --- a/src-tauri/src/azookey/client.rs +++ /dev/null @@ -1,55 +0,0 @@ -use azookey_binding::Candidate; -use ipc_channel::ipc::{IpcReceiver, IpcSender}; - -use tracing::info; - -use super::IpcMessage; - -pub struct AzookeyConversionClient { - pub sender: IpcSender, - pub receiver: IpcReceiver, -} - -impl AzookeyConversionClient { - pub fn new(server_name: String) -> Self { - println!("Creating new AzookeyConversionClient instance"); - - let sender = IpcSender::connect(server_name.clone()).unwrap(); - let (server_sender, receiver) = ipc_channel::ipc::channel().unwrap(); - - sender.send(IpcMessage::Start).unwrap(); - sender.send(IpcMessage::Sender(server_sender)).unwrap(); - - Self { sender, receiver } - } - - pub fn reset_composing_text(&mut self) { - info!("Resetting composing text"); - self.sender.send(IpcMessage::ResetComposingText).unwrap(); - } - - pub fn insert_at_cursor_position(&mut self, text: &str) { - info!("Inserting at cursor position: {}", text); - self.sender - .send(IpcMessage::InsertAtCursorPosition(text.to_string())) - .unwrap(); - } - - pub fn request_candidates(&mut self, context: &str) -> Vec { - info!("Requesting candidates for context: {}", context); - self.sender - .send(IpcMessage::RequestCandidates(context.to_string())) - .unwrap(); - loop { - match self.receiver.recv() { - Ok(IpcMessage::Candidates(candidates)) => { - info!("Received candidates: {:?}", candidates); - return candidates; - } - Ok(_) => {} - Err(_) => break, - } - } - vec![] - } -} diff --git a/src-tauri/src/azookey/mod.rs b/src-tauri/src/azookey/mod.rs deleted file mode 100644 index c04c6be..0000000 --- a/src-tauri/src/azookey/mod.rs +++ /dev/null @@ -1,18 +0,0 @@ -use azookey_binding::Candidate; -use ipc_channel::ipc::IpcSender; -use serde::{Deserialize, Serialize}; - -pub mod azookey_conversion; -pub mod client; -pub mod server; - -#[derive(Debug, Serialize, Deserialize, Clone)] -pub enum IpcMessage { - Start, - Sender(IpcSender), - ResetComposingText, - InsertAtCursorPosition(String), - RequestCandidates(String), - Candidates(Vec), - End, -} diff --git a/src-tauri/src/azookey/server.rs b/src-tauri/src/azookey/server.rs deleted file mode 100644 index fcf5867..0000000 --- a/src-tauri/src/azookey/server.rs +++ /dev/null @@ -1,169 +0,0 @@ -use std::{collections::HashMap, path::PathBuf, sync::LazyLock}; - -use azookey_binding::{Candidate, ComposingText, KanaKanjiConverter}; -use ipc_channel::ipc::IpcOneShotServer; -use itertools::Itertools; -use platform_dirs::AppDirs; - -use crate::SELF_EXE_PATH; - -use super::IpcMessage; - -static SIGNMAP: LazyLock> = LazyLock::new(|| { - HashMap::from([ - ("-", "ー"), - ("=", "="), - ("[", "「"), - ("]", "」"), - (";", ";"), - ("@", "@"), - (",", "、"), - (".", "。"), - ("/", "・"), - ("!", "!"), - ("#", "#"), - ("$", "$"), - ("%", "%"), - ("^", "^"), - ("&", "&"), - ("*", "*"), - ("(", "("), - (")", ")"), - ("_", "_"), - ("+", "+"), - ("{", "{"), - ("}", "}"), - ("|", "|"), - (":", ":"), - ("\"", "”"), - ("<", "<"), - (">", ">"), - ("?", "?"), - ("\\", "¥"), - ]) -}); - -pub struct AzookeyConversionServer { - pub azookey_converter: KanaKanjiConverter, - pub composing_text: ComposingText, - pub server: IpcOneShotServer, - pub server_name: String, -} - -impl AzookeyConversionServer { - pub fn new() -> Self { - let (server, server_name): (IpcOneShotServer, String) = - IpcOneShotServer::new().unwrap(); - - let instance = Self { - azookey_converter: KanaKanjiConverter::new(), - composing_text: ComposingText::new(), - server, - server_name, - }; - instance - } - - fn pre_process_text(text: &str) -> String { - let mut result = String::new(); - - // replace all characters in the text with their corresponding replacements - for c in text.chars() { - if let Some(&replacement) = SIGNMAP.get(c.to_string().as_str()) { - result.push_str(replacement); - } else { - result.push(c); - } - } - - // push 'n' if the last and second last characters are 'n' - if result.ends_with('n') { - let mut chars = result.chars().collect::>(); - if chars.len() > 1 && chars[chars.len() - 2] != 'n' { - chars.push('n'); - } - result = chars.into_iter().collect::(); - } - - // push '§' at the end of the string to avoid unnecessary prediction - result.push_str("§"); - - result - } - - fn post_process_text(text: &str) -> String { - let mut result = text.to_string(); - - if result.ends_with('§') { - result.pop(); - } - - result - } - - fn post_process_candidates(candidates: Vec) -> Vec { - candidates - .iter() - .take(8) - .map(|c| { - let mut candidate = c.clone(); - candidate.text = Self::post_process_text(&candidate.text); - candidate - }) - .unique_by(|c| c.text.clone()) - .collect() - } - - pub fn server_loop(mut self) { - let (a, _) = self.server.accept().unwrap(); - let mut sender = None; - - let app_dirs = AppDirs::new(Some("vrclipboard-ime"), false).unwrap(); - let path = app_dirs - .config_dir - .join("AzooKeyDictionary\\AzooKeyDictionary\\Dictionary"); - let extract_path = path.to_str().unwrap(); - - let self_exe_path = PathBuf::from(SELF_EXE_PATH.read().unwrap().as_str()); - let weight_path = self_exe_path - .parent() - .unwrap() - .join("ggml-model-Q5_K_M.gguf") - .to_string_lossy() - .to_string(); - - loop { - match a.recv() { - Ok(IpcMessage::Sender(s)) => { - sender = Some(s); - } - Ok(IpcMessage::ResetComposingText) => { - self.composing_text = ComposingText::new(); - } - Ok(IpcMessage::InsertAtCursorPosition(text)) => { - let text = Self::pre_process_text(&text); - self.composing_text.insert_at_cursor_position(&text); - } - Ok(IpcMessage::RequestCandidates(context)) => { - let candidates = self.azookey_converter.request_candidates( - &self.composing_text, - &context, - &extract_path, - &weight_path, - ); - if let Some(s) = sender.as_ref() { - let candidates = Self::post_process_candidates(candidates); - s.send(IpcMessage::Candidates(candidates)).unwrap(); - } - } - Ok(IpcMessage::End) => { - break; - } - Ok(_) => {} - Err(_) => { - break; - } - } - } - } -} diff --git a/src-tauri/src/com.rs b/src-tauri/src/com.rs deleted file mode 100644 index cb505ab..0000000 --- a/src-tauri/src/com.rs +++ /dev/null @@ -1,24 +0,0 @@ -use anyhow::Result; -use tracing::debug; -use windows::Win32::System::Com::{CoInitialize, CoUninitialize}; - -pub struct Com; - -impl Drop for Com { - fn drop(&mut self) { - debug!("Dropping Com instance"); - unsafe { - CoUninitialize(); - debug!("CoUninitialize called"); - }; - } -} - -impl Com { - pub fn new() -> Result { - unsafe { - let _ = CoInitialize(None); - }; - Ok(Com) - } -} diff --git a/src-tauri/src/config.rs b/src-tauri/src/config.rs deleted file mode 100644 index f211a57..0000000 --- a/src-tauri/src/config.rs +++ /dev/null @@ -1,168 +0,0 @@ -use std::{ - fs::File, - io::{Read, Write}, - path::{Path, PathBuf}, -}; - -use anyhow::Result; -use platform_dirs::AppDirs; -use serde::Serialize; -use serde_derive::Deserialize; -use tauri::State; -use tracing::{debug, error, info, trace}; - -use crate::AppState; - -#[derive(Debug, Clone, Deserialize, Serialize)] -pub struct Config { - #[serde(default = "semicolon")] - pub prefix: String, - #[serde(default = "slash")] - pub split: String, - #[serde(default = "semicolon")] - pub command: String, - #[serde(default = "bool_true")] - pub ignore_prefix: bool, - #[serde(default)] - pub on_copy_mode: OnCopyMode, - #[serde(default = "bool_true")] - pub skip_url: bool, - #[serde(default = "bool_true")] - pub use_tsf_reconvert: bool, - #[serde(default = "bool_true")] - pub skip_on_out_of_vrc: bool, - #[serde(default = "bool_false")] - pub tsf_announce: bool, - #[serde(default = "bool_false")] - pub use_azookey_conversion: bool, - #[serde(default = "bool_false")] - pub azookey_announce: bool, -} - -impl Default for Config { - fn default() -> Self { - Self { - prefix: ";".to_string(), - split: "/".to_string(), - command: ";".to_string(), - ignore_prefix: true, - on_copy_mode: OnCopyMode::ReturnToChatbox, - skip_url: true, - use_tsf_reconvert: true, - skip_on_out_of_vrc: true, - tsf_announce: false, - use_azookey_conversion: false, - azookey_announce: false, - } - } -} - -#[inline] -fn slash() -> String { - String::from("/") -} -#[inline] -fn semicolon() -> String { - String::from(";") -} -#[inline] -fn bool_true() -> bool { - true -} -#[inline] -fn bool_false() -> bool { - false -} - -#[derive(Debug, Clone, Deserialize, Serialize)] -pub enum OnCopyMode { - ReturnToClipboard, - ReturnToChatbox, - SendDirectly, -} - -impl Default for OnCopyMode { - fn default() -> Self { - Self::ReturnToChatbox - } -} - -impl Config { - pub fn load() -> Result { - debug!("Loading config"); - std::fs::create_dir_all(Self::get_path()).unwrap(); - - let config_path = Self::get_path().join("config.yaml"); - if !Path::new(&config_path).exists() { - info!("Config file not found, generating default"); - Self::generate_default_config()?; - } - let mut file = File::open(&config_path)?; - let mut contents = String::new(); - file.read_to_string(&mut contents)?; - trace!("Raw config contents: {}", contents); - let mut config: Config = serde_yaml::from_str(&contents)?; - if !config.tsf_announce { - config.use_tsf_reconvert = true; - config.tsf_announce = true; - } - if !config.azookey_announce { - config.use_tsf_reconvert = false; - config.use_azookey_conversion = true; - config.azookey_announce = true; - } - debug!("Config loaded successfully"); - Ok(config) - } - - pub fn save(&self, state: State) -> Result<(), String> { - debug!("Saving config"); - std::fs::create_dir_all(Self::get_path()).unwrap(); - - let config_path = Self::get_path().join("config.yaml"); - let mut file = match File::create(&config_path) { - Ok(file) => file, - Err(e) => { - error!("Failed to create config file: {}", e); - return Err(format!("Failed to create config file: {}", e)); - } - }; - - match serde_yaml::to_string(&self) { - Ok(yaml) => { - trace!("Config to be saved: {}", yaml); - if let Err(e) = file.write_all(yaml.as_bytes()) { - error!("Failed to write config: {}", e); - return Err(format!("Failed to write config: {}", e)); - } - let mut app_config = state.config.lock().unwrap(); - *app_config = self.clone(); - info!("Config saved successfully"); - Ok(()) - } - Err(e) => { - error!("Failed to serialize config: {}", e); - Err(format!("Failed to serialize config: {}", e)) - } - } - } - - pub fn generate_default_config() -> Result<()> { - debug!("Generating default config"); - let config_path = Self::get_path().join("config.yaml"); - let mut file = File::create(&config_path)?; - let default_config = Config::default(); - let yaml = serde_yaml::to_string(&default_config).unwrap(); - file.write_all(yaml.as_bytes())?; - file.flush()?; - info!("Default config generated successfully"); - Ok(()) - } - - pub fn get_path() -> PathBuf { - let app_dirs = AppDirs::new(Some("vrclipboard-ime"), false).unwrap(); - let app_data = app_dirs.config_dir; - trace!("Config path: {:?}", app_data); - app_data - } -} diff --git a/src-tauri/src/conversion.rs b/src-tauri/src/conversion.rs deleted file mode 100644 index 6d1aed0..0000000 --- a/src-tauri/src/conversion.rs +++ /dev/null @@ -1,129 +0,0 @@ -use crate::{ - config::Config, - converter::converter::{get_custom_converter, Converter}, - STATE, -}; -use anyhow::Result; -use tracing::{debug, info, trace, warn}; - -pub struct ConversionBlock { - pub text: String, - pub converter: Box, -} - -pub struct Conversion; - -impl Conversion { - pub fn new() -> Self { - info!("Creating new Conversion instance"); - Self {} - } - - pub fn convert_text(&self, text: &str) -> Result { - info!("Converting text: {}", text); - trace!("Text length: {}", text.len()); - let blocks = self.split_text(text)?; - trace!("Number of blocks after splitting: {}", blocks.len()); - self.convert_blocks(blocks) - } - - pub fn convert_blocks(&self, blocks: Vec) -> Result { - debug!("Converting blocks"); - let mut result = String::new(); - for (index, block) in blocks.iter().enumerate() { - trace!("Processing block {}/{}", index + 1, blocks.len()); - let converted = self.convert_block(&block)?; - debug!( - "Converted block - {}: {} -> {}", - block.converter.name(), - block.text, - converted - ); - result.push_str(&converted); - trace!("Current result length: {}", result.len()); - } - trace!("Final conversion result: {}", result); - Ok(result) - } - - pub fn convert_block(&self, block: &ConversionBlock) -> Result { - trace!("Converting block: {}", block.text); - trace!("Using converter: {}", block.converter.name()); - if block.text.is_empty() { - trace!("Empty block, returning default string"); - return Ok(String::default()); - } - let result = block.converter.convert(&block.text); - trace!("Conversion result: {:?}", result); - result - } - - pub fn split_text(&self, text: &str) -> Result> { - debug!("Splitting text: {}", text); - let mut text = text.to_string(); - let mut blocks = Vec::new(); - let mut current_converter = 'r'; - - let config = self.get_config(); - trace!( - "Config command: {}, split: {}", - config.command, - config.split - ); - - if text.starts_with(&config.command) { - trace!("Text starts with command"); - text = text.split_off(1); - if !text.is_empty() { - current_converter = text.chars().next().unwrap_or('n'); - text = text.split_off(1); - trace!("Initial converter set to: {}", current_converter); - } - } - - for (i, command_splitted) in text.split(&config.command).enumerate() { - trace!("Processing split {}", i); - let mut command_splitted = command_splitted.to_string(); - if i != 0 { - if !command_splitted.is_empty() { - current_converter = command_splitted.chars().next().unwrap_or('n'); - command_splitted = command_splitted.split_off(1); - trace!("Converter changed to: {}", current_converter); - } - } - - for splitted in command_splitted.split(&config.split) { - trace!( - "Creating ConversionBlock - text: {}, converter: {}", - splitted, - current_converter - ); - let converter = get_custom_converter(current_converter).unwrap_or_else(|| { - warn!( - "Failed to get custom converter for '{}', using default", - current_converter - ); - get_custom_converter('n').unwrap() - }); - blocks.push(ConversionBlock { - text: splitted.to_string(), - converter, - }); - } - } - - debug!("Split text into {} blocks", blocks.len()); - trace!( - "Blocks: {:?}", - blocks.iter().map(|b| &b.text).collect::>() - ); - Ok(blocks) - } - - pub fn get_config(&self) -> Config { - trace!("Getting config"); - let config = STATE.lock().unwrap().clone(); - trace!("Config retrieved: {:?}", config); - config - } -} diff --git a/src-tauri/src/converter/calculator.rs b/src-tauri/src/converter/calculator.rs deleted file mode 100644 index 26d67a0..0000000 --- a/src-tauri/src/converter/calculator.rs +++ /dev/null @@ -1,31 +0,0 @@ -use calc::Context; -use tracing::{debug, info, trace}; - -use super::converter::Converter; - -pub struct CalculatorConverter; - -impl Converter for CalculatorConverter { - fn convert(&self, text: &str) -> anyhow::Result { - debug!("Evaluating expression: {}", text); - let mut ctx = Context::::default(); - let result = match ctx.evaluate(text) { - Ok(result) => { - let formatted = format!("{} = {}", text, result.to_string()); - info!("Evaluation successful: {}", formatted); - formatted - } - Err(e) => { - debug!("Evaluation failed: {}", e); - e.to_string() - } - }; - - Ok(result) - } - - fn name(&self) -> String { - trace!("Getting converter name"); - "calculator".to_string() - } -} diff --git a/src-tauri/src/converter/converter.rs b/src-tauri/src/converter/converter.rs deleted file mode 100644 index 415d5c0..0000000 --- a/src-tauri/src/converter/converter.rs +++ /dev/null @@ -1,29 +0,0 @@ -use anyhow::Result; -use tracing::{debug, trace}; - -use super::{ - calculator::CalculatorConverter, hiragana::HiraganaConverter, katakana::KatakanaConverter, - none_converter::NoneConverter, roman_to_kanji::RomanToKanjiConverter, -}; - -pub trait Converter { - fn convert(&self, text: &str) -> Result; - fn name(&self) -> String; -} - -pub fn get_custom_converter(prefix: char) -> Option> { - debug!("Getting custom converter for prefix: {}", prefix); - let converter = match prefix { - 'r' => Some(Box::new(RomanToKanjiConverter) as Box), - 'h' => Some(Box::new(HiraganaConverter) as Box), - 'c' => Some(Box::new(CalculatorConverter) as Box), - 'n' => Some(Box::new(NoneConverter) as Box), - 'k' => Some(Box::new(KatakanaConverter) as Box), - _ => None, - }; - match &converter { - Some(c) => debug!("Custom converter found: {}", c.name()), - None => trace!("No custom converter found for prefix: {}", prefix), - } - converter -} diff --git a/src-tauri/src/converter/hiragana.rs b/src-tauri/src/converter/hiragana.rs deleted file mode 100644 index 24178f2..0000000 --- a/src-tauri/src/converter/hiragana.rs +++ /dev/null @@ -1,37 +0,0 @@ -use tracing::{debug, info, trace}; -use windows::Win32::UI::Input::Ime::{ - FELANG_CMODE_HIRAGANAOUT, FELANG_CMODE_NOINVISIBLECHAR, FELANG_CMODE_PRECONV, FELANG_REQ_REV, -}; - -use crate::felanguage::FElanguage; - -use super::converter::Converter; - -#[derive(Clone)] -pub struct HiraganaConverter; - -impl Converter for HiraganaConverter { - fn convert(&self, text: &str) -> anyhow::Result { - debug!("Converting to hiragana: {}", text); - let felanguage = FElanguage::new()?; - trace!("FElanguage instance created"); - - let result = felanguage.j_morph_result( - text, - FELANG_REQ_REV, - FELANG_CMODE_HIRAGANAOUT | FELANG_CMODE_PRECONV | FELANG_CMODE_NOINVISIBLECHAR, - ); - - match &result { - Ok(converted) => info!("Conversion successful: {} -> {}", text, converted), - Err(e) => debug!("Conversion failed: {}", e), - } - - result - } - - fn name(&self) -> String { - trace!("Getting converter name"); - "hiragana".to_string() - } -} diff --git a/src-tauri/src/converter/katakana.rs b/src-tauri/src/converter/katakana.rs deleted file mode 100644 index 474f8fb..0000000 --- a/src-tauri/src/converter/katakana.rs +++ /dev/null @@ -1,37 +0,0 @@ -use tracing::{debug, info, trace}; -use windows::Win32::UI::Input::Ime::{ - FELANG_CMODE_KATAKANAOUT, FELANG_CMODE_NOINVISIBLECHAR, FELANG_CMODE_PRECONV, FELANG_REQ_REV, -}; - -use crate::felanguage::FElanguage; - -use super::converter::Converter; - -#[derive(Clone)] -pub struct KatakanaConverter; - -impl Converter for KatakanaConverter { - fn convert(&self, text: &str) -> anyhow::Result { - debug!("Converting to katakana: {}", text); - let felanguage = FElanguage::new()?; - trace!("FElanguage instance created"); - - let result = felanguage.j_morph_result( - text, - FELANG_REQ_REV, - FELANG_CMODE_KATAKANAOUT | FELANG_CMODE_PRECONV | FELANG_CMODE_NOINVISIBLECHAR, - ); - - match &result { - Ok(converted) => info!("Conversion successful: {} -> {}", text, converted), - Err(e) => debug!("Conversion failed: {}", e), - } - - result - } - - fn name(&self) -> String { - trace!("Getting converter name"); - "katakana".to_string() - } -} diff --git a/src-tauri/src/converter/mod.rs b/src-tauri/src/converter/mod.rs deleted file mode 100644 index f46301d..0000000 --- a/src-tauri/src/converter/mod.rs +++ /dev/null @@ -1,6 +0,0 @@ -pub mod calculator; -pub mod converter; -pub mod hiragana; -pub mod katakana; -mod none_converter; -pub mod roman_to_kanji; diff --git a/src-tauri/src/converter/none_converter.rs b/src-tauri/src/converter/none_converter.rs deleted file mode 100644 index 30faf3b..0000000 --- a/src-tauri/src/converter/none_converter.rs +++ /dev/null @@ -1,16 +0,0 @@ -use super::converter::Converter; -use tracing::{debug, trace}; - -pub struct NoneConverter; - -impl Converter for NoneConverter { - fn convert(&self, text: &str) -> anyhow::Result { - debug!("Converting with NoneConverter: {}", text); - Ok(text.to_string()) - } - - fn name(&self) -> String { - trace!("Getting converter name"); - "none".to_string() - } -} diff --git a/src-tauri/src/converter/roman_to_kanji.rs b/src-tauri/src/converter/roman_to_kanji.rs deleted file mode 100644 index 8236ddf..0000000 --- a/src-tauri/src/converter/roman_to_kanji.rs +++ /dev/null @@ -1,40 +0,0 @@ -use tracing::{debug, info, trace}; -use windows::Win32::UI::Input::Ime::{ - FELANG_CMODE_HIRAGANAOUT, FELANG_CMODE_NOINVISIBLECHAR, FELANG_CMODE_PRECONV, - FELANG_CMODE_ROMAN, FELANG_REQ_CONV, -}; - -use crate::felanguage::FElanguage; - -use super::converter::Converter; - -pub struct RomanToKanjiConverter; - -impl Converter for RomanToKanjiConverter { - fn convert(&self, text: &str) -> anyhow::Result { - debug!("Converting roman to kanji: {}", text); - let felanguage = FElanguage::new()?; - trace!("FElanguage instance created"); - - let result = felanguage.j_morph_result( - text, - FELANG_REQ_CONV, - FELANG_CMODE_HIRAGANAOUT - | FELANG_CMODE_ROMAN - | FELANG_CMODE_NOINVISIBLECHAR - | FELANG_CMODE_PRECONV, - ); - - match &result { - Ok(converted) => info!("Conversion successful: {} -> {}", text, converted), - Err(e) => debug!("Conversion failed: {}", e), - } - - result - } - - fn name(&self) -> String { - trace!("Getting converter name"); - "roman_to_kanji".to_string() - } -} diff --git a/src-tauri/src/dictionary.rs b/src-tauri/src/dictionary.rs deleted file mode 100644 index 9a33906..0000000 --- a/src-tauri/src/dictionary.rs +++ /dev/null @@ -1,142 +0,0 @@ -use std::{ - fs::File, - io::{Read, Write}, - path::PathBuf, -}; - -use anyhow::Result; -use serde::{Deserialize, Serialize}; -use tauri::State; -use tracing::{debug, error, info, trace}; -use regex::Regex; - -use crate::{ - config::Config, - converter::converter::{get_custom_converter, Converter}, - AppState, -}; - -#[derive(Debug, Clone, Deserialize, Serialize)] -pub enum ConversionMethod { - Replace, - None, - Converter(char), -} - -impl Default for ConversionMethod { - fn default() -> Self { - Self::None - } -} - -#[derive(Debug, Clone, Deserialize, Serialize)] -pub struct DictionaryEntry { - pub input: String, - pub method: ConversionMethod, - pub output: Option, - pub use_regex: bool, - pub priority: i32, -} - -impl Default for DictionaryEntry { - fn default() -> Self { - Self { - input: String::new(), - method: ConversionMethod::None, - output: None, - use_regex: false, - priority: 0, - } - } -} - -#[derive(Debug, Clone, Deserialize, Serialize)] -pub struct Dictionary { - pub entries: Vec, -} - -impl Default for Dictionary { - fn default() -> Self { - Self { - entries: Vec::new(), - } - } -} - -impl Dictionary { - pub fn load() -> Result { - debug!("Loading dictionary"); - std::fs::create_dir_all(Config::get_path())?; - - let dict_path = Self::get_path(); - if !dict_path.exists() { - info!("Dictionary file not found, generating default"); - Self::generate_default_dictionary()?; - } - let mut file = File::open(&dict_path)?; - let mut contents = String::new(); - file.read_to_string(&mut contents)?; - trace!("Raw dictionary contents: {}", contents); - let dictionary: Dictionary = serde_yaml::from_str(&contents)?; - debug!("Dictionary loaded successfully with {} entries", dictionary.entries.len()); - Ok(dictionary) - } - - pub fn save(&self, state: State) -> Result<(), String> { - debug!("Saving dictionary"); - std::fs::create_dir_all(Config::get_path()).unwrap(); - - let dict_path = Self::get_path(); - let mut file = match File::create(&dict_path) { - Ok(file) => file, - Err(e) => { - error!("Failed to create dictionary file: {}", e); - return Err(format!("Failed to create dictionary file: {}", e)); - } - }; - - match serde_yaml::to_string(&self) { - Ok(yaml) => { - trace!("Dictionary to be saved: {}", yaml); - if let Err(e) = file.write_all(yaml.as_bytes()) { - error!("Failed to write dictionary: {}", e); - return Err(format!("Failed to write dictionary: {}", e)); - } - let mut app_dictionary = state.dictionary.lock().unwrap(); - *app_dictionary = self.clone(); - info!("Dictionary saved successfully"); - Ok(()) - } - Err(e) => { - error!("Failed to serialize dictionary: {}", e); - Err(format!("Failed to serialize dictionary: {}", e)) - } - } - } - - pub fn generate_default_dictionary() -> Result<()> { - debug!("Generating default dictionary"); - let dict_path = Self::get_path(); - let mut file = File::create(&dict_path)?; - let default_dict = Dictionary::default(); - let yaml = serde_yaml::to_string(&default_dict).unwrap(); - file.write_all(yaml.as_bytes())?; - file.flush()?; - info!("Default dictionary generated successfully"); - Ok(()) - } - - pub fn get_path() -> PathBuf { - let path = Config::get_path().join("dictionary.yaml"); - trace!("Dictionary path: {:?}", path); - path - } - - pub fn apply_conversion(&self, text: &str) -> Result { - debug!("Applying dictionary conversions to: {}", text); - - - - todo!() - } -} \ No newline at end of file diff --git a/src-tauri/src/felanguage.rs b/src-tauri/src/felanguage.rs deleted file mode 100644 index 440daa4..0000000 --- a/src-tauri/src/felanguage.rs +++ /dev/null @@ -1,88 +0,0 @@ -use std::ptr; - -use anyhow::Result; -use tracing::{debug, error, info, trace}; -use windows::{ - core::{w, PCWSTR}, - Win32::{ - System::Com::{CLSIDFromProgID, CoCreateInstance, CLSCTX_ALL}, - UI::Input::Ime::IFELanguage, - }, -}; - -pub struct FElanguage { - ife: IFELanguage, -} - -impl Drop for FElanguage { - fn drop(&mut self) { - debug!("Dropping FElanguage instance"); - if let Err(e) = unsafe { self.ife.Close() } { - error!("Error closing IFELanguage: {:?}", e); - } - } -} - -impl FElanguage { - pub fn new() -> Result { - info!("Creating new FElanguage instance"); - let clsid = unsafe { - trace!("Getting CLSID for MSIME.Japan"); - CLSIDFromProgID(w!("MSIME.Japan"))? - }; - let ife: IFELanguage = unsafe { - trace!("Creating IFELanguage instance"); - CoCreateInstance(&clsid, None, CLSCTX_ALL)? - }; - unsafe { - trace!("Opening IFELanguage"); - ife.Open()? - }; - debug!("FElanguage instance created successfully"); - Ok(FElanguage { ife }) - } - - pub fn j_morph_result(&self, input: &str, request: u32, mode: u32) -> Result { - debug!( - "Calling j_morph_result with input: {}, request: {}, mode: {}", - input, request, mode - ); - let input_utf16: Vec = input.encode_utf16().chain(Some(0)).collect(); - let input_len = input_utf16.len(); - let input_pcwstr = PCWSTR::from_raw(input_utf16.as_ptr()); - - let mut result_ptr = ptr::null_mut(); - unsafe { - trace!("Calling GetJMorphResult"); - self.ife.GetJMorphResult( - request, - mode, - input_len as _, - input_pcwstr, - ptr::null_mut(), - &mut result_ptr, - )?; - } - - if result_ptr.is_null() { - error!("GetJMorphResult returned null pointer"); - return Err(anyhow::anyhow!("GetJMorphResult returned null pointer")); - } - - let result_struct = unsafe { &*result_ptr }; - let output_bstr_ptr = result_struct.pwchOutput; - let output_len = result_struct.cchOutput as usize; - - if output_bstr_ptr.is_null() { - error!("Output BSTR pointer is null"); - return Err(anyhow::anyhow!("Output BSTR pointer is null")); - } - - let output_slice = - unsafe { std::slice::from_raw_parts(output_bstr_ptr.as_ptr(), output_len) }; - let output_string = String::from_utf16_lossy(output_slice); - - trace!("j_morph_result output: {}", output_string); - Ok(output_string) - } -} diff --git a/src-tauri/src/handler.rs b/src-tauri/src/handler.rs deleted file mode 100644 index 5ef78aa..0000000 --- a/src-tauri/src/handler.rs +++ /dev/null @@ -1,254 +0,0 @@ -use std::net::UdpSocket; - -use crate::{ - azookey::{azookey_conversion::AzookeyConversion, client::AzookeyConversionClient}, - config::{Config, OnCopyMode}, - conversion::Conversion, - tsf_conversion::TsfConversion, - Log, SERVER_NAME, STATE, -}; -use anyhow::Result; -use chrono::Local; -use clipboard::{ClipboardContext, ClipboardProvider}; -use clipboard_master::{CallbackResult, ClipboardHandler}; -use regex::Regex; -use rosc::{encoder, OscMessage, OscPacket, OscType}; -use tauri::{AppHandle, Emitter}; -use tracing::{error, info, warn}; -use windows::Win32::System::DataExchange::GetClipboardOwner; - -pub struct ConversionHandler { - app_handle: AppHandle, - conversion: Conversion, - tsf_conversion: Option, - azookey_conversion: Option, - clipboard_ctx: ClipboardContext, - last_text: String, -} - -impl ConversionHandler { - pub fn new(app_handle: AppHandle) -> Result { - let conversion = Conversion::new(); - let tsf_conversion = None; - let azookey_conversion = None; - let clipboard_ctx = ClipboardProvider::new().unwrap(); - - info!("ConversionHandler created"); - Ok(Self { - app_handle, - conversion, - tsf_conversion, - azookey_conversion, - clipboard_ctx, - last_text: String::new(), - }) - } - - pub fn get_config(&self) -> Config { - STATE.lock().unwrap().clone() - } -} - -impl ConversionHandler { - fn clipboard_has_owner(&mut self) -> bool { - unsafe { GetClipboardOwner() }.0 != 0 - } - - fn azookey_conversion(&mut self, contents: &str, config: &Config) -> Result<()> { - if contents.chars().count() > 140 { - info!("Content exceeds 140 characters, skipping Azookey conversion"); - return Ok(()); - } - if contents.is_empty() { - info!("Empty content, skipping Azookey conversion"); - return Ok(()); - } - if config.skip_url - && Regex::new(r"(http://|https://){1}[\w\.\-/:\#\?=\&;%\~\+]+") - .unwrap() - .is_match(&contents) - { - info!("URL detected, skipping Azookey conversion"); - return Ok(()); - } - - if self.azookey_conversion.is_none() { - let server_name = SERVER_NAME.lock().unwrap().clone().unwrap(); - let client = AzookeyConversionClient::new(server_name.clone()); - let conversion = AzookeyConversion::new(client); - self.azookey_conversion = Some(conversion); - info!("Azookey conversion created"); - } - - let azookey_conversion = self.azookey_conversion.as_mut().unwrap(); - - let converted = azookey_conversion.convert(contents)?; - - info!("Azookey conversion: {} -> {}", contents, converted); - - self.last_text = contents.to_string().clone(); - - self.return_conversion(contents.to_string(), converted, config); - - Ok(()) - } - - fn tsf_conversion(&mut self, contents: &str, config: &Config) -> Result<()> { - if contents.chars().count() > 140 { - info!("Content exceeds 140 characters, skipping TSF conversion"); - return Ok(()); - } - if config.skip_url - && Regex::new(r"(http://|https://){1}[\w\.\-/:\#\?=\&;%\~\+]+") - .unwrap() - .is_match(&contents) - { - info!("URL detected, skipping TSF conversion"); - return Ok(()); - } - - if self.tsf_conversion.is_none() { - self.tsf_conversion = Some(TsfConversion::new()); - info!("TSF conversion created"); - } - - let tsf_conversion = self.tsf_conversion.as_mut().unwrap(); - - let converted = tsf_conversion.convert(contents)?; - - info!("TSF conversion: {} -> {}", contents, converted); - - self.last_text = contents.to_string().clone(); - - self.return_conversion(contents.to_string(), converted, config); - - Ok(()) - } - - fn return_conversion(&mut self, parsed_contents: String, converted: String, config: &Config) { - match config.on_copy_mode { - OnCopyMode::ReturnToClipboard => { - let mut count = 0; - while self.clipboard_ctx.set_contents(converted.clone()).is_err() { - if count > 4 { - warn!("Failed to set clipboard contents after 5 attempts"); - break; - } - count += 1; - } - info!("Conversion returned to clipboard"); - } - OnCopyMode::ReturnToChatbox => { - let sock = UdpSocket::bind("127.0.0.1:0").unwrap(); - let msg_buf = encoder::encode(&OscPacket::Message(OscMessage { - addr: "/chatbox/input".to_string(), - args: vec![ - OscType::String(converted.clone()), - OscType::Bool(false), - OscType::Bool(true), - ], - })) - .unwrap(); - - if let Err(e) = sock.send_to(&msg_buf, "127.0.0.1:9000") { - error!("Failed to send UDP packet: {}", e); - } else { - info!("Conversion returned to chatbox"); - } - } - OnCopyMode::SendDirectly => { - let sock = UdpSocket::bind("127.0.0.1:0").unwrap(); - let msg_buf = encoder::encode(&OscPacket::Message(OscMessage { - addr: "/chatbox/input".to_string(), - args: vec![ - OscType::String(converted.clone()), - OscType::Bool(true), - OscType::Bool(true), - ], - })) - .unwrap(); - - if let Err(e) = sock.send_to(&msg_buf, "127.0.0.1:9000") { - error!("Failed to send UDP packet: {}", e); - } else { - info!("Conversion sent directly"); - } - } - } - - let datetime = Local::now(); - if self - .app_handle - .emit( - "addLog", - Log { - time: datetime.format("%Y %m/%d %H:%M:%S").to_string(), - original: parsed_contents, - converted, - }, - ) - .is_err() - { - error!("App handle add log failed"); - } - } -} - -impl ClipboardHandler for ConversionHandler { - fn on_clipboard_change(&mut self) -> CallbackResult { - let config = self.get_config(); - if config.skip_on_out_of_vrc && self.clipboard_has_owner() { - info!("Clipboard has owner (maybe from outside of VRChat), skipping conversion"); - return CallbackResult::Next; - } - - if let Ok(mut contents) = self.clipboard_ctx.get_contents() { - if config.use_azookey_conversion { - if let Err(e) = self.azookey_conversion(&contents, &config) { - error!("Azookey conversion failed: {}", e); - } - return CallbackResult::Next; - } - - if config.use_tsf_reconvert { - if let Err(e) = self.tsf_conversion(&contents, &config) { - error!("TSF conversion failed: {}", e); - } - return CallbackResult::Next; - } - - if contents != self.last_text { - if contents.starts_with(&config.prefix) || config.ignore_prefix { - if config.skip_url - && Regex::new(r"(http://|https://){1}[\w\.\-/:\#\?=\&;%\~\+]+") - .unwrap() - .is_match(&contents) - { - info!("URL detected, skipping conversion"); - return CallbackResult::Next; - } - - let parsed_contents = if config.ignore_prefix { - contents - } else { - contents.split_off(1) - }; - let converted = match self.conversion.convert_text(&parsed_contents) { - Ok(converted) => converted, - Err(err) => { - error!("Conversion error: {:?}", err); - format!("Error: {:?}", err) - } - }; - - self.last_text = converted.clone(); - - self.return_conversion(parsed_contents, converted, &config); - } else { - self.last_text = contents; - } - } - } - CallbackResult::Next - } -} diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs new file mode 100644 index 0000000..d15436c --- /dev/null +++ b/src-tauri/src/lib.rs @@ -0,0 +1,19 @@ +// Learn more about Tauri commands at https://tauri.app/develop/calling-rust/ +#[tauri::command] +fn greet(name: &str) -> String { + format!("Hello, {}! You've been greeted from Rust!", name) +} + +#[tauri::command] +fn open(url: &str) { + open::that(url).unwrap(); +} + +#[cfg_attr(mobile, tauri::mobile_entry_point)] +pub fn run() { + tauri::Builder::default() + .plugin(tauri_plugin_opener::init()) + .invoke_handler(tauri::generate_handler![greet, open]) + .run(tauri::generate_context!()) + .expect("error while running tauri application"); +} diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index b6c0a3d..8417ae4 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -1,303 +1,6 @@ // Prevents additional console window on Windows in release, DO NOT REMOVE!! #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] -mod azookey; -mod com; -mod config; -mod conversion; -mod converter; -mod dictionary; -mod felanguage; -mod handler; -mod tauri_emit_subscriber; -mod transform_rule; -mod tsf; -mod tsf_availability; -mod tsf_conversion; -mod vr; - -use std::{ - io::{BufRead, BufReader}, - path::PathBuf, - process::Stdio, - sync::{Mutex, OnceLock, RwLock}, -}; - -use azookey::server::AzookeyConversionServer; -use once_cell::sync::Lazy; -use platform_dirs::AppDirs; -use serde::{Deserialize, Serialize}; -use tauri::{AppHandle, Manager, State}; - -use clipboard_master::Master; -use com::Com; -use config::Config; -use dictionary::Dictionary; -use handler::ConversionHandler; -use tauri_emit_subscriber::TauriEmitSubscriber; -use tauri_plugin_updater::UpdaterExt; -use tracing::{debug, error}; -use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt}; -use tsf_availability::check_tsf_availability; - -#[derive(Serialize, Deserialize, Debug, Clone)] -struct Log { - pub time: String, - pub original: String, - pub converted: String, -} - -struct AppState { - config: Mutex, - dictionary: Mutex, -} - -static STATE: Lazy> = Lazy::new(|| Mutex::new(Config::load().unwrap())); -static DICTIONARY: Lazy> = Lazy::new(|| Mutex::new(Dictionary::load().unwrap())); -static APP_HANDLE: OnceLock = OnceLock::new(); -static SERVER_PROCESS: Lazy>> = Lazy::new(|| Mutex::new(None)); - -#[tauri::command] -fn load_settings(state: State) -> Result { - match Config::load() { - Ok(config) => { - let mut app_config = state.config.lock().unwrap(); - *app_config = config.clone(); - Ok(config) - } - Err(e) => Err(format!("Failed to load settings: {}", e)), - } -} - -#[tauri::command] -fn save_settings(config: Config, state: State) -> Result<(), String> { - *STATE.lock().unwrap() = config.clone(); - config.save(state) -} - -#[tauri::command] -fn check_tsf_availability_command() -> Result { - debug!("Checking TSF availability"); - match check_tsf_availability() { - Ok(result) => { - debug!("TSF availability check result: {}", result); - Ok(result) - } - Err(e) => Err(format!("Failed to check TSF availability: {}", e)), - } -} - -#[tauri::command] -fn load_dictionary(state: State) -> Result { - match Dictionary::load() { - Ok(dictionary) => { - let mut app_dictionary = state.dictionary.lock().unwrap(); - *app_dictionary = dictionary.clone(); - Ok(dictionary) - } - Err(e) => Err(format!("Failed to load dictionary: {}", e)), - } -} - -#[tauri::command] -fn save_dictionary(dictionary: Dictionary, state: State) -> Result<(), String> { - *DICTIONARY.lock().unwrap() = dictionary.clone(); - dictionary.save(state).map_err(|e| e.to_string()) -} - -#[tauri::command] -fn open_ms_settings_regionlanguage_jpnime() -> Result<(), String> { - let _ = std::process::Command::new("cmd") - .args(&["/C", "start", "ms-settings:regionlanguage-jpnime"]) - .output() - .map_err(|e| format!("Failed to open MS Settings: {}", e))?; - Ok(()) -} - -#[tauri::command] -async fn check_update() -> Result { - if let Some(app_handle) = APP_HANDLE.get() { - match app_handle.updater() { - Ok(updater) => match updater.check().await { - Ok(Some(_)) => Ok(true), - Ok(None) => Ok(false), - Err(e) => { - error!("Failed to check for updates: {}", e); - Err(format!("Failed to check for updates: {}", e)) - } - }, - Err(e) => { - error!("Updater not available: {}", e); - Err("Updater not available".to_string()) - } - } - } else { - error!("App handle not set"); - Err("App handle not set".to_string()) - } -} - -#[tauri::command] -async fn register_manifest() -> Result<(), String> { - vr::create_vrmanifest().unwrap(); - vr::register_manifest_with_openvr().unwrap(); - Ok(()) -} - -fn start_server_process() -> String { - let exe_path = std::env::current_exe().unwrap(); - let server_path = exe_path.to_str().unwrap(); - - let mut command = std::process::Command::new(server_path); - command.arg("server"); - - let mut child = command.stdout(Stdio::piped()).spawn().unwrap(); - - let stdout = child.stdout.take().unwrap(); - let reader = BufReader::new(stdout); - - let mut server_name = String::new(); - for line in reader.lines() { - let line = line.unwrap(); - if line.starts_with("$") { - server_name = line[1..line.len() - 1].to_string(); - break; - } - } - - *SERVER_PROCESS.lock().unwrap() = Some(child); - - server_name -} - -fn cleanup_server_process() { - if let Some(mut child) = SERVER_PROCESS.lock().unwrap().take() { - debug!("Terminating server process"); - let _ = child.kill(); - let _ = child.wait(); - } -} - -static SERVER_NAME: Lazy>> = Lazy::new(|| Mutex::new(None)); - -struct ServerProcessGuard; - -impl Drop for ServerProcessGuard { - fn drop(&mut self) { - cleanup_server_process(); - } -} - -static _SERVER_GUARD: Lazy = Lazy::new(|| ServerProcessGuard); - -fn extract_dictionary() { - let self_exe_path = PathBuf::from(SELF_EXE_PATH.read().unwrap().as_str()); - let zip_path = self_exe_path - .parent() - .unwrap() - .join("AzooKeyDictionary.zip"); - let app_dirs = AppDirs::new(Some("vrclipboard-ime"), false).unwrap(); - let extract_path = app_dirs.config_dir.join("AzooKeyDictionary"); - if !extract_path.exists() { - std::fs::create_dir_all(&extract_path).unwrap(); - let mut zip = zip::ZipArchive::new(std::fs::File::open(zip_path).unwrap()).unwrap(); - zip.extract(&extract_path).unwrap(); - } -} - -pub static SELF_EXE_PATH: Lazy> = Lazy::new(|| RwLock::new(String::default())); - -#[tokio::main] -async fn main() { - let args = std::env::args().collect::>(); - - SELF_EXE_PATH.write().unwrap().push_str(&args[0]); - - if args.contains(&"server".to_string()) { - let server = AzookeyConversionServer::new(); - let server_name = &server.server_name; - println!("${}$", server_name); - server.server_loop(); - return; - } - - let server_name = start_server_process(); - SERVER_NAME.lock().unwrap().replace(server_name); - - Lazy::force(&_SERVER_GUARD); - - extract_dictionary(); - - tauri::Builder::default() - .plugin(tauri_plugin_shell::init()) - .plugin(tauri_plugin_updater::Builder::new().build()) - .manage(AppState { - config: Mutex::new(Config::load().unwrap_or_else(|_| { - Config::generate_default_config().expect("Failed to generate default config"); - Config::load().expect("Failed to load default config") - })), - dictionary: Mutex::new(Dictionary::load().unwrap_or_else(|_| { - Dictionary::generate_default_dictionary() - .expect("Failed to generate default dictionary"); - Dictionary::load().expect("Failed to load default dictionary") - })), - }) - .invoke_handler(tauri::generate_handler![ - load_settings, - save_settings, - check_tsf_availability_command, - open_ms_settings_regionlanguage_jpnime, - load_dictionary, - save_dictionary, - check_update, - register_manifest, - ]) - .setup(|app| { - APP_HANDLE.set(app.app_handle().to_owned()).unwrap(); - - let _span = tracing::span!(tracing::Level::INFO, "main"); - app.manage(STATE.lock().unwrap().clone()); - app.manage(DICTIONARY.lock().unwrap().clone()); - let app_handle = app.app_handle().clone(); - - let registry = tracing_subscriber::registry().with(TauriEmitSubscriber { - app_handle: app_handle.clone(), - }); - registry.init(); - - let update_handle = app_handle.clone(); - tauri::async_runtime::spawn(async move { - let _ = update_handle - .updater() - .unwrap() - .check() - .await - .map_err(|e| tracing::error!("Failed to check for updates: {}", e)); - }); - - std::thread::spawn(move || { - let _com = Com::new().unwrap(); - - let conversion_handler = ConversionHandler::new(app_handle).unwrap(); - - let mut master = Master::new(conversion_handler); - - master.run().unwrap(); - }); - - Ok(()) - }) - .on_window_event(|_window, event| match event { - tauri::WindowEvent::CloseRequested { .. } => { - cleanup_server_process(); - } - tauri::WindowEvent::Destroyed => { - cleanup_server_process(); - } - _ => {} - }) - .run(tauri::generate_context!()) - .expect("error while running tauri application"); - - cleanup_server_process(); +fn main() { + vrclipboard_ime_gui_lib::run() } diff --git a/src-tauri/src/tauri_emit_subscriber.rs b/src-tauri/src/tauri_emit_subscriber.rs deleted file mode 100644 index c8287c8..0000000 --- a/src-tauri/src/tauri_emit_subscriber.rs +++ /dev/null @@ -1,67 +0,0 @@ -use chrono::{Datelike, Timelike}; -use serde::{Deserialize, Serialize}; -use tauri::{AppHandle, Emitter}; -use tracing::Subscriber; -use tracing_subscriber::{registry::LookupSpan, Layer}; - -#[derive(Debug, Clone, Serialize, Deserialize)] -struct Event { - level: String, - message: String, - module_path: String, - timestamp: String, -} - -pub struct TauriEmitSubscriber { - pub app_handle: AppHandle, -} - -struct MessageExtractVisitor { - message: String, - module_path: String, -} - -impl tracing::field::Visit for MessageExtractVisitor { - fn record_debug(&mut self, field: &tracing::field::Field, value: &dyn std::fmt::Debug) { - if field.name() == "message" { - self.message = format!("{:?}", value); - } else if field.name() == "log.module_path" { - self.module_path = format!("{:?}", value); - } - } -} - -impl Layer for TauriEmitSubscriber -where - S: Subscriber + for<'a> LookupSpan<'a>, -{ - fn on_event(&self, event: &tracing::Event<'_>, _ctx: tracing_subscriber::layer::Context<'_, S>) { - - let mut visitor = MessageExtractVisitor { - message: String::new(), - module_path: String::new() - }; - - event.record(&mut visitor); - - let now = chrono::Local::now(); - let event = Event { - level: event.metadata().level().to_string(), - message: visitor.message, - module_path: format!("{}{}", event.metadata().module_path().unwrap_or_default(), visitor.module_path), - timestamp: format!("{}-{}-{} {}:{}:{}", now.year(), now.month(), now.day(), now.hour(), now.minute(), now.second()), - }; - - println!("[{} {}] {} {}", event.timestamp, event.level, event.module_path, event.message); - if self - .app_handle - .emit( - "log-event", - event - ) - .is_err() - { - println!("App handle add log failed"); - } - } -} \ No newline at end of file diff --git a/src-tauri/src/transform_rule.rs b/src-tauri/src/transform_rule.rs deleted file mode 100644 index ba5d1b3..0000000 --- a/src-tauri/src/transform_rule.rs +++ /dev/null @@ -1 +0,0 @@ -pub struct TransformRule {} diff --git a/src-tauri/src/tsf/function_provider.rs b/src-tauri/src/tsf/function_provider.rs deleted file mode 100644 index a35b1c1..0000000 --- a/src-tauri/src/tsf/function_provider.rs +++ /dev/null @@ -1,46 +0,0 @@ -use anyhow::Result; -use tracing::{debug, error, info}; -use windows::{ - core::Interface, - Win32::UI::TextServices::{ITfFnSearchCandidateProvider, ITfFunctionProvider}, -}; - -use super::search_candidate_provider::SearchCandidateProvider; - -pub struct FunctionProvider { - function_provider: ITfFunctionProvider, -} - -impl FunctionProvider { - pub fn new(function_provider: ITfFunctionProvider) -> Self { - debug!("Creating new FunctionProvider"); - Self { function_provider } - } - - pub fn get_search_candidate_provider(&self) -> Result { - debug!("Getting search candidate provider"); - let zeroed_guid = windows_core::GUID::zeroed(); - match unsafe { - self.function_provider - .GetFunction(&zeroed_guid, &ITfFnSearchCandidateProvider::IID) - } { - Ok(search_candidate_provider) => { - info!("Search candidate provider obtained successfully"); - match search_candidate_provider.cast() { - Ok(provider) => { - debug!("Successfully cast search candidate provider"); - Ok(SearchCandidateProvider::new(provider)) - } - Err(e) => { - error!("Failed to cast search candidate provider: {:?}", e); - Err(e.into()) - } - } - } - Err(e) => { - error!("Failed to get search candidate provider: {:?}", e); - Err(e.into()) - } - } - } -} diff --git a/src-tauri/src/tsf/input_processor_profile_mgr.rs b/src-tauri/src/tsf/input_processor_profile_mgr.rs deleted file mode 100644 index 95869d5..0000000 --- a/src-tauri/src/tsf/input_processor_profile_mgr.rs +++ /dev/null @@ -1,73 +0,0 @@ -use anyhow::Result; -use tracing::{debug, error, info}; -use windows::Win32::{ - System::Com::{CoCreateInstance, CLSCTX_INPROC_SERVER}, - UI::{ - TextServices::{ - HKL, - CLSID_TF_InputProcessorProfiles, ITfInputProcessorProfileMgr, GUID_TFCAT_TIP_KEYBOARD, - TF_INPUTPROCESSORPROFILE, TF_IPPMF_DONTCARECURRENTINPUTLANGUAGE, - TF_PROFILETYPE_INPUTPROCESSOR, - }, - }, -}; - -pub struct InputProcessorProfileMgr { - input_processor_profile_mgr: ITfInputProcessorProfileMgr, -} - -impl InputProcessorProfileMgr { - pub fn new() -> Result { - debug!("Creating new InputProcessorProfileMgr"); - let input_processor_profile_mgr = unsafe { - CoCreateInstance(&CLSID_TF_InputProcessorProfiles, None, CLSCTX_INPROC_SERVER)? - }; - info!("InputProcessorProfileMgr created successfully"); - Ok(InputProcessorProfileMgr { - input_processor_profile_mgr, - }) - } - - pub fn get_active_profile(&self) -> Result { - debug!("Getting active profile"); - let keyboard_guid = GUID_TFCAT_TIP_KEYBOARD; - let mut profile = TF_INPUTPROCESSORPROFILE::default(); - - match unsafe { - self.input_processor_profile_mgr - .GetActiveProfile(&keyboard_guid, &mut profile) - } { - Ok(_) => { - info!("Active profile retrieved successfully"); - Ok(profile) - } - Err(e) => { - error!("Failed to get active profile: {:?}", e); - Err(e.into()) - } - } - } - - pub fn activate_profile(&self, profile: &TF_INPUTPROCESSORPROFILE) -> Result<()> { - debug!("Activating profile: {:?}", profile); - match unsafe { - self.input_processor_profile_mgr.ActivateProfile( - TF_PROFILETYPE_INPUTPROCESSOR, - profile.langid, - &profile.clsid, - &profile.guidProfile, - HKL::default(), - TF_IPPMF_DONTCARECURRENTINPUTLANGUAGE, - ) - } { - Ok(_) => { - info!("Profile activated successfully"); - Ok(()) - } - Err(e) => { - error!("Failed to activate profile: {:?}", e); - Err(e.into()) - } - } - } -} diff --git a/src-tauri/src/tsf/mod.rs b/src-tauri/src/tsf/mod.rs deleted file mode 100644 index f887628..0000000 --- a/src-tauri/src/tsf/mod.rs +++ /dev/null @@ -1,35 +0,0 @@ -use anyhow::Result; -use tracing::{debug, error}; -use windows::Win32::UI::WindowsAndMessaging::{ - SystemParametersInfoW, SPI_SETTHREADLOCALINPUTSETTINGS, SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS, -}; - -pub mod function_provider; -pub mod input_processor_profile_mgr; -pub mod search_candidate_provider; -pub mod thread_mgr; - -pub fn set_thread_local_input_settings(thread_local_input_settings: bool) -> Result<()> { - debug!( - "Setting thread local input settings to: {}", - thread_local_input_settings - ); - let mut result = thread_local_input_settings; - match unsafe { - SystemParametersInfoW( - SPI_SETTHREADLOCALINPUTSETTINGS, - 0, - Some(&mut result as *mut _ as *const _ as *mut _), - SYSTEM_PARAMETERS_INFO_UPDATE_FLAGS(0), - ) - } { - Ok(_) => { - debug!("Successfully set thread local input settings"); - Ok(()) - } - Err(e) => { - error!("Failed to set thread local input settings: {:?}", e); - Err(e.into()) - } - } -} diff --git a/src-tauri/src/tsf/search_candidate_provider.rs b/src-tauri/src/tsf/search_candidate_provider.rs deleted file mode 100644 index 5f8dcd9..0000000 --- a/src-tauri/src/tsf/search_candidate_provider.rs +++ /dev/null @@ -1,83 +0,0 @@ -use anyhow::Result; -use tracing::{debug, error, info, trace}; -use windows::Win32::UI::TextServices::{ - ITfFnSearchCandidateProvider, TF_TMAE_NOACTIVATEKEYBOARDLAYOUT, -}; - -use super::{ - function_provider::FunctionProvider, input_processor_profile_mgr::InputProcessorProfileMgr, - thread_mgr::ThreadMgr, -}; - -pub struct SearchCandidateProvider { - search_candidate_provider: ITfFnSearchCandidateProvider, -} - -impl SearchCandidateProvider { - pub fn new(search_candidate_provider: ITfFnSearchCandidateProvider) -> Self { - debug!("Creating new SearchCandidateProvider"); - Self { - search_candidate_provider, - } - } - - pub fn create() -> Result { - info!("Creating SearchCandidateProvider"); - let profile_mgr = InputProcessorProfileMgr::new()?; - let profile = profile_mgr.get_active_profile()?; - debug!("Activating profile"); - profile_mgr.activate_profile(&profile)?; - - debug!("Creating ThreadMgr"); - let thread_mgr = ThreadMgr::new()?; - let _client_id = thread_mgr.activate_ex(TF_TMAE_NOACTIVATEKEYBOARDLAYOUT)?; - - debug!("Getting function provider"); - let function_provider = thread_mgr.get_function_provider(&profile.clsid)?; - - debug!("Getting search candidate provider"); - let search_candidate_provider = - FunctionProvider::new(function_provider).get_search_candidate_provider()?; - - info!("SearchCandidateProvider created successfully"); - Ok(search_candidate_provider) - } - - pub fn get_candidates(&self, input: &str, max: usize) -> Result> { - debug!("Getting candidates for input: {}, max: {}", input, max); - let input_utf16: Vec = input.encode_utf16().chain(Some(0)).collect(); - let input_bstr = windows_core::BSTR::from_wide(&input_utf16)?; - - let input_utf16: Vec = "".encode_utf16().chain(Some(0)).collect(); - let input_bstr_empty = windows_core::BSTR::from_wide(&input_utf16)?; - - trace!("Calling GetSearchCandidates"); - let candidates = unsafe { - self.search_candidate_provider - .GetSearchCandidates(&input_bstr, &input_bstr_empty)? - }; - let candidates_enum = unsafe { candidates.EnumCandidates()? }; - - let mut candidates = vec![None; max]; - let mut candidates_count = 0; - trace!("Enumerating candidates"); - unsafe { candidates_enum.Next(&mut candidates, &mut candidates_count)? }; - - candidates.resize(candidates_count as usize, None); - - let candidates: Vec = candidates - .iter() - .map(|candidate| unsafe { - match candidate.as_ref().unwrap().GetString() { - Ok(s) => s.to_string(), - Err(e) => { - error!("Failed to get candidate string: {:?}", e); - String::new() - } - } - }) - .collect(); - info!("Retrieved {} candidates", candidates.len()); - Ok(candidates) - } -} diff --git a/src-tauri/src/tsf/thread_mgr.rs b/src-tauri/src/tsf/thread_mgr.rs deleted file mode 100644 index 97b0b1d..0000000 --- a/src-tauri/src/tsf/thread_mgr.rs +++ /dev/null @@ -1,45 +0,0 @@ -use anyhow::Result; -use tracing::{debug, error, info}; -use windows::Win32::{ - System::Com::{CoCreateInstance, CLSCTX_INPROC_SERVER}, - UI::TextServices::{CLSID_TF_ThreadMgr, ITfFunctionProvider, ITfThreadMgr2}, -}; - -pub struct ThreadMgr { - pub thread_mgr: ITfThreadMgr2, -} - -impl ThreadMgr { - pub fn new() -> Result { - debug!("Creating new ThreadMgr"); - let thread_mgr = - unsafe { CoCreateInstance(&CLSID_TF_ThreadMgr, None, CLSCTX_INPROC_SERVER)? }; - info!("ThreadMgr created successfully"); - Ok(ThreadMgr { thread_mgr }) - } - - pub fn activate_ex(&self, flags: u32) -> Result { - debug!("Activating ThreadMgr with flags: {}", flags); - let mut client_id = 0; - unsafe { - self.thread_mgr - .ActivateEx(&mut client_id as *mut _ as *const _ as *mut _, flags)? - }; - info!("ThreadMgr activated with client_id: {}", client_id); - Ok(client_id) - } - - pub fn get_function_provider(&self, clsid: &windows_core::GUID) -> Result { - debug!("Getting function provider for CLSID: {:?}", clsid); - match unsafe { self.thread_mgr.GetFunctionProvider(clsid) } { - Ok(provider) => { - info!("Function provider obtained successfully"); - Ok(provider) - } - Err(e) => { - error!("Failed to get function provider: {:?}", e); - Err(e.into()) - } - } - } -} diff --git a/src-tauri/src/tsf_availability.rs b/src-tauri/src/tsf_availability.rs deleted file mode 100644 index bc72c33..0000000 --- a/src-tauri/src/tsf_availability.rs +++ /dev/null @@ -1,24 +0,0 @@ -use anyhow::Result; -use tracing::{error, info}; - -use crate::tsf::{search_candidate_provider::SearchCandidateProvider, set_thread_local_input_settings}; - -pub fn check_tsf_availability() -> Result { - info!("Checking TSF availability"); - - if let Err(e) = set_thread_local_input_settings(true) { - error!("Failed to set thread local input settings: {:?}", e); - return Ok(false); - } - - match SearchCandidateProvider::create() { - Ok(_) => { - info!("TSF is available"); - Ok(true) - } - Err(e) => { - error!("Failed to create SearchCandidateProvider: {:?}", e); - Ok(false) - } - } -} \ No newline at end of file diff --git a/src-tauri/src/tsf_conversion.rs b/src-tauri/src/tsf_conversion.rs deleted file mode 100644 index effcf72..0000000 --- a/src-tauri/src/tsf_conversion.rs +++ /dev/null @@ -1,237 +0,0 @@ -use crate::{ - converter::{ - converter::Converter, hiragana::HiraganaConverter, roman_to_kanji::RomanToKanjiConverter, - }, - tsf::{search_candidate_provider::SearchCandidateProvider, set_thread_local_input_settings}, -}; -use anyhow::Result; -use tracing::{debug, error, info, trace}; - -pub struct TsfConversion { - pub conversion_history: Vec, - pub clipboard_history: Vec, - pub now_reconvertion: bool, - pub target_text: String, - pub search_candidate_provider: SearchCandidateProvider, - pub reconversion_candidates: Option>, - pub reconversion_index: Option, - pub reconversion_prefix: Option, -} - -impl TsfConversion { - pub fn new() -> Self { - info!("Creating new TsfConversion instance"); - set_thread_local_input_settings(true).unwrap(); - - let instance = Self { - conversion_history: Vec::new(), - clipboard_history: Vec::new(), - now_reconvertion: false, - target_text: String::new(), - search_candidate_provider: SearchCandidateProvider::create().unwrap(), - reconversion_candidates: None, - reconversion_index: None, - reconversion_prefix: None, - }; - instance - } - - fn reset_conversion_state(&mut self) { - debug!("Resetting conversion state"); - trace!("Before reset - now_reconvertion: {}, reconversion_prefix: {:?}, reconversion_index: {:?}, reconversion_candidates: {:?}", - self.now_reconvertion, self.reconversion_prefix, self.reconversion_index, self.reconversion_candidates); - self.now_reconvertion = false; - self.reconversion_prefix = None; - self.reconversion_index = None; - self.reconversion_candidates = None; - trace!("After reset - now_reconvertion: {}, reconversion_prefix: {:?}, reconversion_index: {:?}, reconversion_candidates: {:?}", - self.now_reconvertion, self.reconversion_prefix, self.reconversion_index, self.reconversion_candidates); - } - - fn convert_roman_to_kanji(&mut self, text: &str) -> Result { - debug!("Converting roman to kanji: {}", text); - let o_minus_1 = self - .conversion_history - .get(if self.conversion_history.len() > 0 { - self.conversion_history.len() - 1 - } else { - 0 - }) - .unwrap_or(&("".to_string())) - .clone(); - trace!("Previous conversion (o_minus_1): {}", o_minus_1); - let mut first_diff_position = o_minus_1 - .chars() - .zip(text.chars()) - .position(|(a, b)| a != b); - - if o_minus_1 != text && first_diff_position.is_none() { - first_diff_position = Some(o_minus_1.chars().count()); - } - trace!("First difference position: {:?}", first_diff_position); - let diff = text - .chars() - .skip(first_diff_position.unwrap_or(0)) - .collect::(); - debug!("Difference to convert: {}", diff); - - let roman_to_kanji_converter = RomanToKanjiConverter; - let converted = roman_to_kanji_converter.convert(&diff)?; - trace!("Converted difference: {}", converted); - self.conversion_history.push( - o_minus_1 - .chars() - .zip(text.chars()) - .take_while(|(a, b)| a == b) - .map(|(a, _)| a) - .collect::() - + &converted, - ); - self.clipboard_history.push(text.to_string()); - info!( - "Roman to kanji conversion result: {}", - self.conversion_history.last().unwrap() - ); - trace!("Updated conversion history: {:?}", self.conversion_history); - trace!("Updated clipboard history: {:?}", self.clipboard_history); - Ok(self.conversion_history.last().unwrap().clone()) - } - - fn convert_tsf(&mut self, text: &str) -> Result { - debug!("Converting using TSF: {}", text); - self.now_reconvertion = true; - let mut diff_hiragana = String::new(); - let mut diff = String::new(); - if self.reconversion_prefix.is_none() { - let o_minus_2 = self - .conversion_history - .get(if self.conversion_history.len() > 1 { - self.conversion_history.len() - 2 - } else { - 0 - }) - .unwrap_or(&("".to_string())) - .clone(); - let i_minus_1 = self - .clipboard_history - .get(if self.clipboard_history.len() > 0 { - self.clipboard_history.len() - 1 - } else { - 0 - }) - .unwrap_or(&("".to_string())) - .clone(); - trace!("o_minus_2: {}, i_minus_1: {}", o_minus_2, i_minus_1); - let mut first_diff_position = i_minus_1 - .chars() - .zip(o_minus_2.chars()) - .position(|(a, b)| a != b); - trace!("First difference position: {:?}", first_diff_position); - if o_minus_2 != i_minus_1 && first_diff_position.is_none() { - first_diff_position = Some(o_minus_2.chars().count()); - } - diff = i_minus_1 - .chars() - .skip(first_diff_position.unwrap_or(0)) - .collect::(); - debug!("Difference to convert: {}", diff); - diff_hiragana = HiraganaConverter.convert(&diff)?; - trace!("Hiragana conversion: {}", diff_hiragana); - let prefix = i_minus_1 - .chars() - .zip(o_minus_2.chars()) - .take_while(|(a, b)| a == b) - .map(|(a, _)| a) - .collect::(); - self.reconversion_prefix = Some(prefix.clone()); - trace!("Set reconversion prefix: {:?}", self.reconversion_prefix); - } - - let candidates = self.reconversion_candidates.get_or_insert_with(|| { - debug!("Generating new candidates"); - let mut candidates = self - .search_candidate_provider - .get_candidates(&diff_hiragana, 10) - .unwrap_or_default(); - trace!("Initial candidates: {:?}", candidates); - if candidates.is_empty() { - candidates.push(diff_hiragana.clone()); - let roman_to_kanji_converter = RomanToKanjiConverter; - let roman_to_kanji = roman_to_kanji_converter.convert(&diff_hiragana).unwrap(); - candidates.push(roman_to_kanji); - } - candidates.insert(0, diff.to_string()); - trace!("Final candidates: {:?}", candidates); - candidates - }); - - let index = self.reconversion_index.get_or_insert(-1); - trace!("Current reconversion index: {}", index); - - if *index + 1 < candidates.len() as i32 { - *index += 1; - } else { - *index = 0; - } - debug!("Updated reconversion index: {}", index); - - self.conversion_history.push( - self.reconversion_prefix.clone().unwrap() - + &self.reconversion_candidates.as_ref().unwrap() - [self.reconversion_index.unwrap() as usize] - .clone(), - ); - self.clipboard_history.push(text.to_string()); - trace!("Updated conversion history: {:?}", self.conversion_history); - trace!("Updated clipboard history: {:?}", self.clipboard_history); - - while self.conversion_history.len() > 3 { - self.conversion_history.remove(0); - } - while self.clipboard_history.len() > 3 { - self.clipboard_history.remove(0); - } - trace!("Trimmed conversion history: {:?}", self.conversion_history); - trace!("Trimmed clipboard history: {:?}", self.clipboard_history); - - info!( - "TSF conversion result: {}", - self.conversion_history.last().unwrap() - ); - Ok(self.conversion_history.last().unwrap().clone()) - } - - pub fn convert(&mut self, text: &str) -> Result { - debug!("Starting conversion for: {}", text); - trace!("Current conversion history: {:?}", self.conversion_history); - trace!("Current clipboard history: {:?}", self.clipboard_history); - let same_as_last_conversion = text.to_string() - == self - .conversion_history - .last() - .unwrap_or(&("".to_string())) - .clone(); - trace!("Same as last conversion: {}", same_as_last_conversion); - - self.target_text = text.to_string(); - trace!("Set target text: {}", self.target_text); - - if !same_as_last_conversion && self.now_reconvertion { - debug!("Resetting conversion state due to new input"); - self.reset_conversion_state(); - } - - if !self.now_reconvertion && !same_as_last_conversion { - info!("Converting using roman_to_kanji"); - return self.convert_roman_to_kanji(text); - } - - if same_as_last_conversion || self.now_reconvertion { - info!("Converting using TSF"); - return self.convert_tsf(text); - } - - error!("Failed to convert: {}", text); - Err(anyhow::anyhow!("Failed to convert")) - } -} diff --git a/src-tauri/src/vr.rs b/src-tauri/src/vr.rs deleted file mode 100644 index 44029fa..0000000 --- a/src-tauri/src/vr.rs +++ /dev/null @@ -1,220 +0,0 @@ -use std::{fs, path::PathBuf, process::Command}; - -use serde_json::json; -use tracing::{debug, error, info, warn}; - -use crate::SELF_EXE_PATH; - -const APP_KEY: &str = "dev.mii.vrclipboardime"; - -pub fn create_vrmanifest() -> Result<(), Box> { - info!("Starting VR manifest file creation"); - - let self_exe_path = PathBuf::from(SELF_EXE_PATH.read().unwrap().as_str()); - debug!("Executable path: {}", self_exe_path.display()); - - let manifest = json!({ - "source": "builtin", - "applications": [{ - "app_key": APP_KEY, - "launch_type": "binary", - "binary_path_windows": self_exe_path.to_string_lossy(), - "is_dashboard_overlay": true, - "strings": { - "en_us": { - "name": "VRClipboard-IME", - "description": "VRClipboard-IME" - }, - "ja_jp": { - "name": "VRClipboard-IME", - "description": "VRClipboard-IME" - } - } - }] - }); - - debug!( - "Manifest content to be created:\n{}", - serde_json::to_string_pretty(&manifest)? - ); - - let exe_dir = self_exe_path - .parent() - .ok_or("Failed to get executable directory")? - .to_path_buf(); - - let manifest_path = exe_dir.join("vrclipboard-ime.vrmanifest"); - debug!("Manifest file path: {}", manifest_path.display()); - - let manifest_content = serde_json::to_string_pretty(&manifest)?; - fs::write(&manifest_path, &manifest_content)?; - info!( - "Successfully created VR manifest file: {}", - manifest_path.display() - ); - debug!( - "Write completed - File size: {} bytes", - manifest_content.len() - ); - - Ok(()) -} - -pub fn register_manifest_with_openvr() -> Result<(), Box> { - info!("Starting OpenVR manifest registration using proper method"); - - let self_exe_path = PathBuf::from(SELF_EXE_PATH.read().unwrap().as_str()); - let exe_dir = self_exe_path - .parent() - .ok_or("Failed to get executable directory")?; - let manifest_path = exe_dir.join("vrclipboard-ime.vrmanifest"); - - info!("Registering manifest file: {}", manifest_path.display()); - - let steam_config_dir = get_steam_config_directory()?; - let steam_dir = steam_config_dir - .parent() - .ok_or("Failed to get Steam directory")?; - - let vrcmd_path = steam_dir - .join("steamapps") - .join("common") - .join("SteamVR") - .join("bin") - .join("win64") - .join("vrcmd.exe"); - - if vrcmd_path.exists() { - info!("Using vrcmd.exe to register manifest"); - debug!("vrcmd.exe path: {}", vrcmd_path.display()); - - let output = Command::new(&vrcmd_path) - .args(&["--appmanifest", manifest_path.to_string_lossy().as_ref()]) - .output()?; - - debug!("vrcmd exit status: {}", output.status); - - if output.status.success() { - info!("Successfully registered manifest with vrcmd"); - } - } else { - return Err("vrcmd.exe not found".into()); - } - - info!("OpenVR manifest registration completed"); - Ok(()) -} - -fn get_steam_config_directory() -> Result> { - info!("Searching for Steam configuration directory"); - - let possible_paths = vec![PathBuf::from(r"C:\Program Files (x86)\Steam\config")]; - - debug!("Attempting to get Steam path from registry"); - if let Ok(steam_path) = get_steam_path_from_registry() { - info!("Found Steam path in registry: {}", steam_path.display()); - let config_path = steam_path.join("config"); - if config_path.exists() { - info!( - "Found Steam configuration directory: {}", - config_path.display() - ); - return Ok(config_path); - } else { - warn!( - "Configuration directory from registry does not exist: {}", - config_path.display() - ); - } - } else { - debug!("Failed to get Steam path from registry"); - } - - debug!("Searching in standard paths"); - for path in &possible_paths { - debug!("Checking path: {}", path.display()); - if path.exists() { - info!("Found Steam configuration directory: {}", path.display()); - return Ok(path.clone()); - } - } - - error!( - "Steam configuration directory not found. Checked paths: {:?}", - possible_paths - ); - Err("Steam configuration directory not found".into()) -} - -fn get_steam_path_from_registry() -> Result> { - debug!("Reading Steam path from registry"); - - use std::ffi::OsString; - use std::os::windows::ffi::OsStringExt; - - unsafe { - use std::ptr; - use winapi::um::winnt::*; - use winapi::um::winreg::*; - - let mut hkey = ptr::null_mut(); - let registry_path = "SOFTWARE\\WOW6432Node\\Valve\\Steam"; - debug!("Opening registry key: {}", registry_path); - - let result = RegOpenKeyExW( - HKEY_LOCAL_MACHINE, - "SOFTWARE\\WOW6432Node\\Valve\\Steam\0" - .encode_utf16() - .collect::>() - .as_ptr(), - 0, - KEY_READ, - &mut hkey, - ); - - if result == 0 { - debug!("Successfully opened registry key"); - let mut buffer = vec![0u16; 512]; - let mut buffer_size = (buffer.len() * 2) as u32; - - let result = RegQueryValueExW( - hkey, - "InstallPath\0" - .encode_utf16() - .collect::>() - .as_ptr(), - ptr::null_mut(), - ptr::null_mut(), - buffer.as_mut_ptr() as *mut u8, - &mut buffer_size, - ); - - RegCloseKey(hkey); - - if result == 0 { - let len = (buffer_size / 2) as usize; - if len > 0 && buffer[len - 1] == 0 { - buffer.truncate(len - 1); - } - let path_string = OsString::from_wide(&buffer) - .into_string() - .map_err(|_| "Failed to convert registry path to UTF-8")?; - let steam_path = PathBuf::from(path_string); - debug!( - "Retrieved Steam path from registry: {}", - steam_path.display() - ); - return Ok(steam_path); - } else { - warn!( - "Failed to read InstallPath value. Registry error code: {}", - result - ); - } - } else { - warn!("Failed to open registry key. Error code: {}", result); - } - } - - Err("Failed to get Steam path from registry".into()) -} diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 8a076a7..51c829d 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,58 +1,36 @@ { + "$schema": "https://schema.tauri.app/config/2", + "productName": "vrclipboard-ime-gui", + "version": "0.1.0", + "identifier": "dev.mii.vrclipboard-ime-gui", "build": { - "beforeDevCommand": "npm run dev", - "beforeBuildCommand": "npm run build", - "frontendDist": "../dist", - "devUrl": "http://localhost:1420" + "beforeDevCommand": "trunk serve", + "devUrl": "http://localhost:1420", + "beforeBuildCommand": "trunk build", + "frontendDist": "../dist" + }, + "app": { + "withGlobalTauri": true, + "windows": [ + { + "title": "vrclipboard-ime-gui", + "width": 800, + "height": 600 + } + ], + "security": { + "csp": null + } }, "bundle": { - "resources": { - "resources/*": "" - }, "active": true, "targets": "all", - "windows": { - "wix": { - "language": "ja-JP" - } - }, "icon": [ "icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico" - ], - "createUpdaterArtifacts": "v1Compatible" - }, - "productName": "vrclipboard-ime-gui", - "mainBinaryName": "vrclipboard-ime-gui", - "version": "1.12.0", - "identifier": "dev.mii.vrclipboard-ime", - "plugins": { - "updater": { - "pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEE5QTI2MDRDNTlENUY5OEMKUldTTStkVlpUR0NpcVIrMXZqOHFpNzNXMFVKT0d3aHJIWFlOUVJubGN5VTAzUkVwYW95bVlMYUQK", - "endpoints": [ - "https://r2-vrime.mii.dev/release.json" - ], - "windows": { - "installMode": "passive" - } - } - }, - "app": { - "security": { - "csp": null - }, - "windows": [ - { - "title": "VRClipboard IME", - "width": 800, - "height": 640, - "visible": true, - "decorations": false, - "transparent": true - } ] } -} \ No newline at end of file +} diff --git a/src/AboutComponent.tsx b/src/AboutComponent.tsx deleted file mode 100644 index 0b6052b..0000000 --- a/src/AboutComponent.tsx +++ /dev/null @@ -1,304 +0,0 @@ -import React, { useState } from 'react'; -import { Github, ExternalLink, Coffee, RefreshCw, Check, AlertCircle, Download, X } from 'lucide-react'; -import { check } from '@tauri-apps/plugin-updater'; -import { relaunch } from '@tauri-apps/plugin-process'; - -const AboutComponent: React.FC = () => { - const [updateStatus, setUpdateStatus] = useState<'idle' | 'checking' | 'available' | 'downloading' | 'notAvailable' | 'error'>('idle'); - const [downloadProgress, setDownloadProgress] = useState(0); - const [contentLength, setContentLength] = useState(0); - const [updateInfo, setUpdateInfo] = useState<{ version: string, date: string | undefined, body: string | undefined } | null>(null); - const [showUpdateDialog, setShowUpdateDialog] = useState(false); - - const openLink = (url: string) => { - window.open(url, '_blank', 'noopener,noreferrer'); - }; - - const checkForUpdates = async () => { - try { - setUpdateStatus('checking'); - const update = await check(); - - if (update) { - console.log(`更新が見つかりました: ${update.version} (${update.date}) - ${update.body}`); - setUpdateStatus('available'); - setUpdateInfo({ - version: update.version, - date: update.date, - body: update.body - }); - setShowUpdateDialog(true); - } else { - setUpdateStatus('notAvailable'); - setTimeout(() => setUpdateStatus('idle'), 3000); - } - } catch (error) { - console.error('Update check error:', error); - setUpdateStatus('error'); - setTimeout(() => setUpdateStatus('idle'), 3000); - } - }; - - const handleInstallUpdate = async () => { - try { - setUpdateStatus('downloading'); - const update = await check(); - if (!update) { - setUpdateStatus('error'); - setTimeout(() => setUpdateStatus('idle'), 3000); - return; - } - - let downloaded = 0; - - // 更新をダウンロードしてインストール - await update.downloadAndInstall((event: any) => { - switch (event.event) { - case 'Started': - setContentLength(event.data.contentLength); - console.log(`ダウンロード開始: ${event.data.contentLength} bytes`); - break; - case 'Progress': - downloaded += event.data.chunkLength; - const progress = (downloaded / contentLength) * 100; - setDownloadProgress(progress); - console.log(`ダウンロード中: ${downloaded} / ${contentLength} (${progress.toFixed(1)}%)`); - break; - case 'Finished': - console.log('ダウンロード完了'); - break; - } - }); - - console.log('更新がインストールされました'); - // アプリを再起動 - await relaunch(); - } catch (error) { - console.error('Update installation error:', error); - setUpdateStatus('error'); - setTimeout(() => setUpdateStatus('idle'), 3000); - } - }; - - const getUpdateButtonContent = () => { - switch (updateStatus) { - case 'idle': - return ( - <> - - 更新を確認 - - ); - case 'checking': - return ( - <> - - 確認中... - - ); - case 'available': - return ( - <> - - 更新が見つかりました - - ); - case 'downloading': - return ( - <> - - ダウンロード中... {Math.round(downloadProgress)}% - - ); - case 'notAvailable': - return ( - <> - - 最新バージョンです - - ); - case 'error': - return ( - <> - - エラーが発生しました - - ); - } - }; - - // 更新ダイアログの表示 - const UpdateDialog = () => { - if (!showUpdateDialog || !updateInfo) return null; - - return ( -
-
-
-

- アップデートが利用可能です -

- -
- -
-
- バージョン: - {updateInfo.version} -
-
- リリース日: - {updateInfo.date} -
-
- 変更内容: -
- {updateInfo.body} -
-
-
- -
- - -
-
-
- ); - }; - - return ( -
-

- - アプリケーション情報 -

- -
-
-
VRClipboard-IME
-
- v1.12.0 -
-
- -
-
-

- アプリケーション情報 -

-
-
- バージョン: - 1.12.0 -
-
- ライセンス: - MIT -
-
- 最終更新: - 2025年5月5日 -
-
- 技術: - Tauri, Rust, React, TypeScript -
-
-
- -
-

- 開発者 -

-
-
- 作者: - mii443 -
-
- VRChat: - みー mii -
-
- GitHub: - -
-
-
- -
-

- リンク -

-
- - - -
-
- - {updateStatus === 'downloading' && ( -
-
-
-
-
- )} -
-
- - {/* 更新ダイアログ */} - -
- ); -}; - -export default AboutComponent; \ No newline at end of file diff --git a/src/App.css b/src/App.css deleted file mode 100644 index 9014ab7..0000000 --- a/src/App.css +++ /dev/null @@ -1,64 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - -@layer base { - :root { - --scrollbar-thumb: #cbd5e1; - --scrollbar-track: transparent; - } - - .dark { - --scrollbar-thumb: #4b5563; - --scrollbar-track: transparent; - } - - html { - @apply antialiased text-sm; - } - - body { - @apply overflow-hidden; - } - - /* スクロールバーのカスタマイズ */ - ::-webkit-scrollbar { - @apply w-1.5; - } - - ::-webkit-scrollbar-track { - @apply bg-transparent; - } - - ::-webkit-scrollbar-thumb { - @apply bg-slate-200 hover:bg-slate-300 dark:bg-gray-600 dark:hover:bg-gray-500 transition-colors; - } -} - -[data-tauri-drag-region] { - cursor: move; - user-select: none; -} - -@layer components { - .input-field { - @apply w-full p-1.5 text-sm border rounded focus:border-indigo-400 dark:focus:border-indigo-500 outline-none transition-colors - dark:bg-gray-700 dark:border-gray-600 dark:text-gray-200; - } - - .btn { - @apply px-3 py-1 rounded text-sm font-medium focus:outline-none; - } - - .btn-primary { - @apply bg-indigo-500 text-white hover:bg-indigo-600 dark:bg-indigo-600 dark:hover:bg-indigo-700; - } - - .card { - @apply bg-white dark:bg-gray-800 rounded border border-gray-100 dark:border-gray-700 p-3 transition-colors; - } - - .card-title { - @apply text-sm font-medium mb-2 text-gray-700 dark:text-gray-300 border-b dark:border-gray-700 pb-1 transition-colors; - } -} \ No newline at end of file diff --git a/src/App.tsx b/src/App.tsx deleted file mode 100644 index bdb08fa..0000000 --- a/src/App.tsx +++ /dev/null @@ -1,342 +0,0 @@ -import { useState, useEffect } from "react"; -import { List, Settings, Terminal, Bug, Info, Check, Download, X } from 'lucide-react'; -import { listen } from "@tauri-apps/api/event"; -import { invoke } from "@tauri-apps/api/core"; -import { check } from '@tauri-apps/plugin-updater'; -import { relaunch } from '@tauri-apps/plugin-process'; -import "./App.css"; -import TitleBar from "./TitleBar"; -import SettingsComponent from "./SettingsComponent"; -import { ThemeProvider } from "./ThemeContext"; -import { LogProvider } from "./LogContext"; -import TerminalComponent from "./TerminalComponent"; -import AboutComponent from "./AboutComponent"; -import TsfSettingsModal from "./TsfSettingsModal"; -import { Config } from "./SettingsComponent"; -import DictionaryComponent from "./DictionaryComponent"; - -interface Log { - time: string; - original: string; - converted: string; -} - -const AppContent = () => { - const [logs, setLogs] = useState([]); - const [activeMenuItem, setActiveMenuItem] = useState('home'); - const [showTsfModal, setShowTsfModal] = useState(false); - const [currentSettings, setCurrentSettings] = useState(null); - const [_isTsfAvailable, setIsTsfAvailable] = useState(null); - const [showTsfSuccessMessage, setShowTsfSuccessMessage] = useState(false); - - // 更新関連のstate - const [updateAvailable, setUpdateAvailable] = useState(false); - const [updateDownloading, setUpdateDownloading] = useState(false); - const [updateProgress, setUpdateProgress] = useState(0); - const [contentLength, setContentLength] = useState(0); - const [updateInfo, setUpdateInfo] = useState<{version: string, date: string | undefined, body: string | undefined} | null>(null); - - useEffect(() => { - const unlisten = listen('addLog', (event) => { - setLogs(prevLogs => [{ time: event.payload.time, original: event.payload.original, converted: event.payload.converted }, ...prevLogs]); - }); - - return () => { - unlisten.then(f => f()); - } - }, []); - - // TSF設定のチェック - useEffect(() => { - const checkTsfSettings = async () => { - try { - const settings: Config = await invoke('load_settings'); - setCurrentSettings(settings); - - if (settings.use_tsf_reconvert) { - // TSF設定が有効な場合、TSFが利用可能か確認 - const available: boolean = await invoke('check_tsf_availability_command'); - setIsTsfAvailable(available); - - if (!available) { - setShowTsfModal(true); - } - } - } catch (error) { - console.error('TSF設定確認エラー:', error); - } - }; - - checkTsfSettings(); - }, []); - - // アプリ起動時に更新を自動チェック - useEffect(() => { - const checkForUpdates = async () => { - try { - const update = await check(); - if (update) { - console.log(`更新が見つかりました: ${update.version} (${update.date}) - ${update.body}`); - setUpdateAvailable(true); - setUpdateInfo({ - version: update.version, - date: update.date, - body: update.body - }); - } - } catch (error) { - console.error('更新チェックエラー:', error); - } - }; - - // アプリ起動から少し遅らせて更新チェック - const timer = setTimeout(() => { - checkForUpdates(); - }, 3000); - - return () => clearTimeout(timer); - }, []); - - // 設定保存関数 - const saveSettings = async (config: Config) => { - try { - await invoke('save_settings', { config }); - setCurrentSettings(config); - } catch (error) { - console.error('設定保存エラー:', error); - } - }; - - // 更新処理 - const handleInstallUpdate = async () => { - try { - setUpdateDownloading(true); - setUpdateAvailable(false); - - const update = await check(); - if (!update) { - setUpdateDownloading(false); - return; - } - - let downloaded = 0; - - await update.downloadAndInstall((event: any) => { - switch (event.event) { - case 'Started': - setContentLength(event.data.contentLength); - console.log(`ダウンロード開始: ${event.data.contentLength} bytes`); - break; - case 'Progress': - downloaded += event.data.chunkLength; - const progress = contentLength > 0 ? (downloaded / contentLength) * 100 : 0; - setUpdateProgress(progress); - console.log(`ダウンロード中: ${downloaded} / ${contentLength} (${progress.toFixed(1)}%)`); - break; - case 'Finished': - console.log('ダウンロード完了'); - break; - } - }); - - console.log('更新がインストールされました'); - // アプリを再起動 - await relaunch(); - } catch (error) { - console.error('更新インストールエラー:', error); - setUpdateDownloading(false); - } - }; - - const dismissUpdate = () => { - setUpdateAvailable(false); - }; - - const renderLogEntry = (log: { time: string; original: string; converted: string }, index: number) => ( -
-
{log.time}
-
-
{log.original}
-
-
{log.converted}
-
-
- ); - - const MenuItem = ({ icon, label, id }: { icon: React.ReactNode, label: string, id: string }) => ( - - ); - - const renderContent = () => { - switch (activeMenuItem) { - case 'home': - return ( -
-

- - 変換ログ -

-
- {logs.length > 0 ? ( - logs.map((log, index) => renderLogEntry(log, index)) - ) : ( -
- -

ログはまだありません

-

テキストを変換すると、ここに表示されます

-
- )} -
-
- ); - case 'settings': - return ; - case 'terminal': - return ; - case 'about': - return ; - case 'dictionary': - return ; - default: - return null; - } - }; - - return ( -
- -
- {/* サイドメニュー */} -
-
- } label="ログ" id="home" /> - } label="設定" id="settings" /> - {/*} label="辞書" id="dictionary" />*/} -
- {/* 下側にデバッグタブを配置 */} -
- } label="デバッグ" id="terminal" /> - } label="情報" id="about" /> -
-
- - {/* メインコンテンツ */} -
- {renderContent()} -
-
- - {/* TSF設定モーダル */} - {currentSettings && ( - setShowTsfModal(false)} - onSaveSettings={saveSettings} - currentSettings={currentSettings} - onTsfEnabled={() => { - setShowTsfSuccessMessage(true); - setTimeout(() => setShowTsfSuccessMessage(false), 5000); // 5秒後に非表示 - }} - /> - )} - - {/* TSF有効化成功メッセージ */} - {showTsfSuccessMessage && ( -
-
- -
-
-

TSF再変換が有効化されました

-

文字変換機能が拡張されました

-
-
- )} - - {/* 更新通知 */} - {updateAvailable && !updateDownloading && updateInfo && ( -
-
-

アップデートが利用可能です

- -
-
-
- バージョン: - {updateInfo.version} -
-
- リリース日: - {updateInfo.date} -
-
- 変更内容: -

- {updateInfo.body} -

-
-
-
- - -
-
- )} - - {/* ダウンロード中ダイアログ */} - {updateDownloading && ( -
-

ダウンロード中...

-
-
-
-

{Math.round(updateProgress)}%

-
- )} -
- ); -}; - -function App() { - return ( - - - - - - ); -} - -export default App; \ No newline at end of file diff --git a/src/DictionaryComponent.tsx b/src/DictionaryComponent.tsx deleted file mode 100644 index c47e0c2..0000000 --- a/src/DictionaryComponent.tsx +++ /dev/null @@ -1,636 +0,0 @@ -import React, { useState, useEffect, useRef } from 'react'; -import { invoke } from '@tauri-apps/api/core'; -import { Book, Save, Plus, Trash, ChevronUp, ChevronDown, AlertCircle, Check, Edit, AlignLeft, X } from 'lucide-react'; -import { - Dictionary, - DictionaryEntry, - ConversionMethod, - availableConverters, - getDefaultDictionaryEntry, - getConverterInfo, - convertToRustEntry, - convertFromRustEntry -} from './types/dictionary'; - -// 入力フィールド用の内部コンポーネント(フォーカスを保持するため) -const InputField: React.FC<{ - label: string; - value: string; - placeholder?: string; - onChange: (value: string) => void; - inputRef?: React.RefObject; -}> = ({ label, value, placeholder, onChange, inputRef }) => { - // ローカルステートで値を管理 - const [localValue, setLocalValue] = useState(value); - - // 親から渡された値が変わったらローカルステートを更新 - useEffect(() => { - setLocalValue(value); - }, [value]); - - const handleChange = (e: React.ChangeEvent) => { - const newValue = e.target.value; - setLocalValue(newValue); - onChange(newValue); - }; - - return ( -
- - -
- ); -}; - -// 数値入力フィールド用のコンポーネント -const NumberField: React.FC<{ - label: string; - value: number; - onChange: (value: number) => void; - description?: string; -}> = ({ label, value, onChange, description }) => { - // ローカルステートで値を管理 - const [localValue, setLocalValue] = useState(value.toString()); - - useEffect(() => { - setLocalValue(value.toString()); - }, [value]); - - const handleChange = (e: React.ChangeEvent) => { - const newValue = e.target.value; - setLocalValue(newValue); - onChange(parseInt(newValue) || 0); - }; - - return ( -
- - - {description && ( -

- {description} -

- )} -
- ); -}; - -// チェックボックス用のコンポーネント -const CheckboxField: React.FC<{ - id: string; - label: string; - checked: boolean; - onChange: (checked: boolean) => void; -}> = ({ id, label, checked, onChange }) => { - // ローカルステートで値を管理 - const [isChecked, setIsChecked] = useState(checked); - - useEffect(() => { - setIsChecked(checked); - }, [checked]); - - const handleChange = (e: React.ChangeEvent) => { - const newValue = e.target.checked; - setIsChecked(newValue); - onChange(newValue); - }; - - return ( -
- - -
- ); -}; - -const DictionaryComponent: React.FC = () => { - const [dictionary, setDictionary] = useState({ entries: [] }); - const [editIndex, setEditIndex] = useState(null); - const [showDialog, setShowDialog] = useState(false); - const [isMethodDropdownOpen, setIsMethodDropdownOpen] = useState(false); - const [isConverterDropdownOpen, setIsConverterDropdownOpen] = useState(false); - const [saveStatus, setSaveStatus] = useState<'idle' | 'saving' | 'success' | 'error'>('idle'); - - // 編集中のエントリを更新するためのフォースレンダリング用state - const [, forceUpdate] = useState({}); - - // Refを使って値を保持 - const entryRef = useRef(null); - - const methodDropdownRef = useRef(null); - const converterDropdownRef = useRef(null); - - // 辞書データの読み込み - useEffect(() => { - loadDictionary(); - }, []); - - // ドロップダウン外のクリックを検知して閉じる - useEffect(() => { - const handleClickOutside = (event: MouseEvent) => { - if (methodDropdownRef.current && !methodDropdownRef.current.contains(event.target as Node)) { - setIsMethodDropdownOpen(false); - } - if (converterDropdownRef.current && !converterDropdownRef.current.contains(event.target as Node)) { - setIsConverterDropdownOpen(false); - } - }; - - document.addEventListener('mousedown', handleClickOutside); - return () => { - document.removeEventListener('mousedown', handleClickOutside); - }; - }, []); - - const loadDictionary = async () => { - try { - const loadedDictionary: any = await invoke('load_dictionary'); - - // Rust形式からTypeScript形式に変換 - const entriesWithPriority = loadedDictionary.entries.map((entry: any, index: number) => { - const convertedEntry = convertFromRustEntry(entry); - // priorityが設定されていない場合はデフォルト値を設定 - if (convertedEntry.priority === undefined) { - convertedEntry.priority = index; - } - return convertedEntry; - }); - - setDictionary({ entries: entriesWithPriority }); - } catch (error) { - console.error('Failed to load dictionary:', error); - } - }; - - const saveDictionary = async (dict: Dictionary) => { - setSaveStatus('saving'); - try { - // TypeScript形式からRust形式に変換 - const rustDict = { - entries: dict.entries.map(entry => convertToRustEntry(entry)) - }; - - await invoke('save_dictionary', { dictionary: rustDict }); - setSaveStatus('success'); - setTimeout(() => setSaveStatus('idle'), 2000); - } catch (error) { - console.error('Failed to save dictionary:', error); - setSaveStatus('error'); - setTimeout(() => setSaveStatus('idle'), 3000); - } - }; - - const handleAddEntry = () => { - entryRef.current = getDefaultDictionaryEntry(); - setEditIndex(null); - setShowDialog(true); - // 強制的に再レンダリング - forceUpdate({}); - }; - - const handleEditEntry = (entry: DictionaryEntry, index: number) => { - entryRef.current = {...entry}; - setEditIndex(index); - setShowDialog(true); - // 強制的に再レンダリング - forceUpdate({}); - }; - - const handleDeleteEntry = (index: number) => { - const newEntries = [...dictionary.entries]; - newEntries.splice(index, 1); - const newDict = { ...dictionary, entries: newEntries }; - setDictionary(newDict); - saveDictionary(newDict); - }; - - const handleSaveEntry = () => { - if (!entryRef.current) return; - - const newEntries = [...dictionary.entries]; - - // 新規追加の場合 - if (editIndex === null) { - newEntries.push(entryRef.current); - } else { - // 編集の場合 - newEntries[editIndex] = entryRef.current; - } - - const newDict = { ...dictionary, entries: newEntries }; - setDictionary(newDict); - saveDictionary(newDict); - - // ダイアログを閉じて状態をリセット - closeDialog(); - }; - - const closeDialog = () => { - setShowDialog(false); - setIsMethodDropdownOpen(false); - setIsConverterDropdownOpen(false); - entryRef.current = null; - }; - - const handleChangePriority = (index: number, direction: 'up' | 'down') => { - if (dictionary.entries.length <= 1) return; - - const newEntries = [...dictionary.entries]; - const entry = {...newEntries[index]}; - - if (direction === 'up' && index > 0) { - const prevEntry = {...newEntries[index - 1]}; - const tempPriority = prevEntry.priority; - prevEntry.priority = entry.priority; - entry.priority = tempPriority; - - // 実際の配列の順序も変更 - newEntries[index] = prevEntry; - newEntries[index - 1] = entry; - } else if (direction === 'down' && index < newEntries.length - 1) { - const nextEntry = {...newEntries[index + 1]}; - const tempPriority = nextEntry.priority; - nextEntry.priority = entry.priority; - entry.priority = tempPriority; - - // 実際の配列の順序も変更 - newEntries[index] = nextEntry; - newEntries[index + 1] = entry; - } - - const newDict = { ...dictionary, entries: newEntries }; - setDictionary(newDict); - saveDictionary(newDict); - }; - - // 入力フィールドの値を更新(フォーカスを失わないようRef経由で更新) - const handleChangeEntryField = (field: K, value: DictionaryEntry[K]) => { - if (!entryRef.current) return; - - // RefのDictionaryEntryをディープコピー - const updatedEntry = { ...entryRef.current }; - - // フィールドの値を更新 - updatedEntry[field] = value as DictionaryEntry[K]; - - // 変換方法がReplace以外の場合はoutputをnullに - if (field === 'method' && value !== ConversionMethod.Replace) { - updatedEntry.output = undefined; - } - - // 変換方法がConverterの場合はconverter_charをデフォルト値に - if (field === 'method' && value === ConversionMethod.Converter && !updatedEntry.converter_char) { - updatedEntry.converter_char = 'r'; - } - - // 更新したEntryをRefに保存 - entryRef.current = updatedEntry; - - // UIを強制的に更新(ドロップダウンメニュー表示/非表示の対応のため) - if (field === 'method' || field === 'converter_char') { - forceUpdate({}); - } - }; - - const handleSelectMethod = (method: ConversionMethod) => { - handleChangeEntryField('method', method); - setIsMethodDropdownOpen(false); - }; - - const handleSelectConverter = (converterId: string) => { - handleChangeEntryField('converter_char', converterId); - setIsConverterDropdownOpen(false); - }; - - const getMethodLabel = (method: ConversionMethod, converterChar?: string) => { - switch(method) { - case ConversionMethod.Replace: - return '置き換え'; - case ConversionMethod.None: - return '無変換'; - case ConversionMethod.Converter: - if (converterChar) { - const converter = getConverterInfo(converterChar); - return converter ? `変換: ${converter.name}` : '変換'; - } - return '変換'; - default: - return method; - } - }; - - const SaveStatusIndicator = () => { - switch (saveStatus) { - case 'saving': - return 保存中; - case 'success': - return 保存完了; - case 'error': - return 保存失敗; - default: - return null; - } - }; - - // 辞書エントリダイアログ - const EntryDialog = () => { - if (!showDialog || !entryRef.current) return null; - - const entry = entryRef.current; - - return ( -
-
-
-

- {editIndex !== null ? '辞書エントリの編集' : '新しい辞書エントリ'} -

- -
- -
- handleChangeEntryField('input', value)} - /> - - handleChangeEntryField('use_regex', checked)} - /> - -
- -
setIsMethodDropdownOpen(!isMethodDropdownOpen)} - > - {getMethodLabel(entry.method as ConversionMethod, entry.converter_char)} - -
- {isMethodDropdownOpen && ( -
-
handleSelectMethod(ConversionMethod.Replace)} - > -
- {entry.method === ConversionMethod.Replace && } - - 置き換え - -
-
-
handleSelectMethod(ConversionMethod.None)} - > -
- {entry.method === ConversionMethod.None && } - - 無変換 - -
-
-
handleSelectMethod(ConversionMethod.Converter)} - > -
- {entry.method === ConversionMethod.Converter && } - - 変換 - -
-
-
- )} -
- - {entry.method === ConversionMethod.Converter && ( -
- -
setIsConverterDropdownOpen(!isConverterDropdownOpen)} - > - - {entry.converter_char - ? getConverterInfo(entry.converter_char)?.name || 'ローマ字→漢字' - : 'ローマ字→漢字'} - - -
- {isConverterDropdownOpen && ( -
- {availableConverters.map(converter => ( -
handleSelectConverter(converter.id)} - > -
- {entry.converter_char === converter.id && } - - {converter.name} - {converter.description} - -
-
- ))} -
- )} -
- )} - - {entry.method === ConversionMethod.Replace && ( - handleChangeEntryField('output', value)} - /> - )} - - handleChangeEntryField('priority', value)} - description="数値が大きいほど優先度が高くなります。" - /> -
- -
- - -
-
-
- ); - }; - - return ( -
-
- -

- - 辞書 -

-
- - -
-
- - -
- {dictionary.entries.length > 0 ? ( -
- - - - - - - - - - - - {dictionary.entries.map((entry, index) => ( - - - - - - - - ))} - -
優先度変換対象変換方法変換後操作
-
- {entry.priority} -
- - -
-
-
-
- {entry.use_regex && ( - 正規表現 - )} - {entry.input} -
-
- {getMethodLabel(entry.method as ConversionMethod, entry.converter_char)} - - {entry.method === ConversionMethod.Replace ? entry.output : '-'} - -
- - -
-
-
- ) : ( -
- -

辞書エントリがありません

-

「新規追加」ボタンから辞書エントリを追加してください

- -
- )} -
- - {/* エントリ編集ダイアログ */} - -
- ); -}; - -export default DictionaryComponent; \ No newline at end of file diff --git a/src/LogContext.tsx b/src/LogContext.tsx deleted file mode 100644 index 3b9a7a0..0000000 --- a/src/LogContext.tsx +++ /dev/null @@ -1,69 +0,0 @@ -import React, { createContext, useState, useContext, useEffect } from 'react'; -import { listen } from '@tauri-apps/api/event'; - -export interface LogMessage { - level: 'info' | 'warn' | 'error' | 'debug' | 'trace'; - message: string; - module_path: string; - timestamp: string; -} - -export interface LogContextType { - logs: LogMessage[]; - clearLogs: () => void; -} - -export const LogContext = createContext(undefined); - -export const LogProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => { - const [logs, setLogs] = useState([]); - - useEffect(() => { - // グローバルにログイベントを監視 - const setupLogListener = async () => { - try { - // log-eventイベントのリスナーを設定 - const unlisten = await listen('log-event', (event) => { - setLogs(prev => [...prev, event.payload]); - }); - - // クリーンアップ関数を返す - return () => { - unlisten(); - }; - } catch (error) { - console.error('Failed to set up log listener:', error); - return () => {}; - } - }; - - // リスナーをセットアップし、その結果をPromiseとして保持 - const unlistenPromise = setupLogListener(); - - // コンポーネントのアンマウント時にリスナーを解除 - return () => { - unlistenPromise.then(cleanupFn => cleanupFn()).catch(err => { - console.error('Error cleaning up event listener:', err); - }); - }; - }, []); - - const clearLogs = () => { - setLogs([]); - }; - - return ( - - {children} - - ); -}; - -// カスタムフック -export const useLogs = (): LogContextType => { - const context = useContext(LogContext); - if (context === undefined) { - throw new Error('useLogs must be used within a LogProvider'); - } - return context; -}; \ No newline at end of file diff --git a/src/SettingsComponent.tsx b/src/SettingsComponent.tsx deleted file mode 100644 index 2ed2320..0000000 --- a/src/SettingsComponent.tsx +++ /dev/null @@ -1,457 +0,0 @@ -import React, { useState, useEffect, useRef } from 'react'; -import { invoke } from '@tauri-apps/api/core'; -import { ChevronDown, Settings, Save, AlertCircle, Check, Download } from 'lucide-react'; - -export interface Config { - prefix: string; - split: string; - command: string; - ignore_prefix: boolean; - on_copy_mode: OnCopyMode; - skip_url: boolean; - use_tsf_reconvert: boolean; - use_azookey_conversion: boolean; // 新しい設定を追加 - skip_on_out_of_vrc: boolean; - tsf_announce?: boolean; -} - -export enum OnCopyMode { - ReturnToClipboard = 'ReturnToClipboard', - ReturnToChatbox = 'ReturnToChatbox', - SendDirectly = 'SendDirectly' -} - -interface InputFieldProps { - name: string; - label: string; - value: string; - onChange: (e: React.ChangeEvent) => void; - disabled?: boolean; - description?: string; -} - -const InputField: React.FC = ({ name, label, value, onChange, disabled, description }) => ( -
- - - {description && ( -

{description}

- )} -
-); - -interface CheckboxFieldProps { - id: string; - name: string; - label: React.ReactNode; - checked: boolean; - onChange: (e: React.ChangeEvent) => void; - disabled?: boolean; -} - -const CheckboxField: React.FC = ({ id, name, label, checked, onChange, disabled }) => ( -
-
-
- -
-
- -
-
-
-); - -interface SettingsComponentProps { - setShowTsfModal: (show: boolean) => void; - currentSettings: Config | null; - onSaveSettings: (config: Config) => Promise; -} - -const SettingsComponent: React.FC = ({ - setShowTsfModal, - currentSettings, - onSaveSettings -}) => { - const [settings, setSettings] = useState({ - prefix: ';', - split: '/', - command: ';', - ignore_prefix: false, - on_copy_mode: OnCopyMode.ReturnToChatbox, - skip_url: true, - use_tsf_reconvert: false, - use_azookey_conversion: false, // 初期値を追加 - skip_on_out_of_vrc: true, - }); - const [isOpen, setIsOpen] = useState(false); - const [saveStatus, setSaveStatus] = useState<'idle' | 'saving' | 'success' | 'error'>('idle'); - const [manifestStatus, setManifestStatus] = useState<'idle' | 'registering' | 'success' | 'error'>('idle'); - const dropdownRef = useRef(null); - - useEffect(() => { - loadSettings(); - document.addEventListener('mousedown', handleClickOutside); - return () => { - document.removeEventListener('mousedown', handleClickOutside); - }; - }, []); - - // 親コンポーネントから新しい設定が渡されたら更新する - useEffect(() => { - if (currentSettings) { - setSettings(currentSettings); - } - }, [currentSettings]); - - const loadSettings = async () => { - try { - const loadedSettings: Config = await invoke('load_settings'); - setSettings(loadedSettings); - } catch (error) { - console.error('Failed to load settings:', error); - } - }; - - const saveSettings = async (newSettings: Config) => { - setSaveStatus('saving'); - try { - if (onSaveSettings) { - await onSaveSettings(newSettings); - } else { - // 後方互換性のために残す - await invoke('save_settings', { config: newSettings }); - } - setSaveStatus('success'); - setTimeout(() => setSaveStatus('idle'), 2000); - } catch (error) { - console.error('Failed to save settings:', error); - setSaveStatus('error'); - setTimeout(() => setSaveStatus('idle'), 3000); - } - }; - - const handleChange = (e: React.ChangeEvent) => { - const { name, value, type, checked } = e.target; - const newSettings = { - ...settings, - [name]: type === 'checkbox' ? checked : value - }; - setSettings(newSettings); - saveSettings(newSettings); - }; - - // 変換方式の変更を処理する関数(TSFとAzooKeyの排他制御) - const handleConversionChange = async (e: React.ChangeEvent) => { - const { name, checked } = e.target; - - // TSF再変換が選択された場合 - if (name === "use_tsf_reconvert" && checked) { - try { - const available: boolean = await invoke('check_tsf_availability_command'); - if (!available && setShowTsfModal) { - setShowTsfModal(true); - return; - } - } catch (error) { - console.error('TSF availability check failed:', error); - return; - } - - // TSFがオンになったらAzooKeyをオフにする - const newSettings = { - ...settings, - use_tsf_reconvert: true, - use_azookey_conversion: false - }; - setSettings(newSettings); - saveSettings(newSettings); - } - // AzooKey変換が選択された場合 - else if (name === "use_azookey_conversion" && checked) { - // AzooKeyがオンになったらTSFをオフにする - const newSettings = { - ...settings, - use_azookey_conversion: true, - use_tsf_reconvert: false - }; - setSettings(newSettings); - saveSettings(newSettings); - } - // どちらかがオフになった場合はそのまま状態を更新 - else { - const newSettings = { - ...settings, - [name]: checked - }; - setSettings(newSettings); - saveSettings(newSettings); - } - }; - - const handleSelectChange = (value: OnCopyMode) => { - const newSettings = { ...settings, on_copy_mode: value }; - setSettings(newSettings); - setIsOpen(false); - saveSettings(newSettings); - }; - - const handleClickOutside = (event: MouseEvent) => { - if (dropdownRef.current && !dropdownRef.current.contains(event.target as Node)) { - setIsOpen(false); - } - }; - - const getOnCopyModeLabel = (mode: OnCopyMode) => { - switch (mode) { - case OnCopyMode.ReturnToClipboard: - return 'クリップボードへ送信'; - case OnCopyMode.ReturnToChatbox: - return 'チャットボックスへ送信'; - case OnCopyMode.SendDirectly: - return '直接チャットへ送信'; - } - }; - - const SaveStatusIndicator = () => { - switch (saveStatus) { - case 'saving': - return 保存中; - case 'success': - return 保存完了; - case 'error': - return 保存失敗; - default: - return null; - } - }; - - const isInputDisabled = () => { - return settings.use_tsf_reconvert || settings.use_azookey_conversion; - }; - - const handleRegisterManifest = async () => { - setManifestStatus('registering'); - try { - await invoke('register_manifest'); - setManifestStatus('success'); - setTimeout(() => setManifestStatus('idle'), 3000); - } catch (error) { - console.error('Failed to register manifest:', error); - setManifestStatus('error'); - setTimeout(() => setManifestStatus('idle'), 3000); - } - }; - - const ManifestStatusIndicator = () => { - switch (manifestStatus) { - case 'registering': - return 登録中; - case 'success': - return 登録完了; - case 'error': - return 登録失敗; - default: - return null; - } - }; - - return ( -
-
-

- - 設定 -

- -
- -
-
-
-

基本設定

- - - - - - - - - -
- -
setIsOpen(!isOpen)} - > - {getOnCopyModeLabel(settings.on_copy_mode)} - -
- {isOpen && ( -
- {Object.values(OnCopyMode).map((mode) => ( -
handleSelectChange(mode)} - > -
- {settings.on_copy_mode === mode && } - - {getOnCopyModeLabel(mode)} - -
-
- ))} -
- )} -
-
- -
-

詳細設定

- - - - - -
-

高度な変換方式

- -
- - AzooKey変換 - - } - checked={settings.use_azookey_conversion} - onChange={handleConversionChange} - /> -

- azooKey変換機能を使用します。有効にすると区切り、モード変更、開始文字が無効化されます。
- CPU負荷は高くなりますが、変換精度が向上します。 -

-
- -
- - TSF再変換 - - } - checked={settings.use_tsf_reconvert} - onChange={handleConversionChange} - /> -

- 非推奨です。
- Windows10/11では「以前のバージョンの Microsoft IME を使う」を有効化する必要があります。有効にすると区切り、モード変更、開始文字が無効化されます。 -

-
-
- -
-

SteamVR連携

-
-
-

- オーバーレイアプリケーションとして登録します -

-
-
- -
- -
-
-
-
-
-
-
-
- ); -}; - -export default SettingsComponent; \ No newline at end of file diff --git a/src/TerminalComponent.tsx b/src/TerminalComponent.tsx deleted file mode 100644 index 5b4b669..0000000 --- a/src/TerminalComponent.tsx +++ /dev/null @@ -1,147 +0,0 @@ -import React, { useState, useEffect, useRef } from 'react'; -import { Check, Copy, Trash, Download } from 'lucide-react'; -import { useLogs } from './LogContext'; - -const TerminalComponent: React.FC = () => { - const { logs, clearLogs } = useLogs(); - const [filter, setFilter] = useState(''); - const [autoScroll, setAutoScroll] = useState(true); - const [copied, setCopied] = useState(false); - const terminalRef = useRef(null); - - // 自動スクロール効果 - useEffect(() => { - // コンポーネントがマウントされたとき、または新しいログが追加されたときに自動スクロール - if (autoScroll && terminalRef.current) { - terminalRef.current.scrollTop = terminalRef.current.scrollHeight; - } - }, [logs, filter, autoScroll]); - - // コンポーネントがマウントされた時に一度だけ実行 - useEffect(() => { - // 初期スクロール位置を設定 - if (terminalRef.current) { - terminalRef.current.scrollTop = terminalRef.current.scrollHeight; - } - }, []); - - const getLogColor = (level: string): string => { - switch (level) { - case 'ERROR': return 'text-red-500 dark:text-red-400'; - case 'WARN': return 'text-yellow-600 dark:text-yellow-400'; - case 'INFO': return 'text-blue-500 dark:text-blue-400'; - case 'DEBUG': return 'text-purple-500 dark:text-purple-400'; - case 'TRACE': return 'text-gray-500 dark:text-gray-400'; - default: return 'text-gray-700 dark:text-gray-300'; - } - }; - - const handleCopyLogs = async () => { - const logText = filteredLogs - .map(log => `[${log.timestamp} ${log.module_path}] [${log.level.toUpperCase()}] ${log.message}`) - .join('\n'); - - try { - await navigator.clipboard.writeText(logText); - setCopied(true); - setTimeout(() => setCopied(false), 2000); - } catch (error) { - console.error('Failed to copy logs:', error); - } - }; - - const handleSaveLogs = () => { - const logText = filteredLogs - .map(log => `[${log.timestamp} ${log.module_path}] [${log.level.toUpperCase()}] ${log.message}`) - .join('\n'); - - const blob = new Blob([logText], { type: 'text/plain' }); - const url = URL.createObjectURL(blob); - const a = document.createElement('a'); - a.href = url; - a.download = 'vrclipboard-ime-debug.log'; - document.body.appendChild(a); - a.click(); - document.body.removeChild(a); - URL.revokeObjectURL(url); - }; - - const filteredLogs = logs.filter( - log => filter === '' || - log.message.toLowerCase().includes(filter.toLowerCase()) || - log.level.toLowerCase().includes(filter.toLowerCase()) - ); - - return ( -
-

- デバッグログ -
- - - -
-

- -
- setFilter(e.target.value)} - className="text-xs p-1.5 w-full border rounded bg-white dark:bg-gray-700 dark:border-gray-600 dark:text-gray-200" - /> -
- setAutoScroll(!autoScroll)} - className="mr-1 h-3 w-3" - /> - -
-
- -
- {filteredLogs.length > 0 ? ( - filteredLogs.map((log, index) => ( -
- [{log.timestamp} {log.module_path}]{' '} - [{log.level.toUpperCase()}]{' '} - {log.message} -
- )) - ) : ( -
ログはありません
- )} -
-
- ); -}; - -export default TerminalComponent; \ No newline at end of file diff --git a/src/ThemeContext.tsx b/src/ThemeContext.tsx deleted file mode 100644 index a5bdee8..0000000 --- a/src/ThemeContext.tsx +++ /dev/null @@ -1,51 +0,0 @@ -import React, { createContext, useState, useContext, useEffect } from 'react'; - -type Theme = 'light' | 'dark'; - -interface ThemeContextType { - theme: Theme; - toggleTheme: () => void; -} - -const ThemeContext = createContext(undefined); - -export const ThemeProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => { - // ローカルストレージからテーマ設定を取得するか、システム設定に基づいて初期テーマを設定 - const [theme, setTheme] = useState(() => { - const savedTheme = localStorage.getItem('theme') as Theme; - if (savedTheme) { - return savedTheme; - } - return window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light'; - }); - - // テーマが変更されたときにHTMLのクラスとローカルストレージを更新 - useEffect(() => { - if (theme === 'dark') { - document.documentElement.classList.add('dark'); - } else { - document.documentElement.classList.remove('dark'); - } - localStorage.setItem('theme', theme); - }, [theme]); - - // テーマの切り替え関数 - const toggleTheme = () => { - setTheme(prevTheme => prevTheme === 'light' ? 'dark' : 'light'); - }; - - return ( - - {children} - - ); -}; - -// カスタムフック -export const useTheme = (): ThemeContextType => { - const context = useContext(ThemeContext); - if (context === undefined) { - throw new Error('useTheme must be used within a ThemeProvider'); - } - return context; -}; \ No newline at end of file diff --git a/src/TitleBar.tsx b/src/TitleBar.tsx deleted file mode 100644 index 45a0387..0000000 --- a/src/TitleBar.tsx +++ /dev/null @@ -1,113 +0,0 @@ -import { getCurrentWebviewWindow } from '@tauri-apps/api/webviewWindow'; -import { listen } from '@tauri-apps/api/event'; -import { X, Minus, Square, Maximize2, Moon, Sun } from 'lucide-react'; -import { useState, useEffect } from 'react'; -import { useTheme } from './ThemeContext'; - -const appWindow = getCurrentWebviewWindow(); - -const TitleBar = () => { - const [isMaximized, setIsMaximized] = useState(false); - const { theme, toggleTheme } = useTheme(); - - useEffect(() => { - const checkMaximized = async () => { - try { - const maximized = await appWindow.isMaximized(); - setIsMaximized(maximized); - } catch (error) { - console.error('Failed to check if window is maximized:', error); - } - }; - - checkMaximized(); - - // Tauriのイベントリスナーを設定 - let unlistenMaximize: (() => void) | undefined; - let unlistenRestore: (() => void) | undefined; - - const setupListeners = async () => { - try { - // ウィンドウ最大化イベントをリッスン - unlistenMaximize = await listen('tauri://resize', () => { - checkMaximized(); - }); - - // ウィンドウ復元イベントもリッスン - unlistenRestore = await listen('tauri://move', () => { - checkMaximized(); - }); - } catch (error) { - console.error('Failed to set up event listeners:', error); - } - }; - - setupListeners(); - - return () => { - // クリーンアップ - if (unlistenMaximize) unlistenMaximize(); - if (unlistenRestore) unlistenRestore(); - }; - }, []); - - const handleClose = () => appWindow.close(); - const handleMinimize = () => appWindow.minimize(); - const handleToggleMaximize = () => appWindow.toggleMaximize(); - - const TitleButton = ({ - onClick, - icon, - hoverClass = "hover:bg-gray-700" - }: { - onClick: () => void, - icon: React.ReactNode, - hoverClass?: string - }) => ( - - ); - - return ( -
-
- VRClipboard-IME - v1.12.0 -
-
- : - - } - /> - } - /> - : - - } - /> - } - hoverClass="hover:bg-red-600" - /> -
-
- ); -}; - -export default TitleBar; \ No newline at end of file diff --git a/src/TsfSettingsModal.tsx b/src/TsfSettingsModal.tsx deleted file mode 100644 index 63ff0cd..0000000 --- a/src/TsfSettingsModal.tsx +++ /dev/null @@ -1,151 +0,0 @@ -import React, { useEffect, useState } from 'react'; -import { AlertCircle, Settings, Check, X } from 'lucide-react'; -import { Config } from './SettingsComponent'; -import { invoke } from '@tauri-apps/api/core'; - -interface TsfSettingsModalProps { - isOpen: boolean; - onClose: () => void; - onSaveSettings: (config: Config) => Promise; - currentSettings: Config; - onTsfEnabled?: () => void; -} - -const TsfSettingsModal: React.FC = ({ - isOpen, - onClose, - onSaveSettings, - currentSettings, - onTsfEnabled -}) => { - const [_checkingStatus, _setCheckingStatus] = useState<'idle' | 'checking'>('idle'); - - // TSFが利用可能かどうかを定期的にチェックする - useEffect(() => { - if (!isOpen) return; // モーダルが閉じている場合は処理しない - - let intervalId: number | null = null; - - const checkTsfAvailability = async () => { - try { - const available: boolean = await invoke('check_tsf_availability_command'); - - if (available) { - // TSFが利用可能になったら - const newSettings = { ...currentSettings, use_tsf_reconvert: true }; - await onSaveSettings(newSettings); - - // 成功コールバックを呼び出し - if (onTsfEnabled) { - onTsfEnabled(); - } - - // モーダルを閉じる - onClose(); - - // インターバルをクリア - if (intervalId !== null) { - clearInterval(intervalId); - } - } - } catch (error) { - console.error('TSF利用可能性チェックに失敗しました:', error); - } - }; - - // 初回チェック - checkTsfAvailability(); - - // 1秒ごとにチェック - intervalId = window.setInterval(checkTsfAvailability, 1000); - - // クリーンアップ関数 - return () => { - if (intervalId !== null) { - clearInterval(intervalId); - } - }; - }, [isOpen, currentSettings, onSaveSettings, onClose, onTsfEnabled]); - - if (!isOpen) return null; - - const openWindowsSettings = async () => { - invoke('open_ms_settings_regionlanguage_jpnime'); - }; - - const useLegacyConverter = async () => { - try { - const newSettings = { ...currentSettings, use_tsf_reconvert: false }; - await onSaveSettings(newSettings); - onClose(); - } catch (error) { - console.error('設定保存に失敗しました:', error); - } - }; - - return ( -
-
-
-

- - Windowsの設定が必要です -

- -
- -
- -
- -
-
-

- - 設定手順 -

-
    -
  1. 上のボタンからWindows設定を開く
  2. -
  3. 「全般」を開く
  4. -
  5. 一番下の「以前のバージョンの Microsoft IME を使う」をオンにする
  6. -
-
-
- -
-
- Windows設定画面 -
-
- -
-
- -
- -
- -
- 設定が完了すると、このウィンドウは自動的に閉じます -
-
-
- ); -}; - -export default TsfSettingsModal; \ No newline at end of file diff --git a/src/assets/react.svg b/src/assets/react.svg deleted file mode 100644 index 6c87de9..0000000 --- a/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/checkbox.rs b/src/checkbox.rs new file mode 100644 index 0000000..c782d07 --- /dev/null +++ b/src/checkbox.rs @@ -0,0 +1,30 @@ +use leptos::prelude::*; +use uuid::Uuid; + +#[component] +pub fn CheckboxField(label: impl Into) -> impl IntoView { + let label = label.into(); + let checkbox_id = format!("checkbox-{}", Uuid::new_v4()); + + view! { +
+
+
+ +
+
+ +
+
+
+ } +} diff --git a/src/info.rs b/src/info.rs new file mode 100644 index 0000000..9a21987 --- /dev/null +++ b/src/info.rs @@ -0,0 +1,131 @@ +use leptos::{prelude::*, task::spawn_local}; +use lucide_leptos::{Coffee, ExternalLink, Github}; +use serde::{Deserialize, Serialize}; + +use crate::invoke; + +#[derive(Serialize, Deserialize)] +struct OpenArgs<'a> { + url: &'a str, +} + +fn open(url: &'static str) { + spawn_local(async move { + invoke( + "open", + serde_wasm_bindgen::to_value(&OpenArgs { url }).unwrap(), + ) + .await; + }); +} + +#[component] +pub fn Info() -> impl IntoView { + view! { +
+

+
+ +
+ アプリケーション情報 +

+ +
+
+
+ VRClipboard-IME +
+
+ v2.0.0 +
+
+ +
+
+

+ アプリケーション情報 +

+
+
+ バージョン: + 2.0.0 +
+
+ ライセンス: + MIT +
+
+ 最終更新: + 2025年6月5日 +
+
+ 技術: + Tauri, Leptos, Rust +
+
+
+ +
+

+ 開発者 +

+
+
+ 作者: + mii443 +
+
+ VRChat: + みー mii +
+
+ GitHub: + +
+
+
+ +
+

+ リンク +

+
+ + +
+
+
+
+
+ } +} diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..308ebf8 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,43 @@ +mod checkbox; +mod info; +mod menuitem; +mod settings; +mod sidebar; + +use info::Info; +use leptos::prelude::*; +use leptos_router::components::*; +use leptos_router::path; +use settings::Settings; +use sidebar::Sidebar; + +use wasm_bindgen::prelude::*; + +#[wasm_bindgen] +extern "C" { + #[wasm_bindgen(js_namespace = ["window", "__TAURI__", "core"])] + pub async fn invoke(cmd: &str, args: JsValue) -> JsValue; +} + +fn main() { + console_error_panic_hook::set_once(); + mount_to_body(|| { + view! { +
+
+ + +
+ "" }> + "Home" }/> + + + "Not Found" }/> + +
+
+
+
+ } + }) +} diff --git a/src/main.tsx b/src/main.tsx deleted file mode 100644 index 2be325e..0000000 --- a/src/main.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import React from "react"; -import ReactDOM from "react-dom/client"; -import App from "./App"; - -ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( - - - , -); diff --git a/src/menuitem.rs b/src/menuitem.rs new file mode 100644 index 0000000..e29ec07 --- /dev/null +++ b/src/menuitem.rs @@ -0,0 +1,22 @@ +use leptos::{ev::MouseEvent, prelude::*}; + +#[component] +pub fn MenuItem( + children: Children, + label: impl Into, + path: impl Into, + is_active: impl Fn() -> bool + Send + Sync + 'static, + on_click: impl FnMut(MouseEvent) + 'static, +) -> impl IntoView { + let label = label.into(); + let path = path.into(); + + view! { + +
+ {children()} +
+ {label} +
+ } +} diff --git a/src/settings.rs b/src/settings.rs new file mode 100644 index 0000000..60fe790 --- /dev/null +++ b/src/settings.rs @@ -0,0 +1,35 @@ +use crate::checkbox::CheckboxField; +use leptos::prelude::*; +use lucide_leptos::Settings as SettingsIcon; + +#[component] +pub fn Settings() -> impl IntoView { + view! { +
+ // ヘッダー +
+
+ +
+ + 設定 +
+ + // 設定本体 +
+
+
+

基本設定

+ + + +
+ +
+

詳細設定

+
+
+
+
+ } +} diff --git a/src/sidebar.rs b/src/sidebar.rs new file mode 100644 index 0000000..7cf1396 --- /dev/null +++ b/src/sidebar.rs @@ -0,0 +1,52 @@ +use crate::menuitem::MenuItem; +use leptos::prelude::*; +use lucide_leptos::{Bug, Info, List, Settings}; + +#[component] +pub fn Sidebar() -> impl IntoView { + let (active_menu_item, set_active_menu_item) = signal(String::from("log")); + + view! { + + } +} diff --git a/src/types/dictionary.ts b/src/types/dictionary.ts deleted file mode 100644 index d70e272..0000000 --- a/src/types/dictionary.ts +++ /dev/null @@ -1,97 +0,0 @@ -export enum ConversionMethod { - Replace = 'Replace', - None = 'None', - Converter = 'Converter' -} - -export interface DictionaryEntry { - input: string; - method: ConversionMethod; - output?: string; - use_regex: boolean; - priority: number; - converter_char?: string; -} - -export interface RustDictionaryEntry { - input: string; - method: string | { Converter: string }; - output?: string; - use_regex: boolean; - priority: number; -} - -export interface RustDictionary { - entries: RustDictionaryEntry[]; -} - -export interface Dictionary { - entries: DictionaryEntry[]; - } - -export interface ConverterInfo { - id: string; - name: string; - description: string; -} - -export const availableConverters: ConverterInfo[] = [ - { id: 'r', name: 'ローマ字→漢字', description: 'ローマ字を漢字に変換します' }, - { id: 'h', name: 'ひらがな変換', description: '入力をひらがなに変換します' }, - { id: 'k', name: 'カタカナ変換', description: '入力をカタカナに変換します' }, - { id: 'c', name: '計算', description: '数式を計算します' }, - { id: 'n', name: '無変換', description: '入力をそのまま出力します' }, -]; - -export function getConverterInfo(id: string): ConverterInfo | undefined { - return availableConverters.find(converter => converter.id === id); -} - -export function getDefaultDictionaryEntry(): DictionaryEntry { - return { - input: '', - method: ConversionMethod.Replace, - output: '', - use_regex: false, - priority: 0 - }; -} - -export function convertToRustEntry(entry: DictionaryEntry): RustDictionaryEntry { - let method: string | { Converter: string }; - - if (entry.method === ConversionMethod.Converter && entry.converter_char) { - method = { Converter: entry.converter_char }; - } else { - method = entry.method; - } - - return { - input: entry.input, - method: method, - output: entry.method === ConversionMethod.Replace ? entry.output : undefined, - use_regex: entry.use_regex, - priority: entry.priority - }; -} - -export function convertFromRustEntry(entry: any): DictionaryEntry { - let method: ConversionMethod; - let converter_char: string | undefined; - - if (typeof entry.method === 'object' && entry.method.Converter) { - method = ConversionMethod.Converter; - converter_char = entry.method.Converter; - } else { - method = entry.method as ConversionMethod; - } - - return { - input: entry.input, - method: method, - output: entry.output, - use_regex: entry.use_regex, - priority: entry.priority, - converter_char: converter_char - }; -} \ No newline at end of file diff --git a/src/vite-env.d.ts b/src/vite-env.d.ts deleted file mode 100644 index 11f02fe..0000000 --- a/src/vite-env.d.ts +++ /dev/null @@ -1 +0,0 @@ -/// diff --git a/style/tailwind.css b/style/tailwind.css new file mode 100644 index 0000000..31660eb --- /dev/null +++ b/style/tailwind.css @@ -0,0 +1,62 @@ +@tailwind base; +@tailwind components; +@tailwind utilities; + +@layer base { + :root { + --scrollbar-thumb: #cbd5e1; + --scrollbar-track: transparent; + } + + .dark { + --scrollbar-thumb: #4b5563; + --scrollbar-track: transparent; + } + + html { + @apply antialiased text-sm; + } + + body { + @apply overflow-hidden; + } + + ::-webkit-scrollbar { + @apply w-1.5; + } + + ::-webkit-scrollbar-track { + @apply bg-transparent; + } + + ::-webkit-scrollbar-thumb { + @apply bg-slate-200 hover:bg-slate-300 dark:bg-gray-600 dark:hover:bg-gray-500 transition-colors; + } +} + +[data-tauri-drag-region] { + cursor: move; + user-select: none; +} + +@layer components { + .input-field { + @apply w-full p-1.5 text-sm border rounded focus:border-indigo-400 dark:focus:border-indigo-500 outline-none transition-colors dark:bg-gray-700 dark:border-gray-600 dark:text-gray-200; + } + + .btn { + @apply px-3 py-1 rounded text-sm font-medium focus:outline-none; + } + + .btn-primary { + @apply bg-indigo-500 text-white hover:bg-indigo-600 dark:bg-indigo-600 dark:hover:bg-indigo-700; + } + + .card { + @apply bg-white dark:bg-gray-800 rounded border border-gray-100 dark:border-gray-700 p-3 transition-colors; + } + + .card-title { + @apply text-sm font-medium mb-2 text-gray-700 dark:text-gray-300 border-b dark:border-gray-700 pb-1 transition-colors; + } +} \ No newline at end of file diff --git a/tailwind.config.js b/tailwind.config.js index 5e5a691..46b3fb2 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,9 +1,11 @@ /** @type {import('tailwindcss').Config} */ -export default { - content: ["./src/**/*.{js,jsx,ts,tsx}"], - darkMode: 'class', - theme: { - extend: {}, - }, - plugins: [], +module.exports = { + content: [ + "*.html", + "./src/**/*.rs" + ], + theme: { + extend: {}, + }, + plugins: [], } \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index 4a83aa7..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,30 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2020", - "useDefineForClassFields": true, - "lib": ["ES2020", "DOM", "DOM.Iterable"], - "module": "ESNext", - "skipLibCheck": true, - - /* Bundler mode */ - "moduleResolution": "bundler", - "allowImportingTsExtensions": true, - "resolveJsonModule": true, - "isolatedModules": true, - "noEmit": true, - "jsx": "react-jsx", - - /* Linting */ - "strict": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true, - - "baseUrl": ".", - "paths": { - "@/*": ["./src/*"] - } - }, - "include": ["src"], - "references": [{ "path": "./tsconfig.node.json" }] -} diff --git a/tsconfig.node.json b/tsconfig.node.json deleted file mode 100644 index 42872c5..0000000 --- a/tsconfig.node.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "compilerOptions": { - "composite": true, - "skipLibCheck": true, - "module": "ESNext", - "moduleResolution": "bundler", - "allowSyntheticDefaultImports": true - }, - "include": ["vite.config.ts"] -} diff --git a/vite.config.ts b/vite.config.ts deleted file mode 100644 index fe11258..0000000 --- a/vite.config.ts +++ /dev/null @@ -1,27 +0,0 @@ -import { defineConfig } from "vite"; -import react from "@vitejs/plugin-react"; - -// https://vitejs.dev/config/ -export default defineConfig(async () => ({ - plugins: [react()], - - // Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build` - // - // 1. prevent vite from obscuring rust errors - clearScreen: false, - // 2. tauri expects a fixed port, fail if that port is not available - server: { - port: 1420, - strictPort: true, - watch: { - // 3. tell vite to ignore watching `src-tauri` - ignored: ["**/src-tauri/**"], - }, - }, - - resolve: { - alias: { - "@": "/src", - }, - }, -}));