Compare commits

..

No commits in common. "main" and "openboard_1.4-BETA" have entirely different histories.

3531 changed files with 287329 additions and 128497 deletions

View file

@ -1,13 +0,0 @@
[*]
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = space
insert_final_newline = true
max_line_length = 140
tab_width = 4
trim_trailing_whitespace = true
[{*.markdown,*.md}]
trim_trailing_whitespace = false
indent_size = 2

View file

@ -1,18 +0,0 @@
body:
- type: input
- type: textarea
id: description
attributes:
label: Description
placeholder: |
"You can add some description and screenshots here if you want."
validations:
required: false
- type: textarea
id: colors
attributes:
label: Colors
placeholder: |
"Please paste the colors (obtained via the _copy_ button) here, and surround the text with ``` to make sure it's displayed in a way that can be copied easily."
validations:
required: true

View file

@ -1,18 +0,0 @@
body:
- type: input
- type: textarea
id: description
attributes:
label: Description
placeholder: |
"You can add some description and screenshots here if you want."
validations:
required: false
- type: textarea
id: layout
attributes:
label: Layout
placeholder: |
"Please paste the layout here, and surround it with ``` to make sure it's displayed in a way that can be copied easily."
validations:
required: true

2
.github/FUNDING.yml vendored
View file

@ -1,2 +0,0 @@
liberapay: Helium314

View file

@ -1,36 +0,0 @@
---
name: Bug report
about: Create a report to help us improve
labels: bug
---
Please see the appropriate readme section for issue reporting guidelines: https://github.com/Helium314/HeliBoard?tab=readme-ov-file#reporting-issues
tl;dr:
* search for duplicates, also in closed issues
* a single issue per topic
* reduce screenshot size
<!--
issue template below, please remove above text before submitting (and the template too if you think it's a good idea)
Please choose a meaningful title for your issue, and consider that if you want help you should provide enough information that people can actually help
-->
**Describe the bug**
**To Reproduce**
If possible, provide all the necessary steps to reproduce your problem, including the involved apps or settings if relevant.
In case you cannot reproduce the bug, say so and provide information about when the bug may occur for you. Settings and the app you're writing in are usually important, please don't omit them.
**Expected behavior**
If it's not obvious (e.g. not crash), describe how you think the app should behave.
**Screenshots**
ONLY add screenshots when they add real value.
If you add screenshots, reduce the size or use thumbnails to keep the issue nicely readable.
**App version**
Please provide the explicit version, or if you build the app yourself specify the latest commit.
**Device:**
- Model: [e.g. Samsung Galaxy S9]
- OS: [e.g. Android 10] (please also mention whether you are using the manufacturer's OS or a custom ROM)

View file

@ -1,11 +0,0 @@
blank_issues_enabled: false
contact_links:
- name: Dictionary request
url: https://codeberg.org/Helium314/aosp-dictionaries
about: Requests for dictionaries (used for suggestions / autocompletion) will be handled in the linked dictionary repository. You can check whether a dictionary for the language you want already exists there.
- name: Discussion
url: https://github.com/Helium314/HeliBoard/discussions
about: For discussions and feedback about this app, asking questions or talking about ideas which are not yet actionable (i.e. not suitable for an issue).
- name: Question
url: https://github.com/Helium314/HeliBoard/discussions/new?category=q-a
about: For questions please use the discussions section.

View file

@ -1,26 +0,0 @@
---
name: Feature request
about: Suggest an idea for this project
labels: enhancement
---
Please see the appropriate readme section for issue reporting guidelines: https://github.com/Helium314/HeliBoard?tab=readme-ov-file#reporting-issues
tl;dr:
* search for duplicates, also in closed issues
* a single issue per topic
* ONLY add screenshots when necessary, and reduce their size
<!--
issue template below, please remove above text before submitting (and the template too if you think it's a good idea)
Please choose a meaningful title for your issue
-->
**Is your feature request related to a problem? Please describe.**
**Describe the solution you'd like**
Please provide a description of what you would like to have. The clearer it is described, the better it can be implemented the way you want it.
**Use case**
Provide a clear and concise description of *your use case* and what you thus think is missing, and why.
**Describe alternatives you've considered (if any)**

View file

@ -1,12 +0,0 @@
---
name: Other
about: Anything that does not fit into the other categories. Please don't use this for questions, discussions, or anything that fits into one of the other issue categories.
---
Please see the appropriate readme section for issue reporting guidelines: https://github.com/Helium314/HeliBoard?tab=readme-ov-file#reporting-issues
tl;dr:
* search for duplicates, also in closed issues
* a single issue per topic
* ONLY add screenshots when necessary, and reduce their size
<!-- please remove above text before submitting, and choose a meaningful title for your issue -->

View file

@ -1,19 +0,0 @@
See the contributing readme for more detailed guidelines: https://github.com/Helium314/HeliBoard/blob/main/CONTRIBUTING.md#guidelines
tl;dr:
necessary;
* a single thing only
* describe it properly
recommended:
* make changes optional
* re-use existing mechanisms / code
* low performance impact
* make it a draft if you still want to work on it
A good description and small scope ("single thing") massively help with reviewing. Don't be surprised when your PR gets closes if you clearly / repeatedly violate these parts of the guidelines.
Further
* When the PR contains "fixes" <issue number>, the related issue will be linked and automatically closed if the PR is merged (also works for other words like "fix", "resolve", "resolves", "closes", ...)
* If you add a keyboard layout, best read https://github.com/Helium314/HeliBoard/blob/main/layouts.md#adding-new-layouts--languages
* Please avoid force-pushing when doing requested changes. This way it's not possible to see which parts have changed since the previous state.
<!-- (please remove the text above before submitting the PR) -->

View file

@ -1,39 +0,0 @@
name: Build debug APK
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: gradle/actions/setup-gradle@v3
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew assembleDebug
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: HeliBoard-debug
path: app/build/outputs/apk/debug/*-debug*.apk
- name: Archive reports for failed job
uses: actions/upload-artifact@v4
with:
name: reports
path: '*/build/reports'
if: ${{ failure() }}

View file

@ -1,43 +0,0 @@
name: Test build
# builds only for a single abi and does not produce an APK
on:
# disabled on push: when I push to non-main, I do a PR anyway
# push:
# don't run on main. I noticed I often don't push commits to avoid unnecessary workflow runs
# branches-ignore: [ main ]
# paths:
# - 'app/**'
pull_request:
paths:
- 'app/src/main/java**'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- uses: gradle/actions/setup-gradle@v3
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew testRunTestsUnitTest
- name: Archive reports for failed job
uses: actions/upload-artifact@v4
with:
name: reports
path: '*/build/reports'
if: ${{ failure() }}

3
.gitignore vendored
View file

@ -1,7 +1,6 @@
*.iml
.idea
.gradle
.kotlin
local.properties
.DS_Store
Gemfile
@ -9,6 +8,4 @@ build
app/build
app/release
app/.cxx
app/.attach_*
fastlane/Appfile
tools/*.txt

View file

@ -1,78 +0,0 @@
# Getting Started
HeliBoard project is based on Gradle and Android Gradle Plugin. To get started, you can install [Android Studio](https://developer.android.com/studio), and import project 'from Version Control / Git / Github' by providing this git repository [URL](https://github.com/Helium314/HeliBoard) (or git SSH [URL](git@github.com:Helium314/heliboard.git)).
Of course you can also use any other compatible IDE, or work with text editor and command line.
Once everything is up correctly, you're ready to go!
If you have difficulties implementing some functionality, you're welcome to ask for help. No one will write the code for you, but often other contributors can give you very useful hints.
# About the Code
HeliBoard is based on AOSP keyboard, and in many places still contains mostly the original code. There are some extensions, and some parts have been replaced completely.
When working on this app, you will likely notice its rather large size, and quite different code styles and often ancient comments and _TODO_s, where the latter are typically untouched since AOSP times.
Unfortunately a lot of the old code is hard to read or to fully understand with all of its intended (and unintended) consequences.
Some hints for finding what you're looking for:
* Layouts: stored in `layouts` folder in assets, interpreted by `KeyboardParser` and `TextKeyData`
* Popups: either on layouts, or in `locale_key_texts` (mostly letter variations for specific languages that are not dependent on layout)
* Touch and swipe input handling: `PointerTracker`
* Handling of key inputs: `InputLogic`
* Suggestions: `DictionaryFacilitatorImpl`, `Suggest`, `InputLogic`, and `SuggestionStripView` (in order from creation to display)
* Forwarding entered text / keys to the app / text field: `RichInputConnection`
* Receiving events and information from the app / text field: `LatinIME`
* Settings are in `SettingsValues`, with some functionality in `Settings` and the default values in `Default`
# Guidelines
## Recommended
If you want to contribute, it's a good idea to make sure your idea is actually wanted in HeliBoard.
Best check related issues before you start working on a PR. If the issue has the [labels](https://github.com/Helium314/HeliBoard/labels) [_PR_](https://github.com/Helium314/HeliBoard/labels/PR) or [_contributor needed_](https://github.com/Helium314/HeliBoard/issues?q=label%3A%22contributor%20needed%22) (even closed ones), contributions are wanted. If you don't find a related issue, it's recommended to open one, but ultimately it's your choice.
Asking before starting a PR may help you for getting pointers to potentially relevant code, and deciding how to implement your desired changes.
HeliBoard is a complex application and used by users with a large variety of opinions on how things should be.
When contributing to the app, please:
* Be careful when modifying core components, as it's easy to trigger unintended consequences
* When introducing a feature or change that might not be wanted by everyone, make it optional
* Keep code simple where possible. Complex code is harder to review and to maintain, so the complexity should also add a clear benefit
* Avoid noticeable performance impact. Some parts of the code are executed very frequently, and the keyboard should stay responsive even on older devices.
* Try making use of in-place mechanisms instead of re-inventing the wheel. Your contribution should only add as much complexity as necessary, the code is overly complicated already 😶.
* Keep your changes to few places, as opposed to sprinkling them over many parts of the code. This helps with keeping down complexity during review, and with maintainability of the app.
* Make a draft PR when you intend to still work on it. Submitting an unfinished PR can be a good idea when you're not sure how to best continue and would like some comments.
Further things to consider (though irrelevant for most PRs):
* APK size:
* Large increases should be discussed first, and will only be added when it's considered worth the increase for a majority of users. It might be possible to avoid size increase by importing optional parts, like it's done for dictionaries.
* Small increases like when adding code or layouts are never an issue
* Do not add proprietary code or binary blobs. If it turns out to be necessary for a feature you want to add, it might be acceptable when the user opts in and imports those parts, like it's done for glide typing.
* Privacy: Only relevant when adding some form of communication with other apps. Internet permission will not be added.
* If your contribution contains code that is not your own, provide a link to the source
* This is especially relevant to be sure the code's license is compatible to HeliBoard's GPL3
## Necessary
Some parts of the guidelines are necessary to fulfill for facilitating code review. It doesn't need to be perfect from the start, but consider it for your future PRs when you're reminded of these guidelines. Note that the larger / more complex your PR is, the more relevant these guidelines are.
Your PR should:
- **Be only about a single thing**. Mixing unrelated or semi-related contributions into a single PR is hard to review and can get messy. As a general rule: if one part doesn't need the other one(s), it should be separate PRs. If one feature builds on top of another one, but the base is usable on its own, do a PR for the base and then a follow-up once it's merged.
- **Have a proper description**. A good description helps _a lot_ for understanding what you intend to achieve with the changes, and for understanding the code. This is relevant for separating wanted from unintended changes in behavior during review.
- **No translations**. Translations should be done using [Weblate](https://translate.codeberg.org/projects/heliboard/). Exception is when you add new resource strings, those can be added right away.
Please leave dependency upgrades to the maintainers, unless you state a good reason why they should be done now.
# Adding / Adjusting Layouts
See [layouts.md](layouts.md#adding-new-layouts--languages) for how to add new layouts to the app. Please stay in line with other layouts regarding the popup keys.
When editing existing layouts, please consider that people should should still get what they're used to. In case of doubt it might be better to add a new layout instead of overhauling existing layouts.
`locale_key_texts` files should only contain letters that are actually part of the language, with exception of the optional `more_popups_<...>.txt` files.
# Update Emojis
See make-emoji-keys tool [README](tools/make-emoji-keys/README.md).
# Translations
Translations can be added using [Weblate](https://translate.codeberg.org/projects/heliboard/). You will need an account to update translations and add languages. Add the language you want to translate to in Languages -> Manage translated languages in the top menu bar.
Updating translations in a PR will not be accepted, as it may cause conflicts with Weblate translations.
# Dictionaries
No new dictionaries will be added to this app. Please submit dictionaries and the wordlist to the [dictionaries repository](https://codeberg.org/Helium314/aosp-dictionaries)

View file

@ -1,202 +0,0 @@
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
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View file

@ -1,428 +0,0 @@
Attribution-ShareAlike 4.0 International
=======================================================================
Creative Commons Corporation ("Creative Commons") is not a law firm and
does not provide legal services or legal advice. Distribution of
Creative Commons public licenses does not create a lawyer-client or
other relationship. Creative Commons makes its licenses and related
information available on an "as-is" basis. Creative Commons gives no
warranties regarding its licenses, any material licensed under their
terms and conditions, or any related information. Creative Commons
disclaims all liability for damages resulting from their use to the
fullest extent possible.
Using Creative Commons Public Licenses
Creative Commons public licenses provide a standard set of terms and
conditions that creators and other rights holders may use to share
original works of authorship and other material subject to copyright
and certain other rights specified in the public license below. The
following considerations are for informational purposes only, are not
exhaustive, and do not form part of our licenses.
Considerations for licensors: Our public licenses are
intended for use by those authorized to give the public
permission to use material in ways otherwise restricted by
copyright and certain other rights. Our licenses are
irrevocable. Licensors should read and understand the terms
and conditions of the license they choose before applying it.
Licensors should also secure all rights necessary before
applying our licenses so that the public can reuse the
material as expected. Licensors should clearly mark any
material not subject to the license. This includes other CC-
licensed material, or material used under an exception or
limitation to copyright. More considerations for licensors:
wiki.creativecommons.org/Considerations_for_licensors
Considerations for the public: By using one of our public
licenses, a licensor grants the public permission to use the
licensed material under specified terms and conditions. If
the licensor's permission is not necessary for any reason--for
example, because of any applicable exception or limitation to
copyright--then that use is not regulated by the license. Our
licenses grant only permissions under copyright and certain
other rights that a licensor has authority to grant. Use of
the licensed material may still be restricted for other
reasons, including because others have copyright or other
rights in the material. A licensor may make special requests,
such as asking that all changes be marked or described.
Although not required by our licenses, you are encouraged to
respect those requests where reasonable. More considerations
for the public:
wiki.creativecommons.org/Considerations_for_licensees
=======================================================================
Creative Commons Attribution-ShareAlike 4.0 International Public
License
By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution-ShareAlike 4.0 International Public License ("Public
License"). To the extent this Public License may be interpreted as a
contract, You are granted the Licensed Rights in consideration of Your
acceptance of these terms and conditions, and the Licensor grants You
such rights in consideration of benefits the Licensor receives from
making the Licensed Material available under these terms and
conditions.
Section 1 -- Definitions.
a. Adapted Material means material subject to Copyright and Similar
Rights that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated, altered,
arranged, transformed, or otherwise modified in a manner requiring
permission under the Copyright and Similar Rights held by the
Licensor. For purposes of this Public License, where the Licensed
Material is a musical work, performance, or sound recording,
Adapted Material is always produced where the Licensed Material is
synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright
and Similar Rights in Your contributions to Adapted Material in
accordance with the terms and conditions of this Public License.
c. BY-SA Compatible License means a license listed at
creativecommons.org/compatiblelicenses, approved by Creative
Commons as essentially the equivalent of this Public License.
d. Copyright and Similar Rights means copyright and/or similar rights
closely related to copyright including, without limitation,
performance, broadcast, sound recording, and Sui Generis Database
Rights, without regard to how the rights are labeled or
categorized. For purposes of this Public License, the rights
specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.
e. Effective Technological Measures means those measures that, in the
absence of proper authority, may not be circumvented under laws
fulfilling obligations under Article 11 of the WIPO Copyright
Treaty adopted on December 20, 1996, and/or similar international
agreements.
f. Exceptions and Limitations means fair use, fair dealing, and/or
any other exception or limitation to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
g. License Elements means the license attributes listed in the name
of a Creative Commons Public License. The License Elements of this
Public License are Attribution and ShareAlike.
h. Licensed Material means the artistic or literary work, database,
or other material to which the Licensor applied this Public
License.
i. Licensed Rights means the rights granted to You subject to the
terms and conditions of this Public License, which are limited to
all Copyright and Similar Rights that apply to Your use of the
Licensed Material and that the Licensor has authority to license.
j. Licensor means the individual(s) or entity(ies) granting rights
under this Public License.
k. Share means to provide material to the public by any means or
process that requires permission under the Licensed Rights, such
as reproduction, public display, public performance, distribution,
dissemination, communication, or importation, and to make material
available to the public including in ways that members of the
public may access the material from a place and at a time
individually chosen by them.
l. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament and of
the Council of 11 March 1996 on the legal protection of databases,
as amended and/or succeeded, as well as other essentially
equivalent rights anywhere in the world.
m. You means the individual or entity exercising the Licensed Rights
under this Public License. Your has a corresponding meaning.
Section 2 -- Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You a worldwide, royalty-free,
non-sublicensable, non-exclusive, irrevocable license to
exercise the Licensed Rights in the Licensed Material to:
a. reproduce and Share the Licensed Material, in whole or
in part; and
b. produce, reproduce, and Share Adapted Material.
2. Exceptions and Limitations. For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public
License does not apply, and You do not need to comply with
its terms and conditions.
3. Term. The term of this Public License is specified in Section
6(a).
4. Media and formats; technical modifications allowed. The
Licensor authorizes You to exercise the Licensed Rights in
all media and formats whether now known or hereafter created,
and to make technical modifications necessary to do so. The
Licensor waives and/or agrees not to assert any right or
authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including
technical modifications necessary to circumvent Effective
Technological Measures. For purposes of this Public License,
simply making modifications authorized by this Section 2(a)
(4) never produces Adapted Material.
5. Downstream recipients.
a. Offer from the Licensor -- Licensed Material. Every
recipient of the Licensed Material automatically
receives an offer from the Licensor to exercise the
Licensed Rights under the terms and conditions of this
Public License.
b. Additional offer from the Licensor -- Adapted Material.
Every recipient of Adapted Material from You
automatically receives an offer from the Licensor to
exercise the Licensed Rights in the Adapted Material
under the conditions of the Adapter's License You apply.
c. No downstream restrictions. You may not offer or impose
any additional or different terms or conditions on, or
apply any Effective Technological Measures to, the
Licensed Material if doing so restricts exercise of the
Licensed Rights by any recipient of the Licensed
Material.
6. No endorsement. Nothing in this Public License constitutes or
may be construed as permission to assert or imply that You
are, or that Your use of the Licensed Material is, connected
with, or sponsored, endorsed, or granted official status by,
the Licensor or others designated to receive attribution as
provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not
licensed under this Public License, nor are publicity,
privacy, and/or other similar personality rights; however, to
the extent possible, the Licensor waives and/or agrees not to
assert any such rights held by the Licensor to the limited
extent necessary to allow You to exercise the Licensed
Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this
Public License.
3. To the extent possible, the Licensor waives any right to
collect royalties from You for the exercise of the Licensed
Rights, whether directly or through a collecting society
under any voluntary or waivable statutory or compulsory
licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties.
Section 3 -- License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the
following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified
form), You must:
a. retain the following if it is supplied by the Licensor
with the Licensed Material:
i. identification of the creator(s) of the Licensed
Material and any others designated to receive
attribution, in any reasonable manner requested by
the Licensor (including by pseudonym if
designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of
warranties;
v. a URI or hyperlink to the Licensed Material to the
extent reasonably practicable;
b. indicate if You modified the Licensed Material and
retain an indication of any previous modifications; and
c. indicate the Licensed Material is licensed under this
Public License, and include the text of, or the URI or
hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any
reasonable manner based on the medium, means, and context in
which You Share the Licensed Material. For example, it may be
reasonable to satisfy the conditions by providing a URI or
hyperlink to a resource that includes the required
information.
3. If requested by the Licensor, You must remove any of the
information required by Section 3(a)(1)(A) to the extent
reasonably practicable.
b. ShareAlike.
In addition to the conditions in Section 3(a), if You Share
Adapted Material You produce, the following conditions also apply.
1. The Adapter's License You apply must be a Creative Commons
license with the same License Elements, this version or
later, or a BY-SA Compatible License.
2. You must include the text of, or the URI or hyperlink to, the
Adapter's License You apply. You may satisfy this condition
in any reasonable manner based on the medium, means, and
context in which You Share Adapted Material.
3. You may not offer or impose any additional or different terms
or conditions on, or apply any Effective Technological
Measures to, Adapted Material that restrict exercise of the
rights granted under the Adapter's License You apply.
Section 4 -- Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share all or a substantial
portion of the contents of the database;
b. if You include all or a substantial portion of the database
contents in a database in which You have Sui Generis Database
Rights, then the database in which You have Sui Generis Database
Rights (but not its individual contents) is Adapted Material,
including for purposes of Section 3(b); and
c. You must comply with the conditions in Section 3(a) if You Share
all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
c. The disclaimer of warranties and limitation of liability provided
above shall be interpreted in a manner that, to the extent
possible, most closely approximates an absolute disclaimer and
waiver of all liability.
Section 6 -- Term and Termination.
a. This Public License applies for the term of the Copyright and
Similar Rights licensed here. However, if You fail to comply with
this Public License, then Your rights under this Public License
terminate automatically.
b. Where Your right to use the Licensed Material has terminated under
Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided
it is cured within 30 days of Your discovery of the
violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any
right the Licensor may have to seek remedies for Your violations
of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the
Licensed Material under separate terms or conditions or stop
distributing the Licensed Material at any time; however, doing so
will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
License.
Section 7 -- Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different
terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the
Licensed Material not stated herein are separate from and
independent of the terms and conditions of this Public License.
Section 8 -- Interpretation.
a. For the avoidance of doubt, this Public License does not, and
shall not be interpreted to, reduce, limit, restrict, or impose
conditions on any use of the Licensed Material that could lawfully
be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is
deemed unenforceable, it shall be automatically reformed to the
minimum extent necessary to make it enforceable. If the provision
cannot be reformed, it shall be severed from this Public License
without affecting the enforceability of the remaining terms and
conditions.
c. No term or condition of this Public License will be waived and no
failure to comply consented to unless expressly agreed to by the
Licensor.
d. Nothing in this Public License constitutes or may be interpreted
as a limitation upon, or waiver of, any privileges and immunities
that apply to the Licensor or You, including from the legal
processes of any jurisdiction or authority.
=======================================================================
Creative Commons is not a party to its public
licenses. Notwithstanding, Creative Commons may elect to apply one of
its public licenses to material it publishes and in those instances
will be considered the “Licensor.” The text of the Creative Commons
public licenses is dedicated to the public domain under the CC0 Public
Domain Dedication. Except for the limited purpose of indicating that
material is shared under a Creative Commons public license or as
otherwise permitted by the Creative Commons policies published at
creativecommons.org/policies, Creative Commons does not authorize the
use of the trademark "Creative Commons" or any other trademark or logo
of Creative Commons without its prior written consent including,
without limitation, in connection with any unauthorized modifications
to any of its public licenses or any other arrangements,
understandings, or agreements concerning use of licensed material. For
the avoidance of doubt, this paragraph does not form part of the
public licenses.
Creative Commons may be contacted at creativecommons.org.

134
README.md
View file

@ -1,109 +1,55 @@
# HeliBoard
HeliBoard is a privacy-conscious and customizable open-source keyboard, based on AOSP / OpenBoard.
Does not use internet permission, and thus is 100% offline.
# OpenBoard
<a href='https://f-droid.org/packages/org.dslul.openboard.inputmethod.latin'><img src='https://fdroid.gitlab.io/artwork/badge/get-it-on.png' alt='Get it on F-Droid' height='80'></a>
<a href='https://play.google.com/store/apps/details?id=org.dslul.openboard.inputmethod.latin&pcampaignid=pcampaignidMKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' src='https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png' height='80px'/></a>
[<img src="https://fdroid.gitlab.io/artwork/badge/get-it-on.png" alt="Get it on F-Droid" height="80">](https://f-droid.org/packages/helium314.keyboard/)
[<img src="https://user-images.githubusercontent.com/663460/26973090-f8fdc986-4d14-11e7-995a-e7c5e79ed925.png" alt="Get APK from GitHub" height="80">](https://github.com/Helium314/HeliBoard/releases/latest)
[<img src="https://gitlab.com/IzzyOnDroid/repo/-/raw/master/assets/IzzyOnDroid.png" alt="Get it on IzzyOnDroid" height="80">](https://apt.izzysoft.de/fdroid/index/apk/helium314.keyboard)
![](images/feature.png)
## Table of Contents
100% FOSS keyboard, based on AOSP.
- [Features](#features)
- [Contributing](#contributing-)
* [Reporting Issues](#reporting-issues)
* [Translations](#translations)
* [To Community Creation](#to-community)
* [Code Contribution](CONTRIBUTING.md)
- [License](#license)
- [Credits](#credits)
## Permissions
* **Read Contacts**: Used to add your contact list to suggestions. Disabled by default.
# Features
<ul>
<li>Add dictionaries for suggestions and spell check</li>
<ul>
<li>build your own, or get them <a href="https://codeberg.org/Helium314/aosp-dictionaries#dictionaries">here</a>, or in the <a href="https://codeberg.org/Helium314/aosp-dictionaries#experimental-dictionaries">experimental</a> section (quality may vary)</li>
<li>additional dictionaries for emojis or scientific symbols can be used to provide suggestions (similar to "emoji search")</li>
<li>note that for Korean layouts, suggestions only work using <a href="https://github.com/openboard-team/openboard/commit/83fca9533c03b9fecc009fc632577226bbd6301f">this dictionary</a>, the tools in the dictionary repository are not able to create working dictionaries</li>
</ul>
<li>Customize keyboard themes (style, colors and background image)</li>
<ul>
<li>can follow the system's day/night setting on Android 10+ (and on some versions of Android 9)</li>
<li>can follow dynamic colors for Android 12+</li>
</ul>
<li>Customize keyboard <a href="https://github.com/Helium314/HeliBoard/blob/main/layouts.md">layouts</a> (only available when disabling <i>use system languages</i>)</li>
<li>Customize special layouts, like symbols, number, or functional key layout</li>
<li>Multilingual typing</li>
<li>Glide typing (<i>only with closed source library</i> ☹️)</li>
<ul>
<li>library not included in the app, as there is no compatible open source library available</li>
<li>can be extracted from GApps packages ("<i>swypelibs</i>"), or downloaded <a href="https://github.com/erkserkserks/openboard/tree/46fdf2b550035ca69299ce312fa158e7ade36967/app/src/main/jniLibs">here</a> (click on the file and then "raw" or the tiny download button)</li>
</ul>
<li>Clipboard history</li>
<li>One-handed mode</li>
<li>Split keyboard</li>
<li>Number pad</li>
<li>Backup and restore your settings and learned word / history data</li>
</ul>
## Cannot open settings in MIUI
See https://github.com/dslul/openboard/issues/46
For [FAQ](https://github.com/Helium314/HeliBoard/wiki/FAQ) and more information about the app and features, please visit the [wiki](https://github.com/Helium314/HeliBoard/wiki)
## Contribute
# Contributing ❤
### How to create a dictionary
You can use [this tool](https://github.com/remi0s/aosp-dictionary-tools) to create a dictionary. You need a wordlist, as described [here](https://github.com/dslul/openboard/blob/master/dictionaries/sample.combined). The output .dict file must be put in [res/raw](https://github.com/dslul/openboard/tree/master/app/src/main/res/raw).
## Reporting Issues
### APK Development
Whether you encountered a bug, or want to see a new feature in HeliBoard, you can contribute to the project by opening a new issue [here](https://github.com/Helium314/HeliBoard/issues). Your help is always welcome!
#### Linux
Before opening a new issue, be sure to check the following:
- **Does the issue already exist?** Make sure a similar issue has not been reported by browsing [existing issues](https://github.com/Helium314/HeliBoard/issues?q=). Please search open and closed issues.
- **Is the issue still relevant?** Make sure your issue is not already fixed in the latest version of HeliBoard.
- **Is it a single topic?** If you want to suggest multiple things, open multiple issues.
- **Did you use the issue template?** It is important to make life of our kind contributors easier by avoiding issues that miss key information to their resolution.
Note that issues that that ignore part of the issue template will likely get treated with very low priority, as often they are needlessly hard to read or understand (e.g. huge screenshots, not providing a proper description, or addressing multiple topics). Blatant violation of the guidelines may result in the issue getting closed.
Install java:
```sh
sudo pacman -S jdk8-openjdk jre8-openjdk jre8-openjdk-headless
```
If you're interested, you can read the following useful text about effective bug reporting (a bit longer read): https://www.chiark.greenend.org.uk/~sgtatham/bugs.html
Install Android SDK:
```sh
sudo pacman -S snapd
sudo snap install androidsdk
```
## Translations
Translations can be added using [Weblate](https://translate.codeberg.org/projects/heliboard/). You will need an account to update translations and add languages. Add the language you want to translate to in Languages -> Manage translated languages in the top menu bar.
Updating translations in a PR will not be accepted, as it may cause conflicts with Weblate translations.
Configure your SDK location in your `~/.bash_profile` or `~/.bashrc`:
```bash
export ANDROID_SDK_ROOT=~/snap/androidsdk/current/AndroidSDK/
```
Some notes on translations
* when translating metadata, translating the changelogs is rather useless. It's available as it was requested by translators.
* the `hidden_features_message` is horrible to translate with Weblate, and serves little benefit as it's just a copy of what's already in the wiki: https://github.com/Helium314/HeliBoard/wiki/Hidden-functionality. It's been made available in the app on user request/contribution.
Install the platform tools for your target android version:
```sh
androidsdk "platform-tools" "platforms;android-28"
```
## To Community
You can share your themes, layouts and dictionaries with other people:
* Themes can be saved and loaded using the menu on top-right in the _adjust colors_ screen
* You can share custom colors in a separate [discussion section](https://github.com/Helium314/HeliBoard/discussions/categories/custom-colors)
* Custom keyboard layouts are text files whose content you can edit, copy and share
* this applies to main keyboard layouts and to special layouts adjustable in advanced settings
* see [layouts.md](layouts.md) for details
* You can share custom layouts in a separate [discussion section](https://github.com/Helium314/HeliBoard/discussions/categories/custom-layout)
* Creating dictionaries is a little more work
* first you will need a wordlist, as described [here](https://codeberg.org/Helium314/aosp-dictionaries/src/branch/main/wordlists/sample.combined) and in the repository readme
* the you need to compile the dictionary using [external tools](https://github.com/remi0s/aosp-dictionary-tools)
* the resulting file (and ideally the wordlist too) can be shared with other users
* note that there will not be any further dictionaries added to this app, but you can add dictionaries to the [dictionaries repository](https://codeberg.org/Helium314/aosp-dictionaries)
Compile the project. This will install all dependencies, make sure to accept
licenses when prompted.
## Code Contribution
See [Contribution Guidelines](CONTRIBUTING.md)
```sh
./gradlew assembleDebug
```
# License
HeliBoard (as a fork of OpenBoard) is licensed under GNU General Public License v3.0.
> Permissions of this strong copyleft license are conditioned on making available complete source code of licensed works and modifications, which include larger works using a licensed work, under the same license. Copyright and license notices must be preserved. Contributors provide an express grant of patent rights.
See repo's [LICENSE](/LICENSE) file.
Since the app is based on Apache 2.0 licensed AOSP Keyboard, an [Apache 2.0](LICENSE-Apache-2.0) license file is provided.
The icon is licensed under [Creative Commons BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/). A [license file](LICENSE-CC-BY-SA-4.0) is also included.
# Credits
- Icon by [Fabian OvrWrt](https://github.com/FabianOvrWrt) with contributions from [The Eclectic Dyslexic](https://github.com/the-eclectic-dyslexic)
- [OpenBoard](https://github.com/openboard-team/openboard)
- [AOSP Keyboard](https://android.googlesource.com/platform/packages/inputmethods/LatinIME/)
- [LineageOS](https://review.lineageos.org/admin/repos/LineageOS/android_packages_inputmethods_LatinIME)
- [Simple Keyboard](https://github.com/rkkr/simple-keyboard)
- [Indic Keyboard](https://gitlab.com/indicproject/indic-keyboard)
- [FlorisBoard](https://github.com/florisboard/florisboard/)
- Our [contributors](https://github.com/Helium314/HeliBoard/graphs/contributors)
Connect your phone and install the debug APK
```sh
adb install ./app/build/outputs/apk/debug/app-debug.apk
```

48
app/build.gradle Executable file
View file

@ -0,0 +1,48 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 30
defaultConfig {
applicationId "org.dslul.openboard.inputmethod.latin"
minSdkVersion 19
targetSdkVersion 30
versionCode 11
versionName '1.4'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
aaptOptions {
noCompress 'dict'
}
externalNativeBuild {
ndkBuild {
path 'src/main/jni/Android.mk'
}
}
lintOptions {
checkReleaseBuilds false
}
ndkVersion '21.3.6528147'
}
dependencies {
implementation 'com.google.code.findbugs:jsr305:3.0.2'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.core:core-ktx:1.3.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.viewpager2:viewpager2:1.0.0'
}
repositories {
mavenCentral()
}

View file

@ -1,132 +0,0 @@
plugins {
id("com.android.application")
kotlin("android")
kotlin("plugin.serialization") version "2.1.21"
kotlin("plugin.compose") version "2.0.0"
}
android {
compileSdk = 35
defaultConfig {
applicationId = "helium314.keyboard"
minSdk = 21
targetSdk = 35
versionCode = 3201
versionName = "3.2"
ndk {
abiFilters.clear()
abiFilters.addAll(listOf("armeabi-v7a", "arm64-v8a", "x86", "x86_64"))
}
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = false
isDebuggable = false
isJniDebuggable = false
}
create("nouserlib") { // same as release, but does not allow the user to provide a library
isMinifyEnabled = true
isShrinkResources = false
isDebuggable = false
isJniDebuggable = false
}
debug {
// "normal" debug has minify for smaller APK to fit the GitHub 25 MB limit when zipped
// and for better performance in case users want to install a debug APK
isMinifyEnabled = true
isJniDebuggable = false
applicationIdSuffix = ".debug"
}
create("runTests") { // build variant for running tests on CI that skips tests known to fail
isMinifyEnabled = false
isJniDebuggable = false
}
create("debugNoMinify") { // for faster builds in IDE
isDebuggable = true
isMinifyEnabled = false
isJniDebuggable = false
signingConfig = signingConfigs.getByName("debug")
applicationIdSuffix = ".debug"
}
base.archivesBaseName = "HeliBoard_" + defaultConfig.versionName
}
buildFeatures {
viewBinding = true
buildConfig = true
compose = true
}
externalNativeBuild {
ndkBuild {
path = File("src/main/jni/Android.mk")
}
}
ndkVersion = "28.0.13004108"
packaging {
jniLibs {
// shrinks APK by 3 MB, zipped size unchanged
useLegacyPackaging = true
}
}
testOptions {
unitTests {
isIncludeAndroidResources = true
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
}
// see https://github.com/Helium314/HeliBoard/issues/477
dependenciesInfo {
includeInApk = false
includeInBundle = false
}
namespace = "helium314.keyboard.latin"
lint {
abortOnError = true
}
}
dependencies {
// androidx
implementation("androidx.core:core-ktx:1.16.0")
implementation("androidx.recyclerview:recyclerview:1.4.0")
implementation("androidx.autofill:autofill:1.1.0")
implementation("androidx.viewpager2:viewpager2:1.1.0")
// kotlin
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1")
// compose
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.5")
implementation(platform("androidx.compose:compose-bom:2025.05.00"))
implementation("androidx.compose.material3:material3")
implementation("androidx.compose.ui:ui-tooling-preview")
debugImplementation("androidx.compose.ui:ui-tooling")
implementation("androidx.navigation:navigation-compose:2.9.0")
implementation("sh.calvin.reorderable:reorderable:2.4.3") // for easier re-ordering
implementation("com.github.skydoves:colorpicker-compose:1.1.2") // for user-defined colors
// test
testImplementation(kotlin("test"))
testImplementation("junit:junit:4.13.2")
testImplementation("org.mockito:mockito-core:5.17.0")
testImplementation("org.robolectric:robolectric:4.14.1")
testImplementation("androidx.test:runner:1.6.2")
testImplementation("androidx.test:core:1.6.1")
}

View file

@ -1,14 +1,17 @@
# Keep native methods
-keepclassmembers class * {
native <methods>;
}
# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in /home/iwo/android-sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# Keep classes that are used as a parameter type of methods that are also marked as keep
# to preserve changing those methods' signature.
-keep class helium314.keyboard.latin.Dictionary
-keep class helium314.keyboard.latin.NgramContext
-keep class helium314.keyboard.latin.makedict.ProbabilityInfo
# Add any project specific keep options here:
# after upgrading to gradle 8, stack traces contain "unknown source"
-keepattributes SourceFile,LineNumberTable
-dontobfuscate
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

View file

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-License-Identifier: GPL-3.0-only
-->
<resources>
<string name="english_ime_name" translatable="false">HeliBoard debug</string>
<string name="spell_checker_service_name" translatable="false">HeliBoard debug Spell Checker</string>
<string name="ime_settings" translatable="false">HeliBoard debug Settings</string>
</resources>

View file

@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
SPDX-License-Identifier: GPL-3.0-only
-->
<resources>
<string name="english_ime_name" translatable="false">HeliBoard debug</string>
<string name="spell_checker_service_name" translatable="false">HeliBoard debug Spell Checker</string>
<string name="ime_settings" translatable="false">HeliBoard debug Settings</string>
</resources>

View file

@ -1,46 +1,68 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2012 The Android Open Source Project
modified
SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-only
<!-- Copyright (C) 2012 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
coreApp="true"
package="org.dslul.openboard.inputmethod.latin">
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.READ_USER_DICTIONARY" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.VIBRATE" />
<uses-permission android:name="android.permission.WRITE_USER_DICTIONARY" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<!-- A signature-protected permission to ask AOSP Keyboard to close the software keyboard.
To use this, add the following line into calling application's AndroidManifest.xml
<pre>
{@code
<uses-permission android:name="org.dslul.openboard.inputmethod.latin.HIDE_SOFT_INPUT"/>
}
</pre>
then call {@link android.content.Context#sendBroadcast(Intent)} as follows:
<pre>
{@code
sendBroadcast(new Intent("org.dslul.openboard.inputmethod.latin.HIDE_SOFT_INPUT")
.setPackage("org.dslul.openboard.inputmethod.latin"));
}
</pre> -->
<permission android:name="org.dslul.openboard.inputmethod.latin.HIDE_SOFT_INPUT"
android:protectionLevel="signature" />
<application android:label="@string/english_ime_name"
android:name="helium314.keyboard.latin.App"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:allowBackup="true"
android:defaultToDeviceProtectedStorage="true"
android:directBootAware="true"
tools:remove="android:appComponentFactory"
tools:targetApi="p">
android:extractNativeLibs="false">
<!-- Services -->
<service android:name="LatinIME"
android:label="@string/english_ime_name"
android:permission="android.permission.BIND_INPUT_METHOD"
android:directBootAware="true"
android:exported="true">
android:permission="android.permission.BIND_INPUT_METHOD">
<intent-filter>
<action android:name="android.view.InputMethod" />
</intent-filter>
<meta-data android:name="android.view.im" android:resource="@xml/method_dummy" />
<meta-data android:name="android.view.im" android:resource="@xml/method" />
</service>
<service android:name=".spellcheck.AndroidSpellCheckerService"
android:label="@string/spell_checker_service_name"
android:permission="android.permission.BIND_TEXT_SERVICE"
android:exported="true">
android:permission="android.permission.BIND_TEXT_SERVICE">
<intent-filter>
<action android:name="android.service.textservice.SpellCheckerService" />
</intent-filter>
@ -49,36 +71,56 @@ SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-only
</service>
<!-- Activities -->
<activity android:name="helium314.keyboard.settings.SettingsActivity"
<activity android:name=".setup.SetupActivity"
android:theme="@style/platformActivityTheme"
android:label="@string/english_ime_name"
android:icon="@mipmap/ic_launcher"
android:windowSoftInputMode="adjustResize"
android:exported="true">
android:launchMode="singleTask"
android:noHistory="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- intent filter for opening .dict files -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:mimeType="application/octet-stream" android:scheme="content" android:host="*" android:pathPattern=".*\\.dict" />
</intent-filter>
</activity>
<activity android:name=".spellcheck.SpellCheckerSettingsActivity"
<activity
android:name=".permissions.PermissionsActivity"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="false"
android:taskAffinity="" >
</activity>
<activity android:name=".setup.SetupWizardActivity"
android:theme="@style/platformActivityTheme"
android:label="@string/spell_checker_service_name"
android:exported="true">
android:label="@string/english_ime_name"
android:clearTaskOnLaunch="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:name=".settings.SettingsActivity"
android:theme="@style/platformSettingsTheme"
android:label="@string/english_ime_settings">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<activity android:name=".spellcheck.SpellCheckerSettingsActivity"
android:theme="@style/platformSettingsTheme"
android:label="@string/android_spell_checker_settings">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
<!-- Unexported activity used for tests. -->
<activity android:name=".settings.TestFragmentActivity"
android:exported="false" />
<!-- Broadcast receivers -->
<receiver android:name="SystemBroadcastReceiver"
android:exported="true">
<receiver android:name="SystemBroadcastReceiver">
<intent-filter>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
@ -89,24 +131,17 @@ SPDX-License-Identifier: Apache-2.0 AND GPL-3.0-only
<receiver android:name="DictionaryPackInstallBroadcastReceiver" android:exported="false">
<intent-filter>
<action android:name="helium314.keyboard.dictionarypack.aosp.UNKNOWN_CLIENT" />
<action android:name="org.dslul.openboard.inputmethod.dictionarypack.aosp.UNKNOWN_CLIENT" />
</intent-filter>
</receiver>
<!-- Content providers -->
<provider android:name="org.dslul.openboard.inputmethod.dictionarypack.DictionaryProvider"
android:grantUriPermissions="true"
android:exported="false"
android:authorities="@string/authority"
android:multiprocess="false"
android:label="@string/dictionary_provider_name">
</provider>
</application>
<queries>
<!-- To detect other IMEs -->
<intent>
<!-- changed to * as it's supposed to help with finding other keyboard apps, see https://github.com/Helium314/HeliBoard/issues/1340 -->
<!--<action android:name="android.view.InputMethod" />-->
<action android:name="*" />
</intent>
<!-- To detect names of installed apps -->
<intent>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent>
</queries>
</manifest>

View file

@ -1,116 +0,0 @@
main,af,exp
main,ar,
main,ar,exp
main,hy,
main,as,
main,bn_BD,exp
main,bn,
main,bn,exp
main,eu,
main,be,
main,bg,
main,bg,exp
main,ca,
main,ca,exp
main,hr,
main,hr,exp
main,cs,
main,cs,exp
main,da,
main,da,exp
main,nl,
main,nl,exp
main,en_AU,
main,en_CA,exp
main,en_GB,
main,en_GB,exp
main,en_US,
main,en_US,exp
symbols,en,exp
emoji,en,
main,eo,
main,eo,exp
main,et,exp
main,fi,
main,fi,exp
emoji,fr,
symbols,fr,exp
main,fr,
main,fr,exp
main,gl,
main,gl,exp
main,ka,
main,de_AT,exp
main,de_CH,
main,de,
main,de,exp
main,gom,
main,el,
main,gu,
main,he,
main,iw,
main,he,exp
main,hi,
main,hi_ZZ,
main,hu,
main,hu,exp
main,is,exp
main,id,exp
main,it,
main,it,exp
main,kab,exp
main,kn,
main,ks,
main,kk,exp
main,km,
main,la,
main,lv,
main,lv,exp
main,lt,
main,lt,exp
main,lb,
main,mai,
addon,ml_ZZ,exp
main,ml,
main,mr,
main,ne,exp
main,nb,
main,nb,exp
main,or,
main,pms,exp
main,pl,
main,pl,exp
main,pt_BR,
main,pt_PT,
main,pt_PT,exp
main,pa,
main,ro,
main,ro,exp
emoji,ru,
main,ru,
main,ru,exp
main,sa,
main,sat,
main,sr_ZZ,
main,sr,
main,sd,
main,sk,exp
main,sl,
main,sl,exp
main,es,
main,es,exp
main,zgh_ZZ,
main,zgh,
main,sv,
main,sv,exp
main,ta,
main,te,
main,tok,
main,tcy,
main,tr,
main,tr,exp
emoji,uk,
main,uk,
main,uk,exp
main,ur,
main,vi,exp
1 main af exp
2 main ar
3 main ar exp
4 main hy
5 main as
6 main bn_BD exp
7 main bn
8 main bn exp
9 main eu
10 main be
11 main bg
12 main bg exp
13 main ca
14 main ca exp
15 main hr
16 main hr exp
17 main cs
18 main cs exp
19 main da
20 main da exp
21 main nl
22 main nl exp
23 main en_AU
24 main en_CA exp
25 main en_GB
26 main en_GB exp
27 main en_US
28 main en_US exp
29 symbols en exp
30 emoji en
31 main eo
32 main eo exp
33 main et exp
34 main fi
35 main fi exp
36 emoji fr
37 symbols fr exp
38 main fr
39 main fr exp
40 main gl
41 main gl exp
42 main ka
43 main de_AT exp
44 main de_CH
45 main de
46 main de exp
47 main gom
48 main el
49 main gu
50 main he
51 main iw
52 main he exp
53 main hi
54 main hi_ZZ
55 main hu
56 main hu exp
57 main is exp
58 main id exp
59 main it
60 main it exp
61 main kab exp
62 main kn
63 main ks
64 main kk exp
65 main km
66 main la
67 main lv
68 main lv exp
69 main lt
70 main lt exp
71 main lb
72 main mai
73 addon ml_ZZ exp
74 main ml
75 main mr
76 main ne exp
77 main nb
78 main nb exp
79 main or
80 main pms exp
81 main pl
82 main pl exp
83 main pt_BR
84 main pt_PT
85 main pt_PT exp
86 main pa
87 main ro
88 main ro exp
89 emoji ru
90 main ru
91 main ru exp
92 main sa
93 main sat
94 main sr_ZZ
95 main sr
96 main sd
97 main sk exp
98 main sl
99 main sl exp
100 main es
101 main es exp
102 main zgh_ZZ
103 main zgh
104 main sv
105 main sv exp
106 main ta
107 main te
108 main tok
109 main tcy
110 main tr
111 main tr exp
112 emoji uk
113 main uk
114 main uk exp
115 main ur
116 main vi exp

View file

@ -1,85 +0,0 @@
🎃
🎄
🎆
🎇
🧨
🎈
🎉
🎊
🎋
🎍
🎎
🎏
🎐
🎑
🧧
🎀
🎁
🎗️
🎟️
🎫
🎖️
🏆
🏅
🥇
🥈
🥉
🥎
🏀
🏐
🏈
🏉
🎾
🥏
🎳
🏏
🏑
🏒
🥍
🏓
🏸
🥊
🥋
🥅
⛸️
🎣
🤿
🎽
🎿
🛷
🥌
🎯
🪀
🪁
🔫
🎱
🔮
🪄
🎮
🕹️
🎰
🎲
🧩
🧸
🪅
🪩
🪆
♠️
♥️
♦️
♣️
♟️
🃏
🀄
🎴
🎭
🖼️
🎨
🧵
🪡
🧶
🪢

View file

@ -1,159 +0,0 @@
🐵
🐒
🦍
🦧
🐶
🐕
🦮
🐕‍🦺
🐩
🐺
🦊
🦝
🐱
🐈
🐈‍⬛
🦁
🐯
🐅
🐆
🐴
🫎
🫏
🐎
🦄
🦓
🦌
🦬
🐮
🐂
🐃
🐄
🐷
🐖
🐗
🐽
🐏
🐑
🐐
🐪
🐫
🦙
🦒
🐘
🦣
🦏
🦛
🐭
🐁
🐀
🐹
🐰
🐇
🐿️
🦫
🦔
🦇
🐻
🐻‍❄️
🐨
🐼
🦥
🦦
🦨
🦘
🦡
🐾
🦃
🐔
🐓
🐣
🐤
🐥
🐦
🐧
🕊️
🦅
🦆
🦢
🦉
🦤
🪶
🦩
🦚
🦜
🪽
🐦‍⬛
🪿
🐦‍🔥
🐸
🐊
🐢
🦎
🐍
🐲
🐉
🦕
🦖
🐳
🐋
🐬
🦭
🐟
🐠
🐡
🦈
🐙
🐚
🪸
🪼
🦀
🦞
🦐
🦑
🦪
🐌
🦋
🐛
🐜
🐝
🪲
🐞
🦗
🪳
🕷️
🕸️
🦂
🦟
🪰
🪱
🦠
💐
🌸
💮
🪷
🏵️
🌹
🥀
🌺
🌻
🌼
🌷
🪻
🌱
🪴
🌲
🌳
🌴
🌵
🌾
🌿
☘️
🍀
🍁
🍂
🍃
🪹
🪺
🍄
🪾

View file

@ -1,25 +0,0 @@
:-)
;-)
:-(
:-!
:-$
B-)
=-O
:-P
:O
:-*
:-D
:\'(
:-\\
O:-)
:-[
(╯°
□°)
╯︵
┻━┻
¯\\_
(ツ)
_/¯
┬─┬
︵ /(
.□.\\

View file

@ -1,270 +0,0 @@
🏁
🚩
🎌
🏴
🏳️
🏳️‍🌈
🏳️‍⚧️
🏴‍☠️
🇦🇨
🇦🇩
🇦🇪
🇦🇫
🇦🇬
🇦🇮
🇦🇱
🇦🇲
🇦🇴
🇦🇶
🇦🇷
🇦🇸
🇦🇹
🇦🇺
🇦🇼
🇦🇽
🇦🇿
🇧🇦
🇧🇧
🇧🇩
🇧🇪
🇧🇫
🇧🇬
🇧🇭
🇧🇮
🇧🇯
🇧🇱
🇧🇲
🇧🇳
🇧🇴
🇧🇶
🇧🇷
🇧🇸
🇧🇹
🇧🇻
🇧🇼
🇧🇾
🇧🇿
🇨🇦
🇨🇨
🇨🇩
🇨🇫
🇨🇬
🇨🇭
🇨🇮
🇨🇰
🇨🇱
🇨🇲
🇨🇳
🇨🇴
🇨🇵
🇨🇶
🇨🇷
🇨🇺
🇨🇻
🇨🇼
🇨🇽
🇨🇾
🇨🇿
🇩🇪
🇩🇬
🇩🇯
🇩🇰
🇩🇲
🇩🇴
🇩🇿
🇪🇦
🇪🇨
🇪🇪
🇪🇬
🇪🇭
🇪🇷
🇪🇸
🇪🇹
🇪🇺
🇫🇮
🇫🇯
🇫🇰
🇫🇲
🇫🇴
🇫🇷
🇬🇦
🇬🇧
🇬🇩
🇬🇪
🇬🇫
🇬🇬
🇬🇭
🇬🇮
🇬🇱
🇬🇲
🇬🇳
🇬🇵
🇬🇶
🇬🇷
🇬🇸
🇬🇹
🇬🇺
🇬🇼
🇬🇾
🇭🇰
🇭🇲
🇭🇳
🇭🇷
🇭🇹
🇭🇺
🇮🇨
🇮🇩
🇮🇪
🇮🇱
🇮🇲
🇮🇳
🇮🇴
🇮🇶
🇮🇷
🇮🇸
🇮🇹
🇯🇪
🇯🇲
🇯🇴
🇯🇵
🇰🇪
🇰🇬
🇰🇭
🇰🇮
🇰🇲
🇰🇳
🇰🇵
🇰🇷
🇰🇼
🇰🇾
🇰🇿
🇱🇦
🇱🇧
🇱🇨
🇱🇮
🇱🇰
🇱🇷
🇱🇸
🇱🇹
🇱🇺
🇱🇻
🇱🇾
🇲🇦
🇲🇨
🇲🇩
🇲🇪
🇲🇫
🇲🇬
🇲🇭
🇲🇰
🇲🇱
🇲🇲
🇲🇳
🇲🇴
🇲🇵
🇲🇶
🇲🇷
🇲🇸
🇲🇹
🇲🇺
🇲🇻
🇲🇼
🇲🇽
🇲🇾
🇲🇿
🇳🇦
🇳🇨
🇳🇪
🇳🇫
🇳🇬
🇳🇮
🇳🇱
🇳🇴
🇳🇵
🇳🇷
🇳🇺
🇳🇿
🇴🇲
🇵🇦
🇵🇪
🇵🇫
🇵🇬
🇵🇭
🇵🇰
🇵🇱
🇵🇲
🇵🇳
🇵🇷
🇵🇸
🇵🇹
🇵🇼
🇵🇾
🇶🇦
🇷🇪
🇷🇴
🇷🇸
🇷🇺
🇷🇼
🇸🇦
🇸🇧
🇸🇨
🇸🇩
🇸🇪
🇸🇬
🇸🇭
🇸🇮
🇸🇯
🇸🇰
🇸🇱
🇸🇲
🇸🇳
🇸🇴
🇸🇷
🇸🇸
🇸🇹
🇸🇻
🇸🇽
🇸🇾
🇸🇿
🇹🇦
🇹🇨
🇹🇩
🇹🇫
🇹🇬
🇹🇭
🇹🇯
🇹🇰
🇹🇱
🇹🇲
🇹🇳
🇹🇴
🇹🇷
🇹🇹
🇹🇻
🇹🇼
🇹🇿
🇺🇦
🇺🇬
🇺🇲
🇺🇳
🇺🇸
🇺🇾
🇺🇿
🇻🇦
🇻🇨
🇻🇪
🇻🇬
🇻🇮
🇻🇳
🇻🇺
🇼🇫
🇼🇸
🇽🇰
🇾🇪
🇾🇹
🇿🇦
🇿🇲
🇿🇼
🏴󠁧󠁢󠁥󠁮󠁧󠁿
🏴󠁧󠁢󠁳󠁣󠁴󠁿
🏴󠁧󠁢󠁷󠁬󠁳󠁿

View file

@ -1,131 +0,0 @@
🍇
🍈
🍉
🍊
🍋
🍋‍🟩
🍌
🍍
🥭
🍎
🍏
🍐
🍑
🍒
🍓
🫐
🥝
🍅
🫒
🥥
🥑
🍆
🥔
🥕
🌽
🌶️
🫑
🥒
🥬
🥦
🧄
🧅
🥜
🫘
🌰
🫚
🫛
🍄‍🟫
🫜
🍞
🥐
🥖
🫓
🥨
🥯
🥞
🧇
🧀
🍖
🍗
🥩
🥓
🍔
🍟
🍕
🌭
🥪
🌮
🌯
🫔
🥙
🧆
🥚
🍳
🥘
🍲
🫕
🥣
🥗
🍿
🧈
🧂
🥫
🍱
🍘
🍙
🍚
🍛
🍜
🍝
🍠
🍢
🍣
🍤
🍥
🥮
🍡
🥟
🥠
🥡
🍦
🍧
🍨
🍩
🍪
🎂
🍰
🧁
🥧
🍫
🍬
🍭
🍮
🍯
🍼
🥛
🫖
🍵
🍶
🍾
🍷
🍸
🍹
🍺
🍻
🥂
🥃
🫗
🥤
🧋
🧃
🧉
🧊
🥢
🍽️
🍴
🥄
🔪
🫙
🏺

View file

@ -1,264 +0,0 @@
👓
🕶️
🥽
🥼
🦺
👔
👕
👖
🧣
🧤
🧥
🧦
👗
👘
🥻
🩱
🩲
🩳
👙
👚
🪭
👛
👜
👝
🛍️
🎒
🩴
👞
👟
🥾
🥿
👠
👡
🩰
👢
🪮
👑
👒
🎩
🎓
🧢
🪖
⛑️
📿
💄
💍
💎
🔇
🔈
🔉
🔊
📢
📣
📯
🔔
🔕
🎼
🎵
🎶
🎙️
🎚️
🎛️
🎤
🎧
📻
🎷
🪗
🎸
🎹
🎺
🎻
🪕
🥁
🪘
🪇
🪈
🪉
📱
📲
☎️
📞
📟
📠
🔋
🪫
🔌
💻
🖥️
🖨️
⌨️
🖱️
🖲️
💽
💾
💿
📀
🧮
🎥
🎞️
📽️
🎬
📺
📷
📸
📹
📼
🔍
🔎
🕯️
💡
🔦
🏮
🪔
📔
📕
📖
📗
📘
📙
📚
📓
📒
📃
📜
📄
📰
🗞️
📑
🔖
🏷️
💰
🪙
💴
💵
💶
💷
💸
💳
🧾
💹
✉️
📧
📨
📩
📤
📥
📦
📫
📪
📬
📭
📮
🗳️
✏️
✒️
🖋️
🖊️
🖌️
🖍️
📝
💼
📁
📂
🗂️
📅
📆
🗒️
🗓️
📇
📈
📉
📊
📋
📌
📍
📎
🖇️
📏
📐
✂️
🗃️
🗄️
🗑️
🔒
🔓
🔏
🔐
🔑
🗝️
🔨
🪓
⛏️
⚒️
🛠️
🗡️
⚔️
💣
🪃
🏹
🛡️
🪚
🔧
🪛
🔩
⚙️
🗜️
⚖️
🦯
🔗
⛓️‍💥
⛓️
🪝
🧰
🧲
🪜
🪏
⚗️
🧪
🧫
🧬
🔬
🔭
📡
💉
🩸
💊
🩹
🩼
🩺
🩻
🚪
🛗
🪞
🪟
🛏️
🛋️
🪑
🚽
🪠
🚿
🛁
🪤
🪒
🧴
🧷
🧹
🧺
🧻
🪣
🧼
🫧
🪥
🧽
🧯
🛒
🚬
⚰️
🪦
⚱️
🧿
🪬
🗿
🪧
🪪

View file

@ -1,386 +0,0 @@
👋 👋🏻 👋🏼 👋🏽 👋🏾 👋🏿
🤚 🤚🏻 🤚🏼 🤚🏽 🤚🏾 🤚🏿
🖐️ 🖐🏻 🖐🏼 🖐🏽 🖐🏾 🖐🏿
✋ ✋🏻 ✋🏼 ✋🏽 ✋🏾 ✋🏿
🖖 🖖🏻 🖖🏼 🖖🏽 🖖🏾 🖖🏿
🫱 🫱🏻 🫱🏼 🫱🏽 🫱🏾 🫱🏿
🫲 🫲🏻 🫲🏼 🫲🏽 🫲🏾 🫲🏿
🫳 🫳🏻 🫳🏼 🫳🏽 🫳🏾 🫳🏿
🫴 🫴🏻 🫴🏼 🫴🏽 🫴🏾 🫴🏿
🫷 🫷🏻 🫷🏼 🫷🏽 🫷🏾 🫷🏿
🫸 🫸🏻 🫸🏼 🫸🏽 🫸🏾 🫸🏿
👌 👌🏻 👌🏼 👌🏽 👌🏾 👌🏿
🤌 🤌🏻 🤌🏼 🤌🏽 🤌🏾 🤌🏿
🤏 🤏🏻 🤏🏼 🤏🏽 🤏🏾 🤏🏿
✌️ ✌🏻 ✌🏼 ✌🏽 ✌🏾 ✌🏿
🤞 🤞🏻 🤞🏼 🤞🏽 🤞🏾 🤞🏿
🫰 🫰🏻 🫰🏼 🫰🏽 🫰🏾 🫰🏿
🤟 🤟🏻 🤟🏼 🤟🏽 🤟🏾 🤟🏿
🤘 🤘🏻 🤘🏼 🤘🏽 🤘🏾 🤘🏿
🤙 🤙🏻 🤙🏼 🤙🏽 🤙🏾 🤙🏿
👈 👈🏻 👈🏼 👈🏽 👈🏾 👈🏿
👉 👉🏻 👉🏼 👉🏽 👉🏾 👉🏿
👆 👆🏻 👆🏼 👆🏽 👆🏾 👆🏿
🖕 🖕🏻 🖕🏼 🖕🏽 🖕🏾 🖕🏿
👇 👇🏻 👇🏼 👇🏽 👇🏾 👇🏿
☝️ ☝🏻 ☝🏼 ☝🏽 ☝🏾 ☝🏿
🫵 🫵🏻 🫵🏼 🫵🏽 🫵🏾 🫵🏿
👍 👍🏻 👍🏼 👍🏽 👍🏾 👍🏿
👎 👎🏻 👎🏼 👎🏽 👎🏾 👎🏿
✊ ✊🏻 ✊🏼 ✊🏽 ✊🏾 ✊🏿
👊 👊🏻 👊🏼 👊🏽 👊🏾 👊🏿
🤛 🤛🏻 🤛🏼 🤛🏽 🤛🏾 🤛🏿
🤜 🤜🏻 🤜🏼 🤜🏽 🤜🏾 🤜🏿
👏 👏🏻 👏🏼 👏🏽 👏🏾 👏🏿
🙌 🙌🏻 🙌🏼 🙌🏽 🙌🏾 🙌🏿
🫶 🫶🏻 🫶🏼 🫶🏽 🫶🏾 🫶🏿
👐 👐🏻 👐🏼 👐🏽 👐🏾 👐🏿
🤲 🤲🏻 🤲🏼 🤲🏽 🤲🏾 🤲🏿
🤝 🤝🏻 🤝🏼 🤝🏽 🤝🏾 🤝🏿
🙏 🙏🏻 🙏🏼 🙏🏽 🙏🏾 🙏🏿
✍️ ✍🏻 ✍🏼 ✍🏽 ✍🏾 ✍🏿
💅 💅🏻 💅🏼 💅🏽 💅🏾 💅🏿
🤳 🤳🏻 🤳🏼 🤳🏽 🤳🏾 🤳🏿
💪 💪🏻 💪🏼 💪🏽 💪🏾 💪🏿
🦾
🦿
🦵 🦵🏻 🦵🏼 🦵🏽 🦵🏾 🦵🏿
🦶 🦶🏻 🦶🏼 🦶🏽 🦶🏾 🦶🏿
👂 👂🏻 👂🏼 👂🏽 👂🏾 👂🏿
🦻 🦻🏻 🦻🏼 🦻🏽 🦻🏾 🦻🏿
👃 👃🏻 👃🏼 👃🏽 👃🏾 👃🏿
🧠
🫀
🫁
🦷
🦴
👀
👁️
👅
👄
🫦
👶 👶🏻 👶🏼 👶🏽 👶🏾 👶🏿
🧒 🧒🏻 🧒🏼 🧒🏽 🧒🏾 🧒🏿
👦 👦🏻 👦🏼 👦🏽 👦🏾 👦🏿
👧 👧🏻 👧🏼 👧🏽 👧🏾 👧🏿
🧑 🧑🏻 🧑🏼 🧑🏽 🧑🏾 🧑🏿
👱 👱🏻 👱🏼 👱🏽 👱🏾 👱🏿
👨 👨🏻 👨🏼 👨🏽 👨🏾 👨🏿
🧔 🧔🏻 🧔🏼 🧔🏽 🧔🏾 🧔🏿
🧔‍♂️ 🧔🏻‍♂️ 🧔🏼‍♂️ 🧔🏽‍♂️ 🧔🏾‍♂️ 🧔🏿‍♂️
🧔‍♀️ 🧔🏻‍♀️ 🧔🏼‍♀️ 🧔🏽‍♀️ 🧔🏾‍♀️ 🧔🏿‍♀️
👨‍🦰 👨🏻‍🦰 👨🏼‍🦰 👨🏽‍🦰 👨🏾‍🦰 👨🏿‍🦰
👨‍🦱 👨🏻‍🦱 👨🏼‍🦱 👨🏽‍🦱 👨🏾‍🦱 👨🏿‍🦱
👨‍🦳 👨🏻‍🦳 👨🏼‍🦳 👨🏽‍🦳 👨🏾‍🦳 👨🏿‍🦳
👨‍🦲 👨🏻‍🦲 👨🏼‍🦲 👨🏽‍🦲 👨🏾‍🦲 👨🏿‍🦲
👩 👩🏻 👩🏼 👩🏽 👩🏾 👩🏿
👩‍🦰 👩🏻‍🦰 👩🏼‍🦰 👩🏽‍🦰 👩🏾‍🦰 👩🏿‍🦰
🧑‍🦰 🧑🏻‍🦰 🧑🏼‍🦰 🧑🏽‍🦰 🧑🏾‍🦰 🧑🏿‍🦰
👩‍🦱 👩🏻‍🦱 👩🏼‍🦱 👩🏽‍🦱 👩🏾‍🦱 👩🏿‍🦱
🧑‍🦱 🧑🏻‍🦱 🧑🏼‍🦱 🧑🏽‍🦱 🧑🏾‍🦱 🧑🏿‍🦱
👩‍🦳 👩🏻‍🦳 👩🏼‍🦳 👩🏽‍🦳 👩🏾‍🦳 👩🏿‍🦳
🧑‍🦳 🧑🏻‍🦳 🧑🏼‍🦳 🧑🏽‍🦳 🧑🏾‍🦳 🧑🏿‍🦳
👩‍🦲 👩🏻‍🦲 👩🏼‍🦲 👩🏽‍🦲 👩🏾‍🦲 👩🏿‍🦲
🧑‍🦲 🧑🏻‍🦲 🧑🏼‍🦲 🧑🏽‍🦲 🧑🏾‍🦲 🧑🏿‍🦲
👱‍♀️ 👱🏻‍♀️ 👱🏼‍♀️ 👱🏽‍♀️ 👱🏾‍♀️ 👱🏿‍♀️
👱‍♂️ 👱🏻‍♂️ 👱🏼‍♂️ 👱🏽‍♂️ 👱🏾‍♂️ 👱🏿‍♂️
🧓 🧓🏻 🧓🏼 🧓🏽 🧓🏾 🧓🏿
👴 👴🏻 👴🏼 👴🏽 👴🏾 👴🏿
👵 👵🏻 👵🏼 👵🏽 👵🏾 👵🏿
🙍 🙍🏻 🙍🏼 🙍🏽 🙍🏾 🙍🏿
🙍‍♂️ 🙍🏻‍♂️ 🙍🏼‍♂️ 🙍🏽‍♂️ 🙍🏾‍♂️ 🙍🏿‍♂️
🙍‍♀️ 🙍🏻‍♀️ 🙍🏼‍♀️ 🙍🏽‍♀️ 🙍🏾‍♀️ 🙍🏿‍♀️
🙎 🙎🏻 🙎🏼 🙎🏽 🙎🏾 🙎🏿
🙎‍♂️ 🙎🏻‍♂️ 🙎🏼‍♂️ 🙎🏽‍♂️ 🙎🏾‍♂️ 🙎🏿‍♂️
🙎‍♀️ 🙎🏻‍♀️ 🙎🏼‍♀️ 🙎🏽‍♀️ 🙎🏾‍♀️ 🙎🏿‍♀️
🙅 🙅🏻 🙅🏼 🙅🏽 🙅🏾 🙅🏿
🙅‍♂️ 🙅🏻‍♂️ 🙅🏼‍♂️ 🙅🏽‍♂️ 🙅🏾‍♂️ 🙅🏿‍♂️
🙅‍♀️ 🙅🏻‍♀️ 🙅🏼‍♀️ 🙅🏽‍♀️ 🙅🏾‍♀️ 🙅🏿‍♀️
🙆 🙆🏻 🙆🏼 🙆🏽 🙆🏾 🙆🏿
🙆‍♂️ 🙆🏻‍♂️ 🙆🏼‍♂️ 🙆🏽‍♂️ 🙆🏾‍♂️ 🙆🏿‍♂️
🙆‍♀️ 🙆🏻‍♀️ 🙆🏼‍♀️ 🙆🏽‍♀️ 🙆🏾‍♀️ 🙆🏿‍♀️
💁 💁🏻 💁🏼 💁🏽 💁🏾 💁🏿
💁‍♂️ 💁🏻‍♂️ 💁🏼‍♂️ 💁🏽‍♂️ 💁🏾‍♂️ 💁🏿‍♂️
💁‍♀️ 💁🏻‍♀️ 💁🏼‍♀️ 💁🏽‍♀️ 💁🏾‍♀️ 💁🏿‍♀️
🙋 🙋🏻 🙋🏼 🙋🏽 🙋🏾 🙋🏿
🙋‍♂️ 🙋🏻‍♂️ 🙋🏼‍♂️ 🙋🏽‍♂️ 🙋🏾‍♂️ 🙋🏿‍♂️
🙋‍♀️ 🙋🏻‍♀️ 🙋🏼‍♀️ 🙋🏽‍♀️ 🙋🏾‍♀️ 🙋🏿‍♀️
🧏 🧏🏻 🧏🏼 🧏🏽 🧏🏾 🧏🏿
🧏‍♂️ 🧏🏻‍♂️ 🧏🏼‍♂️ 🧏🏽‍♂️ 🧏🏾‍♂️ 🧏🏿‍♂️
🧏‍♀️ 🧏🏻‍♀️ 🧏🏼‍♀️ 🧏🏽‍♀️ 🧏🏾‍♀️ 🧏🏿‍♀️
🙇 🙇🏻 🙇🏼 🙇🏽 🙇🏾 🙇🏿
🙇‍♂️ 🙇🏻‍♂️ 🙇🏼‍♂️ 🙇🏽‍♂️ 🙇🏾‍♂️ 🙇🏿‍♂️
🙇‍♀️ 🙇🏻‍♀️ 🙇🏼‍♀️ 🙇🏽‍♀️ 🙇🏾‍♀️ 🙇🏿‍♀️
🤦 🤦🏻 🤦🏼 🤦🏽 🤦🏾 🤦🏿
🤦‍♂️ 🤦🏻‍♂️ 🤦🏼‍♂️ 🤦🏽‍♂️ 🤦🏾‍♂️ 🤦🏿‍♂️
🤦‍♀️ 🤦🏻‍♀️ 🤦🏼‍♀️ 🤦🏽‍♀️ 🤦🏾‍♀️ 🤦🏿‍♀️
🤷 🤷🏻 🤷🏼 🤷🏽 🤷🏾 🤷🏿
🤷‍♂️ 🤷🏻‍♂️ 🤷🏼‍♂️ 🤷🏽‍♂️ 🤷🏾‍♂️ 🤷🏿‍♂️
🤷‍♀️ 🤷🏻‍♀️ 🤷🏼‍♀️ 🤷🏽‍♀️ 🤷🏾‍♀️ 🤷🏿‍♀️
🧑‍⚕️ 🧑🏻‍⚕️ 🧑🏼‍⚕️ 🧑🏽‍⚕️ 🧑🏾‍⚕️ 🧑🏿‍⚕️
👨‍⚕️ 👨🏻‍⚕️ 👨🏼‍⚕️ 👨🏽‍⚕️ 👨🏾‍⚕️ 👨🏿‍⚕️
👩‍⚕️ 👩🏻‍⚕️ 👩🏼‍⚕️ 👩🏽‍⚕️ 👩🏾‍⚕️ 👩🏿‍⚕️
🧑‍🎓 🧑🏻‍🎓 🧑🏼‍🎓 🧑🏽‍🎓 🧑🏾‍🎓 🧑🏿‍🎓
👨‍🎓 👨🏻‍🎓 👨🏼‍🎓 👨🏽‍🎓 👨🏾‍🎓 👨🏿‍🎓
👩‍🎓 👩🏻‍🎓 👩🏼‍🎓 👩🏽‍🎓 👩🏾‍🎓 👩🏿‍🎓
🧑‍🏫 🧑🏻‍🏫 🧑🏼‍🏫 🧑🏽‍🏫 🧑🏾‍🏫 🧑🏿‍🏫
👨‍🏫 👨🏻‍🏫 👨🏼‍🏫 👨🏽‍🏫 👨🏾‍🏫 👨🏿‍🏫
👩‍🏫 👩🏻‍🏫 👩🏼‍🏫 👩🏽‍🏫 👩🏾‍🏫 👩🏿‍🏫
🧑‍⚖️ 🧑🏻‍⚖️ 🧑🏼‍⚖️ 🧑🏽‍⚖️ 🧑🏾‍⚖️ 🧑🏿‍⚖️
👨‍⚖️ 👨🏻‍⚖️ 👨🏼‍⚖️ 👨🏽‍⚖️ 👨🏾‍⚖️ 👨🏿‍⚖️
👩‍⚖️ 👩🏻‍⚖️ 👩🏼‍⚖️ 👩🏽‍⚖️ 👩🏾‍⚖️ 👩🏿‍⚖️
🧑‍🌾 🧑🏻‍🌾 🧑🏼‍🌾 🧑🏽‍🌾 🧑🏾‍🌾 🧑🏿‍🌾
👨‍🌾 👨🏻‍🌾 👨🏼‍🌾 👨🏽‍🌾 👨🏾‍🌾 👨🏿‍🌾
👩‍🌾 👩🏻‍🌾 👩🏼‍🌾 👩🏽‍🌾 👩🏾‍🌾 👩🏿‍🌾
🧑‍🍳 🧑🏻‍🍳 🧑🏼‍🍳 🧑🏽‍🍳 🧑🏾‍🍳 🧑🏿‍🍳
👨‍🍳 👨🏻‍🍳 👨🏼‍🍳 👨🏽‍🍳 👨🏾‍🍳 👨🏿‍🍳
👩‍🍳 👩🏻‍🍳 👩🏼‍🍳 👩🏽‍🍳 👩🏾‍🍳 👩🏿‍🍳
🧑‍🔧 🧑🏻‍🔧 🧑🏼‍🔧 🧑🏽‍🔧 🧑🏾‍🔧 🧑🏿‍🔧
👨‍🔧 👨🏻‍🔧 👨🏼‍🔧 👨🏽‍🔧 👨🏾‍🔧 👨🏿‍🔧
👩‍🔧 👩🏻‍🔧 👩🏼‍🔧 👩🏽‍🔧 👩🏾‍🔧 👩🏿‍🔧
🧑‍🏭 🧑🏻‍🏭 🧑🏼‍🏭 🧑🏽‍🏭 🧑🏾‍🏭 🧑🏿‍🏭
👨‍🏭 👨🏻‍🏭 👨🏼‍🏭 👨🏽‍🏭 👨🏾‍🏭 👨🏿‍🏭
👩‍🏭 👩🏻‍🏭 👩🏼‍🏭 👩🏽‍🏭 👩🏾‍🏭 👩🏿‍🏭
🧑‍💼 🧑🏻‍💼 🧑🏼‍💼 🧑🏽‍💼 🧑🏾‍💼 🧑🏿‍💼
👨‍💼 👨🏻‍💼 👨🏼‍💼 👨🏽‍💼 👨🏾‍💼 👨🏿‍💼
👩‍💼 👩🏻‍💼 👩🏼‍💼 👩🏽‍💼 👩🏾‍💼 👩🏿‍💼
🧑‍🔬 🧑🏻‍🔬 🧑🏼‍🔬 🧑🏽‍🔬 🧑🏾‍🔬 🧑🏿‍🔬
👨‍🔬 👨🏻‍🔬 👨🏼‍🔬 👨🏽‍🔬 👨🏾‍🔬 👨🏿‍🔬
👩‍🔬 👩🏻‍🔬 👩🏼‍🔬 👩🏽‍🔬 👩🏾‍🔬 👩🏿‍🔬
🧑‍💻 🧑🏻‍💻 🧑🏼‍💻 🧑🏽‍💻 🧑🏾‍💻 🧑🏿‍💻
👨‍💻 👨🏻‍💻 👨🏼‍💻 👨🏽‍💻 👨🏾‍💻 👨🏿‍💻
👩‍💻 👩🏻‍💻 👩🏼‍💻 👩🏽‍💻 👩🏾‍💻 👩🏿‍💻
🧑‍🎤 🧑🏻‍🎤 🧑🏼‍🎤 🧑🏽‍🎤 🧑🏾‍🎤 🧑🏿‍🎤
👨‍🎤 👨🏻‍🎤 👨🏼‍🎤 👨🏽‍🎤 👨🏾‍🎤 👨🏿‍🎤
👩‍🎤 👩🏻‍🎤 👩🏼‍🎤 👩🏽‍🎤 👩🏾‍🎤 👩🏿‍🎤
🧑‍🎨 🧑🏻‍🎨 🧑🏼‍🎨 🧑🏽‍🎨 🧑🏾‍🎨 🧑🏿‍🎨
👨‍🎨 👨🏻‍🎨 👨🏼‍🎨 👨🏽‍🎨 👨🏾‍🎨 👨🏿‍🎨
👩‍🎨 👩🏻‍🎨 👩🏼‍🎨 👩🏽‍🎨 👩🏾‍🎨 👩🏿‍🎨
🧑‍✈️ 🧑🏻‍✈️ 🧑🏼‍✈️ 🧑🏽‍✈️ 🧑🏾‍✈️ 🧑🏿‍✈️
👨‍✈️ 👨🏻‍✈️ 👨🏼‍✈️ 👨🏽‍✈️ 👨🏾‍✈️ 👨🏿‍✈️
👩‍✈️ 👩🏻‍✈️ 👩🏼‍✈️ 👩🏽‍✈️ 👩🏾‍✈️ 👩🏿‍✈️
🧑‍🚀 🧑🏻‍🚀 🧑🏼‍🚀 🧑🏽‍🚀 🧑🏾‍🚀 🧑🏿‍🚀
👨‍🚀 👨🏻‍🚀 👨🏼‍🚀 👨🏽‍🚀 👨🏾‍🚀 👨🏿‍🚀
👩‍🚀 👩🏻‍🚀 👩🏼‍🚀 👩🏽‍🚀 👩🏾‍🚀 👩🏿‍🚀
🧑‍🚒 🧑🏻‍🚒 🧑🏼‍🚒 🧑🏽‍🚒 🧑🏾‍🚒 🧑🏿‍🚒
👨‍🚒 👨🏻‍🚒 👨🏼‍🚒 👨🏽‍🚒 👨🏾‍🚒 👨🏿‍🚒
👩‍🚒 👩🏻‍🚒 👩🏼‍🚒 👩🏽‍🚒 👩🏾‍🚒 👩🏿‍🚒
👮 👮🏻 👮🏼 👮🏽 👮🏾 👮🏿
👮‍♂️ 👮🏻‍♂️ 👮🏼‍♂️ 👮🏽‍♂️ 👮🏾‍♂️ 👮🏿‍♂️
👮‍♀️ 👮🏻‍♀️ 👮🏼‍♀️ 👮🏽‍♀️ 👮🏾‍♀️ 👮🏿‍♀️
🕵️ 🕵🏻 🕵🏼 🕵🏽 🕵🏾 🕵🏿
🕵️‍♂️ 🕵🏻‍♂️ 🕵🏼‍♂️ 🕵🏽‍♂️ 🕵🏾‍♂️ 🕵🏿‍♂️
🕵️‍♀️ 🕵🏻‍♀️ 🕵🏼‍♀️ 🕵🏽‍♀️ 🕵🏾‍♀️ 🕵🏿‍♀️
💂 💂🏻 💂🏼 💂🏽 💂🏾 💂🏿
💂‍♂️ 💂🏻‍♂️ 💂🏼‍♂️ 💂🏽‍♂️ 💂🏾‍♂️ 💂🏿‍♂️
💂‍♀️ 💂🏻‍♀️ 💂🏼‍♀️ 💂🏽‍♀️ 💂🏾‍♀️ 💂🏿‍♀️
🥷 🥷🏻 🥷🏼 🥷🏽 🥷🏾 🥷🏿
👷 👷🏻 👷🏼 👷🏽 👷🏾 👷🏿
👷‍♂️ 👷🏻‍♂️ 👷🏼‍♂️ 👷🏽‍♂️ 👷🏾‍♂️ 👷🏿‍♂️
👷‍♀️ 👷🏻‍♀️ 👷🏼‍♀️ 👷🏽‍♀️ 👷🏾‍♀️ 👷🏿‍♀️
🫅 🫅🏻 🫅🏼 🫅🏽 🫅🏾 🫅🏿
🤴 🤴🏻 🤴🏼 🤴🏽 🤴🏾 🤴🏿
👸 👸🏻 👸🏼 👸🏽 👸🏾 👸🏿
👳 👳🏻 👳🏼 👳🏽 👳🏾 👳🏿
👳‍♂️ 👳🏻‍♂️ 👳🏼‍♂️ 👳🏽‍♂️ 👳🏾‍♂️ 👳🏿‍♂️
👳‍♀️ 👳🏻‍♀️ 👳🏼‍♀️ 👳🏽‍♀️ 👳🏾‍♀️ 👳🏿‍♀️
👲 👲🏻 👲🏼 👲🏽 👲🏾 👲🏿
🧕 🧕🏻 🧕🏼 🧕🏽 🧕🏾 🧕🏿
🤵 🤵🏻 🤵🏼 🤵🏽 🤵🏾 🤵🏿
🤵‍♂️ 🤵🏻‍♂️ 🤵🏼‍♂️ 🤵🏽‍♂️ 🤵🏾‍♂️ 🤵🏿‍♂️
🤵‍♀️ 🤵🏻‍♀️ 🤵🏼‍♀️ 🤵🏽‍♀️ 🤵🏾‍♀️ 🤵🏿‍♀️
👰 👰🏻 👰🏼 👰🏽 👰🏾 👰🏿
👰‍♂️ 👰🏻‍♂️ 👰🏼‍♂️ 👰🏽‍♂️ 👰🏾‍♂️ 👰🏿‍♂️
👰‍♀️ 👰🏻‍♀️ 👰🏼‍♀️ 👰🏽‍♀️ 👰🏾‍♀️ 👰🏿‍♀️
🤰 🤰🏻 🤰🏼 🤰🏽 🤰🏾 🤰🏿
🫃 🫃🏻 🫃🏼 🫃🏽 🫃🏾 🫃🏿
🫄 🫄🏻 🫄🏼 🫄🏽 🫄🏾 🫄🏿
🤱 🤱🏻 🤱🏼 🤱🏽 🤱🏾 🤱🏿
👩‍🍼 👩🏻‍🍼 👩🏼‍🍼 👩🏽‍🍼 👩🏾‍🍼 👩🏿‍🍼
👨‍🍼 👨🏻‍🍼 👨🏼‍🍼 👨🏽‍🍼 👨🏾‍🍼 👨🏿‍🍼
🧑‍🍼 🧑🏻‍🍼 🧑🏼‍🍼 🧑🏽‍🍼 🧑🏾‍🍼 🧑🏿‍🍼
👼 👼🏻 👼🏼 👼🏽 👼🏾 👼🏿
🎅 🎅🏻 🎅🏼 🎅🏽 🎅🏾 🎅🏿
🤶 🤶🏻 🤶🏼 🤶🏽 🤶🏾 🤶🏿
🧑‍🎄 🧑🏻‍🎄 🧑🏼‍🎄 🧑🏽‍🎄 🧑🏾‍🎄 🧑🏿‍🎄
🦸 🦸🏻 🦸🏼 🦸🏽 🦸🏾 🦸🏿
🦸‍♂️ 🦸🏻‍♂️ 🦸🏼‍♂️ 🦸🏽‍♂️ 🦸🏾‍♂️ 🦸🏿‍♂️
🦸‍♀️ 🦸🏻‍♀️ 🦸🏼‍♀️ 🦸🏽‍♀️ 🦸🏾‍♀️ 🦸🏿‍♀️
🦹 🦹🏻 🦹🏼 🦹🏽 🦹🏾 🦹🏿
🦹‍♂️ 🦹🏻‍♂️ 🦹🏼‍♂️ 🦹🏽‍♂️ 🦹🏾‍♂️ 🦹🏿‍♂️
🦹‍♀️ 🦹🏻‍♀️ 🦹🏼‍♀️ 🦹🏽‍♀️ 🦹🏾‍♀️ 🦹🏿‍♀️
🧙 🧙🏻 🧙🏼 🧙🏽 🧙🏾 🧙🏿
🧙‍♂️ 🧙🏻‍♂️ 🧙🏼‍♂️ 🧙🏽‍♂️ 🧙🏾‍♂️ 🧙🏿‍♂️
🧙‍♀️ 🧙🏻‍♀️ 🧙🏼‍♀️ 🧙🏽‍♀️ 🧙🏾‍♀️ 🧙🏿‍♀️
🧚 🧚🏻 🧚🏼 🧚🏽 🧚🏾 🧚🏿
🧚‍♂️ 🧚🏻‍♂️ 🧚🏼‍♂️ 🧚🏽‍♂️ 🧚🏾‍♂️ 🧚🏿‍♂️
🧚‍♀️ 🧚🏻‍♀️ 🧚🏼‍♀️ 🧚🏽‍♀️ 🧚🏾‍♀️ 🧚🏿‍♀️
🧛 🧛🏻 🧛🏼 🧛🏽 🧛🏾 🧛🏿
🧛‍♂️ 🧛🏻‍♂️ 🧛🏼‍♂️ 🧛🏽‍♂️ 🧛🏾‍♂️ 🧛🏿‍♂️
🧛‍♀️ 🧛🏻‍♀️ 🧛🏼‍♀️ 🧛🏽‍♀️ 🧛🏾‍♀️ 🧛🏿‍♀️
🧜 🧜🏻 🧜🏼 🧜🏽 🧜🏾 🧜🏿
🧜‍♂️ 🧜🏻‍♂️ 🧜🏼‍♂️ 🧜🏽‍♂️ 🧜🏾‍♂️ 🧜🏿‍♂️
🧜‍♀️ 🧜🏻‍♀️ 🧜🏼‍♀️ 🧜🏽‍♀️ 🧜🏾‍♀️ 🧜🏿‍♀️
🧝 🧝🏻 🧝🏼 🧝🏽 🧝🏾 🧝🏿
🧝‍♂️ 🧝🏻‍♂️ 🧝🏼‍♂️ 🧝🏽‍♂️ 🧝🏾‍♂️ 🧝🏿‍♂️
🧝‍♀️ 🧝🏻‍♀️ 🧝🏼‍♀️ 🧝🏽‍♀️ 🧝🏾‍♀️ 🧝🏿‍♀️
🧞
🧞‍♂️
🧞‍♀️
🧟
🧟‍♂️
🧟‍♀️
🧌
💆 💆🏻 💆🏼 💆🏽 💆🏾 💆🏿
💆‍♂️ 💆🏻‍♂️ 💆🏼‍♂️ 💆🏽‍♂️ 💆🏾‍♂️ 💆🏿‍♂️
💆‍♀️ 💆🏻‍♀️ 💆🏼‍♀️ 💆🏽‍♀️ 💆🏾‍♀️ 💆🏿‍♀️
💇 💇🏻 💇🏼 💇🏽 💇🏾 💇🏿
💇‍♂️ 💇🏻‍♂️ 💇🏼‍♂️ 💇🏽‍♂️ 💇🏾‍♂️ 💇🏿‍♂️
💇‍♀️ 💇🏻‍♀️ 💇🏼‍♀️ 💇🏽‍♀️ 💇🏾‍♀️ 💇🏿‍♀️
🚶 🚶🏻 🚶🏼 🚶🏽 🚶🏾 🚶🏿
🚶‍♂️ 🚶🏻‍♂️ 🚶🏼‍♂️ 🚶🏽‍♂️ 🚶🏾‍♂️ 🚶🏿‍♂️
🚶‍♀️ 🚶🏻‍♀️ 🚶🏼‍♀️ 🚶🏽‍♀️ 🚶🏾‍♀️ 🚶🏿‍♀️
🚶‍➡️ 🚶🏻‍➡️ 🚶🏼‍➡️ 🚶🏽‍➡️ 🚶🏾‍➡️ 🚶🏿‍➡️
🚶‍♀️‍➡️ 🚶🏻‍♀️‍➡️ 🚶🏼‍♀️‍➡️ 🚶🏽‍♀️‍➡️ 🚶🏾‍♀️‍➡️ 🚶🏿‍♀️‍➡️
🚶‍♂️‍➡️ 🚶🏻‍♂️‍➡️ 🚶🏼‍♂️‍➡️ 🚶🏽‍♂️‍➡️ 🚶🏾‍♂️‍➡️ 🚶🏿‍♂️‍➡️
🧍 🧍🏻 🧍🏼 🧍🏽 🧍🏾 🧍🏿
🧍‍♂️ 🧍🏻‍♂️ 🧍🏼‍♂️ 🧍🏽‍♂️ 🧍🏾‍♂️ 🧍🏿‍♂️
🧍‍♀️ 🧍🏻‍♀️ 🧍🏼‍♀️ 🧍🏽‍♀️ 🧍🏾‍♀️ 🧍🏿‍♀️
🧎 🧎🏻 🧎🏼 🧎🏽 🧎🏾 🧎🏿
🧎‍♂️ 🧎🏻‍♂️ 🧎🏼‍♂️ 🧎🏽‍♂️ 🧎🏾‍♂️ 🧎🏿‍♂️
🧎‍♀️ 🧎🏻‍♀️ 🧎🏼‍♀️ 🧎🏽‍♀️ 🧎🏾‍♀️ 🧎🏿‍♀️
🧎‍➡️ 🧎🏻‍➡️ 🧎🏼‍➡️ 🧎🏽‍➡️ 🧎🏾‍➡️ 🧎🏿‍➡️
🧎‍♀️‍➡️ 🧎🏻‍♀️‍➡️ 🧎🏼‍♀️‍➡️ 🧎🏽‍♀️‍➡️ 🧎🏾‍♀️‍➡️ 🧎🏿‍♀️‍➡️
🧎‍♂️‍➡️ 🧎🏻‍♂️‍➡️ 🧎🏼‍♂️‍➡️ 🧎🏽‍♂️‍➡️ 🧎🏾‍♂️‍➡️ 🧎🏿‍♂️‍➡️
🧑‍🦯 🧑🏻‍🦯 🧑🏼‍🦯 🧑🏽‍🦯 🧑🏾‍🦯 🧑🏿‍🦯
🧑‍🦯‍➡️ 🧑🏻‍🦯‍➡️ 🧑🏼‍🦯‍➡️ 🧑🏽‍🦯‍➡️ 🧑🏾‍🦯‍➡️ 🧑🏿‍🦯‍➡️
👨‍🦯 👨🏻‍🦯 👨🏼‍🦯 👨🏽‍🦯 👨🏾‍🦯 👨🏿‍🦯
👨‍🦯‍➡️ 👨🏻‍🦯‍➡️ 👨🏼‍🦯‍➡️ 👨🏽‍🦯‍➡️ 👨🏾‍🦯‍➡️ 👨🏿‍🦯‍➡️
👩‍🦯 👩🏻‍🦯 👩🏼‍🦯 👩🏽‍🦯 👩🏾‍🦯 👩🏿‍🦯
👩‍🦯‍➡️ 👩🏻‍🦯‍➡️ 👩🏼‍🦯‍➡️ 👩🏽‍🦯‍➡️ 👩🏾‍🦯‍➡️ 👩🏿‍🦯‍➡️
🧑‍🦼 🧑🏻‍🦼 🧑🏼‍🦼 🧑🏽‍🦼 🧑🏾‍🦼 🧑🏿‍🦼
🧑‍🦼‍➡️ 🧑🏻‍🦼‍➡️ 🧑🏼‍🦼‍➡️ 🧑🏽‍🦼‍➡️ 🧑🏾‍🦼‍➡️ 🧑🏿‍🦼‍➡️
👨‍🦼 👨🏻‍🦼 👨🏼‍🦼 👨🏽‍🦼 👨🏾‍🦼 👨🏿‍🦼
👨‍🦼‍➡️ 👨🏻‍🦼‍➡️ 👨🏼‍🦼‍➡️ 👨🏽‍🦼‍➡️ 👨🏾‍🦼‍➡️ 👨🏿‍🦼‍➡️
👩‍🦼 👩🏻‍🦼 👩🏼‍🦼 👩🏽‍🦼 👩🏾‍🦼 👩🏿‍🦼
👩‍🦼‍➡️ 👩🏻‍🦼‍➡️ 👩🏼‍🦼‍➡️ 👩🏽‍🦼‍➡️ 👩🏾‍🦼‍➡️ 👩🏿‍🦼‍➡️
🧑‍🦽 🧑🏻‍🦽 🧑🏼‍🦽 🧑🏽‍🦽 🧑🏾‍🦽 🧑🏿‍🦽
🧑‍🦽‍➡️ 🧑🏻‍🦽‍➡️ 🧑🏼‍🦽‍➡️ 🧑🏽‍🦽‍➡️ 🧑🏾‍🦽‍➡️ 🧑🏿‍🦽‍➡️
👨‍🦽 👨🏻‍🦽 👨🏼‍🦽 👨🏽‍🦽 👨🏾‍🦽 👨🏿‍🦽
👨‍🦽‍➡️ 👨🏻‍🦽‍➡️ 👨🏼‍🦽‍➡️ 👨🏽‍🦽‍➡️ 👨🏾‍🦽‍➡️ 👨🏿‍🦽‍➡️
👩‍🦽 👩🏻‍🦽 👩🏼‍🦽 👩🏽‍🦽 👩🏾‍🦽 👩🏿‍🦽
👩‍🦽‍➡️ 👩🏻‍🦽‍➡️ 👩🏼‍🦽‍➡️ 👩🏽‍🦽‍➡️ 👩🏾‍🦽‍➡️ 👩🏿‍🦽‍➡️
🏃 🏃🏻 🏃🏼 🏃🏽 🏃🏾 🏃🏿
🏃‍♂️ 🏃🏻‍♂️ 🏃🏼‍♂️ 🏃🏽‍♂️ 🏃🏾‍♂️ 🏃🏿‍♂️
🏃‍♀️ 🏃🏻‍♀️ 🏃🏼‍♀️ 🏃🏽‍♀️ 🏃🏾‍♀️ 🏃🏿‍♀️
🏃‍➡️ 🏃🏻‍➡️ 🏃🏼‍➡️ 🏃🏽‍➡️ 🏃🏾‍➡️ 🏃🏿‍➡️
🏃‍♀️‍➡️ 🏃🏻‍♀️‍➡️ 🏃🏼‍♀️‍➡️ 🏃🏽‍♀️‍➡️ 🏃🏾‍♀️‍➡️ 🏃🏿‍♀️‍➡️
🏃‍♂️‍➡️ 🏃🏻‍♂️‍➡️ 🏃🏼‍♂️‍➡️ 🏃🏽‍♂️‍➡️ 🏃🏾‍♂️‍➡️ 🏃🏿‍♂️‍➡️
💃 💃🏻 💃🏼 💃🏽 💃🏾 💃🏿
🕺 🕺🏻 🕺🏼 🕺🏽 🕺🏾 🕺🏿
🕴️ 🕴🏻 🕴🏼 🕴🏽 🕴🏾 🕴🏿
👯
👯‍♂️
👯‍♀️
🧖 🧖🏻 🧖🏼 🧖🏽 🧖🏾 🧖🏿
🧖‍♂️ 🧖🏻‍♂️ 🧖🏼‍♂️ 🧖🏽‍♂️ 🧖🏾‍♂️ 🧖🏿‍♂️
🧖‍♀️ 🧖🏻‍♀️ 🧖🏼‍♀️ 🧖🏽‍♀️ 🧖🏾‍♀️ 🧖🏿‍♀️
🧗 🧗🏻 🧗🏼 🧗🏽 🧗🏾 🧗🏿
🧗‍♂️ 🧗🏻‍♂️ 🧗🏼‍♂️ 🧗🏽‍♂️ 🧗🏾‍♂️ 🧗🏿‍♂️
🧗‍♀️ 🧗🏻‍♀️ 🧗🏼‍♀️ 🧗🏽‍♀️ 🧗🏾‍♀️ 🧗🏿‍♀️
🤺
🏇 🏇🏻 🏇🏼 🏇🏽 🏇🏾 🏇🏿
⛷️
🏂 🏂🏻 🏂🏼 🏂🏽 🏂🏾 🏂🏿
🏌️ 🏌🏻 🏌🏼 🏌🏽 🏌🏾 🏌🏿
🏌️‍♂️ 🏌🏻‍♂️ 🏌🏼‍♂️ 🏌🏽‍♂️ 🏌🏾‍♂️ 🏌🏿‍♂️
🏌️‍♀️ 🏌🏻‍♀️ 🏌🏼‍♀️ 🏌🏽‍♀️ 🏌🏾‍♀️ 🏌🏿‍♀️
🏄 🏄🏻 🏄🏼 🏄🏽 🏄🏾 🏄🏿
🏄‍♂️ 🏄🏻‍♂️ 🏄🏼‍♂️ 🏄🏽‍♂️ 🏄🏾‍♂️ 🏄🏿‍♂️
🏄‍♀️ 🏄🏻‍♀️ 🏄🏼‍♀️ 🏄🏽‍♀️ 🏄🏾‍♀️ 🏄🏿‍♀️
🚣 🚣🏻 🚣🏼 🚣🏽 🚣🏾 🚣🏿
🚣‍♂️ 🚣🏻‍♂️ 🚣🏼‍♂️ 🚣🏽‍♂️ 🚣🏾‍♂️ 🚣🏿‍♂️
🚣‍♀️ 🚣🏻‍♀️ 🚣🏼‍♀️ 🚣🏽‍♀️ 🚣🏾‍♀️ 🚣🏿‍♀️
🏊 🏊🏻 🏊🏼 🏊🏽 🏊🏾 🏊🏿
🏊‍♂️ 🏊🏻‍♂️ 🏊🏼‍♂️ 🏊🏽‍♂️ 🏊🏾‍♂️ 🏊🏿‍♂️
🏊‍♀️ 🏊🏻‍♀️ 🏊🏼‍♀️ 🏊🏽‍♀️ 🏊🏾‍♀️ 🏊🏿‍♀️
⛹️ ⛹🏻 ⛹🏼 ⛹🏽 ⛹🏾 ⛹🏿
⛹️‍♂️ ⛹🏻‍♂️ ⛹🏼‍♂️ ⛹🏽‍♂️ ⛹🏾‍♂️ ⛹🏿‍♂️
⛹️‍♀️ ⛹🏻‍♀️ ⛹🏼‍♀️ ⛹🏽‍♀️ ⛹🏾‍♀️ ⛹🏿‍♀️
🏋️ 🏋🏻 🏋🏼 🏋🏽 🏋🏾 🏋🏿
🏋️‍♂️ 🏋🏻‍♂️ 🏋🏼‍♂️ 🏋🏽‍♂️ 🏋🏾‍♂️ 🏋🏿‍♂️
🏋️‍♀️ 🏋🏻‍♀️ 🏋🏼‍♀️ 🏋🏽‍♀️ 🏋🏾‍♀️ 🏋🏿‍♀️
🚴 🚴🏻 🚴🏼 🚴🏽 🚴🏾 🚴🏿
🚴‍♂️ 🚴🏻‍♂️ 🚴🏼‍♂️ 🚴🏽‍♂️ 🚴🏾‍♂️ 🚴🏿‍♂️
🚴‍♀️ 🚴🏻‍♀️ 🚴🏼‍♀️ 🚴🏽‍♀️ 🚴🏾‍♀️ 🚴🏿‍♀️
🚵 🚵🏻 🚵🏼 🚵🏽 🚵🏾 🚵🏿
🚵‍♂️ 🚵🏻‍♂️ 🚵🏼‍♂️ 🚵🏽‍♂️ 🚵🏾‍♂️ 🚵🏿‍♂️
🚵‍♀️ 🚵🏻‍♀️ 🚵🏼‍♀️ 🚵🏽‍♀️ 🚵🏾‍♀️ 🚵🏿‍♀️
🤸 🤸🏻 🤸🏼 🤸🏽 🤸🏾 🤸🏿
🤸‍♂️ 🤸🏻‍♂️ 🤸🏼‍♂️ 🤸🏽‍♂️ 🤸🏾‍♂️ 🤸🏿‍♂️
🤸‍♀️ 🤸🏻‍♀️ 🤸🏼‍♀️ 🤸🏽‍♀️ 🤸🏾‍♀️ 🤸🏿‍♀️
🤼
🤼‍♂️
🤼‍♀️
🤽 🤽🏻 🤽🏼 🤽🏽 🤽🏾 🤽🏿
🤽‍♂️ 🤽🏻‍♂️ 🤽🏼‍♂️ 🤽🏽‍♂️ 🤽🏾‍♂️ 🤽🏿‍♂️
🤽‍♀️ 🤽🏻‍♀️ 🤽🏼‍♀️ 🤽🏽‍♀️ 🤽🏾‍♀️ 🤽🏿‍♀️
🤾 🤾🏻 🤾🏼 🤾🏽 🤾🏾 🤾🏿
🤾‍♂️ 🤾🏻‍♂️ 🤾🏼‍♂️ 🤾🏽‍♂️ 🤾🏾‍♂️ 🤾🏿‍♂️
🤾‍♀️ 🤾🏻‍♀️ 🤾🏼‍♀️ 🤾🏽‍♀️ 🤾🏾‍♀️ 🤾🏿‍♀️
🤹 🤹🏻 🤹🏼 🤹🏽 🤹🏾 🤹🏿
🤹‍♂️ 🤹🏻‍♂️ 🤹🏼‍♂️ 🤹🏽‍♂️ 🤹🏾‍♂️ 🤹🏿‍♂️
🤹‍♀️ 🤹🏻‍♀️ 🤹🏼‍♀️ 🤹🏽‍♀️ 🤹🏾‍♀️ 🤹🏿‍♀️
🧘 🧘🏻 🧘🏼 🧘🏽 🧘🏾 🧘🏿
🧘‍♂️ 🧘🏻‍♂️ 🧘🏼‍♂️ 🧘🏽‍♂️ 🧘🏾‍♂️ 🧘🏿‍♂️
🧘‍♀️ 🧘🏻‍♀️ 🧘🏼‍♀️ 🧘🏽‍♀️ 🧘🏾‍♀️ 🧘🏿‍♀️
🛀 🛀🏻 🛀🏼 🛀🏽 🛀🏾 🛀🏿
🛌 🛌🏻 🛌🏼 🛌🏽 🛌🏾 🛌🏿
🧑‍🤝‍🧑 🧑🏻‍🤝‍🧑🏻 🧑🏻‍🤝‍🧑🏼 🧑🏻‍🤝‍🧑🏽 🧑🏻‍🤝‍🧑🏾 🧑🏻‍🤝‍🧑🏿 🧑🏼‍🤝‍🧑🏻 🧑🏼‍🤝‍🧑🏼 🧑🏼‍🤝‍🧑🏽 🧑🏼‍🤝‍🧑🏾 🧑🏼‍🤝‍🧑🏿 🧑🏽‍🤝‍🧑🏻 🧑🏽‍🤝‍🧑🏼 🧑🏽‍🤝‍🧑🏽 🧑🏽‍🤝‍🧑🏾 🧑🏽‍🤝‍🧑🏿 🧑🏾‍🤝‍🧑🏻 🧑🏾‍🤝‍🧑🏼 🧑🏾‍🤝‍🧑🏽 🧑🏾‍🤝‍🧑🏾 🧑🏾‍🤝‍🧑🏿 🧑🏿‍🤝‍🧑🏻 🧑🏿‍🤝‍🧑🏼 🧑🏿‍🤝‍🧑🏽 🧑🏿‍🤝‍🧑🏾 🧑🏿‍🤝‍🧑🏿
👭 👭🏻 👭🏼 👭🏽 👭🏾 👭🏿
👫 👫🏻 👫🏼 👫🏽 👫🏾 👫🏿
👬 👬🏻 👬🏼 👬🏽 👬🏾 👬🏿
💏 💏🏻 💏🏼 💏🏽 💏🏾 💏🏿
👩‍❤️‍💋‍👨 👩🏻‍❤️‍💋‍👨🏻 👩🏻‍❤️‍💋‍👨🏼 👩🏻‍❤️‍💋‍👨🏽 👩🏻‍❤️‍💋‍👨🏾 👩🏻‍❤️‍💋‍👨🏿 👩🏼‍❤️‍💋‍👨🏻 👩🏼‍❤️‍💋‍👨🏼 👩🏼‍❤️‍💋‍👨🏽 👩🏼‍❤️‍💋‍👨🏾 👩🏼‍❤️‍💋‍👨🏿 👩🏽‍❤️‍💋‍👨🏻 👩🏽‍❤️‍💋‍👨🏼 👩🏽‍❤️‍💋‍👨🏽 👩🏽‍❤️‍💋‍👨🏾 👩🏽‍❤️‍💋‍👨🏿 👩🏾‍❤️‍💋‍👨🏻 👩🏾‍❤️‍💋‍👨🏼 👩🏾‍❤️‍💋‍👨🏽 👩🏾‍❤️‍💋‍👨🏾 👩🏾‍❤️‍💋‍👨🏿 👩🏿‍❤️‍💋‍👨🏻 👩🏿‍❤️‍💋‍👨🏼 👩🏿‍❤️‍💋‍👨🏽 👩🏿‍❤️‍💋‍👨🏾 👩🏿‍❤️‍💋‍👨🏿
👨‍❤️‍💋‍👨 👨🏻‍❤️‍💋‍👨🏻 👨🏻‍❤️‍💋‍👨🏼 👨🏻‍❤️‍💋‍👨🏽 👨🏻‍❤️‍💋‍👨🏾 👨🏻‍❤️‍💋‍👨🏿 👨🏼‍❤️‍💋‍👨🏻 👨🏼‍❤️‍💋‍👨🏼 👨🏼‍❤️‍💋‍👨🏽 👨🏼‍❤️‍💋‍👨🏾 👨🏼‍❤️‍💋‍👨🏿 👨🏽‍❤️‍💋‍👨🏻 👨🏽‍❤️‍💋‍👨🏼 👨🏽‍❤️‍💋‍👨🏽 👨🏽‍❤️‍💋‍👨🏾 👨🏽‍❤️‍💋‍👨🏿 👨🏾‍❤️‍💋‍👨🏻 👨🏾‍❤️‍💋‍👨🏼 👨🏾‍❤️‍💋‍👨🏽 👨🏾‍❤️‍💋‍👨🏾 👨🏾‍❤️‍💋‍👨🏿 👨🏿‍❤️‍💋‍👨🏻 👨🏿‍❤️‍💋‍👨🏼 👨🏿‍❤️‍💋‍👨🏽 👨🏿‍❤️‍💋‍👨🏾 👨🏿‍❤️‍💋‍👨🏿
👩‍❤️‍💋‍👩 👩🏻‍❤️‍💋‍👩🏻 👩🏻‍❤️‍💋‍👩🏼 👩🏻‍❤️‍💋‍👩🏽 👩🏻‍❤️‍💋‍👩🏾 👩🏻‍❤️‍💋‍👩🏿 👩🏼‍❤️‍💋‍👩🏻 👩🏼‍❤️‍💋‍👩🏼 👩🏼‍❤️‍💋‍👩🏽 👩🏼‍❤️‍💋‍👩🏾 👩🏼‍❤️‍💋‍👩🏿 👩🏽‍❤️‍💋‍👩🏻 👩🏽‍❤️‍💋‍👩🏼 👩🏽‍❤️‍💋‍👩🏽 👩🏽‍❤️‍💋‍👩🏾 👩🏽‍❤️‍💋‍👩🏿 👩🏾‍❤️‍💋‍👩🏻 👩🏾‍❤️‍💋‍👩🏼 👩🏾‍❤️‍💋‍👩🏽 👩🏾‍❤️‍💋‍👩🏾 👩🏾‍❤️‍💋‍👩🏿 👩🏿‍❤️‍💋‍👩🏻 👩🏿‍❤️‍💋‍👩🏼 👩🏿‍❤️‍💋‍👩🏽 👩🏿‍❤️‍💋‍👩🏾 👩🏿‍❤️‍💋‍👩🏿
💑 💑🏻 💑🏼 💑🏽 💑🏾 💑🏿
👩‍❤️‍👨 👩🏻‍❤️‍👨🏻 👩🏻‍❤️‍👨🏼 👩🏻‍❤️‍👨🏽 👩🏻‍❤️‍👨🏾 👩🏻‍❤️‍👨🏿 👩🏼‍❤️‍👨🏻 👩🏼‍❤️‍👨🏼 👩🏼‍❤️‍👨🏽 👩🏼‍❤️‍👨🏾 👩🏼‍❤️‍👨🏿 👩🏽‍❤️‍👨🏻 👩🏽‍❤️‍👨🏼 👩🏽‍❤️‍👨🏽 👩🏽‍❤️‍👨🏾 👩🏽‍❤️‍👨🏿 👩🏾‍❤️‍👨🏻 👩🏾‍❤️‍👨🏼 👩🏾‍❤️‍👨🏽 👩🏾‍❤️‍👨🏾 👩🏾‍❤️‍👨🏿 👩🏿‍❤️‍👨🏻 👩🏿‍❤️‍👨🏼 👩🏿‍❤️‍👨🏽 👩🏿‍❤️‍👨🏾 👩🏿‍❤️‍👨🏿
👨‍❤️‍👨 👨🏻‍❤️‍👨🏻 👨🏻‍❤️‍👨🏼 👨🏻‍❤️‍👨🏽 👨🏻‍❤️‍👨🏾 👨🏻‍❤️‍👨🏿 👨🏼‍❤️‍👨🏻 👨🏼‍❤️‍👨🏼 👨🏼‍❤️‍👨🏽 👨🏼‍❤️‍👨🏾 👨🏼‍❤️‍👨🏿 👨🏽‍❤️‍👨🏻 👨🏽‍❤️‍👨🏼 👨🏽‍❤️‍👨🏽 👨🏽‍❤️‍👨🏾 👨🏽‍❤️‍👨🏿 👨🏾‍❤️‍👨🏻 👨🏾‍❤️‍👨🏼 👨🏾‍❤️‍👨🏽 👨🏾‍❤️‍👨🏾 👨🏾‍❤️‍👨🏿 👨🏿‍❤️‍👨🏻 👨🏿‍❤️‍👨🏼 👨🏿‍❤️‍👨🏽 👨🏿‍❤️‍👨🏾 👨🏿‍❤️‍👨🏿
👩‍❤️‍👩 👩🏻‍❤️‍👩🏻 👩🏻‍❤️‍👩🏼 👩🏻‍❤️‍👩🏽 👩🏻‍❤️‍👩🏾 👩🏻‍❤️‍👩🏿 👩🏼‍❤️‍👩🏻 👩🏼‍❤️‍👩🏼 👩🏼‍❤️‍👩🏽 👩🏼‍❤️‍👩🏾 👩🏼‍❤️‍👩🏿 👩🏽‍❤️‍👩🏻 👩🏽‍❤️‍👩🏼 👩🏽‍❤️‍👩🏽 👩🏽‍❤️‍👩🏾 👩🏽‍❤️‍👩🏿 👩🏾‍❤️‍👩🏻 👩🏾‍❤️‍👩🏼 👩🏾‍❤️‍👩🏽 👩🏾‍❤️‍👩🏾 👩🏾‍❤️‍👩🏿 👩🏿‍❤️‍👩🏻 👩🏿‍❤️‍👩🏼 👩🏿‍❤️‍👩🏽 👩🏿‍❤️‍👩🏾 👩🏿‍❤️‍👩🏿
👨‍👩‍👦
👨‍👩‍👧
👨‍👩‍👧‍👦
👨‍👩‍👦‍👦
👨‍👩‍👧‍👧
👨‍👨‍👦
👨‍👨‍👧
👨‍👨‍👧‍👦
👨‍👨‍👦‍👦
👨‍👨‍👧‍👧
👩‍👩‍👦
👩‍👩‍👧
👩‍👩‍👧‍👦
👩‍👩‍👦‍👦
👩‍👩‍👧‍👧
👨‍👦
👨‍👦‍👦
👨‍👧
👨‍👧‍👦
👨‍👧‍👧
👩‍👦
👩‍👦‍👦
👩‍👧
👩‍👧‍👦
👩‍👧‍👧
🗣️
👤
👥
🫂
👪
🧑‍🧑‍🧒
🧑‍🧑‍🧒‍🧒
🧑‍🧒
🧑‍🧒‍🧒
👣
🫆

View file

@ -1,169 +0,0 @@
😀
😃
😄
😁
😆
😅
🤣
😂
🙂
🙃
🫠
😉
😊
😇
🥰
😍
🤩
😘
😗
☺️
😚
😙
🥲
😋
😛
😜
🤪
😝
🤑
🤗
🤭
🫢
🫣
🤫
🤔
🫡
🤐
🤨
😐
😑
😶
🫥
😶‍🌫️
😏
😒
🙄
😬
😮‍💨
🤥
🫨
🙂‍↔️
🙂‍↕️
😌
😔
😪
🤤
😴
🫩
😷
🤒
🤕
🤢
🤮
🤧
🥵
🥶
🥴
😵
😵‍💫
🤯
🤠
🥳
🥸
😎
🤓
🧐
😕
🫤
😟
🙁
☹️
😮
😯
😲
😳
🥺
🥹
😦
😧
😨
😰
😥
😢
😭
😱
😖
😣
😞
😓
😩
😫
🥱
😤
😡
😠
🤬
😈
👿
💀
☠️
💩
🤡
👹
👺
👻
👽
👾
🤖
😺
😸
😹
😻
😼
😽
🙀
😿
😾
🙈
🙉
🙊
💌
💘
💝
💖
💗
💓
💞
💕
💟
❣️
💔
❤️‍🔥
❤️‍🩹
❤️
🩷
🧡
💛
💚
💙
🩵
💜
🤎
🖤
🩶
🤍
💋
💯
💢
💥
💫
💦
💨
🕳️
💬
👁️‍🗨️
🗨️
🗯️
💭
💤

View file

@ -1,224 +0,0 @@
🏧
🚮
🚰
🚹
🚺
🚻
🚼
🚾
🛂
🛃
🛄
🛅
⚠️
🚸
🚫
🚳
🚭
🚯
🚱
🚷
📵
🔞
☢️
☣️
⬆️
↗️
➡️
↘️
⬇️
↙️
⬅️
↖️
↕️
↔️
↩️
↪️
⤴️
⤵️
🔃
🔄
🔙
🔚
🔛
🔜
🔝
🛐
⚛️
🕉️
✡️
☸️
☯️
✝️
☦️
☪️
☮️
🕎
🔯
🪯
🔀
🔁
🔂
▶️
⏭️
⏯️
◀️
⏮️
🔼
🔽
⏸️
⏹️
⏺️
⏏️
🎦
🔅
🔆
📶
🛜
📳
📴
♀️
♂️
⚧️
✖️
🟰
♾️
‼️
⁉️
〰️
💱
💲
⚕️
♻️
⚜️
🔱
📛
🔰
☑️
✔️
〽️
✳️
✴️
❇️
©️
®️
™️
🫟
#️⃣
*️⃣
0
1
2
3
4
5
6
7
8
9
🔟
🔠
🔡
🔢
🔣
🔤
🅰️
🆎
🅱️
🆑
🆒
🆓
🆔
Ⓜ️
🆕
🆖
🅾️
🆗
🅿️
🆘
🆙
🆚
🈁
🈂️
🈷️
🈶
🈯
🉐
🈹
🈚
🈲
🉑
🈸
🈴
🈳
㊗️
㊙️
🈺
🈵
🔴
🟠
🟡
🟢
🔵
🟣
🟤
🟥
🟧
🟨
🟩
🟦
🟪
🟫
◼️
◻️
▪️
▫️
🔶
🔷
🔸
🔹
🔺
🔻
💠
🔘
🔳
🔲

View file

@ -1,218 +0,0 @@
🌍
🌎
🌏
🌐
🗺️
🗾
🧭
🏔️
⛰️
🌋
🗻
🏕️
🏖️
🏜️
🏝️
🏞️
🏟️
🏛️
🏗️
🧱
🪨
🪵
🛖
🏘️
🏚️
🏠
🏡
🏢
🏣
🏤
🏥
🏦
🏨
🏩
🏪
🏫
🏬
🏭
🏯
🏰
💒
🗼
🗽
🕌
🛕
🕍
⛩️
🕋
🌁
🌃
🏙️
🌄
🌅
🌆
🌇
🌉
♨️
🎠
🛝
🎡
🎢
💈
🎪
🚂
🚃
🚄
🚅
🚆
🚇
🚈
🚉
🚊
🚝
🚞
🚋
🚌
🚍
🚎
🚐
🚑
🚒
🚓
🚔
🚕
🚖
🚗
🚘
🚙
🛻
🚚
🚛
🚜
🏎️
🏍️
🛵
🦽
🦼
🛺
🚲
🛴
🛹
🛼
🚏
🛣️
🛤️
🛢️
🛞
🚨
🚥
🚦
🛑
🚧
🛟
🛶
🚤
🛳️
⛴️
🛥️
🚢
✈️
🛩️
🛫
🛬
🪂
💺
🚁
🚟
🚠
🚡
🛰️
🚀
🛸
🛎️
🧳
⏱️
⏲️
🕰️
🕛
🕧
🕐
🕜
🕑
🕝
🕒
🕞
🕓
🕟
🕔
🕠
🕕
🕡
🕖
🕢
🕗
🕣
🕘
🕤
🕙
🕥
🕚
🕦
🌑
🌒
🌓
🌔
🌕
🌖
🌗
🌘
🌙
🌚
🌛
🌜
🌡️
☀️
🌝
🌞
🪐
🌟
🌠
🌌
☁️
⛈️
🌤️
🌥️
🌦️
🌧️
🌨️
🌩️
🌪️
🌫️
🌬️
🌀
🌈
🌂
☂️
⛱️
❄️
☃️
☄️
🔥
💧
🌊

File diff suppressed because one or more lines are too long

View file

@ -1,7 +0,0 @@
[
[
{ "label": "alpha", "width": 0.15 },
{ "label": "space", "width": -1 },
{ "label": "delete", "width": 0.15 }
]
]

View file

@ -1,7 +0,0 @@
[
[
{ "label": "alpha", "width": 0.15 },
{ "label": "space", "width": -1 },
{ "label": "delete", "width": 0.15 }
]
]

View file

@ -1,21 +0,0 @@
[
[
{ "label": "shift", "width": 0.15 },
{ "type": "placeholder" },
{ "label": "delete", "width": 0.15 }
],
[
{ "label": "symbol_alpha", "width": 0.15 },
{ "$": "variation_selector",
"default": { "label": "comma" },
"email": { "label": "@", "groupId": 1, "type": "function" },
"uri": { "label": "/", "groupId": 1, "type": "function" }
},
{ "$": "keyboard_state_selector", "languageKeyEnabled": { "$": "keyboard_state_selector", "alphabet": { "label": "language_switch" }}},
{ "$": "keyboard_state_selector", "emojiKeyEnabled": { "$": "keyboard_state_selector", "alphabet": { "label": "emoji" }}},
{ "$": "keyboard_state_selector", "symbols": { "label": "numpad" }},
{ "label": "space" },
{ "label": "period", "labelFlags": 1073741824 },
{ "label": "action", "width": 0.15 }
]
]

View file

@ -1,36 +0,0 @@
[
[
{ "type": "placeholder" },
{ "label": "delete", "width": 0.1 }
],
[
{ "type": "placeholder" }
],
[
{ "type": "placeholder" },
{ "label": "action", "width": 0.1 }
],
[
{ "label": "shift", "width": 0.1 },
{ "type": "placeholder" },
{ "label": "shift" }
],
[
{ "label": "symbol_alpha" },
{ "$": "variation_selector",
"default": { "label": "comma" },
"email": { "label": "@", "groupId": 1, "type": "function" },
"uri": { "label": "/", "groupId": 1, "type": "function" }
},
{ "$": "keyboard_state_selector", "languageKeyEnabled": { "$": "keyboard_state_selector", "alphabet": { "label": "language_switch" }}},
{ "$": "keyboard_state_selector", "emojiKeyEnabled": { "$": "keyboard_state_selector", "alphabet": { "label": "emoji" }}},
{ "$": "keyboard_state_selector", "symbols": { "label": "numpad" }},
{ "label": "space" },
{ "label": "period" },
{ "$": "variation_selector",
"default": { "label": "emoji" },
"email": { "label": "com" },
"uri": { "label": "com" }
}
]
]

View file

@ -1,28 +0,0 @@
ɛ q
w
e
r
t
y
u
i
o
p
a
s
d
f
g
h
j
k
l
z
ɔ x
c ¢
v
b
n
m

View file

@ -1,34 +0,0 @@
ض
ص
ث
ق
ف
غ
ع
ه
خ
ح
ج
ش
س
ي
ب
ل
ا
ت
ن
م
ك
ط
ذ
ء
ؤ
ر
ى
ة
و
ز
ظ
د

View file

@ -1,34 +0,0 @@
ز
ر
ذ
د
خ
ح
ج
ث
ت
ب
ا
ك
ق
ف
غ
ع
ظ
ط
ض
ص
ش
س
ء
ى
ي
ؤ
و
ة
ن
م
ل

View file

@ -1,31 +0,0 @@
ض
ص
ق
ف
غ
ع
ه
خ
ح
ج
ش
س
ي
ب
ل
ا
ت
ن
م
ك
ظ
ط
ذ
د
ز
ر
و
ة
ث

View file

@ -1,41 +0,0 @@
է
թ
փ
ձ
ջ
ր
չ
ճ
ժ
ծ
ք
ո
ե և
ռ
տ
ը
ւ
ի
օ
պ
ա
ս
դ $$$
ֆ
գ
հ
յ
կ
լ
խ
զ
ղ
ց
վ
բ
ն
մ
շ

View file

@ -1,38 +0,0 @@
[
[
{ "label": "a" },
{ "label": "z" },
{ "label": "e" },
{ "label": "r" },
{ "label": "t" },
{ "label": "y" },
{ "label": "u" },
{ "label": "i" },
{ "label": "o" },
{ "label": "p" }
],
[
{ "label": "q" },
{ "label": "s" },
{ "label": "d" },
{ "label": "f" },
{ "label": "g" },
{ "label": "h" },
{ "label": "j" },
{ "label": "k" },
{ "label": "l" },
{ "label": "m" }
],
[
{ "label": "w" },
{ "label": "x" },
{ "label": "c" },
{ "label": "v" },
{ "label": "b" },
{ "label": "n" },
{ "$": "shift_state_selector",
"shiftedManual": { "label": "?" },
"default": { "label": "'" }
}
]
]

View file

@ -1,33 +0,0 @@
й
ц
у
к
е
н
г
ш
ў
з
х
ф
ы
в
а
п
р
о
л
д
ж
э
я
ч
с
м
і
т
ь
б <
ю >

View file

@ -1,29 +0,0 @@
q
w
e
r
t
y
u
i
o
p
ŋ
a
s
d
f
g
h
j
k
l
z
x
c
v
b
n
m

View file

@ -1,132 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ" },
"default": { "label": "ধ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঠ" },
"default": { "label": "থ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৈ" },
"default": { "label": "ে" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ড়" },
"default": { "label": "র" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ট" },
"default": { "label": "ত" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঞ" },
"default": { "label": "য়" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ূ" },
"default": { "label": "ু" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ী" },
"default": { "label": "ি" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৌ" },
"default": { "label": "ো" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ফ" },
"default": { "label": "প" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঋ" },
"default": { "label": "আ" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "অ" },
"default": { "label": "া" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "শ" },
"default": { "label": "স" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ড" },
"default": { "label": "দ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ়" },
"default": { "label": "ৃ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঘ" },
"default": { "label": "গ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "হ" },
"default": { "label": "্" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঝ" },
"default": { "label": "জ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "খ" },
"default": { "label": "ক" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৎ" },
"default": { "label": "ল" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঈ" },
"default": { "label": "ই" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঊ" },
"default": { "label": "উ" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "।", "popup": { "main": { "label": "॥" } }, "labelFlags": 1073741824 },
"default": { "label": "য" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঙ" },
"default": { "label": "ষ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ছ" },
"default": { "label": "চ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঃ" },
"default": { "label": "ভ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঁ" },
"default": { "label": "ব" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ণ" },
"default": { "label": "ন" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ং" },
"default": { "label": "ম" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঐ" },
"default": { "label": "এ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঔ" },
"default": { "label": "ও" }
}
]
]

View file

@ -1,127 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ", "labelFlags": 1073741824 },
"default": { "label": "ড", "popup": { "relevant": [{ "label": "ঢ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ূ", "labelFlags": 1073741824 },
"default": { "label": "ী", "popup": { "relevant": [{ "label": "ূ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "এ", "labelFlags": 1073741824 },
"default": { "label": "ে", "popup": { "relevant": [{ "label": "ঐ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৃ", "labelFlags": 1073741824 },
"default": { "label": "র", "popup": { "main": { "label": "ঋ" }, "relevant": [{ "label": "র‍্য" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঠ", "labelFlags": 1073741824 },
"default": { "label": "ট", "popup": { "relevant": [{ "label": "ঠ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "য়", "labelFlags": 1073741824 },
"default": { "label": "য", "popup": { "relevant": [{ "label": "য়" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "উ", "labelFlags": 1073741824 },
"default": { "label": "ু", "popup": { "relevant": [{ "label": "ঊ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ই", "labelFlags": 1073741824 },
"default": { "label": "ি", "popup": { "relevant": [{ "label": "ঈ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ও", "labelFlags": 1073741824 },
"default": { "label": "ো", "popup": { "relevant": [{ "label": "ঔ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ফ", "labelFlags": 1073741824 },
"default": { "label": "প", "popup": { "relevant": [{ "label": "ফ" }]}}
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "অ", "labelFlags": 1073741824 },
"default": { "label": "া", "popup": { "relevant": [{ "label": "আ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "শ", "labelFlags": 1073741824 },
"default": { "label": "স", "popup": { "relevant": [{ "label": "ষ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ধ", "labelFlags": 1073741824 },
"default": { "label": "দ", "popup": { "relevant": [{ "label": "ধ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "থ", "labelFlags": 1073741824 },
"default": { "label": "ত", "popup": { "main": { "label": "থ" }, "relevant": [{ "label": "ৎ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঘ", "labelFlags": 1073741824 },
"default": { "label": "গ", "popup": { "relevant": [{ "label": "ঘ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "হ", "labelFlags": 1073741824 },
"default": { "label": "্", "popup": { "relevant": [{ "label": "ঃ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঝ", "labelFlags": 1073741824 },
"default": { "label": "জ", "popup": { "relevant": [{ "label": "ঝ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "খ", "labelFlags": 1073741824 },
"default": { "label": "ক", "popup": { "relevant": [{ "label": "খ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ং", "labelFlags": 1073741824 },
"default": { "label": "ল", "popup": { "relevant": [{ "label": "ং" }]}}
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৌ", "labelFlags": 1073741824 },
"default": { "label": "ৈ", "popup": { "relevant": [{ "label": "ৌ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ়", "labelFlags": 1073741824 },
"default": { "label": "ড়", "popup": { "relevant": [{ "label": "ঢ়" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ছ", "labelFlags": 1073741824 },
"default": { "label": "চ", "popup": { "relevant": [{ "label": "ছ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঁ", "labelFlags": 1073741824, "popup": { "relevant": [
{ "label": "!autoColumnOrder!6" },
{ "label": "়" },
{ "label": "ৄ" },
{ "label": "ঽ" },
{ "label": "ৢ" },
{ "label": "ৱ" },
{ "label": "ৣ" },
{ "label": "ৗ" },
{ "label": "ৠ" },
{ "label": "৺" },
{ "label": "ঌ" },
{ "label": "ৰ" },
{ "label": "ৡ"}
]}},
"default": { "label": "ঞ", "popup": { "relevant": [{ "label": "ঁ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ভ", "labelFlags": 1073741824 },
"default": { "label": "ব", "popup": { "relevant": [{ "label": "ভ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ণ", "labelFlags": 1073741824 },
"default": { "label": "ন", "popup": { "relevant": [{ "label": "ণ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঙ", "labelFlags": 1073741824 },
"default": { "label": "ম", "popup": { "relevant": [{ "label": "ঁ" }]}}
}
]
]

View file

@ -1,142 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঔ", "labelFlags": 1073741824 },
"default": { "label": "ৌ", "popup": { "relevant": [{"label": "ঔ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঐ", "labelFlags": 1073741824 },
"default": { "label": "ৈ", "popup": { "relevant": [{"label": "ঐ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "আ", "labelFlags": 1073741824 },
"default": { "label": "া", "popup": { "relevant": [{"label": "আ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঈ", "labelFlags": 1073741824 },
"default": { "label": "ী", "popup": { "relevant": [{"label": "ঈ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঊ", "labelFlags": 1073741824 },
"default": { "label": "ূ", "popup": { "relevant": [{"label": "ঊ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ভ", "labelFlags": 1073741824 },
"default": { "label": "ব", "popup": { "relevant": [{"label": "ভ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঙ", "labelFlags": 1073741824 },
"default": { "label": "হ", "popup": { "relevant": [{"label": "ঙ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঘ", "labelFlags": 1073741824 },
"default": { "label": "গ", "popup": { "relevant": [{"label": "ঘ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ধ", "labelFlags": 1073741824 },
"default": { "label": "দ", "popup": { "relevant": [{"label": "ধ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঝ", "labelFlags": 1073741824 },
"default": { "label": "জ", "popup": { "relevant": [{"label": "ঝ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ", "labelFlags": 1073741824 },
"default": { "label": "ড", "popup": { "relevant": [{"label": "ঢ" }]}}
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ও", "labelFlags": 1073741824 },
"default": { "label": "ো", "popup": { "relevant": [{"label": "ও" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "এ", "labelFlags": 1073741824 },
"default": { "label": "ে", "popup": { "relevant": [{"label": "এ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "অ", "labelFlags": 1073741824 },
"default": { "label": "্", "popup": { "relevant": [{"label": "অ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ই", "labelFlags": 1073741824 },
"default": { "label": "ি", "popup": { "relevant": [{"label": "ই" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "উ", "labelFlags": 1073741824 },
"default": { "label": "ু", "popup": { "relevant": [{"label": "উ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ফ", "labelFlags": 1073741824 },
"default": { "label": "প", "popup": { "relevant": [{"label": "ফ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ড়", "labelFlags": 1073741824 },
"default": { "label": "র", "popup": { "main": { "label": "ড়" }, "relevant": [{ "label": "র‍্য" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "খ", "labelFlags": 1073741824 },
"default": { "label": "ক", "popup": { "relevant": [{"label": "খ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "থ", "labelFlags": 1073741824 },
"default": { "label": "ত", "popup": { "main": { "label": "থ" }, "relevant": [{ "label": "ৎ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ছ", "labelFlags": 1073741824 },
"default": { "label": "চ", "popup": { "relevant": [{"label": "ছ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঠ", "labelFlags": 1073741824 },
"default": { "label": "ট", "popup": { "relevant": [{"label": "ঠ" }]}}
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঋ", "labelFlags": 1073741824 },
"default": { "label": "ৃ", "popup": { "relevant": [{"label": "ঋ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঁ", "labelFlags": 1073741824, "popup": { "relevant": [
{"label": "!autoColumnOrder!6" },
{ "label": "়" },
{ "label": "ৄ" },
{ "label": "ঽ" },
{ "label": "ৢ" },
{ "label": "ৱ" },
{ "label": "ৣ" },
{ "label": "ৗ" },
{ "label": "ৠ" },
{ "label": "৺" },
{ "label": "ঌ" },
{ "label": "ৰ" },
{ "label": "ৡ" }
]}},
"default": { "label": "ং", "popup": { "main": { "label": "ঁ" }, "relevant": [{ "label": "ঃ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ণ", "labelFlags": 1073741824 },
"default": { "label": "ম", "popup": { "relevant": [{"label": "ণ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঞ", "labelFlags": 1073741824 },
"default": { "label": "ন", "popup": { "relevant": [{"label": "ঞ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ়", "labelFlags": 1073741824 },
"default": { "label": "ব", "popup": { "relevant": [{"label": "ঢ়" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ষ", "labelFlags": 1073741824 },
"default": { "label": "ল", "popup": { "relevant": [{"label": "ষ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "শ", "labelFlags": 1073741824 },
"default": { "label": "স", "popup": { "relevant": [{"label": "শ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "য", "labelFlags": 1073741824 },
"default": { "label": "য়", "popup": { "relevant": [{"label": "য" }]}}
}
]
]

View file

@ -1,141 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ধ", "labelFlags": 1073741824 },
"default": { "label": "দ", "popup": { "relevant": [{ "label": "ধ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঊ", "labelFlags": 1073741824 },
"default": { "label": "ূ", "popup": { "relevant": [{ "label": "ঊ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঈ", "labelFlags": 1073741824 },
"default": { "label": "ী", "popup": { "relevant": [{ "label": "ঈ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ড়", "labelFlags": 1073741824 },
"default": { "label": "র", "popup": { "main": { "label": "ড়" }, "relevant": [{ "label": "র‍্য" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঠ", "labelFlags": 1073741824 },
"default": { "label": "ট", "popup": { "relevant": [{ "label": "ঠ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঐ", "labelFlags": 1073741824 },
"default": { "label": "এ", "popup": { "relevant": [{ "label": "ঐ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "উ", "labelFlags": 1073741824 },
"default": { "label": "ু", "popup": { "relevant": [{ "label": "উ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ই", "labelFlags": 1073741824 },
"default": { "label": "ি", "popup": { "relevant": [{ "label": "ই" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঔ", "labelFlags": 1073741824 },
"default": { "label": "ও", "popup": { "relevant": [{ "label": "ঔ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ফ", "labelFlags": 1073741824 },
"default": { "label": "প", "popup": { "relevant": [{ "label": "ফ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৈ", "labelFlags": 1073741824 },
"default": { "label": "ে", "popup": { "relevant": [{ "label": "ৈ" }]}}
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "অ", "labelFlags": 1073741824 },
"default": { "label": "া", "popup": { "relevant": [{ "label": "অ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ষ", "labelFlags": 1073741824 },
"default": { "label": "স", "popup": { "relevant": [{ "label": "ষ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ", "labelFlags": 1073741824 },
"default": { "label": "ড", "popup": { "relevant": [{ "label": "ঢ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "থ", "labelFlags": 1073741824 },
"default": { "label": "ত", "popup": { "main": { "label": "থ" }, "relevant": [{ "label": "ৎ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঘ", "labelFlags": 1073741824 },
"default": { "label": "গ", "popup": { "relevant": [{ "label": "ঘ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঃ", "labelFlags": 1073741824 },
"default": { "label": "হ", "popup": { "relevant": [{ "label": "ঃ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঝ", "labelFlags": 1073741824 },
"default": { "label": "জ", "popup": { "relevant": [{ "label": "ঝ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "খ", "labelFlags": 1073741824 },
"default": { "label": "ক", "popup": { "relevant": [{ "label": "খ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ং", "labelFlags": 1073741824 },
"default": { "label": "ল", "popup": { "relevant": [{ "label": "ং" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৌ", "labelFlags": 1073741824 },
"default": { "label": "ো", "popup": { "relevant": [{ "label": "ৌ" }]}}
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "য", "labelFlags": 1073741824 },
"default": { "label": "য়", "popup": { "main": { "label": "য" }, "relevant": [{ "label": "্য" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ়", "labelFlags": 1073741824 },
"default": { "label": "শ", "popup": { "relevant": [{ "label": "ঢ়" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ছ", "labelFlags": 1073741824 },
"default": { "label": "চ", "popup": { "relevant": [{ "label": "ছ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঋ", "labelFlags": 1073741824 },
"default": { "label": "আ", "popup": { "relevant": [{ "label": "ঋ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ভ", "labelFlags": 1073741824 },
"default": { "label": "ব", "popup": { "relevant": [{ "label": "ভ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ণ", "labelFlags": 1073741824 },
"default": { "label": "ন", "popup": { "relevant": [{ "label": "ণ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঙ", "labelFlags": 1073741824 },
"default": { "label": "ম", "popup": { "relevant": [{ "label": "ঙ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৃ", "labelFlags": 1073741824 },
"default": { "label": "ঞ", "popup": { "relevant": [{ "label": "ৃ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঁ", "popup": { "relevant": [
{ "label": "!autoColumnOrder!6"},
{ "label": "়" },
{ "label": "ৄ"},
{ "label": "ঽ"},
{ "label": "ৢ"},
{ "label": "ৱ"},
{ "label": "ৣ"},
{ "label": "ৗ"},
{ "label": "ৠ"},
{ "label": "৺"},
{ "label": "ঌ"},
{ "label": "ৰ"},
{ "label": "ৡ" }]}},
"default": { "label": "্", "popup": { "relevant": [{ "label": "ঁ" }]}}
}
]
]

View file

@ -1,126 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ং", "labelFlags": 1073741824 },
"default": { "label": "ঙ", "popup": { "relevant": [{ "label": "ং" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "য়", "labelFlags": 1073741824 },
"default": { "label": "য", "popup": { "relevant": [{ "label": "য়" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ", "labelFlags": 1073741824 },
"default": { "label": "ড", "popup": { "relevant": [{ "label": "ঢ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ফ", "labelFlags": 1073741824 },
"default": { "label": "প", "popup": { "relevant": [{ "label": "ফ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঠ", "labelFlags": 1073741824 },
"default": { "label": "ট", "popup": { "relevant": [{ "label": "ঠ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ছ", "labelFlags": 1073741824 },
"default": { "label": "চ", "popup": { "relevant": [{ "label": "ছ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঝ", "labelFlags": 1073741824 },
"default": { "label": "জ", "popup": { "relevant": [{ "label": "ঝ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঞ", "labelFlags": 1073741824 },
"default": { "label": "হ", "popup": { "relevant": [{ "label": "ঞ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঘ", "labelFlags": 1073741824 },
"default": { "label": "গ", "popup": { "relevant": [{ "label": "ঘ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঢ়", "labelFlags": 1073741824 },
"default": { "label": "ড়", "popup": { "relevant": [{ "label": "ঢ়" }]}}
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঃ", "labelFlags": 1073741824 },
"default": { "label": "ৃ", "popup": { "relevant": [{ "label": "ঋ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ূ", "popup": { "relevant": [{ "label": "ঊ" }]}},
"default": { "label": "ু", "popup": { "relevant": [{ "label": "উ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ী", "popup": { "relevant": [{ "label": "ঈ"}]}},
"default": { "label": "ি", "popup": { "relevant": [{ "label": "ই" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "অ", "labelFlags": 1073741824 },
"default": { "label": "া", "popup": { "main": { "label": "আ" }, "relevant": [{ "label": "অ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ঁ", "labelFlags": 1073741824, "popup": { "relevant": [
{ "label": "!autoColumnOrder!6" },
{ "label": "়" },
{ "label": "ৄ" },
{ "label": "ঽ" },
{ "label": "ৢ" },
{ "label": "ৱ" },
{ "label": "ৣ" },
{ "label": "ৗ" },
{ "label": "ৠ" },
{ "label": "৺" },
{ "label": "ঌ" },
{ "label": "ৰ" },
{ "label": "ৡ"}
]}},
"default": { "label": "্", "popup": { "relevant": [{ "label": "ঁ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ভ", "labelFlags": 1073741824 },
"default": { "label": "ব", "popup": { "relevant": [{ "label": "ভ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "খ", "labelFlags": 1073741824 },
"default": { "label": "ক", "popup": { "relevant": [{ "label": "খ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "থ", "labelFlags": 1073741824 },
"default": { "label": "ত", "popup": { "main": { "label": "থ" }, "relevant": [{ "label": "ৎ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ধ", "labelFlags": 1073741824 },
"default": { "label": "দ", "popup": { "relevant": [{ "label": "ধ" }]}}
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "্য", "labelFlags": 1073741824 },
"default": { "label": "্র", "popup": { "relevant": [{ "label": "্য" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৌ", "popup": { "relevant": [{ "label": "ঔ" }]}},
"default": { "label": "ো", "popup": { "relevant": [{ "label": "ও" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ৈ", "popup": { "relevant": [{ "label": "ঐ" }]}},
"default": { "label": "ে", "popup": { "relevant": [{ "label": "এ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ল", "labelFlags": 1073741824 },
"default": { "label": "র", "popup": { "main": { "label": "ল" }, "relevant": [{ "label": "র‍্য" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ণ", "labelFlags": 1073741824 },
"default": { "label": "ন", "popup": { "relevant": [{ "label": "ণ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ষ", "labelFlags": 1073741824 },
"default": { "label": "স", "popup": { "relevant": [{ "label": "ষ" }]}}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "শ", "labelFlags": 1073741824 },
"default": { "label": "ম", "popup": { "relevant": [{ "label": "শ" }]}}
}
]
]

View file

@ -1,29 +0,0 @@
b
é è
p
o
v
d
l
j
z
w
a
u
i
e
c
t
s
r
n
m
y
x
k
q
g
h
f

View file

@ -1,32 +0,0 @@
я
в
е
р
т
ъ
у
и ѝ
о
п
ч
а
с
д
ф
г
х
й
к
л
ш
щ
з
ь
ц
ж
б
н
м
ю

View file

@ -1,33 +0,0 @@
у
е
и ѝ
ш
щ
к
с
д
з
ц
б
ь
я
а
о
ж
г
т
н
в
м
ч
ю
й
ъ
э
ф
х
п
р
л

View file

@ -1,33 +0,0 @@
у
е
и ѝ
ш
щ
к
с
д
з
ц
б
ь
я
а
о
ж
г
т
н
в
м
ч
ю
й ѭ
ъ ѫ
ѣ
ф
х
п
р
л

View file

@ -1,31 +0,0 @@
ق
و
ە
ر
ت
ی
ێ
ئ
ۆ
پ
ا
س
ش
د
ف
ھ|ه
ژ
ل
ک
گ
ز
ع
ح
ج
چ
خ
ب
ن
م

View file

@ -1,44 +0,0 @@
ё
ӑ
ӗ
ҫ
ӳ
ъ
-
!
?
"
й
ц
у
к
е
н
г
ш
щ
з
х
ф
ы
в
а
п
р
о
л
д
ж
э
я
ч
с
м
и
т
ь
б
ю

View file

@ -1,38 +0,0 @@
[
[
{ "label": "q" },
{ "label": "w" },
{ "label": "f" },
{ "label": "p" },
{ "label": "g" },
{ "label": "j" },
{ "label": "l" },
{ "label": "u" },
{ "label": "y" },
{ "$": "shift_state_selector",
"shiftedManual": { "label": ":" },
"default": { "label": ";", "popup": { "main": { "label": ":" } } }
}
],
[
{ "label": "a" },
{ "label": "r" },
{ "label": "s" },
{ "label": "t" },
{ "label": "d" },
{ "label": "h" },
{ "label": "n" },
{ "label": "e" },
{ "label": "i" },
{ "label": "o", "popup": { "main": { "label": "…" } } }
],
[
{ "label": "z" },
{ "label": "x" },
{ "label": "c" },
{ "label": "v" },
{ "label": "b" },
{ "label": "k" },
{ "label": "m" }
]
]

View file

@ -1,38 +0,0 @@
[
[
{ "label": "q" },
{ "label": "w" },
{ "label": "f" },
{ "label": "p" },
{ "label": "b" },
{ "label": "j" },
{ "label": "l" },
{ "label": "u" },
{ "label": "y" },
{ "$": "shift_state_selector",
"shiftedManual": { "label": ":" },
"default": { "label": ";", "popup": { "main": { "label": ":" } } }
}
],
[
{ "label": "a" },
{ "label": "r" },
{ "label": "s" },
{ "label": "t" },
{ "label": "g" },
{ "label": "m" },
{ "label": "n" },
{ "label": "e" },
{ "label": "i" },
{ "label": "o", "popup": { "main": { "label": "…" } } }
],
[
{ "label": "z" },
{ "label": "x" },
{ "label": "c" },
{ "label": "d" },
{ "label": "v" },
{ "label": "k" },
{ "label": "h" }
]
]

View file

@ -1,28 +0,0 @@
q
w
ɛ e
r ¢
t
y
u
i
ɔ o
p
a
s
d
f
ɣ g
h
j
k
l
ʒ z
x x
c
v
b
ŋ n
m

View file

@ -1,35 +0,0 @@
й
ц
у ӯ ӱ ý ӱ́
к ҟ ҝ ҡ
е ē ë е́ ë́
н
г ґ ғ ꚕ
ш
щ
з ҙ
х ҳ ẋ
ъ
ф
ы
в w
а ā ӓ á ӓ́
п ԥ
р ҏ
о о̄ ӧ ó ӧ́
л
д
ж җ
э э̄ э́
Ӏ
я я̄ я́ ǽ æ ǣ
ч ҹ
с
м
и ӣ и́
т ԏ
ь
б ҕ
ю ю́

View file

@ -1,55 +0,0 @@
[
[
{ "$": "shift_state_selector",
"shifted": { "label": "\"" },
"default": { "$": "variation_selector",
"uri": { "label": "/" },
"email": { "label": "@" },
"default": { "label": "'", "popup": { "relevant": [
{ "label": "!" },
{ "label": "\"" }
] } }
}
},
{ "$": "shift_state_selector",
"shifted": { "label": "<" },
"default": { "label": "," }
},
{ "$": "shift_state_selector",
"shifted": { "label": ">" },
"default": { "label": "." }
},
{ "label": "p" },
{ "label": "y" },
{ "label": "f" },
{ "label": "g" },
{ "label": "c" },
{ "label": "r" },
{ "label": "l" }
],
[
{ "label": "a" },
{ "label": "o" },
{ "label": "e" },
{ "label": "u" },
{ "label": "i" },
{ "label": "d" },
{ "label": "h" },
{ "label": "t" },
{ "label": "n" },
{ "label": "s" }
],
[
{ "label": "j" },
{ "label": "k" },
{ "label": "x" },
{ "label": "b" },
{ "label": "m" },
{ "label": "w" },
{ "label": "v" }
],
[
{ "label": "q" },
{ "label": "z" }
]
]

View file

@ -1,29 +0,0 @@
ŝ q
ĝ w
e
r
t
ŭ y
u
i
o
p
a
s
d
f
g
h
j
k
l
ĵ
z
ĉ x
c
v w
b
n
m

View file

@ -1,28 +0,0 @@
ɛ q
w
e
r
t
ɣ y
u
i
o
p
a
s
d
f
g
h
j
k
l
z
ɔ x
c ¢
v
b
n
m

View file

@ -1,34 +0,0 @@
ض
ص
ث
ق
ف
غ
ع
ه
خ
ح
ج
ش
س
ی
ب
ل
ا
ت
ن
م
ک
گ
ظ
ط
ژ
ز
ر
ذ
د
پ
و
چ

View file

@ -1,28 +0,0 @@
ɛ q
w
e
r
t
y
u
i
o
p
a
s
d
f
g
h
j
k
l
z
ɔ x
ŋ c ¢
v
b
n
m

View file

@ -1,112 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "Q" },
"default": { "label": "ქ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ჭ" },
"default": { "label": "წ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "E" },
"default": { "label": "ე" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ღ" },
"default": { "label": "რ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "თ" },
"default": { "label": "ტ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "Y" },
"default": { "label": "" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "U" },
"default": { "label": "უ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "I" },
"default": { "label": "ი" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "O" },
"default": { "label": "ო" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "P" },
"default": { "label": "პ" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "A" },
"default": { "label": "ა" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "შ" },
"default": { "label": "ს" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "D" },
"default": { "label": "დ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "F" },
"default": { "label": "ფ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "G" },
"default": { "label": "გ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "H" },
"default": { "label": "ჰ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ჟ" },
"default": { "label": "ჯ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "K" },
"default": { "label": "კ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "L" },
"default": { "label": "ლ" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ძ" },
"default": { "label": "ზ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "X" },
"default": { "label": "ხ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ჩ" },
"default": { "label": "ც" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "V" },
"default": { "label": "ვ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "B" },
"default": { "label": "ბ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "N" },
"default": { "label": "ნ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "M" },
"default": { "label": "მ" }
}
]
]

View file

@ -1,41 +0,0 @@
[
[
{ "$": "shift_state_selector",
"shiftedManual": { "label": ":", "popup": { "main": { "label": ";" } } },
"default": { "label": ";", "popup": { "main": { "label": ":" } } }
},
{ "label": "ς", "labelFlags": 65536 },
{ "label": "ε" },
{ "label": "ρ" },
{ "label": "τ" },
{ "label": "υ" },
{ "label": "θ" },
{ "label": "ι" },
{ "label": "ο" },
{ "label": "π" }
],
[
{ "label": "α" },
{ "label": "σ" },
{ "label": "δ" },
{ "label": "φ" },
{ "label": "γ" },
{ "label": "η" },
{ "label": "ξ" },
{ "label": "κ" },
{ "label": "λ" },
{ "$": "shift_state_selector",
"shiftedManual": { "code": 776, "label": "¨" },
"default": { "code": 769, "label": "´" }
}
],
[
{ "label": "ζ" },
{ "label": "χ" },
{ "label": "ψ" },
{ "label": "ω" },
{ "label": "β" },
{ "label": "ν" },
{ "label": "μ" }
]
]

View file

@ -1,129 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ધ" },
"default": { "label": "અ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ન" },
"default": { "label": "ા" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "પ" },
"default": { "label": "િ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ફ" },
"default": { "label": "ી" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "બ" },
"default": { "label": "ુ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ભ" },
"default": { "label": "ૂ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "મ" },
"default": { "label": "ે" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ય" },
"default": { "label": "ૈ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ર" },
"default": { "label": "ો" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "લ" },
"default": { "label": "ૌ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "વ" },
"default": { "label": "ં" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "શ" },
"default": { "label": "", "popup": { "main": { "label": "ઍ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ષ" },
"default": { "label": "ક", "popup": { "main": { "label": "ઑ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "સ" },
"default": { "label": "ખ", "popup": { "main": { "label": "ૅ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "હ" },
"default": { "label": "ગ", "popup": { "main": { "label": "ૉ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ળ" },
"default": { "label": "ઘ", "popup": { "main": { "label": "ૃ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ક્ષ", "labelFlags": 128 },
"default": { "label": "ઙ", "popup": { "main": { "label": "ઋ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "જ્ઞ", "labelFlags": 128 },
"default": { "label": "ચ", "popup": { "main": { "label": "ત્ર" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "આ" },
"default": { "label": "છ", "popup": { "main": { "label": "ત્ત" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ઇ" },
"default": { "label": "જ", "popup": { "main": { "label": "દ્વ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ઈ" },
"default": { "label": "ઝ", "popup": { "main": { "label": "દ્ધ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ઉ" },
"default": { "label": "ઞ", "popup": { "main": { "label": "દ્ર" } } }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ઊ" },
"default": { "label": "ટ"}
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "એ" },
"default": { "label": "ઠ", "popup": { "main": { "label": "શ્ર" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ઐ" },
"default": { "label": "ડ", "popup": { "main": { "label": "શ્વ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ઓ" },
"default": { "label": "ઢ", "popup": { "main": { "label": "દ્દ" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ઔ" },
"default": { "label": "ણ", "popup": { "main": { "label": "હ્ય" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "અં", "labelFlags": 128 },
"default": { "label": "ત", "popup": { "main": { "label": "꠰" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "અઃ", "labelFlags": 128 },
"default": { "label": "થ", "popup": { "main": { "label": "꠱" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ૐ" },
"default": { "label": "દ", "popup": { "main": { "label": "꠲" } } }
},
{ "label": "્", "popup": { "main": { "label": "૱" } } }
]
]

View file

@ -1,32 +0,0 @@
w
l
r
b
z
;
q
u
d
j
s
h
n
t
,
.
a
e
o
i
m
v
c
g
p
x
k
f
y

View file

@ -1,28 +0,0 @@
ẹ q
w
e
r
t
y
u
i
o
p
a
s
d
f
g
h
j
k
l
z
ọ x
c
v
b
n ₦
m

View file

@ -1,89 +0,0 @@
[
[
{ "$": "variation_selector",
"email": { "label": "-" },
"uri": { "label": "-" },
"default": { "label": "'", "popup": { "relevant": [{ "label": "׳" }, { "label": "״" }, { "label": "\"" }] } }
},
{ "$": "variation_selector",
"email": { "label": "_" },
"uri": { "label": "_" },
"default": { "label": "-", "popup": { "relevant": [{ "label": "־" }, { "label": "_" }] } }
},
{ "label": "ק", "popup": {
"relevant": [
{ "label": "\u05b8" },
{ "label": "\u05b3" },
{ "label": "\u05bb" }
]
} },
{ "label": "ר", "popup": {
"relevant": [
{ "label": "\u05bf" }
]
} },
{ "label": "א" },
{ "label": "ט" },
{ "label": "ו", "popup": {
"relevant": [
{ "label": "ו\u05b9" },
{ "label": "ו\u05bc" }
]
} },
{ "label": "ן" },
{ "label": "ם" },
{ "label": "פ", "popup": {
"relevant": [
{ "label": "\u05b7" },
{ "label": "\u05b2" }
]
} }
],
[
{ "label": "ש", "popup": {
"relevant": [
{ "label": "\u05b0" },
{ "label": "ש\u05c2" },
{ "label": "ש\u05c1" }
]
} },
{ "label": "ד", "popup": {
"relevant": [
{ "label": "\u05bc" }
]
} },
{ "label": "ג" },
{ "label": "כ" },
{ "label": "ע" },
{ "label": "י" },
{ "label": "ח", "popup": {
"relevant": [
{ "label": "\u05b4" },
{ "label": "\u05b9" }
]
} },
{ "label": "ל" },
{ "label": "ך" },
{ "label": "ף" }
],
[
{ "label": "ז" },
{ "label": "ס", "popup": {
"relevant": [
{ "label": "\u05b6" },
{ "label": "\u05b1" }
]
} },
{ "label": "ב" },
{ "label": "ה" },
{ "label": "נ" },
{ "label": "מ" },
{ "label": "צ", "popup": {
"relevant": [
{ "label": "\u05b5" }
]
} },
{ "label": "ת" },
{ "label": "ץ" }
]
]

View file

@ -1,85 +0,0 @@
[
[
{ "label": "ץ", "popup": {
"relevant": [
{ "label": "ש\u05c2" }
]
} },
{ "label": "ן", "popup": {
"relevant": [
{ "label": "ש\u05c1" }
]
} },
{ "label": "ק", "popup": {
"relevant": [
{ "label": "\u05b8" },
{ "label": "\u05bb" }
]
} },
{ "label": "ר", "popup": {
"relevant": [
{ "label": "\u05b3" }
]
} },
{ "label": "א" },
{ "label": "ט" },
{ "label": "ו", "popup": {
"relevant": [
{ "label": "\u05b9" }
]
} },
{ "label": "ת" },
{ "label": "ם" },
{ "label": "פ", "popup": {
"relevant": [
{ "label": "\u05b2" },
{ "label": "\u05b7" }
]
} }
],
[
{ "label": "ש", "popup": {
"relevant": [
{ "label": "\u05b0" }
]
} },
{ "label": "ד", "popup": {
"relevant": [
{ "label": "\u05bc" }
]
} },
{ "label": "ג" },
{ "label": "כ" },
{ "label": "ע" },
{ "label": "י" },
{ "label": "ח", "popup": {
"relevant": [
{ "label": "\u05b4" }
]
} },
{ "label": "ל" },
{ "label": "ך" },
{ "label": "ף" }
],
[
{ "label": "ז" },
{ "label": "ס", "popup": {
"relevant": [
{ "label": "\u05b6" }
]
} },
{ "label": "ב", "popup": {
"relevant": [
{ "label": "\u05b1" }
]
} },
{ "label": "ה" },
{ "label": "נ" },
{ "label": "מ" },
{ "label": "צ", "popup": {
"relevant": [
{ "label": "\u05b5" }
]
} }
]
]

View file

@ -1,132 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "औ" },
"default": { "label": "ौ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ऐ" },
"default": { "label": "ै" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "आ" },
"default": { "label": "ा" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ई" },
"default": { "label": "ी" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ऊ" },
"default": { "label": "ू" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "भ" },
"default": { "label": "ब" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "" },
"default": { "label": "ह" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "घ" },
"default": { "label": "ग" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ध" },
"default": { "label": "द" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "झ" },
"default": { "label": "ज" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ढ" },
"default": { "label": "ड" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ओ" },
"default": { "label": "ो" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ए" },
"default": { "label": "े" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "अ" },
"default": { "label": "्" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "इ" },
"default": { "label": "ि" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "उ" },
"default": { "label": "ु" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "फ" },
"default": { "label": "प" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ऱ" },
"default": { "label": "र" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ख" },
"default": { "label": "क" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "थ" },
"default": { "label": "त" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "छ" },
"default": { "label": "च" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ठ" },
"default": { "label": "ट" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ऑ" },
"default": { "label": "ॉ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ँ" },
"default": { "label": "ं" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ण" },
"default": { "label": "म" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ऩ" },
"default": { "label": "न" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ळ" },
"default": { "label": "व" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "श" },
"default": { "label": "ल" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ष" },
"default": { "label": "स" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ृ" },
"default": { "label": "य" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ञ" },
"default": { "label": "़" }
}
]
]

View file

@ -1,40 +0,0 @@
[
[
{ "label": "औ" },
{ "label": "ऐ" },
{ "label": "आ" },
{ "label": "ई" },
{ "label": "ऊ" },
{ "label": "ब" },
{ "label": "ह" },
{ "label": "ग" },
{ "label": "द" },
{ "label": "ज" },
{ "label": "ड" }
],
[
{ "label": "ओ" },
{ "label": "ए" },
{ "label": "अ" },
{ "label": "इ" },
{ "label": "उ" },
{ "label": "प" },
{ "label": "र" },
{ "label": "क" },
{ "label": "त" },
{ "label": "च" },
{ "label": "ट" }
],
[
{ "label": "ऑ" },
{ "label": "्" },
{ "label": "ं" },
{ "label": "म" },
{ "label": "न" },
{ "label": "व" },
{ "label": "ल" },
{ "label": "स" },
{ "label": "य" },
{ "label": "क्ष", "labelFlags": 128 }
]
]

View file

@ -1,554 +0,0 @@
[
[
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ठ"
},
"default": {
"label": "ट"
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ढ"
},
"default": {
"label": "ड",
"popup": {
"main": {
"label": "ड़"
},
"relevant": [
{
"label": "ढ़"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ै"
},
"default": {
"label": "े",
"popup": {
"main": {
"label": "ए"
},
"relevant": [
{
"label": "ऍ"
},
{
"label": "ऐ"
},
{
"code": 2374,
"label": " ॆ"
},
{
"code": 2389,
"label": " ॕ"
},
{
"code": 2382,
"label": " ॎ"
},
{
"label": "ऎ"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ृ"
},
"default": {
"label": "र",
"popup": {
"main": {
"label": "ऋ"
},
"relevant": [
{
"label": "ॠ"
},
{
"label": "ॄ"
},
{
"label": "ऱ"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "थ"
},
"default": {
"label": "त",
"popup": {
"main": {
"label": "त्र"
}
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "य़"
},
"default": {
"label": "य",
"popup": {
"main": {
"label": "ॺ"
}
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ू"
},
"default": {
"label": "ु",
"popup": {
"main": {
"label": "उ"
},
"relevant": [
{
"label": "ऊ"
},
{
"label": "ॷ"
},
{
"code": 2390,
"label": " ॖ"
},
{
"label": "ॶ"
},
{
"code": 2391,
"label": " ॗ"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ी"
},
"default": {
"label": "ि",
"popup": {
"main": {
"label": "इ"
},
"relevant": [
{
"label": "ई"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ौ"
},
"default": {
"label": "ो",
"popup": {
"main": {
"label": "ओ"
},
"relevant": [
{
"label": "औ"
},
{
"label": "ऑ"
},
{
"code": 2383,
"label": " ॏ"
},
{
"label": "ॵ"
},
{
"label": "ॐ"
},
{
"label": "ॉ"
},
{
"label": "ॳ"
},
{
"label": "ॴ"
},
{
"code": 2362,
"label": " ऺ"
},
{
"code": 2363,
"label": " ऻ"
},
{
"label": "ऒ"
},
{
"code": 2378,
"label": " ॊ"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "फ़"
},
"default": {
"label": "प"
}
}
],
[
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "अ"
},
"default": {
"label": "ा",
"popup": {
"main": {
"label": "आ"
},
"relevant": [
{
"label": "ॅ"
},
{
"label": "ॲ"
},
{
"label": "ऄ"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "श"
},
"default": {
"label": "स",
"popup": {
"main": {
"label": "श्र"
},
"relevant": [
{
"label": "ष"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ध"
},
"default": {
"label": "द",
"popup": {
"main": {
"label": "ड़"
},
"relevant": [
{
"label": "ॾ"
},
{
"label": "ढ़"
},
{
"label": "ॸ"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"code": 2364,
"label": " ़"
},
"default": {
"label": "फ",
"popup": {
"main": {
"label": "फ़"
}
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "घ"
},
"default": {
"label": "ग",
"popup": {
"main": {
"label": "ग़"
},
"relevant": [
{
"label": "ॻ"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": ""
},
"default": {
"label": "ह"
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "झ"
},
"default": {
"label": "ज",
"popup": {
"main": {
"label": "ज़"
},
"relevant": [
{
"label": "ॼ"
},
{
"label": "ॹ"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ख"
},
"default": {
"label": "क",
"popup": {
"main": {
"label": "क़"
},
"relevant": [
{
"label": "ख़"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ळ"
},
"default": {
"label": "ल",
"popup": {
"relevant": [
{
"label": "ऴ"
},
{
"label": "ॣ"
},
{
"label": "ऌ"
},
{
"label": "ॡ"
},
{
"label": "ॢ"
}
]
}
}
}
],
[
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ज़",
"labelFlags": 128
},
"default": {
"label": "ज्ञ",
"labelFlags": 128
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ष"
},
"default": {
"label": "क्ष",
"labelFlags": 128
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "छ"
},
"default": {
"label": "च",
"popup": {
"relevant": [
{
"$": "auto_text_key",
"code": 2385,
"label": " ॑"
},
{
"$": "auto_text_key",
"code": 2386,
"label": " ॒"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "्"
},
"default": {
"label": "व",
"popup": {
"relevant": [
{
"$": "auto_text_key",
"code": 2387,
"label": " ॓"
},
{
"$": "auto_text_key",
"code": 2388,
"label": " ॔"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "भ"
},
"default": {
"label": "ब",
"popup": {
"relevant": [
{
"label": "ॿ"
},
{
"label": "ऽ"
},
{
"label": "॰"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ण"
},
"default": {
"label": "न",
"popup": {
"main": {
"label": "ङ"
},
"relevant": [
{
"label": "ऩ"
},
{
"label": "ञ"
}
]
}
}
},
{
"$": "shift_state_selector",
"manualOrLocked": {
"label": "ं"
},
"default": {
"label": "म",
"popup": {
"main": {
"label": "ँ"
},
"relevant": [
{
"label": "ऀ"
}
]
}
}
}
]
]

View file

@ -1,39 +0,0 @@
á
é
í
ó
ö
ő
ú
ü
ű
'
q
w
e
r
t
z
u
i
o
p
a
s
d
f
g
h
j
k
l
y
x
c
v
b
n
m

View file

@ -1,28 +0,0 @@
ṅ q
w
e
r
t
y
u
i
o
p
a
s
d
f
g
h
j
k
l
z
ọ x
c
ụ v
b
n ₦
m

View file

@ -1,38 +0,0 @@
[
[
{ "label": "a" },
{ "label": "z" },
{ "label": "e" },
{ "label": "r" },
{ "label": "t" },
{ "label": "y" },
{ "label": "u" },
{ "label": "i" },
{ "label": "ɛ" },
{ "label": "ɣ" }
],
[
{ "label": "q" },
{ "label": "s" },
{ "label": "d" },
{ "label": "f" },
{ "label": "g" },
{ "label": "h" },
{ "label": "j" },
{ "label": "k" },
{ "label": "l" },
{ "label": "m" }
],
[
{ "label": "w" },
{ "label": "x" },
{ "label": "c" },
{ "label": "v" },
{ "label": "b" },
{ "label": "n" },
{ "$": "shift_state_selector",
"shiftedManual": { "label": "?" },
"default": { "label": "'" }
}
]
]

View file

@ -1,32 +0,0 @@
й
ц
у
к
е
н
г
ш
ҡ
з
х
ҳ
ғ
в
а
п
р
о
л
д
ж
ъ ~
я
ч
с
м
и
т
ь
б < >

View file

@ -1,34 +0,0 @@
ೌ ಔ %
ೈ ಐ %
ಾ ಆ %
ೀ ಈ %
ೂ ಊ %
ಬ ಭ %
ಹ ಙ %
ಗ ಘ %
ದ ಧ %
ಜ ಝ %
ಡ ಢ
ೋ ಓ
ೇ ಏ
್ ಅ
ಿ ಇ
ು ಉ
ಪ ಫ
ರ ಱ ೃ
ಕ ಖ
ತ ಥ
ಚ ಛ
ಟ ಠ
ೆ ಒ
ನ ಣ
ಲ ಳ
ಸ ಶ
ಋ ್ರ
ಷ ಕ್ಷ
ಯ ಜ್ಞ

View file

@ -1,53 +0,0 @@

View file

@ -1,194 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "!", "labelFlags": 48 },
"default": { "label": "១" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ៗ" },
"default": { "label": "២" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\"", "labelFlags": 48 },
"default": { "label": "៣" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "៛" },
"default": { "label": "៤" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "%", "labelFlags": 48 },
"default": { "label": "៥" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "៍" },
"default": { "label": "៦" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "័" },
"default": { "label": "៧" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "៏" },
"default": { "label": "៨" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "(", "labelFlags": 48 },
"default": { "label": "៩" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": ")", "labelFlags": 48 },
"default": { "label": "០" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "៌" },
"default": { "label": "ឥ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "៎" },
"default": { "label": "ឲ" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឈ" },
"default": { "label": "ឆ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឺ" },
"default": { "label": "ឹ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ែ" },
"default": { "label": "េ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឬ" },
"default": { "label": "រ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ទ" },
"default": { "label": "ត" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ួ" },
"default": { "label": "យ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ូ" },
"default": { "label": "ុ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ី" },
"default": { "label": "ិ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ៅ" },
"default": { "label": "ោ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ភ" },
"default": { "label": "ផ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឿ" },
"default": { "label": "ៀ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឰ" },
"default": { "label": "ឪ" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ាំ", "labelFlags": 128 },
"default": { "label": "ា" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ៃ" },
"default": { "label": "ស" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឌ" },
"default": { "label": "ដ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ធ" },
"default": { "label": "ថ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "អ" },
"default": { "label": "ង" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ះ" },
"default": { "label": "ហ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ញ" },
"default": { "label": "្" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "គ" },
"default": { "label": "ក" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឡ" },
"default": { "label": "ល" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ោះ", "labelFlags": 49280 },
"default": { "label": "ើ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "៉" },
"default": { "label": "់" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឯ" },
"default": { "label": "ឮ" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឍ" },
"default": { "label": "ឋ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ឃ" },
"default": { "label": "ខ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ជ" },
"default": { "label": "ច" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "េះ", "labelFlags": 128 },
"default": { "label": "វ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ព" },
"default": { "label": "ប" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ណ" },
"default": { "label": "ន" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ំ" },
"default": { "label": "ម" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ុះ", "labelFlags": 128 },
"default": { "label": "ុំ", "labelFlags": 128 }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "៕" },
"default": { "label": "។" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\\?", "labelFlags": 48 },
"default": { "label": "៊" }
}
]
]

View file

@ -1,28 +0,0 @@
ĩ q
w
e
r
t
y
u
i
o
p
a
s
d
f
g
h
j
k
l
z
ũ x
c
v
b
n
m

View file

@ -1,55 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3143" },
"default": { "label": "\u3142", "popup": { "main": { "label": "\u3143" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3149" },
"default": { "label": "\u3148", "popup": { "main": { "label": "\u3149" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3138" },
"default": { "label": "\u3137", "popup": { "main": { "label": "\u3138" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3132" },
"default": { "label": "\u3131", "popup": { "main": { "label": "\u3132" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3146" },
"default": { "label": "\u3145", "popup": { "main": { "label": "\u3146" } } }
},
{ "label": "\u315b" },
{ "label": "\u3155" },
{ "label": "\u3151" },
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3152" },
"default": { "label": "\u3150", "popup": { "main": { "label": "\u3152" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3156" },
"default": { "label": "\u3154", "popup": { "main": { "label": "\u3156" } } }
}
],
[
{ "label": "\u3141" },
{ "label": "\u3134" },
{ "label": "\u3147" },
{ "label": "\u3139" },
{ "label": "\u314e" },
{ "label": "\u3157" },
{ "label": "\u3153" },
{ "label": "\u314f" },
{ "label": "\u3163" }
],
[
{ "label": "\u314b" },
{ "label": "\u314c" },
{ "label": "\u314a" },
{ "label": "\u314d" },
{ "label": "\u3160" },
{ "label": "\u315c" },
{ "label": "\u3161" }
]
]

View file

@ -1,55 +0,0 @@
[
[
{ "label": "\u3147" },
{ "label": "\u3161" },
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3156" },
"default": { "label": "\u3154", "popup": { "main": { "label": "\u3156" } } }
},
{ "label": "\u3139" },
{ "label": "\u314c" },
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3152" },
"default": { "label": "\u3150", "popup": { "main": { "label": "\u3152" } } }
},
{ "label": "\u315c" },
{ "label": "\u3163" },
{ "label": "\u3157" },
{ "label": "\u314d" }
],
[
{ "label": "\u314f" },
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3146" },
"default": { "label": "\u3145", "popup": { "main": { "label": "\u3146" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3138" },
"default": { "label": "\u3137", "popup": { "main": { "label": "\u3138" } } }
},
{ "label": "\u3151" },
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3132" },
"default": { "label": "\u3131", "popup": { "main": { "label": "\u3132" } } }
},
{ "label": "\u314e" },
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3149" },
"default": { "label": "\u3148", "popup": { "main": { "label": "\u3149" } } }
},
{ "label": "\u314b" },
{ "label": "\u315b" }
],
[
{ "label": "\u3155" },
{ "label": "\u3160" },
{ "label": "\u314a" },
{ "label": "\u3153" },
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u3143" },
"default": { "label": "\u3142", "popup": { "main": { "label": "\u3143" } } }
},
{ "label": "\u3134" },
{ "label": "\u3141" }
]
]

View file

@ -1,162 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11bd" },
"default": { "label": "\u11c2", "popup": { "main": { "label": "\u11bd" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0040" },
"default": { "label": "\u11bb", "popup": { "main": { "label": "\u0040" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0023" },
"default": { "label": "\u11b8", "popup": { "main": { "label": "\u0023" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0024" },
"default": { "label": "\u116d", "popup": { "main": { "label": "\u0024" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0025" },
"default": { "label": "\u1172", "popup": { "main": { "label": "\u0025" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u005e" },
"default": { "label": "\u1163", "popup": { "main": { "label": "\u005e" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0026" },
"default": { "label": "\u1168", "popup": { "main": { "label": "\u0026" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u002a" },
"default": { "label": "\u1174", "popup": { "main": { "label": "\u002a" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0028" },
"default": { "label": "\u116e", "popup": { "main": { "label": "\u0028" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0029" },
"default": { "label": "\u110f", "popup": { "main": { "label": "\u0029" } } }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11c1" },
"default": { "label": "\u11ba", "popup": { "main": { "label": "\u11c1" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11c0" },
"default": { "label": "\u11af", "popup": { "main": { "label": "\u11c0" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11ac" },
"default": { "label": "\u1167", "popup": { "main": { "label": "\u11ac" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b6" },
"default": { "label": "\u1162", "popup": { "main": { "label": "\u11b6" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b3" },
"default": { "label": "\u1165", "popup": { "main": { "label": "\u11b3" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u003c" },
"default": { "label": "\u1105", "popup": { "main": { "label": "\u003c" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0037" },
"default": { "label": "\u1103", "popup": { "main": { "label": "\u0037" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0038" },
"default": { "label": "\u1106", "popup": { "main": { "label": "\u0038" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0039" },
"default": { "label": "\u110e", "popup": { "main": { "label": "\u0039" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u003e" },
"default": { "label": "\u1111", "popup": { "main": { "label": "\u003e" } } }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11ae" },
"default": { "label": "\u11bc", "popup": { "main": { "label": "\u11ae" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11ad" },
"default": { "label": "\u11ab", "popup": { "main": { "label": "\u11ad" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b0" },
"default": { "label": "\u1175", "popup": { "main": { "label": "\u11b0" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11a9" },
"default": { "label": "\u1161", "popup": { "main": { "label": "\u11a9" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u002f" },
"default": { "label": "\u1173", "popup": { "main": { "label": "\u002f" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0027" },
"default": { "label": "\u1102", "popup": { "main": { "label": "\u0027" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0034" },
"default": { "label": "\u110b", "popup": { "main": { "label": "\u0034" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0035" },
"default": { "label": "\u1100", "popup": { "main": { "label": "\u0035" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0036" },
"default": { "label": "\u110c", "popup": { "main": { "label": "\u0036" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u003a" },
"default": { "label": "\u1107", "popup": { "main": { "label": "\u003a" } } }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11be" },
"default": { "label": "\u11b7", "popup": { "main": { "label": "\u11be" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b9" },
"default": { "label": "\u11a8", "popup": { "main": { "label": "\u11b9" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b1" },
"default": { "label": "\u1166", "popup": { "main": { "label": "\u11b1" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b6" },
"default": { "label": "\u1169", "popup": { "main": { "label": "\u11b6" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0030", "popup": { "main": { "label": "\u0021" } } },
"default": { "label": "\u116e", "popup": { "relevant": [{ "label": "\u0030" }, { "label": "\u0021" }] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0031" },
"default": { "label": "\u1109", "popup": { "main": { "label": "\u0031" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0032" },
"default": { "label": "\u1112", "popup": { "main": { "label": "\u0032" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0033", "popup": { "main": { "label": "\u0022" } } },
"default": { "label": "\u1110", "popup": { "relevant": [{ "label": "\u0033" }, { "label": "\u0022" }] } }
}
]
]

View file

@ -1,162 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11a9" },
"default": { "label": "\u11c2", "popup": { "main": { "label": "\u11a9" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b0" },
"default": { "label": "\u11bb", "popup": { "main": { "label": "\u11b0" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11bd" },
"default": { "label": "\u11b8", "popup": { "main": { "label": "\u11bd" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b5" },
"default": { "label": "\u116d", "popup": { "main": { "label": "\u11b5" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b4" },
"default": { "label": "\u1172", "popup": { "main": { "label": "\u11b4" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u003d" },
"default": { "label": "\u1163", "popup": { "main": { "label": "\u003d" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u201c" },
"default": { "label": "\u1168", "popup": { "main": { "label": "\u201c" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u201d" },
"default": { "label": "\u1174", "popup": { "main": { "label": "\u201d" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0027" },
"default": { "label": "\u116e", "popup": { "main": { "label": "\u0027" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u007e" },
"default": { "label": "\u110f", "popup": { "main": { "label": "\u007e" } } }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11c1" },
"default": { "label": "\u11ba", "popup": { "main": { "label": "\u11c1" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11c0" },
"default": { "label": "\u11af", "popup": { "main": { "label": "\u11c0" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11ac" },
"default": { "label": "\u1167", "popup": { "main": { "label": "\u11ac" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b6" },
"default": { "label": "\u1162", "popup": { "main": { "label": "\u11b6" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b3" },
"default": { "label": "\u1165", "popup": { "main": { "label": "\u11b3" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0035" },
"default": { "label": "\u1105", "popup": { "main": { "label": "\u0035" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0036" },
"default": { "label": "\u1103", "popup": { "main": { "label": "\u0036" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0037" },
"default": { "label": "\u1106", "popup": { "main": { "label": "\u0037" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0038" },
"default": { "label": "\u110e", "popup": { "main": { "label": "\u0038" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0039" },
"default": { "label": "\u1111", "popup": { "main": { "label": "\u0039" } } }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11ae" },
"default": { "label": "\u11bc", "popup": { "main": { "label": "\u11ae" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11ad" },
"default": { "label": "\u11ab", "popup": { "main": { "label": "\u11ad" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b2" },
"default": { "label": "\u1175", "popup": { "main": { "label": "\u11b2" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b1" },
"default": { "label": "\u1161", "popup": { "main": { "label": "\u11b1" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u1164" },
"default": { "label": "\u1173", "popup": { "main": { "label": "\u1164" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0030" },
"default": { "label": "\u1102", "popup": { "main": { "label": "\u0030" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0031" },
"default": { "label": "\u110b", "popup": { "main": { "label": "\u0031" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0032" },
"default": { "label": "\u1100", "popup": { "main": { "label": "\u0032" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0033" },
"default": { "label": "\u110c", "popup": { "main": { "label": "\u0033" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0034" },
"default": { "label": "\u1107", "popup": { "main": { "label": "\u0034" } } }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11be" },
"default": { "label": "\u11b7", "popup": { "main": { "label": "\u11be" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11b9" },
"default": { "label": "\u11a8", "popup": { "main": { "label": "\u11b9" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11bf" },
"default": { "label": "\u1166", "popup": { "main": { "label": "\u11bf" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u11aa" },
"default": { "label": "\u1169", "popup": { "main": { "label": "\u11aa" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u003f" },
"default": { "label": "\u116e", "popup": { "main": { "label": "\u003f" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u002d" },
"default": { "label": "\u1109", "popup": { "main": { "label": "\u002d" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u0022" },
"default": { "label": "\u1112", "popup": { "main": { "label": "\u0022" } } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\u00b7" },
"default": { "label": "\u1110", "popup": { "main": { "label": "\u00b7" } } }
}
]
]

View file

@ -1,194 +0,0 @@
[
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໑" },
"default": { "label": "ຢ", "popup": { "relevant": [ { "label": "1" }, { "label": "໑" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໒" },
"default": { "label": "ຟ", "popup": { "relevant": [ { "label": "2" }, { "label": "໒" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໓" },
"default": { "label": "ໂ", "popup": { "relevant": [ { "label": "3" }, { "label": "໓" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໔" },
"default": { "label": "ຖ", "popup": { "relevant": [ { "label": "4" }, { "label": "໔" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໌" },
"default": { "label": "ຸ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ຼ" },
"default": { "label": "ູ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໕" },
"default": { "label": "ຄ", "popup": { "relevant": [ { "label": "5" }, { "label": "໕" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໖" },
"default": { "label": "ຕ", "popup": { "relevant": [ { "label": "6" }, { "label": "໖" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໗" },
"default": { "label": "ຈ", "popup": { "relevant": [ { "label": "7" }, { "label": "໗" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໘" },
"default": { "label": "ຂ", "popup": { "relevant": [ { "label": "8" }, { "label": "໘" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໙" },
"default": { "label": "ຊ", "popup": { "relevant": [ { "label": "9" }, { "label": "໙" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ໍ່", "labelFlags": 128 },
"default": { "label": "ໍ" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ົ້", "labelFlags": 128 },
"default": { "label": "ົ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "" },
"default": { "label": "ໄ", "popup": { "relevant": [ { "label": "0" }, { "label": "" } ] } }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ຳ້", "labelFlags": 128 },
"default": { "label": "ຳ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "_", "labelFlags": 48 },
"default": { "label": "ພ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "+", "labelFlags": 48 },
"default": { "label": "ະ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ິ້", "labelFlags": 128 },
"default": { "label": "ິ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ີ້", "labelFlags": 128 },
"default": { "label": "ີ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ຣ" },
"default": { "label": "ຮ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ໜ" },
"default": { "label": "ນ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ຽ" },
"default": { "label": "ຍ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ຫຼ", "labelFlags": 128 },
"default": { "label": "ບ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "”", "labelFlags": 48 },
"default": { "label": "ລ" }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ັ້", "labelFlags": 128 },
"default": { "label": "ັ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": ";", "labelFlags": 48 },
"default": { "label": "ຫ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": ".", "labelFlags": 48 },
"default": { "label": "ກ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": ",", "labelFlags": 48 },
"default": { "label": "ດ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": ":", "labelFlags": 48 },
"default": { "label": "ເ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໊" },
"default": { "label": "້" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "໋" },
"default": { "label": "່" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "!", "labelFlags": 48 },
"default": { "label": "າ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\\?", "labelFlags": 48 },
"default": { "label": "ສ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "%", "labelFlags": 48 },
"default": { "label": "ວ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "=", "labelFlags": 48 },
"default": { "label": "ງ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "“", "labelFlags": 48 },
"default": { "label": "“", "labelFlags": 48 }
}
],
[
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "₭", "labelFlags": 48 },
"default": { "label": "ຜ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "(", "labelFlags": 48 },
"default": { "label": "ປ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ຯ" },
"default": { "label": "ແ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "\\@", "labelFlags": 48 },
"default": { "label": "ອ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ຶ້", "labelFlags": 128 },
"default": { "label": "ຶ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ື້", "labelFlags": 128 },
"default": { "label": "ື" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ໆ" },
"default": { "label": "ທ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "ໝ" },
"default": { "label": "ມ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": "$", "labelFlags": 48 },
"default": { "label": "ໃ" }
},
{ "$": "shift_state_selector",
"manualOrLocked": { "label": ")", "labelFlags": 48 },
"default": { "label": "ຝ" }
}
]
]

View file

@ -1,28 +0,0 @@
q
w
ɛ e
r
t
y
u
i
ɔ o
p
a
s
d
f
g
h
j
k
l
z
x
c
̌ v
b
n
m

View file

@ -1,29 +0,0 @@
q
w
e
r
t
y
u
i
o
p
ŋ
a
s
d
f
g
h
j
k
l
z
x
c
v
b
n
m

View file

@ -1,33 +0,0 @@
љ
њ
е
р
т
ѕ
у
и
о
п
ш
а
с
д
ф
г
х
ј
к
л
ч
ќ
з
џ
ц
в
б
н
м
ѓ
ж

View file

@ -1,34 +0,0 @@
ി

View file

@ -1,47 +0,0 @@
ё
ы̄
ӯ
а̄
е̄
ӈ
о̄
я̄
ю̄
ӣ
э̄
ё̄
й
ц
у
к
е
н
г
ш
щ
з
х
ъ
ф
ы
в
а
п
р
о
л
д
ж
э
я
ч
с
м
и
т
ь
б
ю

Some files were not shown because too many files have changed in this diff Show more