diff --git a/docs/ecolyo/functionalities/challenge.md b/docs/ecolyo/functionalities/challenge.md new file mode 100644 index 0000000000000000000000000000000000000000..2cf4828cc8193561d1d7b006f4c3768552ec70c9 --- /dev/null +++ b/docs/ecolyo/functionalities/challenge.md @@ -0,0 +1,28 @@ +!!! info "" +:construction: Section under Construction :construction: + +This section explain all the functionnalities in the challenge part + +## Quiz + +## Mission + +## Duel + +### On launch + + In order to find a valid reference period we search for a period which is defined by the duel duration. + We check the most recent period first if it's complete and then we go farther and farther in the time if the ones before got missing values. + We also define a threshold for a maximum old period (6 months for the moment). If the thresold is reached and no valid period was found, we alert the user that he can't lunch the duel and have to wait before he can retry this process. + +### On going + + Every time the user go into the duel mode, we are checking if the duel is finished. + if (actualDate - startDate) > duelDuration, the duel is done. + +### On finish + + Once the state of the duel is set to DONE, we save the user result and determine if he wins (userComsumption < threshold of the reference period) or if he loses. Then the user sees his earned badge. + + + diff --git a/docs/pilote/Pilote - TS - Back/application/deploy.md b/docs/pilote/Pilote - TS - Back/application/deploy.md index 4463cf85eb16a098cbe1cc4a005d92117a40ed24..0ab69a0db7893fb591de6441ed4a9bba18f093e9 100644 --- a/docs/pilote/Pilote - TS - Back/application/deploy.md +++ b/docs/pilote/Pilote - TS - Back/application/deploy.md @@ -8,4 +8,4 @@ This section will show you how to deploy your project on different environments. For each environment, the CI-CD is implemented. -Once, you commit on 'dev' branch or 'rec' branch, the pipeline liked is running. \ No newline at end of file +Once, you commit on 'dev' branch or 'rec' branch, the pipeline linked is running. \ No newline at end of file diff --git a/docs/pilote/Pilote - TS - Back/getting_started/launch_local_application.md b/docs/pilote/Pilote - TS - Back/getting_started/launch_local_application.md index 77f2b9cce22413c532f36450b50145b8c60bfe01..072a887fd5aefa54640c594a6e6babd65dde3b14 100644 --- a/docs/pilote/Pilote - TS - Back/getting_started/launch_local_application.md +++ b/docs/pilote/Pilote - TS - Back/getting_started/launch_local_application.md @@ -25,8 +25,10 @@ yarn docker:dev If the application starts successfully you should obtain two containers running: -> mps-travailleursocial-back_mps_1 -> mps-travailleursocial-back_postgres_1 +``` + mps-travailleursocial-back_mps_1 + mps-travailleursocial-back_postgres_1 +``` You can access by: http://localhost:3020/api @@ -35,7 +37,7 @@ It will be redirect to the Swagger UI. It allow to test the different API define ### Run Jest test -To start test defined just launch the command in a PowerShell or Windows Powershell tool: +To start test defined just run the command in a PowerShell or Windows Powershell tool: ``` yarn test:watch diff --git a/docs/pilote/Pilote - TS - Back/getting_started/setup_your_environment.md b/docs/pilote/Pilote - TS - Back/getting_started/setup_your_environment.md index 4e11ae1de0a12118c610576ebf4089402212d9da..e25f847ba3b6884b9d7413f5c94ac1867338116b 100644 --- a/docs/pilote/Pilote - TS - Back/getting_started/setup_your_environment.md +++ b/docs/pilote/Pilote - TS - Back/getting_started/setup_your_environment.md @@ -1,4 +1,4 @@ -This section will allow you to install a proper local environment step by step for Ecolyo application using VSCode IDE. +This section will allow you to install a proper local environment step by step for Pilote application using VSCode IDE. ## VSCode diff --git a/docs/pilote/Pilote - TS - Back/index.md b/docs/pilote/Pilote - TS - Back/index.md index 748bc4dbecccda25be68c5056cad1a87cf1f54b8..60729ec5114ebf0d929e6a9f6db4ce5a263b063f 100644 --- a/docs/pilote/Pilote - TS - Back/index.md +++ b/docs/pilote/Pilote - TS - Back/index.md @@ -1,6 +1,7 @@ Pilote is a social application. - +!!! info "" + :construction: Section under Construction :construction: ## Repository Global @@ -12,6 +13,6 @@ Pilote is a social application. ## Acces to the application deployed -DEV : https://pilote-agent-dev.grandlyon.com/ -REC : https://pilote-agent-rec.grandlyon.com/ +- DEV : https://pilote-agent-dev.grandlyon.com/ +- REC : https://pilote-agent-rec.grandlyon.com/ diff --git a/docs/pilote/Pilote - TS - Back/project_architecture/architecture.md b/docs/pilote/Pilote - TS - Back/project_architecture/architecture.md index 7e05fd01eaaa1489442d0cd58bb145997296e638..a0b4d59a813eb65fabfd70bf5d062a2f55bf1e35 100644 --- a/docs/pilote/Pilote - TS - Back/project_architecture/architecture.md +++ b/docs/pilote/Pilote - TS - Back/project_architecture/architecture.md @@ -4,8 +4,10 @@ ## Techno used -> NestJS -> Jest for th tests -> Docker -> PostgreSQL +- NestJS +- Jest for th tests +- Docker +- PostgreSQL + + diff --git a/docs/pilote/Pilote - TS - Front/getting_started/launch_local_application.md b/docs/pilote/Pilote - TS - Front/getting_started/launch_local_application.md new file mode 100644 index 0000000000000000000000000000000000000000..87fe58f37e880b8851eebc60cd55d6a5d9426254 --- /dev/null +++ b/docs/pilote/Pilote - TS - Front/getting_started/launch_local_application.md @@ -0,0 +1,35 @@ +!!! info "" +:construction: Section under Construction :construction: + +This section will allow you to launch a proper local environment of the Pilote TS front application + +## Initialisation of the project + +### Clone the project repository + +Use following command in your favorite terminal to clone the projet: + +``` +git clone https://forge.grandlyon.com/solidarite/monparcourssocial/mps-travailleursocial.git +``` + +## Installation of the projet + +### Start Pilote application + +Before to start Pilote application, you need to run this command in order to install dependencies: + +``` +yarn install +``` + +To start Pilote application just launch the command in a PowerShell or Windows Powershell tool: + +``` +yarn start +``` + +If the application starts successfully you should access to: + +> http://localhost:3001/ + diff --git a/docs/pilote/Pilote - Agent/.gitkeep b/docs/pilote/Pilote - Usager/.gitkeep similarity index 100% rename from docs/pilote/Pilote - Agent/.gitkeep rename to docs/pilote/Pilote - Usager/.gitkeep diff --git a/docs/pilote/Pilote - Agent/application/deploy.md b/docs/pilote/Pilote - Usager/application/deploy.md similarity index 100% rename from docs/pilote/Pilote - Agent/application/deploy.md rename to docs/pilote/Pilote - Usager/application/deploy.md diff --git a/docs/pilote/Pilote - Usager/application/doctypes.md b/docs/pilote/Pilote - Usager/application/doctypes.md new file mode 100644 index 0000000000000000000000000000000000000000..087646e539ffd49bd2543e500a3bfd65fd4deaf4 --- /dev/null +++ b/docs/pilote/Pilote - Usager/application/doctypes.md @@ -0,0 +1,103 @@ +:construction: Section under Construction :construction: + +# Doctypes + +Doctypes represent different types of data. Their primary use is for permissions: an app or konnector will request permissions for one or several doctypes and will not be able to access other doctypes. See [Doctypes documentation](https://docs.cozy.io/en/cozy-doctypes/docs/) for more information. + +The following is a full description of the doctypes we use and their fields. Cozy doctypes won't be fully described. Instead, for every used one, we'll include a link to its official documentation. + + + +## Used Cozy doctypes + +- [`io.cozy.accounts`](https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.accounts): Konnector accounts +- [`io.cozy.contacts`](https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.contacts): Contacts +- [`io.cozy.contacts.groups`](https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.contacts.groups): Contacts groups +- [`io.cozy.files`](https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.files): Files +- [`io.cozy.konnectors`](https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.konnectors): Connectors installed in the cozy +- [`io.cozy.permissions`](https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.permissions): Permissions of the instance +- [`io.cozy.todos.item`](https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.todos.item): Todos item +- [`io.cozy.todos.list`](https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.todos.list): Todos list +- [`io.cozy.triggers`](https://docs.cozy.io/en/cozy-doctypes/docs/io.cozy.triggers): Job triggers + + + +## Custom doctypes + +- `com.grandlyon.mps.notes` + + Represents ... + + `com.grandlyon.mps.notes` attributes are: + + - `title`: {string} The title of the note. + - `content`: {string} The content of the note. + + #### Example + + ```json + { + title: '...', + content: '...', + } + ``` + + + +- `com.grandlyon.mps.profile` + + Represents the tutorial and notifications state. + + `com.grandlyon.mps.profile` attributes are: + + - `tutorial`: {object} contains `home`, `contacts`, `documents`, `actions`, and `notes` which are all of type `boolean`. Each one represents the state of its tutorial. For example, `home: true` means the home tutorial hasn't been seen yet and will be visible to the user the next time he visits the Home component. + - `notification`: {} ... + + #### Example + + ```json + { + tutorial: { + home: true, + contacts: false, + documents: true, + actions: false, + notes: true + }, + notification: ... + } + } + ``` + +- `com.grandlyon.mps.appointments` + + ... + +- `com.grandlyon.mps.docrules` + + Represents ... + + `com.grandlyon.mps.docrules` attributes are: + + - `description`: {string} Description of the docrule. + - `doctype`: {string} ... + - `rule`: {object} Contains `limit` of type `number`and `selector` which is an `object` with the following attributes: + - `'cozyMetadata.classification'`: {string} Classification ... + - `'cozyMetadata.createdAt'`: {object} Creation date. + + #### Example + + ```json + { + description: '...', + doctype: 'io.cozy.files', + rule: { + limit: 10, + selector: { + 'cozyMetadata.classification': '...', + 'cozyMetadata.createdAt': 'December 23, 2020 03:24:00', + } + } + } + ``` + diff --git a/docs/pilote/Pilote - Usager/application/gitflow.md b/docs/pilote/Pilote - Usager/application/gitflow.md new file mode 100644 index 0000000000000000000000000000000000000000..60a934d0e8ebabfb1698d909bfbf1e1be1a4507d --- /dev/null +++ b/docs/pilote/Pilote - Usager/application/gitflow.md @@ -0,0 +1,74 @@ +!!! info "" + :construction: Section under Construction :construction: + +## Initialize + +- Create a new project in GitLab and take note of its URL + +### Protecting Master Branch + +On the GitLab page of your project go to *Settings/Repository* in the *Protected Branches* section. +Select the **Master** branch and set **allow to merge** to ***Master*** and **allow to push** to **No one** +This will prevent anyone to push on the master branch, the only way to add code to the branch will be merge requests. + +### Setting Development Branch + +- Retrieve the project on your computer, open a command line and execute. + +``` +git clone https://forge.grandlyon.com/web-et-numerique/llle.git +git clone https://forge.grandlyon.com/solidarite/monparcourssocial/mps-usager.git +``` + +- Create the development branch + +``` +git checkout -b dev +``` + +- Init your project and then type any time you want to commit changes: + +``` +git add . +git commit -m "Commit changes" +git push origin dev +``` + +## Start Developing + +For any other development you should create a branch from the development branch. + +First make sure to be on the ***dev*** branch, type: + +``` +git branch +``` + +> to see your current branch + +### Conventional Commits + +A `feature` branch name should follow this structure: + +- *feat/<title_of_the_user_story\>* + +You can create the branch by typing: + +``` +git checkout -b feat/<title_of_the_user_story> +``` + +Each fix branch should be named as the following *fix-\<title_of_the_fix\>*. + +**Breaking Change** +Appends a `!` before the title of the commit to notify that a breaking change has happened. Give a solid description of the changes as well. + +**add tag** + +``` +git tag -a 1.0.0 -m "complementary message" +``` + +### Gitflow Scheme + + \ No newline at end of file diff --git a/docs/pilote/Pilote - Usager/application/scaffolding.md b/docs/pilote/Pilote - Usager/application/scaffolding.md new file mode 100644 index 0000000000000000000000000000000000000000..cd43a4a69a32be697f2ff1d30940d59d31fef1ea --- /dev/null +++ b/docs/pilote/Pilote - Usager/application/scaffolding.md @@ -0,0 +1,35 @@ +:construction: Section under Construction :construction: + +In this section, you will find information about the project file structure and the purpose of the main folders. + +##Source Files + +| Folder/File | Purpose | +| ------------------ | ------------------------------------------------------------ | +| assets | The application's assets, contains fonts, svg and png files. | +| docrules | | +| doctypes | Contains the **cozy** doctypes, you can see more on [Cozy Documentation](https://github.com/cozy/cozy-doctypes). | +| helpers | Contains helper functions that are used by services. It contains also a test file for each helper file. | +| locales | Contains JSON data used by the translation system i18n provided by [Cozy-ui](https://github.com/cozy/cozy-ui). | +| models | Contains all our models' Interfaces | +| services | Here you'll find all the services. It contains also a test file for each service file. | +| store | Redux store. Contains actions, reducers, and store types. | +| styles | Styles folder. The **base** folder under it contains our variables, fonts, breakpoints, animations, and mixins. Whenever you add a style file elsewhere, don't forget to import it in **index.scss**. | +| targets | Contains mobile and browser targets. It also contains a **Public** target for *social workers*. | +| types | | +| utils | In this folder you'll find utilities methods. | +| tests | | +| components/App.tsx | The root component. | + +##Configuration Files + +| Folder/File | Purpose | +| --------------- | ------------------------------------------------------------ | +| .eslintrc.js | Config file for ESLint. | +| gitlab-ci.yml | Config file used for Gitlab continuous integration. | +| .prettierrc | Config file for Prettier extension. | +| | | +| jest.config.js | Config file used by Jest for testing the application. | +| manifest.webapp | Manifest of the application, used by cozy for permissions' management, you can add permissions for doctypes here. | +| tsconfig.json | Config file for TypeScript. | +| ... | | \ No newline at end of file diff --git a/docs/pilote/Pilote - Usager/application/services.md b/docs/pilote/Pilote - Usager/application/services.md new file mode 100644 index 0000000000000000000000000000000000000000..8ff103699a118d378c894027f49fe29dc70e7214 --- /dev/null +++ b/docs/pilote/Pilote - Usager/application/services.md @@ -0,0 +1,64 @@ +:construction: Section under Construction :construction: + +## Profile Service + +### Functions + +- `getProfile`: Tries fetching the profile if it exists. If not, it creates a new one and returns it. +- `updateProfile`: Updates the profile. + +## Note Service + +### Functions + +- `findNoteCurrentAppointement`: Returns a note from an appointment id. +- `findNoteById`: Returns a note by its id. +- `getAllNotes`: Returns all notes. +- `findLastNote`: Returns the last note by date. +- `createNote`: Creates a new note and returns it. +- `updateNote`: Updates a note. +- `deleteNoteById`: Deletes a note by its id. + +## DocRule Service + +### Functions + +- `createDocRule`: Creates a new docRule. +- `getDocRuleById`: Returns a docRule by its id. +- `getDocRulesByIds`: Returns a list of docRules by their ids. +- `getAllDocRules`: Returns all docRules. +- `createAllDocRules`: Fetches all docRules and creates the missing ones. + +## Document Service + +### Functions + +- `getAllDocuments`: Returns the list of all documents. +- `getDocumentsByQualification`: Returns a document by the `'metadata.qualification.label'`. +- `getDocumentsByQualifications`: Uses `getDocumentsByQualification` to return a list of documents by the `'metadata.qualification.label'`. +- `getDocumentByID`: Returns a document by its id. +- `saveDocument`: Creates a new file. +- `editDocumentName`: Edits a document's name by its id. +- `deleteDocumentById`: Deletes the document by its id. +- `downloadDocument`: Downloads a file from its id. +- `viewDocument`: Takes a document's id, opens its download link and returns it. + +## Contact Service + +### Functions + +- `getCurrentUser`: Returns the contact with an existing `me` field, which represents the current user. +- `getAllContacts`: Returns a list of all contacts. +- `findContactById`: Returns a contact by its id. +- `createContact`: Creates a new contact. +- `updateContact`: Updates an existing contact. +- `deleteContactById`: Deletes a contact by its id. + +## Group Service + +## Function + +- `createMetroGroup`: Creates a new group and returns it. +- `getMetroGroup`: Returns the group if it exists or creates it if it doesn't. + +## ... \ No newline at end of file diff --git a/docs/pilote/Pilote - Usager/application/store.md b/docs/pilote/Pilote - Usager/application/store.md new file mode 100644 index 0000000000000000000000000000000000000000..6dd7f2418f5407802a82f6d262b5f68f3672c250 --- /dev/null +++ b/docs/pilote/Pilote - Usager/application/store.md @@ -0,0 +1,23 @@ +# Redux + +We are using **Redux** for our application state management. it maintains the state of the entire application in a single immutable state tree (object), which can't be changed directly. When something changes, a new object is created (using actions and reducers). For more information about Redux, visit The [official documentation][https://redux.js.org/]. + +## Store + +The following are the existing store entities used by our application: + +- `Global`: Preserves the global state, which includes `isPublic` and `screenType` (Mobile/Tablet/Desktop). +- `UploadDocument`: Manages the state of uploaded documents. +- `Profile`: Preserves the state of tutorials and notifications. + + + +For each reducer file, a test file is associated testing the reducer. + +All the actions are tested in a separate file with the same actions file name. + +## Used packages + +- **react-redux**: Official React bindings for [Redux](https://github.com/reduxjs/redux). +- **redux-devtools-extension**: For debugging application's state changes. +- **@types/react-redux**: This package contains type definitions for react-redux. \ No newline at end of file diff --git a/docs/pilote/Pilote - Usager/getting_started/launch_local_doctypes.md b/docs/pilote/Pilote - Usager/getting_started/launch_local_doctypes.md new file mode 100644 index 0000000000000000000000000000000000000000..86fb0836c18c6f1385d381b6d77692ce2d0b65d5 --- /dev/null +++ b/docs/pilote/Pilote - Usager/getting_started/launch_local_doctypes.md @@ -0,0 +1,80 @@ +!!! info "" + :construction: Section under Construction :construction: + + + +## Use cozy-doctype in local +In order to be able to use our own cozy-doctype, especialy remote doctype here, we need to use them in local. + +1/ clone cozy-doctype repository into your system. +Then, push it into your root project. + +2/ After that, add your own remote doctype into cozy-doctype folder: + - create a new folder ex: org.mps.share + - push into this folder request file: request + +You must declare this doctype into your manifest.webapp file like that : + "share": { + "description": "Required for searching on back-endTS", + "type": "org.mps.share", + "verbs": ["GET", "POST"] + }, + + +3/ In cozy-app-dev-with-app.sh, you need to add another option when you serve the cozy-stack: + - cozy-stack serve --allow-root (...) --doctypes /path/to/the/doctype + +=> in this project : + - cozy-stack serve (...) --doctypes /data/cozy-doctypes + +!! Warning !! : You need to build and push the newlest image on the forge registry when the step 3 is done +!! Warning !! : You must have all files, into your docker folder, in LF mode of "End of Line Sequence" ! + +For this project: + - cd docker + - docker build . + - docker tag <image_ID_created> registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes + - docker push registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes:latest + +4/ The path "/data/cozy-doctypes" is link to the volume of the cozy-app-dev image. + - in order to mount this volume, you need to add it when you run the 'docker run' command : + -v $PWD/cozy-doctypes:/data/cozy-doctypes + + => for this project : + docker run --rm -it -p 8080:8080 -p 5984:5984 -p 8025:8025 -v $PWD/build:/data/cozy-app/mps -v $PWD/data:/usr/local/couchdb/data -v $PWD/docker/disableCSP.yaml:/etc/cozy/cozy.yaml -v $PWD/cozy-doctypes:/data/cozy-doctypes registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes + + +# How to test your remote doctype ? +## GET +1/ In the request file created. Specify the methode and the route to your target URL : + GET https://pilote-agent-dev.grandlyon.com/api/cozy + + or with value in query : + + GET https://pilote-agent-dev.grandlyon.com/api/auth/token/check?token={{token}} + + +2/ Then, you can test it by : + - await client.getStackClient().fetchJSON('GET','/remote/org.mps.share') + + or with value in query : + + - await client.getStackClient().fetchJSON('GET','/remote/org.mps.share?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImNvenlBcGlDaGVjayIsInVzZXJJZCI6IjEiLCJpYXQiOjE2MDU2OTI0NjYsImV4cCI6MTYwNTY5MjUyNn0.HbQh5H-TcVIASUpbjZAD0MY9slRAJOVw-VMKSBu_sQ0' ) + +## POST +1/ In the request file created. Specify the methode and the route to your target URL : + POST https://pilote-agent-dev.grandlyon.com/api/auth/token/check + Content-Type: application/json + + {{data}} + + +2/ Then, you can test it by : + const parameters = { + data: JSON.stringify({ + token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImNvenlBcGlDaGVjayIsInVzZXJJZCI6IjEiLCJpYXQiOjE2MDU2MjYxNzAsImV4cCI6MTYwNTYyNjIzMH0.8m-rEAZkuqb4upAPKY7j8DhvFi8mVbmiCFDitgNYt6Y" + } + ) + } + + console.log('call remote ==> ', await client.getStackClient().fetchJSON('POST','/remote/org.mps.share', parameters )) diff --git a/docs/pilote/Pilote - Usager/getting_started/launch_local_services.md b/docs/pilote/Pilote - Usager/getting_started/launch_local_services.md new file mode 100644 index 0000000000000000000000000000000000000000..7220022ec9114957465da44412089b3bc0d52c89 --- /dev/null +++ b/docs/pilote/Pilote - Usager/getting_started/launch_local_services.md @@ -0,0 +1,120 @@ +!!! info "" + :construction: Section under Construction :construction: + + +### Use services in local +## Configure the cozy-stack on local +In order to be able to use your sercice, follow these steps: + +1/ clone cozy-doctype repository into your system. +Then, push it into your root project. + +2/ After that, add your own remote doctype into cozy-doctype folder: + - create a new folder ex: org.mps.share + - push into this folder request file: request + +You must declare this doctype into your manifest.webapp file like that : + "share": { + "description": "Required for searching on back-endTS", + "type": "org.mps.share", + "verbs": ["GET", "POST"] + }, + + +3/ In cozy-app-dev-with-app.sh, you need to add another option when you serve the cozy-stack: + - cozy-stack serve --allow-root (...) --doctypes /path/to/the/doctype + +=> in this project : + - cozy-stack serve (...) --doctypes /data/cozy-doctypes + +4/ You need to add another option when you install apps in the cozy-stack (go to: docker\cozy-app-dev-with-app.sh) +In do_install_app(): + +``` +#add symbolic link to mps for sms service + ln -s /data/cozy-app/mps /data/cozy-storage/cozy.tools\:8080/.cozy_apps/mps + if [ -d "data/cozy-app/mps/0.1.1" ]; then + echo "data/cozy-app/mps/0.1.1 already here!"; + else + mkdir /data/cozy-app/mps/0.1.1 + cp -a /data/cozy-app/mps/services/ /data/cozy-app/mps/0.1.1/ + echo "data/cozy-app/mps/0.1.1 just create!"; + fi + # mkdir /data/cozy-app/mps/0.1.1 + # cp -a /data/cozy-app/mps/services/ /data/cozy-app/mps/0.1.1/ + echo "service added" +``` + +5/ Then, add konnector-node-run.sh in docker folder. This file is a script to store the service logs. It should contain: + #!/bin/bash + + rundir="${1}" + cd $rundir + node index.js | tee /data/cozy-app/mps/services.log + +Then, add this following row into the Dockerfile: + +COPY konnector-node-run.sh /etc/cozy/konnector-node-run.sh + +6/ Into the disableCSP.yml, you need to add one more configuration: + +konnectors: + cmd: /etc/cozy/konnector-node-run.sh # run connectors with node + + +!! Warning !! : You need to build and push the newlest image on the forge registry when the step 6 is done +!! Warning !! : You must have all files, into your docker folder, in LF mode of "End of Line Sequence" ! + +Finaly, you should rebuild the docker image of the cozy-stack: + - cd docker + - docker build . + - docker tag <image_ID_created> registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes + - docker push registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes:latest + + +7/ The path "/data/cozy-doctypes" is link to the volume of the cozy-app-dev image. + - in order to mount this volume, you need to add it when you run the 'docker run' command : + -v $PWD/cozy-doctypes:/data/cozy-doctypes + + => for this project : + docker run --rm -it -p 8080:8080 -p 5984:5984 -p 8025:8025 -v $PWD/build:/data/cozy-app/mps -v $PWD/data:/usr/local/couchdb/data -v $PWD/docker/disableCSP.yaml:/etc/cozy/cozy.yaml -v $PWD/cozy-doctypes:/data/cozy-doctypes registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes + + +## How to test your service ? + +In the manifest.webapp, you need to declare the service: + +"services": { + "smsProcess": { + "type": "node", + "file": "services/smsProcess/pilote.js" + } + }, + +Then, in src\targets\services, you can add your service. + + + +For this project, we have created a button in Home.component.tsx in order to generate trigger url to run the service: + +const getTrigger = async () => { + const attrs = { type: '@webhook', + worker: 'service', + message: { + name: 'smsProcess', + slug: 'pilotedemo', + }, + } + + const trigger = await client.getStackClient() .collection('io.cozy.triggers') .create(attrs) + console.log('trigger', trigger) + } + +It generate an trigger URL that we can call with our backend application : + +> URL_COZY/job/webhook/{{trigger_id}} + + + +URL_COZY represent the cozy-stack url of your environment and not your application URL. + diff --git a/mkdocs.yml b/mkdocs.yml index b80b6e38fa0ab5b4bfbb8f02b84717b469fc05d7..df5d7b9ceeccef81f1b0f3bc2ee629dca03bd0ea 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -45,6 +45,8 @@ nav: - Enedis: ecolyo/konnectors/enedis.md - GRDF: ecolyo/konnectors/grdf.md - Eau du Grand Lyon: ecolyo/konnectors/egl.md + - Functionalities: + - Challenge: ecolyo/functionalities/challenge.md - Proxy: - Description: proxy/description.md - Use cases: diff --git a/site/404.html b/site/404.html index e2c8f90bb4fb32419cb99a4e8b44a8fac86aeff9..879fde91b74e624004b2061fe8dd9bfc9191d4d7 100644 --- a/site/404.html +++ b/site/404.html @@ -1,469 +1,758 @@ -<!DOCTYPE html> + +<!doctype html> <html lang="en" class="no-js"> <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width,initial-scale=1" /> - <meta http-equiv="x-ua-compatible" content="ie=edge" /> + + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width,initial-scale=1"> + + <meta name="description" content="Self Data Grand Lyon Project Documentation with Markdown."> + + + + <meta name="author" content="Métropole de Lyon"> + + + <link rel="shortcut icon" href="/img/self_data_grdlyon.png"> + <meta name="generator" content="mkdocs-1.1.2, mkdocs-material-6.2.3"> + + + + <title>Self Data Grand Lyon - Technical Docs</title> + + + + <link rel="stylesheet" href="/assets/stylesheets/main.3b61ea93.min.css"> + + + <link rel="stylesheet" href="/assets/stylesheets/palette.39b8e14a.min.css"> + + + + <meta name="theme-color" content="#ffffff"> + + + + + + + + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> + <style>body,input{font-family:"Roboto",-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono",SFMono-Regular,Consolas,Menlo,monospace}</style> + + + + + <link rel="stylesheet" href="/stylesheets/extra.css"> + + + + + + </head> + + + + + + + + <body dir="ltr" data-md-color-scheme="" data-md-color-primary="white" data-md-color-accent="red"> + + + + <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> + <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> + <label class="md-overlay" for="__drawer"></label> + <div data-md-component="skip"> + + </div> + <div data-md-component="announce"> + + </div> + + + +<header class="md-header" data-md-component="header"> + <nav class="md-header-nav md-grid" aria-label="Header"> + <a href="/." title="Self Data Grand Lyon - Technical Docs" class="md-header-nav__button md-logo" aria-label="Self Data Grand Lyon - Technical Docs"> + + + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 003-3 3 3 0 00-3-3 3 3 0 00-3 3 3 3 0 003 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54z"/></svg> + + </a> + <label class="md-header-nav__button md-icon" for="__drawer"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2z"/></svg> + </label> + <div class="md-header-nav__title" data-md-component="header-title"> + <div class="md-header-nav__ellipsis"> + <div class="md-header-nav__topic"> + <span class="md-ellipsis"> + Self Data Grand Lyon - Technical Docs + </span> + </div> + <div class="md-header-nav__topic"> + <span class="md-ellipsis"> + + + + </span> + </div> + </div> + </div> + + <label class="md-header-nav__button md-icon" for="__search"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0116 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 019.5 16 6.5 6.5 0 013 9.5 6.5 6.5 0 019.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg> + </label> + +<div class="md-search" data-md-component="search" role="dialog"> + <label class="md-search__overlay" for="__search"></label> + <div class="md-search__inner" role="search"> + <form class="md-search__form" name="search"> + <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" data-md-state="active" required> + <label class="md-search__icon md-icon" for="__search"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0116 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 019.5 16 6.5 6.5 0 013 9.5 6.5 6.5 0 019.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z"/></svg> + </label> + <button type="reset" class="md-search__icon md-icon" aria-label="Clear" data-md-component="search-reset" tabindex="-1"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg> + </button> + </form> + <div class="md-search__output"> + <div class="md-search__scrollwrap" data-md-scrollfix> + <div class="md-search-result" data-md-component="search-result"> + <div class="md-search-result__meta"> + Initializing search + </div> + <ol class="md-search-result__list"></ol> + </div> + </div> + </div> + </div> +</div> + + + <div class="md-header-nav__source"> + +<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/self-data-technical-doc" title="Go to repository" class="md-source"> + <div class="md-source__icon md-icon"> + + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05L244 40.45a28.87 28.87 0 00-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 01-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 000 40.81l195.61 195.6a28.86 28.86 0 0040.8 0l194.69-194.69a28.86 28.86 0 000-40.81z"/></svg> + </div> + <div class="md-source__repository"> + Clone the Project + </div> +</a> + </div> + + </nav> +</header> + + <div class="md-container" data-md-component="container"> + + + + + <main class="md-main" data-md-component="main"> + <div class="md-main__inner md-grid"> + + + + <div class="md-sidebar md-sidebar--primary" data-md-component="navigation" > + <div class="md-sidebar__scrollwrap"> + <div class="md-sidebar__inner"> + + + + + +<nav class="md-nav md-nav--primary" aria-label="Navigation" data-md-level="0"> + <label class="md-nav__title" for="__drawer"> + <a href="/." title="Self Data Grand Lyon - Technical Docs" class="md-nav__button md-logo" aria-label="Self Data Grand Lyon - Technical Docs"> + + + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 003-3 3 3 0 00-3-3 3 3 0 00-3 3 3 3 0 003 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54z"/></svg> + + </a> + Self Data Grand Lyon - Technical Docs + </label> + + <div class="md-nav__source"> + +<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/self-data-technical-doc" title="Go to repository" class="md-source"> + <div class="md-source__icon md-icon"> + + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05L244 40.45a28.87 28.87 0 00-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 01-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 000 40.81l195.61 195.6a28.86 28.86 0 0040.8 0l194.69-194.69a28.86 28.86 0 000-40.81z"/></svg> + </div> + <div class="md-source__repository"> + Clone the Project + </div> +</a> + </div> + + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + <li class="md-nav__item"> + <a href="/." class="md-nav__link"> + Home + </a> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2" > + + <label class="md-nav__link" for="nav-2"> + Pilote + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Pilote" data-md-level="1"> + <label class="md-nav__title" for="nav-2"> + <span class="md-nav__icon md-icon"></span> + Pilote + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="/pilote/index.md" class="md-nav__link"> + Introduction + </a> + </li> + + + </ul> + </nav> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3" > + + <label class="md-nav__link" for="nav-3"> + Ecolyo + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Ecolyo" data-md-level="1"> + <label class="md-nav__title" for="nav-3"> + <span class="md-nav__icon md-icon"></span> + Ecolyo + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/" class="md-nav__link"> + Introduction + </a> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3-2" type="checkbox" id="nav-3-2" > + + <label class="md-nav__link" for="nav-3-2"> + Getting started + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Getting started" data-md-level="2"> + <label class="md-nav__title" for="nav-3-2"> + <span class="md-nav__icon md-icon"></span> + Getting started + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/getting_started/setup_your_environment/" class="md-nav__link"> + Setup your environment + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/getting_started/launch_local_application/" class="md-nav__link"> + Launch the application on local + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/getting_started/launch_local_konnector/" class="md-nav__link"> + Launch a konnector on local + </a> + </li> + + + </ul> + </nav> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3-3" type="checkbox" id="nav-3-3" > + + <label class="md-nav__link" for="nav-3-3"> + Project Architecture + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Project Architecture" data-md-level="2"> + <label class="md-nav__title" for="nav-3-3"> + <span class="md-nav__icon md-icon"></span> + Project Architecture + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/project_architecture/architecture/" class="md-nav__link"> + Architecture + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/project_architecture/cozy/" class="md-nav__link"> + Cozy + </a> + </li> - <meta - name="description" - content="LLLE Project Documentation with Markdown." - /> + + + + - <meta name="author" content="LLLE Team" /> - <meta name="lang:clipboard.copy" content="Copy to clipboard" /> - <meta name="lang:clipboard.copied" content="Copied to clipboard" /> + <li class="md-nav__item"> + <a href="/ecolyo/project_architecture/environments/" class="md-nav__link"> + Environments + </a> + </li> - <meta name="lang:search.language" content="en" /> + + + + - <meta name="lang:search.pipeline.stopwords" content="True" /> - <meta name="lang:search.pipeline.trimmer" content="True" /> - <meta name="lang:search.result.none" content="No matching documents" /> + <li class="md-nav__item"> + <a href="/ecolyo/project_architecture/doctypes/" class="md-nav__link"> + DocTypes + </a> + </li> - <meta name="lang:search.result.one" content="1 matching document" /> + + </ul> + </nav> + </li> - <meta name="lang:search.result.other" content="# matching documents" /> + + + + - <meta name="lang:search.tokenizer" content="[\s\-]+" /> - <link rel="shortcut icon" href="/assets/images/favicon.png" /> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3" /> - <title>LLLE-Ecolyo Technical Docs</title> + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3-4" type="checkbox" id="nav-3-4" > + + <label class="md-nav__link" for="nav-3-4"> + Application + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Application" data-md-level="2"> + <label class="md-nav__title" for="nav-3-4"> + <span class="md-nav__icon md-icon"></span> + Application + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/application/description/" class="md-nav__link"> + Description + </a> + </li> - <link - rel="stylesheet" - href="/assets/stylesheets/application.adb8469c.css" - /> + + + + - <link - rel="stylesheet" - href="/assets/stylesheets/application-palette.a8b3c06d.css" - /> - <meta name="theme-color" content="#757575" /> - <script src="/assets/javascripts/modernizr.86422ebf.js"></script> + <li class="md-nav__item"> + <a href="/ecolyo/application/scaffolding/" class="md-nav__link"> + Scaffolding + </a> + </li> - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin /> - <link - rel="stylesheet" - href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback" - /> - <style> - body, - input { - font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; - } - code, - kbd, - pre { - font-family: "Roboto Mono", "Courier New", Courier, monospace; - } - </style> + + + + - <link rel="stylesheet" href="/assets/fonts/material-icons.css" /> - </head> - <body - dir="ltr" - data-md-color-primary="grey" - data-md-color-accent="deep-orange" - > - <svg class="md-svg"> - <defs></defs> - </svg> - <input - class="md-toggle" - data-md-toggle="drawer" - type="checkbox" - id="__drawer" - autocomplete="off" - /> - <input - class="md-toggle" - data-md-toggle="search" - type="checkbox" - id="__search" - autocomplete="off" - /> - <label - class="md-overlay" - data-md-component="overlay" - for="__drawer" - ></label> - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a - href="/." - title="LLLE-Ecolyo Technical Docs" - aria-label="LLLE-Ecolyo Technical Docs" - class="md-header-nav__button md-logo" - > - <i class="md-icon">î Œ</i> - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label - class="md-icon md-icon--menu md-header-nav__button" - for="__drawer" - ></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div - class="md-flex__ellipsis md-header-nav__title" - data-md-component="title" - > - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> </span> - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label - class="md-icon md-icon--search md-header-nav__button" - for="__search" - ></label> - - <div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input - type="text" - class="md-search__input" - aria-label="search" - name="query" - placeholder="Search" - autocapitalize="off" - autocorrect="off" - autocomplete="off" - spellcheck="false" - data-md-component="query" - data-md-state="active" - /> - <label class="md-icon md-search__icon" for="__search"></label> - <button - type="reset" - class="md-icon md-search__icon" - data-md-component="reset" - tabindex="-1" - > -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> + + <li class="md-nav__item"> + <a href="/ecolyo/application/services/" class="md-nav__link"> + Services + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/application/gitflow/" class="md-nav__link"> + Gitflow + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/application/deploy/" class="md-nav__link"> + Deploy + </a> + </li> + + + </ul> + </nav> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3-5" type="checkbox" id="nav-3-5" > + + <label class="md-nav__link" for="nav-3-5"> + Konnectors + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Konnectors" data-md-level="2"> + <label class="md-nav__title" for="nav-3-5"> + <span class="md-nav__icon md-icon"></span> + Konnectors + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/konnectors/enedis/" class="md-nav__link"> + Enedis + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/konnectors/grdf/" class="md-nav__link"> + GRDF + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="/ecolyo/konnectors/egl/" class="md-nav__link"> + Eau du Grand Lyon + </a> + </li> + + + </ul> + </nav> + </li> + + + </ul> + </nav> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-4" type="checkbox" id="nav-4" > + + <label class="md-nav__link" for="nav-4"> + Proxy + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Proxy" data-md-level="1"> + <label class="md-nav__title" for="nav-4"> + <span class="md-nav__icon md-icon"></span> + Proxy + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="/proxy/description/" class="md-nav__link"> + Description + </a> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-4-2" type="checkbox" id="nav-4-2" > + + <label class="md-nav__link" for="nav-4-2"> + Use cases + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Use cases" data-md-level="2"> + <label class="md-nav__title" for="nav-4-2"> + <span class="md-nav__icon md-icon"></span> + Use cases + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="/proxy/use_cases/enedis/" class="md-nav__link"> + Enedis + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="/proxy/use_cases/grdfadict/" class="md-nav__link"> + Grdf Adict + </a> + </li> + + + </ul> + </nav> + </li> + + + </ul> + </nav> + </li> + + + </ul> +</nav> </div> </div> </div> - </div> - </div> + + + + <div class="md-content"> + <article class="md-content__inner md-typeset"> + + <h1>404 - Not found</h1> - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - <a - href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" - title="Go to repository" - class="md-source" - data-md-source="" - > - <div class="md-source__repository"> - llle_docs - </div> - </a> - </div> - </div> - </div> - </nav> - </header> - - <div class="md-container"> - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - <div - class="md-sidebar md-sidebar--primary" - data-md-component="navigation" - > - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label - class="md-nav__title md-nav__title--site" - for="__drawer" - > - <a - href="/." - title="LLLE-Ecolyo Technical Docs" - class="md-nav__button md-logo" - > - <i class="md-icon">î Œ</i> - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - <a - href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" - title="Go to repository" - class="md-source" - data-md-source="" - > - <div class="md-source__repository"> - llle_docs - </div> - </a> - </div> + + - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item"> - <a href="/." title="Home" class="md-nav__link"> - Home - </a> - </li> - - <li class="md-nav__item md-nav__item--nested"> - <input - class="md-toggle md-nav__toggle" - data-md-toggle="nav-2" - type="checkbox" - id="nav-2" - /> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav - class="md-nav" - data-md-component="collapsible" - data-md-level="1" - > - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item"> - <a - href="/architecture/architecture-home/" - title="Introduction" - class="md-nav__link" - > - Introduction - </a> - </li> - - <li class="md-nav__item"> - <a - href="/architecture/client/client.md" - title="Client" - class="md-nav__link" - > - Client - </a> - </li> - - <li class="md-nav__item"> - <a - href="/architecture/cozy/cozy.md" - title="Cozy" - class="md-nav__link" - > - Cozy - </a> - </li> - - <li class="md-nav__item md-nav__item--nested"> - <input - class="md-toggle md-nav__toggle" - data-md-toggle="nav-2-4" - type="checkbox" - id="nav-2-4" - /> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav - class="md-nav" - data-md-component="collapsible" - data-md-level="2" - > - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item"> - <a - href="/architecture/konnectors/konnectors-intro/" - title="Introduction" - class="md-nav__link" - > - Introduction - </a> - </li> - - <li class="md-nav__item"> - <a - href="/architecture/konnectors/enedis/" - title="Enedis" - class="md-nav__link" - > - Enedis - </a> - </li> - - <li class="md-nav__item"> - <a - href="/architecture/konnectors/egl/" - title="EGL" - class="md-nav__link" - > - EGL - </a> - </li> - - <li class="md-nav__item"> - <a - href="/architecture/konnectors/gdrf.md" - title="GDRF - Celery" - class="md-nav__link" - > - GDRF - Celery - </a> - </li> - </ul> - </nav> - </li> - </ul> - </nav> - </li> - - <li class="md-nav__item md-nav__item--nested"> - <input - class="md-toggle md-nav__toggle" - data-md-toggle="nav-3" - type="checkbox" - id="nav-3" - /> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav - class="md-nav" - data-md-component="collapsible" - data-md-level="1" - > - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item"> - <a - href="/miscellaneous/gitflow/" - title="Gitflow" - class="md-nav__link" - > - Gitflow - </a> - </li> - - <li class="md-nav__item"> - <a - href="/miscellaneous/glossary/" - title="Glossary" - class="md-nav__link" - > - Glossary - </a> - </li> - - <li class="md-nav__item"> - <a - href="/miscellaneous/tools/" - title="Tools" - class="md-nav__link" - > - Tools - </a> - </li> - - <li class="md-nav__item"> - <a - href="/miscellaneous/devenv/" - title="Environment" - class="md-nav__link" - > - Environment - </a> - </li> - - <li class="md-nav__item"> - <a - href="/miscellaneous/vscode-settings/" - title="VSCode" - class="md-nav__link" - > - VSCode - </a> - </li> - </ul> - </nav> - </li> - </ul> - </nav> - </div> - </div> - </div> - <div class="md-content"> - <article class="md-content__inner md-typeset"> - <h1>404 - Not found</h1> + </article> </div> </div> </main> - - <footer class="md-footer"> - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener" - >MkDocs</a - > - and - <a - href="https://squidfunk.github.io/mkdocs-material/" - target="_blank" - rel="noopener" - > - Material for MkDocs</a - > - </div> - </div> - </div> - </footer> + + +<footer class="md-footer"> + + <div class="md-footer-meta md-typeset"> + <div class="md-footer-meta__inner md-grid"> + <div class="md-footer-copyright"> + + Made with + <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> + Material for MkDocs + </a> + </div> + </div> - - <script src="/assets/javascripts/application.c33a9706.js"></script> - - <script> - app.initialize({ version: "1.1", url: { base: "/" } }); - </script> + </div> +</footer> + + </div> + + <script src="/assets/javascripts/vendor.08c56446.min.js"></script> + <script src="/assets/javascripts/bundle.6ced434e.min.js"></script><script id="__lang" type="application/json">{"clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "search.config.lang": "en", "search.config.pipeline": "trimmer, stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing"}</script> + + <script> + app = initialize({ + base: "/", + features: [], + search: Object.assign({ + worker: "/assets/javascripts/worker/search.8c7e0a7e.min.js" + }, typeof search !== "undefined" && search) + }) + </script> + + </body> -</html> +</html> \ No newline at end of file diff --git a/site/architecture/architecture-home/index.html b/site/architecture/architecture-home/index.html deleted file mode 100644 index a3cd674dc7d738f490332dac101daf1e92bd959f..0000000000000000000000000000000000000000 --- a/site/architecture/architecture-home/index.html +++ /dev/null @@ -1,534 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Introduction - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Introduction - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2" checked> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - - - <li class="md-nav__item md-nav__item--active"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> - - - <a href="./" title="Introduction" class="md-nav__link md-nav__link--active"> - Introduction - </a> - - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4"> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3"> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Introduction</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - - <a href="../.." title="Home" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> - </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Previous - </span> - Home - </span> - </div> - </a> - - - <a href="../konnectors/konnectors-intro/" title="Introduction" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Next - </span> - Introduction - </span> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> - </div> - </a> - - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/architecture/client/index.html b/site/architecture/client/index.html deleted file mode 100644 index 92c312c8a3d95fd29087b62aa314c21ef698d00d..0000000000000000000000000000000000000000 --- a/site/architecture/client/index.html +++ /dev/null @@ -1,490 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Client - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Client - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2"> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4"> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3"> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Client</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/architecture/cozy/index.html b/site/architecture/cozy/index.html deleted file mode 100644 index 77f5ac00c173329e4926618ec8ad6e708376e6d8..0000000000000000000000000000000000000000 --- a/site/architecture/cozy/index.html +++ /dev/null @@ -1,490 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Cozy - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Cozy - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2"> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4"> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors/gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3"> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../miscellaneous/vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Cozy</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/architecture/konnectors/egl/index.html b/site/architecture/konnectors/egl/index.html deleted file mode 100644 index 933d2760c8bc0c209bc4386d17217e4da72f272b..0000000000000000000000000000000000000000 --- a/site/architecture/konnectors/egl/index.html +++ /dev/null @@ -1,536 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>EGL - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - EGL - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2" checked> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4" checked> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> - - - <a href="./" title="EGL" class="md-nav__link md-nav__link--active"> - EGL - </a> - - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3"> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>EGL</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - - <a href="../enedis/" title="Enedis" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> - </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Previous - </span> - Enedis - </span> - </div> - </a> - - - <a href="../../../miscellaneous/gitflow/" title="Gitflow" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Next - </span> - Gitflow - </span> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> - </div> - </a> - - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/architecture/konnectors/enedis/index.html b/site/architecture/konnectors/enedis/index.html deleted file mode 100644 index 4ffe6eec94a8604a413eb93c12c147c03c617230..0000000000000000000000000000000000000000 --- a/site/architecture/konnectors/enedis/index.html +++ /dev/null @@ -1,536 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Enedis - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Enedis - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2" checked> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4" checked> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> - - - <a href="./" title="Enedis" class="md-nav__link md-nav__link--active"> - Enedis - </a> - - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3"> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Enedis</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - - <a href="../konnectors-intro/" title="Introduction" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> - </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Previous - </span> - Introduction - </span> - </div> - </a> - - - <a href="../egl/" title="EGL" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Next - </span> - EGL - </span> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> - </div> - </a> - - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/architecture/konnectors/grdf/index.html b/site/architecture/konnectors/grdf/index.html deleted file mode 100644 index d395a809cd60e9b452c80a88c00ed010a932594e..0000000000000000000000000000000000000000 --- a/site/architecture/konnectors/grdf/index.html +++ /dev/null @@ -1,490 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Grdf - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Grdf - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2"> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4"> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3"> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Grdf</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/architecture/konnectors/konnectors-intro/index.html b/site/architecture/konnectors/konnectors-intro/index.html deleted file mode 100644 index 3301c42ff14a0cfdd9ec8ae5ad4c200964cd903e..0000000000000000000000000000000000000000 --- a/site/architecture/konnectors/konnectors-intro/index.html +++ /dev/null @@ -1,536 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Introduction - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Introduction - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2" checked> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4" checked> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - - - <li class="md-nav__item md-nav__item--active"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> - - - <a href="./" title="Introduction" class="md-nav__link md-nav__link--active"> - Introduction - </a> - - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3"> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../../miscellaneous/vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Introduction</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - - <a href="../../architecture-home/" title="Introduction" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> - </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Previous - </span> - Introduction - </span> - </div> - </a> - - - <a href="../enedis/" title="Enedis" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Next - </span> - Enedis - </span> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> - </div> - </a> - - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/assets/fonts/font-awesome.css b/site/assets/fonts/font-awesome.css deleted file mode 100644 index b476b53e33b5789396e2b48d44c8abc07a037db3..0000000000000000000000000000000000000000 --- a/site/assets/fonts/font-awesome.css +++ /dev/null @@ -1,4 +0,0 @@ -/*! - * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome - * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;font-style:normal;font-weight:400;src:url("specimen/FontAwesome.woff2") format("woff2"),url("specimen/FontAwesome.woff") format("woff"),url("specimen/FontAwesome.ttf") format("truetype")}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto} \ No newline at end of file diff --git a/site/assets/fonts/material-icons.css b/site/assets/fonts/material-icons.css deleted file mode 100644 index d23d365ed668bd6471ec31215d728da50a68f403..0000000000000000000000000000000000000000 --- a/site/assets/fonts/material-icons.css +++ /dev/null @@ -1,13 +0,0 @@ -/*! - * 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. - */@font-face{font-family:"Material Icons";font-style:normal;font-weight:400;src:local("Material Icons"),local("MaterialIcons-Regular"),url("specimen/MaterialIcons-Regular.woff2") format("woff2"),url("specimen/MaterialIcons-Regular.woff") format("woff"),url("specimen/MaterialIcons-Regular.ttf") format("truetype")} \ No newline at end of file diff --git a/site/assets/fonts/specimen/FontAwesome.ttf b/site/assets/fonts/specimen/FontAwesome.ttf deleted file mode 100644 index 35acda2fa1196aad98c2adf4378a7611dd713aa3..0000000000000000000000000000000000000000 Binary files a/site/assets/fonts/specimen/FontAwesome.ttf and /dev/null differ diff --git a/site/assets/fonts/specimen/FontAwesome.woff b/site/assets/fonts/specimen/FontAwesome.woff deleted file mode 100644 index 400014a4b06eee3d0c0d54402a47ab2601b2862b..0000000000000000000000000000000000000000 Binary files a/site/assets/fonts/specimen/FontAwesome.woff and /dev/null differ diff --git a/site/assets/fonts/specimen/FontAwesome.woff2 b/site/assets/fonts/specimen/FontAwesome.woff2 deleted file mode 100644 index 4d13fc60404b91e398a37200c4a77b645cfd9586..0000000000000000000000000000000000000000 Binary files a/site/assets/fonts/specimen/FontAwesome.woff2 and /dev/null differ diff --git a/site/assets/fonts/specimen/MaterialIcons-Regular.ttf b/site/assets/fonts/specimen/MaterialIcons-Regular.ttf deleted file mode 100644 index 7015564ad166a3e9d88c82f17829f0cc01ebe29a..0000000000000000000000000000000000000000 Binary files a/site/assets/fonts/specimen/MaterialIcons-Regular.ttf and /dev/null differ diff --git a/site/assets/fonts/specimen/MaterialIcons-Regular.woff b/site/assets/fonts/specimen/MaterialIcons-Regular.woff deleted file mode 100644 index b648a3eea2d16b6ce783906d6b7d5f251b9eb56c..0000000000000000000000000000000000000000 Binary files a/site/assets/fonts/specimen/MaterialIcons-Regular.woff and /dev/null differ diff --git a/site/assets/fonts/specimen/MaterialIcons-Regular.woff2 b/site/assets/fonts/specimen/MaterialIcons-Regular.woff2 deleted file mode 100644 index 9fa211252080046a23b2449dbdced6abc2b0bb34..0000000000000000000000000000000000000000 Binary files a/site/assets/fonts/specimen/MaterialIcons-Regular.woff2 and /dev/null differ diff --git a/site/assets/images/favicon.png b/site/assets/images/favicon.png index 76d17f57ad903c3ea2f1b564cafb95bf9af84ee3..1cf13b9f9d978896599290a74f77d5dbe7d1655c 100644 Binary files a/site/assets/images/favicon.png and b/site/assets/images/favicon.png differ diff --git a/site/assets/images/icons/bitbucket.1b09e088.svg b/site/assets/images/icons/bitbucket.1b09e088.svg deleted file mode 100644 index cf58c14fbc67be0626eb95a0a8fc68baa8c2ac03..0000000000000000000000000000000000000000 --- a/site/assets/images/icons/bitbucket.1b09e088.svg +++ /dev/null @@ -1 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="352" height="448" viewBox="0 0 352 448" id="__bitbucket"><path fill="currentColor" d="M203.75 214.75q2 15.75-12.625 25.25t-27.875 1.5q-9.75-4.25-13.375-14.5t-.125-20.5 13-14.5q9-4.5 18.125-3t16 8.875 6.875 16.875zm27.75-5.25q-3.5-26.75-28.25-41T154 165.25q-15.75 7-25.125 22.125t-8.625 32.375q1 22.75 19.375 38.75t41.375 14q22.75-2 38-21t12.5-42zM291.25 74q-5-6.75-14-11.125t-14.5-5.5T245 54.25q-72.75-11.75-141.5.5-10.75 1.75-16.5 3t-13.75 5.5T60.75 74q7.5 7 19 11.375t18.375 5.5T120 93.75Q177 101 232 94q15.75-2 22.375-3t18.125-5.375T291.25 74zm14.25 258.75q-2 6.5-3.875 19.125t-3.5 21-7.125 17.5-14.5 14.125q-21.5 12-47.375 17.875t-50.5 5.5-50.375-4.625q-11.5-2-20.375-4.5T88.75 412 70.5 401.125t-13-15.375q-6.25-24-14.25-73l1.5-4 4.5-2.25q55.75 37 126.625 37t126.875-37q5.25 1.5 6 5.75t-1.25 11.25-2 9.25zM350.75 92.5q-6.5 41.75-27.75 163.75-1.25 7.5-6.75 14t-10.875 10T291.75 288q-63 31.5-152.5 22-62-6.75-98.5-34.75-3.75-3-6.375-6.625t-4.25-8.75-2.25-8.5-1.5-9.875T25 232.75q-2.25-12.5-6.625-37.5t-7-40.375T5.5 118 0 78.5Q.75 72 4.375 66.375T12.25 57t11.25-7.5T35 43.875t12-4.625q31.25-11.5 78.25-16 94.75-9.25 169 12.5Q333 47.25 348 66.25q4 5 4.125 12.75t-1.375 13.5z"/></svg> \ No newline at end of file diff --git a/site/assets/images/icons/github.f0b8504a.svg b/site/assets/images/icons/github.f0b8504a.svg deleted file mode 100644 index 3d13b1975139abbb5a4bcc84e6bfff7cd57a4d51..0000000000000000000000000000000000000000 --- a/site/assets/images/icons/github.f0b8504a.svg +++ /dev/null @@ -1 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg> \ No newline at end of file diff --git a/site/assets/images/icons/gitlab.6dd19c00.svg b/site/assets/images/icons/gitlab.6dd19c00.svg deleted file mode 100644 index 1d9fffa74fbf58a10a208a481f16e53334db805f..0000000000000000000000000000000000000000 --- a/site/assets/images/icons/gitlab.6dd19c00.svg +++ /dev/null @@ -1 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="500" height="500" viewBox="0 0 500 500" id="__gitlab"><path fill="currentColor" d="M93.667 473.347l90.684-279.097H2.983l90.684 279.097z" transform="translate(156.198 1.16)"/><path fill="currentColor" d="M221.333 473.345L130.649 194.25H3.557l217.776 279.095z" transform="translate(28.531 1.16)" opacity=".7"/><path fill="currentColor" d="M32 195.155L4.441 279.97a18.773 18.773 0 0 0 6.821 20.99l238.514 173.29L32 195.155z" transform="translate(.089 .256)" opacity=".5"/><path fill="currentColor" d="M2.667-84.844h127.092L75.14-252.942c-2.811-8.649-15.047-8.649-17.856 0L2.667-84.844z" transform="translate(29.422 280.256)"/><path fill="currentColor" d="M2.667 473.345L93.351 194.25h127.092L2.667 473.345z" transform="translate(247.198 1.16)" opacity=".7"/><path fill="currentColor" d="M221.334 195.155l27.559 84.815a18.772 18.772 0 0 1-6.821 20.99L3.557 474.25l217.777-279.095z" transform="translate(246.307 .256)" opacity=".5"/><path fill="currentColor" d="M130.667-84.844H3.575l54.618-168.098c2.811-8.649 15.047-8.649 17.856 0l54.618 168.098z" transform="translate(336.974 280.256)"/></svg> \ No newline at end of file diff --git a/site/assets/javascripts/application.c33a9706.js b/site/assets/javascripts/application.c33a9706.js deleted file mode 100644 index 3da6d0cafa8ec200230679abc3e03a9f009b0eb7..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/application.c33a9706.js +++ /dev/null @@ -1,60 +0,0 @@ -!function(e,t){for(var n in t)e[n]=t[n]}(window,function(n){var r={};function i(e){if(r[e])return r[e].exports;var t=r[e]={i:e,l:!1,exports:{}};return n[e].call(t.exports,t,t.exports,i),t.l=!0,t.exports}return i.m=n,i.c=r,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)i.d(n,r,function(e){return t[e]}.bind(null,r));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=13)}([function(e,t,n){"use strict";var r={Listener:function(){function e(e,t,n){var r=this;this.els_=Array.prototype.slice.call("string"==typeof e?document.querySelectorAll(e):[].concat(e)),this.handler_="function"==typeof n?{update:n}:n,this.events_=[].concat(t),this.update_=function(e){return r.handler_.update(e)}}var t=e.prototype;return t.listen=function(){var n=this;this.els_.forEach(function(t){n.events_.forEach(function(e){t.addEventListener(e,n.update_,!1)})}),"function"==typeof this.handler_.setup&&this.handler_.setup()},t.unlisten=function(){var n=this;this.els_.forEach(function(t){n.events_.forEach(function(e){t.removeEventListener(e,n.update_)})}),"function"==typeof this.handler_.reset&&this.handler_.reset()},e}(),MatchMedia:function(e,t){this.handler_=function(e){e.matches?t.listen():t.unlisten()};var n=window.matchMedia(e);n.addListener(this.handler_),this.handler_(n)}},i={Shadow:function(){function e(e,t){var n="string"==typeof e?document.querySelector(e):e;if(!(n instanceof HTMLElement&&n.parentNode instanceof HTMLElement))throw new ReferenceError;if(this.el_=n.parentNode,!((n="string"==typeof t?document.querySelector(t):t)instanceof HTMLElement))throw new ReferenceError;this.header_=n,this.height_=0,this.active_=!1}var t=e.prototype;return t.setup=function(){for(var e=this.el_;e=e.previousElementSibling;){if(!(e instanceof HTMLElement))throw new ReferenceError;this.height_+=e.offsetHeight}this.update()},t.update=function(e){if(!e||"resize"!==e.type&&"orientationchange"!==e.type){var t=window.pageYOffset>=this.height_;t!==this.active_&&(this.header_.dataset.mdState=(this.active_=t)?"shadow":"")}else this.height_=0,this.setup()},t.reset=function(){this.header_.dataset.mdState="",this.height_=0,this.active_=!1},e}(),Title:function(){function e(e,t){var n="string"==typeof e?document.querySelector(e):e;if(!(n instanceof HTMLElement))throw new ReferenceError;if(this.el_=n,!((n="string"==typeof t?document.querySelector(t):t)instanceof HTMLHeadingElement))throw new ReferenceError;this.header_=n,this.active_=!1}var t=e.prototype;return t.setup=function(){var t=this;Array.prototype.forEach.call(this.el_.children,function(e){e.style.width=t.el_.offsetWidth-20+"px"})},t.update=function(e){var t=this,n=window.pageYOffset>=this.header_.offsetTop;n!==this.active_&&(this.el_.dataset.mdState=(this.active_=n)?"active":""),"resize"!==e.type&&"orientationchange"!==e.type||Array.prototype.forEach.call(this.el_.children,function(e){e.style.width=t.el_.offsetWidth-20+"px"})},t.reset=function(){this.el_.dataset.mdState="",this.el_.style.width="",this.active_=!1},e}()},o={Blur:function(){function e(e){this.els_="string"==typeof e?document.querySelectorAll(e):e,this.index_=0,this.offset_=window.pageYOffset,this.dir_=!1,this.anchors_=[].reduce.call(this.els_,function(e,t){var n=decodeURIComponent(t.hash);return e.concat(document.getElementById(n.substring(1))||[])},[])}var t=e.prototype;return t.setup=function(){this.update()},t.update=function(){var e=window.pageYOffset,t=this.offset_-e<0;if(this.dir_!==t&&(this.index_=this.index_=t?0:this.els_.length-1),0!==this.anchors_.length){if(this.offset_<=e)for(var n=this.index_+1;n<this.els_.length&&this.anchors_[n].offsetTop-80<=e;n++)0<n&&(this.els_[n-1].dataset.mdState="blur"),this.index_=n;else for(var r=this.index_;0<=r;r--){if(!(this.anchors_[r].offsetTop-80>e)){this.index_=r;break}0<r&&(this.els_[r-1].dataset.mdState="")}this.offset_=e,this.dir_=t}},t.reset=function(){Array.prototype.forEach.call(this.els_,function(e){e.dataset.mdState=""}),this.index_=0,this.offset_=window.pageYOffset},e}(),Collapse:function(){function e(e){var t="string"==typeof e?document.querySelector(e):e;if(!(t instanceof HTMLElement))throw new ReferenceError;this.el_=t}var t=e.prototype;return t.setup=function(){var e=this.el_.getBoundingClientRect().height;this.el_.style.display=e?"block":"none",this.el_.style.overflow=e?"visible":"hidden"},t.update=function(){var e=this,t=this.el_.getBoundingClientRect().height;this.el_.style.display="block",this.el_.style.overflow="";var r=this.el_.previousElementSibling.previousElementSibling.checked;if(r)this.el_.style.maxHeight=t+"px",requestAnimationFrame(function(){e.el_.setAttribute("data-md-state","animate"),e.el_.style.maxHeight="0px"});else{this.el_.setAttribute("data-md-state","expand"),this.el_.style.maxHeight="";var n=this.el_.getBoundingClientRect().height;this.el_.removeAttribute("data-md-state"),this.el_.style.maxHeight="0px",requestAnimationFrame(function(){e.el_.setAttribute("data-md-state","animate"),e.el_.style.maxHeight=n+"px"})}this.el_.addEventListener("transitionend",function e(t){var n=t.target;if(!(n instanceof HTMLElement))throw new ReferenceError;n.removeAttribute("data-md-state"),n.style.maxHeight="",n.style.display=r?"none":"block",n.style.overflow=r?"hidden":"visible",n.removeEventListener("transitionend",e)},!1)},t.reset=function(){this.el_.dataset.mdState="",this.el_.style.maxHeight="",this.el_.style.display="",this.el_.style.overflow=""},e}(),Scrolling:function(){function e(e){var t="string"==typeof e?document.querySelector(e):e;if(!(t instanceof HTMLElement))throw new ReferenceError;this.el_=t}var t=e.prototype;return t.setup=function(){this.el_.children[this.el_.children.length-1].style.webkitOverflowScrolling="touch";var e=this.el_.querySelectorAll("[data-md-toggle]");Array.prototype.forEach.call(e,function(e){if(!(e instanceof HTMLInputElement))throw new ReferenceError;if(e.checked){var t=e.nextElementSibling;if(!(t instanceof HTMLElement))throw new ReferenceError;for(;"NAV"!==t.tagName&&t.nextElementSibling;)t=t.nextElementSibling;if(!(e.parentNode instanceof HTMLElement&&e.parentNode.parentNode instanceof HTMLElement))throw new ReferenceError;var n=e.parentNode.parentNode,r=t.children[t.children.length-1];n.style.webkitOverflowScrolling="",r.style.webkitOverflowScrolling="touch"}})},t.update=function(e){var t=e.target;if(!(t instanceof HTMLElement))throw new ReferenceError;var n=t.nextElementSibling;if(!(n instanceof HTMLElement))throw new ReferenceError;for(;"NAV"!==n.tagName&&n.nextElementSibling;)n=n.nextElementSibling;if(!(t.parentNode instanceof HTMLElement&&t.parentNode.parentNode instanceof HTMLElement))throw new ReferenceError;var r=t.parentNode.parentNode,i=n.children[n.children.length-1];if(r.style.webkitOverflowScrolling="",i.style.webkitOverflowScrolling="",!t.checked){n.addEventListener("transitionend",function e(){n instanceof HTMLElement&&(r.style.webkitOverflowScrolling="touch",n.removeEventListener("transitionend",e))},!1)}if(t.checked){n.addEventListener("transitionend",function e(){n instanceof HTMLElement&&(i.style.webkitOverflowScrolling="touch",n.removeEventListener("transitionend",e))},!1)}},t.reset=function(){this.el_.children[1].style.webkitOverflowScrolling="";var e=this.el_.querySelectorAll("[data-md-toggle]");Array.prototype.forEach.call(e,function(e){if(!(e instanceof HTMLInputElement))throw new ReferenceError;if(e.checked){var t=e.nextElementSibling;if(!(t instanceof HTMLElement))throw new ReferenceError;for(;"NAV"!==t.tagName&&t.nextElementSibling;)t=t.nextElementSibling;if(!(e.parentNode instanceof HTMLElement&&e.parentNode.parentNode instanceof HTMLElement))throw new ReferenceError;var n=e.parentNode.parentNode,r=t.children[t.children.length-1];n.style.webkitOverflowScrolling="",r.style.webkitOverflowScrolling=""}})},e}()},a={Lock:function(){function e(e){var t="string"==typeof e?document.querySelector(e):e;if(!(t instanceof HTMLInputElement))throw new ReferenceError;if(this.el_=t,!document.body)throw new ReferenceError;this.lock_=document.body}var t=e.prototype;return t.setup=function(){this.update()},t.update=function(){var e=this;this.el_.checked?(this.offset_=window.pageYOffset,setTimeout(function(){window.scrollTo(0,0),e.el_.checked&&(e.lock_.dataset.mdState="lock")},400)):(this.lock_.dataset.mdState="",setTimeout(function(){void 0!==e.offset_&&window.scrollTo(0,e.offset_)},100))},t.reset=function(){"lock"===this.lock_.dataset.mdState&&window.scrollTo(0,this.offset_),this.lock_.dataset.mdState=""},e}(),Result:n(9).a},s={Position:function(){function e(e,t){var n="string"==typeof e?document.querySelector(e):e;if(!(n instanceof HTMLElement&&n.parentNode instanceof HTMLElement))throw new ReferenceError;if(this.el_=n,this.parent_=n.parentNode,!((n="string"==typeof t?document.querySelector(t):t)instanceof HTMLElement))throw new ReferenceError;this.header_=n,this.height_=0,this.pad_="fixed"===window.getComputedStyle(this.header_).position}var t=e.prototype;return t.setup=function(){var e=Array.prototype.reduce.call(this.parent_.children,function(e,t){return Math.max(e,t.offsetTop)},0);this.offset_=e-(this.pad_?this.header_.offsetHeight:0),this.update()},t.update=function(e){var t=window.pageYOffset,n=window.innerHeight;e&&"resize"===e.type&&this.setup();var r=this.pad_?this.header_.offsetHeight:0,i=this.parent_.offsetTop+this.parent_.offsetHeight,o=n-r-Math.max(0,this.offset_-t)-Math.max(0,t+n-i);o!==this.height_&&(this.el_.style.height=(this.height_=o)+"px"),t>=this.offset_?"lock"!==this.el_.dataset.mdState&&(this.el_.dataset.mdState="lock"):"lock"===this.el_.dataset.mdState&&(this.el_.dataset.mdState="")},t.reset=function(){this.el_.dataset.mdState="",this.el_.style.height="",this.height_=0},e}()},c=n(6),l=n.n(c);var u={Adapter:{GitHub:function(o){var e,t;function n(e){var t;t=o.call(this,e)||this;var n=/^.+github\.com\/([^/]+)\/?([^/]+)?.*$/.exec(t.base_);if(n&&3===n.length){var r=n[1],i=n[2];t.base_="https://api.github.com/users/"+r+"/repos",t.name_=i}return t}return t=o,(e=n).prototype=Object.create(t.prototype),(e.prototype.constructor=e).__proto__=t,n.prototype.fetch_=function(){var i=this;return function n(r){return void 0===r&&(r=0),fetch(i.base_+"?per_page=100&sort=updated&page="+r).then(function(e){return e.json()}).then(function(e){if(!(e instanceof Array))return[];if(i.name_){var t=e.find(function(e){return e.name===i.name_});return t||30!==e.length?t?[i.format_(t.stargazers_count)+" Stars",i.format_(t.forks_count)+" Forks"]:[]:n(r+1)}return[e.length+" Repositories"]})}()},n}(function(){function e(e){var t="string"==typeof e?document.querySelector(e):e;if(!(t instanceof HTMLAnchorElement))throw new ReferenceError;this.el_=t,this.base_=this.el_.href,this.salt_=this.hash_(this.base_)}var t=e.prototype;return t.fetch=function(){var n=this;return new Promise(function(t){var e=l.a.getJSON(n.salt_+".cache-source");void 0!==e?t(e):n.fetch_().then(function(e){l.a.set(n.salt_+".cache-source",e,{expires:1/96}),t(e)})})},t.fetch_=function(){throw new Error("fetch_(): Not implemented")},t.format_=function(e){return 1e4<e?(e/1e3).toFixed(0)+"k":1e3<e?(e/1e3).toFixed(1)+"k":""+e},t.hash_=function(e){var t=0;if(0===e.length)return t;for(var n=0,r=e.length;n<r;n++)t=(t<<5)-t+e.charCodeAt(n),t|=0;return t},e}())},Repository:n(10).a},f={Toggle:function(){function e(e){var t="string"==typeof e?document.querySelector(e):e;if(!(t instanceof Node))throw new ReferenceError;this.el_=t;var n=document.querySelector("[data-md-component=header]");this.height_=n.offsetHeight,this.active_=!1}var t=e.prototype;return t.update=function(){var e=window.pageYOffset>=this.el_.children[0].offsetTop+(5-this.height_);e!==this.active_&&(this.el_.dataset.mdState=(this.active_=e)?"hidden":"")},t.reset=function(){this.el_.dataset.mdState="",this.active_=!1},e}()};t.a={Event:r,Header:i,Nav:o,Search:a,Sidebar:s,Source:u,Tabs:f}},function(t,e,n){(function(e){t.exports=e.lunr=n(24)}).call(this,n(4))},function(e,d,h){"use strict";(function(t){var e=h(8),n=setTimeout;function c(e){return Boolean(e&&void 0!==e.length)}function r(){}function o(e){if(!(this instanceof o))throw new TypeError("Promises must be constructed via new");if("function"!=typeof e)throw new TypeError("not a function");this._state=0,this._handled=!1,this._value=void 0,this._deferreds=[],f(e,this)}function i(n,r){for(;3===n._state;)n=n._value;0!==n._state?(n._handled=!0,o._immediateFn(function(){var e=1===n._state?r.onFulfilled:r.onRejected;if(null!==e){var t;try{t=e(n._value)}catch(e){return void s(r.promise,e)}a(r.promise,t)}else(1===n._state?a:s)(r.promise,n._value)})):n._deferreds.push(r)}function a(t,e){try{if(e===t)throw new TypeError("A promise cannot be resolved with itself.");if(e&&("object"==typeof e||"function"==typeof e)){var n=e.then;if(e instanceof o)return t._state=3,t._value=e,void l(t);if("function"==typeof n)return void f((r=n,i=e,function(){r.apply(i,arguments)}),t)}t._state=1,t._value=e,l(t)}catch(e){s(t,e)}var r,i}function s(e,t){e._state=2,e._value=t,l(e)}function l(e){2===e._state&&0===e._deferreds.length&&o._immediateFn(function(){e._handled||o._unhandledRejectionFn(e._value)});for(var t=0,n=e._deferreds.length;t<n;t++)i(e,e._deferreds[t]);e._deferreds=null}function u(e,t,n){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof t?t:null,this.promise=n}function f(e,t){var n=!1;try{e(function(e){n||(n=!0,a(t,e))},function(e){n||(n=!0,s(t,e))})}catch(e){if(n)return;n=!0,s(t,e)}}o.prototype.catch=function(e){return this.then(null,e)},o.prototype.then=function(e,t){var n=new this.constructor(r);return i(this,new u(e,t,n)),n},o.prototype.finally=e.a,o.all=function(t){return new o(function(r,i){if(!c(t))return i(new TypeError("Promise.all accepts an array"));var o=Array.prototype.slice.call(t);if(0===o.length)return r([]);var a=o.length;function s(t,e){try{if(e&&("object"==typeof e||"function"==typeof e)){var n=e.then;if("function"==typeof n)return void n.call(e,function(e){s(t,e)},i)}o[t]=e,0==--a&&r(o)}catch(e){i(e)}}for(var e=0;e<o.length;e++)s(e,o[e])})},o.resolve=function(t){return t&&"object"==typeof t&&t.constructor===o?t:new o(function(e){e(t)})},o.reject=function(n){return new o(function(e,t){t(n)})},o.race=function(i){return new o(function(e,t){if(!c(i))return t(new TypeError("Promise.race accepts an array"));for(var n=0,r=i.length;n<r;n++)o.resolve(i[n]).then(e,t)})},o._immediateFn="function"==typeof t&&function(e){t(e)}||function(e){n(e,0)},o._unhandledRejectionFn=function(e){"undefined"!=typeof console&&console&&console.warn("Possible Unhandled Promise Rejection:",e)},d.a=o}).call(this,h(21).setImmediate)},function(e,t,n){"use strict";function r(e,t){var n=document.createElement(e);t&&Array.prototype.forEach.call(Object.keys(t),function(e){n.setAttribute(e,t[e])});for(var r=arguments.length,i=new Array(2<r?r-2:0),o=2;o<r;o++)i[o-2]=arguments[o];return function t(e){Array.prototype.forEach.call(e,function(e){"string"==typeof e||"number"==typeof e?n.textContent+=e:Array.isArray(e)?t(e):void 0!==e.__html?n.innerHTML+=e.__html:e instanceof Node&&n.appendChild(e)})}(i),n}n.r(t),n.d(t,"createElement",function(){return r})},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){ -/*! - * clipboard.js v2.0.4 - * https://zenorocha.github.io/clipboard.js - * - * Licensed MIT © Zeno Rocha - */ -var r;r=function(){return function(n){var r={};function i(e){if(r[e])return r[e].exports;var t=r[e]={i:e,l:!1,exports:{}};return n[e].call(t.exports,t,t.exports,i),t.l=!0,t.exports}return i.m=n,i.c=r,i.d=function(e,t,n){i.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},i.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i.t=function(t,e){if(1&e&&(t=i(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(i.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)i.d(n,r,function(e){return t[e]}.bind(null,r));return n},i.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return i.d(t,"a",t),t},i.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},i.p="",i(i.s=0)}([function(e,t,n){"use strict";var i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(){function r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),e}}(),a=r(n(1)),s=r(n(3)),c=r(n(4));function r(e){return e&&e.__esModule?e:{default:e}}var l=function(e){function r(e,t){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,r);var n=function(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}(this,(r.__proto__||Object.getPrototypeOf(r)).call(this));return n.resolveOptions(t),n.listenClick(e),n}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(r,s.default),o(r,[{key:"resolveOptions",value:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};this.action="function"==typeof e.action?e.action:this.defaultAction,this.target="function"==typeof e.target?e.target:this.defaultTarget,this.text="function"==typeof e.text?e.text:this.defaultText,this.container="object"===i(e.container)?e.container:document.body}},{key:"listenClick",value:function(e){var t=this;this.listener=(0,c.default)(e,"click",function(e){return t.onClick(e)})}},{key:"onClick",value:function(e){var t=e.delegateTarget||e.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new a.default({action:this.action(t),target:this.target(t),text:this.text(t),container:this.container,trigger:t,emitter:this})}},{key:"defaultAction",value:function(e){return u("action",e)}},{key:"defaultTarget",value:function(e){var t=u("target",e);if(t)return document.querySelector(t)}},{key:"defaultText",value:function(e){return u("text",e)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:["copy","cut"],t="string"==typeof e?[e]:e,n=!!document.queryCommandSupported;return t.forEach(function(e){n=n&&!!document.queryCommandSupported(e)}),n}}]),r}();function u(e,t){var n="data-clipboard-"+e;if(t.hasAttribute(n))return t.getAttribute(n)}e.exports=l},function(e,t,n){"use strict";var r,i="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},o=function(){function r(e,t){for(var n=0;n<t.length;n++){var r=t[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(e,r.key,r)}}return function(e,t,n){return t&&r(e.prototype,t),n&&r(e,n),e}}(),a=n(2),s=(r=a)&&r.__esModule?r:{default:r};var c=function(){function t(e){!function(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}(this,t),this.resolveOptions(e),this.initSelection()}return o(t,[{key:"resolveOptions",value:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};this.action=e.action,this.container=e.container,this.emitter=e.emitter,this.target=e.target,this.text=e.text,this.trigger=e.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"selectFake",value:function(){var e=this,t="rtl"==document.documentElement.getAttribute("dir");this.removeFake(),this.fakeHandlerCallback=function(){return e.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[t?"right":"left"]="-9999px";var n=window.pageYOffset||document.documentElement.scrollTop;this.fakeElem.style.top=n+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.container.appendChild(this.fakeElem),this.selectedText=(0,s.default)(this.fakeElem),this.copyText()}},{key:"removeFake",value:function(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function(){this.selectedText=(0,s.default)(this.target),this.copyText()}},{key:"copyText",value:function(){var t=void 0;try{t=document.execCommand(this.action)}catch(e){t=!1}this.handleResult(t)}},{key:"handleResult",value:function(e){this.emitter.emit(e?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function(){this.trigger&&this.trigger.focus(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function(){this.removeFake()}},{key:"action",set:function(){var e=0<arguments.length&&void 0!==arguments[0]?arguments[0]:"copy";if(this._action=e,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target",set:function(e){if(void 0!==e){if(!e||"object"!==(void 0===e?"undefined":i(e))||1!==e.nodeType)throw new Error('Invalid "target" value, use a valid Element');if("copy"===this.action&&e.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if("cut"===this.action&&(e.hasAttribute("readonly")||e.hasAttribute("disabled")))throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');this._target=e}},get:function(){return this._target}}]),t}();e.exports=c},function(e,t){e.exports=function(e){var t;if("SELECT"===e.nodeName)e.focus(),t=e.value;else if("INPUT"===e.nodeName||"TEXTAREA"===e.nodeName){var n=e.hasAttribute("readonly");n||e.setAttribute("readonly",""),e.select(),e.setSelectionRange(0,e.value.length),n||e.removeAttribute("readonly"),t=e.value}else{e.hasAttribute("contenteditable")&&e.focus();var r=window.getSelection(),i=document.createRange();i.selectNodeContents(e),r.removeAllRanges(),r.addRange(i),t=r.toString()}return t}},function(e,t){function n(){}n.prototype={on:function(e,t,n){var r=this.e||(this.e={});return(r[e]||(r[e]=[])).push({fn:t,ctx:n}),this},once:function(e,t,n){var r=this;function i(){r.off(e,i),t.apply(n,arguments)}return i._=t,this.on(e,i,n)},emit:function(e){for(var t=[].slice.call(arguments,1),n=((this.e||(this.e={}))[e]||[]).slice(),r=0,i=n.length;r<i;r++)n[r].fn.apply(n[r].ctx,t);return this},off:function(e,t){var n=this.e||(this.e={}),r=n[e],i=[];if(r&&t)for(var o=0,a=r.length;o<a;o++)r[o].fn!==t&&r[o].fn._!==t&&i.push(r[o]);return i.length?n[e]=i:delete n[e],this}},e.exports=n},function(e,t,n){var d=n(5),h=n(6);e.exports=function(e,t,n){if(!e&&!t&&!n)throw new Error("Missing required arguments");if(!d.string(t))throw new TypeError("Second argument must be a String");if(!d.fn(n))throw new TypeError("Third argument must be a Function");if(d.node(e))return u=t,f=n,(l=e).addEventListener(u,f),{destroy:function(){l.removeEventListener(u,f)}};if(d.nodeList(e))return a=e,s=t,c=n,Array.prototype.forEach.call(a,function(e){e.addEventListener(s,c)}),{destroy:function(){Array.prototype.forEach.call(a,function(e){e.removeEventListener(s,c)})}};if(d.string(e))return r=e,i=t,o=n,h(document.body,r,i,o);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList");var r,i,o,a,s,c,l,u,f}},function(e,n){n.node=function(e){return void 0!==e&&e instanceof HTMLElement&&1===e.nodeType},n.nodeList=function(e){var t=Object.prototype.toString.call(e);return void 0!==e&&("[object NodeList]"===t||"[object HTMLCollection]"===t)&&"length"in e&&(0===e.length||n.node(e[0]))},n.string=function(e){return"string"==typeof e||e instanceof String},n.fn=function(e){return"[object Function]"===Object.prototype.toString.call(e)}},function(e,t,n){var a=n(7);function o(e,t,n,r,i){var o=function(t,n,e,r){return function(e){e.delegateTarget=a(e.target,n),e.delegateTarget&&r.call(t,e)}}.apply(this,arguments);return e.addEventListener(n,o,i),{destroy:function(){e.removeEventListener(n,o,i)}}}e.exports=function(e,t,n,r,i){return"function"==typeof e.addEventListener?o.apply(null,arguments):"function"==typeof n?o.bind(null,document).apply(null,arguments):("string"==typeof e&&(e=document.querySelectorAll(e)),Array.prototype.map.call(e,function(e){return o(e,t,n,r,i)}))}},function(e,t){if("undefined"!=typeof Element&&!Element.prototype.matches){var n=Element.prototype;n.matches=n.matchesSelector||n.mozMatchesSelector||n.msMatchesSelector||n.oMatchesSelector||n.webkitMatchesSelector}e.exports=function(e,t){for(;e&&9!==e.nodeType;){if("function"==typeof e.matches&&e.matches(t))return e;e=e.parentNode}}}])},e.exports=r()},function(r,i,o){var a,s; -/*! - * JavaScript Cookie v2.2.1 - * https://github.com/js-cookie/js-cookie - * - * Copyright 2006, 2015 Klaus Hartl & Fagner Brack - * Released under the MIT license - */!function(e){if(void 0===(s="function"==typeof(a=e)?a.call(i,o,i,r):a)||(r.exports=s),!0,r.exports=e(),!!0){var t=window.Cookies,n=window.Cookies=e();n.noConflict=function(){return window.Cookies=t,n}}}(function(){function s(){for(var e=0,t={};e<arguments.length;e++){var n=arguments[e];for(var r in n)t[r]=n[r]}return t}function l(e){return e.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}return function e(c){function a(){}function n(e,t,n){if("undefined"!=typeof document){"number"==typeof(n=s({path:"/"},a.defaults,n)).expires&&(n.expires=new Date(1*new Date+864e5*n.expires)),n.expires=n.expires?n.expires.toUTCString():"";try{var r=JSON.stringify(t);/^[\{\[]/.test(r)&&(t=r)}catch(e){}t=c.write?c.write(t,e):encodeURIComponent(String(t)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),e=encodeURIComponent(String(e)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var i="";for(var o in n)n[o]&&(i+="; "+o,!0!==n[o]&&(i+="="+n[o].split(";")[0]));return document.cookie=e+"="+t+i}}function t(e,t){if("undefined"!=typeof document){for(var n={},r=document.cookie?document.cookie.split("; "):[],i=0;i<r.length;i++){var o=r[i].split("="),a=o.slice(1).join("=");t||'"'!==a.charAt(0)||(a=a.slice(1,-1));try{var s=l(o[0]);if(a=(c.read||c)(a,s)||l(a),t)try{a=JSON.parse(a)}catch(e){}if(n[s]=a,e===s)break}catch(e){}}return e?n[e]:n}}return a.set=n,a.get=function(e){return t(e,!1)},a.getJSON=function(e){return t(e,!0)},a.remove=function(e,t){n(e,"",s(t,{expires:-1}))},a.defaults={},a.withConverter=e,a}(function(){})})},function(e,t,n){"use strict";n.r(t);var r="function"==typeof fetch?fetch.bind():function(i,o){return o=o||{},new Promise(function(e,t){var n=new XMLHttpRequest;for(var r in n.open(o.method||"get",i,!0),o.headers)n.setRequestHeader(r,o.headers[r]);function s(){var r,i=[],o=[],a={};return n.getAllResponseHeaders().replace(/^(.*?):[^\S\n]*([\s\S]*?)$/gm,function(e,t,n){i.push(t=t.toLowerCase()),o.push([t,n]),r=a[t],a[t]=r?r+","+n:n}),{ok:2==(n.status/100|0),status:n.status,statusText:n.statusText,url:n.responseURL,clone:s,text:function(){return Promise.resolve(n.responseText)},json:function(){return Promise.resolve(n.responseText).then(JSON.parse)},blob:function(){return Promise.resolve(new Blob([n.response]))},headers:{keys:function(){return i},entries:function(){return o},get:function(e){return a[e.toLowerCase()]},has:function(e){return e.toLowerCase()in a}}}}n.withCredentials="include"==o.credentials,n.onload=function(){e(s())},n.onerror=t,n.send(o.body||null)})};t.default=r},function(e,t,n){"use strict";t.a=function(t){var n=this.constructor;return this.then(function(e){return n.resolve(t()).then(function(){return e})},function(e){return n.resolve(t()).then(function(){return n.reject(e)})})}},function(e,n,r){"use strict";(function(f){r.d(n,"a",function(){return t});var e=r(1),d=r.n(e),h=function(e){var t=document.getElementsByName("lang:"+e)[0];if(!(t instanceof HTMLMetaElement))throw new ReferenceError;return t.content},t=function(){function e(e,t){var n="string"==typeof e?document.querySelector(e):e;if(!(n instanceof HTMLElement))throw new ReferenceError;this.el_=n;var r=Array.prototype.slice.call(this.el_.children),i=r[0],o=r[1];this.data_=t,this.meta_=i,this.list_=o,this.message_={placeholder:this.meta_.textContent,none:h("search.result.none"),one:h("search.result.one"),other:h("search.result.other")};var a=h("search.tokenizer");a.length&&(d.a.tokenizer.separator=a),this.lang_=h("search.language").split(",").filter(Boolean).map(function(e){return e.trim()})}return e.prototype.update=function(e){var t,a=this;if("focus"!==e.type||this.index_){if("focus"===e.type||"keyup"===e.type){var n=e.target;if(!(n instanceof HTMLInputElement))throw new ReferenceError;if(!this.index_||n.value===this.value_)return;for(;this.list_.firstChild;)this.list_.removeChild(this.list_.firstChild);if(this.value_=n.value,0===this.value_.length)return void(this.meta_.textContent=this.message_.placeholder);var r=this.index_.query(function(t){a.value_.toLowerCase().split(" ").filter(Boolean).forEach(function(e){t.term(e,{wildcard:d.a.Query.wildcard.TRAILING})})}).reduce(function(e,t){var n=a.docs_.get(t.ref);if(n.parent){var r=n.parent.location;e.set(r,(e.get(r)||[]).concat(t))}else{var i=n.location;e.set(i,e.get(i)||[])}return e},new Map),i=(t=this.value_.trim(),t.replace(/[|\\{}()[\]^$+*?.-]/g,"\\$&")).replace(new RegExp(d.a.tokenizer.separator,"img"),"|"),s=new RegExp("(^|"+d.a.tokenizer.separator+")("+i+")","img"),c=function(e,t,n){return t+"<em>"+n+"</em>"};this.stack_=[],r.forEach(function(e,t){var n,r=a.docs_.get(t),i=f.createElement("li",{class:"md-search-result__item"},f.createElement("a",{href:r.location,title:r.title,class:"md-search-result__link",tabindex:"-1"},f.createElement("article",{class:"md-search-result__article md-search-result__article--document"},f.createElement("h1",{class:"md-search-result__title"},{__html:r.title.replace(s,c)}),r.text.length?f.createElement("p",{class:"md-search-result__teaser"},{__html:r.text.replace(s,c)}):{}))),o=e.map(function(t){return function(){var e=a.docs_.get(t.ref);i.appendChild(f.createElement("a",{href:e.location,title:e.title,class:"md-search-result__link","data-md-rel":"anchor",tabindex:"-1"},f.createElement("article",{class:"md-search-result__article"},f.createElement("h1",{class:"md-search-result__title"},{__html:e.title.replace(s,c)}),e.text.length?f.createElement("p",{class:"md-search-result__teaser"},{__html:function(e,t){var n=t;if(e.length>n){for(;" "!==e[n]&&0<--n;);return e.substring(0,n)+"..."}return e}(e.text.replace(s,c),400)}):{})))}});(n=a.stack_).push.apply(n,[function(){return a.list_.appendChild(i)}].concat(o))});var o=this.el_.parentNode;if(!(o instanceof HTMLElement))throw new ReferenceError;for(;this.stack_.length&&o.offsetHeight>=o.scrollHeight-16;)this.stack_.shift()();var l=this.list_.querySelectorAll("[data-md-rel=anchor]");switch(Array.prototype.forEach.call(l,function(r){["click","keydown"].forEach(function(n){r.addEventListener(n,function(e){if("keydown"!==n||13===e.keyCode){var t=document.querySelector("[data-md-toggle=search]");if(!(t instanceof HTMLInputElement))throw new ReferenceError;t.checked&&(t.checked=!1,t.dispatchEvent(new CustomEvent("change"))),e.preventDefault(),setTimeout(function(){document.location.href=r.href},100)}})})}),r.size){case 0:this.meta_.textContent=this.message_.none;break;case 1:this.meta_.textContent=this.message_.one;break;default:this.meta_.textContent=this.message_.other.replace("#",r.size)}}}else{var u=function(e){a.docs_=e.reduce(function(e,t){var n,r,i,o=t.location.split("#"),a=o[0],s=o[1];return t.text=(n=t.text,r=document.createTextNode(n),(i=document.createElement("p")).appendChild(r),i.innerHTML),s&&(t.parent=e.get(a),t.parent&&!t.parent.done&&(t.parent.title=t.title,t.parent.text=t.text,t.parent.done=!0)),t.text=t.text.replace(/\n/g," ").replace(/\s+/g," ").replace(/\s+([,.:;!?])/g,function(e,t){return t}),t.parent&&t.parent.title===t.title||e.set(t.location,t),e},new Map);var i=a.docs_,o=a.lang_;a.stack_=[],a.index_=d()(function(){var e,t=this,n={"search.pipeline.trimmer":d.a.trimmer,"search.pipeline.stopwords":d.a.stopWordFilter},r=Object.keys(n).reduce(function(e,t){return h(t).match(/^false$/i)||e.push(n[t]),e},[]);this.pipeline.reset(),r&&(e=this.pipeline).add.apply(e,r),1===o.length&&"en"!==o[0]&&d.a[o[0]]?this.use(d.a[o[0]]):1<o.length&&this.use(d.a.multiLanguage.apply(d.a,o)),this.field("title",{boost:10}),this.field("text"),this.ref("location"),i.forEach(function(e){return t.add(e)})});var t=a.el_.parentNode;if(!(t instanceof HTMLElement))throw new ReferenceError;t.addEventListener("scroll",function(){for(;a.stack_.length&&t.scrollTop+t.offsetHeight>=t.scrollHeight-16;)a.stack_.splice(0,10).forEach(function(e){return e()})})};setTimeout(function(){return"function"==typeof a.data_?a.data_().then(u):u(a.data_)},250)}},e}()}).call(this,r(3))},function(e,n,r){"use strict";(function(t){r.d(n,"a",function(){return e});var e=function(){function e(e){var t="string"==typeof e?document.querySelector(e):e;if(!(t instanceof HTMLElement))throw new ReferenceError;this.el_=t}return e.prototype.initialize=function(e){e.length&&this.el_.children.length&&this.el_.children[this.el_.children.length-1].appendChild(t.createElement("ul",{class:"md-source__facts"},e.map(function(e){return t.createElement("li",{class:"md-source__fact"},e)}))),this.el_.dataset.mdState="done"},e}()}).call(this,r(3))},,,function(e,n,c){"use strict";c.r(n),function(o){c.d(n,"app",function(){return t});c(14),c(15),c(16),c(17),c(18),c(19),c(20);var r=c(2),e=c(5),a=c.n(e),i=c(0);window.Promise=window.Promise||r.a;var s=function(e){var t=document.getElementsByName("lang:"+e)[0];if(!(t instanceof HTMLMetaElement))throw new ReferenceError;return t.content};var t={initialize:function(t){new i.a.Event.Listener(document,"DOMContentLoaded",function(){if(!(document.body instanceof HTMLElement))throw new ReferenceError;Modernizr.addTest("ios",function(){return!!navigator.userAgent.match(/(iPad|iPhone|iPod)/g)});var e=document.querySelectorAll("table:not([class])");if(Array.prototype.forEach.call(e,function(e){var t=o.createElement("div",{class:"md-typeset__scrollwrap"},o.createElement("div",{class:"md-typeset__table"}));e.nextSibling?e.parentNode.insertBefore(t,e.nextSibling):e.parentNode.appendChild(t),t.children[0].appendChild(e)}),a.a.isSupported()){var t=document.querySelectorAll("pre > code");Array.prototype.forEach.call(t,function(e,t){var n="__code_"+t,r=o.createElement("button",{class:"md-clipboard",title:s("clipboard.copy"),"data-clipboard-target":"#"+n+" pre, #"+n+" code"},o.createElement("span",{class:"md-clipboard__message"})),i=e.parentNode;i.id=n,i.insertBefore(r,e)}),new a.a(".md-clipboard").on("success",function(e){var t=e.trigger.querySelector(".md-clipboard__message");if(!(t instanceof HTMLElement))throw new ReferenceError;e.clearSelection(),t.dataset.mdTimer&&clearTimeout(parseInt(t.dataset.mdTimer,10)),t.classList.add("md-clipboard__message--active"),t.innerHTML=s("clipboard.copied"),t.dataset.mdTimer=setTimeout(function(){t.classList.remove("md-clipboard__message--active"),t.dataset.mdTimer=""},2e3).toString()})}if(!Modernizr.details){var n=document.querySelectorAll("details > summary");Array.prototype.forEach.call(n,function(e){e.addEventListener("click",function(e){var t=e.target.parentNode;t.hasAttribute("open")?t.removeAttribute("open"):t.setAttribute("open","")})})}var r=function(){if(document.location.hash){var e=document.getElementById(document.location.hash.substring(1));if(!e)return;for(var t=e.parentNode;t&&!(t instanceof HTMLDetailsElement);)t=t.parentNode;if(t&&!t.open){t.open=!0;var n=location.hash;location.hash=" ",location.hash=n}}};if(window.addEventListener("hashchange",r),r(),Modernizr.ios){var i=document.querySelectorAll("[data-md-scrollfix]");Array.prototype.forEach.call(i,function(t){t.addEventListener("touchstart",function(){var e=t.scrollTop;0===e?t.scrollTop=1:e+t.offsetHeight===t.scrollHeight&&(t.scrollTop=e-1)})})}}).listen(),new i.a.Event.Listener(window,["scroll","resize","orientationchange"],new i.a.Header.Shadow("[data-md-component=container]","[data-md-component=header]")).listen(),new i.a.Event.Listener(window,["scroll","resize","orientationchange"],new i.a.Header.Title("[data-md-component=title]",".md-typeset h1")).listen(),document.querySelector("[data-md-component=hero]")&&new i.a.Event.Listener(window,["scroll","resize","orientationchange"],new i.a.Tabs.Toggle("[data-md-component=hero]")).listen(),document.querySelector("[data-md-component=tabs]")&&new i.a.Event.Listener(window,["scroll","resize","orientationchange"],new i.a.Tabs.Toggle("[data-md-component=tabs]")).listen(),new i.a.Event.MatchMedia("(min-width: 1220px)",new i.a.Event.Listener(window,["scroll","resize","orientationchange"],new i.a.Sidebar.Position("[data-md-component=navigation]","[data-md-component=header]"))),document.querySelector("[data-md-component=toc]")&&new i.a.Event.MatchMedia("(min-width: 960px)",new i.a.Event.Listener(window,["scroll","resize","orientationchange"],new i.a.Sidebar.Position("[data-md-component=toc]","[data-md-component=header]"))),new i.a.Event.MatchMedia("(min-width: 960px)",new i.a.Event.Listener(window,"scroll",new i.a.Nav.Blur("[data-md-component=toc] .md-nav__link")));var e=document.querySelectorAll("[data-md-component=collapsible]");Array.prototype.forEach.call(e,function(e){new i.a.Event.MatchMedia("(min-width: 1220px)",new i.a.Event.Listener(e.previousElementSibling,"click",new i.a.Nav.Collapse(e)))}),new i.a.Event.MatchMedia("(max-width: 1219px)",new i.a.Event.Listener("[data-md-component=navigation] [data-md-toggle]","change",new i.a.Nav.Scrolling("[data-md-component=navigation] nav"))),document.querySelector("[data-md-component=search]")&&(new i.a.Event.MatchMedia("(max-width: 959px)",new i.a.Event.Listener("[data-md-toggle=search]","change",new i.a.Search.Lock("[data-md-toggle=search]"))),new i.a.Event.Listener("[data-md-component=query]",["focus","keyup","change"],new i.a.Search.Result("[data-md-component=result]",function(){return fetch(t.url.base+"/search/search_index.json",{credentials:"same-origin"}).then(function(e){return e.json()}).then(function(e){return e.docs.map(function(e){return e.location=t.url.base+"/"+e.location,e})})})).listen(),new i.a.Event.Listener("[data-md-component=reset]","click",function(){setTimeout(function(){var e=document.querySelector("[data-md-component=query]");if(!(e instanceof HTMLInputElement))throw new ReferenceError;e.focus()},10)}).listen(),new i.a.Event.Listener("[data-md-toggle=search]","change",function(e){setTimeout(function(e){if(!(e instanceof HTMLInputElement))throw new ReferenceError;if(e.checked){var t=document.querySelector("[data-md-component=query]");if(!(t instanceof HTMLInputElement))throw new ReferenceError;t.focus()}},400,e.target)}).listen(),new i.a.Event.Listener("[data-md-component=query]","focus",function(){var e=document.querySelector("[data-md-toggle=search]");if(!(e instanceof HTMLInputElement))throw new ReferenceError;e.checked||(e.checked=!0,e.dispatchEvent(new CustomEvent("change")))}).listen(),new i.a.Event.Listener(window,"keydown",function(e){var t=document.querySelector("[data-md-toggle=search]");if(!(t instanceof HTMLInputElement))throw new ReferenceError;var n=document.querySelector("[data-md-component=query]");if(!(n instanceof HTMLInputElement))throw new ReferenceError;if(!(document.activeElement instanceof HTMLElement&&document.activeElement.isContentEditable||e.metaKey||e.ctrlKey))if(t.checked){if(13===e.keyCode){if(n===document.activeElement){e.preventDefault();var r=document.querySelector("[data-md-component=search] [href][data-md-state=active]");r instanceof HTMLLinkElement&&(window.location=r.getAttribute("href"),t.checked=!1,t.dispatchEvent(new CustomEvent("change")),n.blur())}}else if(9===e.keyCode||27===e.keyCode)t.checked=!1,t.dispatchEvent(new CustomEvent("change")),n.blur();else if(-1!==[8,37,39].indexOf(e.keyCode))n!==document.activeElement&&n.focus();else if(-1!==[38,40].indexOf(e.keyCode)){var i=e.keyCode,o=Array.prototype.slice.call(document.querySelectorAll("[data-md-component=query], [data-md-component=search] [href]")),a=o.find(function(e){if(!(e instanceof HTMLElement))throw new ReferenceError;return"active"===e.dataset.mdState});a&&(a.dataset.mdState="");var s=Math.max(0,(o.indexOf(a)+o.length+(38===i?-1:1))%o.length);return o[s]&&(o[s].dataset.mdState="active",o[s].focus()),e.preventDefault(),e.stopPropagation(),!1}}else if(document.activeElement&&!document.activeElement.form){if("TEXTAREA"===document.activeElement.tagName||"INPUT"===document.activeElement.tagName)return;70!==e.keyCode&&83!==e.keyCode||(n.focus(),e.preventDefault())}}).listen(),new i.a.Event.Listener(window,"keypress",function(){var e=document.querySelector("[data-md-toggle=search]");if(!(e instanceof HTMLInputElement))throw new ReferenceError;if(e.checked){var t=document.querySelector("[data-md-component=query]");if(!(t instanceof HTMLInputElement))throw new ReferenceError;t!==document.activeElement&&t.focus()}}).listen()),new i.a.Event.Listener(document.body,"keydown",function(e){if(9===e.keyCode){var t=document.querySelectorAll("[data-md-component=navigation] .md-nav__link[for]:not([tabindex])");Array.prototype.forEach.call(t,function(e){e.offsetHeight&&(e.tabIndex=0)})}}).listen(),new i.a.Event.Listener(document.body,"mousedown",function(){var e=document.querySelectorAll("[data-md-component=navigation] .md-nav__link[tabindex]");Array.prototype.forEach.call(e,function(e){e.removeAttribute("tabIndex")})}).listen(),document.body.addEventListener("click",function(){"tabbing"===document.body.dataset.mdState&&(document.body.dataset.mdState="")}),new i.a.Event.MatchMedia("(max-width: 959px)",new i.a.Event.Listener("[data-md-component=navigation] [href^='#']","click",function(){var e=document.querySelector("[data-md-toggle=drawer]");if(!(e instanceof HTMLInputElement))throw new ReferenceError;e.checked&&(e.checked=!1,e.dispatchEvent(new CustomEvent("change")))})),function(){var e=document.querySelector("[data-md-source]");if(!e)return r.a.resolve([]);if(!(e instanceof HTMLAnchorElement))throw new ReferenceError;switch(e.dataset.mdSource){case"github":return new i.a.Source.Adapter.GitHub(e).fetch();default:return r.a.resolve([])}}().then(function(t){var e=document.querySelectorAll("[data-md-source]");Array.prototype.forEach.call(e,function(e){new i.a.Source.Repository(e).initialize(t)})});var n=function(){var e=document.querySelectorAll("details");Array.prototype.forEach.call(e,function(e){e.setAttribute("open","")})};new i.a.Event.MatchMedia("print",{listen:n,unlisten:function(){}}),window.onbeforeprint=n}}}.call(this,c(3))},function(e,t,n){"use strict";n.p},function(e,t,n){"use strict";n.p},function(e,t,n){"use strict";n.p},function(e,t,n){"use strict"},function(e,t,n){"use strict"},function(e,t){!function(){if("undefined"!=typeof window)try{var e=new window.CustomEvent("test",{cancelable:!0});if(e.preventDefault(),!0!==e.defaultPrevented)throw new Error("Could not prevent default")}catch(e){var t=function(e,t){var n,r;return(t=t||{}).bubbles=!!t.bubbles,t.cancelable=!!t.cancelable,(n=document.createEvent("CustomEvent")).initCustomEvent(e,t.bubbles,t.cancelable,t.detail),r=n.preventDefault,n.preventDefault=function(){r.call(this);try{Object.defineProperty(this,"defaultPrevented",{get:function(){return!0}})}catch(e){this.defaultPrevented=!0}},n};t.prototype=window.Event.prototype,window.CustomEvent=t}}()},function(e,t,n){window.fetch||(window.fetch=n(7).default||n(7))},function(e,i,o){(function(e){var t=void 0!==e&&e||"undefined"!=typeof self&&self||window,n=Function.prototype.apply;function r(e,t){this._id=e,this._clearFn=t}i.setTimeout=function(){return new r(n.call(setTimeout,t,arguments),clearTimeout)},i.setInterval=function(){return new r(n.call(setInterval,t,arguments),clearInterval)},i.clearTimeout=i.clearInterval=function(e){e&&e.close()},r.prototype.unref=r.prototype.ref=function(){},r.prototype.close=function(){this._clearFn.call(t,this._id)},i.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},i.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},i._unrefActive=i.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;0<=t&&(e._idleTimeoutId=setTimeout(function(){e._onTimeout&&e._onTimeout()},t))},o(22),i.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,i.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}).call(this,o(4))},function(e,t,n){(function(e,p){!function(n,r){"use strict";if(!n.setImmediate){var i,o,t,a,e,s=1,c={},l=!1,u=n.document,f=Object.getPrototypeOf&&Object.getPrototypeOf(n);f=f&&f.setTimeout?f:n,i="[object process]"==={}.toString.call(n.process)?function(e){p.nextTick(function(){h(e)})}:function(){if(n.postMessage&&!n.importScripts){var e=!0,t=n.onmessage;return n.onmessage=function(){e=!1},n.postMessage("","*"),n.onmessage=t,e}}()?(a="setImmediate$"+Math.random()+"$",e=function(e){e.source===n&&"string"==typeof e.data&&0===e.data.indexOf(a)&&h(+e.data.slice(a.length))},n.addEventListener?n.addEventListener("message",e,!1):n.attachEvent("onmessage",e),function(e){n.postMessage(a+e,"*")}):n.MessageChannel?((t=new MessageChannel).port1.onmessage=function(e){h(e.data)},function(e){t.port2.postMessage(e)}):u&&"onreadystatechange"in u.createElement("script")?(o=u.documentElement,function(e){var t=u.createElement("script");t.onreadystatechange=function(){h(e),t.onreadystatechange=null,o.removeChild(t),t=null},o.appendChild(t)}):function(e){setTimeout(h,0,e)},f.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),n=0;n<t.length;n++)t[n]=arguments[n+1];var r={callback:e,args:t};return c[s]=r,i(s),s++},f.clearImmediate=d}function d(e){delete c[e]}function h(e){if(l)setTimeout(h,0,e);else{var t=c[e];if(t){l=!0;try{!function(e){var t=e.callback,n=e.args;switch(n.length){case 0:t();break;case 1:t(n[0]);break;case 2:t(n[0],n[1]);break;case 3:t(n[0],n[1],n[2]);break;default:t.apply(r,n)}}(t)}finally{d(e),l=!1}}}}}("undefined"==typeof self?void 0===e?this:e:self)}).call(this,n(4),n(23))},function(e,t){var n,r,i=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(e){n=o}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var c,l=[],u=!1,f=-1;function d(){u&&c&&(u=!1,c.length?l=c.concat(l):f=-1,l.length&&h())}function h(){if(!u){var e=s(d);u=!0;for(var t=l.length;t;){for(c=l,l=[];++f<t;)c&&c[f].run();f=-1,t=l.length}c=null,u=!1,function(t){if(r===clearTimeout)return clearTimeout(t);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(t);try{r(t)}catch(e){try{return r.call(null,t)}catch(e){return r.call(this,t)}}}(e)}}function p(e,t){this.fun=e,this.array=t}function m(){}i.nextTick=function(e){var t=new Array(arguments.length-1);if(1<arguments.length)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];l.push(new p(e,t)),1!==l.length||u||s(h)},p.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=m,i.addListener=m,i.once=m,i.off=m,i.removeListener=m,i.removeAllListeners=m,i.emit=m,i.prependListener=m,i.prependOnceListener=m,i.listeners=function(e){return[]},i.binding=function(e){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(e){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},function(i,o,a){var s,c;!function(){var t,l,u,e,n,f,d,h,p,m,y,v,g,w,_,E,x,b,k,S,T,L,R,O,C,r,D=function(e){var t=new D.Builder;return t.pipeline.add(D.trimmer,D.stopWordFilter,D.stemmer),t.searchPipeline.add(D.stemmer),e.call(t,t),t.build()};D.version="2.3.8" -/*! - * lunr.utils - * Copyright (C) 2019 Oliver Nightingale - */,D.utils={},D.utils.warn=(t=this,function(e){t.console&&console.warn&&console.warn(e)}),D.utils.asString=function(e){return null==e?"":e.toString()},D.utils.clone=function(e){if(null==e)return e;for(var t=Object.create(null),n=Object.keys(e),r=0;r<n.length;r++){var i=n[r],o=e[i];if(Array.isArray(o))t[i]=o.slice();else{if("string"!=typeof o&&"number"!=typeof o&&"boolean"!=typeof o)throw new TypeError("clone is not deep and does not support nested objects");t[i]=o}}return t},D.FieldRef=function(e,t,n){this.docRef=e,this.fieldName=t,this._stringValue=n},D.FieldRef.joiner="/",D.FieldRef.fromString=function(e){var t=e.indexOf(D.FieldRef.joiner);if(-1===t)throw"malformed field ref string";var n=e.slice(0,t),r=e.slice(t+1);return new D.FieldRef(r,n,e)},D.FieldRef.prototype.toString=function(){return null==this._stringValue&&(this._stringValue=this.fieldName+D.FieldRef.joiner+this.docRef),this._stringValue} -/*! - * lunr.Set - * Copyright (C) 2019 Oliver Nightingale - */,D.Set=function(e){if(this.elements=Object.create(null),e){this.length=e.length;for(var t=0;t<this.length;t++)this.elements[e[t]]=!0}else this.length=0},D.Set.complete={intersect:function(e){return e},union:function(e){return e},contains:function(){return!0}},D.Set.empty={intersect:function(){return this},union:function(e){return e},contains:function(){return!1}},D.Set.prototype.contains=function(e){return!!this.elements[e]},D.Set.prototype.intersect=function(e){var t,n,r,i=[];if(e===D.Set.complete)return this;if(e===D.Set.empty)return e;n=this.length<e.length?(t=this,e):(t=e,this),r=Object.keys(t.elements);for(var o=0;o<r.length;o++){var a=r[o];a in n.elements&&i.push(a)}return new D.Set(i)},D.Set.prototype.union=function(e){return e===D.Set.complete?D.Set.complete:e===D.Set.empty?this:new D.Set(Object.keys(this.elements).concat(Object.keys(e.elements)))},D.idf=function(e,t){var n=0;for(var r in e)"_index"!=r&&(n+=Object.keys(e[r]).length);var i=(t-n+.5)/(n+.5);return Math.log(1+Math.abs(i))},D.Token=function(e,t){this.str=e||"",this.metadata=t||{}},D.Token.prototype.toString=function(){return this.str},D.Token.prototype.update=function(e){return this.str=e(this.str,this.metadata),this},D.Token.prototype.clone=function(e){return e=e||function(e){return e},new D.Token(e(this.str,this.metadata),this.metadata)} -/*! - * lunr.tokenizer - * Copyright (C) 2019 Oliver Nightingale - */,D.tokenizer=function(e,t){if(null==e||null==e)return[];if(Array.isArray(e))return e.map(function(e){return new D.Token(D.utils.asString(e).toLowerCase(),D.utils.clone(t))});for(var n=e.toString().toLowerCase(),r=n.length,i=[],o=0,a=0;o<=r;o++){var s=o-a;if(n.charAt(o).match(D.tokenizer.separator)||o==r){if(0<s){var c=D.utils.clone(t)||{};c.position=[a,s],c.index=i.length,i.push(new D.Token(n.slice(a,o),c))}a=o+1}}return i},D.tokenizer.separator=/[\s\-]+/ -/*! - * lunr.Pipeline - * Copyright (C) 2019 Oliver Nightingale - */,D.Pipeline=function(){this._stack=[]},D.Pipeline.registeredFunctions=Object.create(null),D.Pipeline.registerFunction=function(e,t){t in this.registeredFunctions&&D.utils.warn("Overwriting existing registered function: "+t),e.label=t,D.Pipeline.registeredFunctions[e.label]=e},D.Pipeline.warnIfFunctionNotRegistered=function(e){e.label&&e.label in this.registeredFunctions||D.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},D.Pipeline.load=function(e){var n=new D.Pipeline;return e.forEach(function(e){var t=D.Pipeline.registeredFunctions[e];if(!t)throw new Error("Cannot load unregistered function: "+e);n.add(t)}),n},D.Pipeline.prototype.add=function(){Array.prototype.slice.call(arguments).forEach(function(e){D.Pipeline.warnIfFunctionNotRegistered(e),this._stack.push(e)},this)},D.Pipeline.prototype.after=function(e,t){D.Pipeline.warnIfFunctionNotRegistered(t);var n=this._stack.indexOf(e);if(-1==n)throw new Error("Cannot find existingFn");n+=1,this._stack.splice(n,0,t)},D.Pipeline.prototype.before=function(e,t){D.Pipeline.warnIfFunctionNotRegistered(t);var n=this._stack.indexOf(e);if(-1==n)throw new Error("Cannot find existingFn");this._stack.splice(n,0,t)},D.Pipeline.prototype.remove=function(e){var t=this._stack.indexOf(e);-1!=t&&this._stack.splice(t,1)},D.Pipeline.prototype.run=function(e){for(var t=this._stack.length,n=0;n<t;n++){for(var r=this._stack[n],i=[],o=0;o<e.length;o++){var a=r(e[o],o,e);if(null!=a&&""!==a)if(Array.isArray(a))for(var s=0;s<a.length;s++)i.push(a[s]);else i.push(a)}e=i}return e},D.Pipeline.prototype.runString=function(e,t){var n=new D.Token(e,t);return this.run([n]).map(function(e){return e.toString()})},D.Pipeline.prototype.reset=function(){this._stack=[]},D.Pipeline.prototype.toJSON=function(){return this._stack.map(function(e){return D.Pipeline.warnIfFunctionNotRegistered(e),e.label})} -/*! - * lunr.Vector - * Copyright (C) 2019 Oliver Nightingale - */,D.Vector=function(e){this._magnitude=0,this.elements=e||[]},D.Vector.prototype.positionForIndex=function(e){if(0==this.elements.length)return 0;for(var t=0,n=this.elements.length/2,r=n-t,i=Math.floor(r/2),o=this.elements[2*i];1<r&&(o<e&&(t=i),e<o&&(n=i),o!=e);)r=n-t,i=t+Math.floor(r/2),o=this.elements[2*i];return o==e?2*i:e<o?2*i:o<e?2*(i+1):void 0},D.Vector.prototype.insert=function(e,t){this.upsert(e,t,function(){throw"duplicate index"})},D.Vector.prototype.upsert=function(e,t,n){this._magnitude=0;var r=this.positionForIndex(e);this.elements[r]==e?this.elements[r+1]=n(this.elements[r+1],t):this.elements.splice(r,0,e,t)},D.Vector.prototype.magnitude=function(){if(this._magnitude)return this._magnitude;for(var e=0,t=this.elements.length,n=1;n<t;n+=2){var r=this.elements[n];e+=r*r}return this._magnitude=Math.sqrt(e)},D.Vector.prototype.dot=function(e){for(var t=0,n=this.elements,r=e.elements,i=n.length,o=r.length,a=0,s=0,c=0,l=0;c<i&&l<o;)(a=n[c])<(s=r[l])?c+=2:s<a?l+=2:a==s&&(t+=n[c+1]*r[l+1],c+=2,l+=2);return t},D.Vector.prototype.similarity=function(e){return this.dot(e)/this.magnitude()||0},D.Vector.prototype.toArray=function(){for(var e=new Array(this.elements.length/2),t=1,n=0;t<this.elements.length;t+=2,n++)e[n]=this.elements[t];return e},D.Vector.prototype.toJSON=function(){return this.elements} -/*! - * lunr.stemmer - * Copyright (C) 2019 Oliver Nightingale - * Includes code from - http://tartarus.org/~martin/PorterStemmer/js.txt - */,D.stemmer=(l={ational:"ate",tional:"tion",enci:"ence",anci:"ance",izer:"ize",bli:"ble",alli:"al",entli:"ent",eli:"e",ousli:"ous",ization:"ize",ation:"ate",ator:"ate",alism:"al",iveness:"ive",fulness:"ful",ousness:"ous",aliti:"al",iviti:"ive",biliti:"ble",logi:"log"},u={icate:"ic",ative:"",alize:"al",iciti:"ic",ical:"ic",ful:"",ness:""},e="[aeiouy]",n="[^aeiou][^aeiouy]*",f=new RegExp("^([^aeiou][^aeiouy]*)?[aeiouy][aeiou]*[^aeiou][^aeiouy]*"),d=new RegExp("^([^aeiou][^aeiouy]*)?[aeiouy][aeiou]*[^aeiou][^aeiouy]*[aeiouy][aeiou]*[^aeiou][^aeiouy]*"),h=new RegExp("^([^aeiou][^aeiouy]*)?[aeiouy][aeiou]*[^aeiou][^aeiouy]*([aeiouy][aeiou]*)?$"),p=new RegExp("^([^aeiou][^aeiouy]*)?[aeiouy]"),m=/^(.+?)(ss|i)es$/,y=/^(.+?)([^s])s$/,v=/^(.+?)eed$/,g=/^(.+?)(ed|ing)$/,w=/.$/,_=/(at|bl|iz)$/,E=new RegExp("([^aeiouylsz])\\1$"),x=new RegExp("^"+n+e+"[^aeiouwxy]$"),b=/^(.+?[^aeiou])y$/,k=/^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/,S=/^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/,T=/^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/,L=/^(.+?)(s|t)(ion)$/,R=/^(.+?)e$/,O=/ll$/,C=new RegExp("^"+n+e+"[^aeiouwxy]$"),r=function(e){var t,n,r,i,o,a,s;if(e.length<3)return e;if("y"==(r=e.substr(0,1))&&(e=r.toUpperCase()+e.substr(1)),o=y,(i=m).test(e)?e=e.replace(i,"$1$2"):o.test(e)&&(e=e.replace(o,"$1$2")),o=g,(i=v).test(e)){var c=i.exec(e);(i=f).test(c[1])&&(i=w,e=e.replace(i,""))}else if(o.test(e)){t=(c=o.exec(e))[1],(o=p).test(t)&&(a=E,s=x,(o=_).test(e=t)?e+="e":a.test(e)?(i=w,e=e.replace(i,"")):s.test(e)&&(e+="e"))}(i=b).test(e)&&(e=(t=(c=i.exec(e))[1])+"i");(i=k).test(e)&&(t=(c=i.exec(e))[1],n=c[2],(i=f).test(t)&&(e=t+l[n]));(i=S).test(e)&&(t=(c=i.exec(e))[1],n=c[2],(i=f).test(t)&&(e=t+u[n]));if(o=L,(i=T).test(e))t=(c=i.exec(e))[1],(i=d).test(t)&&(e=t);else if(o.test(e)){t=(c=o.exec(e))[1]+c[2],(o=d).test(t)&&(e=t)}(i=R).test(e)&&(t=(c=i.exec(e))[1],o=h,a=C,((i=d).test(t)||o.test(t)&&!a.test(t))&&(e=t));return o=d,(i=O).test(e)&&o.test(e)&&(i=w,e=e.replace(i,"")),"y"==r&&(e=r.toLowerCase()+e.substr(1)),e},function(e){return e.update(r)}),D.Pipeline.registerFunction(D.stemmer,"stemmer") -/*! - * lunr.stopWordFilter - * Copyright (C) 2019 Oliver Nightingale - */,D.generateStopWordFilter=function(e){var t=e.reduce(function(e,t){return e[t]=t,e},{});return function(e){if(e&&t[e.toString()]!==e.toString())return e}},D.stopWordFilter=D.generateStopWordFilter(["a","able","about","across","after","all","almost","also","am","among","an","and","any","are","as","at","be","because","been","but","by","can","cannot","could","dear","did","do","does","either","else","ever","every","for","from","get","got","had","has","have","he","her","hers","him","his","how","however","i","if","in","into","is","it","its","just","least","let","like","likely","may","me","might","most","must","my","neither","no","nor","not","of","off","often","on","only","or","other","our","own","rather","said","say","says","she","should","since","so","some","than","that","the","their","them","then","there","these","they","this","tis","to","too","twas","us","wants","was","we","were","what","when","where","which","while","who","whom","why","will","with","would","yet","you","your"]),D.Pipeline.registerFunction(D.stopWordFilter,"stopWordFilter") -/*! - * lunr.trimmer - * Copyright (C) 2019 Oliver Nightingale - */,D.trimmer=function(e){return e.update(function(e){return e.replace(/^\W+/,"").replace(/\W+$/,"")})},D.Pipeline.registerFunction(D.trimmer,"trimmer") -/*! - * lunr.TokenSet - * Copyright (C) 2019 Oliver Nightingale - */,D.TokenSet=function(){this.final=!1,this.edges={},this.id=D.TokenSet._nextId,D.TokenSet._nextId+=1},D.TokenSet._nextId=1,D.TokenSet.fromArray=function(e){for(var t=new D.TokenSet.Builder,n=0,r=e.length;n<r;n++)t.insert(e[n]);return t.finish(),t.root},D.TokenSet.fromClause=function(e){return"editDistance"in e?D.TokenSet.fromFuzzyString(e.term,e.editDistance):D.TokenSet.fromString(e.term)},D.TokenSet.fromFuzzyString=function(e,t){for(var n=new D.TokenSet,r=[{node:n,editsRemaining:t,str:e}];r.length;){var i=r.pop();if(0<i.str.length){var o,a=i.str.charAt(0);a in i.node.edges?o=i.node.edges[a]:(o=new D.TokenSet,i.node.edges[a]=o),1==i.str.length&&(o.final=!0),r.push({node:o,editsRemaining:i.editsRemaining,str:i.str.slice(1)})}if(0!=i.editsRemaining){if("*"in i.node.edges)var s=i.node.edges["*"];else{s=new D.TokenSet;i.node.edges["*"]=s}if(0==i.str.length&&(s.final=!0),r.push({node:s,editsRemaining:i.editsRemaining-1,str:i.str}),1<i.str.length&&r.push({node:i.node,editsRemaining:i.editsRemaining-1,str:i.str.slice(1)}),1==i.str.length&&(i.node.final=!0),1<=i.str.length){if("*"in i.node.edges)var c=i.node.edges["*"];else{c=new D.TokenSet;i.node.edges["*"]=c}1==i.str.length&&(c.final=!0),r.push({node:c,editsRemaining:i.editsRemaining-1,str:i.str.slice(1)})}if(1<i.str.length){var l,u=i.str.charAt(0),f=i.str.charAt(1);f in i.node.edges?l=i.node.edges[f]:(l=new D.TokenSet,i.node.edges[f]=l),1==i.str.length&&(l.final=!0),r.push({node:l,editsRemaining:i.editsRemaining-1,str:u+i.str.slice(2)})}}}return n},D.TokenSet.fromString=function(e){for(var t=new D.TokenSet,n=t,r=0,i=e.length;r<i;r++){var o=e[r],a=r==i-1;if("*"==o)(t.edges[o]=t).final=a;else{var s=new D.TokenSet;s.final=a,t.edges[o]=s,t=s}}return n},D.TokenSet.prototype.toArray=function(){for(var e=[],t=[{prefix:"",node:this}];t.length;){var n=t.pop(),r=Object.keys(n.node.edges),i=r.length;n.node.final&&(n.prefix.charAt(0),e.push(n.prefix));for(var o=0;o<i;o++){var a=r[o];t.push({prefix:n.prefix.concat(a),node:n.node.edges[a]})}}return e},D.TokenSet.prototype.toString=function(){if(this._str)return this._str;for(var e=this.final?"1":"0",t=Object.keys(this.edges).sort(),n=t.length,r=0;r<n;r++){var i=t[r];e=e+i+this.edges[i].id}return e},D.TokenSet.prototype.intersect=function(e){for(var t=new D.TokenSet,n=void 0,r=[{qNode:e,output:t,node:this}];r.length;){n=r.pop();for(var i=Object.keys(n.qNode.edges),o=i.length,a=Object.keys(n.node.edges),s=a.length,c=0;c<o;c++)for(var l=i[c],u=0;u<s;u++){var f=a[u];if(f==l||"*"==l){var d=n.node.edges[f],h=n.qNode.edges[l],p=d.final&&h.final,m=void 0;f in n.output.edges?(m=n.output.edges[f]).final=m.final||p:((m=new D.TokenSet).final=p,n.output.edges[f]=m),r.push({qNode:h,output:m,node:d})}}}return t},D.TokenSet.Builder=function(){this.previousWord="",this.root=new D.TokenSet,this.uncheckedNodes=[],this.minimizedNodes={}},D.TokenSet.Builder.prototype.insert=function(e){var t,n=0;if(e<this.previousWord)throw new Error("Out of order word insertion");for(var r=0;r<e.length&&r<this.previousWord.length&&e[r]==this.previousWord[r];r++)n++;this.minimize(n),t=0==this.uncheckedNodes.length?this.root:this.uncheckedNodes[this.uncheckedNodes.length-1].child;for(r=n;r<e.length;r++){var i=new D.TokenSet,o=e[r];t.edges[o]=i,this.uncheckedNodes.push({parent:t,char:o,child:i}),t=i}t.final=!0,this.previousWord=e},D.TokenSet.Builder.prototype.finish=function(){this.minimize(0)},D.TokenSet.Builder.prototype.minimize=function(e){for(var t=this.uncheckedNodes.length-1;e<=t;t--){var n=this.uncheckedNodes[t],r=n.child.toString();r in this.minimizedNodes?n.parent.edges[n.char]=this.minimizedNodes[r]:(n.child._str=r,this.minimizedNodes[r]=n.child),this.uncheckedNodes.pop()}} -/*! - * lunr.Index - * Copyright (C) 2019 Oliver Nightingale - */,D.Index=function(e){this.invertedIndex=e.invertedIndex,this.fieldVectors=e.fieldVectors,this.tokenSet=e.tokenSet,this.fields=e.fields,this.pipeline=e.pipeline},D.Index.prototype.search=function(t){return this.query(function(e){new D.QueryParser(t,e).parse()})},D.Index.prototype.query=function(e){for(var t=new D.Query(this.fields),n=Object.create(null),r=Object.create(null),i=Object.create(null),o=Object.create(null),a=Object.create(null),s=0;s<this.fields.length;s++)r[this.fields[s]]=new D.Vector;e.call(t,t);for(s=0;s<t.clauses.length;s++){var c=t.clauses[s],l=null,u=D.Set.complete;l=c.usePipeline?this.pipeline.runString(c.term,{fields:c.fields}):[c.term];for(var f=0;f<l.length;f++){var d=l[f];c.term=d;var h=D.TokenSet.fromClause(c),p=this.tokenSet.intersect(h).toArray();if(0===p.length&&c.presence===D.Query.presence.REQUIRED){for(var m=0;m<c.fields.length;m++){o[P=c.fields[m]]=D.Set.empty}break}for(var y=0;y<p.length;y++){var v=p[y],g=this.invertedIndex[v],w=g._index;for(m=0;m<c.fields.length;m++){var _=g[P=c.fields[m]],E=Object.keys(_),x=v+"/"+P,b=new D.Set(E);if(c.presence==D.Query.presence.REQUIRED&&(u=u.union(b),void 0===o[P]&&(o[P]=D.Set.complete)),c.presence!=D.Query.presence.PROHIBITED){if(r[P].upsert(w,c.boost,function(e,t){return e+t}),!i[x]){for(var k=0;k<E.length;k++){var S,T=E[k],L=new D.FieldRef(T,P),R=_[T];void 0===(S=n[L])?n[L]=new D.MatchData(v,P,R):S.add(v,P,R)}i[x]=!0}}else void 0===a[P]&&(a[P]=D.Set.empty),a[P]=a[P].union(b)}}}if(c.presence===D.Query.presence.REQUIRED)for(m=0;m<c.fields.length;m++){o[P=c.fields[m]]=o[P].intersect(u)}}var O=D.Set.complete,C=D.Set.empty;for(s=0;s<this.fields.length;s++){var P;o[P=this.fields[s]]&&(O=O.intersect(o[P])),a[P]&&(C=C.union(a[P]))}var Q=Object.keys(n),A=[],I=Object.create(null);if(t.isNegated()){Q=Object.keys(this.fieldVectors);for(s=0;s<Q.length;s++){L=Q[s];var M=D.FieldRef.fromString(L);n[L]=new D.MatchData}}for(s=0;s<Q.length;s++){var N=(M=D.FieldRef.fromString(Q[s])).docRef;if(O.contains(N)&&!C.contains(N)){var j,F=this.fieldVectors[M],H=r[M.fieldName].similarity(F);if(void 0!==(j=I[N]))j.score+=H,j.matchData.combine(n[M]);else{var q={ref:N,score:H,matchData:n[M]};I[N]=q,A.push(q)}}}return A.sort(function(e,t){return t.score-e.score})},D.Index.prototype.toJSON=function(){var e=Object.keys(this.invertedIndex).sort().map(function(e){return[e,this.invertedIndex[e]]},this),t=Object.keys(this.fieldVectors).map(function(e){return[e,this.fieldVectors[e].toJSON()]},this);return{version:D.version,fields:this.fields,fieldVectors:t,invertedIndex:e,pipeline:this.pipeline.toJSON()}},D.Index.load=function(e){var t={},n={},r=e.fieldVectors,i=Object.create(null),o=e.invertedIndex,a=new D.TokenSet.Builder,s=D.Pipeline.load(e.pipeline);e.version!=D.version&&D.utils.warn("Version mismatch when loading serialised index. Current version of lunr '"+D.version+"' does not match serialized index '"+e.version+"'");for(var c=0;c<r.length;c++){var l=(f=r[c])[0],u=f[1];n[l]=new D.Vector(u)}for(c=0;c<o.length;c++){var f,d=(f=o[c])[0],h=f[1];a.insert(d),i[d]=h}return a.finish(),t.fields=e.fields,t.fieldVectors=n,t.invertedIndex=i,t.tokenSet=a.root,t.pipeline=s,new D.Index(t)} -/*! - * lunr.Builder - * Copyright (C) 2019 Oliver Nightingale - */,D.Builder=function(){this._ref="id",this._fields=Object.create(null),this._documents=Object.create(null),this.invertedIndex=Object.create(null),this.fieldTermFrequencies={},this.fieldLengths={},this.tokenizer=D.tokenizer,this.pipeline=new D.Pipeline,this.searchPipeline=new D.Pipeline,this.documentCount=0,this._b=.75,this._k1=1.2,this.termIndex=0,this.metadataWhitelist=[]},D.Builder.prototype.ref=function(e){this._ref=e},D.Builder.prototype.field=function(e,t){if(/\//.test(e))throw new RangeError("Field '"+e+"' contains illegal character '/'");this._fields[e]=t||{}},D.Builder.prototype.b=function(e){this._b=e<0?0:1<e?1:e},D.Builder.prototype.k1=function(e){this._k1=e},D.Builder.prototype.add=function(e,t){var n=e[this._ref],r=Object.keys(this._fields);this._documents[n]=t||{},this.documentCount+=1;for(var i=0;i<r.length;i++){var o=r[i],a=this._fields[o].extractor,s=a?a(e):e[o],c=this.tokenizer(s,{fields:[o]}),l=this.pipeline.run(c),u=new D.FieldRef(n,o),f=Object.create(null);this.fieldTermFrequencies[u]=f,this.fieldLengths[u]=0,this.fieldLengths[u]+=l.length;for(var d=0;d<l.length;d++){var h=l[d];if(null==f[h]&&(f[h]=0),f[h]+=1,null==this.invertedIndex[h]){var p=Object.create(null);p._index=this.termIndex,this.termIndex+=1;for(var m=0;m<r.length;m++)p[r[m]]=Object.create(null);this.invertedIndex[h]=p}null==this.invertedIndex[h][o][n]&&(this.invertedIndex[h][o][n]=Object.create(null));for(var y=0;y<this.metadataWhitelist.length;y++){var v=this.metadataWhitelist[y],g=h.metadata[v];null==this.invertedIndex[h][o][n][v]&&(this.invertedIndex[h][o][n][v]=[]),this.invertedIndex[h][o][n][v].push(g)}}}},D.Builder.prototype.calculateAverageFieldLengths=function(){for(var e=Object.keys(this.fieldLengths),t=e.length,n={},r={},i=0;i<t;i++){var o=D.FieldRef.fromString(e[i]),a=o.fieldName;r[a]||(r[a]=0),r[a]+=1,n[a]||(n[a]=0),n[a]+=this.fieldLengths[o]}var s=Object.keys(this._fields);for(i=0;i<s.length;i++){var c=s[i];n[c]=n[c]/r[c]}this.averageFieldLength=n},D.Builder.prototype.createFieldVectors=function(){for(var e={},t=Object.keys(this.fieldTermFrequencies),n=t.length,r=Object.create(null),i=0;i<n;i++){for(var o=D.FieldRef.fromString(t[i]),a=o.fieldName,s=this.fieldLengths[o],c=new D.Vector,l=this.fieldTermFrequencies[o],u=Object.keys(l),f=u.length,d=this._fields[a].boost||1,h=this._documents[o.docRef].boost||1,p=0;p<f;p++){var m,y,v,g=u[p],w=l[g],_=this.invertedIndex[g]._index;void 0===r[g]?(m=D.idf(this.invertedIndex[g],this.documentCount),r[g]=m):m=r[g],y=m*((this._k1+1)*w)/(this._k1*(1-this._b+this._b*(s/this.averageFieldLength[a]))+w),y*=d,y*=h,v=Math.round(1e3*y)/1e3,c.insert(_,v)}e[o]=c}this.fieldVectors=e},D.Builder.prototype.createTokenSet=function(){this.tokenSet=D.TokenSet.fromArray(Object.keys(this.invertedIndex).sort())},D.Builder.prototype.build=function(){return this.calculateAverageFieldLengths(),this.createFieldVectors(),this.createTokenSet(),new D.Index({invertedIndex:this.invertedIndex,fieldVectors:this.fieldVectors,tokenSet:this.tokenSet,fields:Object.keys(this._fields),pipeline:this.searchPipeline})},D.Builder.prototype.use=function(e){var t=Array.prototype.slice.call(arguments,1);t.unshift(this),e.apply(this,t)},D.MatchData=function(e,t,n){for(var r=Object.create(null),i=Object.keys(n||{}),o=0;o<i.length;o++){var a=i[o];r[a]=n[a].slice()}this.metadata=Object.create(null),void 0!==e&&(this.metadata[e]=Object.create(null),this.metadata[e][t]=r)},D.MatchData.prototype.combine=function(e){for(var t=Object.keys(e.metadata),n=0;n<t.length;n++){var r=t[n],i=Object.keys(e.metadata[r]);null==this.metadata[r]&&(this.metadata[r]=Object.create(null));for(var o=0;o<i.length;o++){var a=i[o],s=Object.keys(e.metadata[r][a]);null==this.metadata[r][a]&&(this.metadata[r][a]=Object.create(null));for(var c=0;c<s.length;c++){var l=s[c];null==this.metadata[r][a][l]?this.metadata[r][a][l]=e.metadata[r][a][l]:this.metadata[r][a][l]=this.metadata[r][a][l].concat(e.metadata[r][a][l])}}}},D.MatchData.prototype.add=function(e,t,n){if(!(e in this.metadata))return this.metadata[e]=Object.create(null),void(this.metadata[e][t]=n);if(t in this.metadata[e])for(var r=Object.keys(n),i=0;i<r.length;i++){var o=r[i];o in this.metadata[e][t]?this.metadata[e][t][o]=this.metadata[e][t][o].concat(n[o]):this.metadata[e][t][o]=n[o]}else this.metadata[e][t]=n},D.Query=function(e){this.clauses=[],this.allFields=e},D.Query.wildcard=new String("*"),D.Query.wildcard.NONE=0,D.Query.wildcard.LEADING=1,D.Query.wildcard.TRAILING=2,D.Query.presence={OPTIONAL:1,REQUIRED:2,PROHIBITED:3},D.Query.prototype.clause=function(e){return"fields"in e||(e.fields=this.allFields),"boost"in e||(e.boost=1),"usePipeline"in e||(e.usePipeline=!0),"wildcard"in e||(e.wildcard=D.Query.wildcard.NONE),e.wildcard&D.Query.wildcard.LEADING&&e.term.charAt(0)!=D.Query.wildcard&&(e.term="*"+e.term),e.wildcard&D.Query.wildcard.TRAILING&&e.term.slice(-1)!=D.Query.wildcard&&(e.term=e.term+"*"),"presence"in e||(e.presence=D.Query.presence.OPTIONAL),this.clauses.push(e),this},D.Query.prototype.isNegated=function(){for(var e=0;e<this.clauses.length;e++)if(this.clauses[e].presence!=D.Query.presence.PROHIBITED)return!1;return!0},D.Query.prototype.term=function(e,t){if(Array.isArray(e))return e.forEach(function(e){this.term(e,D.utils.clone(t))},this),this;var n=t||{};return n.term=e.toString(),this.clause(n),this},D.QueryParseError=function(e,t,n){this.name="QueryParseError",this.message=e,this.start=t,this.end=n},D.QueryParseError.prototype=new Error,D.QueryLexer=function(e){this.lexemes=[],this.str=e,this.length=e.length,this.pos=0,this.start=0,this.escapeCharPositions=[]},D.QueryLexer.prototype.run=function(){for(var e=D.QueryLexer.lexText;e;)e=e(this)},D.QueryLexer.prototype.sliceString=function(){for(var e=[],t=this.start,n=this.pos,r=0;r<this.escapeCharPositions.length;r++)n=this.escapeCharPositions[r],e.push(this.str.slice(t,n)),t=n+1;return e.push(this.str.slice(t,this.pos)),this.escapeCharPositions.length=0,e.join("")},D.QueryLexer.prototype.emit=function(e){this.lexemes.push({type:e,str:this.sliceString(),start:this.start,end:this.pos}),this.start=this.pos},D.QueryLexer.prototype.escapeCharacter=function(){this.escapeCharPositions.push(this.pos-1),this.pos+=1},D.QueryLexer.prototype.next=function(){if(this.pos>=this.length)return D.QueryLexer.EOS;var e=this.str.charAt(this.pos);return this.pos+=1,e},D.QueryLexer.prototype.width=function(){return this.pos-this.start},D.QueryLexer.prototype.ignore=function(){this.start==this.pos&&(this.pos+=1),this.start=this.pos},D.QueryLexer.prototype.backup=function(){this.pos-=1},D.QueryLexer.prototype.acceptDigitRun=function(){for(var e,t;47<(t=(e=this.next()).charCodeAt(0))&&t<58;);e!=D.QueryLexer.EOS&&this.backup()},D.QueryLexer.prototype.more=function(){return this.pos<this.length},D.QueryLexer.EOS="EOS",D.QueryLexer.FIELD="FIELD",D.QueryLexer.TERM="TERM",D.QueryLexer.EDIT_DISTANCE="EDIT_DISTANCE",D.QueryLexer.BOOST="BOOST",D.QueryLexer.PRESENCE="PRESENCE",D.QueryLexer.lexField=function(e){return e.backup(),e.emit(D.QueryLexer.FIELD),e.ignore(),D.QueryLexer.lexText},D.QueryLexer.lexTerm=function(e){if(1<e.width()&&(e.backup(),e.emit(D.QueryLexer.TERM)),e.ignore(),e.more())return D.QueryLexer.lexText},D.QueryLexer.lexEditDistance=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(D.QueryLexer.EDIT_DISTANCE),D.QueryLexer.lexText},D.QueryLexer.lexBoost=function(e){return e.ignore(),e.acceptDigitRun(),e.emit(D.QueryLexer.BOOST),D.QueryLexer.lexText},D.QueryLexer.lexEOS=function(e){0<e.width()&&e.emit(D.QueryLexer.TERM)},D.QueryLexer.termSeparator=D.tokenizer.separator,D.QueryLexer.lexText=function(e){for(;;){var t=e.next();if(t==D.QueryLexer.EOS)return D.QueryLexer.lexEOS;if(92!=t.charCodeAt(0)){if(":"==t)return D.QueryLexer.lexField;if("~"==t)return e.backup(),0<e.width()&&e.emit(D.QueryLexer.TERM),D.QueryLexer.lexEditDistance;if("^"==t)return e.backup(),0<e.width()&&e.emit(D.QueryLexer.TERM),D.QueryLexer.lexBoost;if("+"==t&&1===e.width())return e.emit(D.QueryLexer.PRESENCE),D.QueryLexer.lexText;if("-"==t&&1===e.width())return e.emit(D.QueryLexer.PRESENCE),D.QueryLexer.lexText;if(t.match(D.QueryLexer.termSeparator))return D.QueryLexer.lexTerm}else e.escapeCharacter()}},D.QueryParser=function(e,t){this.lexer=new D.QueryLexer(e),this.query=t,this.currentClause={},this.lexemeIdx=0},D.QueryParser.prototype.parse=function(){this.lexer.run(),this.lexemes=this.lexer.lexemes;for(var e=D.QueryParser.parseClause;e;)e=e(this);return this.query},D.QueryParser.prototype.peekLexeme=function(){return this.lexemes[this.lexemeIdx]},D.QueryParser.prototype.consumeLexeme=function(){var e=this.peekLexeme();return this.lexemeIdx+=1,e},D.QueryParser.prototype.nextClause=function(){var e=this.currentClause;this.query.clause(e),this.currentClause={}},D.QueryParser.parseClause=function(e){var t=e.peekLexeme();if(null!=t)switch(t.type){case D.QueryLexer.PRESENCE:return D.QueryParser.parsePresence;case D.QueryLexer.FIELD:return D.QueryParser.parseField;case D.QueryLexer.TERM:return D.QueryParser.parseTerm;default:var n="expected either a field or a term, found "+t.type;throw 1<=t.str.length&&(n+=" with value '"+t.str+"'"),new D.QueryParseError(n,t.start,t.end)}},D.QueryParser.parsePresence=function(e){var t=e.consumeLexeme();if(null!=t){switch(t.str){case"-":e.currentClause.presence=D.Query.presence.PROHIBITED;break;case"+":e.currentClause.presence=D.Query.presence.REQUIRED;break;default:var n="unrecognised presence operator'"+t.str+"'";throw new D.QueryParseError(n,t.start,t.end)}var r=e.peekLexeme();if(null==r){n="expecting term or field, found nothing";throw new D.QueryParseError(n,t.start,t.end)}switch(r.type){case D.QueryLexer.FIELD:return D.QueryParser.parseField;case D.QueryLexer.TERM:return D.QueryParser.parseTerm;default:n="expecting term or field, found '"+r.type+"'";throw new D.QueryParseError(n,r.start,r.end)}}},D.QueryParser.parseField=function(e){var t=e.consumeLexeme();if(null!=t){if(-1==e.query.allFields.indexOf(t.str)){var n=e.query.allFields.map(function(e){return"'"+e+"'"}).join(", "),r="unrecognised field '"+t.str+"', possible fields: "+n;throw new D.QueryParseError(r,t.start,t.end)}e.currentClause.fields=[t.str];var i=e.peekLexeme();if(null==i){r="expecting term, found nothing";throw new D.QueryParseError(r,t.start,t.end)}switch(i.type){case D.QueryLexer.TERM:return D.QueryParser.parseTerm;default:r="expecting term, found '"+i.type+"'";throw new D.QueryParseError(r,i.start,i.end)}}},D.QueryParser.parseTerm=function(e){var t=e.consumeLexeme();if(null!=t){e.currentClause.term=t.str.toLowerCase(),-1!=t.str.indexOf("*")&&(e.currentClause.usePipeline=!1);var n=e.peekLexeme();if(null!=n)switch(n.type){case D.QueryLexer.TERM:return e.nextClause(),D.QueryParser.parseTerm;case D.QueryLexer.FIELD:return e.nextClause(),D.QueryParser.parseField;case D.QueryLexer.EDIT_DISTANCE:return D.QueryParser.parseEditDistance;case D.QueryLexer.BOOST:return D.QueryParser.parseBoost;case D.QueryLexer.PRESENCE:return e.nextClause(),D.QueryParser.parsePresence;default:var r="Unexpected lexeme type '"+n.type+"'";throw new D.QueryParseError(r,n.start,n.end)}else e.nextClause()}},D.QueryParser.parseEditDistance=function(e){var t=e.consumeLexeme();if(null!=t){var n=parseInt(t.str,10);if(isNaN(n)){var r="edit distance must be numeric";throw new D.QueryParseError(r,t.start,t.end)}e.currentClause.editDistance=n;var i=e.peekLexeme();if(null!=i)switch(i.type){case D.QueryLexer.TERM:return e.nextClause(),D.QueryParser.parseTerm;case D.QueryLexer.FIELD:return e.nextClause(),D.QueryParser.parseField;case D.QueryLexer.EDIT_DISTANCE:return D.QueryParser.parseEditDistance;case D.QueryLexer.BOOST:return D.QueryParser.parseBoost;case D.QueryLexer.PRESENCE:return e.nextClause(),D.QueryParser.parsePresence;default:r="Unexpected lexeme type '"+i.type+"'";throw new D.QueryParseError(r,i.start,i.end)}else e.nextClause()}},D.QueryParser.parseBoost=function(e){var t=e.consumeLexeme();if(null!=t){var n=parseInt(t.str,10);if(isNaN(n)){var r="boost must be numeric";throw new D.QueryParseError(r,t.start,t.end)}e.currentClause.boost=n;var i=e.peekLexeme();if(null!=i)switch(i.type){case D.QueryLexer.TERM:return e.nextClause(),D.QueryParser.parseTerm;case D.QueryLexer.FIELD:return e.nextClause(),D.QueryParser.parseField;case D.QueryLexer.EDIT_DISTANCE:return D.QueryParser.parseEditDistance;case D.QueryLexer.BOOST:return D.QueryParser.parseBoost;case D.QueryLexer.PRESENCE:return e.nextClause(),D.QueryParser.parsePresence;default:r="Unexpected lexeme type '"+i.type+"'";throw new D.QueryParseError(r,i.start,i.end)}else e.nextClause()}},void 0===(c="function"==typeof(s=function(){return D})?s.call(o,a,o,i):s)||(i.exports=c)}()}])); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.ar.js b/site/assets/javascripts/lunr/lunr.ar.js deleted file mode 100644 index 4fc6a5d15eba1cd835844b7203273c6b6f5c7898..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.ar.js +++ /dev/null @@ -1,20 +0,0 @@ -/*! - * Lunr languages, `Arabic` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2018, Dalia Al-Shahrabi - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Kazem Taghva, Rania Elkhoury, and Jeffrey Coombs (2005) - * Meryeme Hadni, Abdelmonaime Lachkar, and S. Alaoui Ouatik (2012) - * - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.ar=function(){this.pipeline.reset(),this.pipeline.add(e.ar.trimmer,e.ar.stopWordFilter,e.ar.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ar.stemmer))},e.ar.wordCharacters="Ø¡-ٛٱـ",e.ar.trimmer=e.trimmerSupport.generateTrimmer(e.ar.wordCharacters),e.Pipeline.registerFunction(e.ar.trimmer,"trimmer-ar"),e.ar.stemmer=function(){var m=this;return m.result=!1,m.preRemoved=!1,m.sufRemoved=!1,m.pre={pre1:"Ù Ùƒ ب Ùˆ س Ù„ Ù† ا ÙŠ ت",pre2:"ال لل",pre3:"بال وال Ùال تال كال ولل",pre4:"Ùبال كبال وبال وكال"},m.suf={suf1:"Ù‡ Ùƒ ت Ù† ا ÙŠ",suf2:"نك نه ها وك يا اه ون ين تن تم نا وا ان كم كن ني نن ما هم هن تك ته ات يه",suf3:"تين كهم نيه نهم ونه وها يهم ونا ونك وني وهم تكم تنا تها تني تهم كما كها ناه نكم هنا تان يها",suf4:"كموه ناها ونني ونهم تكما تموه تكاه كماه ناكم ناهم نيها وننا"},m.patterns=JSON.parse('{"pt43":[{"pt":[{"c":"ا","l":1}]},{"pt":[{"c":"ا,ت,Ù†,ÙŠ","l":0}],"mPt":[{"c":"Ù","l":0,"m":1},{"c":"ع","l":1,"m":2},{"c":"Ù„","l":2,"m":3}]},{"pt":[{"c":"Ùˆ","l":2}],"mPt":[{"c":"Ù","l":0,"m":0},{"c":"ع","l":1,"m":1},{"c":"Ù„","l":2,"m":3}]},{"pt":[{"c":"ا","l":2}]},{"pt":[{"c":"ÙŠ","l":2}],"mPt":[{"c":"Ù","l":0,"m":0},{"c":"ع","l":1,"m":1},{"c":"ا","l":2},{"c":"Ù„","l":3,"m":3}]},{"pt":[{"c":"Ù…","l":0}]}],"pt53":[{"pt":[{"c":"ت","l":0},{"c":"ا","l":2}]},{"pt":[{"c":"ا,Ù†,ت,ÙŠ","l":0},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"Ù","l":1,"m":1},{"c":"ت","l":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"Ù„","l":5,"m":4}]},{"pt":[{"c":"ا","l":0},{"c":"ا","l":2}],"mPt":[{"c":"ا","l":0},{"c":"Ù","l":1,"m":1},{"c":"ع","l":2,"m":3},{"c":"Ù„","l":3,"m":4},{"c":"ا","l":4},{"c":"Ù„","l":5,"m":4}]},{"pt":[{"c":"ا","l":0},{"c":"ا","l":3}],"mPt":[{"c":"Ù","l":0,"m":1},{"c":"ع","l":1,"m":2},{"c":"Ù„","l":2,"m":4}]},{"pt":[{"c":"ا","l":3},{"c":"Ù†","l":4}]},{"pt":[{"c":"ت","l":0},{"c":"ÙŠ","l":3}]},{"pt":[{"c":"Ù…","l":0},{"c":"Ùˆ","l":3}]},{"pt":[{"c":"ا","l":1},{"c":"Ùˆ","l":3}]},{"pt":[{"c":"Ùˆ","l":1},{"c":"ا","l":2}]},{"pt":[{"c":"Ù…","l":0},{"c":"ا","l":3}]},{"pt":[{"c":"Ù…","l":0},{"c":"ÙŠ","l":3}]},{"pt":[{"c":"ا","l":2},{"c":"Ù†","l":3}]},{"pt":[{"c":"Ù…","l":0},{"c":"Ù†","l":1}],"mPt":[{"c":"ا","l":0},{"c":"Ù†","l":1},{"c":"Ù","l":2,"m":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"Ù„","l":5,"m":4}]},{"pt":[{"c":"Ù…","l":0},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"Ù","l":1,"m":1},{"c":"ت","l":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"Ù„","l":5,"m":4}]},{"pt":[{"c":"Ù…","l":0},{"c":"ا","l":2}]},{"pt":[{"c":"Ù…","l":1},{"c":"ا","l":3}]},{"pt":[{"c":"ÙŠ,ت,ا,Ù†","l":0},{"c":"ت","l":1}],"mPt":[{"c":"Ù","l":0,"m":2},{"c":"ع","l":1,"m":3},{"c":"ا","l":2},{"c":"Ù„","l":3,"m":4}]},{"pt":[{"c":"ت,ÙŠ,ا,Ù†","l":0},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"Ù","l":1,"m":1},{"c":"ت","l":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"Ù„","l":5,"m":4}]},{"pt":[{"c":"ا","l":2},{"c":"ÙŠ","l":3}]},{"pt":[{"c":"ا,ÙŠ,ت,Ù†","l":0},{"c":"Ù†","l":1}],"mPt":[{"c":"ا","l":0},{"c":"Ù†","l":1},{"c":"Ù","l":2,"m":2},{"c":"ع","l":3,"m":3},{"c":"ا","l":4},{"c":"Ù„","l":5,"m":4}]},{"pt":[{"c":"ا","l":3},{"c":"Ø¡","l":4}]}],"pt63":[{"pt":[{"c":"ا","l":0},{"c":"ت","l":2},{"c":"ا","l":4}]},{"pt":[{"c":"ا,ت,Ù†,ÙŠ","l":0},{"c":"س","l":1},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"س","l":1},{"c":"ت","l":2},{"c":"Ù","l":3,"m":3},{"c":"ع","l":4,"m":4},{"c":"ا","l":5},{"c":"Ù„","l":6,"m":5}]},{"pt":[{"c":"ا,Ù†,ت,ÙŠ","l":0},{"c":"Ùˆ","l":3}]},{"pt":[{"c":"Ù…","l":0},{"c":"س","l":1},{"c":"ت","l":2}],"mPt":[{"c":"ا","l":0},{"c":"س","l":1},{"c":"ت","l":2},{"c":"Ù","l":3,"m":3},{"c":"ع","l":4,"m":4},{"c":"ا","l":5},{"c":"Ù„","l":6,"m":5}]},{"pt":[{"c":"ÙŠ","l":1},{"c":"ÙŠ","l":3},{"c":"ا","l":4},{"c":"Ø¡","l":5}]},{"pt":[{"c":"ا","l":0},{"c":"Ù†","l":1},{"c":"ا","l":4}]}],"pt54":[{"pt":[{"c":"ت","l":0}]},{"pt":[{"c":"ا,ÙŠ,ت,Ù†","l":0}],"mPt":[{"c":"ا","l":0},{"c":"Ù","l":1,"m":1},{"c":"ع","l":2,"m":2},{"c":"Ù„","l":3,"m":3},{"c":"ر","l":4,"m":4},{"c":"ا","l":5},{"c":"ر","l":6,"m":4}]},{"pt":[{"c":"Ù…","l":0}],"mPt":[{"c":"ا","l":0},{"c":"Ù","l":1,"m":1},{"c":"ع","l":2,"m":2},{"c":"Ù„","l":3,"m":3},{"c":"ر","l":4,"m":4},{"c":"ا","l":5},{"c":"ر","l":6,"m":4}]},{"pt":[{"c":"ا","l":2}]},{"pt":[{"c":"ا","l":0},{"c":"Ù†","l":2}]}],"pt64":[{"pt":[{"c":"ا","l":0},{"c":"ا","l":4}]},{"pt":[{"c":"Ù…","l":0},{"c":"ت","l":1}]}],"pt73":[{"pt":[{"c":"ا","l":0},{"c":"س","l":1},{"c":"ت","l":2},{"c":"ا","l":5}]}],"pt75":[{"pt":[{"c":"ا","l":0},{"c":"ا","l":5}]}]}'),m.execArray=["cleanWord","removeDiacritics","cleanAlef","removeStopWords","normalizeHamzaAndAlef","removeStartWaw","removePre432","removeEndTaa","wordCheck"],m.stem=function(){var e=0;for(m.result=!1,m.preRemoved=!1,m.sufRemoved=!1;e<m.execArray.length&&1!=m.result;)m.result=m[m.execArray[e]](),e++},m.setCurrent=function(e){m.word=e},m.getCurrent=function(){return m.word},m.cleanWord=function(){var e=new RegExp("[^Ø¡-ٛٱـ]");return m.word=m.word.replace("Ù€",""),!!e.test("")},m.removeDiacritics=function(){new RegExp("[Ù‹-Ù›]");return m.word=m.word.replace(/[\u064b-\u065b]/gi,""),!1},m.cleanAlef=function(){var e=new RegExp("[آأإٱى]");return m.word=m.word.replace(e,"ا"),!1},m.removeStopWords=function(){if(0<="ØŒ اض امين اه اها اي ا اب اجل اجمع اخ اخذ Ø§ØµØ¨Ø Ø§Ø¶ØÙ‰ اقبل اقل اكثر الا ام اما امامك امامك امسى اما ان انا انت انتم انتما انتن انت انشا انى او اوشك اولئك اولئكم اولاء اولالك اوه اي ايا اين اينما اي ان اي ا٠اذ اذا اذا اذما اذن الى اليكم اليكما اليكن اليك اليك الا اما ان انما اي اياك اياكم اياكما اياكن ايانا اياه اياها اياهم اياهما اياهن اياي ايه ان ا ابتدا اثر اجل اØد اخرى اخلولق اذا اربعة ارتد استØال اطار اعادة اعلنت ا٠اكثر اكد الالاء الالى الا الاخيرة الان الاول الاولى التى التي الثاني الثانية الذاتي الذى الذي الذين السابق ال٠اللائي اللاتي اللتان اللتيا اللتين اللذان اللذين اللواتي الماضي المقبل الوقت الى اليوم اما امام امس ان انبرى انقلب انه انها او اول اي ايار ايام ايضا ب بات باسم بان بخ برس بسبب بس بشكل بضع بطان بعد بعض بك بكم بكما بكن بل بلى بما بماذا بمن بن بنا به بها بي بيد بين بس بله بئس تان تانك تبدل تجاه تØول تلقاء تلك تلكم تلكما تم تينك تين ته تي ثلاثة ثم ثم ثمة ثم جعل جلل جميع جير Øار Øاشا Øاليا Øاي Øتى Øرى Øسب ØÙ… Øوالى Øول Øيث Øيثما Øين ØÙŠ Øبذا Øتى Øذار خلا خلال دون دونك ذا ذات ذاك ذانك ذان ذلك ذلكم ذلكما ذلكن ذو ذوا ذواتا ذواتي ذيت ذينك ذين ذه ذي Ø±Ø§Ø Ø±Ø¬Ø¹ رويدك ريث رب زيارة سبØان سرعان سنة سنوات سو٠سوى ساء ساءما شبه شخصا شرع شتان صار ØµØ¨Ø§Ø ØµÙر صه صه ضد ضمن طاق طالما Ø·ÙÙ‚ طق ظل عاد عام عاما عامة عدا عدة عدد عدم عسى عشر عشرة علق على عليك عليه عليها عل عن عند عندما عوض عين عدس عما غدا غير Ù Ùان Ùلان ÙÙˆ ÙÙ‰ ÙÙŠ Ùيم Ùيما Ùيه Ùيها قال قام قبل قد قط قلما قوة كانما كاين كاي كاين كاد كان كانت كذا كذلك كرب كل كلا كلاهما كلتا كلم كليكما كليهما كلما كلا كم كما كي كيت كي٠كيÙما كان كخ لئن لا لات لاسيما لدن لدى لعمر لقاء لك لكم لكما لكن لكنما لكي لكيلا للامم لم لما لما لن لنا له لها لو لوكالة لولا لوما لي لست لست لستم لستما لستن لست لسن لعل لكن ليت ليس ليسا ليستا ليست ليسوا لسنا ما ماانÙÙƒ Ù…Ø§Ø¨Ø±Ø Ù…Ø§Ø¯Ø§Ù… ماذا مازال ماÙتئ مايو متى مثل مذ مساء مع معاذ مقابل مكانكم مكانكما مكانكن مكانك مليار مليون مما ممن من منذ منها مه مهما من من Ù†ØÙ† Ù†ØÙˆ نعم Ù†Ùس Ù†Ùسه نهاية نخ نعما نعم ها هاؤم هاك هاهنا هب هذا هذه هكذا هل هلم هلا هم هما هن هنا هناك هنالك هو هي هيا هيت هيا هؤلاء هاتان هاتين هاته هاتي هج هذا هذان هذين هذه هذي هيهات Ùˆ وا واØد واضا٠واضاÙت واكد وان واها ÙˆØ§ÙˆØ¶Ø ÙˆØ±Ø§Ø¡Ùƒ ÙˆÙÙŠ وقال وقالت وقد وق٠وكان وكانت ولا ولم ومن وهو وهي ويكان وي وشكان يكون يمكن يوم ايان".split(" ").indexOf(m.word))return!0},m.normalizeHamzaAndAlef=function(){return m.word=m.word.replace("ؤ","Ø¡"),m.word=m.word.replace("ئ","Ø¡"),m.word=m.word.replace(/([\u0627])\1+/gi,"ا"),!1},m.removeEndTaa=function(){return!(2<m.word.length)||(m.word=m.word.replace(/[\u0627]$/,""),m.word=m.word.replace("Ø©",""),!1)},m.removeStartWaw=function(){return 3<m.word.length&&"Ùˆ"==m.word[0]&&"Ùˆ"==m.word[1]&&(m.word=m.word.slice(1)),!1},m.removePre432=function(){var e=m.word;if(7<=m.word.length){var r=new RegExp("^("+m.pre.pre4.split(" ").join("|")+")");m.word=m.word.replace(r,"")}if(m.word==e&&6<=m.word.length){var t=new RegExp("^("+m.pre.pre3.split(" ").join("|")+")");m.word=m.word.replace(t,"")}if(m.word==e&&5<=m.word.length){var c=new RegExp("^("+m.pre.pre2.split(" ").join("|")+")");m.word=m.word.replace(c,"")}return e!=m.word&&(m.preRemoved=!0),!1},m.patternCheck=function(r){for(var t=0;t<r.length;t++){for(var e=!0,c=0;c<r[t].pt.length;c++){var l=r[t].pt[c].c.split(","),o=!1;if(l.forEach(function(e){m.word[r[t].pt[c].l]==e&&(o=!0)}),!o){e=!1;break}}if(1==e){if(r[t].mPt){for(var n=[],p=0;p<r[t].mPt.length;p++)null!=r[t].mPt[p].m?n[r[t].mPt[p].l]=m.word[r[t].mPt[p].m]:n[r[t].mPt[p].l]=r[t].mPt[p].c;m.word=n.join("")}m.result=!0;break}}},m.removePre1=function(){var e=m.word;if(0==m.preRemoved&&3<m.word.length){var r=new RegExp("^("+m.pre.pre1.split(" ").join("|")+")");m.word=m.word.replace(r,"")}return e!=m.word&&(m.preRemoved=!0),!1},m.removeSuf1=function(){var e=m.word;if(0==m.sufRemoved&&3<m.word.length){var r=new RegExp("("+m.suf.suf1.split(" ").join("|")+")$");m.word=m.word.replace(r,"")}return e!=m.word&&(m.sufRemoved=!0),!1},m.removeSuf432=function(){var e=m.word;if(6<=m.word.length){var r=new RegExp("("+m.suf.suf4.split(" ").join("|")+")$");m.word=m.word.replace(r,"")}if(m.word==e&&5<=m.word.length){var t=new RegExp("("+m.suf.suf3.split(" ").join("|")+")$");m.word=m.word.replace(t,"")}if(m.word==e&&4<=m.word.length){var c=new RegExp("("+m.suf.suf2.split(" ").join("|")+")$");m.word=m.word.replace(c,"")}return e!=m.word&&(m.sufRemoved=!0),!1},m.wordCheck=function(){m.word;for(var e=[m.removeSuf432,m.removeSuf1,m.removePre1],r=0,t=!1;7<=m.word.length&&!m.result&&r<e.length;)t=7!=m.word.length||t?(e[r](),r++,!1):(m.checkPattern73(),!0);var c=[m.checkPattern63,m.removeSuf432,m.removeSuf1,m.removePre1,m.checkPattern64];for(r=0;6==m.word.length&&!m.result&&r<c.length;)c[r](),r++;var l=[m.checkPattern53,m.removeSuf432,m.removeSuf1,m.removePre1,m.checkPattern54];for(r=0;5==m.word.length&&!m.result&&r<l.length;)l[r](),r++;var o=[m.checkPattern43,m.removeSuf1,m.removePre1,m.removeSuf432];for(r=0;4==m.word.length&&!m.result&&r<o.length;)o[r](),r++;return!0},m.checkPattern43=function(){m.patternCheck(m.patterns.pt43)},m.checkPattern53=function(){m.patternCheck(m.patterns.pt53)},m.checkPattern54=function(){m.patternCheck(m.patterns.pt54)},m.checkPattern63=function(){m.patternCheck(m.patterns.pt63)},m.checkPattern64=function(){m.patternCheck(m.patterns.pt64)},m.checkPattern73=function(){m.patternCheck(m.patterns.pt73)},function(e){return"function"==typeof e.update?e.update(function(e){return m.setCurrent(e),m.stem(),m.getCurrent()}):(m.setCurrent(e),m.stem(),m.getCurrent())}}(),e.Pipeline.registerFunction(e.ar.stemmer,"stemmer-ar"),e.ar.stopWordFilter=e.generateStopWordFilter("ØŒ اض امين اه اها اي ا اب اجل اجمع اخ اخذ Ø§ØµØ¨Ø Ø§Ø¶ØÙ‰ اقبل اقل اكثر الا ام اما امامك امامك امسى اما ان انا انت انتم انتما انتن انت انشا انى او اوشك اولئك اولئكم اولاء اولالك اوه اي ايا اين اينما اي ان اي ا٠اذ اذا اذا اذما اذن الى اليكم اليكما اليكن اليك اليك الا اما ان انما اي اياك اياكم اياكما اياكن ايانا اياه اياها اياهم اياهما اياهن اياي ايه ان ا ابتدا اثر اجل اØد اخرى اخلولق اذا اربعة ارتد استØال اطار اعادة اعلنت ا٠اكثر اكد الالاء الالى الا الاخيرة الان الاول الاولى التى التي الثاني الثانية الذاتي الذى الذي الذين السابق ال٠اللائي اللاتي اللتان اللتيا اللتين اللذان اللذين اللواتي الماضي المقبل الوقت الى اليوم اما امام امس ان انبرى انقلب انه انها او اول اي ايار ايام ايضا ب بات باسم بان بخ برس بسبب بس بشكل بضع بطان بعد بعض بك بكم بكما بكن بل بلى بما بماذا بمن بن بنا به بها بي بيد بين بس بله بئس تان تانك تبدل تجاه تØول تلقاء تلك تلكم تلكما تم تينك تين ته تي ثلاثة ثم ثم ثمة ثم جعل جلل جميع جير Øار Øاشا Øاليا Øاي Øتى Øرى Øسب ØÙ… Øوالى Øول Øيث Øيثما Øين ØÙŠ Øبذا Øتى Øذار خلا خلال دون دونك ذا ذات ذاك ذانك ذان ذلك ذلكم ذلكما ذلكن ذو ذوا ذواتا ذواتي ذيت ذينك ذين ذه ذي Ø±Ø§Ø Ø±Ø¬Ø¹ رويدك ريث رب زيارة سبØان سرعان سنة سنوات سو٠سوى ساء ساءما شبه شخصا شرع شتان صار ØµØ¨Ø§Ø ØµÙر صه صه ضد ضمن طاق طالما Ø·ÙÙ‚ طق ظل عاد عام عاما عامة عدا عدة عدد عدم عسى عشر عشرة علق على عليك عليه عليها عل عن عند عندما عوض عين عدس عما غدا غير Ù Ùان Ùلان ÙÙˆ ÙÙ‰ ÙÙŠ Ùيم Ùيما Ùيه Ùيها قال قام قبل قد قط قلما قوة كانما كاين كاي كاين كاد كان كانت كذا كذلك كرب كل كلا كلاهما كلتا كلم كليكما كليهما كلما كلا كم كما كي كيت كي٠كيÙما كان كخ لئن لا لات لاسيما لدن لدى لعمر لقاء لك لكم لكما لكن لكنما لكي لكيلا للامم لم لما لما لن لنا له لها لو لوكالة لولا لوما لي لست لست لستم لستما لستن لست لسن لعل لكن ليت ليس ليسا ليستا ليست ليسوا لسنا ما ماانÙÙƒ Ù…Ø§Ø¨Ø±Ø Ù…Ø§Ø¯Ø§Ù… ماذا مازال ماÙتئ مايو متى مثل مذ مساء مع معاذ مقابل مكانكم مكانكما مكانكن مكانك مليار مليون مما ممن من منذ منها مه مهما من من Ù†ØÙ† Ù†ØÙˆ نعم Ù†Ùس Ù†Ùسه نهاية نخ نعما نعم ها هاؤم هاك هاهنا هب هذا هذه هكذا هل هلم هلا هم هما هن هنا هناك هنالك هو هي هيا هيت هيا هؤلاء هاتان هاتين هاته هاتي هج هذا هذان هذين هذه هذي هيهات وا واØد واضا٠واضاÙت واكد وان واها ÙˆØ§ÙˆØ¶Ø ÙˆØ±Ø§Ø¡Ùƒ ÙˆÙÙŠ وقال وقالت وقد وق٠وكان وكانت ولا ولم ومن وهو وهي ويكان وي وشكان يكون يمكن يوم ايان".split(" ")),e.Pipeline.registerFunction(e.ar.stopWordFilter,"stopWordFilter-ar")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.da.js b/site/assets/javascripts/lunr/lunr.da.js deleted file mode 100644 index 88921d40c1ce309b6dd72835045aa671c423d1b2..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.da.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Danish` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var r,m,i;e.da=function(){this.pipeline.reset(),this.pipeline.add(e.da.trimmer,e.da.stopWordFilter,e.da.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.da.stemmer))},e.da.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.da.trimmer=e.trimmerSupport.generateTrimmer(e.da.wordCharacters),e.Pipeline.registerFunction(e.da.trimmer,"trimmer-da"),e.da.stemmer=(r=e.stemmerSupport.Among,m=e.stemmerSupport.SnowballProgram,i=new function(){var i,t,n,s=[new r("hed",-1,1),new r("ethed",0,1),new r("ered",-1,1),new r("e",-1,1),new r("erede",3,1),new r("ende",3,1),new r("erende",5,1),new r("ene",3,1),new r("erne",3,1),new r("ere",3,1),new r("en",-1,1),new r("heden",10,1),new r("eren",10,1),new r("er",-1,1),new r("heder",13,1),new r("erer",13,1),new r("s",-1,2),new r("heds",16,1),new r("es",16,1),new r("endes",18,1),new r("erendes",19,1),new r("enes",18,1),new r("ernes",18,1),new r("eres",18,1),new r("ens",16,1),new r("hedens",24,1),new r("erens",24,1),new r("ers",16,1),new r("ets",16,1),new r("erets",28,1),new r("et",-1,1),new r("eret",30,1)],o=[new r("gd",-1,-1),new r("dt",-1,-1),new r("gt",-1,-1),new r("kt",-1,-1)],a=[new r("ig",-1,1),new r("lig",0,1),new r("elig",1,1),new r("els",-1,1),new r("løst",-1,2)],d=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,48,0,128],u=[239,254,42,3,0,0,0,0,0,0,0,0,0,0,0,0,16],c=new m;function l(){var e,r=c.limit-c.cursor;c.cursor>=t&&(e=c.limit_backward,c.limit_backward=t,c.ket=c.cursor,c.find_among_b(o,4)?(c.bra=c.cursor,c.limit_backward=e,c.cursor=c.limit-r,c.cursor>c.limit_backward&&(c.cursor--,c.bra=c.cursor,c.slice_del())):c.limit_backward=e)}this.setCurrent=function(e){c.setCurrent(e)},this.getCurrent=function(){return c.getCurrent()},this.stem=function(){var e,r=c.cursor;return function(){var e,r=c.cursor+3;if(t=c.limit,0<=r&&r<=c.limit){for(i=r;;){if(e=c.cursor,c.in_grouping(d,97,248)){c.cursor=e;break}if((c.cursor=e)>=c.limit)return;c.cursor++}for(;!c.out_grouping(d,97,248);){if(c.cursor>=c.limit)return;c.cursor++}(t=c.cursor)<i&&(t=i)}}(),c.limit_backward=r,c.cursor=c.limit,function(){var e,r;if(c.cursor>=t&&(r=c.limit_backward,c.limit_backward=t,c.ket=c.cursor,e=c.find_among_b(s,32),c.limit_backward=r,e))switch(c.bra=c.cursor,e){case 1:c.slice_del();break;case 2:c.in_grouping_b(u,97,229)&&c.slice_del()}}(),c.cursor=c.limit,l(),c.cursor=c.limit,function(){var e,r,i,n=c.limit-c.cursor;if(c.ket=c.cursor,c.eq_s_b(2,"st")&&(c.bra=c.cursor,c.eq_s_b(2,"ig")&&c.slice_del()),c.cursor=c.limit-n,c.cursor>=t&&(r=c.limit_backward,c.limit_backward=t,c.ket=c.cursor,e=c.find_among_b(a,5),c.limit_backward=r,e))switch(c.bra=c.cursor,e){case 1:c.slice_del(),i=c.limit-c.cursor,l(),c.cursor=c.limit-i;break;case 2:c.slice_from("løs")}}(),c.cursor=c.limit,c.cursor>=t&&(e=c.limit_backward,c.limit_backward=t,c.ket=c.cursor,c.out_grouping_b(d,97,248)?(c.bra=c.cursor,n=c.slice_to(n),c.limit_backward=e,c.eq_v_b(n)&&c.slice_del()):c.limit_backward=e),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}),e.Pipeline.registerFunction(e.da.stemmer,"stemmer-da"),e.da.stopWordFilter=e.generateStopWordFilter("ad af alle alt anden at blev blive bliver da de dem den denne der deres det dette dig din disse dog du efter eller en end er et for fra ham han hans har havde have hende hendes her hos hun hvad hvis hvor i ikke ind jeg jer jo kunne man mange med meget men mig min mine mit mod ned noget nogle nu nÃ¥r og ogsÃ¥ om op os over pÃ¥ selv sig sin sine sit skal skulle som sÃ¥dan thi til ud under var vi vil ville vor være været".split(" ")),e.Pipeline.registerFunction(e.da.stopWordFilter,"stopWordFilter-da")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.de.js b/site/assets/javascripts/lunr/lunr.de.js deleted file mode 100644 index 73e55eb09adf383f4b5909a35195a7f4bffe7d13..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.de.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `German` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var _,p,r;e.de=function(){this.pipeline.reset(),this.pipeline.add(e.de.trimmer,e.de.stopWordFilter,e.de.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.de.stemmer))},e.de.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.de.trimmer=e.trimmerSupport.generateTrimmer(e.de.wordCharacters),e.Pipeline.registerFunction(e.de.trimmer,"trimmer-de"),e.de.stemmer=(_=e.stemmerSupport.Among,p=e.stemmerSupport.SnowballProgram,r=new function(){var r,n,i,s=[new _("",-1,6),new _("U",0,2),new _("Y",0,1),new _("ä",0,3),new _("ö",0,4),new _("ü",0,5)],o=[new _("e",-1,2),new _("em",-1,1),new _("en",-1,2),new _("ern",-1,1),new _("er",-1,1),new _("s",-1,3),new _("es",5,2)],c=[new _("en",-1,1),new _("er",-1,1),new _("st",-1,2),new _("est",2,1)],u=[new _("ig",-1,1),new _("lich",-1,1)],a=[new _("end",-1,1),new _("ig",-1,2),new _("ung",-1,1),new _("lich",-1,3),new _("isch",-1,2),new _("ik",-1,2),new _("heit",-1,3),new _("keit",-1,4)],t=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32,8],d=[117,30,5],l=[117,30,4],m=new p;function h(e,r,n){return!(!m.eq_s(1,e)||(m.ket=m.cursor,!m.in_grouping(t,97,252)))&&(m.slice_from(r),m.cursor=n,!0)}function w(){for(;!m.in_grouping(t,97,252);){if(m.cursor>=m.limit)return!0;m.cursor++}for(;!m.out_grouping(t,97,252);){if(m.cursor>=m.limit)return!0;m.cursor++}return!1}function f(){return i<=m.cursor}function b(){return n<=m.cursor}this.setCurrent=function(e){m.setCurrent(e)},this.getCurrent=function(){return m.getCurrent()},this.stem=function(){var e=m.cursor;return function(){for(var e,r,n,i,s=m.cursor;;)if(e=m.cursor,m.bra=e,m.eq_s(1,"ß"))m.ket=m.cursor,m.slice_from("ss");else{if(e>=m.limit)break;m.cursor=e+1}for(m.cursor=s;;)for(r=m.cursor;;){if(n=m.cursor,m.in_grouping(t,97,252)){if(i=m.cursor,m.bra=i,h("u","U",n))break;if(m.cursor=i,h("y","Y",n))break}if(n>=m.limit)return m.cursor=r;m.cursor=n+1}}(),m.cursor=e,function(){i=m.limit,n=i;var e=m.cursor+3;0<=e&&e<=m.limit&&(r=e,w()||((i=m.cursor)<r&&(i=r),w()||(n=m.cursor)))}(),m.limit_backward=e,m.cursor=m.limit,function(){var e,r,n,i,s=m.limit-m.cursor;if(m.ket=m.cursor,(e=m.find_among_b(o,7))&&(m.bra=m.cursor,f()))switch(e){case 1:m.slice_del();break;case 2:m.slice_del(),m.ket=m.cursor,m.eq_s_b(1,"s")&&(m.bra=m.cursor,m.eq_s_b(3,"nis")&&m.slice_del());break;case 3:m.in_grouping_b(d,98,116)&&m.slice_del()}if(m.cursor=m.limit-s,m.ket=m.cursor,(e=m.find_among_b(c,4))&&(m.bra=m.cursor,f()))switch(e){case 1:m.slice_del();break;case 2:if(m.in_grouping_b(l,98,116)){var t=m.cursor-3;m.limit_backward<=t&&t<=m.limit&&(m.cursor=t,m.slice_del())}}if(m.cursor=m.limit-s,m.ket=m.cursor,(e=m.find_among_b(a,8))&&(m.bra=m.cursor,b()))switch(e){case 1:m.slice_del(),m.ket=m.cursor,m.eq_s_b(2,"ig")&&(m.bra=m.cursor,r=m.limit-m.cursor,m.eq_s_b(1,"e")||(m.cursor=m.limit-r,b()&&m.slice_del()));break;case 2:n=m.limit-m.cursor,m.eq_s_b(1,"e")||(m.cursor=m.limit-n,m.slice_del());break;case 3:if(m.slice_del(),m.ket=m.cursor,i=m.limit-m.cursor,!m.eq_s_b(2,"er")&&(m.cursor=m.limit-i,!m.eq_s_b(2,"en")))break;m.bra=m.cursor,f()&&m.slice_del();break;case 4:m.slice_del(),m.ket=m.cursor,(e=m.find_among_b(u,2))&&(m.bra=m.cursor,b()&&1==e&&m.slice_del())}}(),m.cursor=m.limit_backward,function(){for(var e,r;;){if(r=m.cursor,m.bra=r,!(e=m.find_among(s,6)))return;switch(m.ket=m.cursor,e){case 1:m.slice_from("y");break;case 2:case 5:m.slice_from("u");break;case 3:m.slice_from("a");break;case 4:m.slice_from("o");break;case 6:if(m.cursor>=m.limit)return;m.cursor++}}}(),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return r.setCurrent(e),r.stem(),r.getCurrent()}):(r.setCurrent(e),r.stem(),r.getCurrent())}),e.Pipeline.registerFunction(e.de.stemmer,"stemmer-de"),e.de.stopWordFilter=e.generateStopWordFilter("aber alle allem allen aller alles als also am an ander andere anderem anderen anderer anderes anderm andern anderr anders auch auf aus bei bin bis bist da damit dann das dasselbe dazu daß dein deine deinem deinen deiner deines dem demselben den denn denselben der derer derselbe derselben des desselben dessen dich die dies diese dieselbe dieselben diesem diesen dieser dieses dir doch dort du durch ein eine einem einen einer eines einig einige einigem einigen einiger einiges einmal er es etwas euch euer eure eurem euren eurer eures für gegen gewesen hab habe haben hat hatte hatten hier hin hinter ich ihm ihn ihnen ihr ihre ihrem ihren ihrer ihres im in indem ins ist jede jedem jeden jeder jedes jene jenem jenen jener jenes jetzt kann kein keine keinem keinen keiner keines können könnte machen man manche manchem manchen mancher manches mein meine meinem meinen meiner meines mich mir mit muss musste nach nicht nichts noch nun nur ob oder ohne sehr sein seine seinem seinen seiner seines selbst sich sie sind so solche solchem solchen solcher solches soll sollte sondern sonst um und uns unse unsem unsen unser unses unter viel vom von vor war waren warst was weg weil weiter welche welchem welchen welcher welches wenn werde werden wie wieder will wir wird wirst wo wollen wollte während würde würden zu zum zur zwar zwischen über".split(" ")),e.Pipeline.registerFunction(e.de.stopWordFilter,"stopWordFilter-de")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.du.js b/site/assets/javascripts/lunr/lunr.du.js deleted file mode 100644 index e9c67299810394e2bd6625929da6e19d6283f575..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.du.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Dutch` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var v,q,r;console.warn('[Lunr Languages] Please use the "nl" instead of the "du". The "nl" code is the standard code for Dutch language, and "du" will be removed in the next major versions.'),e.du=function(){this.pipeline.reset(),this.pipeline.add(e.du.trimmer,e.du.stopWordFilter,e.du.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.du.stemmer))},e.du.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.du.trimmer=e.trimmerSupport.generateTrimmer(e.du.wordCharacters),e.Pipeline.registerFunction(e.du.trimmer,"trimmer-du"),e.du.stemmer=(v=e.stemmerSupport.Among,q=e.stemmerSupport.SnowballProgram,r=new function(){var r,i,u,o=[new v("",-1,6),new v("á",0,1),new v("ä",0,1),new v("é",0,2),new v("ë",0,2),new v("Ã",0,3),new v("ï",0,3),new v("ó",0,4),new v("ö",0,4),new v("ú",0,5),new v("ü",0,5)],n=[new v("",-1,3),new v("I",0,2),new v("Y",0,1)],t=[new v("dd",-1,-1),new v("kk",-1,-1),new v("tt",-1,-1)],c=[new v("ene",-1,2),new v("se",-1,3),new v("en",-1,2),new v("heden",2,1),new v("s",-1,3)],a=[new v("end",-1,1),new v("ig",-1,2),new v("ing",-1,1),new v("lijk",-1,3),new v("baar",-1,4),new v("bar",-1,5)],l=[new v("aa",-1,-1),new v("ee",-1,-1),new v("oo",-1,-1),new v("uu",-1,-1)],m=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],d=[1,0,0,17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],f=[17,67,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],_=new q;function s(e){return(_.cursor=e)>=_.limit||(_.cursor++,!1)}function w(){for(;!_.in_grouping(m,97,232);){if(_.cursor>=_.limit)return!0;_.cursor++}for(;!_.out_grouping(m,97,232);){if(_.cursor>=_.limit)return!0;_.cursor++}return!1}function b(){return i<=_.cursor}function p(){return r<=_.cursor}function g(){var e=_.limit-_.cursor;_.find_among_b(t,3)&&(_.cursor=_.limit-e,_.ket=_.cursor,_.cursor>_.limit_backward&&(_.cursor--,_.bra=_.cursor,_.slice_del()))}function h(){var e;u=!1,_.ket=_.cursor,_.eq_s_b(1,"e")&&(_.bra=_.cursor,b()&&(e=_.limit-_.cursor,_.out_grouping_b(m,97,232)&&(_.cursor=_.limit-e,_.slice_del(),u=!0,g())))}function k(){var e;b()&&(e=_.limit-_.cursor,_.out_grouping_b(m,97,232)&&(_.cursor=_.limit-e,_.eq_s_b(3,"gem")||(_.cursor=_.limit-e,_.slice_del(),g())))}this.setCurrent=function(e){_.setCurrent(e)},this.getCurrent=function(){return _.getCurrent()},this.stem=function(){var e=_.cursor;return function(){for(var e,r,i,n=_.cursor;;){if(_.bra=_.cursor,e=_.find_among(o,11))switch(_.ket=_.cursor,e){case 1:_.slice_from("a");continue;case 2:_.slice_from("e");continue;case 3:_.slice_from("i");continue;case 4:_.slice_from("o");continue;case 5:_.slice_from("u");continue;case 6:if(_.cursor>=_.limit)break;_.cursor++;continue}break}for(_.cursor=n,_.bra=n,_.eq_s(1,"y")?(_.ket=_.cursor,_.slice_from("Y")):_.cursor=n;;)if(r=_.cursor,_.in_grouping(m,97,232)){if(i=_.cursor,_.bra=i,_.eq_s(1,"i"))_.ket=_.cursor,_.in_grouping(m,97,232)&&(_.slice_from("I"),_.cursor=r);else if(_.cursor=i,_.eq_s(1,"y"))_.ket=_.cursor,_.slice_from("Y"),_.cursor=r;else if(s(r))break}else if(s(r))break}(),_.cursor=e,i=_.limit,r=i,w()||((i=_.cursor)<3&&(i=3),w()||(r=_.cursor)),_.limit_backward=e,_.cursor=_.limit,function(){var e,r,i,n,o,t,s=_.limit-_.cursor;if(_.ket=_.cursor,e=_.find_among_b(c,5))switch(_.bra=_.cursor,e){case 1:b()&&_.slice_from("heid");break;case 2:k();break;case 3:b()&&_.out_grouping_b(f,97,232)&&_.slice_del()}if(_.cursor=_.limit-s,h(),_.cursor=_.limit-s,_.ket=_.cursor,_.eq_s_b(4,"heid")&&(_.bra=_.cursor,p()&&(r=_.limit-_.cursor,_.eq_s_b(1,"c")||(_.cursor=_.limit-r,_.slice_del(),_.ket=_.cursor,_.eq_s_b(2,"en")&&(_.bra=_.cursor,k())))),_.cursor=_.limit-s,_.ket=_.cursor,e=_.find_among_b(a,6))switch(_.bra=_.cursor,e){case 1:if(p()){if(_.slice_del(),i=_.limit-_.cursor,_.ket=_.cursor,_.eq_s_b(2,"ig")&&(_.bra=_.cursor,p()&&(n=_.limit-_.cursor,!_.eq_s_b(1,"e")))){_.cursor=_.limit-n,_.slice_del();break}_.cursor=_.limit-i,g()}break;case 2:p()&&(o=_.limit-_.cursor,_.eq_s_b(1,"e")||(_.cursor=_.limit-o,_.slice_del()));break;case 3:p()&&(_.slice_del(),h());break;case 4:p()&&_.slice_del();break;case 5:p()&&u&&_.slice_del()}_.cursor=_.limit-s,_.out_grouping_b(d,73,232)&&(t=_.limit-_.cursor,_.find_among_b(l,4)&&_.out_grouping_b(m,97,232)&&(_.cursor=_.limit-t,_.ket=_.cursor,_.cursor>_.limit_backward&&(_.cursor--,_.bra=_.cursor,_.slice_del())))}(),_.cursor=_.limit_backward,function(){for(var e;;)if(_.bra=_.cursor,e=_.find_among(n,3))switch(_.ket=_.cursor,e){case 1:_.slice_from("y");break;case 2:_.slice_from("i");break;case 3:if(_.cursor>=_.limit)return;_.cursor++}}(),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return r.setCurrent(e),r.stem(),r.getCurrent()}):(r.setCurrent(e),r.stem(),r.getCurrent())}),e.Pipeline.registerFunction(e.du.stemmer,"stemmer-du"),e.du.stopWordFilter=e.generateStopWordFilter(" aan al alles als altijd andere ben bij daar dan dat de der deze die dit doch doen door dus een eens en er ge geen geweest haar had heb hebben heeft hem het hier hij hoe hun iemand iets ik in is ja je kan kon kunnen maar me meer men met mij mijn moet na naar niet niets nog nu of om omdat onder ons ook op over reeds te tegen toch toen tot u uit uw van veel voor want waren was wat werd wezen wie wil worden wordt zal ze zelf zich zij zijn zo zonder zou".split(" ")),e.Pipeline.registerFunction(e.du.stopWordFilter,"stopWordFilter-du")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.es.js b/site/assets/javascripts/lunr/lunr.es.js deleted file mode 100644 index 2918bd19e8ae3a2bef7d010675ad8c06a478a349..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.es.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Spanish` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,s){"function"==typeof define&&define.amd?define(s):"object"==typeof exports?module.exports=s():s()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var C,P,s;e.es=function(){this.pipeline.reset(),this.pipeline.add(e.es.trimmer,e.es.stopWordFilter,e.es.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.es.stemmer))},e.es.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.es.trimmer=e.trimmerSupport.generateTrimmer(e.es.wordCharacters),e.Pipeline.registerFunction(e.es.trimmer,"trimmer-es"),e.es.stemmer=(C=e.stemmerSupport.Among,P=e.stemmerSupport.SnowballProgram,s=new function(){var r,n,i,a=[new C("",-1,6),new C("á",0,1),new C("é",0,2),new C("Ã",0,3),new C("ó",0,4),new C("ú",0,5)],t=[new C("la",-1,-1),new C("sela",0,-1),new C("le",-1,-1),new C("me",-1,-1),new C("se",-1,-1),new C("lo",-1,-1),new C("selo",5,-1),new C("las",-1,-1),new C("selas",7,-1),new C("les",-1,-1),new C("los",-1,-1),new C("selos",10,-1),new C("nos",-1,-1)],o=[new C("ando",-1,6),new C("iendo",-1,6),new C("yendo",-1,7),new C("ándo",-1,2),new C("iéndo",-1,1),new C("ar",-1,6),new C("er",-1,6),new C("ir",-1,6),new C("ár",-1,3),new C("ér",-1,4),new C("Ãr",-1,5)],s=[new C("ic",-1,-1),new C("ad",-1,-1),new C("os",-1,-1),new C("iv",-1,1)],u=[new C("able",-1,1),new C("ible",-1,1),new C("ante",-1,1)],w=[new C("ic",-1,1),new C("abil",-1,1),new C("iv",-1,1)],c=[new C("ica",-1,1),new C("ancia",-1,2),new C("encia",-1,5),new C("adora",-1,2),new C("osa",-1,1),new C("ista",-1,1),new C("iva",-1,9),new C("anza",-1,1),new C("logÃa",-1,3),new C("idad",-1,8),new C("able",-1,1),new C("ible",-1,1),new C("ante",-1,2),new C("mente",-1,7),new C("amente",13,6),new C("ación",-1,2),new C("ución",-1,4),new C("ico",-1,1),new C("ismo",-1,1),new C("oso",-1,1),new C("amiento",-1,1),new C("imiento",-1,1),new C("ivo",-1,9),new C("ador",-1,2),new C("icas",-1,1),new C("ancias",-1,2),new C("encias",-1,5),new C("adoras",-1,2),new C("osas",-1,1),new C("istas",-1,1),new C("ivas",-1,9),new C("anzas",-1,1),new C("logÃas",-1,3),new C("idades",-1,8),new C("ables",-1,1),new C("ibles",-1,1),new C("aciones",-1,2),new C("uciones",-1,4),new C("adores",-1,2),new C("antes",-1,2),new C("icos",-1,1),new C("ismos",-1,1),new C("osos",-1,1),new C("amientos",-1,1),new C("imientos",-1,1),new C("ivos",-1,9)],m=[new C("ya",-1,1),new C("ye",-1,1),new C("yan",-1,1),new C("yen",-1,1),new C("yeron",-1,1),new C("yendo",-1,1),new C("yo",-1,1),new C("yas",-1,1),new C("yes",-1,1),new C("yais",-1,1),new C("yamos",-1,1),new C("yó",-1,1)],l=[new C("aba",-1,2),new C("ada",-1,2),new C("ida",-1,2),new C("ara",-1,2),new C("iera",-1,2),new C("Ãa",-1,2),new C("arÃa",5,2),new C("erÃa",5,2),new C("irÃa",5,2),new C("ad",-1,2),new C("ed",-1,2),new C("id",-1,2),new C("ase",-1,2),new C("iese",-1,2),new C("aste",-1,2),new C("iste",-1,2),new C("an",-1,2),new C("aban",16,2),new C("aran",16,2),new C("ieran",16,2),new C("Ãan",16,2),new C("arÃan",20,2),new C("erÃan",20,2),new C("irÃan",20,2),new C("en",-1,1),new C("asen",24,2),new C("iesen",24,2),new C("aron",-1,2),new C("ieron",-1,2),new C("arán",-1,2),new C("erán",-1,2),new C("irán",-1,2),new C("ado",-1,2),new C("ido",-1,2),new C("ando",-1,2),new C("iendo",-1,2),new C("ar",-1,2),new C("er",-1,2),new C("ir",-1,2),new C("as",-1,2),new C("abas",39,2),new C("adas",39,2),new C("idas",39,2),new C("aras",39,2),new C("ieras",39,2),new C("Ãas",39,2),new C("arÃas",45,2),new C("erÃas",45,2),new C("irÃas",45,2),new C("es",-1,1),new C("ases",49,2),new C("ieses",49,2),new C("abais",-1,2),new C("arais",-1,2),new C("ierais",-1,2),new C("Ãais",-1,2),new C("arÃais",55,2),new C("erÃais",55,2),new C("irÃais",55,2),new C("aseis",-1,2),new C("ieseis",-1,2),new C("asteis",-1,2),new C("isteis",-1,2),new C("áis",-1,2),new C("éis",-1,1),new C("aréis",64,2),new C("eréis",64,2),new C("iréis",64,2),new C("ados",-1,2),new C("idos",-1,2),new C("amos",-1,2),new C("ábamos",70,2),new C("áramos",70,2),new C("iéramos",70,2),new C("Ãamos",70,2),new C("arÃamos",74,2),new C("erÃamos",74,2),new C("irÃamos",74,2),new C("emos",-1,1),new C("aremos",78,2),new C("eremos",78,2),new C("iremos",78,2),new C("ásemos",78,2),new C("iésemos",78,2),new C("imos",-1,2),new C("arás",-1,2),new C("erás",-1,2),new C("irás",-1,2),new C("Ãs",-1,2),new C("ará",-1,2),new C("erá",-1,2),new C("irá",-1,2),new C("aré",-1,2),new C("eré",-1,2),new C("iré",-1,2),new C("ió",-1,2)],d=[new C("a",-1,1),new C("e",-1,2),new C("o",-1,1),new C("os",-1,1),new C("á",-1,1),new C("é",-1,2),new C("Ã",-1,1),new C("ó",-1,1)],b=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,4,10],f=new P;function _(){if(f.out_grouping(b,97,252)){for(;!f.in_grouping(b,97,252);){if(f.cursor>=f.limit)return!0;f.cursor++}return!1}return!0}function h(){var e,s=f.cursor;if(function(){if(f.in_grouping(b,97,252)){var e=f.cursor;if(_()){if(f.cursor=e,!f.in_grouping(b,97,252))return!0;for(;!f.out_grouping(b,97,252);){if(f.cursor>=f.limit)return!0;f.cursor++}}return!1}return!0}()){if(f.cursor=s,!f.out_grouping(b,97,252))return;if(e=f.cursor,_()){if(f.cursor=e,!f.in_grouping(b,97,252)||f.cursor>=f.limit)return;f.cursor++}}i=f.cursor}function v(){for(;!f.in_grouping(b,97,252);){if(f.cursor>=f.limit)return!1;f.cursor++}for(;!f.out_grouping(b,97,252);){if(f.cursor>=f.limit)return!1;f.cursor++}return!0}function p(){return i<=f.cursor}function g(){return r<=f.cursor}function k(e,s){if(!g())return!0;f.slice_del(),f.ket=f.cursor;var r=f.find_among_b(e,s);return r&&(f.bra=f.cursor,1==r&&g()&&f.slice_del()),!1}function y(e){return!g()||(f.slice_del(),f.ket=f.cursor,f.eq_s_b(2,e)&&(f.bra=f.cursor,g()&&f.slice_del()),!1)}function q(){var e;if(f.ket=f.cursor,e=f.find_among_b(c,46)){switch(f.bra=f.cursor,e){case 1:if(!g())return!1;f.slice_del();break;case 2:if(y("ic"))return!1;break;case 3:if(!g())return!1;f.slice_from("log");break;case 4:if(!g())return!1;f.slice_from("u");break;case 5:if(!g())return!1;f.slice_from("ente");break;case 6:if(!(n<=f.cursor))return!1;f.slice_del(),f.ket=f.cursor,(e=f.find_among_b(s,4))&&(f.bra=f.cursor,g()&&(f.slice_del(),1==e&&(f.ket=f.cursor,f.eq_s_b(2,"at")&&(f.bra=f.cursor,g()&&f.slice_del()))));break;case 7:if(k(u,3))return!1;break;case 8:if(k(w,3))return!1;break;case 9:if(y("at"))return!1}return!0}return!1}this.setCurrent=function(e){f.setCurrent(e)},this.getCurrent=function(){return f.getCurrent()},this.stem=function(){var e,s=f.cursor;return e=f.cursor,i=f.limit,r=n=i,h(),f.cursor=e,v()&&(n=f.cursor,v()&&(r=f.cursor)),f.limit_backward=s,f.cursor=f.limit,function(){var e;if(f.ket=f.cursor,f.find_among_b(t,13)&&(f.bra=f.cursor,(e=f.find_among_b(o,11))&&p()))switch(e){case 1:f.bra=f.cursor,f.slice_from("iendo");break;case 2:f.bra=f.cursor,f.slice_from("ando");break;case 3:f.bra=f.cursor,f.slice_from("ar");break;case 4:f.bra=f.cursor,f.slice_from("er");break;case 5:f.bra=f.cursor,f.slice_from("ir");break;case 6:f.slice_del();break;case 7:f.eq_s_b(1,"u")&&f.slice_del()}}(),f.cursor=f.limit,q()||(f.cursor=f.limit,function(){var e,s;if(f.cursor>=i&&(s=f.limit_backward,f.limit_backward=i,f.ket=f.cursor,e=f.find_among_b(m,12),f.limit_backward=s,e)){if(f.bra=f.cursor,1==e){if(!f.eq_s_b(1,"u"))return!1;f.slice_del()}return!0}return!1}()||(f.cursor=f.limit,function(){var e,s,r,n;if(f.cursor>=i&&(s=f.limit_backward,f.limit_backward=i,f.ket=f.cursor,e=f.find_among_b(l,96),f.limit_backward=s,e))switch(f.bra=f.cursor,e){case 1:r=f.limit-f.cursor,f.eq_s_b(1,"u")?(n=f.limit-f.cursor,f.eq_s_b(1,"g")?f.cursor=f.limit-n:f.cursor=f.limit-r):f.cursor=f.limit-r,f.bra=f.cursor;case 2:f.slice_del()}}())),f.cursor=f.limit,function(){var e,s;if(f.ket=f.cursor,e=f.find_among_b(d,8))switch(f.bra=f.cursor,e){case 1:p()&&f.slice_del();break;case 2:p()&&(f.slice_del(),f.ket=f.cursor,f.eq_s_b(1,"u")&&(f.bra=f.cursor,s=f.limit-f.cursor,f.eq_s_b(1,"g")&&(f.cursor=f.limit-s,p()&&f.slice_del())))}}(),f.cursor=f.limit_backward,function(){for(var e;;){if(f.bra=f.cursor,e=f.find_among(a,6))switch(f.ket=f.cursor,e){case 1:f.slice_from("a");continue;case 2:f.slice_from("e");continue;case 3:f.slice_from("i");continue;case 4:f.slice_from("o");continue;case 5:f.slice_from("u");continue;case 6:if(f.cursor>=f.limit)break;f.cursor++;continue}break}}(),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return s.setCurrent(e),s.stem(),s.getCurrent()}):(s.setCurrent(e),s.stem(),s.getCurrent())}),e.Pipeline.registerFunction(e.es.stemmer,"stemmer-es"),e.es.stopWordFilter=e.generateStopWordFilter("a al algo algunas algunos ante antes como con contra cual cuando de del desde donde durante e el ella ellas ellos en entre era erais eran eras eres es esa esas ese eso esos esta estaba estabais estaban estabas estad estada estadas estado estados estamos estando estar estaremos estará estarán estarás estaré estaréis estarÃa estarÃais estarÃamos estarÃan estarÃas estas este estemos esto estos estoy estuve estuviera estuvierais estuvieran estuvieras estuvieron estuviese estuvieseis estuviesen estuvieses estuvimos estuviste estuvisteis estuviéramos estuviésemos estuvo está estábamos estáis están estás esté estéis estén estés fue fuera fuerais fueran fueras fueron fuese fueseis fuesen fueses fui fuimos fuiste fuisteis fuéramos fuésemos ha habida habidas habido habidos habiendo habremos habrá habrán habrás habré habréis habrÃa habrÃais habrÃamos habrÃan habrÃas habéis habÃa habÃais habÃamos habÃan habÃas han has hasta hay haya hayamos hayan hayas hayáis he hemos hube hubiera hubierais hubieran hubieras hubieron hubiese hubieseis hubiesen hubieses hubimos hubiste hubisteis hubiéramos hubiésemos hubo la las le les lo los me mi mis mucho muchos muy más mà mÃa mÃas mÃo mÃos nada ni no nos nosotras nosotros nuestra nuestras nuestro nuestros o os otra otras otro otros para pero poco por porque que quien quienes qué se sea seamos sean seas seremos será serán serás seré seréis serÃa serÃais serÃamos serÃan serÃas seáis sido siendo sin sobre sois somos son soy su sus suya suyas suyo suyos sà también tanto te tendremos tendrá tendrán tendrás tendré tendréis tendrÃa tendrÃais tendrÃamos tendrÃan tendrÃas tened tenemos tenga tengamos tengan tengas tengo tengáis tenida tenidas tenido tenidos teniendo tenéis tenÃa tenÃais tenÃamos tenÃan tenÃas ti tiene tienen tienes todo todos tu tus tuve tuviera tuvierais tuvieran tuvieras tuvieron tuviese tuvieseis tuviesen tuvieses tuvimos tuviste tuvisteis tuviéramos tuviésemos tuvo tuya tuyas tuyo tuyos tú un una uno unos vosotras vosotros vuestra vuestras vuestro vuestros y ya yo él éramos".split(" ")),e.Pipeline.registerFunction(e.es.stopWordFilter,"stopWordFilter-es")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.fi.js b/site/assets/javascripts/lunr/lunr.fi.js deleted file mode 100644 index f34d10e0df9e93b711ed0fbfcc69f48ff9544f92..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.fi.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Finnish` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(i,e){"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports=e():e()(i.lunr)}(this,function(){return function(i){if(void 0===i)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===i.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var v,C,e;i.fi=function(){this.pipeline.reset(),this.pipeline.add(i.fi.trimmer,i.fi.stopWordFilter,i.fi.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(i.fi.stemmer))},i.fi.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",i.fi.trimmer=i.trimmerSupport.generateTrimmer(i.fi.wordCharacters),i.Pipeline.registerFunction(i.fi.trimmer,"trimmer-fi"),i.fi.stemmer=(v=i.stemmerSupport.Among,C=i.stemmerSupport.SnowballProgram,e=new function(){var n,t,l,o,r=[new v("pa",-1,1),new v("sti",-1,2),new v("kaan",-1,1),new v("han",-1,1),new v("kin",-1,1),new v("hän",-1,1),new v("kään",-1,1),new v("ko",-1,1),new v("pä",-1,1),new v("kö",-1,1)],s=[new v("lla",-1,-1),new v("na",-1,-1),new v("ssa",-1,-1),new v("ta",-1,-1),new v("lta",3,-1),new v("sta",3,-1)],a=[new v("llä",-1,-1),new v("nä",-1,-1),new v("ssä",-1,-1),new v("tä",-1,-1),new v("ltä",3,-1),new v("stä",3,-1)],u=[new v("lle",-1,-1),new v("ine",-1,-1)],c=[new v("nsa",-1,3),new v("mme",-1,3),new v("nne",-1,3),new v("ni",-1,2),new v("si",-1,1),new v("an",-1,4),new v("en",-1,6),new v("än",-1,5),new v("nsä",-1,3)],i=[new v("aa",-1,-1),new v("ee",-1,-1),new v("ii",-1,-1),new v("oo",-1,-1),new v("uu",-1,-1),new v("ää",-1,-1),new v("öö",-1,-1)],m=[new v("a",-1,8),new v("lla",0,-1),new v("na",0,-1),new v("ssa",0,-1),new v("ta",0,-1),new v("lta",4,-1),new v("sta",4,-1),new v("tta",4,9),new v("lle",-1,-1),new v("ine",-1,-1),new v("ksi",-1,-1),new v("n",-1,7),new v("han",11,1),new v("den",11,-1,q),new v("seen",11,-1,j),new v("hen",11,2),new v("tten",11,-1,q),new v("hin",11,3),new v("siin",11,-1,q),new v("hon",11,4),new v("hän",11,5),new v("hön",11,6),new v("ä",-1,8),new v("llä",22,-1),new v("nä",22,-1),new v("ssä",22,-1),new v("tä",22,-1),new v("ltä",26,-1),new v("stä",26,-1),new v("ttä",26,9)],w=[new v("eja",-1,-1),new v("mma",-1,1),new v("imma",1,-1),new v("mpa",-1,1),new v("impa",3,-1),new v("mmi",-1,1),new v("immi",5,-1),new v("mpi",-1,1),new v("impi",7,-1),new v("ejä",-1,-1),new v("mmä",-1,1),new v("immä",10,-1),new v("mpä",-1,1),new v("impä",12,-1)],_=[new v("i",-1,-1),new v("j",-1,-1)],k=[new v("mma",-1,1),new v("imma",0,-1)],b=[17,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8],d=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32],e=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32],f=[17,97,24,1,0,0,0,0,0,0,0,0,0,0,0,0,8,0,32],h=new C;function p(){for(var i;i=h.cursor,!h.in_grouping(d,97,246);){if((h.cursor=i)>=h.limit)return!0;h.cursor++}for(h.cursor=i;!h.out_grouping(d,97,246);){if(h.cursor>=h.limit)return!0;h.cursor++}return!1}function g(){var i,e;if(h.cursor>=o)if(e=h.limit_backward,h.limit_backward=o,h.ket=h.cursor,i=h.find_among_b(r,10)){switch(h.bra=h.cursor,h.limit_backward=e,i){case 1:if(!h.in_grouping_b(f,97,246))return;break;case 2:if(!(l<=h.cursor))return}h.slice_del()}else h.limit_backward=e}function j(){return h.find_among_b(i,7)}function q(){return h.eq_s_b(1,"i")&&h.in_grouping_b(e,97,246)}this.setCurrent=function(i){h.setCurrent(i)},this.getCurrent=function(){return h.getCurrent()},this.stem=function(){var i,e=h.cursor;return o=h.limit,l=o,p()||(o=h.cursor,p()||(l=h.cursor)),n=!1,h.limit_backward=e,h.cursor=h.limit,g(),h.cursor=h.limit,function(){var i,e,r;if(h.cursor>=o)if(e=h.limit_backward,h.limit_backward=o,h.ket=h.cursor,i=h.find_among_b(c,9))switch(h.bra=h.cursor,h.limit_backward=e,i){case 1:r=h.limit-h.cursor,h.eq_s_b(1,"k")||(h.cursor=h.limit-r,h.slice_del());break;case 2:h.slice_del(),h.ket=h.cursor,h.eq_s_b(3,"kse")&&(h.bra=h.cursor,h.slice_from("ksi"));break;case 3:h.slice_del();break;case 4:h.find_among_b(s,6)&&h.slice_del();break;case 5:h.find_among_b(a,6)&&h.slice_del();break;case 6:h.find_among_b(u,2)&&h.slice_del()}else h.limit_backward=e}(),h.cursor=h.limit,function(){var i,e,r;if(h.cursor>=o)if(e=h.limit_backward,h.limit_backward=o,h.ket=h.cursor,i=h.find_among_b(m,30)){switch(h.bra=h.cursor,h.limit_backward=e,i){case 1:if(!h.eq_s_b(1,"a"))return;break;case 2:case 9:if(!h.eq_s_b(1,"e"))return;break;case 3:if(!h.eq_s_b(1,"i"))return;break;case 4:if(!h.eq_s_b(1,"o"))return;break;case 5:if(!h.eq_s_b(1,"ä"))return;break;case 6:if(!h.eq_s_b(1,"ö"))return;break;case 7:if(r=h.limit-h.cursor,!j()&&(h.cursor=h.limit-r,!h.eq_s_b(2,"ie"))){h.cursor=h.limit-r;break}if(h.cursor=h.limit-r,h.cursor<=h.limit_backward){h.cursor=h.limit-r;break}h.cursor--,h.bra=h.cursor;break;case 8:if(!h.in_grouping_b(d,97,246)||!h.out_grouping_b(d,97,246))return}h.slice_del(),n=!0}else h.limit_backward=e}(),h.cursor=h.limit,function(){var i,e,r;if(h.cursor>=l)if(e=h.limit_backward,h.limit_backward=l,h.ket=h.cursor,i=h.find_among_b(w,14)){if(h.bra=h.cursor,h.limit_backward=e,1==i){if(r=h.limit-h.cursor,h.eq_s_b(2,"po"))return;h.cursor=h.limit-r}h.slice_del()}else h.limit_backward=e}(),h.cursor=h.limit,h.cursor=(n?h.cursor>=o&&(i=h.limit_backward,h.limit_backward=o,h.ket=h.cursor,h.find_among_b(_,2)?(h.bra=h.cursor,h.limit_backward=i,h.slice_del()):h.limit_backward=i):(h.cursor=h.limit,function(){var i,e,r,n,t,s;if(h.cursor>=o){if(e=h.limit_backward,h.limit_backward=o,h.ket=h.cursor,h.eq_s_b(1,"t")&&(h.bra=h.cursor,r=h.limit-h.cursor,h.in_grouping_b(d,97,246)&&(h.cursor=h.limit-r,h.slice_del(),h.limit_backward=e,n=h.limit-h.cursor,h.cursor>=l&&(h.cursor=l,t=h.limit_backward,h.limit_backward=h.cursor,h.cursor=h.limit-n,h.ket=h.cursor,i=h.find_among_b(k,2))))){if(h.bra=h.cursor,h.limit_backward=t,1==i){if(s=h.limit-h.cursor,h.eq_s_b(2,"po"))return;h.cursor=h.limit-s}return h.slice_del()}h.limit_backward=e}}()),h.limit),function(){var i,e,r,n;if(h.cursor>=o){for(i=h.limit_backward,h.limit_backward=o,e=h.limit-h.cursor,j()&&(h.cursor=h.limit-e,h.ket=h.cursor,h.cursor>h.limit_backward&&(h.cursor--,h.bra=h.cursor,h.slice_del())),h.cursor=h.limit-e,h.ket=h.cursor,h.in_grouping_b(b,97,228)&&(h.bra=h.cursor,h.out_grouping_b(d,97,246)&&h.slice_del()),h.cursor=h.limit-e,h.ket=h.cursor,h.eq_s_b(1,"j")&&(h.bra=h.cursor,r=h.limit-h.cursor,h.eq_s_b(1,"o")?h.slice_del():(h.cursor=h.limit-r,h.eq_s_b(1,"u")&&h.slice_del())),h.cursor=h.limit-e,h.ket=h.cursor,h.eq_s_b(1,"o")&&(h.bra=h.cursor,h.eq_s_b(1,"j")&&h.slice_del()),h.cursor=h.limit-e,h.limit_backward=i;;){if(n=h.limit-h.cursor,h.out_grouping_b(d,97,246)){h.cursor=h.limit-n;break}if(h.cursor=h.limit-n,h.cursor<=h.limit_backward)return;h.cursor--}h.ket=h.cursor,h.cursor>h.limit_backward&&(h.cursor--,h.bra=h.cursor,t=h.slice_to(),h.eq_v_b(t)&&h.slice_del())}}(),!0}},function(i){return"function"==typeof i.update?i.update(function(i){return e.setCurrent(i),e.stem(),e.getCurrent()}):(e.setCurrent(i),e.stem(),e.getCurrent())}),i.Pipeline.registerFunction(i.fi.stemmer,"stemmer-fi"),i.fi.stopWordFilter=i.generateStopWordFilter("ei eivät emme en et ette että he heidän heidät heihin heille heillä heiltä heissä heistä heitä hän häneen hänelle hänellä häneltä hänen hänessä hänestä hänet häntä itse ja johon joiden joihin joiksi joilla joille joilta joina joissa joista joita joka joksi jolla jolle jolta jona jonka jos jossa josta jota jotka kanssa keiden keihin keiksi keille keillä keiltä keinä keissä keistä keitä keneen keneksi kenelle kenellä keneltä kenen kenenä kenessä kenestä kenet ketkä ketkä ketä koska kuin kuka kun me meidän meidät meihin meille meillä meiltä meissä meistä meitä mihin miksi mikä mille millä miltä minkä minkä minua minulla minulle minulta minun minussa minusta minut minuun minä minä missä mistä mitkä mitä mukaan mutta ne niiden niihin niiksi niille niillä niiltä niin niin niinä niissä niistä niitä noiden noihin noiksi noilla noille noilta noin noina noissa noista noita nuo nyt näiden näihin näiksi näille näillä näiltä näinä näissä näistä näitä nämä ole olemme olen olet olette oli olimme olin olisi olisimme olisin olisit olisitte olisivat olit olitte olivat olla olleet ollut on ovat poikki se sekä sen siihen siinä siitä siksi sille sillä sillä siltä sinua sinulla sinulle sinulta sinun sinussa sinusta sinut sinuun sinä sinä sitä tai te teidän teidät teihin teille teillä teiltä teissä teistä teitä tuo tuohon tuoksi tuolla tuolle tuolta tuon tuona tuossa tuosta tuota tähän täksi tälle tällä tältä tämä tämän tänä tässä tästä tätä vaan vai vaikka yli".split(" ")),i.Pipeline.registerFunction(i.fi.stopWordFilter,"stopWordFilter-fi")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.fr.js b/site/assets/javascripts/lunr/lunr.fr.js deleted file mode 100644 index d043ec654afa236829c415a27709da6c653b66b2..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.fr.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `French` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var r,y,s;e.fr=function(){this.pipeline.reset(),this.pipeline.add(e.fr.trimmer,e.fr.stopWordFilter,e.fr.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.fr.stemmer))},e.fr.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.fr.trimmer=e.trimmerSupport.generateTrimmer(e.fr.wordCharacters),e.Pipeline.registerFunction(e.fr.trimmer,"trimmer-fr"),e.fr.stemmer=(r=e.stemmerSupport.Among,y=e.stemmerSupport.SnowballProgram,s=new function(){var s,i,t,n=[new r("col",-1,-1),new r("par",-1,-1),new r("tap",-1,-1)],u=[new r("",-1,4),new r("I",0,1),new r("U",0,2),new r("Y",0,3)],o=[new r("iqU",-1,3),new r("abl",-1,3),new r("Ièr",-1,4),new r("ièr",-1,4),new r("eus",-1,2),new r("iv",-1,1)],c=[new r("ic",-1,2),new r("abil",-1,1),new r("iv",-1,3)],a=[new r("iqUe",-1,1),new r("atrice",-1,2),new r("ance",-1,1),new r("ence",-1,5),new r("logie",-1,3),new r("able",-1,1),new r("isme",-1,1),new r("euse",-1,11),new r("iste",-1,1),new r("ive",-1,8),new r("if",-1,8),new r("usion",-1,4),new r("ation",-1,2),new r("ution",-1,4),new r("ateur",-1,2),new r("iqUes",-1,1),new r("atrices",-1,2),new r("ances",-1,1),new r("ences",-1,5),new r("logies",-1,3),new r("ables",-1,1),new r("ismes",-1,1),new r("euses",-1,11),new r("istes",-1,1),new r("ives",-1,8),new r("ifs",-1,8),new r("usions",-1,4),new r("ations",-1,2),new r("utions",-1,4),new r("ateurs",-1,2),new r("ments",-1,15),new r("ements",30,6),new r("issements",31,12),new r("ités",-1,7),new r("ment",-1,15),new r("ement",34,6),new r("issement",35,12),new r("amment",34,13),new r("emment",34,14),new r("aux",-1,10),new r("eaux",39,9),new r("eux",-1,1),new r("ité",-1,7)],l=[new r("ira",-1,1),new r("ie",-1,1),new r("isse",-1,1),new r("issante",-1,1),new r("i",-1,1),new r("irai",4,1),new r("ir",-1,1),new r("iras",-1,1),new r("ies",-1,1),new r("îmes",-1,1),new r("isses",-1,1),new r("issantes",-1,1),new r("îtes",-1,1),new r("is",-1,1),new r("irais",13,1),new r("issais",13,1),new r("irions",-1,1),new r("issions",-1,1),new r("irons",-1,1),new r("issons",-1,1),new r("issants",-1,1),new r("it",-1,1),new r("irait",21,1),new r("issait",21,1),new r("issant",-1,1),new r("iraIent",-1,1),new r("issaIent",-1,1),new r("irent",-1,1),new r("issent",-1,1),new r("iront",-1,1),new r("ît",-1,1),new r("iriez",-1,1),new r("issiez",-1,1),new r("irez",-1,1),new r("issez",-1,1)],w=[new r("a",-1,3),new r("era",0,2),new r("asse",-1,3),new r("ante",-1,3),new r("ée",-1,2),new r("ai",-1,3),new r("erai",5,2),new r("er",-1,2),new r("as",-1,3),new r("eras",8,2),new r("âmes",-1,3),new r("asses",-1,3),new r("antes",-1,3),new r("âtes",-1,3),new r("ées",-1,2),new r("ais",-1,3),new r("erais",15,2),new r("ions",-1,1),new r("erions",17,2),new r("assions",17,3),new r("erons",-1,2),new r("ants",-1,3),new r("és",-1,2),new r("ait",-1,3),new r("erait",23,2),new r("ant",-1,3),new r("aIent",-1,3),new r("eraIent",26,2),new r("èrent",-1,2),new r("assent",-1,3),new r("eront",-1,2),new r("ât",-1,3),new r("ez",-1,2),new r("iez",32,2),new r("eriez",33,2),new r("assiez",33,3),new r("erez",32,2),new r("é",-1,2)],f=[new r("e",-1,3),new r("Ière",0,2),new r("ière",0,2),new r("ion",-1,1),new r("Ier",-1,2),new r("ier",-1,2),new r("ë",-1,4)],m=[new r("ell",-1,-1),new r("eill",-1,-1),new r("enn",-1,-1),new r("onn",-1,-1),new r("ett",-1,-1)],_=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,128,130,103,8,5],b=[1,65,20,0,0,0,0,0,0,0,0,0,0,0,0,0,128],d=new y;function k(e,r,s){return!(!d.eq_s(1,e)||(d.ket=d.cursor,!d.in_grouping(_,97,251)))&&(d.slice_from(r),d.cursor=s,!0)}function p(e,r,s){return!!d.eq_s(1,e)&&(d.ket=d.cursor,d.slice_from(r),d.cursor=s,!0)}function g(){for(;!d.in_grouping(_,97,251);){if(d.cursor>=d.limit)return!0;d.cursor++}for(;!d.out_grouping(_,97,251);){if(d.cursor>=d.limit)return!0;d.cursor++}return!1}function q(){return t<=d.cursor}function v(){return i<=d.cursor}function h(){return s<=d.cursor}function z(){if(!function(){var e,r;if(d.ket=d.cursor,e=d.find_among_b(a,43)){switch(d.bra=d.cursor,e){case 1:if(!h())return!1;d.slice_del();break;case 2:if(!h())return!1;d.slice_del(),d.ket=d.cursor,d.eq_s_b(2,"ic")&&(d.bra=d.cursor,h()?d.slice_del():d.slice_from("iqU"));break;case 3:if(!h())return!1;d.slice_from("log");break;case 4:if(!h())return!1;d.slice_from("u");break;case 5:if(!h())return!1;d.slice_from("ent");break;case 6:if(!q())return!1;if(d.slice_del(),d.ket=d.cursor,e=d.find_among_b(o,6))switch(d.bra=d.cursor,e){case 1:h()&&(d.slice_del(),d.ket=d.cursor,d.eq_s_b(2,"at")&&(d.bra=d.cursor,h()&&d.slice_del()));break;case 2:h()?d.slice_del():v()&&d.slice_from("eux");break;case 3:h()&&d.slice_del();break;case 4:q()&&d.slice_from("i")}break;case 7:if(!h())return!1;if(d.slice_del(),d.ket=d.cursor,e=d.find_among_b(c,3))switch(d.bra=d.cursor,e){case 1:h()?d.slice_del():d.slice_from("abl");break;case 2:h()?d.slice_del():d.slice_from("iqU");break;case 3:h()&&d.slice_del()}break;case 8:if(!h())return!1;if(d.slice_del(),d.ket=d.cursor,d.eq_s_b(2,"at")&&(d.bra=d.cursor,h()&&(d.slice_del(),d.ket=d.cursor,d.eq_s_b(2,"ic")))){d.bra=d.cursor,h()?d.slice_del():d.slice_from("iqU");break}break;case 9:d.slice_from("eau");break;case 10:if(!v())return!1;d.slice_from("al");break;case 11:if(h())d.slice_del();else{if(!v())return!1;d.slice_from("eux")}break;case 12:if(!v()||!d.out_grouping_b(_,97,251))return!1;d.slice_del();break;case 13:return q()&&d.slice_from("ant"),!1;case 14:return q()&&d.slice_from("ent"),!1;case 15:return r=d.limit-d.cursor,d.in_grouping_b(_,97,251)&&q()&&(d.cursor=d.limit-r,d.slice_del()),!1}return!0}return!1}()&&(d.cursor=d.limit,!function(){var e,r;if(d.cursor<t)return!1;if(r=d.limit_backward,d.limit_backward=t,d.ket=d.cursor,!(e=d.find_among_b(l,35)))return d.limit_backward=r,!1;if(d.bra=d.cursor,1==e){if(!d.out_grouping_b(_,97,251))return d.limit_backward=r,!1;d.slice_del()}return d.limit_backward=r,!0}()&&(d.cursor=d.limit,!function(){var e,r,s;if(d.cursor<t)return!1;if(r=d.limit_backward,d.limit_backward=t,d.ket=d.cursor,!(e=d.find_among_b(w,38)))return d.limit_backward=r,!1;switch(d.bra=d.cursor,e){case 1:if(!h())return d.limit_backward=r,!1;d.slice_del();break;case 2:d.slice_del();break;case 3:d.slice_del(),s=d.limit-d.cursor,d.ket=d.cursor,d.eq_s_b(1,"e")?(d.bra=d.cursor,d.slice_del()):d.cursor=d.limit-s}return d.limit_backward=r,!0}())))return d.cursor=d.limit,void function(){var e,r,s,i,n=d.limit-d.cursor;if(d.ket=d.cursor,d.eq_s_b(1,"s")?(d.bra=d.cursor,r=d.limit-d.cursor,d.out_grouping_b(b,97,232)?(d.cursor=d.limit-r,d.slice_del()):d.cursor=d.limit-n):d.cursor=d.limit-n,d.cursor>=t){if(s=d.limit_backward,d.limit_backward=t,d.ket=d.cursor,e=d.find_among_b(f,7))switch(d.bra=d.cursor,e){case 1:if(h()){if(i=d.limit-d.cursor,!d.eq_s_b(1,"s")&&(d.cursor=d.limit-i,!d.eq_s_b(1,"t")))break;d.slice_del()}break;case 2:d.slice_from("i");break;case 3:d.slice_del();break;case 4:d.eq_s_b(2,"gu")&&d.slice_del()}d.limit_backward=s}}();d.cursor=d.limit,d.ket=d.cursor,d.eq_s_b(1,"Y")?(d.bra=d.cursor,d.slice_from("i")):(d.cursor=d.limit,d.eq_s_b(1,"ç")&&(d.bra=d.cursor,d.slice_from("c")))}this.setCurrent=function(e){d.setCurrent(e)},this.getCurrent=function(){return d.getCurrent()},this.stem=function(){var e,r=d.cursor;return function(){for(var e,r;;){if(e=d.cursor,d.in_grouping(_,97,251)){if(d.bra=d.cursor,r=d.cursor,k("u","U",e))continue;if(d.cursor=r,k("i","I",e))continue;if(d.cursor=r,p("y","Y",e))continue}if(d.cursor=e,!k("y","Y",d.bra=e)){if(d.cursor=e,d.eq_s(1,"q")&&(d.bra=d.cursor,p("u","U",e)))continue;if((d.cursor=e)>=d.limit)return;d.cursor++}}}(),d.cursor=r,function(){var e=d.cursor;if(t=d.limit,s=i=t,d.in_grouping(_,97,251)&&d.in_grouping(_,97,251)&&d.cursor<d.limit)d.cursor++;else if(d.cursor=e,!d.find_among(n,3)){d.cursor=e;do{if(d.cursor>=d.limit){d.cursor=t;break}d.cursor++}while(!d.in_grouping(_,97,251))}t=d.cursor,d.cursor=e,g()||(i=d.cursor,g()||(s=d.cursor))}(),d.limit_backward=r,d.cursor=d.limit,z(),d.cursor=d.limit,e=d.limit-d.cursor,d.find_among_b(m,5)&&(d.cursor=d.limit-e,d.ket=d.cursor,d.cursor>d.limit_backward&&(d.cursor--,d.bra=d.cursor,d.slice_del())),d.cursor=d.limit,function(){for(var e,r=1;d.out_grouping_b(_,97,251);)r--;if(r<=0){if(d.ket=d.cursor,e=d.limit-d.cursor,!d.eq_s_b(1,"é")&&(d.cursor=d.limit-e,!d.eq_s_b(1,"è")))return;d.bra=d.cursor,d.slice_from("e")}}(),d.cursor=d.limit_backward,function(){for(var e,r;r=d.cursor,d.bra=r,e=d.find_among(u,4);)switch(d.ket=d.cursor,e){case 1:d.slice_from("i");break;case 2:d.slice_from("u");break;case 3:d.slice_from("y");break;case 4:if(d.cursor>=d.limit)return;d.cursor++}}(),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return s.setCurrent(e),s.stem(),s.getCurrent()}):(s.setCurrent(e),s.stem(),s.getCurrent())}),e.Pipeline.registerFunction(e.fr.stemmer,"stemmer-fr"),e.fr.stopWordFilter=e.generateStopWordFilter("ai aie aient aies ait as au aura aurai auraient aurais aurait auras aurez auriez aurions aurons auront aux avaient avais avait avec avez aviez avions avons ayant ayez ayons c ce ceci celà ces cet cette d dans de des du elle en es est et eu eue eues eurent eus eusse eussent eusses eussiez eussions eut eux eûmes eût eûtes furent fus fusse fussent fusses fussiez fussions fut fûmes fût fûtes ici il ils j je l la le les leur leurs lui m ma mais me mes moi mon même n ne nos notre nous on ont ou par pas pour qu que quel quelle quelles quels qui s sa sans se sera serai seraient serais serait seras serez seriez serions serons seront ses soi soient sois soit sommes son sont soyez soyons suis sur t ta te tes toi ton tu un une vos votre vous y à étaient étais était étant étiez étions été étée étées étés êtes".split(" ")),e.Pipeline.registerFunction(e.fr.stopWordFilter,"stopWordFilter-fr")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.hu.js b/site/assets/javascripts/lunr/lunr.hu.js deleted file mode 100644 index bfc68db8467dc61f9225fc0e764d71c425c55707..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.hu.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Hungarian` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,n){"function"==typeof define&&define.amd?define(n):"object"==typeof exports?module.exports=n():n()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var p,_,n;e.hu=function(){this.pipeline.reset(),this.pipeline.add(e.hu.trimmer,e.hu.stopWordFilter,e.hu.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.hu.stemmer))},e.hu.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.hu.trimmer=e.trimmerSupport.generateTrimmer(e.hu.wordCharacters),e.Pipeline.registerFunction(e.hu.trimmer,"trimmer-hu"),e.hu.stemmer=(p=e.stemmerSupport.Among,_=e.stemmerSupport.SnowballProgram,n=new function(){var r,i=[new p("cs",-1,-1),new p("dzs",-1,-1),new p("gy",-1,-1),new p("ly",-1,-1),new p("ny",-1,-1),new p("sz",-1,-1),new p("ty",-1,-1),new p("zs",-1,-1)],n=[new p("á",-1,1),new p("é",-1,2)],a=[new p("bb",-1,-1),new p("cc",-1,-1),new p("dd",-1,-1),new p("ff",-1,-1),new p("gg",-1,-1),new p("jj",-1,-1),new p("kk",-1,-1),new p("ll",-1,-1),new p("mm",-1,-1),new p("nn",-1,-1),new p("pp",-1,-1),new p("rr",-1,-1),new p("ccs",-1,-1),new p("ss",-1,-1),new p("zzs",-1,-1),new p("tt",-1,-1),new p("vv",-1,-1),new p("ggy",-1,-1),new p("lly",-1,-1),new p("nny",-1,-1),new p("tty",-1,-1),new p("ssz",-1,-1),new p("zz",-1,-1)],t=[new p("al",-1,1),new p("el",-1,2)],e=[new p("ba",-1,-1),new p("ra",-1,-1),new p("be",-1,-1),new p("re",-1,-1),new p("ig",-1,-1),new p("nak",-1,-1),new p("nek",-1,-1),new p("val",-1,-1),new p("vel",-1,-1),new p("ul",-1,-1),new p("nál",-1,-1),new p("nél",-1,-1),new p("ból",-1,-1),new p("ról",-1,-1),new p("tól",-1,-1),new p("bõl",-1,-1),new p("rõl",-1,-1),new p("tõl",-1,-1),new p("ül",-1,-1),new p("n",-1,-1),new p("an",19,-1),new p("ban",20,-1),new p("en",19,-1),new p("ben",22,-1),new p("képpen",22,-1),new p("on",19,-1),new p("ön",19,-1),new p("képp",-1,-1),new p("kor",-1,-1),new p("t",-1,-1),new p("at",29,-1),new p("et",29,-1),new p("ként",29,-1),new p("anként",32,-1),new p("enként",32,-1),new p("onként",32,-1),new p("ot",29,-1),new p("ért",29,-1),new p("öt",29,-1),new p("hez",-1,-1),new p("hoz",-1,-1),new p("höz",-1,-1),new p("vá",-1,-1),new p("vé",-1,-1)],s=[new p("án",-1,2),new p("én",-1,1),new p("ánként",-1,3)],c=[new p("stul",-1,2),new p("astul",0,1),new p("ástul",0,3),new p("stül",-1,2),new p("estül",3,1),new p("éstül",3,4)],w=[new p("á",-1,1),new p("é",-1,2)],o=[new p("k",-1,7),new p("ak",0,4),new p("ek",0,6),new p("ok",0,5),new p("ák",0,1),new p("ék",0,2),new p("ök",0,3)],l=[new p("éi",-1,7),new p("áéi",0,6),new p("ééi",0,5),new p("é",-1,9),new p("ké",3,4),new p("aké",4,1),new p("eké",4,1),new p("oké",4,1),new p("áké",4,3),new p("éké",4,2),new p("öké",4,1),new p("éé",3,8)],u=[new p("a",-1,18),new p("ja",0,17),new p("d",-1,16),new p("ad",2,13),new p("ed",2,13),new p("od",2,13),new p("ád",2,14),new p("éd",2,15),new p("öd",2,13),new p("e",-1,18),new p("je",9,17),new p("nk",-1,4),new p("unk",11,1),new p("ánk",11,2),new p("énk",11,3),new p("ünk",11,1),new p("uk",-1,8),new p("juk",16,7),new p("ájuk",17,5),new p("ük",-1,8),new p("jük",19,7),new p("éjük",20,6),new p("m",-1,12),new p("am",22,9),new p("em",22,9),new p("om",22,9),new p("ám",22,10),new p("ém",22,11),new p("o",-1,18),new p("á",-1,19),new p("é",-1,20)],m=[new p("id",-1,10),new p("aid",0,9),new p("jaid",1,6),new p("eid",0,9),new p("jeid",3,6),new p("áid",0,7),new p("éid",0,8),new p("i",-1,15),new p("ai",7,14),new p("jai",8,11),new p("ei",7,14),new p("jei",10,11),new p("ái",7,12),new p("éi",7,13),new p("itek",-1,24),new p("eitek",14,21),new p("jeitek",15,20),new p("éitek",14,23),new p("ik",-1,29),new p("aik",18,26),new p("jaik",19,25),new p("eik",18,26),new p("jeik",21,25),new p("áik",18,27),new p("éik",18,28),new p("ink",-1,20),new p("aink",25,17),new p("jaink",26,16),new p("eink",25,17),new p("jeink",28,16),new p("áink",25,18),new p("éink",25,19),new p("aitok",-1,21),new p("jaitok",32,20),new p("áitok",-1,22),new p("im",-1,5),new p("aim",35,4),new p("jaim",36,1),new p("eim",35,4),new p("jeim",38,1),new p("áim",35,2),new p("éim",35,3)],k=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,1,17,52,14],f=new _;function b(){return r<=f.cursor}function d(){var e=f.limit-f.cursor;return!!f.find_among_b(a,23)&&(f.cursor=f.limit-e,!0)}function g(){if(f.cursor>f.limit_backward){f.cursor--,f.ket=f.cursor;var e=f.cursor-1;f.limit_backward<=e&&e<=f.limit&&(f.cursor=e,f.bra=e,f.slice_del())}}function h(){f.ket=f.cursor,f.find_among_b(e,44)&&(f.bra=f.cursor,b()&&(f.slice_del(),function(){var e;if(f.ket=f.cursor,(e=f.find_among_b(n,2))&&(f.bra=f.cursor,b()))switch(e){case 1:f.slice_from("a");break;case 2:f.slice_from("e")}}()))}this.setCurrent=function(e){f.setCurrent(e)},this.getCurrent=function(){return f.getCurrent()},this.stem=function(){var e=f.cursor;return function(){var e,n=f.cursor;if(r=f.limit,f.in_grouping(k,97,252))for(;;){if(e=f.cursor,f.out_grouping(k,97,252))return f.cursor=e,f.find_among(i,8)||(f.cursor=e)<f.limit&&f.cursor++,r=f.cursor;if((f.cursor=e)>=f.limit)return r=e;f.cursor++}if(f.cursor=n,f.out_grouping(k,97,252)){for(;!f.in_grouping(k,97,252);){if(f.cursor>=f.limit)return;f.cursor++}r=f.cursor}}(),f.limit_backward=e,f.cursor=f.limit,function(){var e;if(f.ket=f.cursor,(e=f.find_among_b(t,2))&&(f.bra=f.cursor,b())){if((1==e||2==e)&&!d())return;f.slice_del(),g()}}(),f.cursor=f.limit,h(),f.cursor=f.limit,function(){var e;if(f.ket=f.cursor,(e=f.find_among_b(s,3))&&(f.bra=f.cursor,b()))switch(e){case 1:f.slice_from("e");break;case 2:case 3:f.slice_from("a")}}(),f.cursor=f.limit,function(){var e;if(f.ket=f.cursor,(e=f.find_among_b(c,6))&&(f.bra=f.cursor,b()))switch(e){case 1:case 2:f.slice_del();break;case 3:f.slice_from("a");break;case 4:f.slice_from("e")}}(),f.cursor=f.limit,function(){var e;if(f.ket=f.cursor,(e=f.find_among_b(w,2))&&(f.bra=f.cursor,b())){if((1==e||2==e)&&!d())return;f.slice_del(),g()}}(),f.cursor=f.limit,function(){var e;if(f.ket=f.cursor,(e=f.find_among_b(l,12))&&(f.bra=f.cursor,b()))switch(e){case 1:case 4:case 7:case 9:f.slice_del();break;case 2:case 5:case 8:f.slice_from("e");break;case 3:case 6:f.slice_from("a")}}(),f.cursor=f.limit,function(){var e;if(f.ket=f.cursor,(e=f.find_among_b(u,31))&&(f.bra=f.cursor,b()))switch(e){case 1:case 4:case 7:case 8:case 9:case 12:case 13:case 16:case 17:case 18:f.slice_del();break;case 2:case 5:case 10:case 14:case 19:f.slice_from("a");break;case 3:case 6:case 11:case 15:case 20:f.slice_from("e")}}(),f.cursor=f.limit,function(){var e;if(f.ket=f.cursor,(e=f.find_among_b(m,42))&&(f.bra=f.cursor,b()))switch(e){case 1:case 4:case 5:case 6:case 9:case 10:case 11:case 14:case 15:case 16:case 17:case 20:case 21:case 24:case 25:case 26:case 29:f.slice_del();break;case 2:case 7:case 12:case 18:case 22:case 27:f.slice_from("a");break;case 3:case 8:case 13:case 19:case 23:case 28:f.slice_from("e")}}(),f.cursor=f.limit,function(){var e;if(f.ket=f.cursor,(e=f.find_among_b(o,7))&&(f.bra=f.cursor,b()))switch(e){case 1:f.slice_from("a");break;case 2:f.slice_from("e");break;case 3:case 4:case 5:case 6:case 7:f.slice_del()}}(),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}),e.Pipeline.registerFunction(e.hu.stemmer,"stemmer-hu"),e.hu.stopWordFilter=e.generateStopWordFilter("a abban ahhoz ahogy ahol aki akik akkor alatt amely amelyek amelyekben amelyeket amelyet amelynek ami amikor amit amolyan amÃg annak arra arról az azok azon azonban azt aztán azután azzal azért be belül benne bár cikk cikkek cikkeket csak de e ebben eddig egy egyes egyetlen egyik egyre egyéb egész ehhez ekkor el ellen elsõ elég elõ elõször elõtt emilyen ennek erre ez ezek ezen ezt ezzel ezért fel felé hanem hiszen hogy hogyan igen ill ill. illetve ilyen ilyenkor ismét ison itt jobban jó jól kell kellett keressünk keresztül ki kÃvül között közül legalább legyen lehet lehetett lenne lenni lesz lett maga magát majd majd meg mellett mely melyek mert mi mikor milyen minden mindenki mindent mindig mint mintha mit mivel miért most már más másik még mÃg nagy nagyobb nagyon ne nekem neki nem nincs néha néhány nélkül olyan ott pedig persze rá s saját sem semmi sok sokat sokkal szemben szerint szinte számára talán tehát teljes tovább továbbá több ugyanis utolsó után utána vagy vagyis vagyok valaki valami valamint való van vannak vele vissza viszont volna volt voltak voltam voltunk által általában át én éppen és Ãgy õ õk õket össze úgy új újabb újra".split(" ")),e.Pipeline.registerFunction(e.hu.stopWordFilter,"stopWordFilter-hu")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.it.js b/site/assets/javascripts/lunr/lunr.it.js deleted file mode 100644 index 58a46fb6c747abe2c1f4e4addbbe77b5ebfcd607..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.it.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Italian` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var z,P,r;e.it=function(){this.pipeline.reset(),this.pipeline.add(e.it.trimmer,e.it.stopWordFilter,e.it.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.it.stemmer))},e.it.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.it.trimmer=e.trimmerSupport.generateTrimmer(e.it.wordCharacters),e.Pipeline.registerFunction(e.it.trimmer,"trimmer-it"),e.it.stemmer=(z=e.stemmerSupport.Among,P=e.stemmerSupport.SnowballProgram,r=new function(){var o,t,s,a=[new z("",-1,7),new z("qu",0,6),new z("á",0,1),new z("é",0,2),new z("Ã",0,3),new z("ó",0,4),new z("ú",0,5)],u=[new z("",-1,3),new z("I",0,1),new z("U",0,2)],c=[new z("la",-1,-1),new z("cela",0,-1),new z("gliela",0,-1),new z("mela",0,-1),new z("tela",0,-1),new z("vela",0,-1),new z("le",-1,-1),new z("cele",6,-1),new z("gliele",6,-1),new z("mele",6,-1),new z("tele",6,-1),new z("vele",6,-1),new z("ne",-1,-1),new z("cene",12,-1),new z("gliene",12,-1),new z("mene",12,-1),new z("sene",12,-1),new z("tene",12,-1),new z("vene",12,-1),new z("ci",-1,-1),new z("li",-1,-1),new z("celi",20,-1),new z("glieli",20,-1),new z("meli",20,-1),new z("teli",20,-1),new z("veli",20,-1),new z("gli",20,-1),new z("mi",-1,-1),new z("si",-1,-1),new z("ti",-1,-1),new z("vi",-1,-1),new z("lo",-1,-1),new z("celo",31,-1),new z("glielo",31,-1),new z("melo",31,-1),new z("telo",31,-1),new z("velo",31,-1)],w=[new z("ando",-1,1),new z("endo",-1,1),new z("ar",-1,2),new z("er",-1,2),new z("ir",-1,2)],r=[new z("ic",-1,-1),new z("abil",-1,-1),new z("os",-1,-1),new z("iv",-1,1)],n=[new z("ic",-1,1),new z("abil",-1,1),new z("iv",-1,1)],i=[new z("ica",-1,1),new z("logia",-1,3),new z("osa",-1,1),new z("ista",-1,1),new z("iva",-1,9),new z("anza",-1,1),new z("enza",-1,5),new z("ice",-1,1),new z("atrice",7,1),new z("iche",-1,1),new z("logie",-1,3),new z("abile",-1,1),new z("ibile",-1,1),new z("usione",-1,4),new z("azione",-1,2),new z("uzione",-1,4),new z("atore",-1,2),new z("ose",-1,1),new z("ante",-1,1),new z("mente",-1,1),new z("amente",19,7),new z("iste",-1,1),new z("ive",-1,9),new z("anze",-1,1),new z("enze",-1,5),new z("ici",-1,1),new z("atrici",25,1),new z("ichi",-1,1),new z("abili",-1,1),new z("ibili",-1,1),new z("ismi",-1,1),new z("usioni",-1,4),new z("azioni",-1,2),new z("uzioni",-1,4),new z("atori",-1,2),new z("osi",-1,1),new z("anti",-1,1),new z("amenti",-1,6),new z("imenti",-1,6),new z("isti",-1,1),new z("ivi",-1,9),new z("ico",-1,1),new z("ismo",-1,1),new z("oso",-1,1),new z("amento",-1,6),new z("imento",-1,6),new z("ivo",-1,9),new z("ità ",-1,8),new z("istà ",-1,1),new z("istè",-1,1),new z("istì",-1,1)],l=[new z("isca",-1,1),new z("enda",-1,1),new z("ata",-1,1),new z("ita",-1,1),new z("uta",-1,1),new z("ava",-1,1),new z("eva",-1,1),new z("iva",-1,1),new z("erebbe",-1,1),new z("irebbe",-1,1),new z("isce",-1,1),new z("ende",-1,1),new z("are",-1,1),new z("ere",-1,1),new z("ire",-1,1),new z("asse",-1,1),new z("ate",-1,1),new z("avate",16,1),new z("evate",16,1),new z("ivate",16,1),new z("ete",-1,1),new z("erete",20,1),new z("irete",20,1),new z("ite",-1,1),new z("ereste",-1,1),new z("ireste",-1,1),new z("ute",-1,1),new z("erai",-1,1),new z("irai",-1,1),new z("isci",-1,1),new z("endi",-1,1),new z("erei",-1,1),new z("irei",-1,1),new z("assi",-1,1),new z("ati",-1,1),new z("iti",-1,1),new z("eresti",-1,1),new z("iresti",-1,1),new z("uti",-1,1),new z("avi",-1,1),new z("evi",-1,1),new z("ivi",-1,1),new z("isco",-1,1),new z("ando",-1,1),new z("endo",-1,1),new z("Yamo",-1,1),new z("iamo",-1,1),new z("avamo",-1,1),new z("evamo",-1,1),new z("ivamo",-1,1),new z("eremo",-1,1),new z("iremo",-1,1),new z("assimo",-1,1),new z("ammo",-1,1),new z("emmo",-1,1),new z("eremmo",54,1),new z("iremmo",54,1),new z("immo",-1,1),new z("ano",-1,1),new z("iscano",58,1),new z("avano",58,1),new z("evano",58,1),new z("ivano",58,1),new z("eranno",-1,1),new z("iranno",-1,1),new z("ono",-1,1),new z("iscono",65,1),new z("arono",65,1),new z("erono",65,1),new z("irono",65,1),new z("erebbero",-1,1),new z("irebbero",-1,1),new z("assero",-1,1),new z("essero",-1,1),new z("issero",-1,1),new z("ato",-1,1),new z("ito",-1,1),new z("uto",-1,1),new z("avo",-1,1),new z("evo",-1,1),new z("ivo",-1,1),new z("ar",-1,1),new z("ir",-1,1),new z("erà ",-1,1),new z("irà ",-1,1),new z("erò",-1,1),new z("irò",-1,1)],m=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,128,128,8,2,1],f=[17,65,0,0,0,0,0,0,0,0,0,0,0,0,0,128,128,8,2],v=[17],b=new P;function d(e,r,n){return!(!b.eq_s(1,e)||(b.ket=b.cursor,!b.in_grouping(m,97,249)))&&(b.slice_from(r),b.cursor=n,!0)}function _(e){if(b.cursor=e,!b.in_grouping(m,97,249))return!1;for(;!b.out_grouping(m,97,249);){if(b.cursor>=b.limit)return!1;b.cursor++}return!0}function g(){var e,r=b.cursor;if(!function(){if(b.in_grouping(m,97,249)){var e=b.cursor;if(b.out_grouping(m,97,249)){for(;!b.in_grouping(m,97,249);){if(b.cursor>=b.limit)return _(e);b.cursor++}return!0}return _(e)}return!1}()){if(b.cursor=r,!b.out_grouping(m,97,249))return;if(e=b.cursor,b.out_grouping(m,97,249)){for(;!b.in_grouping(m,97,249);){if(b.cursor>=b.limit)return b.cursor=e,void(b.in_grouping(m,97,249)&&b.cursor<b.limit&&b.cursor++);b.cursor++}return void(s=b.cursor)}if(b.cursor=e,!b.in_grouping(m,97,249)||b.cursor>=b.limit)return;b.cursor++}s=b.cursor}function p(){for(;!b.in_grouping(m,97,249);){if(b.cursor>=b.limit)return!1;b.cursor++}for(;!b.out_grouping(m,97,249);){if(b.cursor>=b.limit)return!1;b.cursor++}return!0}function k(){return s<=b.cursor}function h(){return o<=b.cursor}function q(){var e;if(b.ket=b.cursor,!(e=b.find_among_b(i,51)))return!1;switch(b.bra=b.cursor,e){case 1:if(!h())return!1;b.slice_del();break;case 2:if(!h())return!1;b.slice_del(),b.ket=b.cursor,b.eq_s_b(2,"ic")&&(b.bra=b.cursor,h()&&b.slice_del());break;case 3:if(!h())return!1;b.slice_from("log");break;case 4:if(!h())return!1;b.slice_from("u");break;case 5:if(!h())return!1;b.slice_from("ente");break;case 6:if(!k())return!1;b.slice_del();break;case 7:if(!(t<=b.cursor))return!1;b.slice_del(),b.ket=b.cursor,(e=b.find_among_b(r,4))&&(b.bra=b.cursor,h()&&(b.slice_del(),1==e&&(b.ket=b.cursor,b.eq_s_b(2,"at")&&(b.bra=b.cursor,h()&&b.slice_del()))));break;case 8:if(!h())return!1;b.slice_del(),b.ket=b.cursor,(e=b.find_among_b(n,3))&&(b.bra=b.cursor,1==e&&h()&&b.slice_del());break;case 9:if(!h())return!1;b.slice_del(),b.ket=b.cursor,b.eq_s_b(2,"at")&&(b.bra=b.cursor,h()&&(b.slice_del(),b.ket=b.cursor,b.eq_s_b(2,"ic")&&(b.bra=b.cursor,h()&&b.slice_del())))}return!0}function C(){var e;e=b.limit-b.cursor,b.ket=b.cursor,b.in_grouping_b(f,97,242)&&(b.bra=b.cursor,k()&&(b.slice_del(),b.ket=b.cursor,b.eq_s_b(1,"i")&&(b.bra=b.cursor,k())))?b.slice_del():b.cursor=b.limit-e,b.ket=b.cursor,b.eq_s_b(1,"h")&&(b.bra=b.cursor,b.in_grouping_b(v,99,103)&&k()&&b.slice_del())}this.setCurrent=function(e){b.setCurrent(e)},this.getCurrent=function(){return b.getCurrent()},this.stem=function(){var e,r,n,i=b.cursor;return function(){for(var e,r,n,i,o=b.cursor;;){if(b.bra=b.cursor,e=b.find_among(a,7))switch(b.ket=b.cursor,e){case 1:b.slice_from("à ");continue;case 2:b.slice_from("è");continue;case 3:b.slice_from("ì");continue;case 4:b.slice_from("ò");continue;case 5:b.slice_from("ù");continue;case 6:b.slice_from("qU");continue;case 7:if(b.cursor>=b.limit)break;b.cursor++;continue}break}for(b.cursor=o;;)for(r=b.cursor;;){if(n=b.cursor,b.in_grouping(m,97,249)){if(b.bra=b.cursor,i=b.cursor,d("u","U",n))break;if(b.cursor=i,d("i","I",n))break}if(b.cursor=n,b.cursor>=b.limit)return b.cursor=r;b.cursor++}}(),b.cursor=i,e=b.cursor,s=b.limit,o=t=s,g(),b.cursor=e,p()&&(t=b.cursor,p()&&(o=b.cursor)),b.limit_backward=i,b.cursor=b.limit,function(){var e;if(b.ket=b.cursor,b.find_among_b(c,37)&&(b.bra=b.cursor,(e=b.find_among_b(w,5))&&k()))switch(e){case 1:b.slice_del();break;case 2:b.slice_from("e")}}(),b.cursor=b.limit,q()||(b.cursor=b.limit,b.cursor>=s&&(n=b.limit_backward,b.limit_backward=s,b.ket=b.cursor,(r=b.find_among_b(l,87))&&(b.bra=b.cursor,1==r&&b.slice_del()),b.limit_backward=n)),b.cursor=b.limit,C(),b.cursor=b.limit_backward,function(){for(var e;b.bra=b.cursor,e=b.find_among(u,3);)switch(b.ket=b.cursor,e){case 1:b.slice_from("i");break;case 2:b.slice_from("u");break;case 3:if(b.cursor>=b.limit)return;b.cursor++}}(),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return r.setCurrent(e),r.stem(),r.getCurrent()}):(r.setCurrent(e),r.stem(),r.getCurrent())}),e.Pipeline.registerFunction(e.it.stemmer,"stemmer-it"),e.it.stopWordFilter=e.generateStopWordFilter("a abbia abbiamo abbiano abbiate ad agl agli ai al all alla alle allo anche avemmo avendo avesse avessero avessi avessimo aveste avesti avete aveva avevamo avevano avevate avevi avevo avrai avranno avrebbe avrebbero avrei avremmo avremo avreste avresti avrete avrà avrò avuta avute avuti avuto c che chi ci coi col come con contro cui da dagl dagli dai dal dall dalla dalle dallo degl degli dei del dell della delle dello di dov dove e ebbe ebbero ebbi ed era erano eravamo eravate eri ero essendo faccia facciamo facciano facciate faccio facemmo facendo facesse facessero facessi facessimo faceste facesti faceva facevamo facevano facevate facevi facevo fai fanno farai faranno farebbe farebbero farei faremmo faremo fareste faresti farete farà farò fece fecero feci fosse fossero fossi fossimo foste fosti fu fui fummo furono gli ha hai hanno ho i il in io l la le lei li lo loro lui ma mi mia mie miei mio ne negl negli nei nel nell nella nelle nello noi non nostra nostre nostri nostro o per perché più quale quanta quante quanti quanto quella quelle quelli quello questa queste questi questo sarai saranno sarebbe sarebbero sarei saremmo saremo sareste saresti sarete sarà sarò se sei si sia siamo siano siate siete sono sta stai stando stanno starai staranno starebbe starebbero starei staremmo staremo stareste staresti starete starà starò stava stavamo stavano stavate stavi stavo stemmo stesse stessero stessi stessimo steste stesti stette stettero stetti stia stiamo stiano stiate sto su sua sue sugl sugli sui sul sull sulla sulle sullo suo suoi ti tra tu tua tue tuo tuoi tutti tutto un una uno vi voi vostra vostre vostri vostro è".split(" ")),e.Pipeline.registerFunction(e.it.stopWordFilter,"stopWordFilter-it")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.ja.js b/site/assets/javascripts/lunr/lunr.ja.js deleted file mode 100644 index 715b834adc35b80f17af08ce5d08affc6e5555e5..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.ja.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Japanese` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Chad Liu - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(m){if(void 0===m)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===m.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var l="2"==m.version[0];m.ja=function(){this.pipeline.reset(),this.pipeline.add(m.ja.trimmer,m.ja.stopWordFilter,m.ja.stemmer),l?this.tokenizer=m.ja.tokenizer:(m.tokenizer&&(m.tokenizer=m.ja.tokenizer),this.tokenizerFn&&(this.tokenizerFn=m.ja.tokenizer))};var j=new m.TinySegmenter;m.ja.tokenizer=function(e){var r,t,i,n,o,s,p,a,u;if(!arguments.length||null==e||null==e)return[];if(Array.isArray(e))return e.map(function(e){return l?new m.Token(e.toLowerCase()):e.toLowerCase()});for(r=(t=e.toString().toLowerCase().replace(/^\s+/,"")).length-1;0<=r;r--)if(/\S/.test(t.charAt(r))){t=t.substring(0,r+1);break}for(o=[],i=t.length,p=a=0;a<=i;a++)if(s=a-p,t.charAt(a).match(/\s/)||a==i){if(0<s)for(n=j.segment(t.slice(p,a)).filter(function(e){return!!e}),u=p,r=0;r<n.length;r++)l?o.push(new m.Token(n[r],{position:[u,n[r].length],index:o.length})):o.push(n[r]),u+=n[r].length;p=a+1}return o},m.ja.stemmer=function(e){return e},m.Pipeline.registerFunction(m.ja.stemmer,"stemmer-ja"),m.ja.wordCharacters="一二三四五å…七八ä¹å百åƒä¸‡å„„兆一-é¾ ã€…ã€†ãƒµãƒ¶ã-ã‚“ã‚¡-ヴーア-ï¾ï¾ža-zA-Zï½-zA-Z0-9ï¼-ï¼™",m.ja.trimmer=m.trimmerSupport.generateTrimmer(m.ja.wordCharacters),m.Pipeline.registerFunction(m.ja.trimmer,"trimmer-ja"),m.ja.stopWordFilter=m.generateStopWordFilter("ã“ã‚Œ ãã‚Œ ã‚ã‚Œ ã“ã® ãã® ã‚ã® ã“ã“ ãã“ ã‚ãã“ ã“ã¡ã‚‰ ã©ã“ ã ã‚Œ ãªã« ãªã‚“ 何 ç§ è²´æ–¹ 貴方方 我々 ç§é” ã‚ã®äºº ã‚ã®ã‹ãŸ 彼女 å½¼ ã§ã™ ã‚ã‚Šã¾ã™ ãŠã‚Šã¾ã™ ã„ã¾ã™ 㯠㌠㮠㫠を 㧠㈠ã‹ã‚‰ ã¾ã§ より ã‚‚ ã©ã® 㨠㗠ãれ㧠ã—ã‹ã—".split(" ")),m.Pipeline.registerFunction(m.ja.stopWordFilter,"stopWordFilter-ja"),m.jp=m.ja,m.Pipeline.registerFunction(m.jp.stemmer,"stemmer-jp"),m.Pipeline.registerFunction(m.jp.trimmer,"trimmer-jp"),m.Pipeline.registerFunction(m.jp.stopWordFilter,"stopWordFilter-jp")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.jp.js b/site/assets/javascripts/lunr/lunr.jp.js deleted file mode 100644 index c055ebaf37a904fafc2815f4f8d0e810db0b0984..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.jp.js +++ /dev/null @@ -1 +0,0 @@ -module.exports=require("./lunr.ja"); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.multi.js b/site/assets/javascripts/lunr/lunr.multi.js deleted file mode 100644 index b8c297ea99802a4eb6494978c044d57919d306f8..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.multi.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():t()(e.lunr)}(this,function(){return function(o){o.multiLanguage=function(){for(var e=Array.prototype.slice.call(arguments),t=e.join("-"),i="",r=[],n=[],s=0;s<e.length;++s)"en"==e[s]?(i+="\\w",r.unshift(o.stopWordFilter),r.push(o.stemmer),n.push(o.stemmer)):(i+=o[e[s]].wordCharacters,o[e[s]].stopWordFilter&&r.unshift(o[e[s]].stopWordFilter),o[e[s]].stemmer&&(r.push(o[e[s]].stemmer),n.push(o[e[s]].stemmer)));var p=o.trimmerSupport.generateTrimmer(i);return o.Pipeline.registerFunction(p,"lunr-multi-trimmer-"+t),r.unshift(p),function(){this.pipeline.reset(),this.pipeline.add.apply(this.pipeline,r),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add.apply(this.searchPipeline,n))}}}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.nl.js b/site/assets/javascripts/lunr/lunr.nl.js deleted file mode 100644 index 19d42f4456bdcde804bdd51c90fae2ae66d42a2c..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.nl.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Dutch` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(r,e){"function"==typeof define&&define.amd?define(e):"object"==typeof exports?module.exports=e():e()(r.lunr)}(this,function(){return function(r){if(void 0===r)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===r.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var v,q,e;r.nl=function(){this.pipeline.reset(),this.pipeline.add(r.nl.trimmer,r.nl.stopWordFilter,r.nl.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(r.nl.stemmer))},r.nl.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",r.nl.trimmer=r.trimmerSupport.generateTrimmer(r.nl.wordCharacters),r.Pipeline.registerFunction(r.nl.trimmer,"trimmer-nl"),r.nl.stemmer=(v=r.stemmerSupport.Among,q=r.stemmerSupport.SnowballProgram,e=new function(){var e,i,u,o=[new v("",-1,6),new v("á",0,1),new v("ä",0,1),new v("é",0,2),new v("ë",0,2),new v("Ã",0,3),new v("ï",0,3),new v("ó",0,4),new v("ö",0,4),new v("ú",0,5),new v("ü",0,5)],n=[new v("",-1,3),new v("I",0,2),new v("Y",0,1)],t=[new v("dd",-1,-1),new v("kk",-1,-1),new v("tt",-1,-1)],c=[new v("ene",-1,2),new v("se",-1,3),new v("en",-1,2),new v("heden",2,1),new v("s",-1,3)],a=[new v("end",-1,1),new v("ig",-1,2),new v("ing",-1,1),new v("lijk",-1,3),new v("baar",-1,4),new v("bar",-1,5)],l=[new v("aa",-1,-1),new v("ee",-1,-1),new v("oo",-1,-1),new v("uu",-1,-1)],m=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],d=[1,0,0,17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],f=[17,67,16,1,0,0,0,0,0,0,0,0,0,0,0,0,128],_=new q;function s(r){return(_.cursor=r)>=_.limit||(_.cursor++,!1)}function w(){for(;!_.in_grouping(m,97,232);){if(_.cursor>=_.limit)return!0;_.cursor++}for(;!_.out_grouping(m,97,232);){if(_.cursor>=_.limit)return!0;_.cursor++}return!1}function b(){return i<=_.cursor}function p(){return e<=_.cursor}function g(){var r=_.limit-_.cursor;_.find_among_b(t,3)&&(_.cursor=_.limit-r,_.ket=_.cursor,_.cursor>_.limit_backward&&(_.cursor--,_.bra=_.cursor,_.slice_del()))}function h(){var r;u=!1,_.ket=_.cursor,_.eq_s_b(1,"e")&&(_.bra=_.cursor,b()&&(r=_.limit-_.cursor,_.out_grouping_b(m,97,232)&&(_.cursor=_.limit-r,_.slice_del(),u=!0,g())))}function k(){var r;b()&&(r=_.limit-_.cursor,_.out_grouping_b(m,97,232)&&(_.cursor=_.limit-r,_.eq_s_b(3,"gem")||(_.cursor=_.limit-r,_.slice_del(),g())))}this.setCurrent=function(r){_.setCurrent(r)},this.getCurrent=function(){return _.getCurrent()},this.stem=function(){var r=_.cursor;return function(){for(var r,e,i,n=_.cursor;;){if(_.bra=_.cursor,r=_.find_among(o,11))switch(_.ket=_.cursor,r){case 1:_.slice_from("a");continue;case 2:_.slice_from("e");continue;case 3:_.slice_from("i");continue;case 4:_.slice_from("o");continue;case 5:_.slice_from("u");continue;case 6:if(_.cursor>=_.limit)break;_.cursor++;continue}break}for(_.cursor=n,_.bra=n,_.eq_s(1,"y")?(_.ket=_.cursor,_.slice_from("Y")):_.cursor=n;;)if(e=_.cursor,_.in_grouping(m,97,232)){if(i=_.cursor,_.bra=i,_.eq_s(1,"i"))_.ket=_.cursor,_.in_grouping(m,97,232)&&(_.slice_from("I"),_.cursor=e);else if(_.cursor=i,_.eq_s(1,"y"))_.ket=_.cursor,_.slice_from("Y"),_.cursor=e;else if(s(e))break}else if(s(e))break}(),_.cursor=r,i=_.limit,e=i,w()||((i=_.cursor)<3&&(i=3),w()||(e=_.cursor)),_.limit_backward=r,_.cursor=_.limit,function(){var r,e,i,n,o,t,s=_.limit-_.cursor;if(_.ket=_.cursor,r=_.find_among_b(c,5))switch(_.bra=_.cursor,r){case 1:b()&&_.slice_from("heid");break;case 2:k();break;case 3:b()&&_.out_grouping_b(f,97,232)&&_.slice_del()}if(_.cursor=_.limit-s,h(),_.cursor=_.limit-s,_.ket=_.cursor,_.eq_s_b(4,"heid")&&(_.bra=_.cursor,p()&&(e=_.limit-_.cursor,_.eq_s_b(1,"c")||(_.cursor=_.limit-e,_.slice_del(),_.ket=_.cursor,_.eq_s_b(2,"en")&&(_.bra=_.cursor,k())))),_.cursor=_.limit-s,_.ket=_.cursor,r=_.find_among_b(a,6))switch(_.bra=_.cursor,r){case 1:if(p()){if(_.slice_del(),i=_.limit-_.cursor,_.ket=_.cursor,_.eq_s_b(2,"ig")&&(_.bra=_.cursor,p()&&(n=_.limit-_.cursor,!_.eq_s_b(1,"e")))){_.cursor=_.limit-n,_.slice_del();break}_.cursor=_.limit-i,g()}break;case 2:p()&&(o=_.limit-_.cursor,_.eq_s_b(1,"e")||(_.cursor=_.limit-o,_.slice_del()));break;case 3:p()&&(_.slice_del(),h());break;case 4:p()&&_.slice_del();break;case 5:p()&&u&&_.slice_del()}_.cursor=_.limit-s,_.out_grouping_b(d,73,232)&&(t=_.limit-_.cursor,_.find_among_b(l,4)&&_.out_grouping_b(m,97,232)&&(_.cursor=_.limit-t,_.ket=_.cursor,_.cursor>_.limit_backward&&(_.cursor--,_.bra=_.cursor,_.slice_del())))}(),_.cursor=_.limit_backward,function(){for(var r;;)if(_.bra=_.cursor,r=_.find_among(n,3))switch(_.ket=_.cursor,r){case 1:_.slice_from("y");break;case 2:_.slice_from("i");break;case 3:if(_.cursor>=_.limit)return;_.cursor++}}(),!0}},function(r){return"function"==typeof r.update?r.update(function(r){return e.setCurrent(r),e.stem(),e.getCurrent()}):(e.setCurrent(r),e.stem(),e.getCurrent())}),r.Pipeline.registerFunction(r.nl.stemmer,"stemmer-nl"),r.nl.stopWordFilter=r.generateStopWordFilter(" aan al alles als altijd andere ben bij daar dan dat de der deze die dit doch doen door dus een eens en er ge geen geweest haar had heb hebben heeft hem het hier hij hoe hun iemand iets ik in is ja je kan kon kunnen maar me meer men met mij mijn moet na naar niet niets nog nu of om omdat onder ons ook op over reeds te tegen toch toen tot u uit uw van veel voor want waren was wat werd wezen wie wil worden wordt zal ze zelf zich zij zijn zo zonder zou".split(" ")),r.Pipeline.registerFunction(r.nl.stopWordFilter,"stopWordFilter-nl")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.no.js b/site/assets/javascripts/lunr/lunr.no.js deleted file mode 100644 index 031e4b206924c44337c7c8281510e850c4f46698..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.no.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Norwegian` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var r,n,i;e.no=function(){this.pipeline.reset(),this.pipeline.add(e.no.trimmer,e.no.stopWordFilter,e.no.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.no.stemmer))},e.no.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.no.trimmer=e.trimmerSupport.generateTrimmer(e.no.wordCharacters),e.Pipeline.registerFunction(e.no.trimmer,"trimmer-no"),e.no.stemmer=(r=e.stemmerSupport.Among,n=e.stemmerSupport.SnowballProgram,i=new function(){var o,s,a=[new r("a",-1,1),new r("e",-1,1),new r("ede",1,1),new r("ande",1,1),new r("ende",1,1),new r("ane",1,1),new r("ene",1,1),new r("hetene",6,1),new r("erte",1,3),new r("en",-1,1),new r("heten",9,1),new r("ar",-1,1),new r("er",-1,1),new r("heter",12,1),new r("s",-1,2),new r("as",14,1),new r("es",14,1),new r("edes",16,1),new r("endes",16,1),new r("enes",16,1),new r("hetenes",19,1),new r("ens",14,1),new r("hetens",21,1),new r("ers",14,1),new r("ets",14,1),new r("et",-1,1),new r("het",25,1),new r("ert",-1,3),new r("ast",-1,1)],m=[new r("dt",-1,-1),new r("vt",-1,-1)],l=[new r("leg",-1,1),new r("eleg",0,1),new r("ig",-1,1),new r("eig",2,1),new r("lig",2,1),new r("elig",4,1),new r("els",-1,1),new r("lov",-1,1),new r("elov",7,1),new r("slov",7,1),new r("hetslov",9,1)],u=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,48,0,128],d=[119,125,149,1],c=new n;this.setCurrent=function(e){c.setCurrent(e)},this.getCurrent=function(){return c.getCurrent()},this.stem=function(){var e,r,n,i,t=c.cursor;return function(){var e,r=c.cursor+3;if(s=c.limit,0<=r||r<=c.limit){for(o=r;;){if(e=c.cursor,c.in_grouping(u,97,248)){c.cursor=e;break}if(e>=c.limit)return;c.cursor=e+1}for(;!c.out_grouping(u,97,248);){if(c.cursor>=c.limit)return;c.cursor++}(s=c.cursor)<o&&(s=o)}}(),c.limit_backward=t,c.cursor=c.limit,function(){var e,r,n;if(c.cursor>=s&&(r=c.limit_backward,c.limit_backward=s,c.ket=c.cursor,e=c.find_among_b(a,29),c.limit_backward=r,e))switch(c.bra=c.cursor,e){case 1:c.slice_del();break;case 2:n=c.limit-c.cursor,c.in_grouping_b(d,98,122)?c.slice_del():(c.cursor=c.limit-n,c.eq_s_b(1,"k")&&c.out_grouping_b(u,97,248)&&c.slice_del());break;case 3:c.slice_from("er")}}(),c.cursor=c.limit,r=c.limit-c.cursor,c.cursor>=s&&(e=c.limit_backward,c.limit_backward=s,c.ket=c.cursor,c.find_among_b(m,2)?(c.bra=c.cursor,c.limit_backward=e,c.cursor=c.limit-r,c.cursor>c.limit_backward&&(c.cursor--,c.bra=c.cursor,c.slice_del())):c.limit_backward=e),c.cursor=c.limit,c.cursor>=s&&(i=c.limit_backward,c.limit_backward=s,c.ket=c.cursor,(n=c.find_among_b(l,11))?(c.bra=c.cursor,c.limit_backward=i,1==n&&c.slice_del()):c.limit_backward=i),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}),e.Pipeline.registerFunction(e.no.stemmer,"stemmer-no"),e.no.stopWordFilter=e.generateStopWordFilter("alle at av bare begge ble blei bli blir blitt bÃ¥de bÃ¥e da de deg dei deim deira deires dem den denne der dere deres det dette di din disse ditt du dykk dykkar dÃ¥ eg ein eit eitt eller elles en enn er et ett etter for fordi fra før ha hadde han hans har hennar henne hennes her hjÃ¥ ho hoe honom hoss hossen hun hva hvem hver hvilke hvilken hvis hvor hvordan hvorfor i ikke ikkje ikkje ingen ingi inkje inn inni ja jeg kan kom korleis korso kun kunne kva kvar kvarhelst kven kvi kvifor man mange me med medan meg meget mellom men mi min mine mitt mot mykje ned no noe noen noka noko nokon nokor nokre nÃ¥ nÃ¥r og ogsÃ¥ om opp oss over pÃ¥ samme seg selv si si sia sidan siden sin sine sitt sjøl skal skulle slik so som som somme somt sÃ¥ sÃ¥nn til um upp ut uten var vart varte ved vere verte vi vil ville vore vors vort vÃ¥r være være vært Ã¥".split(" ")),e.Pipeline.registerFunction(e.no.stopWordFilter,"stopWordFilter-no")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.pt.js b/site/assets/javascripts/lunr/lunr.pt.js deleted file mode 100644 index 59e766fe93ce77e8ab77cd9f4b2da0bb82e0cbbc..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.pt.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Portuguese` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var j,C,r;e.pt=function(){this.pipeline.reset(),this.pipeline.add(e.pt.trimmer,e.pt.stopWordFilter,e.pt.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.pt.stemmer))},e.pt.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.pt.trimmer=e.trimmerSupport.generateTrimmer(e.pt.wordCharacters),e.Pipeline.registerFunction(e.pt.trimmer,"trimmer-pt"),e.pt.stemmer=(j=e.stemmerSupport.Among,C=e.stemmerSupport.SnowballProgram,r=new function(){var s,n,i,o=[new j("",-1,3),new j("ã",0,1),new j("õ",0,2)],a=[new j("",-1,3),new j("a~",0,1),new j("o~",0,2)],r=[new j("ic",-1,-1),new j("ad",-1,-1),new j("os",-1,-1),new j("iv",-1,1)],t=[new j("ante",-1,1),new j("avel",-1,1),new j("Ãvel",-1,1)],u=[new j("ic",-1,1),new j("abil",-1,1),new j("iv",-1,1)],w=[new j("ica",-1,1),new j("ância",-1,1),new j("ência",-1,4),new j("ira",-1,9),new j("adora",-1,1),new j("osa",-1,1),new j("ista",-1,1),new j("iva",-1,8),new j("eza",-1,1),new j("logÃa",-1,2),new j("idade",-1,7),new j("ante",-1,1),new j("mente",-1,6),new j("amente",12,5),new j("ável",-1,1),new j("Ãvel",-1,1),new j("ución",-1,3),new j("ico",-1,1),new j("ismo",-1,1),new j("oso",-1,1),new j("amento",-1,1),new j("imento",-1,1),new j("ivo",-1,8),new j("aça~o",-1,1),new j("ador",-1,1),new j("icas",-1,1),new j("ências",-1,4),new j("iras",-1,9),new j("adoras",-1,1),new j("osas",-1,1),new j("istas",-1,1),new j("ivas",-1,8),new j("ezas",-1,1),new j("logÃas",-1,2),new j("idades",-1,7),new j("uciones",-1,3),new j("adores",-1,1),new j("antes",-1,1),new j("aço~es",-1,1),new j("icos",-1,1),new j("ismos",-1,1),new j("osos",-1,1),new j("amentos",-1,1),new j("imentos",-1,1),new j("ivos",-1,8)],m=[new j("ada",-1,1),new j("ida",-1,1),new j("ia",-1,1),new j("aria",2,1),new j("eria",2,1),new j("iria",2,1),new j("ara",-1,1),new j("era",-1,1),new j("ira",-1,1),new j("ava",-1,1),new j("asse",-1,1),new j("esse",-1,1),new j("isse",-1,1),new j("aste",-1,1),new j("este",-1,1),new j("iste",-1,1),new j("ei",-1,1),new j("arei",16,1),new j("erei",16,1),new j("irei",16,1),new j("am",-1,1),new j("iam",20,1),new j("ariam",21,1),new j("eriam",21,1),new j("iriam",21,1),new j("aram",20,1),new j("eram",20,1),new j("iram",20,1),new j("avam",20,1),new j("em",-1,1),new j("arem",29,1),new j("erem",29,1),new j("irem",29,1),new j("assem",29,1),new j("essem",29,1),new j("issem",29,1),new j("ado",-1,1),new j("ido",-1,1),new j("ando",-1,1),new j("endo",-1,1),new j("indo",-1,1),new j("ara~o",-1,1),new j("era~o",-1,1),new j("ira~o",-1,1),new j("ar",-1,1),new j("er",-1,1),new j("ir",-1,1),new j("as",-1,1),new j("adas",47,1),new j("idas",47,1),new j("ias",47,1),new j("arias",50,1),new j("erias",50,1),new j("irias",50,1),new j("aras",47,1),new j("eras",47,1),new j("iras",47,1),new j("avas",47,1),new j("es",-1,1),new j("ardes",58,1),new j("erdes",58,1),new j("irdes",58,1),new j("ares",58,1),new j("eres",58,1),new j("ires",58,1),new j("asses",58,1),new j("esses",58,1),new j("isses",58,1),new j("astes",58,1),new j("estes",58,1),new j("istes",58,1),new j("is",-1,1),new j("ais",71,1),new j("eis",71,1),new j("areis",73,1),new j("ereis",73,1),new j("ireis",73,1),new j("áreis",73,1),new j("éreis",73,1),new j("Ãreis",73,1),new j("ásseis",73,1),new j("ésseis",73,1),new j("Ãsseis",73,1),new j("áveis",73,1),new j("Ãeis",73,1),new j("arÃeis",84,1),new j("erÃeis",84,1),new j("irÃeis",84,1),new j("ados",-1,1),new j("idos",-1,1),new j("amos",-1,1),new j("áramos",90,1),new j("éramos",90,1),new j("Ãramos",90,1),new j("ávamos",90,1),new j("Ãamos",90,1),new j("arÃamos",95,1),new j("erÃamos",95,1),new j("irÃamos",95,1),new j("emos",-1,1),new j("aremos",99,1),new j("eremos",99,1),new j("iremos",99,1),new j("ássemos",99,1),new j("êssemos",99,1),new j("Ãssemos",99,1),new j("imos",-1,1),new j("armos",-1,1),new j("ermos",-1,1),new j("irmos",-1,1),new j("ámos",-1,1),new j("arás",-1,1),new j("erás",-1,1),new j("irás",-1,1),new j("eu",-1,1),new j("iu",-1,1),new j("ou",-1,1),new j("ará",-1,1),new j("erá",-1,1),new j("irá",-1,1)],c=[new j("a",-1,1),new j("i",-1,1),new j("o",-1,1),new j("os",-1,1),new j("á",-1,1),new j("Ã",-1,1),new j("ó",-1,1)],l=[new j("e",-1,1),new j("ç",-1,2),new j("é",-1,1),new j("ê",-1,1)],f=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,3,19,12,2],d=new C;function v(){if(d.out_grouping(f,97,250)){for(;!d.in_grouping(f,97,250);){if(d.cursor>=d.limit)return!0;d.cursor++}return!1}return!0}function p(){var e,r,s=d.cursor;if(d.in_grouping(f,97,250))if(e=d.cursor,v()){if(d.cursor=e,function(){if(d.in_grouping(f,97,250))for(;!d.out_grouping(f,97,250);){if(d.cursor>=d.limit)return!1;d.cursor++}return i=d.cursor,!0}())return}else i=d.cursor;if(d.cursor=s,d.out_grouping(f,97,250)){if(r=d.cursor,v()){if(d.cursor=r,!d.in_grouping(f,97,250)||d.cursor>=d.limit)return;d.cursor++}i=d.cursor}}function _(){for(;!d.in_grouping(f,97,250);){if(d.cursor>=d.limit)return!1;d.cursor++}for(;!d.out_grouping(f,97,250);){if(d.cursor>=d.limit)return!1;d.cursor++}return!0}function h(){return i<=d.cursor}function b(){return s<=d.cursor}function g(){var e;if(d.ket=d.cursor,!(e=d.find_among_b(w,45)))return!1;switch(d.bra=d.cursor,e){case 1:if(!b())return!1;d.slice_del();break;case 2:if(!b())return!1;d.slice_from("log");break;case 3:if(!b())return!1;d.slice_from("u");break;case 4:if(!b())return!1;d.slice_from("ente");break;case 5:if(!(n<=d.cursor))return!1;d.slice_del(),d.ket=d.cursor,(e=d.find_among_b(r,4))&&(d.bra=d.cursor,b()&&(d.slice_del(),1==e&&(d.ket=d.cursor,d.eq_s_b(2,"at")&&(d.bra=d.cursor,b()&&d.slice_del()))));break;case 6:if(!b())return!1;d.slice_del(),d.ket=d.cursor,(e=d.find_among_b(t,3))&&(d.bra=d.cursor,1==e&&b()&&d.slice_del());break;case 7:if(!b())return!1;d.slice_del(),d.ket=d.cursor,(e=d.find_among_b(u,3))&&(d.bra=d.cursor,1==e&&b()&&d.slice_del());break;case 8:if(!b())return!1;d.slice_del(),d.ket=d.cursor,d.eq_s_b(2,"at")&&(d.bra=d.cursor,b()&&d.slice_del());break;case 9:if(!h()||!d.eq_s_b(1,"e"))return!1;d.slice_from("ir")}return!0}function k(e,r){if(d.eq_s_b(1,e)){d.bra=d.cursor;var s=d.limit-d.cursor;if(d.eq_s_b(1,r))return d.cursor=d.limit-s,h()&&d.slice_del(),!1}return!0}function q(){if(!g()&&(d.cursor=d.limit,!function(){var e,r;if(d.cursor>=i){if(r=d.limit_backward,d.limit_backward=i,d.ket=d.cursor,e=d.find_among_b(m,120))return d.bra=d.cursor,1==e&&d.slice_del(),d.limit_backward=r,!0;d.limit_backward=r}return!1}()))return d.cursor=d.limit,d.ket=d.cursor,void((e=d.find_among_b(c,7))&&(d.bra=d.cursor,1==e&&h()&&d.slice_del()));var e;d.cursor=d.limit,d.ket=d.cursor,d.eq_s_b(1,"i")&&(d.bra=d.cursor,d.eq_s_b(1,"c")&&(d.cursor=d.limit,h()&&d.slice_del()))}this.setCurrent=function(e){d.setCurrent(e)},this.getCurrent=function(){return d.getCurrent()},this.stem=function(){var e,r=d.cursor;return function(){for(var e;;){if(d.bra=d.cursor,e=d.find_among(o,3))switch(d.ket=d.cursor,e){case 1:d.slice_from("a~");continue;case 2:d.slice_from("o~");continue;case 3:if(d.cursor>=d.limit)break;d.cursor++;continue}break}}(),d.cursor=r,e=d.cursor,i=d.limit,s=n=i,p(),d.cursor=e,_()&&(n=d.cursor,_()&&(s=d.cursor)),d.limit_backward=r,d.cursor=d.limit,q(),d.cursor=d.limit,function(){var e;if(d.ket=d.cursor,e=d.find_among_b(l,4))switch(d.bra=d.cursor,e){case 1:h()&&(d.slice_del(),d.ket=d.cursor,d.limit,d.cursor,k("u","g")&&k("i","c"));break;case 2:d.slice_from("c")}}(),d.cursor=d.limit_backward,function(){for(var e;;){if(d.bra=d.cursor,e=d.find_among(a,3))switch(d.ket=d.cursor,e){case 1:d.slice_from("ã");continue;case 2:d.slice_from("õ");continue;case 3:if(d.cursor>=d.limit)break;d.cursor++;continue}break}}(),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return r.setCurrent(e),r.stem(),r.getCurrent()}):(r.setCurrent(e),r.stem(),r.getCurrent())}),e.Pipeline.registerFunction(e.pt.stemmer,"stemmer-pt"),e.pt.stopWordFilter=e.generateStopWordFilter("a ao aos aquela aquelas aquele aqueles aquilo as até com como da das de dela delas dele deles depois do dos e ela elas ele eles em entre era eram essa essas esse esses esta estamos estas estava estavam este esteja estejam estejamos estes esteve estive estivemos estiver estivera estiveram estiverem estivermos estivesse estivessem estivéramos estivéssemos estou está estávamos estão eu foi fomos for fora foram forem formos fosse fossem fui fôramos fôssemos haja hajam hajamos havemos hei houve houvemos houver houvera houveram houverei houverem houveremos houveria houveriam houvermos houverá houverão houverÃamos houvesse houvessem houvéramos houvéssemos há hão isso isto já lhe lhes mais mas me mesmo meu meus minha minhas muito na nas nem no nos nossa nossas nosso nossos num numa não nós o os ou para pela pelas pelo pelos por qual quando que quem se seja sejam sejamos sem serei seremos seria seriam será serão serÃamos seu seus somos sou sua suas são só também te tem temos tenha tenham tenhamos tenho terei teremos teria teriam terá terão terÃamos teu teus teve tinha tinham tive tivemos tiver tivera tiveram tiverem tivermos tivesse tivessem tivéramos tivéssemos tu tua tuas tém tÃnhamos um uma você vocês vos à à s éramos".split(" ")),e.Pipeline.registerFunction(e.pt.stopWordFilter,"stopWordFilter-pt")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.ro.js b/site/assets/javascripts/lunr/lunr.ro.js deleted file mode 100644 index c5ecc96c4a3ec60e701471afda6ff1bfc457c69d..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.ro.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Romanian` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,i){"function"==typeof define&&define.amd?define(i):"object"==typeof exports?module.exports=i():i()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var h,z,i;e.ro=function(){this.pipeline.reset(),this.pipeline.add(e.ro.trimmer,e.ro.stopWordFilter,e.ro.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ro.stemmer))},e.ro.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.ro.trimmer=e.trimmerSupport.generateTrimmer(e.ro.wordCharacters),e.Pipeline.registerFunction(e.ro.trimmer,"trimmer-ro"),e.ro.stemmer=(h=e.stemmerSupport.Among,z=e.stemmerSupport.SnowballProgram,i=new function(){var r,n,t,a,o=[new h("",-1,3),new h("I",0,1),new h("U",0,2)],s=[new h("ea",-1,3),new h("aÅ£ia",-1,7),new h("aua",-1,2),new h("iua",-1,4),new h("aÅ£ie",-1,7),new h("ele",-1,3),new h("ile",-1,5),new h("iile",6,4),new h("iei",-1,4),new h("atei",-1,6),new h("ii",-1,4),new h("ului",-1,1),new h("ul",-1,1),new h("elor",-1,3),new h("ilor",-1,4),new h("iilor",14,4)],c=[new h("icala",-1,4),new h("iciva",-1,4),new h("ativa",-1,5),new h("itiva",-1,6),new h("icale",-1,4),new h("aÅ£iune",-1,5),new h("iÅ£iune",-1,6),new h("atoare",-1,5),new h("itoare",-1,6),new h("ătoare",-1,5),new h("icitate",-1,4),new h("abilitate",-1,1),new h("ibilitate",-1,2),new h("ivitate",-1,3),new h("icive",-1,4),new h("ative",-1,5),new h("itive",-1,6),new h("icali",-1,4),new h("atori",-1,5),new h("icatori",18,4),new h("itori",-1,6),new h("ători",-1,5),new h("icitati",-1,4),new h("abilitati",-1,1),new h("ivitati",-1,3),new h("icivi",-1,4),new h("ativi",-1,5),new h("itivi",-1,6),new h("icităi",-1,4),new h("abilităi",-1,1),new h("ivităi",-1,3),new h("icităţi",-1,4),new h("abilităţi",-1,1),new h("ivităţi",-1,3),new h("ical",-1,4),new h("ator",-1,5),new h("icator",35,4),new h("itor",-1,6),new h("ător",-1,5),new h("iciv",-1,4),new h("ativ",-1,5),new h("itiv",-1,6),new h("icală",-1,4),new h("icivă",-1,4),new h("ativă",-1,5),new h("itivă",-1,6)],u=[new h("ica",-1,1),new h("abila",-1,1),new h("ibila",-1,1),new h("oasa",-1,1),new h("ata",-1,1),new h("ita",-1,1),new h("anta",-1,1),new h("ista",-1,3),new h("uta",-1,1),new h("iva",-1,1),new h("ic",-1,1),new h("ice",-1,1),new h("abile",-1,1),new h("ibile",-1,1),new h("isme",-1,3),new h("iune",-1,2),new h("oase",-1,1),new h("ate",-1,1),new h("itate",17,1),new h("ite",-1,1),new h("ante",-1,1),new h("iste",-1,3),new h("ute",-1,1),new h("ive",-1,1),new h("ici",-1,1),new h("abili",-1,1),new h("ibili",-1,1),new h("iuni",-1,2),new h("atori",-1,1),new h("osi",-1,1),new h("ati",-1,1),new h("itati",30,1),new h("iti",-1,1),new h("anti",-1,1),new h("isti",-1,3),new h("uti",-1,1),new h("iÅŸti",-1,3),new h("ivi",-1,1),new h("ităi",-1,1),new h("oÅŸi",-1,1),new h("ităţi",-1,1),new h("abil",-1,1),new h("ibil",-1,1),new h("ism",-1,3),new h("ator",-1,1),new h("os",-1,1),new h("at",-1,1),new h("it",-1,1),new h("ant",-1,1),new h("ist",-1,3),new h("ut",-1,1),new h("iv",-1,1),new h("ică",-1,1),new h("abilă",-1,1),new h("ibilă",-1,1),new h("oasă",-1,1),new h("ată",-1,1),new h("ită",-1,1),new h("antă",-1,1),new h("istă",-1,3),new h("ută",-1,1),new h("ivă",-1,1)],w=[new h("ea",-1,1),new h("ia",-1,1),new h("esc",-1,1),new h("ăsc",-1,1),new h("ind",-1,1),new h("ând",-1,1),new h("are",-1,1),new h("ere",-1,1),new h("ire",-1,1),new h("âre",-1,1),new h("se",-1,2),new h("ase",10,1),new h("sese",10,2),new h("ise",10,1),new h("use",10,1),new h("âse",10,1),new h("eÅŸte",-1,1),new h("ăşte",-1,1),new h("eze",-1,1),new h("ai",-1,1),new h("eai",19,1),new h("iai",19,1),new h("sei",-1,2),new h("eÅŸti",-1,1),new h("ăşti",-1,1),new h("ui",-1,1),new h("ezi",-1,1),new h("âi",-1,1),new h("aÅŸi",-1,1),new h("seÅŸi",-1,2),new h("aseÅŸi",29,1),new h("seseÅŸi",29,2),new h("iseÅŸi",29,1),new h("useÅŸi",29,1),new h("âseÅŸi",29,1),new h("iÅŸi",-1,1),new h("uÅŸi",-1,1),new h("âşi",-1,1),new h("aÅ£i",-1,2),new h("eaÅ£i",38,1),new h("iaÅ£i",38,1),new h("eÅ£i",-1,2),new h("iÅ£i",-1,2),new h("âţi",-1,2),new h("arăţi",-1,1),new h("serăţi",-1,2),new h("aserăţi",45,1),new h("seserăţi",45,2),new h("iserăţi",45,1),new h("userăţi",45,1),new h("âserăţi",45,1),new h("irăţi",-1,1),new h("urăţi",-1,1),new h("ârăţi",-1,1),new h("am",-1,1),new h("eam",54,1),new h("iam",54,1),new h("em",-1,2),new h("asem",57,1),new h("sesem",57,2),new h("isem",57,1),new h("usem",57,1),new h("âsem",57,1),new h("im",-1,2),new h("âm",-1,2),new h("ăm",-1,2),new h("arăm",65,1),new h("serăm",65,2),new h("aserăm",67,1),new h("seserăm",67,2),new h("iserăm",67,1),new h("userăm",67,1),new h("âserăm",67,1),new h("irăm",65,1),new h("urăm",65,1),new h("ârăm",65,1),new h("au",-1,1),new h("eau",76,1),new h("iau",76,1),new h("indu",-1,1),new h("ându",-1,1),new h("ez",-1,1),new h("ească",-1,1),new h("ară",-1,1),new h("seră",-1,2),new h("aseră",84,1),new h("seseră",84,2),new h("iseră",84,1),new h("useră",84,1),new h("âseră",84,1),new h("iră",-1,1),new h("ură",-1,1),new h("âră",-1,1),new h("ează",-1,1)],i=[new h("a",-1,1),new h("e",-1,1),new h("ie",1,1),new h("i",-1,1),new h("ă",-1,1)],m=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,2,32,0,0,4],l=new z;function f(e,i){l.eq_s(1,e)&&(l.ket=l.cursor,l.in_grouping(m,97,259)&&l.slice_from(i))}function p(){if(l.out_grouping(m,97,259)){for(;!l.in_grouping(m,97,259);){if(l.cursor>=l.limit)return!0;l.cursor++}return!1}return!0}function d(){var e,i,r=l.cursor;if(l.in_grouping(m,97,259)){if(e=l.cursor,!p())return void(a=l.cursor);if(l.cursor=e,!function(){if(l.in_grouping(m,97,259))for(;!l.out_grouping(m,97,259);){if(l.cursor>=l.limit)return!0;l.cursor++}return!1}())return void(a=l.cursor)}l.cursor=r,l.out_grouping(m,97,259)&&(i=l.cursor,p()&&(l.cursor=i,l.in_grouping(m,97,259)&&l.cursor<l.limit&&l.cursor++),a=l.cursor)}function b(){for(;!l.in_grouping(m,97,259);){if(l.cursor>=l.limit)return!1;l.cursor++}for(;!l.out_grouping(m,97,259);){if(l.cursor>=l.limit)return!1;l.cursor++}return!0}function v(){return t<=l.cursor}function _(){var e,i=l.limit-l.cursor;if(l.ket=l.cursor,(e=l.find_among_b(c,46))&&(l.bra=l.cursor,v())){switch(e){case 1:l.slice_from("abil");break;case 2:l.slice_from("ibil");break;case 3:l.slice_from("iv");break;case 4:l.slice_from("ic");break;case 5:l.slice_from("at");break;case 6:l.slice_from("it")}return r=!0,l.cursor=l.limit-i,!0}return!1}function g(){var e,i;for(r=!1;;)if(i=l.limit-l.cursor,!_()){l.cursor=l.limit-i;break}if(l.ket=l.cursor,(e=l.find_among_b(u,62))&&(l.bra=l.cursor,n<=l.cursor)){switch(e){case 1:l.slice_del();break;case 2:l.eq_s_b(1,"Å£")&&(l.bra=l.cursor,l.slice_from("t"));break;case 3:l.slice_from("ist")}r=!0}}function k(){var e;l.ket=l.cursor,(e=l.find_among_b(i,5))&&(l.bra=l.cursor,a<=l.cursor&&1==e&&l.slice_del())}this.setCurrent=function(e){l.setCurrent(e)},this.getCurrent=function(){return l.getCurrent()},this.stem=function(){var e,i=l.cursor;return function(){for(var e,i;e=l.cursor,l.in_grouping(m,97,259)&&(i=l.cursor,l.bra=i,f("u","U"),l.cursor=i,f("i","I")),l.cursor=e,!(l.cursor>=l.limit);)l.cursor++}(),l.cursor=i,e=l.cursor,a=l.limit,n=t=a,d(),l.cursor=e,b()&&(t=l.cursor,b()&&(n=l.cursor)),l.limit_backward=i,l.cursor=l.limit,function(){var e,i;if(l.ket=l.cursor,(e=l.find_among_b(s,16))&&(l.bra=l.cursor,v()))switch(e){case 1:l.slice_del();break;case 2:l.slice_from("a");break;case 3:l.slice_from("e");break;case 4:l.slice_from("i");break;case 5:i=l.limit-l.cursor,l.eq_s_b(2,"ab")||(l.cursor=l.limit-i,l.slice_from("i"));break;case 6:l.slice_from("at");break;case 7:l.slice_from("aÅ£i")}}(),l.cursor=l.limit,g(),l.cursor=l.limit,r||(l.cursor=l.limit,function(){var e,i,r;if(l.cursor>=a){if(i=l.limit_backward,l.limit_backward=a,l.ket=l.cursor,e=l.find_among_b(w,94))switch(l.bra=l.cursor,e){case 1:if(r=l.limit-l.cursor,!l.out_grouping_b(m,97,259)&&(l.cursor=l.limit-r,!l.eq_s_b(1,"u")))break;case 2:l.slice_del()}l.limit_backward=i}}(),l.cursor=l.limit),k(),l.cursor=l.limit_backward,function(){for(var e;;){if(l.bra=l.cursor,e=l.find_among(o,3))switch(l.ket=l.cursor,e){case 1:l.slice_from("i");continue;case 2:l.slice_from("u");continue;case 3:if(l.cursor>=l.limit)break;l.cursor++;continue}break}}(),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return i.setCurrent(e),i.stem(),i.getCurrent()}):(i.setCurrent(e),i.stem(),i.getCurrent())}),e.Pipeline.registerFunction(e.ro.stemmer,"stemmer-ro"),e.ro.stopWordFilter=e.generateStopWordFilter("acea aceasta această aceea acei aceia acel acela acele acelea acest acesta aceste acestea aceÅŸti aceÅŸtia acolo acord acum ai aia aibă aici al ale alea altceva altcineva am ar are asemenea asta astea astăzi asupra au avea avem aveÅ£i azi aÅŸ aÅŸadar aÅ£i bine bucur bună ca care caut ce cel ceva chiar cinci cine cineva contra cu cum cumva curând curînd când cât câte câtva câţi cînd cît cîte cîtva cîţi că căci cărei căror cărui către da dacă dar datorită dată dau de deci deja deoarece departe deÅŸi din dinaintea dintr- dintre doi doilea două drept după dă ea ei el ele eram este eu eÅŸti face fata fi fie fiecare fii fim fiu fiÅ£i frumos fără graÅ£ie halbă iar ieri la le li lor lui lângă lîngă mai mea mei mele mereu meu mi mie mine mult multă mulÅ£i mulÅ£umesc mâine mîine mă ne nevoie nici nicăieri nimeni nimeri nimic niÅŸte noastre noastră noi noroc nostru nouă noÅŸtri nu opt ori oricare orice oricine oricum oricând oricât oricînd oricît oriunde patra patru patrulea pe pentru peste pic poate pot prea prima primul prin puÅ£in puÅ£ina puÅ£ină până pînă rog sa sale sau se spate spre sub sunt suntem sunteÅ£i sută sînt sîntem sînteÅ£i să săi său ta tale te timp tine toate toată tot totuÅŸi toÅ£i trei treia treilea tu tăi tău un una unde undeva unei uneia unele uneori unii unor unora unu unui unuia unul vi voastre voastră voi vostru vouă voÅŸtri vreme vreo vreun vă zece zero zi zice îi îl îmi împotriva în înainte înaintea încotro încât încît între întrucât întrucît îţi ăla ălea ăsta ăstea ăştia ÅŸapte ÅŸase ÅŸi ÅŸtiu Å£i Å£ie".split(" ")),e.Pipeline.registerFunction(e.ro.stopWordFilter,"stopWordFilter-ro")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.ru.js b/site/assets/javascripts/lunr/lunr.ru.js deleted file mode 100644 index 104bc6e86caf2bb1f281e44a3b2c72de5b865390..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.ru.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Russian` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,n){"function"==typeof define&&define.amd?define(n):"object"==typeof exports?module.exports=n():n()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var h,g,n;e.ru=function(){this.pipeline.reset(),this.pipeline.add(e.ru.trimmer,e.ru.stopWordFilter,e.ru.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.ru.stemmer))},e.ru.wordCharacters="Ѐ-Ò„Ò‡-ԯᴫᵸⷠ-ⷿꙀ-ꚟ︮︯",e.ru.trimmer=e.trimmerSupport.generateTrimmer(e.ru.wordCharacters),e.Pipeline.registerFunction(e.ru.trimmer,"trimmer-ru"),e.ru.stemmer=(h=e.stemmerSupport.Among,g=e.stemmerSupport.SnowballProgram,n=new function(){var n,e,r=[new h("в",-1,1),new h("ив",0,2),new h("ыв",0,2),new h("вши",-1,1),new h("ивши",3,2),new h("ывши",3,2),new h("вшиÑÑŒ",-1,1),new h("ившиÑÑŒ",6,2),new h("ывшиÑÑŒ",6,2)],t=[new h("ее",-1,1),new h("ие",-1,1),new h("ое",-1,1),new h("ые",-1,1),new h("ими",-1,1),new h("ыми",-1,1),new h("ей",-1,1),new h("ий",-1,1),new h("ой",-1,1),new h("ый",-1,1),new h("ем",-1,1),new h("им",-1,1),new h("ом",-1,1),new h("ым",-1,1),new h("его",-1,1),new h("ого",-1,1),new h("ему",-1,1),new h("ому",-1,1),new h("их",-1,1),new h("Ñ‹Ñ…",-1,1),new h("ею",-1,1),new h("ою",-1,1),new h("ую",-1,1),new h("ÑŽÑŽ",-1,1),new h("аÑ",-1,1),new h("ÑÑ",-1,1)],w=[new h("ем",-1,1),new h("нн",-1,1),new h("вш",-1,1),new h("ивш",2,2),new h("ывш",2,2),new h("щ",-1,1),new h("ющ",5,1),new h("ующ",6,2)],i=[new h("ÑÑŒ",-1,1),new h("ÑÑ",-1,1)],u=[new h("ла",-1,1),new h("ила",0,2),new h("ыла",0,2),new h("на",-1,1),new h("ена",3,2),new h("ете",-1,1),new h("ите",-1,2),new h("йте",-1,1),new h("ейте",7,2),new h("уйте",7,2),new h("ли",-1,1),new h("или",10,2),new h("ыли",10,2),new h("й",-1,1),new h("ей",13,2),new h("уй",13,2),new h("л",-1,1),new h("ил",16,2),new h("ыл",16,2),new h("ем",-1,1),new h("им",-1,2),new h("ым",-1,2),new h("н",-1,1),new h("ен",22,2),new h("ло",-1,1),new h("ило",24,2),new h("ыло",24,2),new h("но",-1,1),new h("ено",27,2),new h("нно",27,1),new h("ет",-1,1),new h("ует",30,2),new h("ит",-1,2),new h("Ñ‹Ñ‚",-1,2),new h("ÑŽÑ‚",-1,1),new h("уют",34,2),new h("ÑÑ‚",-1,2),new h("ны",-1,1),new h("ены",37,2),new h("Ñ‚ÑŒ",-1,1),new h("ить",39,2),new h("Ñ‹Ñ‚ÑŒ",39,2),new h("ешь",-1,1),new h("ишь",-1,2),new h("ÑŽ",-1,2),new h("ую",44,2)],s=[new h("а",-1,1),new h("ев",-1,1),new h("ов",-1,1),new h("е",-1,1),new h("ие",3,1),new h("ье",3,1),new h("и",-1,1),new h("еи",6,1),new h("ии",6,1),new h("ами",6,1),new h("Ñми",6,1),new h("иÑми",10,1),new h("й",-1,1),new h("ей",12,1),new h("ией",13,1),new h("ий",12,1),new h("ой",12,1),new h("ам",-1,1),new h("ем",-1,1),new h("ием",18,1),new h("ом",-1,1),new h("Ñм",-1,1),new h("иÑм",21,1),new h("о",-1,1),new h("у",-1,1),new h("ах",-1,1),new h("ÑÑ…",-1,1),new h("иÑÑ…",26,1),new h("Ñ‹",-1,1),new h("ÑŒ",-1,1),new h("ÑŽ",-1,1),new h("ию",30,1),new h("ью",30,1),new h("Ñ",-1,1),new h("иÑ",33,1),new h("ÑŒÑ",33,1)],o=[new h("оÑÑ‚",-1,1),new h("оÑÑ‚ÑŒ",-1,1)],c=[new h("ейше",-1,1),new h("н",-1,2),new h("ейш",-1,1),new h("ÑŒ",-1,3)],m=[33,65,8,232],l=new g;function f(){for(;!l.in_grouping(m,1072,1103);){if(l.cursor>=l.limit)return!1;l.cursor++}return!0}function a(){for(;!l.out_grouping(m,1072,1103);){if(l.cursor>=l.limit)return!1;l.cursor++}return!0}function p(e,n){var r,t;if(l.ket=l.cursor,r=l.find_among_b(e,n)){switch(l.bra=l.cursor,r){case 1:if(t=l.limit-l.cursor,!l.eq_s_b(1,"а")&&(l.cursor=l.limit-t,!l.eq_s_b(1,"Ñ")))return!1;case 2:l.slice_del()}return!0}return!1}function d(e,n){var r;return l.ket=l.cursor,!!(r=l.find_among_b(e,n))&&(l.bra=l.cursor,1==r&&l.slice_del(),!0)}function _(){return!!d(t,26)&&(p(w,8),!0)}function b(){var e;l.ket=l.cursor,(e=l.find_among_b(o,2))&&(l.bra=l.cursor,n<=l.cursor&&1==e&&l.slice_del())}this.setCurrent=function(e){l.setCurrent(e)},this.getCurrent=function(){return l.getCurrent()},this.stem=function(){return e=l.limit,n=e,f()&&(e=l.cursor,a()&&f()&&a()&&(n=l.cursor)),l.cursor=l.limit,!(l.cursor<e)&&(l.limit_backward=e,p(r,9)||(l.cursor=l.limit,d(i,2)||(l.cursor=l.limit),_()||(l.cursor=l.limit,p(u,46)||(l.cursor=l.limit,d(s,36)))),l.cursor=l.limit,l.ket=l.cursor,l.eq_s_b(1,"и")?(l.bra=l.cursor,l.slice_del()):l.cursor=l.limit,b(),l.cursor=l.limit,function(){var e;if(l.ket=l.cursor,e=l.find_among_b(c,4))switch(l.bra=l.cursor,e){case 1:if(l.slice_del(),l.ket=l.cursor,!l.eq_s_b(1,"н"))break;l.bra=l.cursor;case 2:if(!l.eq_s_b(1,"н"))break;case 3:l.slice_del()}}(),!0)}},function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}),e.Pipeline.registerFunction(e.ru.stemmer,"stemmer-ru"),e.ru.stopWordFilter=e.generateStopWordFilter("алло без близко более больше будем будет будете будешь будто буду будут будь бы бывает бывь был была были было быть в Ð²Ð°Ð¶Ð½Ð°Ñ Ð²Ð°Ð¶Ð½Ð¾Ðµ важные важный вам вами Ð²Ð°Ñ Ð²Ð°Ñˆ ваша ваше ваши вверх вдали вдруг ведь везде веÑÑŒ вниз внизу во вокруг вон воÑемнадцатый воÑемнадцать воÑемь воÑьмой вот впрочем времени Ð²Ñ€ÐµÐ¼Ñ Ð²Ñе вÑегда вÑего вÑем вÑеми вÑему вÑех вÑею вÑÑŽ вÑюду вÑÑ Ð²ÑÑ‘ второй вы г где говорил говорит год года году да давно даже далеко дальше даром два двадцатый двадцать две двенадцатый двенадцать двух девÑтнадцатый девÑтнадцать девÑтый девÑÑ‚ÑŒ дейÑтвительно дел день деÑÑтый деÑÑÑ‚ÑŒ Ð´Ð»Ñ Ð´Ð¾ довольно долго должно Ð´Ñ€ÑƒÐ³Ð°Ñ Ð´Ñ€ÑƒÐ³Ð¸Ðµ других друго другое другой е его ее ей ему еÑли еÑÑ‚ÑŒ еще ещё ею её ж же жизнь за занÑÑ‚ занÑта занÑто занÑÑ‚Ñ‹ затем зато зачем здеÑÑŒ значит и из или им именно иметь ими Ð¸Ð¼Ñ Ð¸Ð½Ð¾Ð³Ð´Ð° их к ÐºÐ°Ð¶Ð´Ð°Ñ ÐºÐ°Ð¶Ð´Ð¾Ðµ каждые каждый кажетÑÑ ÐºÐ°Ðº ÐºÐ°ÐºÐ°Ñ ÐºÐ°ÐºÐ¾Ð¹ кем когда кого ком кому конечно ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð³Ð¾ которой которые который которых кроме кругом кто куда лет ли лишь лучше люди м мало между Ð¼ÐµÐ»Ñ Ð¼ÐµÐ½ÐµÐµ меньше Ð¼ÐµÐ½Ñ Ð¼Ð¸Ð»Ð»Ð¸Ð¾Ð½Ð¾Ð² мимо мира мне много многочиÑÐ»ÐµÐ½Ð½Ð°Ñ Ð¼Ð½Ð¾Ð³Ð¾Ñ‡Ð¸Ñленное многочиÑленные многочиÑленный мной мною мог могут мож может можно можхо мои мой мор мочь Ð¼Ð¾Ñ Ð¼Ð¾Ñ‘ мы на наверху над надо назад наиболее наконец нам нами Ð½Ð°Ñ Ð½Ð°Ñ‡Ð°Ð»Ð° наш наша наше наши не него недавно недалеко нее ней Ð½ÐµÐ»ÑŒÐ·Ñ Ð½ÐµÐ¼ немного нему непрерывно нередко неÑколько нет нею неё ни нибудь ниже низко никогда никуда ними них ничего но ну нужно нх о об оба обычно один одиннадцатый одиннадцать однажды однако одного одной около он она они оно опÑÑ‚ÑŒ оÑобенно от отовÑюду отÑюда очень первый перед по под пожалуйÑта позже пока пор пора поÑле поÑреди потом потому почему почти прекраÑно при про проÑто против процентов пÑтнадцатый пÑтнадцать пÑтый пÑÑ‚ÑŒ раз разве рано раньше Ñ€Ñдом Ñ Ñам Ñама Ñами Ñамим Ñамими Ñамих Ñамо Ñамого Ñамой Ñамом Ñамому Ñаму Ñвое Ñвоего Ñвоей Ñвои Ñвоих Ñвою Ñеаой Ñебе ÑÐµÐ±Ñ ÑÐµÐ³Ð¾Ð´Ð½Ñ Ñедьмой ÑÐµÐ¹Ñ‡Ð°Ñ Ñемнадцатый Ñемнадцать Ñемь Ñих Ñказал Ñказала Ñказать Ñколько Ñлишком Ñначала Ñнова Ñо Ñобой Ñобою ÑовÑем ÑпаÑибо Ñтал Ñуть Ñ‚ та так Ñ‚Ð°ÐºÐ°Ñ Ñ‚Ð°ÐºÐ¶Ðµ такие такое такой там твой Ñ‚Ð²Ð¾Ñ Ñ‚Ð²Ð¾Ñ‘ те тебе Ñ‚ÐµÐ±Ñ Ñ‚ÐµÐ¼ теми теперь тех то тобой тобою тогда того тоже только том тому тот тою третий три тринадцатый тринадцать ту туда тут Ñ‚Ñ‹ Ñ‚Ñ‹ÑÑч у уж уже уметь хорошо хотеть хоть Ñ…Ð¾Ñ‚Ñ Ñ…Ð¾Ñ‡ÐµÑˆÑŒ чаÑто чаще чего человек чем чему через четвертый четыре четырнадцатый четырнадцать что чтоб чтобы чуть шеÑтнадцатый шеÑтнадцать шеÑтой шеÑÑ‚ÑŒ Ñта Ñти Ñтим Ñтими Ñтих Ñто Ñтого Ñтой Ñтом Ñтому Ñтот Ñту Ñ \ufeffа".split(" ")),e.Pipeline.registerFunction(e.ru.stopWordFilter,"stopWordFilter-ru")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.stemmer.support.js b/site/assets/javascripts/lunr/lunr.stemmer.support.js deleted file mode 100644 index ae2c66aa56d3246f3362084bdb03fb7f8f795ffe..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.stemmer.support.js +++ /dev/null @@ -1,9 +0,0 @@ -/*! - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(r,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():t()(r.lunr)}(this,function(){return function(r){r.stemmerSupport={Among:function(r,t,i,s){if(this.toCharArray=function(r){for(var t=r.length,i=new Array(t),s=0;s<t;s++)i[s]=r.charCodeAt(s);return i},!r&&""!=r||!t&&0!=t||!i)throw"Bad Among initialisation: s:"+r+", substring_i: "+t+", result: "+i;this.s_size=r.length,this.s=this.toCharArray(r),this.substring_i=t,this.result=i,this.method=s},SnowballProgram:function(){var b;return{bra:0,ket:0,limit:0,cursor:0,limit_backward:0,setCurrent:function(r){b=r,this.cursor=0,this.limit=r.length,this.limit_backward=0,this.bra=this.cursor,this.ket=this.limit},getCurrent:function(){var r=b;return b=null,r},in_grouping:function(r,t,i){if(this.cursor<this.limit){var s=b.charCodeAt(this.cursor);if(s<=i&&t<=s&&r[(s-=t)>>3]&1<<(7&s))return this.cursor++,!0}return!1},in_grouping_b:function(r,t,i){if(this.cursor>this.limit_backward){var s=b.charCodeAt(this.cursor-1);if(s<=i&&t<=s&&r[(s-=t)>>3]&1<<(7&s))return this.cursor--,!0}return!1},out_grouping:function(r,t,i){if(this.cursor<this.limit){var s=b.charCodeAt(this.cursor);if(i<s||s<t)return this.cursor++,!0;if(!(r[(s-=t)>>3]&1<<(7&s)))return this.cursor++,!0}return!1},out_grouping_b:function(r,t,i){if(this.cursor>this.limit_backward){var s=b.charCodeAt(this.cursor-1);if(i<s||s<t)return this.cursor--,!0;if(!(r[(s-=t)>>3]&1<<(7&s)))return this.cursor--,!0}return!1},eq_s:function(r,t){if(this.limit-this.cursor<r)return!1;for(var i=0;i<r;i++)if(b.charCodeAt(this.cursor+i)!=t.charCodeAt(i))return!1;return this.cursor+=r,!0},eq_s_b:function(r,t){if(this.cursor-this.limit_backward<r)return!1;for(var i=0;i<r;i++)if(b.charCodeAt(this.cursor-r+i)!=t.charCodeAt(i))return!1;return this.cursor-=r,!0},find_among:function(r,t){for(var i=0,s=t,e=this.cursor,n=this.limit,u=0,o=0,h=!1;;){for(var c=i+(s-i>>1),a=0,f=u<o?u:o,l=r[c],_=f;_<l.s_size;_++){if(e+f==n){a=-1;break}if(a=b.charCodeAt(e+f)-l.s[_])break;f++}if(a<0?(s=c,o=f):(i=c,u=f),s-i<=1){if(0<i||s==i||h)break;h=!0}}for(;;){if(u>=(l=r[i]).s_size){if(this.cursor=e+l.s_size,!l.method)return l.result;var m=l.method();if(this.cursor=e+l.s_size,m)return l.result}if((i=l.substring_i)<0)return 0}},find_among_b:function(r,t){for(var i=0,s=t,e=this.cursor,n=this.limit_backward,u=0,o=0,h=!1;;){for(var c=i+(s-i>>1),a=0,f=u<o?u:o,l=(_=r[c]).s_size-1-f;0<=l;l--){if(e-f==n){a=-1;break}if(a=b.charCodeAt(e-1-f)-_.s[l])break;f++}if(a<0?(s=c,o=f):(i=c,u=f),s-i<=1){if(0<i||s==i||h)break;h=!0}}for(;;){var _;if(u>=(_=r[i]).s_size){if(this.cursor=e-_.s_size,!_.method)return _.result;var m=_.method();if(this.cursor=e-_.s_size,m)return _.result}if((i=_.substring_i)<0)return 0}},replace_s:function(r,t,i){var s=i.length-(t-r);return b=b.substring(0,r)+i+b.substring(t),this.limit+=s,this.cursor>=t?this.cursor+=s:this.cursor>r&&(this.cursor=r),s},slice_check:function(){if(this.bra<0||this.bra>this.ket||this.ket>this.limit||this.limit>b.length)throw"faulty slice operation"},slice_from:function(r){this.slice_check(),this.replace_s(this.bra,this.ket,r)},slice_del:function(){this.slice_from("")},insert:function(r,t,i){var s=this.replace_s(r,t,i);r<=this.bra&&(this.bra+=s),r<=this.ket&&(this.ket+=s)},slice_to:function(){return this.slice_check(),b.substring(this.bra,this.ket)},eq_v_b:function(r){return this.eq_s_b(r.length,r)}}}},r.trimmerSupport={generateTrimmer:function(r){var t=new RegExp("^[^"+r+"]+"),i=new RegExp("[^"+r+"]+$");return function(r){return"function"==typeof r.update?r.update(function(r){return r.replace(t,"").replace(i,"")}):r.replace(t,"").replace(i,"")}}}}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.sv.js b/site/assets/javascripts/lunr/lunr.sv.js deleted file mode 100644 index a46a4e7095b6c9f3abf6fbd63cecf82f8eacb06b..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.sv.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Swedish` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var r,l,n;e.sv=function(){this.pipeline.reset(),this.pipeline.add(e.sv.trimmer,e.sv.stopWordFilter,e.sv.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(e.sv.stemmer))},e.sv.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",e.sv.trimmer=e.trimmerSupport.generateTrimmer(e.sv.wordCharacters),e.Pipeline.registerFunction(e.sv.trimmer,"trimmer-sv"),e.sv.stemmer=(r=e.stemmerSupport.Among,l=e.stemmerSupport.SnowballProgram,n=new function(){var n,t,i=[new r("a",-1,1),new r("arna",0,1),new r("erna",0,1),new r("heterna",2,1),new r("orna",0,1),new r("ad",-1,1),new r("e",-1,1),new r("ade",6,1),new r("ande",6,1),new r("arne",6,1),new r("are",6,1),new r("aste",6,1),new r("en",-1,1),new r("anden",12,1),new r("aren",12,1),new r("heten",12,1),new r("ern",-1,1),new r("ar",-1,1),new r("er",-1,1),new r("heter",18,1),new r("or",-1,1),new r("s",-1,2),new r("as",21,1),new r("arnas",22,1),new r("ernas",22,1),new r("ornas",22,1),new r("es",21,1),new r("ades",26,1),new r("andes",26,1),new r("ens",21,1),new r("arens",29,1),new r("hetens",29,1),new r("erns",21,1),new r("at",-1,1),new r("andet",-1,1),new r("het",-1,1),new r("ast",-1,1)],s=[new r("dd",-1,-1),new r("gd",-1,-1),new r("nn",-1,-1),new r("dt",-1,-1),new r("gt",-1,-1),new r("kt",-1,-1),new r("tt",-1,-1)],a=[new r("ig",-1,1),new r("lig",0,1),new r("els",-1,1),new r("fullt",-1,3),new r("löst",-1,2)],o=[17,65,16,1,0,0,0,0,0,0,0,0,0,0,0,0,24,0,32],u=[119,127,149],m=new l;this.setCurrent=function(e){m.setCurrent(e)},this.getCurrent=function(){return m.getCurrent()},this.stem=function(){var e,r=m.cursor;return function(){var e,r=m.cursor+3;if(t=m.limit,0<=r||r<=m.limit){for(n=r;;){if(e=m.cursor,m.in_grouping(o,97,246)){m.cursor=e;break}if(m.cursor=e,m.cursor>=m.limit)return;m.cursor++}for(;!m.out_grouping(o,97,246);){if(m.cursor>=m.limit)return;m.cursor++}(t=m.cursor)<n&&(t=n)}}(),m.limit_backward=r,m.cursor=m.limit,function(){var e,r=m.limit_backward;if(m.cursor>=t&&(m.limit_backward=t,m.cursor=m.limit,m.ket=m.cursor,e=m.find_among_b(i,37),m.limit_backward=r,e))switch(m.bra=m.cursor,e){case 1:m.slice_del();break;case 2:m.in_grouping_b(u,98,121)&&m.slice_del()}}(),m.cursor=m.limit,e=m.limit_backward,m.cursor>=t&&(m.limit_backward=t,m.cursor=m.limit,m.find_among_b(s,7)&&(m.cursor=m.limit,m.ket=m.cursor,m.cursor>m.limit_backward&&(m.bra=--m.cursor,m.slice_del())),m.limit_backward=e),m.cursor=m.limit,function(){var e,r;if(m.cursor>=t){if(r=m.limit_backward,m.limit_backward=t,m.cursor=m.limit,m.ket=m.cursor,e=m.find_among_b(a,5))switch(m.bra=m.cursor,e){case 1:m.slice_del();break;case 2:m.slice_from("lös");break;case 3:m.slice_from("full")}m.limit_backward=r}}(),!0}},function(e){return"function"==typeof e.update?e.update(function(e){return n.setCurrent(e),n.stem(),n.getCurrent()}):(n.setCurrent(e),n.stem(),n.getCurrent())}),e.Pipeline.registerFunction(e.sv.stemmer,"stemmer-sv"),e.sv.stopWordFilter=e.generateStopWordFilter("alla allt att av blev bli blir blivit de dem den denna deras dess dessa det detta dig din dina ditt du där dÃ¥ efter ej eller en er era ert ett frÃ¥n för ha hade han hans har henne hennes hon honom hur här i icke ingen inom inte jag ju kan kunde man med mellan men mig min mina mitt mot mycket ni nu när nÃ¥gon nÃ¥got nÃ¥gra och om oss pÃ¥ samma sedan sig sin sina sitta själv skulle som sÃ¥ sÃ¥dan sÃ¥dana sÃ¥dant till under upp ut utan vad var vara varför varit varje vars vart vem vi vid vilka vilkas vilken vilket vÃ¥r vÃ¥ra vÃ¥rt än är Ã¥t över".split(" ")),e.Pipeline.registerFunction(e.sv.stopWordFilter,"stopWordFilter-sv")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.th.js b/site/assets/javascripts/lunr/lunr.th.js deleted file mode 100644 index 7f9887f7b2afaa0c8838e7367cb7c178c9835936..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.th.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Thai` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2017, Keerati Thiwanruk - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(t){if(void 0===t)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===t.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var i="2"==t.version[0];t.th=function(){this.pipeline.reset(),this.pipeline.add(t.th.trimmer),i?this.tokenizer=t.th.tokenizer:(t.tokenizer&&(t.tokenizer=t.th.tokenizer),this.tokenizerFn&&(this.tokenizerFn=t.th.tokenizer))},t.th.wordCharacters="[฀-๿]",t.th.trimmer=t.trimmerSupport.generateTrimmer(t.th.wordCharacters),t.Pipeline.registerFunction(t.th.trimmer,"trimmer-th");var n=t.wordcut;n.init(),t.th.tokenizer=function(e){if(!arguments.length||null==e||null==e)return[];if(Array.isArray(e))return e.map(function(e){return i?new t.Token(e):e});var r=e.toString().replace(/^\s+/,"");return n.cut(r).split("|")}}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.tr.js b/site/assets/javascripts/lunr/lunr.tr.js deleted file mode 100644 index 64ba95cb120b4931f58b089b5dfc0f5ca31a708b..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.tr.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Turkish` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2014, Mihai Valentin - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(r,i){"function"==typeof define&&define.amd?define(i):"object"==typeof exports?module.exports=i():i()(r.lunr)}(this,function(){return function(r){if(void 0===r)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===r.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");var mr,dr,i;r.tr=function(){this.pipeline.reset(),this.pipeline.add(r.tr.trimmer,r.tr.stopWordFilter,r.tr.stemmer),this.searchPipeline&&(this.searchPipeline.reset(),this.searchPipeline.add(r.tr.stemmer))},r.tr.wordCharacters="A-Za-zªºÀ-ÖØ-öø-Ê¸Ë -ˤᴀ-ᴥᴬ-ᵜᵢ-ᵥᵫ-áµ·áµ¹-ᶾḀ-ỿâ±â¿â‚-â‚œâ„ªâ„«â„²â…Žâ… -ↈⱠ-ⱿꜢ-ꞇꞋ-êžêž°-ꞷꟷ-ꟿꬰ-êšêœ-ê¤ï¬€-stA-Zï½-z",r.tr.trimmer=r.trimmerSupport.generateTrimmer(r.tr.wordCharacters),r.Pipeline.registerFunction(r.tr.trimmer,"trimmer-tr"),r.tr.stemmer=(mr=r.stemmerSupport.Among,dr=r.stemmerSupport.SnowballProgram,i=new function(){var t,r=[new mr("m",-1,-1),new mr("n",-1,-1),new mr("miz",-1,-1),new mr("niz",-1,-1),new mr("muz",-1,-1),new mr("nuz",-1,-1),new mr("müz",-1,-1),new mr("nüz",-1,-1),new mr("mız",-1,-1),new mr("nız",-1,-1)],i=[new mr("leri",-1,-1),new mr("ları",-1,-1)],e=[new mr("ni",-1,-1),new mr("nu",-1,-1),new mr("nü",-1,-1),new mr("nı",-1,-1)],n=[new mr("in",-1,-1),new mr("un",-1,-1),new mr("ün",-1,-1),new mr("ın",-1,-1)],u=[new mr("a",-1,-1),new mr("e",-1,-1)],o=[new mr("na",-1,-1),new mr("ne",-1,-1)],s=[new mr("da",-1,-1),new mr("ta",-1,-1),new mr("de",-1,-1),new mr("te",-1,-1)],c=[new mr("nda",-1,-1),new mr("nde",-1,-1)],l=[new mr("dan",-1,-1),new mr("tan",-1,-1),new mr("den",-1,-1),new mr("ten",-1,-1)],a=[new mr("ndan",-1,-1),new mr("nden",-1,-1)],m=[new mr("la",-1,-1),new mr("le",-1,-1)],d=[new mr("ca",-1,-1),new mr("ce",-1,-1)],f=[new mr("im",-1,-1),new mr("um",-1,-1),new mr("üm",-1,-1),new mr("ım",-1,-1)],b=[new mr("sin",-1,-1),new mr("sun",-1,-1),new mr("sün",-1,-1),new mr("sın",-1,-1)],w=[new mr("iz",-1,-1),new mr("uz",-1,-1),new mr("üz",-1,-1),new mr("ız",-1,-1)],_=[new mr("siniz",-1,-1),new mr("sunuz",-1,-1),new mr("sünüz",-1,-1),new mr("sınız",-1,-1)],k=[new mr("lar",-1,-1),new mr("ler",-1,-1)],p=[new mr("niz",-1,-1),new mr("nuz",-1,-1),new mr("nüz",-1,-1),new mr("nız",-1,-1)],g=[new mr("dir",-1,-1),new mr("tir",-1,-1),new mr("dur",-1,-1),new mr("tur",-1,-1),new mr("dür",-1,-1),new mr("tür",-1,-1),new mr("dır",-1,-1),new mr("tır",-1,-1)],y=[new mr("casına",-1,-1),new mr("cesine",-1,-1)],z=[new mr("di",-1,-1),new mr("ti",-1,-1),new mr("dik",-1,-1),new mr("tik",-1,-1),new mr("duk",-1,-1),new mr("tuk",-1,-1),new mr("dük",-1,-1),new mr("tük",-1,-1),new mr("dık",-1,-1),new mr("tık",-1,-1),new mr("dim",-1,-1),new mr("tim",-1,-1),new mr("dum",-1,-1),new mr("tum",-1,-1),new mr("düm",-1,-1),new mr("tüm",-1,-1),new mr("dım",-1,-1),new mr("tım",-1,-1),new mr("din",-1,-1),new mr("tin",-1,-1),new mr("dun",-1,-1),new mr("tun",-1,-1),new mr("dün",-1,-1),new mr("tün",-1,-1),new mr("dın",-1,-1),new mr("tın",-1,-1),new mr("du",-1,-1),new mr("tu",-1,-1),new mr("dü",-1,-1),new mr("tü",-1,-1),new mr("dı",-1,-1),new mr("tı",-1,-1)],h=[new mr("sa",-1,-1),new mr("se",-1,-1),new mr("sak",-1,-1),new mr("sek",-1,-1),new mr("sam",-1,-1),new mr("sem",-1,-1),new mr("san",-1,-1),new mr("sen",-1,-1)],v=[new mr("miÅŸ",-1,-1),new mr("muÅŸ",-1,-1),new mr("müş",-1,-1),new mr("mış",-1,-1)],q=[new mr("b",-1,1),new mr("c",-1,2),new mr("d",-1,3),new mr("ÄŸ",-1,4)],C=[17,65,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32,8,0,0,0,0,0,0,1],P=[1,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,0,1],F=[65],S=[65],W=[["a",[1,64,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],97,305],["e",[17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130],101,252],["ı",[1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1],97,305],["i",[17],101,105],["o",F,111,117],["ö",S,246,252],["u",F,111,117]],L=new dr;function x(r,i,e){for(;;){var n=L.limit-L.cursor;if(L.in_grouping_b(r,i,e)){L.cursor=L.limit-n;break}if(L.cursor=L.limit-n,L.cursor<=L.limit_backward)return!1;L.cursor--}return!0}function A(){var r,i;r=L.limit-L.cursor,x(C,97,305);for(var e=0;e<W.length;e++){i=L.limit-L.cursor;var n=W[e];if(L.eq_s_b(1,n[0])&&x(n[1],n[2],n[3]))return L.cursor=L.limit-r,!0;L.cursor=L.limit-i}return L.cursor=L.limit-i,!(!L.eq_s_b(1,"ü")||!x(S,246,252))&&(L.cursor=L.limit-r,!0)}function E(r,i){var e,n=L.limit-L.cursor;return r()&&(L.cursor=L.limit-n,L.cursor>L.limit_backward&&(L.cursor--,e=L.limit-L.cursor,i()))?(L.cursor=L.limit-e,!0):(L.cursor=L.limit-n,r()?(L.cursor=L.limit-n,!1):(L.cursor=L.limit-n,!(L.cursor<=L.limit_backward)&&(L.cursor--,!!i()&&(L.cursor=L.limit-n,!0))))}function j(r){return E(r,function(){return L.in_grouping_b(C,97,305)})}function T(){return j(function(){return L.eq_s_b(1,"n")})}function Z(){return j(function(){return L.eq_s_b(1,"y")})}function B(){return L.find_among_b(r,10)&&E(function(){return L.in_grouping_b(P,105,305)},function(){return L.out_grouping_b(C,97,305)})}function D(){return A()&&L.in_grouping_b(P,105,305)&&j(function(){return L.eq_s_b(1,"s")})}function G(){return L.find_among_b(i,2)}function H(){return A()&&L.find_among_b(n,4)&&T()}function I(){return A()&&L.find_among_b(s,4)}function J(){return A()&&L.find_among_b(c,2)}function K(){return A()&&L.find_among_b(f,4)&&Z()}function M(){return A()&&L.find_among_b(b,4)}function N(){return A()&&L.find_among_b(w,4)&&Z()}function O(){return L.find_among_b(_,4)}function Q(){return A()&&L.find_among_b(k,2)}function R(){return A()&&L.find_among_b(g,8)}function U(){return A()&&L.find_among_b(z,32)&&Z()}function V(){return L.find_among_b(h,8)&&Z()}function X(){return A()&&L.find_among_b(v,4)&&Z()}function Y(){var r=L.limit-L.cursor;return!(X()||(L.cursor=L.limit-r,U()||(L.cursor=L.limit-r,V()||(L.cursor=L.limit-r,L.eq_s_b(3,"ken")&&Z()))))}function $(){if(L.find_among_b(y,2)){var r=L.limit-L.cursor;if(O()||(L.cursor=L.limit-r,Q()||(L.cursor=L.limit-r,K()||(L.cursor=L.limit-r,M()||(L.cursor=L.limit-r,N()||(L.cursor=L.limit-r))))),X())return!1}return!0}function rr(){if(!A()||!L.find_among_b(p,4))return!0;var r=L.limit-L.cursor;return!U()&&(L.cursor=L.limit-r,!V())}function ir(){var r,i,e,n=L.limit-L.cursor;if(L.ket=L.cursor,t=!0,Y()&&(L.cursor=L.limit-n,$()&&(L.cursor=L.limit-n,function(){if(Q()){L.bra=L.cursor,L.slice_del();var r=L.limit-L.cursor;return L.ket=L.cursor,R()||(L.cursor=L.limit-r,U()||(L.cursor=L.limit-r,V()||(L.cursor=L.limit-r,X()||(L.cursor=L.limit-r)))),t=!1}return!0}()&&(L.cursor=L.limit-n,rr()&&(L.cursor=L.limit-n,e=L.limit-L.cursor,!(O()||(L.cursor=L.limit-e,N()||(L.cursor=L.limit-e,M()||(L.cursor=L.limit-e,K()))))||(L.bra=L.cursor,L.slice_del(),i=L.limit-L.cursor,L.ket=L.cursor,X()||(L.cursor=L.limit-i),0)))))){if(L.cursor=L.limit-n,!R())return;L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,r=L.limit-L.cursor,O()||(L.cursor=L.limit-r,Q()||(L.cursor=L.limit-r,K()||(L.cursor=L.limit-r,M()||(L.cursor=L.limit-r,N()||(L.cursor=L.limit-r))))),X()||(L.cursor=L.limit-r)}L.bra=L.cursor,L.slice_del()}function er(){var r,i,e,n;if(L.ket=L.cursor,L.eq_s_b(2,"ki")){if(r=L.limit-L.cursor,I())return L.bra=L.cursor,L.slice_del(),i=L.limit-L.cursor,L.ket=L.cursor,Q()?(L.bra=L.cursor,L.slice_del(),er()):(L.cursor=L.limit-i,B()&&(L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,Q()&&(L.bra=L.cursor,L.slice_del(),er()))),!0;if(L.cursor=L.limit-r,H()){if(L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,e=L.limit-L.cursor,G())L.bra=L.cursor,L.slice_del();else{if(L.cursor=L.limit-e,L.ket=L.cursor,!B()&&(L.cursor=L.limit-e,!D()&&(L.cursor=L.limit-e,!er())))return!0;L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,Q()&&(L.bra=L.cursor,L.slice_del(),er())}return!0}if(L.cursor=L.limit-r,J()){if(n=L.limit-L.cursor,G())L.bra=L.cursor,L.slice_del();else if(L.cursor=L.limit-n,D())L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,Q()&&(L.bra=L.cursor,L.slice_del(),er());else if(L.cursor=L.limit-n,!er())return!1;return!0}}return!1}function nr(r){if(L.ket=L.cursor,!J()&&(L.cursor=L.limit-r,!A()||!L.find_among_b(o,2)))return!1;var i=L.limit-L.cursor;if(G())L.bra=L.cursor,L.slice_del();else if(L.cursor=L.limit-i,D())L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,Q()&&(L.bra=L.cursor,L.slice_del(),er());else if(L.cursor=L.limit-i,!er())return!1;return!0}function tr(r){if(L.ket=L.cursor,!(A()&&L.find_among_b(a,2)||(L.cursor=L.limit-r,A()&&L.find_among_b(e,4))))return!1;var i=L.limit-L.cursor;return!(!D()&&(L.cursor=L.limit-i,!G()))&&(L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,Q()&&(L.bra=L.cursor,L.slice_del(),er()),!0)}function ur(){var r,i=L.limit-L.cursor;return L.ket=L.cursor,!!(H()||(L.cursor=L.limit-i,A()&&L.find_among_b(m,2)&&Z()))&&(L.bra=L.cursor,L.slice_del(),r=L.limit-L.cursor,L.ket=L.cursor,!(!Q()||(L.bra=L.cursor,L.slice_del(),!er()))||(L.cursor=L.limit-r,L.ket=L.cursor,(B()||(L.cursor=L.limit-r,D()||(L.cursor=L.limit-r,er())))&&(L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,Q()&&(L.bra=L.cursor,L.slice_del(),er())),!0))}function or(){var r,i,e=L.limit-L.cursor;if(L.ket=L.cursor,!(I()||(L.cursor=L.limit-e,A()&&L.in_grouping_b(P,105,305)&&Z()||(L.cursor=L.limit-e,A()&&L.find_among_b(u,2)&&Z()))))return!1;if(L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,r=L.limit-L.cursor,B())L.bra=L.cursor,L.slice_del(),i=L.limit-L.cursor,L.ket=L.cursor,Q()||(L.cursor=L.limit-i);else if(L.cursor=L.limit-r,!Q())return!0;return L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,er(),!0}function sr(){var r,i,e=L.limit-L.cursor;if(L.ket=L.cursor,Q())return L.bra=L.cursor,L.slice_del(),void er();if(L.cursor=L.limit-e,L.ket=L.cursor,A()&&L.find_among_b(d,2)&&T())if(L.bra=L.cursor,L.slice_del(),r=L.limit-L.cursor,L.ket=L.cursor,G())L.bra=L.cursor,L.slice_del();else{if(L.cursor=L.limit-r,L.ket=L.cursor,!B()&&(L.cursor=L.limit-r,!D())){if(L.cursor=L.limit-r,L.ket=L.cursor,!Q())return;if(L.bra=L.cursor,L.slice_del(),!er())return}L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,Q()&&(L.bra=L.cursor,L.slice_del(),er())}else if(L.cursor=L.limit-e,!nr(e)&&(L.cursor=L.limit-e,!tr(e))){if(L.cursor=L.limit-e,L.ket=L.cursor,A()&&L.find_among_b(l,4))return L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,i=L.limit-L.cursor,void(B()?(L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,Q()&&(L.bra=L.cursor,L.slice_del(),er())):(L.cursor=L.limit-i,Q()?(L.bra=L.cursor,L.slice_del()):L.cursor=L.limit-i,er()));if(L.cursor=L.limit-e,!ur()){if(L.cursor=L.limit-e,G())return L.bra=L.cursor,void L.slice_del();L.cursor=L.limit-e,er()||(L.cursor=L.limit-e,or()||(L.cursor=L.limit-e,L.ket=L.cursor,(B()||(L.cursor=L.limit-e,D()))&&(L.bra=L.cursor,L.slice_del(),L.ket=L.cursor,Q()&&(L.bra=L.cursor,L.slice_del(),er()))))}}}function cr(r,i,e){if(L.cursor=L.limit-r,function(){for(;;){var r=L.limit-L.cursor;if(L.in_grouping_b(C,97,305)){L.cursor=L.limit-r;break}if(L.cursor=L.limit-r,L.cursor<=L.limit_backward)return!1;L.cursor--}return!0}()){var n=L.limit-L.cursor;if(!L.eq_s_b(1,i)&&(L.cursor=L.limit-n,!L.eq_s_b(1,e)))return!0;L.cursor=L.limit-r;var t=L.cursor;return L.insert(L.cursor,L.cursor,e),L.cursor=t,!1}return!0}function lr(r,i,e){for(;!L.eq_s(i,e);){if(L.cursor>=L.limit)return!0;L.cursor++}return i!=L.limit||(L.cursor=r,!1)}function ar(){var r,i,e=L.cursor;return!(!lr(r=L.cursor,2,"ad")||!lr(L.cursor=r,5,"soyad"))&&(L.limit_backward=e,L.cursor=L.limit,i=L.limit-L.cursor,(L.eq_s_b(1,"d")||(L.cursor=L.limit-i,L.eq_s_b(1,"g")))&&cr(i,"a","ı")&&cr(i,"e","i")&&cr(i,"o","u")&&cr(i,"ö","ü"),L.cursor=L.limit,function(){var r;if(L.ket=L.cursor,r=L.find_among_b(q,4))switch(L.bra=L.cursor,r){case 1:L.slice_from("p");break;case 2:L.slice_from("ç");break;case 3:L.slice_from("t");break;case 4:L.slice_from("k")}}(),!0)}this.setCurrent=function(r){L.setCurrent(r)},this.getCurrent=function(){return L.getCurrent()},this.stem=function(){return!!(function(){for(var r,i=L.cursor,e=2;;){for(r=L.cursor;!L.in_grouping(C,97,305);){if(L.cursor>=L.limit)return L.cursor=r,!(0<e||(L.cursor=i,0));L.cursor++}e--}}()&&(L.limit_backward=L.cursor,L.cursor=L.limit,ir(),L.cursor=L.limit,t&&(sr(),L.cursor=L.limit_backward,ar())))}},function(r){return"function"==typeof r.update?r.update(function(r){return i.setCurrent(r),i.stem(),i.getCurrent()}):(i.setCurrent(r),i.stem(),i.getCurrent())}),r.Pipeline.registerFunction(r.tr.stemmer,"stemmer-tr"),r.tr.stopWordFilter=r.generateStopWordFilter("acaba altmış altı ama ancak arada aslında ayrıca bana bazı belki ben benden beni benim beri beÅŸ bile bin bir biri birkaç birkez birçok birÅŸey birÅŸeyi biz bizden bize bizi bizim bu buna bunda bundan bunlar bunları bunların bunu bunun burada böyle böylece da daha dahi de defa deÄŸil diye diÄŸer doksan dokuz dolayı dolayısıyla dört edecek eden ederek edilecek ediliyor edilmesi ediyor elli en etmesi etti ettiÄŸi ettiÄŸini eÄŸer gibi göre halen hangi hatta hem henüz hep hepsi her herhangi herkesin hiç hiçbir iki ile ilgili ise itibaren itibariyle için iÅŸte kadar karşın katrilyon kendi kendilerine kendini kendisi kendisine kendisini kez ki kim kimden kime kimi kimse kırk milyar milyon mu mü mı nasıl ne neden nedenle nerde nerede nereye niye niçin o olan olarak oldu olduklarını olduÄŸu olduÄŸunu olmadı olmadığı olmak olması olmayan olmaz olsa olsun olup olur olursa oluyor on ona ondan onlar onlardan onları onların onu onun otuz oysa pek raÄŸmen sadece sanki sekiz seksen sen senden seni senin siz sizden sizi sizin tarafından trilyon tüm var vardı ve veya ya yani yapacak yapmak yaptı yaptıkları yaptığı yaptığını yapılan yapılması yapıyor yedi yerine yetmiÅŸ yine yirmi yoksa yüz zaten çok çünkü öyle üzere üç ÅŸey ÅŸeyden ÅŸeyi ÅŸeyler ÅŸu ÅŸuna ÅŸunda ÅŸundan ÅŸunları ÅŸunu şöyle".split(" ")),r.Pipeline.registerFunction(r.tr.stopWordFilter,"stopWordFilter-tr")}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/lunr.vi.js b/site/assets/javascripts/lunr/lunr.vi.js deleted file mode 100644 index 111bc002c69df4c3f60c7c75a8f727cbf5137f2c..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/lunr.vi.js +++ /dev/null @@ -1,17 +0,0 @@ -/*! - * Lunr languages, `Vietnamese` language - * https://github.com/MihaiValentin/lunr-languages - * - * Copyright 2017, Keerati Thiwanruk - * http://www.mozilla.org/MPL/ - */ -/*! - * based on - * Snowball JavaScript Library v0.3 - * http://code.google.com/p/urim/ - * http://snowball.tartarus.org/ - * - * Copyright 2010, Oleg Mazko - * http://www.mozilla.org/MPL/ - */ -!function(e,r){"function"==typeof define&&define.amd?define(r):"object"==typeof exports?module.exports=r():r()(e.lunr)}(this,function(){return function(e){if(void 0===e)throw new Error("Lunr is not present. Please include / require Lunr before this script.");if(void 0===e.stemmerSupport)throw new Error("Lunr stemmer support is not present. Please include / require Lunr stemmer support before this script.");e.vi=function(){this.pipeline.reset(),this.pipeline.add(e.vi.stopWordFilter,e.vi.trimmer)},e.vi.wordCharacters="[A-Za-zÌ€ÍỊ̀͑̉̃̓ÂâÊêÔôĂ-ăÄ-Ä‘Æ -ơƯ-Æ°]",e.vi.trimmer=e.trimmerSupport.generateTrimmer(e.vi.wordCharacters),e.Pipeline.registerFunction(e.vi.trimmer,"trimmer-vi"),e.vi.stopWordFilter=e.generateStopWordFilter("là cái nhÆ°ng mà ".split(" "))}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/tinyseg.js b/site/assets/javascripts/lunr/tinyseg.js deleted file mode 100644 index e3663a57cb1ee689386b0db01dcb295e00aafcaf..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/tinyseg.js +++ /dev/null @@ -1 +0,0 @@ -!function(_,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t():t()(_.lunr)}(this,function(){return function(_){function t(){var _={"[一二三四五å…七八ä¹å百åƒä¸‡å„„å…†]":"M","[一-é¾ ã€…ã€†ãƒµãƒ¶]":"H","[ã-ã‚“]":"I","[ã‚¡-ヴーア-ï¾ï¾žï½°]":"K","[a-zA-Zï½-zA-Z]":"A","[0-9ï¼-ï¼™]":"N"};for(var t in this.chartype_=[],_){var H=new RegExp(t);this.chartype_.push([H,_[t]])}return this.BIAS__=-332,this.BC1__={HH:6,II:2461,KH:406,OH:-1378},this.BC2__={AA:-3267,AI:2744,AN:-878,HH:-4070,HM:-1711,HN:4012,HO:3761,IA:1327,IH:-1184,II:-1332,IK:1721,IO:5492,KI:3831,KK:-8741,MH:-3132,MK:3334,OO:-2920},this.BC3__={HH:996,HI:626,HK:-721,HN:-1307,HO:-836,IH:-301,KK:2762,MK:1079,MM:4034,OA:-1652,OH:266},this.BP1__={BB:295,OB:304,OO:-125,UB:352},this.BP2__={BO:60,OO:-1762},this.BQ1__={BHH:1150,BHM:1521,BII:-1158,BIM:886,BMH:1208,BNH:449,BOH:-91,BOO:-2597,OHI:451,OIH:-296,OKA:1851,OKH:-1020,OKK:904,OOO:2965},this.BQ2__={BHH:118,BHI:-1159,BHM:466,BIH:-919,BKK:-1720,BKO:864,OHH:-1139,OHM:-181,OIH:153,UHI:-1146},this.BQ3__={BHH:-792,BHI:2664,BII:-299,BKI:419,BMH:937,BMM:8335,BNN:998,BOH:775,OHH:2174,OHM:439,OII:280,OKH:1798,OKI:-793,OKO:-2242,OMH:-2402,OOO:11699},this.BQ4__={BHH:-3895,BIH:3761,BII:-4654,BIK:1348,BKK:-1806,BMI:-3385,BOO:-12396,OAH:926,OHH:266,OHK:-2036,ONN:-973},this.BW1__={",ã¨":660,",åŒ":727,"B1ã‚":1404,"B1åŒ":542,"ã€ã¨":660,"ã€åŒ":727,"ã€ã¨":1682,"ã‚ã£":1505,"ã„ã†":1743,"ã„ã£":-2055,"ã„ã‚‹":672,"ã†ã—":-4817,"ã†ã‚“":665,"ã‹ã‚‰":3472,"ãŒã‚‰":600,"ã“ã†":-790,"ã“ã¨":2083,"ã“ã‚“":-1262,"ã•ã‚‰":-4143,"ã•ã‚“":4573,"ã—ãŸ":2641,"ã—ã¦":1104,"ã™ã§":-3399,"ãã“":1977,"ãã‚Œ":-871,"ãŸã¡":1122,"ãŸã‚":601,"ã£ãŸ":3463,"ã¤ã„":-802,"ã¦ã„":805,"ã¦ã":1249,"ã§ã":1127,"ã§ã™":3445,"ã§ã¯":844,"ã¨ã„":-4915,"ã¨ã¿":1922,"ã©ã“":3887,"ãªã„":5713,"ãªã£":3015,"ãªã©":7379,"ãªã‚“":-1113,"ã«ã—":2468,"ã«ã¯":1498,"ã«ã‚‚":1671,"ã«å¯¾":-912,"ã®ä¸€":-501,"ã®ä¸":741,"ã¾ã›":2448,"ã¾ã§":1711,"ã¾ã¾":2600,"ã¾ã‚‹":-2155,"ã‚„ã‚€":-1947,"よã£":-2565,"ã‚ŒãŸ":2369,"ã‚Œã§":-913,"ã‚’ã—":1860,"を見":731,"亡ã":-1886,"京都":2558,"å–ã‚Š":-2784,"大ã":-2604,"大阪":1497,"平方":-2314,"引ã":-1336,"日本":-195,"本当":-2423,"毎日":-2113,"目指":-724,"B1ã‚":1404,"B1åŒ":542,"ï½£ã¨":1682},this.BW2__={"..":-11822,11:-669,"――":-5730,"−−":-13175,"ã„ã†":-1609,"ã†ã‹":2490,"ã‹ã—":-1350,"ã‹ã‚‚":-602,"ã‹ã‚‰":-7194,"ã‹ã‚Œ":4612,"ãŒã„":853,"ãŒã‚‰":-3198,"ããŸ":1941,"ããª":-1597,"ã“ã¨":-8392,"ã“ã®":-4193,"ã•ã›":4533,"ã•ã‚Œ":13168,"ã•ã‚“":-3977,"ã—ã„":-1819,"ã—ã‹":-545,"ã—ãŸ":5078,"ã—ã¦":972,"ã—ãª":939,"ãã®":-3744,"ãŸã„":-1253,"ãŸãŸ":-662,"ãŸã ":-3857,"ãŸã¡":-786,"ãŸã¨":1224,"ãŸã¯":-939,"ã£ãŸ":4589,"ã£ã¦":1647,"ã£ã¨":-2094,"ã¦ã„":6144,"ã¦ã":3640,"ã¦ã":2551,"ã¦ã¯":-3110,"ã¦ã‚‚":-3065,"ã§ã„":2666,"ã§ã":-1528,"ã§ã—":-3828,"ã§ã™":-4761,"ã§ã‚‚":-4203,"ã¨ã„":1890,"ã¨ã“":-1746,"ã¨ã¨":-2279,"ã¨ã®":720,"ã¨ã¿":5168,"ã¨ã‚‚":-3941,"ãªã„":-2488,"ãªãŒ":-1313,"ãªã©":-6509,"ãªã®":2614,"ãªã‚“":3099,"ã«ãŠ":-1615,"ã«ã—":2748,"ã«ãª":2454,"ã«ã‚ˆ":-7236,"ã«å¯¾":-14943,"ã«å¾“":-4688,"ã«é–¢":-11388,"ã®ã‹":2093,"ã®ã§":-7059,"ã®ã«":-6041,"ã®ã®":-6125,"ã¯ã„":1073,"ã¯ãŒ":-1033,"ã¯ãš":-2532,"ã°ã‚Œ":1813,"ã¾ã—":-1316,"ã¾ã§":-6621,"ã¾ã‚Œ":5409,"ã‚ã¦":-3153,"ã‚‚ã„":2230,"ã‚‚ã®":-10713,"らã‹":-944,"らã—":-1611,"らã«":-1897,"ã‚Šã—":651,"ã‚Šã¾":1620,"ã‚ŒãŸ":4270,"ã‚Œã¦":849,"ã‚Œã°":4114,"ã‚ã†":6067,"ã‚ã‚Œ":7901,"を通":-11877,"ã‚“ã ":728,"ã‚“ãª":-4115,"一人":602,"一方":-1375,"一日":970,"一部":-1051,"上ãŒ":-4479,"会社":-1116,"出ã¦":2163,"分ã®":-7758,"åŒå…š":970,"åŒæ—¥":-913,"大阪":-2471,"委員":-1250,"å°‘ãª":-1050,"年度":-8669,"å¹´é–“":-1626,"府県":-2363,"手権":-1982,"æ–°èž":-4066,"日新":-722,"日本":-7068,"日米":3372,"曜日":-601,"æœé®®":-2355,"本人":-2697,"æ±äº¬":-1543,"然ã¨":-1384,"社会":-1276,"ç«‹ã¦":-990,"第ã«":-1612,"米国":-4268,"11":-669},this.BW3__={"ã‚ãŸ":-2194,"ã‚ã‚Š":719,"ã‚ã‚‹":3846,"ã„.":-1185,"ã„。":-1185,"ã„ã„":5308,"ã„ãˆ":2079,"ã„ã":3029,"ã„ãŸ":2056,"ã„ã£":1883,"ã„ã‚‹":5600,"ã„ã‚":1527,"ã†ã¡":1117,"ã†ã¨":4798,"ãˆã¨":1454,"ã‹.":2857,"ã‹ã€‚":2857,"ã‹ã‘":-743,"ã‹ã£":-4098,"ã‹ã«":-669,"ã‹ã‚‰":6520,"ã‹ã‚Š":-2670,"ãŒ,":1816,"ãŒã€":1816,"ãŒã":-4855,"ãŒã‘":-1127,"ãŒã£":-913,"ãŒã‚‰":-4977,"ãŒã‚Š":-2064,"ããŸ":1645,"ã‘ã©":1374,"ã“ã¨":7397,"ã“ã®":1542,"ã“ã‚":-2757,"ã•ã„":-714,"ã•ã‚’":976,"ã—,":1557,"ã—ã€":1557,"ã—ã„":-3714,"ã—ãŸ":3562,"ã—ã¦":1449,"ã—ãª":2608,"ã—ã¾":1200,"ã™.":-1310,"ã™ã€‚":-1310,"ã™ã‚‹":6521,"ãš,":3426,"ãšã€":3426,"ãšã«":841,"ãã†":428,"ãŸ.":8875,"ãŸã€‚":8875,"ãŸã„":-594,"ãŸã®":812,"ãŸã‚Š":-1183,"ãŸã‚‹":-853,"ã .":4098,"ã 。":4098,"ã ã£":1004,"ã£ãŸ":-4748,"ã£ã¦":300,"ã¦ã„":6240,"ã¦ãŠ":855,"ã¦ã‚‚":302,"ã§ã™":1437,"ã§ã«":-1482,"ã§ã¯":2295,"ã¨ã†":-1387,"ã¨ã—":2266,"ã¨ã®":541,"ã¨ã‚‚":-3543,"ã©ã†":4664,"ãªã„":1796,"ãªã":-903,"ãªã©":2135,"ã«,":-1021,"ã«ã€":-1021,"ã«ã—":1771,"ã«ãª":1906,"ã«ã¯":2644,"ã®,":-724,"ã®ã€":-724,"ã®å":-1e3,"ã¯,":1337,"ã¯ã€":1337,"ã¹ã":2181,"ã¾ã—":1113,"ã¾ã™":6943,"ã¾ã£":-1549,"ã¾ã§":6154,"ã¾ã‚Œ":-793,"らã—":1479,"られ":6820,"ã‚‹ã‚‹":3818,"ã‚Œ,":854,"ã‚Œã€":854,"ã‚ŒãŸ":1850,"ã‚Œã¦":1375,"ã‚Œã°":-3246,"れる":1091,"ã‚ã‚Œ":-605,"ã‚“ã ":606,"ã‚“ã§":798,"カ月":990,"会è°":860,"入り":1232,"大会":2217,"始ã‚":1681,"市":965,"æ–°èž":-5055,"æ—¥,":974,"æ—¥ã€":974,"社会":2024,"カ月":990},this.TC1__={AAA:1093,HHH:1029,HHM:580,HII:998,HOH:-390,HOM:-331,IHI:1169,IOH:-142,IOI:-1015,IOM:467,MMH:187,OOI:-1832},this.TC2__={HHO:2088,HII:-1023,HMM:-1154,IHI:-1965,KKH:703,OII:-2649},this.TC3__={AAA:-294,HHH:346,HHI:-341,HII:-1088,HIK:731,HOH:-1486,IHH:128,IHI:-3041,IHO:-1935,IIH:-825,IIM:-1035,IOI:-542,KHH:-1216,KKA:491,KKH:-1217,KOK:-1009,MHH:-2694,MHM:-457,MHO:123,MMH:-471,NNH:-1689,NNO:662,OHO:-3393},this.TC4__={HHH:-203,HHI:1344,HHK:365,HHM:-122,HHN:182,HHO:669,HIH:804,HII:679,HOH:446,IHH:695,IHO:-2324,IIH:321,III:1497,IIO:656,IOO:54,KAK:4845,KKA:3386,KKK:3065,MHH:-405,MHI:201,MMH:-241,MMM:661,MOM:841},this.TQ1__={BHHH:-227,BHHI:316,BHIH:-132,BIHH:60,BIII:1595,BNHH:-744,BOHH:225,BOOO:-908,OAKK:482,OHHH:281,OHIH:249,OIHI:200,OIIH:-68},this.TQ2__={BIHH:-1401,BIII:-1033,BKAK:-543,BOOO:-5591},this.TQ3__={BHHH:478,BHHM:-1073,BHIH:222,BHII:-504,BIIH:-116,BIII:-105,BMHI:-863,BMHM:-464,BOMH:620,OHHH:346,OHHI:1729,OHII:997,OHMH:481,OIHH:623,OIIH:1344,OKAK:2792,OKHH:587,OKKA:679,OOHH:110,OOII:-685},this.TQ4__={BHHH:-721,BHHM:-3604,BHII:-966,BIIH:-607,BIII:-2181,OAAA:-2763,OAKK:180,OHHH:-294,OHHI:2446,OHHO:480,OHIH:-1573,OIHH:1935,OIHI:-493,OIIH:626,OIII:-4007,OKAK:-8156},this.TW1__={"ã«ã¤ã„":-4681,"æ±äº¬éƒ½":2026},this.TW2__={"ã‚る程":-2049,"ã„ã£ãŸ":-1256,"ã“ã‚ãŒ":-2434,"ã—ょã†":3873,"ãã®å¾Œ":-4430,"ã ã£ã¦":-1049,"ã¦ã„ãŸ":1833,"ã¨ã—ã¦":-4657,"ã¨ã‚‚ã«":-4517,"ã‚‚ã®ã§":1882,"一気ã«":-792,"åˆã‚ã¦":-1512,"åŒæ™‚ã«":-8097,"大ããª":-1255,"対ã—ã¦":-2721,"社会党":-3216},this.TW3__={"ã„ãŸã ":-1734,"ã—ã¦ã„":1314,"ã¨ã—ã¦":-4314,"ã«ã¤ã„":-5483,"ã«ã¨ã£":-5989,"ã«å½“ãŸ":-6247,"ã®ã§,":-727,"ã®ã§ã€":-727,"ã®ã‚‚ã®":-600,"ã‚Œã‹ã‚‰":-3752,"å二月":-2287},this.TW4__={"ã„ã†.":8576,"ã„ã†ã€‚":8576,"ã‹ã‚‰ãª":-2348,"ã—ã¦ã„":2958,"ãŸãŒ,":1516,"ãŸãŒã€":1516,"ã¦ã„ã‚‹":1538,"ã¨ã„ã†":1349,"ã¾ã—ãŸ":5543,"ã¾ã›ã‚“":1097,"よã†ã¨":-4258,"よるã¨":5865},this.UC1__={A:484,K:93,M:645,O:-505},this.UC2__={A:819,H:1059,I:409,M:3987,N:5775,O:646},this.UC3__={A:-1370,I:2311},this.UC4__={A:-2643,H:1809,I:-1032,K:-3450,M:3565,N:3876,O:6646},this.UC5__={H:313,I:-1238,K:-799,M:539,O:-831},this.UC6__={H:-506,I:-253,K:87,M:247,O:-387},this.UP1__={O:-214},this.UP2__={B:69,O:935},this.UP3__={B:189},this.UQ1__={BH:21,BI:-12,BK:-99,BN:142,BO:-56,OH:-95,OI:477,OK:410,OO:-2422},this.UQ2__={BH:216,BI:113,OK:1759},this.UQ3__={BA:-479,BH:42,BI:1913,BK:-7198,BM:3160,BN:6427,BO:14761,OI:-827,ON:-3212},this.UW1__={",":156,"ã€":156,"「":-463,"ã‚":-941,"ã†":-127,"ãŒ":-553,"ã":121,"ã“":505,"ã§":-201,"ã¨":-547,"ã©":-123,"ã«":-789,"ã®":-185,"ã¯":-847,"ã‚‚":-466,"ã‚„":-470,"よ":182,"ら":-292,"ã‚Š":208,"ã‚Œ":169,"ã‚’":-446,"ã‚“":-137,"・":-135,"主":-402,"京":-268,"区":-912,"åˆ":871,"国":-460,"大":561,"委":729,"市":-411,"æ—¥":-141,"ç†":361,"生":-408,"県":-386,"都":-718,"ï½¢":-463,"ï½¥":-135},this.UW2__={",":-829,"ã€":-829,"〇":892,"「":-645,"ã€":3145,"ã‚":-538,"ã„":505,"ã†":134,"ãŠ":-502,"ã‹":1454,"ãŒ":-856,"ã":-412,"ã“":1141,"ã•":878,"ã–":540,"ã—":1529,"ã™":-675,"ã›":300,"ã":-1011,"ãŸ":188,"ã ":1837,"ã¤":-949,"ã¦":-291,"ã§":-268,"ã¨":-981,"ã©":1273,"ãª":1063,"ã«":-1764,"ã®":130,"ã¯":-409,"ã²":-1273,"ã¹":1261,"ã¾":600,"ã‚‚":-1263,"ã‚„":-402,"よ":1639,"ã‚Š":-579,"ã‚‹":-694,"ã‚Œ":571,"ã‚’":-2516,"ã‚“":2095,"ã‚¢":-587,"ã‚«":306,"ã‚":568,"ッ":831,"三":-758,"ä¸":-2150,"世":-302,"ä¸":-968,"主":-861,"事":492,"人":-123,"会":978,"ä¿":362,"å…¥":548,"åˆ":-3025,"副":-1566,"北":-3414,"区":-422,"大":-1769,"天":-865,"太":-483,"å":-1519,"å¦":760,"実":1023,"å°":-2009,"市":-813,"å¹´":-1060,"å¼·":1067,"手":-1519,"æº":-1033,"政":1522,"æ–‡":-1355,"æ–°":-1682,"æ—¥":-1815,"明":-1462,"最":-630,"æœ":-1843,"本":-1650,"æ±":-931,"æžœ":-665,"次":-2378,"æ°‘":-180,"æ°—":-1740,"ç†":752,"発":529,"ç›®":-1584,"相":-242,"県":-1165,"ç«‹":-763,"第":810,"ç±³":509,"自":-1353,"è¡Œ":838,"西":-744,"見":-3874,"調":1010,"è°":1198,"è¾¼":3041,"é–‹":1758,"é–“":-1257,"ï½¢":-645,"ï½£":3145,"ッ":831,"ï½±":-587,"カ":306,"ï½·":568},this.UW3__={",":4889,1:-800,"−":-1723,"ã€":4889,"々":-2311,"〇":5827,"ã€":2670,"〓":-3573,"ã‚":-2696,"ã„":1006,"ã†":2342,"ãˆ":1983,"ãŠ":-4864,"ã‹":-1163,"ãŒ":3271,"ã":1004,"ã‘":388,"ã’":401,"ã“":-3552,"ã”":-3116,"ã•":-1058,"ã—":-395,"ã™":584,"ã›":3685,"ã":-5228,"ãŸ":842,"ã¡":-521,"ã£":-1444,"ã¤":-1081,"ã¦":6167,"ã§":2318,"ã¨":1691,"ã©":-899,"ãª":-2788,"ã«":2745,"ã®":4056,"ã¯":4555,"ã²":-2171,"ãµ":-1798,"ã¸":1199,"ã»":-5516,"ã¾":-4384,"ã¿":-120,"ã‚":1205,"ã‚‚":2323,"ã‚„":-788,"よ":-202,"ら":727,"ã‚Š":649,"ã‚‹":5905,"ã‚Œ":2773,"ã‚":-1207,"ã‚’":6620,"ã‚“":-518,"ã‚¢":551,"ã‚°":1319,"ス":874,"ッ":-1350,"ト":521,"ム":1109,"ル":1591,"ãƒ":2201,"ン":278,"・":-3794,"一":-1619,"下":-1759,"世":-2087,"両":3815,"ä¸":653,"主":-758,"予":-1193,"二":974,"人":2742,"今":792,"ä»–":1889,"以":-1368,"低":811,"何":4265,"作":-361,"ä¿":-2439,"å…ƒ":4858,"å…š":3593,"å…¨":1574,"å…¬":-3030,"å…":755,"å…±":-1880,"円":5807,"å†":3095,"分":457,"åˆ":2475,"別":1129,"å‰":2286,"副":4437,"力":365,"å‹•":-949,"å‹™":-1872,"化":1327,"北":-1038,"区":4646,"åƒ":-2309,"åˆ":-783,"å”":-1006,"å£":483,"å³":1233,"å„":3588,"åˆ":-241,"åŒ":3906,"å’Œ":-837,"å“¡":4513,"国":642,"åž‹":1389,"å ´":1219,"外":-241,"妻":2016,"å¦":-1356,"安":-423,"実":-1008,"家":1078,"å°":-513,"å°‘":-3102,"å·ž":1155,"市":3197,"å¹³":-1804,"å¹´":2416,"広":-1030,"府":1605,"度":1452,"建":-2352,"当":-3885,"å¾—":1905,"æ€":-1291,"性":1822,"戸":-488,"指":-3973,"政":-2013,"æ•™":-1479,"æ•°":3222,"æ–‡":-1489,"æ–°":1764,"æ—¥":2099,"æ—§":5792,"昨":-661,"時":-1248,"曜":-951,"最":-937,"月":4125,"期":360,"æŽ":3094,"æ‘":364,"æ±":-805,"æ ¸":5156,"森":2438,"æ¥":484,"æ°":2613,"æ°‘":-1694,"決":-1073,"法":1868,"æµ·":-495,"ç„¡":979,"物":461,"特":-3850,"生":-273,"用":914,"町":1215,"çš„":7313,"ç›´":-1835,"çœ":792,"県":6293,"知":-1528,"ç§":4231,"税":401,"ç«‹":-960,"第":1201,"ç±³":7767,"ç³»":3066,"ç´„":3663,"ç´š":1384,"çµ±":-4229,"ç·":1163,"ç·š":1255,"者":6457,"能":725,"自":-2869,"英":785,"見":1044,"調":-562,"財":-733,"è²»":1777,"車":1835,"è»":1375,"è¾¼":-1504,"通":-1136,"é¸":-681,"郎":1026,"郡":4404,"部":1200,"金":2163,"é•·":421,"é–‹":-1432,"é–“":1302,"é–¢":-1282,"雨":2009,"é›»":-1045,"éž":2066,"駅":1620,"1":-800,"ï½£":2670,"ï½¥":-3794,"ッ":-1350,"ï½±":551,"グ":1319,"ï½½":874,"ト":521,"ム":1109,"ï¾™":1591,"ï¾›":2201,"ï¾":278},this.UW4__={",":3930,".":3508,"―":-4841,"ã€":3930,"。":3508,"〇":4999,"「":1895,"ã€":3798,"〓":-5156,"ã‚":4752,"ã„":-3435,"ã†":-640,"ãˆ":-2514,"ãŠ":2405,"ã‹":530,"ãŒ":6006,"ã":-4482,"ãŽ":-3821,"ã":-3788,"ã‘":-4376,"ã’":-4734,"ã“":2255,"ã”":1979,"ã•":2864,"ã—":-843,"ã˜":-2506,"ã™":-731,"ãš":1251,"ã›":181,"ã":4091,"ãŸ":5034,"ã ":5408,"ã¡":-3654,"ã£":-5882,"ã¤":-1659,"ã¦":3994,"ã§":7410,"ã¨":4547,"ãª":5433,"ã«":6499,"ã¬":1853,"ã":1413,"ã®":7396,"ã¯":8578,"ã°":1940,"ã²":4249,"ã³":-4134,"ãµ":1345,"ã¸":6665,"ã¹":-744,"ã»":1464,"ã¾":1051,"ã¿":-2082,"ã‚€":-882,"ã‚":-5046,"ã‚‚":4169,"ゃ":-2666,"ã‚„":2795,"ょ":-1544,"よ":3351,"ら":-2922,"ã‚Š":-9726,"ã‚‹":-14896,"ã‚Œ":-2613,"ã‚":-4570,"ã‚":-1783,"ã‚’":13150,"ã‚“":-2352,"ã‚«":2145,"コ":1789,"ã‚»":1287,"ッ":-724,"ト":-403,"メ":-1635,"ラ":-881,"リ":-541,"ル":-856,"ン":-3637,"・":-4371,"ー":-11870,"一":-2069,"ä¸":2210,"予":782,"事":-190,"井":-1768,"人":1036,"以":544,"会":950,"体":-1286,"作":530,"å´":4292,"å…ˆ":601,"å…š":-2006,"å…±":-1212,"内":584,"円":788,"åˆ":1347,"å‰":1623,"副":3879,"力":-302,"å‹•":-740,"å‹™":-2715,"化":776,"区":4517,"å”":1013,"å‚":1555,"åˆ":-1834,"å’Œ":-681,"å“¡":-910,"器":-851,"回":1500,"国":-619,"園":-1200,"地":866,"å ´":-1410,"å¡":-2094,"士":-1413,"多":1067,"大":571,"å":-4802,"å¦":-1397,"定":-1057,"寺":-809,"å°":1910,"屋":-1328,"å±±":-1500,"島":-2056,"å·":-2667,"市":2771,"å¹´":374,"åº":-4556,"後":456,"性":553,"æ„Ÿ":916,"所":-1566,"支":856,"改":787,"政":2182,"æ•™":704,"æ–‡":522,"æ–¹":-856,"æ—¥":1798,"時":1829,"最":845,"月":-9066,"木":-485,"æ¥":-442,"æ ¡":-360,"æ¥":-1043,"æ°":5388,"æ°‘":-2716,"æ°—":-910,"æ²¢":-939,"済":-543,"物":-735,"率":672,"çƒ":-1267,"生":-1286,"産":-1101,"ç”°":-2900,"町":1826,"çš„":2586,"ç›®":922,"çœ":-3485,"県":2997,"空":-867,"ç«‹":-2112,"第":788,"ç±³":2937,"ç³»":786,"ç´„":2171,"経":1146,"çµ±":-1169,"ç·":940,"ç·š":-994,"ç½²":749,"者":2145,"能":-730,"般":-852,"è¡Œ":-792,"è¦":792,"è¦":-1184,"è°":-244,"è°·":-1e3,"賞":730,"車":-1481,"è»":1158,"輪":-1433,"è¾¼":-3370,"è¿‘":929,"é“":-1291,"é¸":2596,"郎":-4866,"都":1192,"野":-1100,"銀":-2213,"é•·":357,"é–“":-2344,"院":-2297,"éš›":-2604,"é›»":-878,"é ˜":-1659,"é¡Œ":-792,"館":-1984,"首":1749,"高":2120,"ï½¢":1895,"ï½£":3798,"ï½¥":-4371,"ッ":-724,"ï½°":-11870,"カ":2145,"コ":1789,"ï½¾":1287,"ト":-403,"ï¾’":-1635,"ï¾—":-881,"リ":-541,"ï¾™":-856,"ï¾":-3637},this.UW5__={",":465,".":-299,1:-514,E2:-32768,"]":-2762,"ã€":465,"。":-299,"「":363,"ã‚":1655,"ã„":331,"ã†":-503,"ãˆ":1199,"ãŠ":527,"ã‹":647,"ãŒ":-421,"ã":1624,"ãŽ":1971,"ã":312,"ã’":-983,"ã•":-1537,"ã—":-1371,"ã™":-852,"ã ":-1186,"ã¡":1093,"ã£":52,"ã¤":921,"ã¦":-18,"ã§":-850,"ã¨":-127,"ã©":1682,"ãª":-787,"ã«":-1224,"ã®":-635,"ã¯":-578,"ã¹":1001,"ã¿":502,"ã‚":865,"ゃ":3350,"ょ":854,"ã‚Š":-208,"ã‚‹":429,"ã‚Œ":504,"ã‚":419,"ã‚’":-1264,"ã‚“":327,"イ":241,"ル":451,"ン":-343,"ä¸":-871,"京":722,"会":-1153,"å…š":-654,"å‹™":3519,"区":-901,"å‘Š":848,"å“¡":2104,"大":-1296,"å¦":-548,"定":1785,"åµ":-1304,"市":-2991,"å¸":921,"å¹´":1763,"æ€":872,"所":-814,"挙":1618,"æ–°":-1682,"æ—¥":218,"月":-4353,"査":932,"æ ¼":1356,"æ©Ÿ":-1508,"æ°":-1347,"ç”°":240,"町":-3912,"çš„":-3149,"相":1319,"çœ":-1052,"県":-4003,"ç ”":-997,"社":-278,"空":-813,"çµ±":1955,"者":-2233,"表":663,"語":-1073,"è°":1219,"é¸":-1018,"郎":-368,"é•·":786,"é–“":1191,"é¡Œ":2368,"館":-689,"1":-514,"E2":-32768,"ï½¢":363,"ï½²":241,"ï¾™":451,"ï¾":-343},this.UW6__={",":227,".":808,1:-270,E1:306,"ã€":227,"。":808,"ã‚":-307,"ã†":189,"ã‹":241,"ãŒ":-73,"ã":-121,"ã“":-200,"ã˜":1782,"ã™":383,"ãŸ":-428,"ã£":573,"ã¦":-1014,"ã§":101,"ã¨":-105,"ãª":-253,"ã«":-149,"ã®":-417,"ã¯":-236,"ã‚‚":-206,"ã‚Š":187,"ã‚‹":-135,"ã‚’":195,"ル":-673,"ン":-496,"一":-277,"ä¸":201,"件":-800,"会":624,"å‰":302,"区":1792,"å“¡":-1212,"委":798,"å¦":-960,"市":887,"広":-695,"後":535,"æ¥":-697,"相":753,"社":-507,"ç¦":974,"空":-822,"者":1811,"連":463,"郎":1082,"1":-270,"E1":306,"ï¾™":-673,"ï¾":-496},this}t.prototype.ctype_=function(_){for(var t in this.chartype_)if(_.match(this.chartype_[t][0]))return this.chartype_[t][1];return"O"},t.prototype.ts_=function(_){return _||0},t.prototype.segment=function(_){if(null==_||null==_||""==_)return[];var t=[],H=["B3","B2","B1"],s=["O","O","O"],h=_.split("");for(K=0;K<h.length;++K)H.push(h[K]),s.push(this.ctype_(h[K]));H.push("E1"),H.push("E2"),H.push("E3"),s.push("O"),s.push("O"),s.push("O");for(var i=H[3],I="U",O="U",B="U",K=4;K<H.length-3;++K){var M=this.BIAS__,U=H[K-3],e=H[K-2],r=H[K-1],n=H[K],A=H[K+1],p=H[K+2],u=s[K-3],C=s[K-2],W=s[K-1],T=s[K],o=s[K+1],Q=s[K+2];M+=this.ts_(this.UP1__[I]),M+=this.ts_(this.UP2__[O]),M+=this.ts_(this.UP3__[B]),M+=this.ts_(this.BP1__[I+O]),M+=this.ts_(this.BP2__[O+B]),M+=this.ts_(this.UW1__[U]),M+=this.ts_(this.UW2__[e]),M+=this.ts_(this.UW3__[r]),M+=this.ts_(this.UW4__[n]),M+=this.ts_(this.UW5__[A]),M+=this.ts_(this.UW6__[p]),M+=this.ts_(this.BW1__[e+r]),M+=this.ts_(this.BW2__[r+n]),M+=this.ts_(this.BW3__[n+A]),M+=this.ts_(this.TW1__[U+e+r]),M+=this.ts_(this.TW2__[e+r+n]),M+=this.ts_(this.TW3__[r+n+A]),M+=this.ts_(this.TW4__[n+A+p]),M+=this.ts_(this.UC1__[u]),M+=this.ts_(this.UC2__[C]),M+=this.ts_(this.UC3__[W]),M+=this.ts_(this.UC4__[T]),M+=this.ts_(this.UC5__[o]),M+=this.ts_(this.UC6__[Q]),M+=this.ts_(this.BC1__[C+W]),M+=this.ts_(this.BC2__[W+T]),M+=this.ts_(this.BC3__[T+o]),M+=this.ts_(this.TC1__[u+C+W]),M+=this.ts_(this.TC2__[C+W+T]),M+=this.ts_(this.TC3__[W+T+o]),M+=this.ts_(this.TC4__[T+o+Q]),M+=this.ts_(this.UQ1__[I+u]),M+=this.ts_(this.UQ2__[O+C]),M+=this.ts_(this.UQ3__[B+W]),M+=this.ts_(this.BQ1__[O+C+W]),M+=this.ts_(this.BQ2__[O+W+T]),M+=this.ts_(this.BQ3__[B+C+W]),M+=this.ts_(this.BQ4__[B+W+T]),M+=this.ts_(this.TQ1__[O+u+C+W]),M+=this.ts_(this.TQ2__[O+C+W+T]),M+=this.ts_(this.TQ3__[B+u+C+W]);var N="O";0<(M+=this.ts_(this.TQ4__[B+C+W+T]))&&(t.push(i),i="",N="B"),I=O,O=B,B=N,i+=H[K]}return t.push(i),t},_.TinySegmenter=t}}); \ No newline at end of file diff --git a/site/assets/javascripts/lunr/wordcut.js b/site/assets/javascripts/lunr/wordcut.js deleted file mode 100644 index 179792ab7540071599ca06538c571372d3788fb6..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/lunr/wordcut.js +++ /dev/null @@ -1 +0,0 @@ -!function(n){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=n();else if("function"==typeof define&&define.amd)define([],n);else{var t;((t="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).lunr||(t.lunr={})).wordcut=n()}}(function(){return function o(s,a,c){function u(e,n){if(!a[e]){if(!s[e]){var t="function"==typeof require&&require;if(!n&&t)return t(e,!0);if(l)return l(e,!0);var r=new Error("Cannot find module '"+e+"'");throw r.code="MODULE_NOT_FOUND",r}var i=a[e]={exports:{}};s[e][0].call(i.exports,function(n){var t=s[e][1][n];return u(t||n)},i,i.exports,o,s,a,c)}return a[e].exports}for(var l="function"==typeof require&&require,n=0;n<c.length;n++)u(c[n]);return u}({1:[function(n,t,e){var r=n("underscore"),i={creators:null,current:null,tag:null,init:function(){this.creators=[],this.current=[],this.tag={}},reset:function(){this.current=[],this.tag={}},transit:function(n){var e=this;e.creators.forEach(function(n){var t=n.createAcceptor(e.tag);t&&e.current.push(t)});var t=[];e.tag={};for(var r=0;r<e.current.length;r++){var i=e.current[r].transit(n);i.isError||(t.push(i),e.tag[i.tag]=i)}e.current=t},getFinalAcceptors:function(){return this.current.filter(function(n){return n.isFinal})}};t.exports=function(){var n=r.clone(i);return n.init(),n}},{underscore:25}],2:[function(t,e,n){(function(o){var s=t("path"),n=(t("glob"),{init:function(n,t,e){t=t||!1,defaultDict=s.normalize(o+"/..")+"/data/tdict-*.txt",this.dict=[];var r=void 0!==n,i=t||!r?[defaultDict]:[];n=n||defaultDict;r&&(Array.isArray(n)?i.concat.apply(i,n):i.push(n)),this.addFiles(i,!1),void 0!==e&&this.addWords(e,!1),this.finalizeDict()},addWords:function(n,t){t=void 0===t||t,this.dict.push.apply(this.dict,n),t&&this.finalizeDict()},finalizeDict:function(){this.dict=this.sortuniq(this.dict)},addFiles:function(n,t){t=void 0===t||t;for(var e=0;e<1;e++)words="à¸.à¸.\nà¸.à¸.น.\nà¸.ข.ค.\nà¸.ค.\nà¸.จ.\nà¸.ช.น.\nà¸.ฌ.\nà¸.ต.\nà¸.ต.ง.\nà¸.ต.ช.\nà¸.ตร.\nà¸.ท.\nà¸.น.ช.\nà¸.บช.\nà¸.บถ.\nà¸.ป.ส.\nà¸.พ.\nà¸.ม.\nà¸.ย.\nà¸.ร.\nà¸.ล.ต.\nà¸.ว.\nà¸.ศ.ว.\nà¸.ส.ท.\nà¸.ส.ธ.\nà¸.ส.à¸.\nà¸.à¸.\nà¸à¸.ตชด.\nà¸à¸.ตร.น.\nà¸à¸.ภ.จว.\nà¸à¸.รสช.\nà¸à¸à¸š.ขส.ทบ.\nà¸à¸à¸¥.รพน.\nà¸à¸‡.à¸à¸«.\nà¸à¸‡.ทบ.\nà¸à¸‡.ทร.\nà¸à¸‹à¸‚.ป.\nà¸à¸‹à¸¡.ป.\nà¸à¸—ม.à¸à¸£à¸¸à¸‡à¹€à¸—พมหานคร\nà¸à¸š.ทบ.\nà¸à¸›.สป.\nà¸à¸ž.ทบ.\nà¸à¸ž.ทร.\nà¸à¸ž.ทหาร\nà¸à¸£.ทบ.\nà¸à¸£à¸›.à¸à¸¥à¸²à¸‡\nà¸à¸£à¸.พà¸.\nà¸à¸¨.ด.\nà¸à¸¨.บ.\nà¸à¸¨.บป.\nà¸à¸¨.ม.\nà¸à¸©.ด.\nà¸à¸©.บ.\nà¸à¸©.ม.\nà¸à¸ª.ด.\nà¸à¸ª.ทบ.\nà¸à¸ª.บ.\nà¸à¸ª.ม.\nà¸à¸.ปค.\nà¸à¸.รพน.\nà¸à¸.รมน.\nà¸à¸.รสต.\nข.ต.ว.\nขว.ทบ.\nขว.ทร.\nขว.ทหาร\nขส.ทบ.\nขส.ทร.\nขส.ทà¸.\nค.ด.\nค.บ.\nค.พ.ศ.\nค.ม.\nค.ร.น.\nค.ร.ฟ.\nค.ร.ม.\nค.ศ.\nค.à¸.ด.\nค.à¸.บ.\nค.à¸.ม.\nคศ.ด.\nคศ.บ.\nคศ.ม.\nง.ด.\nจ.จ.\nจ.จ.จ.\nจ.ช.\nจ.ต.\nจ.ท.\nจ.ป.ร.\nจ.ม.\nจ.ศ.\nจ.ส.ต.\nจ.ส.ท.\nจ.ส.à¸.\nจ.à¸.\nจ.à¸.ร.\nจ.๑๘\nจà¸.ธน.\nจà¸.สน.\nช.ค.\nช.ค.บ.\nช.พ.ค.\nช.ส.\nช.ส.ค.\nฌ.ป.ค.\nฌ.ศ.ร.\nฌ.ส.à¸.\nà¸à¸—.สห.\nด.ช.\nด.à¸.\nด.ต.\nด.ศ.ค.\nด.ศ.ร.\nดย.ทร.\nต.à¸.\nต.ค.\nต.จ.\nต.จ.ว.\nต.ช.\nต.ต.\nต.บ.\nต.ม.\nต.ร.\nต.ศ.ร.\nต.ห.\nต.à¸.\nต.à¸.จ.\nตร.à¸à¸¡.\nตร.ซม.\nตร.ต.\nตร.ทล.\nตร.น.\nตร.ปม.\nตร.ภ.\nตร.ม.\nตร.รฟ.\nตร.ว.\nตร.ส.\nตร.สข.\nท.จ.\nท.จ.ว.\nท.ช.\nท.à¸.\nท.ด.\nท.ท.ท.\nท.ทบ.\nท.บ.\nท.พ.\nท.ม.\nท.ศ.\nทà¸.ด.\nทà¸.บ.\nทà¸.ม.\nทส.ปช.\nทส.รมว.à¸à¸«.\nทุ.ส.นิ.ม.\nธ.à¸.ส.\nธ.ค.\nธ.à¸\nธ.บ.\nน.ช.\nน.à¸.\nน.ด.\nน.ต.\nน.ท.\nน.น.\nน.บ.\nน.บ.ท.\nน.ป.ท.\nน.พ.\nน.ม.\nน.ร.\nน.ว.\nน.ศ.\nน.ส.\nน.ส.พ.\nน.ส.๓\nน.สพ.\nน.à¸.\nนปพ.ภ.\nนศ.ด.\nนศ.บ.\nนศ.ม.\nบ.à¸.\nบ.ข.ส.\nบ.ช.\nบ.ด.ท.\nบ.ตร.\nบ.ภ.\nบ.ม.\nบà¸.จร.\nบà¸.ตชด.\nบà¸.ตม.\nบà¸.ทล.\nบà¸.น.\nบà¸.ป.\nบà¸.ปค.\nบà¸.ปม.\nบà¸.ภ.เขต\nบà¸.รน.\nบà¸.รฟ.\nบà¸.ร้à¸à¸¢.ตชด.\nบà¸.ส.\nบà¸à¸‚.ป.\nบจพ.ป.\nบช.à¸.\nบช.ด.\nบช.ตชด.\nบช.น.\nบช.บ.\nบช.ปส.\nบช.ภ.\nบช.ม.\nบชท.ป.\nบชน.ป.\nบชส.ป.\nบธ.ด.\nบธ.บ.\nบธ.ม.\nบนท.ป.\nบนà¸.ป.\nบปช.ป.\nป.à¸à¸—.\nป.à¸à¸¨.\nป.à¸à¸¨.สูง\nป.จ.\nป.จ.ว.\nป.ช.\nป.ธ.\nป.ป.\nป.ป.à¸.\nป.ป.ช.\nป.ป.ป.\nป.ป.ร.\nป.ป.ส.\nป.พ.\nป.พ.พ.\nป.พย.\nป.ม.\nป.ม.à¸.\nป.ม.ช.\nป.ม.ธ.\nป.ม.ศ.\nป.ม.à¸.\nป.ร.ร.๔\nป.ร.ร.๕\nป.ร.ร.๖\nป.ล.\nป.ว.พ.\nป.วิ.à¸.\nป.ส.ส.\nป.à¸.\nป.à¸.ร.ส.\nป.๑\nปม.วส.\nปà¸.พ.\nผà¸à¸.ภ.\nผช.ผà¸.\nผต.มท.\nผบ.ตร.\nผบ.ทบ.\nผบ.ทร.\nผบ.ทสส.\nผบ.ทà¸.\nผบà¸.น.\nผบà¸.ป.\nผบà¸.ปค.\nผบà¸.ปม.\nผบà¸.ภ.\nผบช.à¸.\nผบช.ตชด.\nผบช.น.\nผบช.ภ.\nผว.à¸à¸—ม.\nผà¸.ปจ.\nพ.à¸.ง.\nพ.à¸à¸¨.\nพ.ข.ต.\nพ.ค.\nพ.ค.ช.\nพ.ค.ว.\nพ.ค.ศ.\nพ.จ.ต.\nพ.จ.ท.\nพ.จ.à¸.\nพ.ช.\nพ.ช.ค.\nพ.ด.\nพ.ต.\nพ.ต.ต.\nพ.ต.ท.\nพ.ต.à¸.\nพ.ต.à¸.พิเศษ\nพ.ท.\nพ.บ.\nพ.ป.\nพ.ภ.ม.\nพ.ม.\nพ.ม.ช.\nพ.ย.\nพ.ร.à¸.\nพ.ร.ฎ.\nพ.ร.ต.\nพ.ร.ธ.\nพ.ร.บ.\nพ.ศ.\nพ.ศ.บ.\nพ.ส.ร.\nพ.ส.ล.\nพ.à¸.\nพ.à¸.ต.\nพ.à¸.ท.\nพ.à¸.พิเศษ\nพ.à¸.à¸.\nพณ.ด.\nพณ.บ.\nพณ.ม.\nพธ.ด.\nพธ.บ.\nพธ.ม.\nพบ.ด.\nพบ.บ.\nพบ.ม.\nพย.ด.\nพย.บ.\nพย.ม.\nพล.จ.\nพล.ต.\nพล.ต.จ.\nพล.ต.ต.\nพล.ต.ท.\nพล.ต.à¸.\nพล.ท.\nพล.ปตà¸.\nพล.ม.\nพล.ม.๒\nพล.ร.จ.\nพล.ร.ต.\nพล.ร.ท.\nพล.ร.à¸.\nพล.à¸.\nพล.à¸.จ.\nพล.à¸.ต.\nพล.à¸.ท.\nพล.à¸.à¸.\nพลา.ทร.\nพศ.ด.\nพศ.บ.\nพศ.ม.\nพà¸.สว.\nภ.ง.ด.\nภ.ง.ด.๙\nภ.ด.\nภ.บ.\nภ.บ.ท.๕\nภ.ป.ร.\nภ.พ.\nภ.ม.\nภ.สถ.บ.\nม.ค.\nม.จ.\nม.ป.ท.\nม.ป.ป.\nม.ป.พ.\nม.ร.ว.\nม.ศ.\nม.à¸.\nม.à¸.ปัตตานี\nมิ.ย.\nมี.ค.\nยศ.ทบ.\nยศ.ทร.\nยศ.ทà¸.\nร.ง.\nร.ด.\nร.ต.\nร.ต.ต.\nร.ต.ท.\nร.ต.à¸.\nร.ท.\nร.น.\nร.บ.\nร.พ.\nร.ฟ.ล.\nร.ย.ล.\nร.ย.ส.ท.\nร.ล.\nร.ศ.\nร.ส.พ.\nร.à¸.\nรป.ม.\nรร.จปร.\nรร.จà¸.\nรร.ชท.\nรร.ตท.\nรร.นร.\nรร.นรต.\nรร.นà¸.\nล.à¸.\nล.ว.\nลส.ชบ.\nว.ค.\nว.ฉ.\nว.ช.\nว.ด.ป.\nว.ป.ถ.\nวท.บ.\nศ.บ.\nศ.ป.à¸.\nศ.ศ.ป.\nศà¸à¸£.ภ.\nศศ.บ.\nศษ.บ.\nศส.บ.\nส.à¸.\nส.à¸.ศ.ท.\nส.ค.\nส.ค.1\nส.ค.ร.\nส.ค.ส.\nส.ต.\nส.ต.ต.\nส.ต.ท.\nส.ต.à¸.\nส.ท.\nส.ทร.\nส.ป.ช.\nส.ป.ส.ท.\nส.ป.à¸.\nส.ร.\nส.ล.น.\nส.ว.\nส.ว.ท.\nส.ว.ส.ท.\nส.ส.\nส.ส.ท.\nส.ส.ร.\nส.ห.\nส.à¸.\nสถ.บ.\nสนง.สสà¸.\nสพ.à¸.\nสพ.บ.\nสว.จร.\nสว.ธร.\nสว.ส.\nสว.สป.\nสว.สส.\nสว.à¸à¸.\nสส.บ.\nสุ.จิ.ปุ.ลิ.\nห.ร.ม.\nà¸.à¸.ค.\nà¸.à¸.จ.\nà¸.จ.\nà¸.ช.พ.\nà¸.ตร.\nà¸.บ.\nà¸.ส.ท.\nà¸.ส.ม.ท.\nà¸.ส.ย.\nà¸.à¸.ป.\nà¸à¸ª.รด.\nà¸à¸¸.à¸à¸².à¸.ส.\nฮ.จ.\nฮ.ท.\nฮ.à¸.\nฮ.ล.\nฮ.ศ.\nเม.ย.\n\nà¸à¸£à¸µà¸™à¸´à¸Š\nà¸à¸¥à¸±à¸™à¸•à¸±à¸™\nà¸à¸±à¸¥à¸à¸±à¸•à¸•à¸²\nà¸à¸±à¸§à¸¥à¸²à¸¥à¸±à¸¡à¹€à¸›à¸à¸£à¹Œ\nà¸à¸±à¸¨à¸¡à¸µà¸£à¹Œ\nà¸à¸²à¸à¸¡à¸²à¸“ฑุ\nโà¸à¸¥à¸à¸²à¸•à¸²\nควิเบà¸\nคà¸à¸™à¹€à¸™à¸•à¸—ิคัต\nคาบูล\nคุชราต\nคุนหมิง\nเคนตัà¸à¸à¸µ\nเคนทัà¸à¸à¸µ\nเคมบริดจ์\nà¹à¸„ชเมียร์\nà¹à¸„นซัส\nà¹à¸„นเบà¸à¸£à¹Œà¸£à¸²\nà¹à¸„โรไลนา\nà¹à¸„ลิฟà¸à¸£à¹Œà¹€à¸™à¸µà¸¢\nโคเปนเฮเà¸à¸™\nโคลัมโบ\nโคโลราโด\nไครสต์เชิร์ช\nไคโร\nจาà¸à¸²à¸£à¹Œà¸•à¸²\nจำปาศัà¸à¸”ิ์\nเจนไน\nเจนีวา\nเจ้à¸à¹€à¸ˆà¸µà¸¢à¸‡\nฉงชิ่ง\nเฉิงตู\nชานตง\nชิคาโà¸\nเชนไน\nเชà¸à¸£à¹Œà¹‚นบิล\nซัปโปโร\nซานมารีโน\nซาบาห์\nซาราเยโว\nซาราวัà¸\nซิดนีย์\nซีà¸à¸²à¸™\nซีà¹à¸à¸•à¹€à¸—ิล\nซูริà¸\nซูริค\nเซเชลส์\nเซนได\nเซี่ยงไฮ้\nโซเฟีย\nโซล\nโซโลมà¸à¸™\nไซ่ง่à¸à¸™\nไซบีเรีย\nดัลลัส\nดาโคตา\nดานัง\nดีทรà¸à¸¢à¸•à¹Œ\nดูไบ\nเดนเวà¸à¸£à¹Œ\nเดลาà¹à¸§à¸£à¹Œ\nเดียนเบียนฟู\nโดเวà¸à¸£à¹Œ\nโดฮา\nไดฟุà¸à¸¸\nไดฟูà¸à¸¸\nตรังà¸à¸²à¸™à¸¹\nตริโปลี\nตูวาลู\nเตหะราน\nโตเà¸à¸µà¸¢à¸§\nโตรà¸à¸™à¹‚ต\nทมิฬนาฑู\nทริโปลี\nทิเบต\nเทà¸à¸‹à¸±à¸ª\nเท็à¸à¸‹à¸±à¸ª\nเทนเนสซี\nเทลà¸à¸²à¸§à¸µà¸Ÿ\nà¹à¸—สเมเนีย\nโทรà¸à¸™à¹‚ต\nไทเป\nธาà¸à¸²\nนางาซาà¸à¸´\nนาริตะ\nนิวเจà¸à¸£à¹Œà¸‹à¸µà¸¢à¹Œ\nนิวเดลี\nนิวยà¸à¸£à¹Œà¸\nนิวยà¸à¸£à¹Œà¸„\nนิวà¹à¸®à¸¡à¸›à¹Œà¹€à¸Šà¸µà¸¢à¸£à¹Œ\nเนบราสà¸à¸²\nเนà¹à¸šà¸£à¸ªà¸à¸²\nเนวาดา\nบรัสเซลส์\nบราซิเลีย\nบà¸à¸¡à¹€à¸šà¸¢à¹Œ\nบà¸à¸ªà¸•à¸±à¸™\nบังà¸à¸²à¸¥à¸à¸£à¹Œ\nบังคาลà¸à¸£à¹Œ\nบูคาเรสต์\nบูดาเปสต์\nเบงà¸à¸²à¸‹à¸µ\nเบนà¸à¸²à¸‹à¸µ\nเบรุต\nเบลเà¸à¸£à¸”\nเบà¸à¸£à¹Œà¸¥à¸´à¸™\nà¹à¸šà¸à¹à¸”ด\nปà¸à¸¢à¹€à¸›à¸•\nปะลิส\nปะหัง\nปัà¸à¸à¸´à¹ˆà¸‡\nปัà¸à¸ˆà¸²à¸š\nปัà¸à¸™à¸²\nปารีส\nปีนัง\nเประ\nเปียงยาง\nพนมเปà¸\nพระตะบà¸à¸‡\nพะโค\nพะสิม\nพาราณสี\nพิหารี\nเพนซิลวาเนีย\nเพนซิลเวเนีย\nฟรานซ์\nฟลà¸à¸£à¸´à¸”า\nฟิลาเดลเฟีย\nฟุà¸à¸¸à¸Šà¸´à¸¡à¸°\nฟุà¸à¸¸à¸Šà¸´à¸¡à¸²\nฟุà¸à¸¸à¹‚à¸à¸à¸°\nฟูà¸à¸¹à¹‚à¸à¸à¸°\nà¹à¸Ÿà¸£à¸‡à¸à¹Œà¹€à¸Ÿà¸´à¸£à¹Œà¸•\nมà¸à¸ªà¹‚à¸\nมะนิลา\nมะละà¹à¸«à¸¡à¹ˆà¸‡\nมัณฑะเลย์\nมัทราส\nมาดริด\nมิชิà¹à¸à¸™\nมินนิโซตา\nมิยางิ\nมิลาน\nมิวนิà¸\nมิสซูรี\nมุมไบ\nเมน\nเมลเบิร์น\nเมาะตะมะ\nเมาะลำเลิง\nà¹à¸¡à¸™à¸ˆà¸¹à¹€à¸£à¸µà¸¢\nà¹à¸¡à¸™à¹€à¸Šà¸ªà¹€à¸•à¸à¸£à¹Œ\nà¹à¸¡à¸™à¸®à¸±à¸•à¸•à¸±à¸™\nà¹à¸¡à¸£à¸´à¹à¸¥à¸™à¸”์\nà¹à¸¡à¸£à¸µà¹à¸¥à¸™à¸”์\nà¹à¸¡à¸ªà¸‹à¸²à¸Šà¸¹à¹€à¸‹à¸•à¸ªà¹Œ\nยะไข่\nย่างà¸à¸¸à¹‰à¸‡\nยูทาห์\nยูนนาน\nเยรูซาเล็ม\nโยโà¸à¸®à¸²à¸¡à¸²\nริยาด\nรีโà¸à¹€à¸”จาเนโร\nโรดไà¸à¹à¸¥à¸™à¸”์\nลà¸à¸™à¸”à¸à¸™\nลà¸à¸ªà¹à¸à¸‡à¹€à¸ˆà¸¥à¸´à¸ª\nลาปาซ\nลาสเวà¸à¸±à¸ª\nลิสบà¸à¸™\nลุยเซียนา\nโลซาน\nโลซานน์\nวà¸à¸Šà¸´à¸‡à¸•à¸±à¸™\nวà¸à¸£à¹Œà¸‹à¸\nวิสคà¸à¸™à¸‹à¸´à¸™\nเวนิส\nเวลส์\nเวà¸à¸£à¹Œà¸ˆà¸´à¹€à¸™à¸µà¸¢\nเวà¸à¸£à¹Œà¸¡à¸à¸™à¸•à¹Œ\nเวียงจันทน์\nเวียนนา\nà¹à¸§à¸™à¸„ูเวà¸à¸£à¹Œ\nไวโà¸à¸¡à¸´à¸‡\nสà¸à¸à¸•à¹à¸¥à¸™à¸”์\nสà¸à¹‡à¸à¸•à¹à¸¥à¸™à¸”์\nสตà¸à¸à¹‚ฮล์ม\nสลังงà¸à¸£à¹Œ\nเสฉวน\nเสียมราà¸\nเสียมเรียบ\nหงสา\nหงสาวดี\nหนานไห่\nหลวงพระบาง\nหูเป่ย\nหูเป่ย์\nหูหนาน\nเหà¸à¹€à¸›à¹ˆà¸¢\nเหà¸à¹€à¸›à¹ˆà¸¢à¹Œ\nเหà¸à¸«à¸™à¸²à¸™\nà¸à¸Šà¸±à¸™à¸•à¸²\nà¸à¸¥à¸²à¸ªà¸à¸²\nà¸à¸§à¸±à¸™à¸•à¸µ\nà¸à¸à¸£à¸´à¸à¸à¸™\nà¸à¸à¸ªà¹‚ล\nà¸à¸°à¹à¸¥à¸ªà¸à¸²\nà¸à¸±à¸•à¸•à¸°à¸›à¸·à¸\nà¸à¸±à¸¡à¸¡à¸²à¸™\nà¸à¸±à¸¡à¸ªà¹€à¸•à¸à¸£à¹Œà¸”ัม\nà¸à¸±à¸ªà¸ªà¸±à¸¡\nà¸à¸²à¸šà¸¹à¸”าบี\nà¸à¸²à¸£à¹Œà¸„ันซà¸\nà¸à¸´à¸™à¹€à¸”ียนา\nà¸à¸´à¸šà¸²à¸£à¸²à¸à¸´\nà¸à¸´à¸¥à¸¥à¸´à¸™à¸à¸¢à¸ªà¹Œ\nà¸à¸´à¸ªà¸•à¸±à¸™à¸šà¸¹à¸¥\nà¸à¸´à¸ªà¸¥à¸²à¸¡à¸²à¸šà¸±à¸”\nà¸à¸¸à¸£à¸¸à¸¡à¸Šà¸µ\nà¸à¸¹à¸¥à¸²à¸™à¸šà¸²à¸•à¸à¸£à¹Œ\nเà¸à¸”ินบะระ\nเà¸à¹€à¸˜à¸™à¸ªà¹Œ\nà¹à¸à¸•à¹à¸¥à¸™à¸•à¸²\nà¹à¸à¸£à¸´à¹‚ซนา\nà¹à¸à¸¥à¹€à¸ˆà¸µà¸¢à¸£à¹Œ\nโà¸à¸„ลาโฮมา\nโà¸à¸„็à¸à¸•à¸ªà¸„์\nโà¸à¸à¸´à¸™à¸²à¸§à¸²\nโà¸à¸‹à¸²à¸à¸²\nโà¸à¸£à¸´à¸ªà¸ªà¸²\nโà¸à¹€à¸£à¸à¸à¸™\nโà¸à¹„ฮโà¸\nไà¸à¸”าโฮ\nไà¸à¹‚à¸à¸§à¸²\nฮà¸à¸™à¹‚นลูลู\nฮานà¸à¸¢\nฮาเนดะ\nฮาราเร\nฮาวาย\nฮิโรชิมา\nฮุสตัน\nเฮลซิงà¸à¸´\n\nมà¸à¸£à¸²\nà¸à¸¸à¸¡à¸ า\nมีนา\nเมษา\nพฤษภา\nมิถุนา\nà¸à¸£à¸à¸Žà¸²\nสิงหา\nà¸à¸±à¸™à¸¢à¸²\nตุลา\nพฤศจิà¸à¸²\nธันวา\nเà¸\nบี\nซี\nดี\nà¸à¸µ\nเà¸à¸Ÿ\nจี\nเà¸à¸Š\nไà¸\nเจ\nเค\nà¹à¸à¸¥\nเà¸à¹‡à¸¡\nเà¸à¹‡à¸™\nโà¸\nพี\nคิว\nà¸à¸²à¸£à¹Œ\nเà¸à¸ª\nที\nยู\nวี\nดับเบิล\nดับบลิว\nเà¸à¹‡à¸à¸‹à¹Œ\nเà¸à¹Šà¸à¸‹à¹Œ\nวาย\nà¹à¸‹à¸”\nà¹à¸à¸¥à¸Ÿà¸²\nà¹à¸à¸¥à¸Ÿà¹ˆà¸²\nเบตา\nเบต้า\nà¹à¸à¸¡à¸¡à¸²\nà¹à¸à¸¡à¸¡à¹ˆà¸²\nเดลตา\nเดลต้า\nโà¸à¹€à¸¡à¸à¸²\nโà¸à¹€à¸¡à¸à¹‰à¸²\nเมà¸à¸°\nà¸à¸´à¸à¸°\nนาโน\nไมโคร\n\nà¸à¸£à¸£à¸¡à¸²à¸Šà¸™\nà¸à¸£à¸à¸šà¸£à¸¹à¸›\nà¸à¸£à¸°à¸”ี๊à¸à¸£à¸°à¸”๊า\nà¸à¸£à¸°à¸šà¸±à¸š\nà¸à¸£à¸²à¸§à¸™à¸”์\nà¸à¸£à¸µà¸™\nà¸à¸£à¸¸à¹Šà¸›\nà¸à¸¤à¸©à¸“์\nà¸à¸¥à¸²à¸ª\nà¸à¹Šà¸§à¸™\nà¸à¸©à¸±à¸•à¸£à¸´à¸¢à¸²\nà¸à¸©à¸±à¸•à¸£à¸´à¸¢à¸²à¸˜à¸´à¸£à¸²à¸Š\nà¸à¹ˆà¸à¸™à¸«à¸™à¹‰à¸²\nà¸à¸°à¸šà¸±à¸š\nà¸à¸±à¸šà¸”ัà¸\nà¸à¸±à¸¡à¸¡à¸±à¸™à¸•à¸°\nà¸à¹Šà¸²à¸\nà¸à¹‹à¸²à¸à¸±à¹ˆà¸™\nà¸à¸²à¸à¸ˆà¸™à¹Œ\nà¸à¸²à¸à¸ˆà¸™à¸²à¸ ิเษà¸\nà¸à¸²à¸¡à¸´à¸à¸²à¹€à¸‹à¹ˆ\nà¸à¸²à¸£à¸±à¸™à¸•à¸µ\nà¸à¸²à¸«à¸¥à¸´à¸š\nà¸à¸´à¸Ÿà¸—์\nà¸à¸´à¸¡à¸ˆà¸´\nà¸à¸µà¸§à¸µ\nà¸à¸¶à¹Šà¸\nà¸à¸¶à¹‹à¸¢\nà¸à¸¸à¸™à¸‹à¸·à¸\nà¸à¸¸à¸¡à¸ าพันธ์\nà¸à¸¹à¹‹\nเà¸à¸ˆà¸´\nเà¸à¸¡à¸ªà¹Œ\nเà¸à¸¢à¹Œ\nเà¸à¸£à¸”\nเà¸à¸£à¸¢à¹Œ\nเà¸à¸ªà¸•à¹Œà¹€à¸®à¸²à¸ªà¹Œ\nเà¸à¹Šà¸°\nเà¸à¹‹à¸²à¸à¸µà¹‰\nเà¸à¸´à¸£à¹Œà¸¥\nà¹à¸à¸‡à¸„์\nà¹à¸à¸£à¸™à¸”์\nà¹à¸à¸ªà¹‚ซฮà¸à¸¥à¹Œ\nà¹à¸à¹Šà¸ªà¹‚ซฮà¸à¸¥à¹Œ\nโà¸à¹€à¸•à¹‡à¸à¸‹à¹Œ\nโà¸à¸¥à¸”์\nโà¸à¸°\nโà¸à¹Šà¸°\nไà¸à¸”์\nขั้นตà¸à¸™\nเขวี้ยง\nคณาà¸à¸²à¸•à¸´\nครัวซà¸à¸‡\nครัวซà¸à¸‡à¸•à¹Œ\nคร่ำครวà¸\nครีเà¸à¸—ีฟ\nครูเสด\nคลับ\nคลาสสิà¸\nคลิตà¸à¸£à¸´à¸ª\nคลิป\nความหมาย\nควิà¸\nควีน\nคà¸à¸‡à¹€à¸à¸£à¸ª\nคà¸à¸™à¸‹à¸¹à¹€à¸¡à¸à¸£à¹Œ\nคà¸à¸™à¹€à¸‹à¸›à¸•à¹Œ\nคà¸à¸™à¹€à¸‹à¹‡à¸›à¸•à¹Œ\nคà¸à¸™à¹‚ด\nคà¸à¸™à¹‚ดมิเนียม\nคà¸à¸™à¹€à¸—นเนà¸à¸£à¹Œ\nคà¸à¸™à¹à¸—ค\nคà¸à¸™à¹à¸—็ค\nคà¸à¸™à¹‚ทรล\nคà¸à¸™à¹€à¸Ÿà¸´à¸£à¹Œà¸¡\nคà¸à¸›à¹€à¸•à¸à¸£à¹Œ\nคà¸à¸¡à¸žà¹Œ\nคà¸à¸¡à¹€à¸žà¸¥à¹‡à¸à¸‹à¹Œ\nคà¸à¸¡à¸¡à¸à¸™à¸ªà¹Œ\nคà¸à¸¡à¹€à¸¡à¸™à¸—์\nคà¸à¸¡à¹€à¸¡à¸™à¸•à¹Œ\nคà¸à¸£à¹Œà¸›\nคà¸à¸£à¹Œà¸›à¸à¹€à¸£à¸Šà¸±à¹ˆà¸™\nคà¸à¸£à¹Œà¸£à¸±à¸›à¸Šà¸±à¸™\nคà¸à¸£à¹Œà¸£à¸±à¸›à¸Šà¸±à¹ˆà¸™\nคà¸à¸£à¸±à¸›à¸Šà¸±à¸™\nคà¸à¸£à¸±à¸›à¸Šà¸±à¹ˆà¸™\nคà¸à¸£à¹Œà¸ª\nคà¸à¸¥à¹€à¸¥à¹‡à¸à¸Šà¸±à¹ˆà¸™\nคà¸à¸¥à¸±à¸¡à¸™à¹Œ\nคà¸à¸¥à¸±à¸¡à¸™à¸´à¸ªà¸•à¹Œ\nคัตเà¸à¸²à¸•à¹Œ\nคันคาà¸\nคันถธุระ\nคันธาระ\nคันยิ\nคัสตาร์ด\nคาราโà¸à¹€à¸à¸°\nคีตà¸à¸§à¸µ\nคีตปà¸à¸´à¸ าณ\nคีตราชัน\nคาปูชิโน\nคามิคาเซ่\nคาเฟ่\nคาร์\nคาร์โà¸à¹‰\nคาราเมล\nคาà¹à¸£à¸à¹€à¸•à¸à¸£à¹Œ\nคาà¹à¸£à¹‡à¸à¹€à¸•à¸à¸£à¹Œ\nคาà¹à¸£à¸„เตà¸à¸£à¹Œ\nคาà¹à¸£à¹‡à¸„เตà¸à¸£à¹Œ\nคาวบà¸à¸¢\nคาสิโน\nคิà¸à¸‚ุ\nคิวบิà¸\nคูลเลà¸à¸£à¹Œ\nเคบับ\nเครป\nเคลม\nเคลียร์\nเคลื่à¸à¸™à¸¢à¹‰à¸²à¸¢\nเคส\nเคà¸à¸£à¹Œà¸Ÿà¸´à¸§\nà¹à¸„ชเชียร์\nà¹à¸„ทวà¸à¸¥à¹Œà¸„\nà¹à¸„นดิเดต\nà¹à¸„นตาลูป\nà¹à¸„นยà¸à¸™\nà¹à¸„นู\nà¹à¸„ป\nà¹à¸„มป์\nà¹à¸„มปัส\nà¹à¸„มเปà¸\nà¹à¸„ร์\nà¹à¸„รà¸à¹€à¸à¸à¸£à¹Œ\nà¹à¸„ร็à¸à¹€à¸à¸à¸£à¹Œ\nà¹à¸„รà¸à¸—\nà¹à¸„สต์\nà¹à¸„สติง\nà¹à¸„สติ้ง\nโค้à¸\nโค้ช\nโคโยตี\nโคโยตี้\nโครนา\nโคà¸à¸°à¸¥à¹ˆà¸²\nโคà¸à¸²à¸¥à¸²\nโคà¸à¸²à¸¥à¹ˆà¸²\nไคลà¹à¸¡à¸à¸‹à¹Œ\nไคลà¹à¸¡à¹‡à¸à¸‹à¹Œ\nงั้น\nง่าว\nงี้\nเง็ง\nโง่เขลา\nไง\nจตุคาม\nจ๊à¸à¸à¸à¸µà¹‰\nจà¸à¸«à¸‡à¸§à¸™\nจังโà¸à¹‰\nจัมโบ้\nจ๊าบ\nจารà¸à¸£à¸£à¸¡\nจารชน\nจิ๊à¸\nจิ๊à¸à¹‚à¸à¹‹\nจิ๊à¸à¸‹à¸à¸§à¹Œ\nจิตพิสัย\nจิตเภท\nจีดีพี\nจึ๊à¸\nจุ๊ย\nจูน\nจูเนียร์\nเจ๊\nเจได\nเจ็ต\nเจล\nเจ๊าะà¹à¸ˆà¹Šà¸°\nเจี๊ยว\nà¹à¸ˆà¹‡à¸à¹€à¸à¹‡à¸•\nà¹à¸ˆà¹Šà¸à¹€à¸à¹‡à¸•\nà¹à¸ˆà¹‡à¸à¸žà¸à¸•\nà¹à¸ˆà¹‡à¸à¸žà¹‡à¸à¸•\nà¹à¸ˆà¹Šà¸à¸žà¸à¸•\nà¹à¸ˆà¹Šà¸à¸žà¹‡à¸à¸•\nà¹à¸ˆà¸¡\nà¹à¸ˆà¹Šà¸ª\nโจ๋\nฉลุย\nเฉิ่ม\nชนะเลิศ\nช็à¸à¸„\nช็à¸à¸•\nช็à¸à¸›\nช็à¸à¸›à¸›à¸´à¹‰à¸‡\nช็à¸à¸›à¹€à¸›à¸à¸£à¹Œ\nชะโนด\nชัตเตà¸à¸£à¹Œ\nชัวร์\nชาร์จ\nชาร์ต\nชาร์ป\nชินบัà¸à¸Šà¸£\nชิฟฟà¸à¸™\nชีส\nชีà¸à¸°à¸«à¹Œ\nเช็à¸\nเช็งเม้ง\nเชฟ\nเชลียร์\nเชà¸à¸£à¹Œà¸£à¸µà¹ˆ\nà¹à¸Šà¹€à¸Šà¸·à¸à¸™\nà¹à¸Šà¹ˆà¹à¸‚็ง\nà¹à¸Šà¸¡à¸›à¹Œ\nà¹à¸Šà¸¡à¸›à¸´à¸¢à¸à¸‡\nà¹à¸Šà¸¡à¹€à¸›à¸\nà¹à¸Šà¸¡à¹€à¸›à¸µà¹‰à¸¢à¸™\nà¹à¸Šà¸¡à¸žà¸¹\nโชว์รูม\nโชห่วย\nใช้งาน\nไชน่า\nซ้à¸\nซà¸à¸¡à¸šà¸µà¹‰\nซะ\nซังเต\nซันตาคลà¸à¸ª\nซัพพลาย\nซัพพลายเà¸à¸à¸£à¹Œ\nซัมเมà¸à¸£à¹Œ\nซาà¸à¸¸à¸£à¸°\nซาดิสต์\nซาดิสม์\nซาตาน\nซานตาคลà¸à¸ª\nซาฟารี\nซาบะ\nซามูไร\nซาร์\nซาร์ดีน\nซาเล้ง\nซิง\nซิ่ง\nซิงเà¸à¸´à¸¥\nซิตี\nซิตี้\nซินโดรม\nซิม\nซิ้ม\nซิมโฟนี\nซิมโฟนี่\nซิลเวà¸à¸£à¹Œ\nซี้\nซี้ซั้ว\nซีดาน\nซีน\nซีนีเพล็à¸à¸‹à¹Œ\nซีเนียร์\nซีร็à¸à¸à¸‹à¹Œ\nซีรีส์\nซีเรียส\nซีà¸à¸µà¹‚à¸\nซื่à¸à¸šà¸·à¹‰à¸\nซุนหนี่\nซุปเปà¸à¸£à¹Œ\nซูชิ\nซูเปà¸à¸£à¹Œ\nซูม\nซูโม่\nซูเà¸à¸µà¹‹à¸¢\nซูฮà¸\nเซ็à¸à¸‹à¹Œ\nเซ็à¸à¸‹à¸µà¹ˆ\nเซ็à¸à¸ªà¹Œ\nเซนเซà¸à¸£à¹Œ\nเซ็นเซà¸à¸£à¹Œ\nเซนเตà¸à¸£à¹Œ\nเซ็นเตà¸à¸£à¹Œ\nเซ็นทรัล\nเซนส์\nเซ่นไหว้\nเซฟตี้\nเซรามิà¸\nเซลส์\nเซลส์à¹à¸¡à¸™\nเซà¸à¸£à¹Œ\nเซà¸à¸£à¹Œà¹„พรส์\nเซà¸à¸£à¹Œà¸§à¸´à¸ª\nเซาท์\nเซี้ยว\nà¹à¸‹à¹‡à¸\nà¹à¸‹à¸à¹‚ซโฟน\nà¹à¸‹à¹‡à¸à¹‚ซโฟน\nà¹à¸‹à¸™à¸”์วิช\nà¹à¸‹à¸¡à¸šà¹‰à¸²\nà¹à¸‹à¸¥à¸¡à¸à¸™\nà¹à¸‹à¸§\nโซเชียล\nโซน\nโซนี่\nโซลาร์\nโซโล\nโซโล่\nà¸à¸²à¸“ทัสสนะ\nดยุà¸\nดยุค\nดร็à¸à¸›\nดรัมเมเยà¸à¸£à¹Œ\nดรามา\nดราม่า\nดà¸à¸à¹€à¸•à¸à¸£à¹Œ\nด็à¸à¸à¹€à¸•à¸à¸£à¹Œ\nดัมพ์\nดั๊มพ์\nดาวน์\nดิà¸à¸Šà¸±à¸™à¸™à¸²à¸£à¸µ\nดิสเครดิต\nดีà¸à¸£à¸µ\nดีเจ\nดีไซน์\nดีไซน์เนà¸à¸£à¹Œ\nดีไซเนà¸à¸£à¹Œ\nดีเบต\nดีพาร์ตเมนต์\nดีพาร์ตเมนท์\nดีพาร์ทเมนต์\nดีพาร์ทเมนท์\nดีมานด์\nดีล\nดีลเลà¸à¸£à¹Œ\nดีเลย์\nเดชานุภาพ\nเดบิต\nเดโม\nเดย์\nเด้à¸\nเดà¸à¸°\nเด๊ะ\nเดี้ยง\nเดี๊ยะ\nà¹à¸”นซ์\nà¹à¸”นเซà¸à¸£à¹Œ\nà¹à¸”รี่\nโดนัท\nโดมิโน\nโดรายาà¸à¸´\nไดเà¸à¹‡à¸•\nตถตา\nตนเà¸à¸‡\nตรวจทาน\nตรวจสà¸à¸š\nตà¸à¸à¸¢à¹‰à¸³\nต๊à¸à¸‡\nต่à¸à¸¢à¸à¸”\nต่à¸à¸£à¸à¸‡\nตะหงิด\nตังค์\nตันเถียน\nตัวตน\nตัวเà¸à¸‡\nตาปรืà¸\nต้าà¸à¹ˆà¸§à¸¢\nติงต๊à¸à¸‡\nติ๋ม\nติ่มซำ\nติว\nติวเตà¸à¸£à¹Œ\nตี๋\nตื้บ\nตุ๊à¸\nตุ๊à¸à¸•à¸¸à¹Šà¸\nตุ๊ด\nตุ๋ย\nตู้เซฟ\nเต๊ะ\nเตี๊ยม\nà¹à¸•à¸‡à¸à¸§à¸²\nà¹à¸•à¸‡à¹‚ม\nà¹à¸•à¹‹à¸§\nโต๋เต๋\nโต๊ะจีน\nไตรมาส\nถ่ายทำ\nถูà¸à¸•à¹‰à¸à¸‡\nทงคัตสึ\nทริป\nทรู\nทà¸à¸¡\nท็à¸à¸›\nทà¸à¸£à¹Œà¸™à¸²à¹‚ด\nทà¸à¸¥à¹Œà¸„\nทัà¸à¸‹à¸´à¹‚ด\nทันตà¸à¸£à¸£à¸¡\nทันตà¹à¸žà¸—ยศาสตร์\nทับซ้à¸à¸™\nทัวร์\nทัวร์นาเมนต์\nทัวร์นาเมนท์\nทัวริสต์\nทาเลนต์\nทาวน์\nทาวน์เฮาส์\nทำงาน\nทิป\nทิพยสมบัติ\nทิวลิป\nทีรามิสุ\nทีวี\nทูน่า\nเท็à¸à¸‹à¹Œ\nเทค\nเทคโน\nเทคโนà¹à¸„รต\nเทควันโด\nเทป\nเทรด\nเทรนด์\nเทรนเนà¸à¸£à¹Œ\nเทรลเลà¸à¸£à¹Œ\nเทรลเล่à¸à¸£à¹Œ\nเทเลà¸à¸£à¸²à¸Ÿ\nเทวบัà¸à¸Šà¸²\nเทวบุตร\nเทวา\nเทวาธิราช\nเทโวโรหนะ\nเทà¸à¸£à¹Œà¹‚บ\nเที่ยงคืน\nเที่ยงวัน\nเทียมทาน\nà¹à¸—à¸à¸•à¸´à¸„\nà¹à¸—คติค\nà¹à¸—งà¸à¸±à¹Šà¸\nà¹à¸—งโà¸à¹‰\nโทมาฮà¸à¸\nโทมาฮà¸à¸§à¹Œà¸\nโทมาฮà¸à¸§à¹Œà¸„\nโทร\nโทรโข่ง\nไทม์\nไทยà¹à¸¥à¸™à¸”์\nไทเฮา\nธรรมา\nธรรมาภิบาล\nธัมโม\nธีม\nธุรà¸à¸£à¸£à¸¡\nธุหร่ำ\nเธค\nนพมาศ\nนรีà¹à¸žà¸—ย์\nน็à¸à¸\nน็à¸à¸„\nน้à¸à¸‡à¹ƒà¸«à¸¡à¹ˆ\nนà¸à¸¡à¸´à¸™à¸µ\nนà¸à¸£à¹Œà¸—\nน่ะ\nนางà¹à¸šà¸š\nนาà¸à¸¢à¸¨à¸²à¸¥à¸²\nนายà¹à¸šà¸š\nนายพราน\nนินจา\nนิรันดร์\nนิว\nนิวส์\nนู้ด\nเนà¸à¸°\nเนิร์สเซà¸à¸£à¸µ\nเนิร์สเซà¸à¸£à¸µà¹ˆ\nเนี้ยบ\nโนติส\nไนท์\nไนน์\nบรรพชน\nบร็à¸à¸à¹‚คลี\nบร็à¸à¸„โคลี\nบรา\nบริà¸à¸£\nบริวเวà¸à¸£à¸µà¹ˆà¸ªà¹Œ\nบลà¸à¸™à¸”์\nบลูเบà¸à¸£à¹Œà¸£à¸µ\nบลูเบà¸à¸£à¹Œà¸£à¸µà¹ˆ\nบ๊วย\nบà¸à¸à¸‹à¹Œ\nบ็à¸à¸à¸‹à¹Œ\nบ๊à¸à¸à¸‹à¹Œ\nบà¸à¸”ี้\nบà¸à¸™à¸”์\nบ๊à¸à¸š\nบà¸à¸¡à¸šà¹Œ\nบ๋à¸à¸¢\nบà¸à¸¢à¸„à¸à¸•\nบà¸à¸¢à¸„à¸à¸•à¸•à¹Œ\nบà¸à¸£à¹Œà¸”\nบังเà¸à¸à¸£à¹Œ\nบัตเตà¸à¸£à¹Œ\nบัลลาสต์\nบัส\nบาบูน\nบาร์บีคิว\nบาร์บี้\nบาลานซ์\nบิ๊à¸\nบิล\nบึม\nบึ้ม\nบุà¸à¸„ุณ\nบุ๋น\nบุปผา\nบู๊\nบูชิโด\nบูติà¸\nบูติค\nบูม\nเบเà¸à¸à¸£à¸µà¹ˆ\nเบà¸à¸ˆà¸¡à¸šà¸žà¸´à¸•à¸£\nเบตาดีน\nเบนโตะ\nเบนโล\nเบบี้\nเบลà¸\nเบà¸à¸£à¹Œà¹€à¸à¸à¸£à¹Œ\nเบà¸à¸£à¹Œà¸£à¸µ\nเบิร์ด\nเบิร์น\nà¹à¸šà¹‡à¸à¹‚ฮ\nà¹à¸šà¸„โฮ\nà¹à¸šà¸”\nà¹à¸šà¸•\nà¹à¸šà¸™à¹€à¸™à¸à¸£à¹Œ\nà¹à¸šà¸£à¸™à¸”์\nà¹à¸šà¸¥à¹‡à¸\nà¹à¸šà¸¥à¹‡à¸„\nไบโà¸\nโบà¸à¸µà¹‰\nโบตั๋น\nโบ้ย\nโบรà¸à¹€à¸à¸à¸£à¹Œ\nโบรชัวร์\nโบว์\nโบว์ลิ่ง\nไบเบิล\nปà¸à¸´à¸ªà¸±à¸¡à¸žà¸±à¸™à¸˜à¹Œ\nป๊à¸à¸\nปà¸à¸”à¹à¸«à¸\nป๊à¸à¸›\nป๋à¸à¸«à¸¥à¸\nปัà¸à¸‚คณนา\nปัจเจà¸à¸Šà¸™\nปัจฉิมนิเทศ\nป๊า\nป๋า\nป่าไม้\nปาร์ตี้\nปาสà¸à¸²à¸¥\nปาสคาล\nปาสเตà¸à¸£à¹Œ\nปิà¸à¸à¸±à¸ž\nปิ๊ง\nปิโตรเคมี\nปิยมิตร\nปึ้à¸\nปูà¸à¸±à¸”\nเปโซ\nเป็นไง\nเปปเปà¸à¸£à¹Œà¸¡à¸´à¸™à¸•à¹Œ\nเปเปà¸à¸£à¹Œ\nเปราะบาง\nเป๊ะ\nเป่ายิงฉุบ\nเป่ายิ้งฉุบ\nเปียโน\nà¹à¸›à¹‰à¸\nà¹à¸›à¹‹à¸§\nà¹à¸›à¹Šà¸°à¹€à¸ˆà¸µà¹Šà¸¢à¸°\nโปร\nโปรเจà¸à¸•à¹Œ\nโปรเจ็à¸à¸•à¹Œ\nโปรเจà¸à¹€à¸•à¸à¸£à¹Œ\nโปรเจ็à¸à¹€à¸•à¸à¸£à¹Œ\nโปรเจคท์\nโปรเจ็คท์\nโปรดัà¸à¸Šà¸±à¹ˆà¸™\nโปรดิวเซà¸à¸£à¹Œ\nโปรโมชั่น\nโปรโมต\nโปรโมเตà¸à¸£à¹Œ\nโปรโมท\nโปลิศ\nโปสเตà¸à¸£à¹Œ\nผลไม้\nผลัà¸à¸”ัน\nผ้าห่ม\nผิดพลาด\nผู้นำ\nà¹à¸œà¸”เผา\nเà¸à¸\nพงษ์\nพริตตี้\nพรีเซนต์\nพรีเซ็นเตà¸à¸£à¹Œ\nพรีเมียม\nพรีเมียร์\nพฤหัส\nพล็à¸à¸•\nพลาซ่า\nพลานุภาพ\nพ่à¸à¸„้า\nพà¸à¹€à¸žà¸µà¸¢à¸‡\nพะเรà¸\nพันธà¸à¸´à¸ˆ\nพันธุวิศวà¸à¸£à¸£à¸¡\nพาร์\nพาร์ตเนà¸à¸£à¹Œ\nพาร์ทเนà¸à¸£à¹Œ\nพาวเวà¸à¸£à¹Œ\nพาสเจà¸à¸£à¹Œà¹„รส์\nพาสตา\nพาสต้า\nพาสปà¸à¸£à¹Œà¸•\nพาเหรด\nพิซซ่า\nพีเรียด\nพุดดิ้ง\nพุทธภูมิ\nพุทธศตวรรษ\nพุทโธ\nพูล\nเพทนาà¸à¸²à¸£\nเพนà¸à¸§à¸´à¸™\nเพนตาà¸à¸à¸™\nเพรส\nเพรียวบาง\nเพลซ\nเพลท\nเพลย์บà¸à¸¢\nเพียบà¹à¸›à¸£à¹‰\nเพียว\nเพาเวà¸à¸£à¹Œ\nà¹à¸žà¸à¹€à¸à¸ˆ\nà¹à¸žà¹‡à¸„\nà¹à¸žà¸•à¹€à¸—ิร์น\nà¹à¸žà¸—เทิร์น\nà¹à¸žà¸—ยสภา\nà¹à¸žà¸™à¸‡à¹€à¸Šà¸´à¸\nà¹à¸žà¸™à¸”า\nà¹à¸žà¸™à¸”้า\nà¹à¸žà¸¥à¸™\nโพลล์\nโพลารà¸à¸¢à¸”์\nโพสต์\nไพลิน\nฟยà¸à¸£à¹Œà¸”\nฟรังà¸à¹Œ\nฟรุต\nฟลà¸à¸£à¹Œ\nฟลุà¸\nฟลุค\nฟลุต\nฟลุท\nฟà¸à¸¢à¸¥à¹Œ\nฟà¸à¸£à¹Œà¸¡\nฟันด์\nฟาวล์\nฟาสต์ฟู้ด\nฟินิà¸à¸‹à¹Œ\nฟิวเจà¸à¸£à¹Œ\nฟีด\nฟีเวà¸à¸£à¹Œ\nฟุตบาท\nเฟรช\nเฟรชชี่\nเฟรม\nเฟมินิสต์\nเฟส\nเฟà¸à¸£à¹Œà¸™à¸´à¹€à¸ˆà¸à¸£à¹Œ\nเฟà¸à¸£à¹Œà¸£à¸µà¹ˆ\nเฟิร์ม\nเฟี้ยวฟ้าว\nà¹à¸Ÿà¸à¸‹à¹Œ\nà¹à¸Ÿà¹‡à¸à¸‹à¹Œ\nà¹à¸Ÿà¸™à¸‹à¸µ\nà¹à¸Ÿà¸™à¸•à¸²à¸‹à¸µ\nà¹à¸Ÿà¹‰à¸š\nà¹à¸Ÿà¸£à¹Œ\nà¹à¸Ÿà¸£à¸™à¹„ชส์\nà¹à¸Ÿà¸£à¸µ\nà¹à¸Ÿà¸£à¸µà¹ˆ\nà¹à¸Ÿà¸¥à¸Š\nà¹à¸Ÿà¸¥à¹‡à¸•\nโฟน\nโฟม\nโฟล์ค\nไฟต์\nไฟà¹à¸™à¸™à¸‹à¹Œ\nไฟลต์\nไฟลท์\nภควัทคีตา\nภควัมบดี\nภควัมปติ\nภคันทลาพาธ\nภววิสัย\nภารตะ\nภูมิทัศน์\nม้ง\nมวลชน\nมยุราภิรมย์\nมลภาวะ\nมหภาค\nมหาà¸à¸¸à¸›à¸£à¸²à¸Šà¸²\nมà¸à¸„คา\nมà¸à¸„ค่า\nมà¸à¸™à¸ªà¹€à¸•à¸à¸£à¹Œ\nม็à¸à¸š\nมà¸à¸šà¸•à¸±à¸§\nมà¸à¸¢à¸ªà¹Œà¹€à¸ˆà¸à¹„รเซà¸à¸£à¹Œ\nมà¸à¸¥à¸¥à¹Œ\nมะà¸à¸±à¸™\nมั้ง\nมัฟฟิน\nมั้ย\nม้านั่ง\nมาเฟีย\nมาม่า\nมายà¸à¸‡à¹€à¸™à¸ª\nมายาคติ\nมาร์à¸\nมาร์เà¸à¹‡à¸•\nมาร์เà¸à¹‡à¸•à¸•à¸´à¹‰à¸‡\nมาร์ค\nมาร์จิน\nมาร์ช\nมาร์ต\nมาร์ท\nมาราธà¸à¸™\nม้าหินà¸à¹ˆà¸à¸™\nมินต์\nมินท์\nมินิ\nมิลค์\nมิวสิค\nมิสซัง\nมิสไซล์\nมิสเตà¸à¸£à¹Œ\nมืà¸à¸–ืà¸\nมุมมà¸à¸‡\nเมคà¸à¸±à¸ž\nเมจิà¸\nเมจิค\nเมทัล\nเมเปิล\nเมาท์\nเมี่ยงคำ\nà¹à¸¡à¸à¸à¸²à¸‹à¸µà¸™\nà¹à¸¡à¹‡à¸à¸à¸²à¸‹à¸µà¸™\nà¹à¸¡à¸„เคà¸à¹€à¸£à¸¥\nà¹à¸¡à¹ˆà¸„้า\nà¹à¸¡à¸Šà¸Šà¸µà¸™\nà¹à¸¡à¸Šà¸µà¸™\nà¹à¸¡à¸™à¸Šà¸±à¹ˆà¸™\nà¹à¸¡à¸¡à¸šà¹‰à¸²\nà¹à¸¡à¸¡à¹‚บ้\nโมจิ\nโมเดล\nโมเดิร์น\nโมเต็ล\nโมโนเรล\nโมหจริต\nไมค์\nไมเà¸à¸£à¸™\nยนตรà¸à¸£à¸£à¸¡\nยà¸à¸¡à¸£à¸±à¸š\nยะเยืà¸à¸\nยังไง\nยาà¸à¸¹à¸‹à¹ˆà¸²\nยาวี\nยิม\nยิว\nยุวทูต\nยูโทเปีย\nยูโร\nยูวี\nเยน\nเยลลี่\nเย้ว\nเยà¸à¸šà¸µà¸£à¸²\nเยà¸à¸šà¸µà¸£à¹ˆà¸²\nเยà¸à¸£à¹Œà¸šà¸µà¸£à¸²\nเยà¸à¸£à¹Œà¸šà¸µà¸£à¹ˆà¸²\nà¹à¸¢à¸¡à¹‚รล\nโยเà¸à¸´à¸£à¹Œà¸•\nโยโย่\nรวมมิตร\nร็à¸à¸„\nร็à¸à¸„เà¸à¹‡à¸•\nรà¸à¸‡à¸£à¸±à¸š\nรà¸à¸¡à¸Žà¸à¸™\nรà¸à¸¢à¸±à¸¥à¸•à¸µà¹‰\nระโงà¸\nรันเวย์\nรัม\nราà¸à¸«à¸à¹‰à¸²\nราชบัณฑิตยสถาน\nราชานุà¸à¸²à¸•\nราชานุสาวรีย์\nรามเทพ\nรามาธิบดี\nรามายณะ\nราเม็ง\nราเมน\nรายชื่à¸\nราสเบà¸à¸£à¹Œà¸£à¸µ\nริà¸à¹€à¸•à¸à¸£à¹Œ\nริคเตà¸à¸£à¹Œ\nรีไซเคิล\nรีดไถ\nรีทัช\nรีเทิร์น\nรีไทร์\nรีà¹à¸šà¸£à¸™à¸”์\nรีพà¸à¸£à¹Œà¸—\nรีโมต\nรีโมท\nรีวิว\nรีสà¸à¸£à¹Œà¸•\nรีสà¸à¸£à¹Œà¸—\nรีเสิร์ช\nรุมบ้า\nรุสโซ\nรูบิà¸\nรูบิค\nเรซิน\nเรซิ่น\nเรดิโà¸\nเรต\nเรตติ้ง\nà¹à¸£à¸‡à¹ƒà¸ˆ\nà¹à¸£à¸‡à¸”ูด\nà¹à¸£à¸‡à¸œà¸¥à¸±à¸\nà¹à¸£à¸¥à¸¥à¸µ\nà¹à¸£à¸¥à¸¥à¸µà¹ˆ\nโรดà¹à¸¡à¸›\nโรเนียว\nโรà¹à¸¡à¸™à¸•à¸´à¸\nโรà¹à¸¡à¸™à¸•à¸´à¸„\nโรล\nโรลà¸à¸à¸™\nไรเฟิล\nล็à¸à¸à¹€à¸à¸à¸£à¹Œ\nลà¸à¸ˆà¸´à¸ªà¸•à¸´à¸à¸ªà¹Œ\nล็à¸à¸•\nล็à¸à¸šà¸šà¸µà¹‰\nลà¸à¸£à¹Œà¸”\nล้มเหลว\nละติน\nละà¸à¹ˆà¸à¸™\nลาซานà¸à¹ˆà¸²\nลาติน\nลาเต้\nลานีà¸à¸²\nลามะ\nลิมิต\nลิมูซีน\nลิสต์\nลีà¸\nลีด\nลีดเดà¸à¸£à¹Œ\nลีเมà¸à¸£à¹Œ\nลีลาวดี\nลุค\nลูà¸à¸Šà¸²à¸¢\nลูà¸à¸ªà¸²à¸§\nเลà¸à¹€à¸Šà¸à¸£à¹Œ\nเลคเชà¸à¸£à¹Œ\nเลดี้\nเลสเบี้ยน\nเลิฟ\nà¹à¸¥à¸™à¸”์\nà¹à¸¥à¹‡à¸š\nโลโà¸à¹‰\nโลชั่น\nไลท์\nไลน์\nไลฟ์\nวนาราม\nวราราม\nวโรà¸à¸²à¸ª\nว้à¸à¸”à¸à¹‰à¸²\nวà¸à¹€à¸•à¸à¸£à¹Œ\nวà¸à¸Ÿà¹€à¸Ÿà¸´à¸¥\nว้à¸à¸¢\nวà¸à¸£à¹Œà¸¡\nวà¸à¸£à¹Œà¸¡à¸à¸±à¸ž\nวà¸à¸£à¹Œà¸£à¸¹à¸¡\nวà¸à¸¥à¹Œà¸\nวà¸à¸¥à¹Œà¸„\nวà¸à¸¥à¸‹à¹Œ\nวà¸à¸¥à¸™à¸±à¸•\nวà¸à¸¥à¸™à¸±à¸—\nวà¸à¸¥à¸¥à¹Œ\nว่ะ\nวันเวย์\nวัสสา\nวาซาบิ\nวาทà¸à¸£à¸£à¸¡\nวาทะ\nวานิลลา\nวานิลา\nวาฟเฟิล\nวาริชศาสตร์\nว้าว\nวัคค์\nวัจนะ\nวาไรตี้\nวิà¸\nวิดีโà¸\nวิทย์\nวิน\nวิป\nวิปปิ้ง\nวิภัชภาค\nวิว\nวิลล์\nวิลเลจ\nวีเจ\nวีซ่า\nวีดิทัศน์\nวีน\nวีไà¸à¸žà¸µ\nวืด\nเวณิà¸à¸²\nเวเฟà¸à¸£à¹Œ\nเวสต์\nเวà¸à¸£à¹Œ\nเวิร์à¸\nเวิร์à¸à¸Šà¹‡à¸à¸›\nเวิร์ค\nเวิร์ลด์\nเวิลด์\nà¹à¸§à¸¡à¹„พร์\nไวà¸à¸´à¹‰à¸‡\nไวเบรเตà¸à¸£à¹Œ\nไวà¸à¸°à¸à¸£à¹‰à¸²\nไวà¸à¸²à¸à¸£à¹‰à¸²\nศาà¸à¸¢à¸šà¸¸à¸•à¸£\nศิรินทร์\nศิลปวัฒนธรรม\nศิลปาà¸à¸£\nศิวิไลซ์\nศึà¸à¸©à¸²à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nสà¸à¸£à¸±à¸¡\nสà¸à¸²à¸¢\nสà¸à¸¹à¹Šà¸›\nสเà¸à¸•à¸Šà¹Œ\nสเà¸à¹‡à¸•à¸Šà¹Œ\nสคริปต์\nสà¹à¸„วร์\nสงบสุข\nสจ๊วต\nสตรà¸à¹€à¸šà¸à¸£à¹Œà¸£à¸µ\nสตรà¸à¹€à¸šà¸à¸£à¸µ\nสตรà¸à¸§à¹Œà¹€à¸šà¸à¸£à¹Œà¸£à¸µ\nสตริง\nสต็à¸à¸\nสต๊à¸à¸\nสต็à¸à¸„\nสต๊à¸à¸„\nสตà¸à¸£à¸µ\nสตาร์\nสตาร์ท\nสติà¸à¹€à¸à¸à¸£à¹Œ\nสติ๊à¸à¹€à¸à¸à¸£à¹Œ\nสตีล\nสตูดิโà¸\nสเตชัน\nสเตชั่น\nสเตเดียม\nสเตนเลส\nสเต็ป\nสเตย์\nสเตริโà¸\nสเตà¸à¸£à¸´à¹‚à¸\nสà¹à¸•à¸™à¸”าร์ด\nสà¹à¸•à¸™à¹€à¸¥à¸ª\nสโตน\nสโตร์\nสไตรค์\nสไตล์\nสถาปัตย์\nสไนเปà¸à¸£à¹Œ\nสปà¸à¸•\nสป็à¸à¸•\nสปà¸à¸™à¹€à¸‹à¸à¸£à¹Œ\nสปà¸à¸£à¹Œà¸•\nสปา\nสปาย\nสปิริต\nสเปà¸\nสเปค\nสไปเดà¸à¸£à¹Œ\nสมณพราหมณ์\nสมาพันธ์\nสมิติเวช\nสโรชา\nสลัม\nสà¹à¸¥à¹‡à¸\nสโลà¹à¸à¸™\nสโลว์\nสไลด์\nสวีท\nสหรัà¸\nสหัชà¸à¸²à¸“\nสหัสวรรษ\nสะà¸à¸à¸¡\nสะเด่า\nสะบึม\nสะบึมส์\nสะà¸à¸à¸™\nสังโฆ\nสะโหลสะเหล\nสันทนาà¸à¸²à¸£\nสัมนา\nสามช่า\nสามà¹à¸¢à¸\nสารขัณฑ์\nสี่à¹à¸¢à¸\nสึนามิ\nสุนทรีย์\nสุริยยาตร\nสุริยยาตร์\nสุหนี่\nเสà¸à¸ªà¸£à¸£à¸„์\nเสพติด\nเสืà¸à¹‚คร่ง\nหงวน\nหน่à¸à¸¡à¹à¸™à¹‰à¸¡\nหมวย\nหมั่นโถว\nหม่านโถว\nหมายปà¸à¸‡\nหมิง\nหยวน\nหลวงตา\nหลวงปู่\nหลวงพี่\nหล่à¸à¸®à¸±à¸‡à¸à¹‰à¸§à¸¢\nหลินจืà¸\nห่วย\nเห็นด้วย\nเหมย\nเห่ย\nเหี่ยวย่น\nà¹à¸«à¸¡à¹‡à¸š\nà¹à¸«à¸§à¸§\nโหงว\nโหงวเฮ้ง\nโหลน\nโหลยโท่ย\nไหง\nไหร่\nà¸à¸žà¸²à¸£à¹Œà¸•à¹€à¸¡à¸™à¸•à¹Œ\nà¸à¸žà¸²à¸£à¹Œà¸•à¹€à¸¡à¸™à¸—์\nà¸à¸žà¸²à¸£à¹Œà¸—เมนต์\nà¸à¸žà¸²à¸£à¹Œà¸—เมนท์\nà¸à¸¡à¸²à¸•à¸¢à¸²à¸˜à¸´à¸›à¹„ตย\nà¸à¸¢à¸¸à¸•à¸´à¸˜à¸£à¸£à¸¡\nà¸à¸£à¸´à¸¢à¸ªà¸‡à¸†à¹Œ\nà¸à¹ˆà¸§à¸¡\nà¸à¸§à¸à¸£à¹Œà¸”\nà¸à¸à¸à¹à¸šà¸š\nà¸à¸à¸”ิชั่น\nà¸à¸à¸”ิทà¸à¹€à¸£à¸µà¸¢à¸¡\nà¸à¸à¹€à¸”à¸à¸£à¹Œ\nà¸à¸à¹‚ต้\nà¸à¸à¸—ิสติà¸\nà¸à¹ˆà¸à¸™à¸”้à¸à¸¢\nà¸à¸à¸Ÿ\nà¸à¸à¸¢à¸¥à¹Œ\nà¸à¸à¸£à¹Œà¹à¸à¸™\nà¸à¸à¸£à¹Œà¹à¸à¸™à¸´à¸\nà¸à¸à¸£à¹Œà¹à¸à¸™à¸´à¸„\nà¸à¸à¸£à¹Œà¹€à¸”à¸à¸£à¹Œ\nà¸à¸à¸£à¸±à¸¥\nà¸à¸à¸ªà¸‹à¸µà¹ˆ\nà¸à¸°\nà¸à¸±à¸•à¸¥à¸±à¸à¸©à¸“์\nà¸à¸±à¸•à¸§à¸´à¸ªà¸±à¸¢\nà¸à¸±à¸™à¹€à¸”à¸à¸£à¹Œ\nà¸à¸±à¸™à¸•à¸£à¸à¸´à¸£à¸´à¸¢à¸²\nà¸à¸±à¸¥à¸•à¸£à¸²\nà¸à¸±à¸¥à¹„ซเมà¸à¸£à¹Œ\nà¸à¸±à¸¥à¸šà¸±à¸¡\nà¸à¸±à¸¥à¸šà¸±à¹‰à¸¡\nà¸à¸±à¸¥à¸¡à¸à¸™à¸”์\nà¸à¸²à¸‚่า\nà¸à¸²à¹‚นเนะ\nà¸à¸²à¸Ÿà¹€à¸•à¸à¸£à¹Œ\nà¸à¸²à¸£à¹Œà¸•à¸´à¸ªà¸•à¹Œ\nà¸à¸²à¸£à¹Œà¸žà¸µà¸ˆà¸µ\nà¸à¸²à¸§à¹Œ\nà¸à¸²à¸ªà¸§à¸°\nà¸à¸´à¸à¸±à¸§à¸™à¸²\nà¸à¸´à¸™à¸”à¸à¸£à¹Œ\nà¸à¸´à¸™à¸”ัสตรีส์\nà¸à¸´à¸™à¹€à¸•à¸à¸£à¹Œ\nà¸à¸´à¹ˆà¸¡à¹à¸›à¸£à¹‰\nà¸à¸´à¸¡à¸žà¸µà¹€à¸£à¸µà¸¢à¸¥\nà¸à¸´à¹€à¸¥à¹‡à¸à¸—ริà¸\nà¸à¸´à¹€à¸¥à¹‡à¸à¸—ริค\nà¸à¸´à¹€à¸¥à¸µà¸¢à¸”\nà¸à¸´à¸ªà¸£à¸Šà¸™\nà¸à¸´à¹€à¸«à¸™à¸²\nà¸à¸´à¸à¸à¸™\nà¸à¸µà¹à¸•à¹‹à¸™\nà¸à¸µà¹‚รติà¸\nà¸à¸µà¹€à¸§à¸™à¸—์\nà¸à¸µà¸ªà¸•à¹Œ\nà¸à¸µà¸ªà¹€à¸•à¸à¸£à¹Œ\nà¸à¸¶à¹Šà¸š\nà¸à¸¶à¹‰à¸¡\nà¸à¸¶à¹‹à¸¡\nà¸à¸¶à¸¡à¸„รึม\nà¸à¸¸à¸”้ง\nà¸à¸¸à¸•à¸ªà¸²à¸«à¸à¸²à¸£\nà¸à¸¸à¹€à¸—น\nà¸à¸¸à¸›à¸à¸²à¸£à¸„ุณ\nà¸à¸¸à¸›à¸—าน\nà¸à¸¸à¸›à¸™à¸²à¸¢à¸\nà¸à¸¸à¸›à¸™à¸²à¸¢à¸´à¸à¸²\nà¸à¸¸à¸›à¸ªà¸‡à¸„์\nà¸à¸¸à¸›à¸±à¸—วเหตุ\nà¸à¸¸à¸£à¸±à¸‡à¸„ธาตุ\nà¸à¸¹à¸„ูเลเล่\nà¸à¸¹à¹‰à¸Ÿà¸¹à¹ˆ\nเà¸à¹‹\nเà¸à¹‡à¸à¸‹à¹Œà¹‚ป\nเà¸à¹‡à¸à¸‹à¹Œà¹€à¸žà¸£à¸ª\nเà¸à¹‡à¸à¹‚ซเซต์\nเà¸à¹‡à¸à¹‚ซเซ่ต์\nเà¸à¹€à¸‹à¸µà¸¢\nเà¸à¹‡à¸™à¸ˆà¸µà¹‚à¸\nเà¸à¹‡à¸™à¹€à¸•à¸à¸£à¹Œà¹€à¸—น\nเà¸à¸™à¸—รานซ์\nเà¸à¹‡à¸™à¸—รานซ์\nเà¸à¸Ÿà¹€à¸Ÿà¹‡à¸à¸•à¹Œ\nเà¸à¹€à¸¢à¸™à¸•à¹Œ\nเà¸à¸¥à¸™à¸µà¹‚à¸\nเà¸à¸ªà¹€à¸›à¸£à¸ªà¹‚ซ\nเà¸à¸ªà¹€à¸žà¸£à¸ªà¹‚ซ\nเà¸à¹‹à¸\nเà¸à¸²à¸•à¹Œ\nเà¸à¸²à¸—์\nเà¸à¸²à¸—์ดà¸à¸£à¹Œ\nเà¸à¹Šà¸²à¸°\nà¹à¸à¹‡à¸à¸Šà¸±à¹ˆà¸™\nà¹à¸à¹‡à¸„ชั่น\nà¹à¸à¸„ทีฟ\nà¹à¸à¸”มิชชั่น\nà¹à¸à¸”มิสชัน\nà¹à¸à¸™à¸”์\nà¹à¸à¹Šà¸šà¹à¸šà¹Šà¸§\nà¹à¸à¸›à¹€à¸›à¸´à¸¥\nà¹à¸à¸›à¹€à¸›à¸´à¹‰à¸¥\nà¹à¸à¸›à¸žà¸£à¸´à¸„à¸à¸—\nà¹à¸à¸žà¸žà¸£à¸´à¸„à¸à¸—\nà¹à¸à¸žà¸£à¸´à¸„à¸à¸•\nà¹à¸à¸£à¹Œ\nà¹à¸à¹‚รบิà¸\nà¹à¸à¹‚รบิค\nà¹à¸à¸¥à¸¡à¸à¸™à¸”์\nà¹à¸à¸ªà¹€à¸•à¸à¸£à¹Œ\nโà¸à¹€à¸„\nโà¸à¹€à¸›à¸à¹€à¸£à¹€à¸•à¸à¸£à¹Œ\nโà¸à¹€à¸›à¸£à¹ˆà¸²\nโà¸à¹€à¸žà¹ˆà¸™\nโà¸à¹‰à¸¢\nโà¸à¸¢à¸±à¸§à¸°\nโà¸à¸£à¸ªà¸²à¸˜à¸´à¸£à¸²à¸Š\nโà¸à¹€à¸¥à¸µà¹‰à¸¢à¸‡\nโà¸à¸§à¸±à¸¥à¸•à¸´à¸™\nโà¸à¹€à¸§à¸à¸£à¹Œ\nไà¸à¸‹à¹Œ\nไà¸à¸‹à¸µà¸¢à¸¹\nไà¸à¸”à¸à¸¥\nไà¸à¹€à¸”ีย\nไà¸à¸•à¸´à¸¡\nฮวงจุ้ย\nฮ่à¸à¸‡à¹€à¸•à¹‰\nฮà¸à¸‡à¹€à¸®à¸²\nฮà¸à¸•\nฮ็à¸à¸•\nฮà¸à¸•à¸”à¸à¸\nฮ็à¸à¸•à¸”็à¸à¸\nฮันนีมูน\nฮัม\nฮัลโลวีน\nฮัลโหล\nฮาà¸à¸à¸²\nฮาร์ด\nฮาราคีรี\nฮาลาล\nฮาโลวีน\nฮิ\nฮิต\nฮิบรู\nฮิปโป\nฮิปฮà¸à¸›\nฮีโร่\nฮูลาฮูป\nฮูล่าฮูป\nเฮฟวี\nเฮฟวี่\nเฮà¸à¸£à¹Œà¸£à¸´à¹€à¸„น\nเฮีย\nà¹à¸®à¸™à¸”์\nà¹à¸®à¸›à¸›à¸µà¹‰\nà¹à¸®à¸¡à¹€à¸šà¸à¸£à¹Œà¹€à¸à¸à¸£à¹Œ\nโฮป\nโฮม\nโฮลดิงส์\nโฮลวีต\nโฮสเตส\nไฮà¸à¸¸\nไฮà¹à¸ˆà¹‡à¸„\nไฮโซ\nไฮเทค\nไฮบริด\nไฮเปà¸à¸£à¹Œ\nไฮไลต์\nไฮไลท์\nไฮเวย์\nไฮสคูล\nไฮเà¸à¸™à¸”์\n\nà¸à¸£à¸µà¸‹\nà¸à¸±à¸¡à¸žà¸¹à¸Šà¸²\nà¸à¸±à¸§à¹€à¸•à¸¡à¸²à¸¥à¸²\nà¸à¸²à¸•à¸²à¸£à¹Œ\nà¸à¸²à¸™à¸²\nà¸à¸²à¸šà¸à¸‡\nà¸à¸²à¸¢à¸à¸²à¸™à¸²\nà¸à¸´à¸™à¸µ\nเà¸à¸£à¸™à¸²à¸”ีนส์\nเà¸à¸£à¹€à¸™à¸”า\nเà¸à¸²à¸«à¸¥à¸µ\nà¹à¸à¸¡à¹€à¸šà¸µà¸¢\nโà¸à¸•à¸”ิวัวร์\nคà¸à¸‡à¹‚à¸\nคà¸à¹‚มโรส\nคà¸à¸ªà¸•à¸²à¸£à¸´à¸à¸²\nคาซัคสถาน\nคิตส์\nคิริบาตี\nคิริบาส\nคิวบา\nคีร์à¸à¸µà¸‹à¸ªà¸–าน\nคูเวต\nเคนยา\nเคปเวิร์ด\nเคย์à¹à¸¡à¸™\nà¹à¸„นาดา\nà¹à¸„เมà¸à¸£à¸¹à¸™\nโครเà¸à¹€à¸Šà¸µà¸¢\nโคลà¸à¸¡à¹€à¸šà¸µà¸¢\nจà¸à¸£à¹Œà¹€à¸ˆà¸µà¸¢\nจà¸à¸£à¹Œà¹à¸”น\nจาเมà¸à¸²\nจิบูตี\nจีน\nชาด\nชิลี\nเช็à¸\nซามัว\nซาà¸à¸¸\nซิมบับเว\nซีเรีย\nซูดาน\nซูรินาเม\nเซนต์\nเซเนà¸à¸±à¸¥\nเซà¸à¸£à¹Œà¹€à¸šà¸µà¸¢\nเซาตูเม\nเซียร์รา\nà¹à¸‹à¸¡à¹€à¸šà¸µà¸¢\nโซมาเลีย\nโซเวียต\nไซปรัส\nà¸à¸µà¹ˆà¸›à¸¸à¹ˆà¸™\nดารุสซาลาม\nเดนมาร์à¸\nโดมินิà¸à¸±à¸™\nโดมินิà¸à¸²\nตรินิà¹à¸”ด\nตà¸à¸‡à¸à¸²\nติมà¸à¸£à¹Œ\nตุรà¸à¸µ\nตูนิเซีย\nเติร์à¸à¹€à¸¡à¸™à¸´à¸ªà¸–าน\nโตโà¸\nโตเบโà¸\nไต้หวัน\nทาจิà¸à¸´à¸ªà¸–าน\nà¹à¸—นซาเนีย\nนà¸à¸£à¹Œà¹€à¸§à¸¢à¹Œ\nนามิเบีย\nนาà¸à¸¹à¸£à¸¹\nนิà¸à¸²à¸£à¸²à¸à¸±à¸§\nนิวซีà¹à¸¥à¸™à¸”์\nเนเธà¸à¸£à¹Œà¹à¸¥à¸™à¸”์\nเนปาล\nเนวิส\nไนจีเรีย\nไนเจà¸à¸£à¹Œ\nบราซิล\nบริติช\nบริเตน\nบรูไน\nบà¸à¸•à¸ªà¸§à¸²à¸™à¸²\nบà¸à¸ªà¹€à¸™à¸µà¸¢\nบังà¸à¸¥à¸²à¹€à¸—ศ\nบังคลาเทศ\nบัลà¹à¸à¹€à¸£à¸µà¸¢\nบาร์บูดา\nบาร์เบโดส\nบาห์เรน\nบาฮามาส\nบิสเซา\nบุรุนดี\nบูร์à¸à¸´à¸™à¸²à¸Ÿà¸²à¹‚ซ\nเบนิน\nเบลเยียม\nเบลารุส\nเบลีซ\nเบà¸à¸£à¹Œà¸¡à¸´à¸§à¸”า\nโบลิเวีย\nปรินซิปี\nปาà¸à¸µà¸ªà¸–าน\nปานามา\nปาปัวนิวà¸à¸´à¸™à¸µ\nปาราà¸à¸§à¸±à¸¢\nปาเลสไตน์\nปาเลา\nเปรู\nเปà¸à¸£à¹Œà¹€à¸‹à¸µà¸¢\nเปà¸à¸£à¹Œà¹‚ตริโà¸\nโปรตุเà¸à¸ª\nโปà¹à¸¥à¸™à¸”์\nà¸à¸£à¸±à¹ˆà¸‡à¹€à¸¨à¸ª\nพม่า\nฟิจิ\nฟินà¹à¸¥à¸™à¸”์\nฟิลิปปินส์\nเฟรนช์\nภูà¸à¸²à¸™\nภูà¸à¸²à¸™\nมà¸à¸‡à¹‚à¸à¹€à¸¥à¸µà¸¢\nมà¸à¸™à¹€à¸•à¹€à¸™à¹‚à¸à¸£\nมà¸à¸™à¹à¸—นา\nมà¸à¸£à¸´à¹€à¸Šà¸µà¸¢à¸ª\nมà¸à¸£à¸´à¹€à¸•à¹€à¸™à¸µà¸¢\nมà¸à¸¥à¹‚ดวา\nมà¸à¸¥à¸•à¸²\nมัลดีฟส์\nมาเà¸à¹Šà¸²\nมาซิโดเนีย\nมาดาà¸à¸±à¸ªà¸à¸²à¸£à¹Œ\nมาร์à¹à¸Šà¸¥à¸¥à¹Œ\nมาลาวี\nมาลี\nมาเลเซีย\nเม็à¸à¸‹à¸´à¹‚à¸\nเมียนมาร์\nโมซัมบิà¸\nโมนาโà¸\nโมนาโค\nโมร็à¸à¸à¹‚à¸\nไมโครนีเซีย\nยูà¸à¸±à¸™à¸”า\nยูโà¸à¸ªà¸¥à¸²à¹€à¸§à¸µà¸¢\nยูเครน\nเยเมน\nเยà¸à¸£à¸¡à¸™à¸µ\nรวันดา\nรัสเซีย\nโรมาเนีย\nลัà¸à¹€à¸‹à¸¡à¹€à¸šà¸´à¸£à¹Œà¸\nลัตเวีย\nลาว\nลิà¸à¹€à¸•à¸™à¸ªà¹„ตน์\nลิทัวเนีย\nลิเบีย\nลีโà¸à¸™\nลูเซีย\nเลโซโท\nเลบานà¸à¸™\nเลสเต\nไลบีเรีย\nวาติà¸à¸±à¸™\nวานูà¸à¸²à¸•à¸¹\nวินเซนต์\nเวเนซุเà¸à¸¥à¸²\nเวียดนาม\nศรีลังà¸à¸²\nสเปน\nสโลวะเà¸à¸µà¸¢\nสโลวัà¸\nสโลวีเนีย\nสวาซิà¹à¸¥à¸™à¸”์\nสวิตเซà¸à¸£à¹Œà¹à¸¥à¸™à¸”์\nสวีเดน\nสหรัà¸\nสหราชà¸à¸²à¸“าจัà¸à¸£\nสิà¸à¸‚ิม\nสิงคโปร์\nà¸à¹€à¸¡à¸£à¸´à¸à¸²\nà¸à¸à¸ªà¹€à¸•à¸£à¹€à¸¥à¸µà¸¢\nà¸à¸à¸ªà¹€à¸•à¸£à¸µà¸¢\nà¸à¸±à¸™à¸”à¸à¸£à¹Œà¸£à¸²\nà¸à¸±à¸Ÿà¸à¸²à¸™à¸´à¸ªà¸–าน\nà¸à¸²à¹€à¸‹à¸à¸£à¹Œà¹„บจาน\nà¸à¸²à¸£à¹Œà¹€à¸ˆà¸™à¸•à¸´à¸™à¸²\nà¸à¸²à¸£à¹Œà¹€à¸¡à¹€à¸™à¸µà¸¢\nà¸à¸²à¸£à¸°à¹€à¸šà¸µà¸¢\nà¸à¸´à¹€à¸„วทà¸à¹€à¸£à¸µà¸¢à¸¥\nà¸à¸´à¸•à¸²à¸¥à¸µ\nà¸à¸´à¸™à¹€à¸”ีย\nà¸à¸´à¸™à¹‚ดนีเซีย\nà¸à¸´à¸£à¸±à¸\nà¸à¸´à¸ªà¸£à¸²à¹€à¸à¸¥\nà¸à¸´à¸«à¸£à¹ˆà¸²à¸™\nà¸à¸µà¸¢à¸´à¸›à¸•à¹Œ\nà¸à¸¸à¸‹à¹€à¸šà¸à¸´à¸ªà¸–าน\nà¸à¸¸à¸£à¸¸à¸à¸§à¸±à¸¢\nเà¸à¸à¸§à¸²à¸”à¸à¸£à¹Œ\nเà¸à¸˜à¸´à¹‚à¸à¹€à¸›à¸µà¸¢\nเà¸à¸¡à¸´à¹€à¸£à¸•à¸ªà¹Œ\nเà¸à¸£à¸´à¹€à¸—รีย\nเà¸à¸¥à¸‹à¸±à¸¥à¸§à¸²à¸”à¸à¸£à¹Œ\nเà¸à¸ªà¹‚ตเนีย\nà¹à¸à¸‡à¹‚à¸à¸¥à¸²\nà¹à¸à¸™à¸•à¸´à¸à¸²\nà¹à¸à¸¥à¸ˆà¸µà¹€à¸£à¸µà¸¢\nà¹à¸à¸¥à¹€à¸šà¹€à¸™à¸µà¸¢\nโà¸à¸¡à¸²à¸™\nไà¸à¸‹à¹Œà¹à¸¥à¸™à¸”์\nไà¸à¸£à¹Œà¹à¸¥à¸™à¸”์\nฮ่à¸à¸‡à¸à¸‡\nฮà¸à¸™à¸”ูรัส\nฮังà¸à¸²à¸£à¸µ\nเฮติ\nเฮà¸à¸£à¹Œà¹€à¸‹à¹‚à¸à¸§à¸µà¸™à¸²\n\nà¸à¸£à¸°à¸šà¸µà¹ˆ\nà¸à¸£à¸¸à¸‡à¹€à¸—พ\nà¸à¸²à¸à¸ˆà¸™à¸šà¸¸à¸£à¸µ\nà¸à¸²à¸¬à¸ªà¸´à¸™à¸˜à¸¸à¹Œ\nà¸à¸³à¹à¸žà¸‡à¹€à¸žà¸Šà¸£\nขà¸à¸™à¹à¸à¹ˆà¸™\nจันทบุรี\nฉะเชิงเทรา\nชลบุรี\nชัยนาท\nชัยภูมิ\nชุมพร\nเชียงราย\nเชียงใหม่\nตรัง\nตราด\nตาà¸\nนครนายà¸\nนครปà¸à¸¡\nนครพนม\nนครราชสีมา\nนครศรีธรรมราช\nนครสวรรค์\nนนทบุรี\nนราธิวาส\nน่าน\nบึงà¸à¸²à¸¬\nบุรีรัมย์\nปทุมธานี\nประจวบคีรีขันธ์\nปราจีนบุรี\nปัตตานี\nพะเยา\nพังงา\nพัทลุง\nพิจิตร\nพิษณุโลà¸\nเพชรบุรี\nเพชรบูรณ์\nà¹à¸žà¸£à¹ˆ\nภูเà¸à¹‡à¸•\nมหาสารคาม\nมุà¸à¸”าหาร\nà¹à¸¡à¹ˆà¸®à¹ˆà¸à¸‡à¸ªà¸à¸™\nยโสธร\nยะลา\nร้à¸à¸¢à¹€à¸à¹‡à¸”\nระนà¸à¸‡\nระยà¸à¸‡\nราชบุรี\nลพบุรี\nลำปาง\nลำพูน\nเลย\nศรีสะเà¸à¸©\nสà¸à¸¥à¸™à¸„ร\nสงขลา\nสตูล\nสมุทรปราà¸à¸²à¸£\nสมุทรสงคราม\nสมุทรสาคร\nสระà¹à¸à¹‰à¸§\nสระบุรี\nสิงห์บุรี\nสุโขทัย\nสุพรรณบุรี\nสุราษฎร์\nสุราษฎร์ธานี\nสุรินทร์\nหนà¸à¸‡à¸„าย\nหนà¸à¸‡à¸šà¸±à¸§à¸¥à¸³à¸ ู\nà¸à¸¢à¸¸à¸˜à¸¢à¸²\nà¸à¹ˆà¸²à¸‡à¸—à¸à¸‡\nà¸à¸³à¸™à¸²à¸ˆà¹€à¸ˆà¸£à¸´à¸\nà¸à¸¸à¸”รธานี\nà¸à¸¸à¸•à¸£à¸”ิตถ์\nà¸à¸¸à¸—ัยธานี\nà¸à¸¸à¸šà¸¥à¸£à¸²à¸Šà¸˜à¸²à¸™à¸µ\nà¸à¸±à¸™à¸—รลัà¸à¸©à¹Œ\nจตุจัà¸à¸£\nไชยา\nซีคà¸à¸™\nดà¸à¸™à¹€à¸¡à¸·à¸à¸‡\nถลาง\nไทรโยค\nธนบุรี\nธัà¸à¸šà¸¸à¸£à¸µ\nบางà¸à¸à¸\nบางปะà¸à¸‡\nบางระจัน\nปะทิว\nปาย\nพà¸à¸²à¹„ท\nพัฒน์พงษ์\nพัทยา\nพาราà¸à¸à¸™\nภูมิซรà¸à¸¥\nรัตนาธิเบศร์\nรังสิต\nลันตา\nลาดพร้าว\nวโรรส\nวิภาวดี\nสตึà¸\nสมุย\nสัตหีบ\nสิมิลัน\nสุขุมวิท\nสุไหง\nเสลภูมิ\nà¸à¸±à¸‡à¸£à¸µà¸”ูนังต์\nà¸à¹ˆà¸²à¸‡à¸‚าง\nà¸à¸´à¸™à¸—นนท์\nเà¸à¹‡à¸¡à¹‚พเรียม\n\nคิวชู\nà¹à¸„ริบเบียน\nà¹à¸„สเปียน\nดานูบ\nตะนาวศรี\nนà¸à¸£à¹Œà¸§à¸µà¹€à¸ˆà¸µà¸¢à¸™\nนิโคบาร์\nเนรัà¸à¸Šà¸£à¸²\nไนล์\nบà¸à¸£à¹Œà¹€à¸™à¸µà¸¢à¸§\nบà¸à¸¥à¸•à¸´à¸\nเบงà¸à¸à¸¥\nปิง\nà¹à¸›à¸‹à¸´à¸Ÿà¸´à¸\nมะละà¸à¸²\nมินดาเนา\nมิสซิสซิปปี\nเมดิเตà¸à¸£à¹Œà¹€à¸£à¹€à¸™à¸µà¸¢à¸™\nเมโสโปเตเมีย\nยมุนา\nยุโรป\nยูเรเชีย\nยูเรเซีย\nà¹à¸¢à¸‡à¸‹à¸µ\nà¹à¸¢à¸‡à¸‹à¸µà¹€à¸à¸µà¸¢à¸‡\nสà¹à¸à¸™à¸”ิเนเวีย\nสะโตง\nสาละวิน\nสุมาตรา\nสุเà¸à¸‹\nà¸à¸°à¹€à¸¡à¸‹à¸à¸™\nà¸à¸±à¸™à¸”ามัน\nà¸à¸±à¸¥à¹„ต\nà¸à¸²à¸£à¹Œà¸à¸•à¸´à¸\nà¸à¸²à¸«à¸£à¸±à¸š\nà¸à¸´à¸™à¹‚ดจีน\nà¸à¸´à¸£à¸§à¸”ี\nà¸à¸´à¸£à¸°à¸§à¸”ี\nà¸à¸µà¹€à¸ˆà¸µà¸¢à¸™\nà¸à¸¸à¸©à¸²à¸„เณย์\nà¸à¸¹à¸£à¸²à¸¥\nเà¸à¹€à¸Šà¸µà¸¢\nเà¸à¹€à¸”รียติà¸\nเà¸à¹€à¸§à¸à¹€à¸£à¸ªà¸•à¹Œ\nà¹à¸à¸•à¹à¸¥à¸™à¸•à¸´à¸\nà¹à¸à¸™à¸•à¸²à¸£à¹Œà¸à¸•à¸´à¸\nà¹à¸à¸™à¸•à¸²à¸£à¹Œà¸à¸•à¸´à¸à¸²\nà¹à¸à¸Ÿà¸£à¸´à¸à¸²\nโà¸à¸¥à¸´à¸¡à¸›à¸±à¸ª\nไà¸à¹‚à¸à¹€à¸™à¸µà¸¢à¸™\nฮวงโห\nฮà¸à¸à¹„à¸à¹‚ด\nฮà¸à¸™à¸Šà¸¹\n\nà¸à¸šà¸´à¸¥à¸žà¸±à¸ªà¸”ุ์\nà¸à¸¸à¸ªà¸´à¸™à¸²à¸£à¸²\nโà¸à¸¥à¸´à¸¢à¸°\nโà¸à¸ªà¸±à¸¡à¸žà¸µ\nโคตรบà¸à¸‡\nโคตรบูรณ์\nตà¸à¸‡à¸à¸¹\nทรà¸à¸¢\nทวารวดี\nทวาราวดี\nเทวทหะ\nไทรบุรี\nนาลันทา\nไบà¹à¸‹à¸™à¹„ทน์\nปรัสเซีย\nปัลลวะ\nปาà¸à¸¥à¸µà¸šà¸¸à¸•à¸£\nพุทธคยา\nมถุรา\nมายัน\nมิถิลา\nราชคฤห์\nล้านช้าง\nล้านนา\nลุมพินี\nวัชชี\nเวสาลี\nสารนาถ\nสาวัตถี\nหริภุà¸à¸Šà¸±à¸¢\nà¸à¹‚ยธยา\nà¸à¸à¸•à¹‚ตมัน\nà¸à¸±à¸‡à¸§à¸°\nà¸à¸´à¸™à¸—ปัตถ์\nà¸à¸¸à¸Šà¹€à¸Šà¸™à¸µ\n\nà¸à¸£à¸²à¸Ÿà¸´à¸\nà¸à¸£à¸²à¸Ÿà¸´à¸à¸ªà¹Œ\nà¸à¸£à¸²à¸Ÿà¸´à¸„\nà¸à¸£à¸´à¸”\nà¸à¸´à¸à¸°à¹„บต์\nà¸à¸¹à¹€à¸à¸´à¸¥\nà¸à¸¹à¹€à¸à¸´à¹‰à¸¥\nเà¸à¸•à¹€à¸§à¸¢à¹Œ\nโà¸à¸¥à¸šà¸à¸¥\nคลัสเตà¸à¸£à¹Œ\nคลาส\nคลิà¸\nคลิปà¸à¸²à¸£à¹Œà¸•\nคà¸à¸™à¹‚ซล\nคà¸à¸™à¹€à¸—นต์\nคà¸à¸¡à¸žà¸´à¸§à¸•à¸´à¹‰à¸‡\nคà¸à¸¡à¹„พล์\nคà¸à¸¡à¹„พเลà¸à¸£à¹Œ\nคà¸à¸¡à¸¡à¸¹à¸™à¸´à¹€à¸„ชั่น\nคà¸à¸£à¹Œ\nคีย์\nคีย์บà¸à¸£à¹Œà¸”\nเครืà¸à¸‚่าย\nเคà¸à¸£à¹Œà¹€à¸‹à¸à¸£à¹Œ\nเคà¸à¸£à¹Œà¹€à¸™à¸¥\nà¹à¸„ช\nà¹à¸„มฟรà¸à¸\nà¹à¸„มฟร็à¸à¸\nà¹à¸„ร็à¸\nโค้ด\nจาวา\nจีพีเà¸à¸ª\nชิป\nชิพ\nเชลล์\nà¹à¸Šà¹‡à¸•\nà¹à¸Šà¸™à¹€à¸™à¸¥\nà¹à¸Šà¸™à¹à¸™à¸¥\nซ็à¸à¸à¹€à¸à¹‡à¸•\nซà¸à¸Ÿà¸•à¹Œà¹à¸§à¸£à¹Œ\nซà¸à¸Ÿà¸—์à¹à¸§à¸£à¹Œ\nซà¸à¸£à¹Œà¸ª\nซัพพà¸à¸£à¹Œà¸•\nซัพพà¸à¸£à¹Œà¸—\nซีดี\nซีดีรà¸à¸¡\nซีเนà¸à¸£à¹Œ\nเซิร์ฟเวà¸à¸£à¹Œ\nโซลูชัน\nโซลูชั่น\nไซต์\nไซเบà¸à¸£à¹Œ\nทรานà¹à¸‹à¸à¸Šà¸±à¸™\nทรานà¹à¸‹à¸à¸Šà¸±à¹ˆà¸™\nทรานà¹à¸‹à¹‡à¸à¸Šà¸±à¸™\nทรานà¹à¸‹à¹‡à¸à¸Šà¸±à¹ˆà¸™\nทรานà¹à¸‹à¸„ชัน\nทรานà¹à¸‹à¸„ชั่น\nทรานà¹à¸‹à¹‡à¸„ชัน\nทรานà¹à¸‹à¹‡à¸„ชั่น\nทวิตเตà¸à¸£à¹Œ\nทวีต\nทัชà¹à¸žà¸”\nเทมเพลต\nเทà¸à¸£à¹Œà¸¡à¸´à¸™à¸±à¸¥\nà¹à¸—็à¸\nà¹à¸—็บ\nà¹à¸—บเล็ต\nโทรจัน\nเน็ต\nเน็ตบุ๊à¸\nเน็ตบุค\nเน็ตบุ๊ค\nเน็ตเวิร์à¸\nเน็ตเวิร์ค\nโน้ตบุ๊à¸\nโน้ตบุค\nโน้ตบุ๊ค\nดà¸à¸ª\nดาวน์เà¸à¸£à¸”\nดาวน์โหลด\nดิจิตà¸à¸¥\nดิจิทัล\nดีบั๊à¸\nดีวีดี\nดีไวซ์\nเดเบียน\nเดลไฟ\nเดสà¸à¹Œà¸—็à¸à¸›\nโดเมน\nไดรว์\nไดรเวà¸à¸£à¹Œ\nไดเรà¸à¸—à¸à¸£à¸µ\nไดโà¸à¸”\nเทเลคà¸à¸¡\nบล็à¸à¸à¹€à¸à¸à¸£à¹Œ\nบรà¸à¸”à¹à¸šà¸™à¸”์\nบราวเซà¸à¸£à¹Œ\nบลูทูท\nบลูทูธ\nบลูเรย์\nบั๊à¸\nบัฟเฟà¸à¸£à¹Œ\nบิต\nบิท\nบูต\nเบราว์เซà¸à¸£à¹Œ\nà¹à¸šà¸™à¸”์วิดท์\nไบต์\nไบนารี\nโปรà¹à¸à¸£à¸¡à¹€à¸¡à¸à¸£à¹Œ\nโปรเซส\nโปรเซสเซà¸à¸£à¹Œ\nโปรโตคà¸à¸¥\nพร็à¸à¸à¸‹à¸µ\nพà¸à¸£à¹Œà¸•\nพà¸à¸£à¹Œà¸—\nพาเนล\nพาร์ทิชัน\nพารามิเตà¸à¸£à¹Œ\nพาสเวิร์ด\nพิà¸à¹€à¸‹à¸¥\nเพจ\nเพจเจà¸à¸£à¹Œ\nà¹à¸žà¸à¹€à¸à¹‡à¸•\nà¹à¸žà¸•à¸Šà¹Œ\nà¹à¸žà¸¥à¸•à¸Ÿà¸à¸£à¹Œà¸¡\nโพรเซส\nโพรเซสเซà¸à¸£à¹Œ\nโพรโทคà¸à¸¥\nไพธà¸à¸™\nฟล็à¸à¸›à¸ªà¹Œ\nฟà¸à¸™à¸•à¹Œ\nฟà¸à¸£à¹Œà¹à¸¡à¸•\nฟà¸à¸£à¹Œà¹€à¸§à¸´à¸£à¹Œà¸”\nฟà¸à¸£à¸±à¸¡\nฟีเจà¸à¸£à¹Œ\nเฟซบุ๊à¸\nเฟิร์มà¹à¸§à¸£à¹Œ\nà¹à¸Ÿà¸¥à¹‡à¸\nโฟลเดà¸à¸£à¹Œ\nไฟร์ฟà¸à¸à¸‹à¹Œ\nไฟร์วà¸à¸¥à¸¥à¹Œ\nไฟล์\nมà¸à¸”ูล\nมà¸à¸™à¸´à¹€à¸•à¸à¸£à¹Œ\nมัลติ\nมัลติทัช\nมัลติเพล็à¸à¸‹à¹Œ\nมัลà¹à¸§à¸£à¹Œ\nมาสเตà¸à¸£à¹Œ\nมีเดีย\nเมนู\nเมมโมรี\nเมล\nเมาส์\nà¹à¸¡à¸„\nโมดูล\nโมเด็ม\nโมบาย\nโมบายล์\nโมไบล์\nไมโครซà¸à¸Ÿà¸—์\nยูนิà¸à¸‹à¹Œ\nยูนิโคด\nยูนิโค้ด\nริงโทน\nรีเฟรช\nรีเลย์\nเราเตà¸à¸£à¹Œ\nเรียลไทม์\nลิงà¸à¹Œ\nลินุà¸à¸‹à¹Œ\nลีนุà¸à¸‹à¹Œ\nลูป\nเลเยà¸à¸£à¹Œ\nà¹à¸¥à¹‡à¸›à¸—็à¸à¸›\nไลเซนส์\nไลบรารี\nวิà¸à¸´\nวิà¸à¸´à¸žà¸µà¹€à¸”ีย\nวินโดวส์\nวินโดว์ส\nเว็บ\nเวà¸à¸£à¹Œà¸Šà¸§à¸¥\nเวà¸à¸£à¹Œà¸Šà¸±à¸™\nเวà¸à¸£à¹Œà¸Šà¸±à¹ˆà¸™\nเวิร์à¸à¸ªà¹€à¸•à¸Šà¸±à¸™\nเวิร์à¸à¸ªà¹€à¸•à¸Šà¸±à¹ˆà¸™\nเวิร์คสเตชัน\nเวิร์คสเตชั่น\nเวิร์ด\nเวิร์ม\nไวà¹à¸¡à¸à¸‹à¹Œ\nสà¸à¸£à¸µà¸™\nสà¹à¸à¸™\nสà¹à¸à¸™à¹€à¸™à¸à¸£à¹Œ\nสà¹à¸•à¹‡à¸\nสนิฟเฟà¸à¸£à¹Œ\nสปายà¹à¸§à¸£à¹Œ\nสเปซ\nสà¹à¸›à¸¡\nสมาร์ท\nสล็à¸à¸•\nเสิร์ช\nโหลด\nà¸à¸à¸™à¹„ลน์\nà¸à¸à¸›à¸•à¸´à¸\nà¸à¸à¸›à¸•à¸´à¸„à¸à¸¥\nà¸à¸à¸›à¸•à¸´à¸„ัล\nà¸à¸à¸Ÿà¹„ลน์\nà¸à¸à¸£à¸²à¹€à¸„ิล\nà¸à¸±à¸žà¹€à¸à¸£à¸”\nà¸à¸±à¸žà¹€à¸”ต\nà¸à¸±à¸žà¹‚หลด\nà¸à¸±à¸›à¹€à¸à¸£à¸”\nà¸à¸±à¸›à¹€à¸”ต\nà¸à¸±à¸›à¹‚หลด\nà¸à¸±à¸¥à¸à¸à¸£à¸´à¸—ึม\nà¸à¸²à¸£à¹Œà¸à¸´à¸§à¹€à¸¡à¸™à¸•à¹Œ\nà¸à¸´à¸™à¹€à¸•à¸à¸£à¹Œà¹€à¸™à¹‡à¸•\nà¸à¸´à¸™à¸—ิเà¸à¸£à¹€à¸•à¸à¸£à¹Œ\nà¸à¸´à¸™à¹€à¸—à¸à¸£à¹Œà¹€à¸™à¹‡à¸•\nà¸à¸´à¸™à¹€à¸—à¸à¸£à¹Œà¹€à¸Ÿà¸‹\nà¸à¸´à¸™à¹€à¸—ล\nà¸à¸´à¸™à¸žà¸¸à¸•\nà¸à¸´à¸™à¸žà¸¸à¸—\nà¸à¸µà¹€à¸¡à¸¥\nà¸à¸µà¹€à¸¡à¸¥à¹Œ\nà¸à¸¹à¸šà¸¸à¸™à¸•à¸¹\nà¸à¸¹à¸šà¸±à¸™à¸•à¸¹\nเà¸à¸™à¸ˆà¸´à¸™\nเà¸à¹‡à¸™à¸ˆà¸´à¸™\nเà¸à¸²à¸•à¹Œà¸žà¸¸à¸•\nเà¸à¸²à¸•à¹Œà¸žà¸¸à¸—\nเà¸à¸²à¸—์พุต\nเà¸à¸²à¸—์พุท\nà¹à¸à¸™à¸°à¸¥à¹‡à¸à¸\nà¹à¸à¸™à¸´à¹€à¸¡à¸Šà¸±à¸™\nà¹à¸à¸™à¸´à¹€à¸¡à¸Šà¸±à¹ˆà¸™\nà¹à¸à¸›à¸žà¸¥à¸´à¹€à¸„ชัน\nà¹à¸à¸›à¸žà¸¥à¸´à¹€à¸„ชั่น\nà¹à¸à¸žà¸žà¸¥à¸´à¹€à¸„ชัน\nà¹à¸à¸žà¸žà¸¥à¸´à¹€à¸„ชั่น\nà¹à¸à¸ªà¹€à¸‹à¸¡à¸šà¸¥à¸µ\nà¹à¸à¸ªà¹€à¸‹à¸¡à¹€à¸šà¸¥à¸à¸£à¹Œ\nโà¸à¹€à¸žà¸™\nไà¸à¸„à¸à¸™\nไà¸à¸‹à¸µ\nไà¸à¸žà¸à¸”\nไà¸à¸žà¹‡à¸à¸”\nไà¸à¹à¸žà¸”\nไà¸à¹‚ฟน\nฮับ\nฮาร์ดดิสà¸à¹Œ\nฮาร์ดà¹à¸§à¸£à¹Œ\nà¹à¸®à¸à¹€à¸à¸à¸£à¹Œ\nà¹à¸®à¹‡à¸à¹€à¸à¸à¸£à¹Œ\nà¹à¸®à¸™à¸”์เฮลด์\nโฮสต์\n\nà¸à¸£à¸µà¸\nà¸à¸±à¸“ณาฑ\nà¸à¸±à¸¨à¸¡à¸µà¸£à¸µ\nคันจิ\nคาตาคานะ\nคุชราตี\nคุรุมุขี\nซีริลลิà¸\nซูลู\nเซลติà¸\nเซิร์บ\nตาà¸à¸²à¸¥à¹‡à¸à¸\nเตลุคู\nเติร์à¸\nทราวิฑ\nเบงà¸à¸²à¸¥à¸µ\nปัà¸à¸ˆà¸²à¸šà¸µ\nพินà¸à¸´à¸™\nมลยาฬัม\nมà¸à¸‡à¹‚à¸à¸¥\nมาราà¸à¸µ\nมาเลย์\nเม็à¸à¸‹à¸´à¸à¸±à¸™\nà¹à¸¡à¸™à¸ˆà¸¹\nà¹à¸¡à¸™à¸”าริน\nไมถิลี\nเยà¸à¸£à¸¡à¸±à¸™\nรัสเซียน\nสวาฮิลี\nสวิส\nสินธี\nà¸à¸¹à¸£à¸”ู\nà¸à¸±à¸ªà¸ªà¸¡à¸µ\nà¸à¸²à¸£à¸šà¸´à¸\nà¸à¸´à¸•à¸²à¹€à¸¥à¸µà¸¢à¸™\nà¸à¸¸à¸¢à¸à¸¹à¸£à¹Œ\nà¹à¸à¸Ÿà¸£à¸´à¸à¸±à¸™\nโà¸à¸£à¸´à¸¢à¸²\nไà¸à¸£à¸´à¸Š\nฮันà¸à¸¶à¸¥\nฮินดี\nฮิรางานะ\nฮีบรู\n\nà¸à¸£à¸µà¸™à¸žà¸µà¸‹\nà¸à¸£à¸·à¸à¹€à¸‹à¸°\nà¸à¸§à¸™à¸à¸´à¸¡\nà¸à¸§à¸™à¸à¸¹\nà¸à¸±à¸”ดาฟี\nà¸à¸±à¸¥à¸¢à¸²à¸“วัตร\nà¸à¸±à¸ªà¸ªà¸›à¸°\nà¸à¸²à¸¥à¸´à¹€à¸¥à¹‚à¸\nà¸à¸´à¸™à¹€à¸™à¸ª\nà¸à¸¸à¸¡à¸ à¸à¸£à¸£à¸“\nà¸à¸¹à¹€à¸•à¸™à¹€à¸šà¸´à¸£à¹Œà¸\nเà¸à¸•à¸ªà¹Œ\nเà¸à¸©à¸¡à¸“ี\nโà¸à¸“ฑัà¸à¸à¸°\nขงเบ้ง\nคริสโตเฟà¸à¸£à¹Œ\nคà¸à¸‡à¸„à¸à¸£à¹Œà¸”\nคà¸à¸¥à¹€à¸à¸•\nคานธี\nคาเบรียล\nคาร์ฟูร์\nคาร์สัน\nคาราบาว\nคาสิโà¸\nคิริน\nคุนลุ้น\nคูโบต้า\nเครมลิน\nà¹à¸„ทรีนา\nโคตมะ\nโคตมี\nโคลัมบัส\nไคฟง\nไครสเลà¸à¸£à¹Œ\nง้à¸à¹„บ๊\nจตุพร\nจ็à¸à¸šà¸ªà¹Œ\nจà¸à¸«à¹Œà¸™\nจิ้น\nจิม\nจิ๋ม\nจิว\nจุฬาภรณ์\nจุฬาลงà¸à¸£à¸“์\nเจมส์\nà¹à¸ˆà¹‡à¸à¸ªà¸±à¸™\nโจเซฟ\nโจว\nชมัยมรุเชà¸\nชมัยมรุเชษà¸à¹Œ\nชเวดาà¸à¸à¸‡\nชาร์ลส์\nชินราช\nชินวัตร\nชุนชิว\nเช็ง\nเชตวัน\nเชฟรà¸à¸™\nเชฟโรเลต\nเชลซี\nไชยานุชิต\nซ่ง\nซังฮี้\nซัดดัม\nซันซิล\nซัมซุง\nซัวเจ๋ง\nซินหัว\nซีซาร์\nซีà¹à¸žà¸„\nซูซาน\nซูซูà¸à¸´\nซูบารุ\nเซ็นทารา\nเซเวน\nเซเว่น\nโซฟิเทล\nโซยุซ\nโซยูซ\nณัà¸à¸§à¸¸à¸’ิ\nดาร์ลี่\nดาวโจนส์\nดิสนีย์\nดีà¹à¸—ค\nดูปà¸à¸‡à¸—์\nเดโมà¹à¸„รต\nเดลล์\nเดลินิวส์\nเดวิด\nà¹à¸”วู\nโดนัลด์\nโดราเà¸à¸¡à¸à¸™\nโดเรมà¸à¸™\nต๋à¸à¸‡\nตั๊à¸à¸¡à¹‰à¸\nตาà¸à¸ªà¸´à¸™\nตาเมืà¸à¸™\nตาลีบัน\nตูน\nเตมีย์\nโต๋\nโตชิบา\nโตโยต้า\nถังซัมจั๋ง\nถังซำจั๋ง\nทรพา\nทราเวล\nทรูมูฟ\nทีปังà¸à¸£\nเทปโà¸\nเทพรัตน\nเทวทัต\nเทสโà¸à¹‰\nโทมัส\nไททานิà¸\nไททานิค\nไทยรัà¸\nธีà¸à¸à¸ª\nนครินทรา\nนโปเลียน\nนพดล\nนราดูร\nนเรนทร\nนà¸à¸ªà¸•à¸£à¸²à¸”ามุส\nนาซา\nนาซ่า\nนาซี\nนาโต\nนาโต้\nนาลà¹à¸\nนิคà¸à¸™\nนิโคลัส\nนิด้า\nนินเทนโด\nนิปปà¸à¸™\nนิวตัน\nนิสสัน\nเนคเทค\nเนชั่น\nเนชันà¹à¸™à¸¥\nเนชั่นà¹à¸™à¸¥\nเนวิน\nเนสเล่\nเนสาด\nà¹à¸™à¸—\nà¹à¸™à¸ªà¹à¸”ค\nโนเà¸à¸µà¸¢\nโนเบล\nโนเวลล์\nโนโวเทล\nไนเม็à¸à¸‹à¹Œ\nบรà¸à¸”เวย์\nบรัดเลย์\nบรู๊ซ\nบัลเมà¸à¸£à¹Œ\nบารัà¸\nบารัค\nบู๊ตึ๊ง\nเบà¸à¸à¸²à¸¢\nเบนซ์\nเบ็นซ์\nเบนจามิน\nโบตัน\nไบโà¸à¹€à¸—ค\nประชาธิปัตย์\nปวีณา\nปà¸à¹€à¸•à¹‡à¸à¸•à¸¶à¹Šà¸‡\nปà¸à¹€à¸•à¹Šà¸à¸•à¸¶à¹Šà¸‡\nป่à¸à¹€à¸•à¹‡à¸à¸•à¸¶à¹Šà¸‡\nปัตตะโชติ\nปารุสà¸à¹Œ\nปีเตà¸à¸£à¹Œ\nปูติน\nเป๊ปซี่\nเป้ย\nเปà¸à¸£à¹Œà¹‚ยต์\nเปาบุ้นจิ้น\nโปเà¸à¸¡à¸à¸™\nโป๊ยà¸à¹ˆà¸²à¸¢\nพรหมทัต\nพลาโต\nพà¸à¸¥à¸¥à¹ˆà¸²\nพานาโซนิค\nพานาโซนิà¸\nพิทยานุà¸à¸¹à¸¥\nพิมพิสาร\nเพนà¹à¸—à¸à¸‹à¹Œ\nเพลโต\nไพโà¸à¹€à¸™à¸µà¸¢à¸£à¹Œ\nฟรà¸à¸¢à¸”์\nฟรังซิส\nฟรานซิส\nฟลà¸à¹€à¸£à¸™à¸‹à¹Œ\nฟà¸à¸£à¹Œà¸”\nฟิลิปส์\nฟูจิ\nà¹à¸Ÿà¸‹à¹ˆà¸²\nโฟร์โมสต์\nภูมิพล\nภูริทัต\nมงฟà¸à¸£à¹Œà¸•\nมณโฑ\nมติชน\nมหิตลาธิเบศร\nมโหสถ\nมัจฉานุ\nมาร์à¸à¸²à¹€à¸£à¹‡à¸•\nมาร์ติน\nมาสด้า\nมิตซูบิชิ\nมิราเคิล\nมุสโสลินี\nเม้ง\nเมจิ\nเมà¸à¸£à¹Œà¸‹à¸µà¹€à¸”ส\nเมà¸à¸£à¹Œà¹€à¸‹à¹€à¸”ส\nà¹à¸¡à¸à¸‹à¹Œà¹€à¸§à¸¥à¸¥à¹Œ\nà¹à¸¡à¸à¹„ซไซ\nà¹à¸¡à¸„à¸à¸´à¸™à¸—à¸à¸Š\nà¹à¸¡à¸Šà¸µà¸™à¹€à¸™à¸à¸£à¸µà¹ˆ\nโมคคัลลานะ\nโมโตโรลา\nโมโตโรล่า\nโมเนีย\nไมเคิล\nไมยราพณ์\nยโสธรา\nยะโฮวา\nยะโฮวาห์\nยามาฮ่า\nยาเวห์\nยาฮู\nยูนิเซฟ\nยูเนสโà¸\nยูไล\nเยโฮวาห์\nรà¸à¸¢à¹€à¸•à¸à¸£à¹Œ\nรà¸à¸¢à¸±à¸¥\nรัชดา\nรัสปูติน\nราฟาเà¸à¸¥\nรามาวตาร\nราเมศวร\nราหุล\nริชาร์ด\nรีพับลิà¸à¸±à¸™\nรูนีย์\nเรนโบว์\nà¹à¸£à¸¡à¹‚บ้\nโรตารี\nโรนัลโด\nโรนัลโด้\nโรบินสัน\nโรเบิร์ต\nล็à¸à¸à¸‹à¹€à¸¥à¹ˆà¸¢à¹Œ\nลิงคà¸à¸¥à¹Œà¸™\nลิจฉวี\nลิไท\nลิไทย\nลินคà¸à¸¥à¹Œà¸™\nลิเวà¸à¸£à¹Œà¸žà¸¹à¸¥\nเลโนโว\nเลียดà¸à¹Šà¸\nโลตัส\nวชิราลงà¸à¸£à¸“์\nวลาดิเมียร์\nวà¸à¸¥à¸¥à¹Œà¸ªà¸•à¸£à¸µà¸—\nวาเลนไทน์\nวิà¸à¸•à¸à¹€à¸£à¸µà¸¢\nวิทยานุสรณ์\nวิทยายน\nวิมเบิลดัน\nวิลเลียม\nวีระ\nวุฒิชัย\nเวียดà¸à¸‡\nไวตามิลค์\nศà¸à¸¸à¸™à¸•à¸¥à¸²\nศรีวิชัย\nศิริพงษ์\nศิริราช\nศุภชลาศัย\nสดà¸à¸à¹Šà¸à¸à¸˜à¸¡\nสดายุ\nสตาลิน\nสตีฟ\nสà¹à¸•à¸™à¸Ÿà¸à¸£à¹Œà¸”\nสวรินทิรา\nสังà¸à¸±à¸ˆà¸ˆà¸²à¸¢à¸™à¹Œ\nสาทิตย์\nสารีบุตร\nสิริà¸à¸´à¸•à¸´à¹Œ\nสิรินธร\nสิหิงค์\nสีวลี\nสีหนุ\nสีหมุนี\nสีหโมนี\nสุครีพ\nสุทโธทนะ\nสุเทพ\nสุนทราภรณ์\nสุนีย์\nสุรนารี\nสุรยุทธ์\nสุริยาสน์\nเส้าหลิน\nโสà¸à¸£à¸²à¸•à¸µà¸ª\nโสภิต\nหนุมาน\nหลินฮุ่ย\nหลุยส์\nเห้งเจีย\nไหหม่า\nà¸à¸‡à¸„ต\nà¸à¸‡à¸„ุลิมาล\nà¸à¸Šà¸²à¸•à¸¨à¸±à¸•à¸£à¸¹\nà¸à¸”ุลยเดช\nà¸à¸žà¸à¸¥à¹‚ล\nà¸à¸£à¸´à¸ªà¹‚ตเติล\nà¸à¸£à¸´à¸ªà¸¡à¸±à¸™à¸•à¹Œ\nà¸à¸¥à¸´à¸‹à¸²à¹€à¸šà¸˜\nà¸à¹‹à¸à¸¡\nà¸à¸à¸£à¹Œà¸„ิด\nà¸à¸à¸ªà¸à¸²à¸£à¹Œ\nà¸à¸°à¸žà¸à¸¥à¹‚ล\nà¸à¸±à¸šà¸£à¸²à¸®à¸±à¸¡\nà¸à¸±à¹‰à¸¡\nà¸à¸±à¸¥à¸à¸à¸à¸´à¸”ะห์\nà¸à¸±à¸¥à¸„าเทล\nà¸à¸±à¸¥à¸ˆà¸²à¸‹à¸µà¸£à¸²à¸«à¹Œ\nà¸à¸±à¸¥à¹€à¸Ÿà¸£à¸”\nà¸à¸±à¸¥à¹€à¸¥à¸²à¸°à¸«à¹Œ\nà¸à¸±à¸ªà¸‹à¸¸à¸ª\nà¸à¸±à¸ªà¸ªà¸Šà¸´\nà¸à¸±à¸ªà¸ªà¸±à¸¡à¸Šà¸±à¸\nà¸à¸²à¹€à¸‹à¸¡\nà¸à¸²à¹€à¸‹à¹‡à¸¡\nà¸à¸²à¹€à¸‹à¸µà¸¢à¸™\nà¸à¸²à¸Ÿà¸•à¹‰à¸²\nà¸à¸²à¸£à¹Œà¹€à¸‹à¸™à¸à¸¥\nà¸à¸´à¸™à¸—รชิต\nà¸à¸´à¸™à¸—ราทิตย์\nà¸à¸µà¸‹à¸¹à¸‹à¸¸\nà¸à¸µà¹€à¸¥à¸Ÿà¹€à¸§à¸™\nà¸à¸µà¹€à¸¥à¸Ÿà¹€à¸§à¹ˆà¸™\nà¸à¸¸à¸“รุท\nà¸à¸¸à¸šà¸¥à¸£à¸±à¸•à¸™à¹Œ\nà¸à¸¸à¸šà¸²à¸¥à¸µ\nà¸à¸¸à¹‹à¸¢\nเà¸à¸à¸—ัศน์\nเà¸à¹€à¸‹à¸à¸£à¹Œ\nเà¸à¹‡à¸”เวิร์ด\nเà¸à¸”ิสัน\nเà¸à¹à¸šà¸„\nเà¸à¸¥à¸´à¸‹à¸²à¹€à¸šà¸˜\nเà¸à¸ªà¸žà¸¥à¸²à¸™à¸²à¸”\nเà¸à¸ªà¸žà¸¥à¸²à¸™à¸²à¸£à¹Œà¸”\nà¹à¸à¸„คà¸à¸£à¹Œ\nà¹à¸à¸„คà¸à¸£à¹Œà¸”\nà¹à¸à¸‡à¹€à¸ˆà¸¥à¸´à¸™à¹ˆà¸²\nà¹à¸à¸•à¹à¸¥à¸™à¸•à¸´à¸ª\nà¹à¸à¸™\nà¹à¸à¹‹à¸¡\nà¹à¸à¸¡à¸šà¸²à¸ªà¸‹à¸²à¹€à¸”à¸à¸£à¹Œ\nà¹à¸à¸¡à¸šà¸²à¸ªà¹€à¸”à¸à¸£à¹Œ\nà¹à¸à¸¡à¹€à¸§à¸¢à¹Œ\nà¹à¸à¹‹à¸§\nโà¸à¸”ีสซีย์\nโà¸à¹€à¸”ียน\nโà¸à¸šà¸²à¸¡à¸²\nโà¸à¸£à¸ªà¸²à¸£à¸²à¸¡\nโà¸à¸¥à¸´à¸¡à¹€à¸›à¸µà¸¢\nโà¸à¸à¸´à¸Šà¸´\nไà¸à¸™à¹Œà¸ªà¹„ตน์\nฮà¸à¸™à¸”้า\nฮà¸à¸›à¸à¸´à¸™à¸ªà¹Œ\nฮà¸à¸¥à¸¥à¸µà¸§à¸¹à¸”\nฮà¸à¸¥à¸¥à¸µà¸§à¸¹à¹‰à¸”\nฮานามิ\nฮามาส\nฮิตเลà¸à¸£à¹Œ\nฮิตาชิ\nฮุนเซน\nฮุนเซ็น\nฮุนได\nฮุสเซ็น\nเฮนรี\nเฮนรี่\nเฮเลน\nโฮจิมินห์\nโฮปเวลล์\nโฮเมà¸à¸£à¹Œ\n\nà¸à¸¥à¸µà¹€à¸‹à¸à¸£à¸µà¸™\nà¸à¸³à¸—à¸à¸™\nà¹à¸à¸™à¸µà¸¡à¸µà¸”\nครà¸à¸ª\nคริสตัล\nคลà¸à¹‚รพลาสต์\nคลà¸à¹„รด์\nควà¸à¸™à¸•à¸±à¸¡\nคà¸à¸™à¸”ัà¸à¹€à¸•à¸à¸£à¹Œ\nคà¸à¸›à¹€à¸›à¸à¸£à¹Œ\nคà¸à¸¥à¸¥à¸²à¹€à¸ˆà¸™\nคà¸à¹€à¸¥à¸ªà¹€à¸•à¸à¸£à¸à¸¥\nคà¸à¸ªà¸¡à¸´à¸\nคูลà¸à¸¡à¸šà¹Œ\nเคà¸à¸£à¸²à¸•à¸´à¸™\nà¹à¸„โรทีน\nà¹à¸„สสินี\nโครมาโทà¸à¸£à¸²à¸Ÿà¸µ\nไคโตซาน\nจีโนม\nจุลชีววิทยา\nชิคุนà¸à¸¸à¸™à¸¢à¸²\nซัลฟิวริà¸\nซัลเฟต\nซัลไฟด์\nซิงค์\nซิริà¸à¸¸à¸ª\nซิลิà¸à¸²\nซิลิเà¸à¸•\nซิลิโคน\nซีเทน\nซีเวิร์ต\nเซ็à¸à¹€à¸•à¸à¸£à¹Œ\nเซ็à¸à¹€à¸¡à¸™à¸•à¹Œ\nเซมิ\nโซนาร์\nไซบà¸à¸£à¹Œà¸\nดà¸à¸›à¹€à¸›à¸¥à¸à¸£à¹Œ\nดà¸à¸›à¹€à¸žà¸¥à¸à¸£à¹Œ\nไดนามิà¸\nไดนามิà¸à¸ªà¹Œ\nไดนามิค\nไดนามิคส์\nไดà¸à¸à¸à¹„ซด์\nทรานส์\nทามิฟลู\nเทฟลà¸à¸™\nเทสโทสเตà¸à¹‚รน\nเทà¸à¸£à¹Œà¹‚ม\nà¹à¸—นนิน\nไททัน\nไทฟà¸à¸¢à¸”์\nไทรà¸à¸¢à¸”์\nธาลัสซีเมีย\nเนà¸à¸²à¸•à¸µà¸Ÿ\nโนวา\nบà¸à¹à¸£à¸à¸‹à¹Œ\nโบทà¸à¸à¸‹à¹Œ\nโบท็à¸à¸à¸‹à¹Œ\nไบโà¸à¸•à¸´à¸™\nปà¸à¸´à¸¢à¸²à¸™à¸¸à¸žà¸±à¸™à¸˜à¹Œ\nโปรเจสเตà¸à¹‚รน\nพà¸à¸¥à¸´à¹€à¸¡à¸à¸£à¹Œ\nพันธุศาสตร์\nพัลซาร์\nพาร์à¸à¸´à¸™à¸ªà¸±à¸™\nพาราเซตามà¸à¸¥\nพาราโบลา\nเพà¸à¸£à¹Œà¸à¸à¸à¹„ซด์\nโพรเจสเทà¸à¹‚รน\nโพลาไรซ์\nโพลิเมà¸à¸£à¹Œ\nโพลีเà¸à¸—ิลีน\nไพรเมต\nฟลาโวนà¸à¸¢à¸”์\nฟลูà¸à¸à¹€à¸£à¸ªà¹€à¸‹à¸™à¸‹à¹Œ\nฟลูà¸à¸à¹„รด์\nฟà¸à¸ªà¸‹à¸´à¸¥\nฟิชชัน\nฟิวชัน\nฟีโรโมน\nไฟเบà¸à¸£à¹Œ\nมà¸à¸™à¸à¸à¹„ซด์\nมิราจ\nเมตริà¸à¸‹à¹Œ\nเมทริà¸à¸‹à¹Œ\nเมลานิน\nเมลามีน\nโมเมนตัม\nไมโตคà¸à¸™à¹€à¸”รีย\nไมโทคà¸à¸™à¹€à¸”รีย\nยีสต์\nยูริà¸\nยูเรีย\nรูมาตà¸à¸¢à¸”์\nวีà¸à¹‰à¸²\nเวà¸à¹€à¸•à¸à¸£à¹Œ\nเวà¸à¹‰à¸²\nเวสิเคิล\nโวลต์\nสเà¸à¸¥\nสเà¸à¸¥à¸²à¸£à¹Œ\nสเต็ม\nสเตียรà¸à¸¢à¸”์\nสปีชีส์\nสเปิร์ม\nสัมพัทธภาพ\nสุริยจัà¸à¸£à¸§à¸²à¸¥\nà¸à¸à¸à¹€à¸—น\nà¸à¸à¹‚รรา\nà¸à¸à¹‚รร่า\nà¸à¸°à¸„ริลิà¸\nà¸à¸°à¸„รีลิà¸\nà¸à¸°à¸‹à¸µà¸•à¸´à¸\nà¸à¸°à¸‹à¸µà¹‚ตน\nà¸à¸°à¸¡à¸´à¹‚น\nà¸à¸°à¸¥à¸¹à¸¡à¸´à¸™à¸²\nà¸à¸±à¸™à¹‚ดรเมดา\nà¸à¸±à¸¥à¸„าไลน์\nà¸à¸±à¸¥à¸•à¸£à¸²à¸‹à¸²à¸§à¸”์\nà¸à¸±à¸¥à¸•à¸£à¸²à¸‹à¸²à¸§à¸™à¸”์\nà¸à¸±à¸¥à¸¥à¸à¸¢à¸”์\nà¸à¸´à¸™à¸—ิà¸à¸£à¸±à¸¥\nà¸à¸´à¸™à¸—ิเà¸à¸£à¸•\nà¸à¸µà¹‚บลา\nà¸à¸µà¹‚บล่า\nเà¸à¹‡à¸à¸‹à¹Œà¹‚พเนนเชียล\nเà¸à¸—านà¸à¸¥\nเà¸à¸—ิลีน\nเà¸à¸™à¹‚ทรปี\nเà¸à¸ªà¹€à¸•à¸à¸£à¹Œ\nเà¸à¸ªà¹‚ตรเจน\nเà¸à¸ªà¹‚ทรเจน\nà¹à¸à¸™à¸”รà¸à¸¢à¸”์\nà¹à¸à¸™à¹à¸—ร็à¸à¸‹à¹Œ\nà¹à¸à¸¡à¸žà¸¥à¸´à¸ˆà¸¹à¸”\nà¹à¸à¸¡à¹‚มเนียม\nà¹à¸à¸¥à¸à¸à¸®à¸à¸¥à¸´à¸‹à¸¶à¸¡\nà¹à¸à¸ªà¸žà¸²à¸£à¹Œà¹à¸•à¸¡\nโà¸à¹€à¸‹à¸¥à¸—ามิเวียร์\nฮับเบิล\nฮิวมัส\nไฮดรà¸à¸à¹„ซด์\nไฮดรà¸à¸¥à¸´à¸\nไฮโดรลิà¸\nไฮเพà¸à¸£à¹Œà¹‚บลา\n\nà¸à¸‡à¹€à¸•à¹‡à¸\nà¸à¸Žà¸¸à¸¡à¸žà¸µ\nà¸à¸\nà¸à¸à¸«à¸¡à¸²à¸¢\nà¸à¸šà¸Ž\nà¸à¸£à¸²à¹„ฟต์\nà¸à¹Šà¸à¸›à¸›à¸µà¹‰\nà¸à¸°à¸—ะ\nà¸à¸±à¸‡à¸§à¸²à¸¥\nà¸à¸¸à¸Žà¸à¸±à¸‡\nà¸à¸¸à¸à¸¸à¸¡à¸žà¸µ\nฃวด\nคฑา\nคลินิค\nคลีนิà¸\nคลีนิค\nคาทà¸à¸¥à¸´à¸„\nคึ่นฉ่าย\nà¹à¸„ตตาล็à¸à¸\nโควต้า\nฅน\nจุมพฎ\nช็à¸à¸„โà¸à¹à¸¥à¸•\nà¹à¸‹à¹ˆà¸”\nดัทช์\nทนง\nทรมาณ\nทราà¸\nทะà¹à¸¢à¸‡\nทิà¸à¸à¸´\nบล็à¸à¸„\nบ๊à¸à¸‡à¹à¸šà¹Šà¸§\nบัลเล่ต์\nเบรค\nà¹à¸šà¸‡à¸„์\nปราà¸à¸Ž\nปัคคหะ\nปาà¸à¸´à¹‚มà¸à¸‚์\nปิติ\nปิรามิด\nโปรเตสà¹à¸•à¸™à¸—์\nพนิช\nพยัà¸à¹€à¸žà¸¢à¸´à¸”\nพริ้ว\nพลูโตเนียม\nพาà¸à¸©à¹Œ\nเฟิร์น\nยาà¸à¸µà¹‰\nเยภุยยสิà¸à¸²\nรุสเซีย\nฤาษี\nล็à¸à¸„\nล็à¸à¸„เà¸à¸à¸£à¹Œ\nวันทยาหัตถ์\nวานิช\nวิà¸à¸à¸²à¸™\nวิศิษà¸à¹Œ\nศรีษะ\nสเปà¸à¹‚ทรสโคป\nสฤษฎ์\nสลิ่ม\nสัตตสดà¸\nสาราณียาà¸à¸£\nสุà¸à¸µà¹‰\nสุà¸à¸µà¹‰à¸¢à¸²à¸à¸µà¹‰\nสูà¸à¸à¸²à¸à¸²à¸¨\nหยà¸à¸¡à¹à¸«à¸¢à¸¡\nหยà¸à¸¢\nหล่ะ\nà¸à¸°à¸”รีนาลีน\nà¸à¸°à¸«à¸¥à¸±à¹ˆà¸¢\nà¸à¸±à¸•à¸„ัต\nà¸à¸±à¸Ÿà¸£à¸´à¸à¸²\nà¸à¸²à¸™à¸´à¸ªà¸‡à¸„์\nà¸à¸²à¸Ÿà¸£à¸´à¸à¸²\nà¸à¸´à¸£à¸´à¸¢à¸²à¸šà¸—\nà¸à¸´à¹€à¸¥à¸„โทรนิคส์\nà¸à¸µà¸£à¸¸à¸‡à¸•à¸¸à¸‡à¸™à¸±à¸‡\nà¸à¸¸à¸•à¸£à¸²à¸¢à¸±à¸™\nà¸à¸¸à¸¥à¸•à¸£à¸²\nà¸à¸¸à¸¥à¸•à¸£à¹‰à¸²\nโà¸à¸à¸²à¸¨\n\nà¸à¸à¸«à¸¹\nà¸à¸‡à¸à¸²à¸£\nà¸à¸‡à¸ˆà¸±à¸à¸£\nà¸à¸Žà¹€à¸à¸“ฑ์\nà¸à¸Žà¸šà¸±à¸•à¸£\nà¸à¸Žà¸«à¸¡à¸²à¸¢\nà¸à¸Žà¸«à¸¡à¸¹à¹ˆ\nà¸à¸”ขี่\nà¸à¸”ดัน\nà¸à¹‰à¸™à¸à¸š\nà¸à¹‰à¸™à¸šà¸¶à¹‰à¸‡\nà¸à¹‰à¸™à¸›à¸¥à¹ˆà¸à¸‡\nà¸à¸™à¸´à¸©à¸à¸ คินี\nà¸à¸™à¸´à¸©à¸à¸ าดา\nà¸à¸£à¸‡à¹€à¸¥à¹‡à¸š\nà¸à¸£à¸¡à¸à¸²à¸£\nà¸à¸£à¸¡à¸—่า\nà¸à¸£à¸¡à¸˜à¸£à¸£à¸¡à¹Œ\nà¸à¸£à¸¡à¸™à¸²\nà¸à¸£à¸¡à¸§à¸±à¸‡\nà¸à¸£à¸£à¸¡à¸à¸£\nà¸à¸£à¸£à¸¡à¸à¸²à¸£\nà¸à¸£à¸£à¸¡à¸à¸²à¸™\nà¸à¸£à¸£à¸¡à¸šà¸–\nà¸à¸£à¸£à¸¡à¸žà¸±à¸™à¸˜à¸¸à¹Œ\nà¸à¸£à¸£à¸¡à¸§à¸´à¸˜à¸µ\nà¸à¸£à¸£à¸¡à¸ªà¸´à¸—ธิ์\nà¸à¸£à¸°à¸ˆà¸à¹€à¸‡à¸²\nà¸à¸£à¸°à¸ˆà¸à¸•à¸²\nà¸à¸£à¸°à¸ˆà¸à¸™à¸¹à¸™\nà¸à¸£à¸°à¸ˆà¸à¹€à¸§à¹‰à¸²\nà¸à¸£à¸°à¸ˆà¸à¸à¸Šà¸§à¸²\nà¸à¸£à¸°à¸ˆà¸à¸à¹€à¸—ศ\nà¸à¸£à¸°à¸ˆà¹‰à¸à¸¢à¸£à¹ˆà¸à¸¢\nà¸à¸£à¸°à¸ˆà¸±à¸šà¸šà¸\nà¸à¸£à¸°à¸ˆà¸±à¸šà¸›à¸´à¹‰à¸‡\nà¸à¸£à¸°à¸ˆà¸±à¸šà¸›à¸µà¹ˆ\nà¸à¸£à¸°à¹‚ชà¸à¹‚ฮà¸à¸®à¸²à¸\nà¸à¸£à¸°à¸”านดำ\nà¸à¸£à¸°à¸”านหà¸\nà¸à¸£à¸°à¸”าษà¹à¸à¹‰à¸§\nà¸à¸£à¸°à¸”าษไข\nà¸à¸£à¸°à¸”าษทราย\nà¸à¸£à¸°à¸”าษสา\nà¸à¸£à¸°à¸”ูà¸à¸‡à¸¹\nà¸à¸£à¸°à¸—าชาย\nà¸à¸£à¸°à¹€à¸—่เร่\nà¸à¸£à¸°à¸šà¸§à¸™à¸à¸²à¸£\nà¸à¸£à¸°à¸šà¸à¸‡à¹€à¸žà¸Šà¸£\nà¸à¸£à¸°à¸œà¸µà¸à¸£à¸´à¹‰à¸™\nà¸à¸£à¸°à¸¢à¸²à¸—ิพย์\nà¸à¸£à¸°à¸¢à¸²à¸ªà¸²à¸£à¸—\nà¸à¸£à¸°à¸¢à¸²à¸«à¸²à¸£\nà¸à¸£à¸°à¸ªà¸à¸šà¸—ราย\nà¸à¸£à¸°à¸ªà¸¸à¸™à¸›à¸·à¸™\nà¸à¸£à¸°à¹à¸ªà¸ˆà¸´à¸•\nà¸à¸£à¸°à¹à¸ªà¸™à¹‰à¸³\nà¸à¸£à¸°à¹à¸ªà¸¥à¸¡\nà¸à¸£à¸±à¸šà¸„ู่\nà¸à¸£à¸±à¸šà¸žà¸§à¸‡\nà¸à¸£à¸±à¸šà¹€à¸ªà¸ า\nà¸à¸£à¸²à¸”เà¸à¸£à¸µà¹‰à¸¢à¸§\nà¸à¸£à¸²à¸§à¸£à¸¹à¸”\nà¸à¸£à¸´à¹ˆà¸‡à¹€à¸à¸£à¸‡\nà¸à¸£à¸µà¸‘าสถาน\nà¸à¸£à¸µà¸”à¸à¸£à¸²à¸¢\nà¸à¸£à¸µà¹Šà¸”à¸à¸£à¹Šà¸²à¸”\nà¸à¸¥à¹„à¸\nà¸à¸¥à¸šà¸—\nà¸à¸¥à¹€à¸¡à¹‡à¸”\nà¸à¸¥à¸¢à¸¸à¸—ธ์\nà¸à¸¥à¸§à¸´à¸˜à¸µ\nà¸à¸¥à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nà¸à¸¥à¸à¸±à¸à¸©à¸£\nà¸à¸¥à¸šà¹€à¸à¸¥à¸·à¹ˆà¸à¸™\nà¸à¸¥à¸¡à¸à¸¥à¹ˆà¸à¸¡\nà¸à¸¥à¸¡à¸à¸¥à¸·à¸™\nà¸à¸¥à¸¡à¹€à¸à¸¥à¸µà¸¢à¸§\nà¸à¸¥à¹‰à¸§à¸¢à¹à¸‚à¸\nà¸à¸¥à¹‰à¸§à¸¢à¹„ม้\nà¸à¸¥à¹ˆà¸à¸‡à¹€à¸ªà¸µà¸¢à¸‡\nà¸à¸¥à¹ˆà¸à¸¡à¹€à¸à¸¥à¸²\nà¸à¸¥à¹ˆà¸à¸¡à¹€à¸à¸¥à¸µà¹‰à¸¢à¸‡\nà¸à¸¥à¸±à¸”à¸à¸¥à¸¸à¹‰à¸¡\nà¸à¸¥à¸±à¸”มัน\nà¸à¸¥à¸±à¹ˆà¸™à¸à¸£à¸à¸‡\nà¸à¸¥à¸±à¹ˆà¸™à¹à¸à¸¥à¹‰à¸‡\nà¸à¸¥à¸±à¸šà¸à¸¥à¸à¸\nà¸à¸¥à¸²à¸‡à¸„น\nà¸à¸¥à¸²à¸‡à¸„ัน\nà¸à¸¥à¸²à¸‡à¸„่ำ\nà¸à¸¥à¸²à¸‡à¸„ืน\nà¸à¸¥à¸²à¸‡à¹à¸ˆà¹‰à¸‡\nà¸à¸¥à¸²à¸‡à¹à¸›à¸¥à¸‡\nà¸à¸¥à¸²à¸‡à¸§à¸±à¸™\nà¸à¸¥à¸²à¸”เà¸à¸¥à¸·à¹ˆà¸à¸™\nà¸à¸¥à¹ˆà¸²à¸§à¸‚วัà¸\nà¸à¸¥à¹ˆà¸²à¸§à¹‚ทษ\nà¸à¸¥à¹ˆà¸²à¸§à¸«à¸²\nà¸à¸¥à¹‰à¸³à¸à¸£à¸²à¸¢\nà¸à¸¥à¹‰à¸³à¸à¸¥à¸·à¸™\nà¸à¸¥à¸´à¹‰à¸‡à¸à¸¥à¸à¸\nà¸à¸¥à¸´à¹‰à¸‡à¹€à¸à¸¥à¸·à¸à¸\nà¸à¸¥à¸´à¹ˆà¸™à¸à¸²à¸¢\nà¸à¸¥à¸µà¸¢à¸¸à¸„\nà¸à¸§à¸”ขัน\nà¸à¸§à¸±à¸”à¹à¸à¸§à¹ˆà¸‡\nà¸à¸§à¸±à¸”ไà¸à¸§\nà¸à¸§à¸µà¸™à¸´à¸žà¸™à¸˜à¹Œ\nà¸à¹ˆà¸à¸à¸§à¸™\nà¸à¹ˆà¸à¸à¸²à¸£\nà¸à¹ˆà¸à¸•à¸±à¹‰à¸‡\nà¸à¹ˆà¸à¸ªà¸£à¹‰à¸²à¸‡\nà¸à¹ˆà¸à¸«à¸§à¸à¸”\nà¸à¹‰à¸à¸£à¹ˆà¸à¸à¹‰à¸à¸•à¸´à¸\nà¸à¸à¸‡à¸à¸¥à¸²à¸‡\nà¸à¸à¸‡à¹€à¸à¸´à¸™\nà¸à¸à¸‡à¹‚จร\nà¸à¸à¸‡à¸—ัพ\nà¸à¸à¸‡à¸—ุน\nà¸à¸à¸‡à¸žà¸¥\nà¸à¸à¸‡à¸žà¸±à¸™\nà¸à¸à¸‡à¸Ÿà¸à¸™\nà¸à¸à¸‡à¸£à¹‰à¸à¸¢\nà¸à¸à¸‡à¸«à¸™à¸¸à¸™\nà¸à¸à¸šà¹‚à¸à¸¢\nà¸à¸°à¹€à¸à¸“ฑ์\nà¸à¸°à¸šà¸±à¸‡à¸¥à¸¡\nà¸à¸±à¸à¸à¸±à¸™\nà¸à¸±à¸à¸‚ัง\nà¸à¸±à¸à¸•à¸±à¸§\nà¸à¸±à¸à¸•à¸¸à¸™\nà¸à¸±à¸“ฑ์เทศน์\nà¸à¸±à¸”ฟัน\nà¸à¸±à¸™à¸Šà¸™\nà¸à¸±à¸™à¸—่า\nà¸à¸±à¸™à¸ªà¸²à¸”\nà¸à¸±à¸™à¹€à¸à¸‡\nà¸à¸±à¸šà¹à¸à¸¥à¹‰à¸¡\nà¸à¸±à¸šà¸‚้าว\nà¸à¸±à¸šà¸£à¸°à¹€à¸šà¸´à¸”\nà¸à¸²à¸à¹€à¸žà¸Šà¸£\nà¸à¸²à¸à¸«à¸¡à¸¹\nà¸à¸²à¸Šà¸²à¸”\nà¸à¸²à¸à¸ˆà¸™à¸²à¸ ิเษà¸\nà¸à¹‰à¸²à¸™à¸„à¸\nà¸à¸²à¸à¸²à¸\nà¸à¹‰à¸²à¸¡à¸à¸£à¸²à¸¡\nà¸à¸²à¸¡à¸à¸´à¸ˆ\nà¸à¸²à¸¡à¸„ุณ\nà¸à¸²à¸¡à¹€à¸—พ\nà¸à¸²à¸¡à¹‚รค\nà¸à¹‰à¸²à¸¡à¸›à¸¹\nà¸à¸²à¸¢à¸à¸£à¸£à¸¡\nà¸à¸²à¸¢à¸šà¸£à¸´à¸«à¸²à¸£\nà¸à¸²à¸¢à¸ าพ\nà¸à¸²à¸¢à¸§à¸´à¸ าค\nà¸à¸²à¸¢à¸ªà¸´à¸—ธิ์\nà¸à¹ˆà¸²à¸¢à¸à¸à¸‡\nà¸à¸²à¸£à¸„ลัง\nà¸à¸²à¸£à¹€à¸‡à¸´à¸™\nà¸à¸²à¸£à¸šà¹‰à¸²à¸™\nà¸à¸²à¸£à¹€à¸›à¸£à¸µà¸¢à¸\nà¸à¸²à¸£à¹€à¸¡à¸·à¸à¸‡\nà¸à¸²à¸£à¹€à¸£à¸·à¸à¸™\nà¸à¸²à¸£à¸¥à¸°à¹€à¸¥à¹ˆà¸™\nà¸à¸²à¸¥à¸à¸´à¸£à¸´à¸¢à¸²\nà¸à¸²à¸¥à¹€à¸—ศะ\nà¸à¹‰à¸²à¸§à¸à¹ˆà¸²à¸¢\nà¸à¹‰à¸²à¸§à¸£à¹‰à¸²à¸§\nà¸à¹‰à¸²à¸§à¸«à¸™à¹‰à¸²\nà¸à¸²à¸ªà¸²à¸§à¸žà¸±à¸ªà¸•à¸£à¹Œ\nà¸à¸²à¸¬à¸žà¸¤à¸à¸©à¹Œ\nà¸à¸²à¸¬à¹‚รค\nà¸à¸³à¸›à¸±à¹‰à¸™\nà¸à¸³à¸¡à¸·à¸\nà¸à¸³à¹à¸žà¸‡à¸‚าว\nà¸à¸³à¸¥à¸±à¸‡à¹ƒà¸ˆ\nà¸à¸³à¸¥à¸±à¸‡à¸¡à¹‰à¸²\nà¸à¸µà¹ˆà¸‡à¸à¸³à¹€à¸ à¸\nà¸à¸´à¸ˆà¸à¸£à¸£à¸¡\nà¸à¸´à¸ˆà¸à¸²à¸£\nà¸à¸´à¸ˆà¸§à¸±à¸•à¸£\nà¸à¸´à¸ˆà¸ˆà¸°à¸¥à¸±à¸à¸©à¸“ะ\nà¸à¸´à¸•à¸•à¸´à¸„ุณ\nà¸à¸´à¸•à¸•à¸´à¸¨à¸±à¸žà¸—์\nà¸à¸´à¸™à¸‚าด\nà¸à¸´à¸™à¹ƒà¸ˆ\nà¸à¸´à¸™à¸”à¸à¸‡\nà¸à¸´à¸™à¹‚ต๊ะ\nà¸à¸´à¸™à¹à¸šà¹ˆà¸‡\nà¸à¸´à¸™à¹€à¸›à¸¥à¹ˆà¸²\nà¸à¸´à¸™à¹€à¸¥à¸µà¹‰à¸¢à¸‡\nà¸à¸´à¸™à¹€à¸ªà¹‰à¸™\nà¸à¸´à¸™à¹à¸«à¸™à¸‡\nà¸à¸´à¹‚ลà¸à¸£à¸±à¸¡\nà¸à¸´à¹‚ลเมตร\nà¸à¸´à¹‚ลลิตร\nà¸à¸´à¹‚ลเฮิรตซ์\nà¸à¸µà¸”à¸à¸±à¸™\nà¸à¸µà¸”à¸à¸±à¹‰à¸™\nà¸à¸µà¸”ขวาง\nà¸à¸¶à¸à¸à¹‰à¸à¸‡\nà¸à¸¶à¸à¸à¸±à¸\nà¸à¸¶à¸à¸à¸·à¸\nà¸à¸¶à¹ˆà¸‡à¸à¸¥à¸²à¸‡\nà¸à¸¸à¸à¸à¸±à¸\nà¸à¸¸à¹Šà¸à¸à¸´à¹Šà¸\nà¸à¸¸à¹‰à¸‡à¸à¸à¸¢\nà¸à¸¸à¹‰à¸‡à¸¡à¸±à¸‡à¸à¸£\nà¸à¸¸à¹‰à¸‡à¹à¸«à¹‰à¸‡\nà¸à¸¸à¹‰à¸‡à¹€à¸•à¹‰à¸™\nà¸à¸¸à¹‰à¸‡à¸¢à¸´à¸‡\nà¸à¸¸à¸à¹à¸ˆà¸œà¸µ\nà¸à¸¸à¸à¹à¸ˆà¸¡à¸·à¸\nà¸à¸¸à¸à¹à¸ˆà¹€à¸¥à¸·à¹ˆà¸à¸™\nà¸à¸¸à¸à¹à¸ˆà¹€à¸ªà¸µà¸¢à¸‡\nà¸à¸¸à¸¥à¸˜à¸´à¸”า\nà¸à¸¸à¸¥à¸šà¸¸à¸•à¸£\nà¸à¸¸à¸¥à¸ªà¸•à¸£à¸µ\nà¸à¸¹à¹‰à¸¢à¸·à¸¡\nเà¸à¹‰à¸‡à¸à¹‰à¸²à¸‡\nเà¸à¹‡à¸šà¸à¸§à¸²à¸”\nเà¸à¹‡à¸šà¹€à¸à¸µà¹ˆà¸¢à¸§\nเà¸à¹‡à¸šà¸‡à¸³\nเà¸à¹‡à¸šà¸•à¸\nเà¸à¸£à¸‡à¸à¸¥à¸±à¸§\nเà¸à¸£à¸‡à¹ƒà¸ˆ\nเà¸à¸£à¸‡à¸‚าม\nเà¸à¸£à¸µà¸¢à¸‡à¹„à¸à¸£\nเà¸à¸£à¸µà¸¢à¸¡à¸à¸£à¸¡\nเà¸à¸£à¸µà¹‰à¸¢à¸§à¸à¸£à¸²à¸”\nเà¸à¸¥à¹‡à¸”เลืà¸à¸”\nเà¸à¸¥à¸µà¹‰à¸¢à¸à¸¥à¹ˆà¸à¸¡\nเà¸à¸¥à¸µà¹‰à¸¢à¸‡à¹€à¸à¸¥à¸²\nเà¸à¸¥à¸·à¸à¸à¸à¸¥à¸±à¹‰à¸§\nเà¸à¸¥à¸·à¸à¸à¸à¸¥à¸´à¹‰à¸‡\nเà¸à¸¥à¸·à¹ˆà¸à¸™à¸à¸¥à¹ˆà¸™\nเà¸à¸¥à¸·à¹ˆà¸à¸™à¸à¸¥à¸²à¸”\nเà¸à¸¨à¸˜à¸²à¸•à¸¸\nเà¸à¸©à¸•à¸£à¸à¸£\nเà¸à¸©à¸•à¸£à¸à¸£à¸£à¸¡\nเà¸à¸©à¸•à¸£à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nเà¸à¸©à¸¡à¸ªà¸±à¸™à¸•à¹Œ\nเà¸à¸©à¸µà¸¢à¸£à¸ªà¸¡à¸¸à¸—ร\nเà¸à¹‰à¸à¹€à¸‚ิน\nเà¸à¸²à¸°à¹à¸à¸°\nเà¸à¸µà¹ˆà¸¢à¸‡à¸‡à¸à¸™\nเà¸à¸µà¸¢à¸ˆà¸„ร้าน\nเà¸à¸µà¸¢à¸£à¸•à¸´à¸„ุณ\nเà¸à¸µà¸¢à¸£à¸•à¸´à¸™à¸´à¸¢à¸¡\nเà¸à¸µà¸¢à¸£à¸•à¸´à¸›à¸£à¸°à¸§à¸±à¸•à¸´\nเà¸à¸µà¸¢à¸£à¸•à¸´à¸ ูมิ\nเà¸à¸µà¸¢à¸£à¸•à¸´à¸¢à¸¨\nเà¸à¸µà¸¢à¸£à¸•à¸´à¸¨à¸±à¸à¸”ิ์\nเà¸à¸µà¸¢à¸£à¸•à¸´à¸¡à¸¸à¸‚\nเà¸à¸µà¹ˆà¸¢à¸§à¸‚้à¸à¸‡\nเà¸à¸µà¹ˆà¸¢à¸§à¸”à¸à¸‡\nเà¸à¸µà¹ˆà¸¢à¸§à¸žà¸±à¸™\nเà¸à¸µà¹ˆà¸¢à¸§à¹‚ยง\nเà¸à¸µà¹‰à¸¢à¸§à¸žà¸²à¸™\nเà¸à¸µà¹‰à¸¢à¸§à¸žà¸²à¸£à¸²à¸ªà¸µ\nà¹à¸à¹ˆà¹à¸”ด\nà¹à¸à¹‰à¸‚ัด\nà¹à¸à¹‰à¹„ข\nà¹à¸à¹‰à¸•à¸±à¸§\nà¹à¸à¹‰à¹€à¸œà¹‡à¸”\nà¹à¸à¹‰à¸¥à¸³\nà¹à¸à¸‡à¸„ั่ว\nà¹à¸à¸‡à¸ˆà¸·à¸”\nà¹à¸à¸‡à¸šà¸§à¸”\nà¹à¸à¸‡à¸›à¹ˆà¸²\nà¹à¸à¸‡à¹€à¸œà¹‡à¸”\nà¹à¸à¸‡à¸ªà¹‰à¸¡\nà¹à¸à¹ˆà¸‡à¹à¸¢à¹ˆà¸‡\nà¹à¸à¹ˆà¸™à¹à¸à¹‰à¸§\nà¹à¸à¹ˆà¸™à¸ªà¸²à¸£\nà¹à¸à¹‰à¸§à¸•à¸²\nà¹à¸à¹‰à¸§à¸«à¸¹\nà¹à¸à¸§à¹ˆà¸‡à¸à¸§à¸±à¸”\nà¹à¸à¸§à¹ˆà¸‡à¹„à¸à¸§\nà¹à¸à¸°à¸£à¸à¸¢\nโà¸à¹‰à¹€à¸à¹‹\nโà¸à¸£à¸˜à¹€à¸à¸£à¸µà¹‰à¸¢à¸§\nโà¸à¸£à¸˜à¸‚ึ้ง\nไà¸à¹ˆà¹€à¸‚ี่ย\nไà¸à¹ˆà¸Šà¸™\nไà¸à¹ˆà¸šà¹‰à¸²à¸™\nไà¸à¹ˆà¸›à¹ˆà¸²\nไà¸à¹ˆà¸Ÿà¹‰à¸²\nไà¸à¸¥à¹ˆà¹€à¸à¸¥à¸µà¹ˆà¸¢\nขจัดขจาย\nขนเพชร\nขนสัตว์\nขนหนู\nขนส่ง\nขนมจีน\nขบขัน\nขบวนà¸à¸²à¸£\nข่มขี่\nข่มขู่\nข่มขืน\nข่มเหง\nขมหิน\nขมิ้นชัน\nขมุบขมิบ\nขยะà¹à¸‚ยง\nขยัà¸à¸‚ย่à¸à¸™\nขยัà¸à¸‚ย้à¸à¸™\nขยับขยาย\nขยับเขยื้à¸à¸™\nขวดโหล\nขวยเขิน\nขวัà¸à¹ƒà¸ˆ\nขวัà¸à¸•à¸²\nขวัà¸à¸à¹ˆà¸à¸™\nขวาà¸à¸«à¸™à¸²à¸¡\nขวางโลà¸\nขà¸à¸‡à¹‰à¸²à¸§\nขà¸à¸ªà¸±à¸š\nขà¸à¸‚มา\nขà¸à¸—าน\nขà¸à¹‚ทษ\nขà¸à¸£à¹‰à¸à¸‡\nขà¸à¸à¸ ัย\nข้à¸à¹€à¸‚ียน\nข้à¸à¸„วาม\nข้à¸à¹€à¸—็จจริง\nขà¸à¸‡à¸à¸¥à¸²à¸‡\nขà¸à¸‡à¸‚วัà¸\nขà¸à¸‡à¹à¸‚็ง\nขà¸à¸‡à¸Šà¸³\nขà¸à¸‡à¸¥à¸±à¸š\nขà¸à¸‡à¹€à¸¥à¹ˆà¸™\nขà¸à¸‡à¸§à¹ˆà¸²à¸‡\nขà¸à¸‡à¹€à¸«à¸¥à¸§\nขà¸à¸‡à¹„หล\nขà¸à¸‡à¹„หว้\nข้à¸à¸‡à¹ƒà¸ˆ\nข้à¸à¸‡à¹à¸§à¸°\nขà¸à¸šà¸‚่าย\nขà¸à¸šà¹€à¸‚ต\nขà¸à¸šà¸„ุณ\nขà¸à¸šà¹ƒà¸ˆ\nขà¸à¸šà¸žà¸£à¸°à¸„ุณ\nข้à¸à¸¡à¸¹à¸¥\nข้à¸à¹à¸¡à¹‰\nข้à¸à¸«à¸²\nข้à¸à¸ªà¸±à¸‡à¹€à¸à¸•\nขัดข้à¸à¸‡\nขัดขืน\nขัดเขิน\nขัดจังหวะ\nขัดดà¸à¸\nขัดà¹à¸•à¸°\nขัดยà¸à¸\nขัดà¹à¸¢à¹‰à¸‡\nขัดสมาธิ\nขันหมาà¸\nขันà¸à¸²à¸ªà¸²\nขับขี่\nขับเคี่ยว\nขั้วโลà¸\nขาจร\nขาประจำ\nข้าราชà¸à¸²à¸£\nข้าศึà¸\nข้าหลวง\nขาดà¹à¸„ลน\nขาดใจ\nขาดตà¸à¸™\nขาดตัว\nขาดทุน\nขาดเหลืà¸\nขายหน้า\nข่าวà¸à¸£à¸à¸‡\nข่าวคราว\nข่าวล่า\nข่าวลืà¸\nข่าวสาร\nข้าวเà¸à¸£à¸µà¸¢à¸š\nข้าวà¹à¸à¸‡\nข้าวขà¸à¸‡\nข้าวจี่\nข้าวเจ้า\nข้าวซà¸à¸¢\nข้าวต้ม\nข้าวตà¸à¸\nข้าวตัง\nข้าวà¹à¸•à¸™\nข้าวทิพย์\nข้าวบิณฑ์\nข้าวเปลืà¸à¸\nข้าวโพด\nข้าวฟ่าง\nข้าวเม่า\nข้าวสวย\nข้าวสาร\nข้าวเหนียว\nข้าวหมาà¸\nข้าวหลาม\nขี้เà¸à¸µà¸¢à¸ˆ\nขี้ข้า\nขี้ครà¸à¸\nขี้คร้าน\nขี้คุà¸\nขี้ไคล\nขี้เซา\nขีดขั้น\nขีดคร่à¸à¸¡\nขีดคั่น\nขีดฆ่า\nขี้ตา\nขี้ตืด\nขี้เถ้า\nขี้ทูด\nขี้ปะติ๋ว\nขี้ผึ้ง\nขี้มูà¸\nขี้ยา\nขี้à¹à¸¢\nขี้ริ้ว\nขี้เรื้à¸à¸™\nขี้เล็บ\nขี้หู\nขี้หน้า\nขี้เหนียว\nขี้เหล็à¸\nขี้เหร่\nขึงขัง\nขึงพืด\nขึ้งโà¸à¸£à¸˜\nขึ้นใจ\nขึ้นชื่à¸\nขึ้นมืà¸\nขืนใจ\nขื่นขม\nขุดคุ้ย\nขุนทà¸à¸‡\nขุนนาง\nขุนพล\nขุนศึà¸\nขุนหลวง\nขูดรีด\nเข็มà¸à¸¥à¸±à¸”\nเข็มขัด\nเข้มข้น\nเข้มà¹à¸‚็ง\nเข้มงวด\nเข็มทิศ\nเข็มหมุด\nเข้าขา\nเข้าเค้า\nเข้าใจ\nเข้าชื่à¸\nเข้าตัว\nเข้าถึง\nเข้าทรง\nเข้าท่า\nเข้าที\nเข้าเนื้à¸\nเข้าเล่ม\nเขียวเสวย\nเขียวหวาน\nà¹à¸‚à¸à¹€à¸•à¹‰à¸²\nà¹à¸‚็งà¸à¸£à¹‰à¸²à¸§\nà¹à¸‚็งà¸à¸¥à¹‰à¸²\nà¹à¸‚็งà¹à¸à¸£à¹ˆà¸‡\nà¹à¸‚็งข้à¸\nà¹à¸‚็งขัน\nà¹à¸‚่งขัน\nà¹à¸‚็งใจ\nà¹à¸‚็งตัว\nà¹à¸‚็งเมืà¸à¸‡\nà¹à¸‚็งà¹à¸£à¸‡\nà¹à¸‚วนลà¸à¸¢\nโขà¸à¸ªà¸±à¸š\nโขยà¸à¹€à¸‚ยà¸\nไขข้à¸\nไขควง\nไขมัน\nไข่มุà¸\nไขว่ห้าง\nไขสันหลัง\nไขสืà¸\nไข่เค็ม\nไข่เยี่ยวม้า\nไข่หงส์\nไข่เหี้ย\nคงà¸à¸£à¸°à¸žà¸±à¸™\nคงตัว\nคงทน\nคงที่\nคชลัà¸à¸©à¸“์\nคชสาร\nคชสีห์\nคชราช\nคณิตศาสตร์\nคดเคี้ยว\nคติธรรม\nคติพจน์\nคนà¸à¸¥à¸²à¸‡\nคนไข้\nคนใช้\nคนทรง\nคบไฟ\nคบเพลิง\nคบค้า\nคบคิด\nคบหา\nคมคาย\nครบครัน\nครบถ้วน\nครà¸à¸šà¸„รà¸à¸‡\nครà¸à¸šà¸„ลุม\nครà¸à¸šà¸„รัว\nครà¸à¸šà¸‡à¸³\nครà¸à¸šà¸ˆà¸±à¸à¸£à¸§à¸²à¸¥\nคริสตà¸à¸²à¸¥\nคริสตจัà¸à¸£\nคริสต์มาส\nคริสต์ศตวรรษ\nคริสต์ศัà¸à¸£à¸²à¸Š\nคริสตัง\nคริสเตียน\nครุà¸à¸£à¸£à¸¡\nครุภัณฑ์\nครุศาสตร์\nครุฑพ่าห์\nครุ่นคิด\nคลà¸à¹€à¸„ลีย\nคล่à¸à¸‡à¹à¸„ล่ว\nคล่à¸à¸‡à¸•à¸±à¸§\nคล่à¸à¸‡à¸¡à¸·à¸\nคลั่งไคล้\nคลาคล่ำ\nคลาไคล\nคลาดเคลื่à¸à¸™\nคลาดà¹à¸„ล้ว\nคลี่คลาย\nคลึงเคล้น\nคลึงเคล้า\nคลื่นไส้\nคลื่นเหียน\nคลุà¸à¸„ลี\nคลุà¸à¸„ลาน\nคลุมเครืà¸\nคลุมโปง\nคลุ้มคลั่ง\nควงสว่าน\nควบคุม\nควบคู่\nควบà¹à¸™à¹ˆà¸™\nควันหลง\nความคิด\nความหลัง\nความเห็น\nคà¸à¸«à¸à¸¢\nคà¸à¸«à¹ˆà¸²à¸™\nคà¸à¹à¸«à¹‰à¸‡\nค่à¸à¸™à¸‚à¸à¸”\nค่à¸à¸™à¹à¸„ะ\nค้à¸à¸™à¸„วัà¸\nคั่งค้าง\nคั่งà¹à¸„้น\nคัดค้าน\nคัดง้าง\nคัดท้าย\nคัดเลืà¸à¸\nคันจาม\nคันฉ่à¸à¸‡\nคันฉาย\nคันชัà¸\nคันชั่ง\nคันไถ\nคันนา\nคันเร่ง\nคับขัน\nคับคั่ง\nคับà¹à¸„้น\nคับà¹à¸„บ\nคางทูม\nคางหมู\nค้างคืน\nค้างปี\nคาดคั้น\nคาดเชืà¸à¸\nคาดโทษ\nคาดหมาย\nคานหาม\nคาบเà¸à¸µà¹ˆà¸¢à¸§\nคาบศิลา\nคาบสมุทร\nคำขาด\nคำนำ\nคิดค้น\nคืนดี\nคืนตัว\nคุà¸à¹€à¸‚่า\nคุณค่า\nคุณชาย\nคุณธรรม\nคุณนาย\nคุณภาพ\nคุณลัà¸à¸©à¸“ะ\nคุณวุฒิ\nคุณศัพท์\nคุณสมบัติ\nคุณหà¸à¸´à¸‡\nคุณาà¸à¸£\nคุณูปà¸à¸²à¸£\nคุโณปà¸à¸²à¸£\nคุมเชิง\nคุ้มà¸à¸±à¸™\nคุยเขื่à¸à¸‡\nคุยโต\nคุ้ยเขี่ย\nคุ้มครà¸à¸‡\nคู่à¸à¸£à¸“ี\nคู่à¸à¸±à¸”\nคู่ขา\nคู่à¹à¸‚่ง\nคู่ครà¸à¸‡\nคู่ควร\nคู่คิด\nคู่คี่\nคู่ใจ\nคู่ชีพ\nคู่ชีวิต\nคู่บารมี\nคู่บุà¸\nคู่ปรปัà¸à¸©à¹Œ\nคู่ปรับ\nคู่ผสม\nคู่มืà¸\nคู่รัà¸\nคู่ลำดับ\nคู่สาย\nคู่หมั้น\nคู่หู\nคู่à¸à¸£à¸´\nคู่à¸à¸²à¸†à¸²à¸•\nเคมีภัณฑ์\nเคยตัว\nเคร่งขรึม\nเคร่งครัด\nเคร่งเครียด\nเครดิตฟà¸à¸‡à¸‹à¸´à¹€à¸à¸£à¹Œ\nเครื่à¸à¸‡à¸à¸¥\nเครื่à¸à¸‡à¸à¸±à¸“ฑ์\nเครื่à¸à¸‡à¹à¸à¸‡\nเครื่à¸à¸‡à¹€à¸‚ิน\nเครื่à¸à¸‡à¸„รัว\nเครื่à¸à¸‡à¹€à¸„ียง\nเครื่à¸à¸‡à¹€à¸‡à¸´à¸™\nเครื่à¸à¸‡à¸ˆà¸±à¸à¸£\nเครื่à¸à¸‡à¹€à¸‹à¹ˆà¸™\nเครื่à¸à¸‡à¸”นตรี\nเครื่à¸à¸‡à¸•à¹‰à¸™\nเครื่à¸à¸‡à¸—ุ่นà¹à¸£à¸‡\nเครื่à¸à¸‡à¹€à¸—ศ\nเครื่à¸à¸‡à¹ƒà¸™\nเครื่à¸à¸‡à¸šà¸´à¸™\nเครื่à¸à¸‡à¸šà¸¹à¸Šà¸²\nเครื่à¸à¸‡à¹à¸šà¸š\nเครื่à¸à¸‡à¸›à¸£à¸°à¸”ับ\nเครื่à¸à¸‡à¸›à¸£à¸¸à¸‡\nเครื่à¸à¸‡à¸›à¸£à¸¸à¸‡à¸£à¸ª\nเครื่à¸à¸‡à¸¡à¸·à¸\nเครื่à¸à¸‡à¸¢à¸™à¸•à¹Œ\nเครื่à¸à¸‡à¸£à¹ˆà¸à¸™\nเครื่à¸à¸‡à¸£à¸²à¸‡\nเครื่à¸à¸‡à¹€à¸£à¸·à¸à¸™\nเครื่à¸à¸‡à¸¥à¹ˆà¸²à¸‡\nเครื่à¸à¸‡à¹€à¸¥à¹ˆà¸™\nเครื่à¸à¸‡à¸ªà¸²à¸¢\nเครื่à¸à¸‡à¸ªà¸³à¸à¸²à¸‡\nเครื่à¸à¸‡à¸ªà¸¸à¸à¸³à¸¨à¸ž\nเครื่à¸à¸‡à¸«à¸¡à¸²à¸¢\nเครืà¸à¸£à¸±à¸\nเคลียคลà¸\nเคลื่à¸à¸™à¸—ี่\nเคลื่à¸à¸™à¹„หว\nเคลืà¸à¸šà¹à¸„ลง\nเคลืà¸à¸šà¹à¸à¸‡\nเคลืà¸à¸šà¸Ÿà¸±à¸™\nเคว้งคว้าง\nเคหสถาน\nเค้าโครง\nเคียดà¹à¸„้น\nเคี่ยวเข็à¸\nเคี้ยวเà¸à¸·à¹‰à¸à¸‡\nเคืà¸à¸‡à¸‚ุ่น\nโคนม\nโคบาล\nโคมูตร\nโคมลà¸à¸¢\nโครงà¸à¸²à¸£\nโครงเรื่à¸à¸‡\nโครงงาน\nโครงสร้าง\nโครมคราม\nโคลงเคลง\nฆ้à¸à¸‡à¸à¸£à¸°à¹à¸•\nฆ้à¸à¸‡à¸Šà¸±à¸¢\nฆ้à¸à¸‡à¸§à¸‡\nฆ้à¸à¸‡à¸«à¸¸à¹ˆà¸¢\nฆ้à¸à¸‡à¹€à¸«à¸¡à¹ˆà¸‡\nฆ้à¸à¸‡à¹‚หม่ง\nฆาตà¸à¸£\nฆาตà¸à¸£à¸£à¸¡\nฆานประสาท\nงงงวย\nงงงัน\nงดเว้น\nงบดุล\nงบประมาณ\nงมโข่ง\nงมงาย\nง่วงงุน\nง่วงเหงา\nงà¸à¸«à¸²à¸¢\nง้à¸à¸‡à¸à¸™\nงà¸à¸™à¸‡à¹‰à¸\nงà¸à¸¡à¹à¸‡à¸¡\nงาช้าง\nง่าเงย\nงานà¸à¸²à¸£\nง่ายดาย\nงึมงำ\nเงินเดืà¸à¸™\nเงินตรา\nเงินยวง\nเงียบà¸à¸£à¸´à¸š\nเงียบเชียบ\nเงียบเหงา\nเงื่à¸à¸‡à¸«à¸‡à¸à¸¢\nเงื่à¸à¸™à¹„ข\nเงื่à¸à¸™à¸‡à¸³\nเงื่à¸à¸™à¹€à¸§à¸¥à¸²\nเงื้à¸à¸¡à¸¡à¸·à¸\nà¹à¸‡à¹ˆà¸‡à¸à¸™\nจงใจ\nจงรัà¸\nจดจ่à¸\nจดจำ\nจดหมาย\nจดหมายเหตุ\nจรจัด\nจรรยาบรรณ\nจริงจัง\nจริงใจ\nจà¸à¸¡à¸‚วัà¸\nจà¸à¸¡à¹ƒà¸ˆ\nจà¸à¸¡à¸—ัพ\nจà¸à¸¡à¸›à¸¥à¸§à¸\nจà¸à¸¡à¸žà¸¥\nจ๊ะเà¸à¹‹\nจัà¸à¸ªà¸²à¸™\nจัà¸à¸£à¸žà¸£à¸£à¸”ิ\nจัà¸à¸£à¸ พ\nจัà¸à¸£à¸¢à¸²à¸™\nจัà¸à¸£à¸¢à¸²à¸™à¸¢à¸™à¸•à¹Œ\nจัà¸à¸£à¸£à¸²à¸¨à¸µ\nจัà¸à¸£à¸§à¸£à¸£à¸”ิ\nจัà¸à¸£à¸§à¸£à¸£à¸”ินิยม\nจัà¸à¸£à¸§à¸²à¸¥\nจังหนับ\nจัดà¸à¸²à¸£\nจัดจ้าน\nจัดเจน\nจัดà¹à¸ˆà¸‡\nจัดตั้ง\nจัดสรร\nจับà¸à¸¸à¸¡\nจับจด\nจับเจ่า\nจ่าหน้า\nจาตุทสี\nจาตุมหาราช\nจาตุมหาราชิà¸\nจาตุมหาราชิà¸à¸²\nจาตุรงคสันนิบาต\nจาตุรราชà¸à¸²à¸£\nจานเชิง\nจานบิน\nจานผี\nจานเสียง\nจาบจ้วง\nจำเป็น\nจำพรรษา\nจำวัด\nจ้ำจี้จ้ำไช\nจำเลาะตา\nจิงโจ้น้ำ\nจิตใจ\nจิตตภาวนา\nจิตตัง\nจิตตานุปัสสนา\nจิตนิยม\nจิตบำบัด\nจิตà¹à¸žà¸—ย์\nจิตวิสัย\nจิตรà¸à¸£\nจิตรà¸à¸£à¸£à¸¡\nจิตรลดา\nจิตวิทยา\nจิตเวช\nจิตเวชศาสตร์\nจินตà¸à¸§à¸µ\nจินตนา\nจินตนาà¸à¸²à¸£\nจินตภาพ\nจุฑามณี\nจุฑามาศ\nจุฑารัตน์\nจุนเจืà¸\nจุ้นจ้าน\nจุลชีพ\nจุลชีวัน\nจุลชีวิน\nจุลทรรศน์\nจุลภาค\nจุลวรรค\nจุลศัà¸à¸£à¸²à¸Š\nจุลสาร\nจุลินทรีย์\nจุฬามณี\nจุฬาลัà¸à¸©à¸“์\nเจตคติ\nเจตจำนง\nเจตนารมณ์\nเจตภูต\nเจริà¸à¸žà¸£\nเจ้าà¸à¸£à¸¡\nเจ้าà¸à¸£à¸£à¸¡\nเจ้าขà¸à¸‡\nเจ้าขา\nเจ้าข้า\nเจ้าคณะ\nเจ้าค่ะ\nเจ้าจà¸à¸¡\nเจ้าชู้\nเจ้าตัว\nเจ้าถิ่น\nเจ้าท่า\nเจ้าที่\nเจ้าทุà¸à¸‚์\nเจ้านาย\nเจ้าเนื้à¸\nเจ้าบ้าน\nเจ้าบ่าว\nเจ้าประคุณ\nเจ้าประคู้น\nเจ้าพนัà¸à¸‡à¸²à¸™\nเจ้าพระคุณ\nเจ้าพระยา\nเจ้าพ่à¸\nเจ้าพายุ\nเจ้าฟ้า\nเจ้าภาพ\nเจ้ามืà¸\nเจ้าà¹à¸¡à¹ˆ\nเจ้าเรืà¸à¸™\nเจ้าสังà¸à¸±à¸”\nเจ้าสัว\nเจ้าสาว\nเจ้าหน้าที่\nเจ้าหนี้\nเจ้าà¸à¸²à¸§à¸²à¸ª\nเจาะจง\nเจืà¸à¸ˆà¸²à¸‡\nเจืà¸à¸ˆà¸²à¸™\nเจืà¸à¸›à¸™\nเจื้à¸à¸¢à¹à¸ˆà¹‰à¸§\nà¹à¸ˆà¸à¸ˆà¹ˆà¸²à¸¢\nà¹à¸ˆà¹ˆà¸¡à¹à¸ˆà¹‰à¸‡\nà¹à¸ˆà¹ˆà¸¡à¹ƒà¸ª\nโจงà¸à¸£à¸°à¹€à¸šà¸™\nโจมตี\nโจรà¸à¸£à¸£à¸¡\nโจรสลัด\nใจความ\nใจคà¸\nฉà¸à¸‰à¸§à¸¢\nฉà¸à¸Šà¸´à¸‡\nฉลà¸à¸‡à¹„ด\nฉ้à¸à¸‰à¸¥\nฉัตรมงคล\nฉันทลัà¸à¸©à¸“์\nฉายาลัà¸à¸©à¸“์\nฉิบหาย\nฉุà¸à¹€à¸‰à¸´à¸™\nฉุà¸à¸¥à¸°à¸«à¸¸à¸\nฉุนเฉียว\nฉุปศาสตร์\nเฉไฉ\nเฉยเมย\nเฉาโฉด\nเฉิดฉัน\nเฉิดฉาย\nเฉิดฉิน\nเฉียบขาด\nเฉียบพลัน\nเฉียบà¹à¸«à¸¥à¸¡\nเฉื่à¸à¸¢à¸Šà¸²\nà¹à¸‰à¸°à¹à¸šà¸°\nโฉดเฉา\nโฉมงาม\nโฉมฉาย\nโฉมเฉลา\nโฉมตรู\nโฉมยง\nโฉมศรี\nโฉมหน้า\nชดช้à¸à¸¢\nชดเชย\nชดใช้\nชนบท\nชนินทร์\nชนà¸à¸à¸£à¸£à¸¡\nชนมพรรษา\nชนมายุ\nชมเชย\nชมพูทวีป\nชมพูนท\nชมพูนุท\nชราธรรม\nชราภาพ\nชลจร\nชลธาร\nชลธี\nชลนัยน์\nชลนา\nชลเนตร\nชลประทาน\nชลมารค\nชลาธาร\nชลาลัย\nชลาศัย\nชลาสินธุ์\nชโลทร\nช่วงชิง\nช่วงใช้\nชวนชม\nชวนหัว\nช่วยเหลืà¸\nช่à¸à¸Ÿà¹‰à¸²\nช่à¸à¸¡à¹ˆà¸§à¸‡\nชà¸à¸à¸Šà¹‰à¸³\nช่à¸à¸‡à¹€à¸‚า\nช่à¸à¸‡à¹à¸„บ\nช่à¸à¸‡à¹„ฟ\nช่à¸à¸‡à¸§à¹ˆà¸²à¸‡\nช้à¸à¸‡à¸™à¸²à¸‡\nชà¸à¸šà¸à¸¥\nชà¸à¸šà¹ƒà¸ˆ\nชà¸à¸šà¸˜à¸£à¸£à¸¡\nชà¸à¸šà¸žà¸\nชัà¸à¹‚ครà¸\nชัà¸à¹€à¸‡à¸²\nชัà¸à¸ˆà¸¹à¸‡\nชัà¸à¸Šà¸§à¸™\nชัà¸à¸™à¸³\nชัà¸à¹€à¸™à¸·à¹‰à¸\nชัà¸à¸žà¸£à¸°\nชัà¸à¹€à¸¢à¹ˆà¸\nชัà¸à¹ƒà¸¢\nชั่งใจ\nชังฆวิหาร\nชัดเจน\nชั้นเชิง\nชั่วคน\nชั่วคราว\nชั่วช้า\nชั่วโมง\nชั่วà¹à¸¥à¹ˆà¸™\nชาเย็น\nช้านาน\nช่างเครื่à¸à¸‡\nช่างà¸à¸µà¸¡à¸·à¸\nช่างฟิต\nช่างไฟ\nช้างน้ำ\nช้างเผืà¸à¸\nช้างพลาย\nช้างพัง\nช้างสาร\nช้างสีดà¸\nชาติธรรม\nชาตินิยม\nชาติพันธุ์\nชาติพันธุ์วิทยา\nชาติภูมิ\nชานชาลา\nชายชาตรี\nชายคา\nชายà¸à¸±à¹ˆà¸‡\nชายทะเล\nชาวเล\nชาววัง\nช้ำใจ\nช้ำชà¸à¸\nชิงชัง\nชิงพลบ\nชินชา\nชินบุตร\nชิ้นเà¸à¸\nชิมลาง\nชีเปลืà¸à¸¢\nชี้ขาด\nชี้à¹à¸ˆà¸‡\nชี้นำ\nชี้à¹à¸™à¸°\nชี้ฟ้า\nชีพจร\nชีพิตัà¸à¸©à¸±à¸¢\nชื่นชม\nชื่นบาน\nชื่นมื่น\nชื่à¸à¸¢à¹ˆà¸\nชื่à¸à¸£à¸à¸‡\nชื่à¸à¹€à¸¥à¹ˆà¸™\nชื่à¸à¹€à¸ªà¸µà¸¢à¸‡\nชุà¸à¸Šà¸¸à¸¡\nชุติมา\nชุบตัว\nชุบเลี้ยง\nชุมชน\nชุมทาง\nชุมสาย\nชุ่มใจ\nชุ่มชื่น\nชุ่มชื้น\nชุมนุมชน\nชูชีพ\nชูโรง\nชู้สาว\nเชยชม\nเชลยศัà¸à¸”ิ์\nเชลยศึà¸\nเช่าซื้à¸\nเช้าตรู่\nเช้ามืด\nเชิงà¸à¸£à¸²à¸™\nเชิงà¸à¸¥\nเชิงชั้น\nเชิงชาย\nเชิงซ้à¸à¸™\nเชิงเดียว\nเชิงเดี่ยว\nเชิงตะà¸à¸à¸™\nเชิงเทิน\nเชิงมุม\nเชิดชู\nเชิงà¸à¸£à¸£à¸–\nเชี่ยนหมาà¸\nเชี่ยวชาà¸\nเชื่à¸à¸‡à¸Šà¹‰à¸²\nเชื่à¸à¹ƒà¸ˆ\nเชื่à¸à¸–ืà¸\nเชื่à¸à¸Ÿà¸±à¸‡\nเชื่à¸à¸¡à¸·à¸\nเชื้à¸à¸Šà¸²à¸•à¸´\nเชื้à¸à¹€à¸žà¸¥à¸´à¸‡\nเชื้à¸à¹„ฟ\nเชื้à¸à¹‚รค\nเชื้à¸à¸ªà¸²à¸¢\nเชื้à¸à¹€à¸Šà¸´à¸\nเชื่à¸à¸‡à¸Šà¹‰à¸²\nเชืà¸à¸™à¹à¸Š\nเชื่à¸à¸§à¸±à¸™\nà¹à¸Šà¹ˆà¹€à¸¢à¹‡à¸™\nà¹à¸Šà¹ˆà¸à¸´à¹ˆà¸¡\nà¹à¸Šà¹ˆà¸¡à¸Šà¹‰à¸à¸¢\nà¹à¸Šà¹ˆà¸¡à¸Šà¸·à¹ˆà¸™\nโชà¸à¹‚ชน\nโชติช่วง\nโชติรส\nใช้สà¸à¸¢\nซบเซา\nซมซาน\nซวนเซ\nซà¸à¸à¸‹à¸à¸™\nซà¸à¸à¹à¸‹à¸\nซ่à¸à¸‡à¸ªà¸¸à¸¡\nซ่à¸à¸‡à¹€à¸ªà¸ž\nซ่à¸à¸‡à¹à¸‹à¹ˆà¸‡\nซ่à¸à¸™à¸£à¸¹à¸›\nซ่à¸à¸™à¹€à¸£à¹‰à¸™\nซ่à¸à¸™à¸«à¸²\nซ่à¸à¸™à¸à¸¥à¸´à¹ˆà¸™\nซ่à¸à¸™à¸—ราย\nซ่à¸à¸¡à¹à¸‹à¸¡\nซัà¸à¸„้าน\nซัà¸à¸‹à¹‰à¸à¸¡\nซัà¸à¹„ซ้\nซัà¸à¸Ÿà¸à¸\nซัà¸à¹à¸«à¹‰à¸‡\nซังà¸à¸°à¸•à¸²à¸¢\nซังตาย\nซัดเซ\nซัดทà¸à¸”\nซับซ้à¸à¸™\nซับใน\nซับพระพัà¸à¸•à¸£à¹Œ\nซาà¸à¸¨à¸ž\nซ่านเซ็น\nซ้ำซ้à¸à¸™\nซ้ำซาà¸\nซ้ำเติม\nซ้ำร้าย\nซี่โครง\nซีดเซียว\nซึมà¸à¸°à¸—ืà¸\nซึมซาบ\nซึมเซา\nซึมทราบ\nซึมเศร้า\nซื่à¸à¸•à¸£à¸‡\nซื่à¸à¸ªà¸±à¸•à¸¢à¹Œ\nซื้à¸à¸‚าย\nซุà¸à¸‹à¸™\nซุà¸à¸‹à¹ˆà¸à¸™\nซุบซิบ\nซู่ซ่า\nเซซัง\nเซ่à¸à¸‹à¹ˆà¸²\nà¹à¸‹à¹ˆà¸‹à¹‰à¸à¸‡\nโซดาไฟ\nà¸à¸²à¸“ทัสนะ\nà¸à¸²à¸“วิทยา\nà¸à¸²à¸“ศาสตร์\nà¸à¸²à¸•à¸´à¸à¸²\nà¸à¸²à¸™à¸£à¸²à¸\nดà¸à¸”ื่น\nดงดิบ\nดลใจ\nดลบันดาล\nดวงà¹à¸à¹‰à¸§\nดวงใจ\nดวงเดืà¸à¸™\nดวงตรา\nดวงตา\nดวงสมร\nดà¸à¸à¸ˆà¸±à¸™\nดà¸à¸à¸ˆà¸´à¸\nดà¸à¸à¸šà¸±à¸§\nดà¸à¸à¹€à¸šà¸µà¹‰à¸¢\nดà¸à¸à¸Ÿà¹‰à¸²\nดà¸à¸à¹„ม้\nดà¸à¸à¸¢à¸²à¸‡\nดà¸à¸à¹€à¸¥à¹‡à¸š\nดà¸à¸à¸—à¸à¸‡\nดà¸à¸à¸ªà¸£à¹‰à¸à¸¢\nดà¸à¸‡à¸¢à¸²\nดัà¸à¸„à¸\nดัà¸à¸Ÿà¸±à¸‡\nดังนั้น\nดังนี้\nดังหนึ่ง\nดั้งเดิม\nดัดจริต\nดัดà¹à¸›à¸¥à¸‡\nดันทุรัง\nดับขันธ์\nดับจิต\nดับชีพ\nด่าทà¸\nด่างทับทิม\nด่างพร้à¸à¸¢\nดาดฟ้า\nดาราศาสตร์\nดาลเดืà¸à¸”\nดาวà¸à¸£à¸°à¸ˆà¸²à¸¢\nดาวเคราะห์\nดาวตà¸\nดาวเทียม\nดาวรุ่ง\nดาวเรืà¸à¸‡\nดาวฤà¸à¸©à¹Œ\nดาวหาง\nดาวเหนืà¸\nดาษดื่น\nดินขาว\nดินดาน\nดินดำ\nดินประสิว\nดินปืน\nดินระเบิด\nดินสà¸\nดินสà¸à¸žà¸à¸‡\nดิ้นรน\nดิบดี\nดีเà¸à¸¥à¸·à¸\nดีใจ\nดีซ่าน\nดีดัà¸\nดีเดืà¸à¸”\nดีà¸à¹ˆà¸\nดีดดิ้น\nดึà¸à¸”ำบรรพ์\nดึà¸à¸”ื่น\nดึงดัน\nดึงดูด\nดื่มด่ำ\nดื้à¸à¸”้าน\nดื้à¸à¸”ึง\nดื้à¸à¹à¸žà¹ˆà¸‡\nดื้à¸à¸¢à¸²\nดื้à¸à¸£à¸±à¹‰à¸™\nดุดัน\nดุเดืà¸à¸”\nดุร้าย\nดุลà¸à¸²à¸£à¸„้า\nดุลพินิจ\nดุลภาค\nดุลยพินิจ\nดุลยภาพ\nดุษฎีนิพนธ์\nดุษฎีบัณฑิต\nดุษณีภาพ\nดูà¹à¸„ลน\nดูถูà¸\nดูดาย\nดูเบา\nดูà¹à¸¥\nดูหมิ่น\nดูเหมืà¸à¸™\nดูดดื่ม\nเด็ดขาด\nเด็ดดวง\nเด็ดเดี่ยว\nเดนตาย\nเดาสวด\nเดาสุ่ม\nเดินทาง\nเดินสะพัด\nเดินสาย\nเดินเหิน\nเดิมพัน\nเดียงสา\nเดียดฉันท์\nเดียวà¸à¸±à¸™\nเดียวดาย\nเดี๋ยวเดียว\nเดี๋ยวนี้\nเดืà¸à¸”ดาล\nเดืà¸à¸”ร้à¸à¸™\nเดืà¸à¸™à¸¡à¸·à¸”\nเดืà¸à¸™à¸«à¸‡à¸²à¸¢\nà¹à¸”ดาล\nà¹à¸”ดิ้น\nà¹à¸”à¸à¸”ัน\nโด่เด่\nโด่งดัง\nโดดเดี่ยว\nโดยสาร\nได้à¸à¸²à¸£\nได้à¹à¸à¹ˆ\nได้ใจ\nได้ที\nได้ยิน\nได้เสีย\nตà¸à¹€à¸‚ียว\nตà¸à¸„้าง\nตà¸à¹ƒà¸ˆ\nตà¸à¸•à¹ˆà¸³\nตà¸à¹à¸•à¹ˆà¸‡\nตà¸à¸—à¸à¸”\nตà¸à¸Ÿà¸²à¸\nตà¸à¸¡à¸±à¸™\nตà¸à¸¢à¸²à¸\nตà¸à¸¥à¸‡\nตà¸à¸«à¸¥à¹ˆà¸™\nต้นขั้ว\nต้นคิด\nต้นฉบับ\nต้นตà¸\nต้นตำรับ\nต้นทุน\nต้นà¹à¸šà¸š\nต้นเพลิง\nต้นมืà¸\nต้นไม้\nต้นร่าง\nต้นเรื่à¸à¸‡\nต้นสังà¸à¸±à¸”\nต้นหน\nต้นเหตุ\nตบตา\nตบà¹à¸•à¹ˆà¸‡\nตบà¹à¸œà¸¥à¸°\nตบมืà¸\nต้มข่า\nต้มโคล้ง\nต้มยำ\nต้มส้ม\nตรมตรà¸à¸¡\nตรรà¸à¸§à¸´à¸—ยา\nตรรà¸à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nตรวจà¸à¸²à¸£\nตรวจà¸à¸²à¸£à¸“์\nตรวจตรา\nตระบัดสัตย์\nตรัสรู้\nตราตั้ง\nตราบาป\nตรายาง\nตราสาร\nตริตรà¸à¸‡\nตรีà¸à¸à¸¸à¸\nตรีà¸à¸²à¸¢\nตรีโà¸à¸“\nตรีโà¸à¸“มิติ\nตรีคูณ\nตรีทูต\nตรีปิฎà¸\nตรีภพ\nตรีมูรติ\nตรึà¸à¸•à¸£à¸à¸‡\nตรึงตรา\nตรุษจีน\nตฤณชาติ\nตฤณมัย\nตลà¸à¸šà¸²à¸•à¸£\nตลบตะà¹à¸¥à¸‡\nตลบหลัง\nตลาดนัด\nตลาดน้ำ\nตลาดมืด\nตลาดสด\nต่à¸à¸•à¸µ\nต่à¸à¹€à¸•à¸´à¸¡\nต่à¸à¸§à¹ˆà¸²\nต่à¸à¸ªà¸¹à¹‰\nต่à¸à¸à¸£\nต่à¸à¸•à¹‰à¸²à¸™\nต่à¸à¹à¸¢à¹‰à¸‡\nต้à¸à¸‡à¸à¸²à¸£\nต้à¸à¸‡à¹‚ทษ\nต้à¸à¸‡à¸«à¸²\nต้à¸à¸™à¸£à¸±à¸š\nตà¸à¸šà¹‚ต้\nตà¸à¸šà¹à¸—น\nต่à¸à¸¢à¸«à¸à¸¢\nตะพาบน้ำ\nตัà¸à¸•à¸§à¸‡\nตัà¸à¸šà¸²à¸•à¸£\nตั้งเข็ม\nตั้งไข่\nตั้งเค้า\nตั้งà¹à¸‡à¹ˆ\nตั้งใจ\nตั้งต้น\nตั้งà¹à¸•à¹ˆ\nตั้งท้à¸à¸‡\nตัดขาด\nตัดใจ\nตัดเชืà¸à¸\nตัดตà¸à¸™\nตัดทà¸à¸™\nตัดบท\nตัดพ้à¸\nตัดรà¸à¸™\nตัดสิน\nตับเต่า\nตับà¹à¸¥à¸š\nตับà¸à¹ˆà¸à¸™\nตัวà¸à¸¥à¸²à¸‡\nตัวà¸à¸²à¸£\nตัวเà¸à¹‡à¸‡\nตัวดี\nตัวตั้ง\nตัวเต็ง\nตัวถัง\nตัวà¹à¸—น\nตัวประà¸à¸à¸š\nตัวประà¸à¸±à¸™\nตัวà¹à¸›à¸£\nตัวผู้\nตัวพิมพ์\nตัวเมีย\nตัวยืน\nตัวเลข\nตัวà¸à¸¢à¹ˆà¸²à¸‡\nตั๋วเงิน\nตั๋วà¹à¸¥à¸à¹€à¸‡à¸´à¸™\nตาà¸à¸¥à¹‰à¸à¸‡\nตาไà¸à¹ˆ\nตาข่าย\nตาชั่ง\nตาตุ่ม\nตาทวด\nตาปลา\nตาราง\nต่างหาà¸\nต้านทาน\nตามใจ\nตายใจ\nตายซาà¸\nตายด้าน\nตายตัว\nตายทั้งà¸à¸¥à¸¡\nตายห่า\nตายโหง\nตาลปัตร\nต่ำช้า\nต่ำต้à¸à¸¢\nตำส้ม\nติเตียน\nติณชาติ\nติดขัด\nติดใจ\nติดต่à¸\nติดตั้ง\nติดตาม\nติดตื้น\nติดพัน\nติดลม\nติดà¸à¹ˆà¸²à¸‡\nตีเà¸à¸¥à¸µà¸¢à¸§\nตีขลุม\nตีความ\nตีคู่\nตีจาà¸\nตีตื้น\nตีà¹à¸œà¹ˆ\nตีรวน\nตีลังà¸à¸²\nตีวง\nตีเสมà¸\nตีนà¸à¸²\nตีนคู้\nตีนจà¸\nตีนตะขาบ\nตีนผี\nตีนเหยียด\nตึà¸à¹à¸–ว\nตึà¸à¸£à¸°à¸Ÿà¹‰à¸²\nตึงเครียด\nตึงตัง\nตื้นตัน\nตื่นตัว\nตื่นตูม\nตื่นเต้น\nตุ๊ต๊ะ\nตุ้บตั้บ\nตุ้มหู\nตุลาà¸à¸²à¸£\nตุลาคม\nตู้นิรภัย\nตูมตาม\nตู้เสบียง\nเตโชธาตุ\nเตร็ดเตร่\nเต้นรำ\nเตาà¹à¸à¹Šà¸ª\nเตาผิง\nเตาฟู่\nเตาไฟ\nเตารีด\nเตาสูบ\nเต่าทà¸à¸‡\nเต้ารับ\nเต้าส่วน\nเต้าเสียบ\nเต้าหู้ยี้\nà¹à¸•à¹ˆà¸¥à¸°\nà¹à¸•à¸à¸„à¸\nà¹à¸•à¸à¸„à¸à¸\nà¹à¸•à¸à¸‰à¸²à¸™\nà¹à¸•à¸à¸”ับ\nà¹à¸•à¸à¸•à¸·à¹ˆà¸™\nà¹à¸•à¸à¸žà¸²à¸™\nà¹à¸•à¸à¹à¸¢à¸\nà¹à¸•à¸à¸£à¹‰à¸²à¸§\nà¹à¸•à¸à¸«à¸±à¸\nà¹à¸•à¹ˆà¸‡à¸‡à¸²à¸™\nà¹à¸•à¹ˆà¸‡à¸•à¸±à¹‰à¸‡\nà¹à¸•à¹‰à¸¡à¸„ู\nà¹à¸•à¹‰à¸¡à¸•à¹ˆà¸\nà¹à¸•à¸£à¸‡à¸à¸™\nà¹à¸•à¸£à¹€à¸”ี่ยว\nà¹à¸•à¸£à¸à¸£à¸±à¹ˆà¸‡\nà¹à¸•à¸£à¸Ÿà¸±à¸™à¸Ÿà¸²à¸£à¹Œ\nà¹à¸•à¸£à¸§à¸‡\nโต้ตà¸à¸š\nโต้เถียง\nโต้à¹à¸¢à¹‰à¸‡\nโต๊ะหมู่\nโต๊ะà¸à¸´à¸«à¸¡à¹ˆà¸²à¸¡\nใต้ถุน\nไต้à¸à¹‹à¸‡\nไต่คู้\nไต่เต้า\nไต่ถาม\nไต้à¸à¸¸à¹ˆà¸™\nไตรจัà¸à¸£\nไตรจีวร\nไตรตรึงษ์\nไตรทวาร\nไตรปิฎà¸\nไตรเพท\nไตรภพ\nไตรภูมิ\nไตรภาคี\nไตรยางศ์\nไตรรงค์\nไตรรัตน์\nไตรลัà¸à¸©à¸“์\nไตรโลà¸\nไตรสรณคมน์\nไตรสิà¸à¸‚า\nไต่สวน\nถà¸à¹€à¸–ียง\nถดถà¸à¸¢\nถนัดถนี่\nถนิมสร้à¸à¸¢\nถมถืด\nถมเถ\nถมไป\nถลาà¸à¹„ถล\nถ้วนถี่\nถ้วยฟู\nถ่à¸à¸‡à¹à¸—้\nถà¸à¸”ถà¸à¸™\nถ้à¸à¸¢à¸„ำ\nถ้à¸à¸¢à¹à¸–ลง\nถาà¸à¸–าง\nถ่านไฟฉาย\nถ่านหิน\nถามไถ่\nถ่ายทà¸à¸”\nถ่ายทุà¸à¸‚์\nถ่ายเท\nถาวรวัตถุ\nถ้ำมà¸à¸‡\nถี่ถ้วน\nถึงใจ\nถูà¸à¹ƒà¸ˆ\nถูà¸à¸Šà¸°à¸•à¸²\nเถรวาท\nเถ้าà¹à¸à¹ˆ\nเถ้าà¹à¸à¹ˆà¹€à¸™à¸µà¹‰à¸¢\nà¹à¸–มพà¸\nà¹à¸–ลงà¸à¸²à¸£à¸“์\nไถ่ถà¸à¸™\nไถ่ถาม\nทดà¹à¸—น\nทดรà¸à¸‡\nทดลà¸à¸‡\nทดสà¸à¸š\nทนทาน\nทนายความ\nทบทวน\nทà¹à¸¢à¸‡à¸¡à¸¸à¸¡\nทรงà¸à¸¥à¸”\nทรงเครื่à¸à¸‡\nทรงเจ้า\nทรัพย์สิน\nทรามชม\nทรามเชย\nทรามวัย\nทรามสงวน\nทรามสวาท\nทรุดโทรม\nทฤษฎีบท\nท้วงติง\nท่วมท้น\nทวาทศ\nทวาทศมาส\nทวาบรยุค\nทวารบาล\nทวิบถ\nทวิบท\nทวิบาท\nทวิภาค\nทวิภาคี\nทวีคูณ\nทศà¸à¸±à¸“à¸à¹Œ\nทศชาติ\nทศทิศ\nทศนิยม\nทศพร\nทศพล\nทศพิธราชธรรม\nทศมาส\nทศวรรษ\nท่à¸à¹„à¸à¹€à¸ªà¸µà¸¢\nท้à¸à¸–à¸à¸¢\nท้à¸à¹à¸—้\nทà¸à¸‡à¸‚าว\nทà¸à¸‡à¸„ำ\nทà¸à¸‡à¸„ำขาว\nทà¸à¸‡à¸„ำเปลว\nทà¸à¸‡à¹€à¸„\nทà¸à¸‡à¹à¸”ง\nทà¸à¸‡à¸šà¸£à¸à¸™à¸‹à¹Œ\nทà¸à¸‡à¸¡à¹‰à¸§à¸™\nทà¸à¸‡à¸¢à¹‰à¸à¸¢\nทà¸à¸‡à¸ªà¸±à¸¡à¸¤à¸—ธิ์\nทà¸à¸‡à¸«à¸¢à¸à¸”\nทà¸à¸‡à¸«à¸¢à¸´à¸š\nทà¸à¸‡à¹€à¸«à¸¥à¸·à¸à¸‡\nทà¸à¸‡à¹€à¸à¸\nท่à¸à¸‡à¹€à¸—ี่ยว\nท้à¸à¸‡à¸•à¸£à¸²\nท้à¸à¸‡à¸–ิ่น\nท้à¸à¸‡à¸—ี่\nท้à¸à¸‡à¸™à¹‰à¸à¸¢\nท้à¸à¸‡à¸£à¹ˆà¸à¸‡\nท้à¸à¸‡à¹€à¸£à¸·à¹ˆà¸à¸‡\nทà¸à¸”มัน\nทà¸à¸”ทิ้ง\nทà¸à¸”น่à¸à¸‡\nทà¸à¸”ยà¸à¸”\nทà¸à¸”หุ่ย\nทà¸à¸¢à¸à¸à¸‡\nทะเบียนบ้าน\nทะเลทราย\nทะเลสาบ\nทะเลหลวง\nทัà¸à¸‚ิณาวัà¸\nทัà¸à¸—้วง\nทัà¸à¸—าย\nทัà¸à¸©à¸´à¸“าวรรต\nทัà¸à¸©à¸´à¸“าทาน\nทัà¸à¸©à¸´à¸“านุประทาน\nทั้งà¸à¸¥à¸¡\nทั้งคน\nทั้งดุ้น\nทั้งที\nทั้งนั้น\nทั้งนี้\nทั้งปวง\nทั้งผà¸à¸‡\nทั้งเพ\nทั้งมวล\nทั้งสิ้น\nทั้งหมด\nทั้งหลาย\nทัณฑ์บน\nทัดทาน\nทัดเทียม\nทันควัน\nทันใจ\nทันใด\nทันตา\nทันสมัย\nทันที\nทับถม\nทับทรวง\nทับศัพท์\nทั่วถึง\nทั่วไป\nท่าทาง\nท่าที\nท้าทาย\nทางà¸à¸²à¸£\nทางข้าม\nทางด่วน\nทางเท้า\nทางโท\nทางใน\nทางผ่าน\nทางม้าลาย\nทางหลวง\nทางà¸à¸à¸\nทางเà¸à¸\nทานà¸à¸±à¸“ฑ์\nทานตะวัน\nท่านชาย\nทานบารมี\nท่านผู้หà¸à¸´à¸‡\nท่านหà¸à¸´à¸‡\nทาบทาม\nท้ายทà¸à¸¢\nทารุณà¸à¸£à¸£à¸¡\nทำคลà¸à¸”\nทำใจ\nทำซ้ำ\nทำท่า\nทำที\nทำà¹à¸—้ง\nทำโทษ\nทำบาป\nทำบุà¸\nทำพิษ\nทำฟัน\nทำร้าย\nทำวัตร\nทำสาว\nทำเสน่ห์\nทำหมัน\nทำให้\nทิ้งขว้าง\nทิ้งทวน\nทิ้งท้าย\nทินà¸à¸£\nทิพจัà¸à¸‚ุ\nทิพโสต\nทิพยจัà¸à¸©à¸¸\nทิพยà¸à¸²à¸“\nทิพยเนตร\nทิพยรส\nทิพาà¸à¸£\nทิ่มตำ\nทิ่มà¹à¸—ง\nทิวาà¸à¸£\nทิวาà¸à¸²à¸¥\nทิศทาง\nทีเด็ด\nทีท่า\nทีนี้\nทีหลัง\nทีฆนิà¸à¸²à¸¢\nทีฆสระ\nที่ดิน\nที่นà¸à¸™\nที่นั่ง\nที่ปรึà¸à¸©à¸²\nที่พึ่ง\nที่มั่น\nที่ราบ\nที่ว่าà¸à¸²à¸£\nที่สุด\nที่หมาย\nที่ไหน\nทุà¸à¸—ี\nทุà¸à¹€à¸¡à¸·à¹ˆà¸\nทุà¸à¸‚์สุข\nทุนทรัพย์\nทุนนิยม\nทุนรà¸à¸™\nทุนสำรà¸à¸‡\nทุ่มเถียง\nทุ่มเท\nทูนหัว\nทูลà¸à¸£à¸°à¸«à¸¡à¹ˆà¸à¸¡\nเทà¸à¸£à¸°à¸ˆà¸²à¸”\nเทครัว\nเทพเจ้า\nเทพดา\nเทพธิดา\nเทพนม\nเทพนิยม\nเทพนิยาย\nเทพบุตร\nเทพสังหรณ์\nเทศà¸à¸²à¸¥\nเทศนาโวหาร\nเทศบัà¸à¸à¸±à¸•à¸´\nเทศบาล\nเทศมนตรี\nเทห์ฟาà¸à¸Ÿà¹‰à¸²\nเท่าà¸à¸±à¸š\nเท่าใด\nเท่าตัว\nเท่าทัน\nเท่าทุน\nเท่าเทียม\nเท่านั้น\nเท่าไร\nเท้าช้าง\nเทิดทูน\nเที่ยงตรง\nเที่ยงà¹à¸—้\nเที่ยงธรรม\nเทียนชนวน\nเทียนพรรษา\nเทียบเคียง\nเทียบเท่า\nเทืà¸à¸à¹€à¸‚า\nเทืà¸à¸à¹€à¸–า\nà¹à¸—็งà¸à¹Œà¸™à¹‰à¸³\nà¹à¸—่นพิมพ์\nà¹à¸—่นมณฑล\nà¹à¸—่นหมึà¸\nà¹à¸—รà¸à¸‹à¸à¸™\nà¹à¸—รà¸à¸‹à¹‰à¸à¸™\nà¹à¸—รà¸à¸‹à¸¶à¸¡\nà¹à¸—รà¸à¹à¸‹à¸‡\nà¹à¸—ะโลม\nไทยดำ\nไทยทาน\nไทยธรรม\nไทยน้à¸à¸¢\nไทยใหà¸à¹ˆ\nธงชัย\nธงชาติ\nธงทิว\nธรณีวิทยา\nธรณีสงฆ์\nธรรมà¸à¸²à¸¢\nธรรมà¸à¸²à¸£\nธรรมเà¸à¸©à¸•à¸£\nธรรมขันธ์\nธรรมคุณ\nธรรมจรรยา\nธรรมจริยา\nธรรมจัà¸à¸£\nธรรมจัà¸à¸©à¸¸\nธรรมจาคะ\nธรรมจารี\nธรรมชาติ\nธรรมดา\nธรรมเนียม\nธรรมราชา\nธรรมศาสตร์\nธรรมสภา\nธรรมสังเวช\nธัà¸à¸žà¸·à¸Š\nธารพระà¸à¸£\nธีรภาพ\nธีรราช\nนà¸à¹€à¸‚า\nนà¸à¸•à¹ˆà¸\nนà¸à¸¢à¸¹à¸‡\nนà¸à¸£à¸¹à¹‰\nนà¸à¸«à¸§à¸µà¸”\nนครบาล\nนครรัà¸\nนงคราà¸\nนงนุช\nนงพะงา\nนงเยาว์\nนงราม\nนงลัà¸à¸©à¸“์\nนบนà¸à¸š\nนพเà¸à¹‰à¸²\nนพคุณ\nนพเคราะห์\nนพปฎล\nนพพล\nนพรัตน์\nนพศà¸\nนพศูล\nนมข้น\nนมผง\nนมไม้\nนมนาน\nนมหนู\nนมà¹à¸¡à¸§\nนรีเวช\nนรีเวชวิทยา\nนวดฟั้น\nนวยนาด\nนวลระหง\nนวลลà¸à¸\nนวลละà¸à¸à¸‡\nนวลจันทร์\nนà¸à¸à¸„รู\nนà¸à¸à¸„à¸à¸\nนà¸à¸à¸ˆà¸²à¸\nนà¸à¸à¹ƒà¸ˆ\nนà¸à¸à¸Šà¸²à¸™\nนà¸à¸à¸£à¸µà¸•\nนà¸à¸à¹€à¸«à¸™à¸·à¸\nนà¸à¸‡à¹€à¸™à¸·à¸à¸‡\nนà¸à¸‡à¹€à¸¥à¸·à¸à¸”\nนà¸à¸™à¸à¹‰à¸™\nนà¸à¸™à¹ƒà¸ˆ\nนà¸à¸šà¸™à¸š\nนà¸à¸™à¹€à¸¥à¹ˆà¸™\nนà¸à¸šà¸™à¹‰à¸à¸¡\nน้à¸à¸¡à¸™à¸³\nน้à¸à¸¢à¹ƒà¸ˆ\nน้à¸à¸¢à¸«à¸™à¹‰à¸²\nนัà¸à¸à¸²à¸£\nนัà¸à¸à¸²à¸£à¹€à¸¡à¸·à¸à¸‡\nนัà¸à¸à¸µà¸¬à¸²\nนัà¸à¸‚่าว\nนัà¸à¸—่à¸à¸‡à¹€à¸—ี่ยว\nนัà¸à¹€à¸—ศน์\nนัà¸à¹‚ทษ\nนัà¸à¸˜à¸£à¸£à¸¡\nนัà¸à¸šà¸§à¸Š\nนัà¸à¸šà¸´à¸™\nนัà¸à¸šà¸¸à¸\nนัà¸à¸›à¸£à¸²à¸Šà¸à¹Œ\nนัà¸à¸žà¸£à¸•\nนัà¸à¸£à¸š\nนัà¸à¹€à¸£à¸µà¸¢à¸™\nนัà¸à¹€à¸¥à¸‡\nนัà¸à¸§à¸´à¸Šà¸²à¸à¸²à¸£\nนัà¸à¸¨à¸¶à¸à¸©à¸²\nนัà¸à¸ªà¸´à¸—ธิ์\nนัà¸à¸ªà¸·à¸š\nนัà¸à¸«à¸™à¸²\nนั่งเทียน\nนั่งร้าน\nนัดà¹à¸™à¸°\nนัดหมาย\nนั่นà¹à¸«à¸¥à¸°\nนั่นเà¸à¸‡\nนับถืà¸\nนับประสา\nนัยน์ตา\nนาดำ\nนาปรัง\nนาปี\nนาสวน\nนาหว่าน\nนาคบาศ\nนาคปรà¸\nนาคราช\nนางà¸à¸§à¸±à¸\nนางà¸à¸³à¸™à¸±à¸¥\nนางงาม\nนางใน\nนางบำเรà¸\nนางà¹à¸šà¸š\nนางพà¸à¸²\nนางฟ้า\nนางไม้\nนางโลม\nนางสาว\nนางห้าม\nนางเà¸à¸\nนาà¸à¸à¸£à¸£à¸¡\nนาà¸à¸”นตรี\nนาà¸à¸¨à¸´à¸¥à¸›à¹Œ\nนานนม\nน่านน้ำ\nน่านฟ้า\nนามà¸à¸£\nนามธรรม\nนามไธย\nนามบัตร\nนามปาà¸à¸à¸²\nนามà¹à¸à¸‡\nนามสà¸à¸¸à¸¥\nนามสงเคราะห์\nนามสมà¸à¸²\nนายทะเบียน\nนายท่า\nนายท้าย\nนายทุน\nนายประà¸à¸±à¸™\nนายหน้า\nนายà¸à¸³à¹€à¸ à¸\nนารายณ์หัตถ์\nนารีผล\nนาวิà¸à¹‚ยธิน\nนำจับ\nนำพา\nนำทาง\nนำร่à¸à¸‡\nนำสืบ\nนำà¹à¸ªà¸”ง\nน้ำà¸à¸£à¸”\nน้ำà¸à¸²à¸¡\nน้ำเà¸à¸¥à¸·à¸\nน้ำข้าว\nน้ำà¹à¸‚็ง\nน้ำà¹à¸‚็งไส\nน้ำà¹à¸‚็งà¹à¸«à¹‰à¸‡\nน้ำครำ\nน้ำคร่ำ\nน้ำค้าง\nน้ำค้างà¹à¸‚็ง\nน้ำคาวปลา\nน้ำคำ\nน้ำเค็ม\nน้ำเคย\nน้ำเงิน\nน้ำเงี้ยว\nน้ำจัณฑ์\nน้ำจิ้ม\nน้ำใจ\nน้ำเชื้à¸\nน้ำเชื่à¸à¸¡\nน้ำซาวข้าว\nน้ำดà¸à¸à¹„ม้\nน้ำดี\nน้ำตà¸\nน้ำตา\nน้ำตาล\nน้ำท่า\nน้ำนม\nน้ำนวล\nน้ำบาดาล\nน้ำประสานทà¸à¸‡\nน้ำประปา\nน้ำปลา\nน้ำป่า\nน้ำผึ้ง\nน้ำพริà¸\nน้ำพริà¸à¹€à¸œà¸²\nน้ำพี้\nน้ำพุ\nน้ำมนต์\nน้ำมนตร์\nน้ำมัน\nน้ำมืà¸\nน้ำมูà¸\nน้ำเมา\nน้ำย่à¸à¸¢\nน้ำยา\nน้ำรัà¸\nน้ำà¹à¸£à¹ˆ\nน้ำลาย\nน้ำเลี้ยง\nน้ำสต๊à¸à¸\nน้ำส้ม\nน้ำส้มสายชู\nน้ำสังข์\nน้ำสาบาน\nน้ำเสียง\nน้ำหนวà¸\nน้ำหนà¸à¸‡\nน้ำหนัà¸\nน้ำหน้า\nน้ำหนึ่ง\nน้ำหมึà¸\nน้ำหà¸à¸¡\nน้ำเหลืà¸à¸‡\nน้ำà¸à¸š\nน้ำà¸à¹‰à¸à¸¢\nน้ำà¸à¸±à¸”ลม\nนิ่งเฉย\nนิจศีล\nนิดเดียว\nนิดหน่à¸à¸¢\nนิติà¸à¸£\nนิติà¸à¸£à¸£à¸¡\nนิติธรรม\nนิตินัย\nนิติบัà¸à¸à¸±à¸•à¸´\nนิติบุคคล\nนิติภาวะ\nนิติวิทยาศาสตร์\nนิติเวช\nนิติเวชศาสตร์\nนิติศาสตร์\nนิเทศศาสตร์\nนิ่มนวล\nนิรุà¸à¸•à¸´à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nนิเวศวิทยา\nนิศาà¸à¸£\nนิศาà¸à¸²à¸¥\nนิศาชล\nนิศารัตน์\nนี่à¹à¸™à¹ˆà¸°\nนี่à¹à¸«à¸¥à¸°\nนี่เà¸à¸‡\nนึà¸à¸„ิด\nนุงถุง\nนุ่งห่ม\nนุ่มนวล\nนุ่มนิ่ม\nเนตรนารี\nเนติบัณฑิต\nเนยเทียม\nเนยใส\nเนิ่นนาน\nเนิบนาบ\nเนื้à¸à¸„วาม\nเนื้à¸à¸„ู่\nเนื้à¸à¹€à¸„็ม\nเนื้à¸à¸‡à¸à¸\nเนื้à¸à¸•à¸±à¸§\nเนื้à¸à¸•à¸²à¸¢\nเนื้à¸à¸—ี่\nเนื้à¸à¹à¸—้\nเนื้à¸à¹€à¸›à¸·à¹ˆà¸à¸¢\nเนื้à¸à¸œà¹‰à¸²\nเนื้à¸à¹€à¸žà¸¥à¸‡\nเนื้à¸à¹„ม้\nเนื้à¸à¹€à¸¢à¸·à¹ˆà¸\nเนื้à¸à¸£à¹‰à¸à¸‡\nเนื้à¸à¸£à¹‰à¸²à¸¢\nเนื้à¸à¹€à¸£à¸·à¹ˆà¸à¸‡\nเนื้à¸à¸«à¸²\nเนืà¸à¸‡à¸™à¸à¸‡\nเนืà¸à¸‡à¸™à¸´à¸•à¸¢à¹Œ\nเนืà¸à¸‡à¹à¸™à¹ˆà¸™\nà¹à¸™à¹ˆà¹ƒà¸ˆ\nà¹à¸™à¹ˆà¸Šà¸±à¸”\nà¹à¸™à¹ˆà¹à¸—้\nà¹à¸™à¹ˆà¸™à¸à¸™\nà¹à¸™à¹ˆà¸™à¸´à¹ˆà¸‡\nà¹à¸™à¹ˆà¹à¸™à¹ˆà¸§\nà¹à¸™à¹ˆà¸™à¹à¸Ÿà¹‰à¸™\nà¹à¸™à¹ˆà¸™à¸«à¸™à¸²\nà¹à¸™à¸šà¹€à¸™à¸µà¸¢à¸™\nà¹à¸™à¸šà¹à¸™à¹ˆà¸™\nà¹à¸™à¸§à¸„ิด\nà¹à¸™à¸§à¸—าง\nà¹à¸™à¸§à¹‚น้ม\nà¹à¸™à¸§à¸›à¹ˆà¸²\nà¹à¸™à¸§à¸£à¸š\nà¹à¸™à¸§à¸£à¹ˆà¸§à¸¡\nà¹à¸™à¸§à¸«à¸™à¹‰à¸²\nà¹à¸™à¸§à¸«à¸¥à¸±à¸‡\nà¹à¸™à¹ˆà¸§à¹à¸™à¹ˆ\nà¹à¸™à¸°à¸™à¸³\nà¹à¸™à¸°à¹à¸™à¸§\nโน้มน้าว\nในหลวง\nบà¸à¸žà¸£à¹ˆà¸à¸‡\nบงà¸à¸Š\nบงà¸à¸²à¸£\nบดบัง\nบทà¸à¸¥à¸à¸™\nบทà¸à¸§à¸µ\nบทความ\nบทคัดย่à¸\nบทเฉพาะà¸à¸²à¸¥\nบทนำ\nบทบัà¸à¸à¸±à¸•à¸´\nบทบาท\nบทประพันธ์\nบทเพลง\nบทร้à¸à¸‡\nบทเรียน\nบทลงโทษ\nบทสนทนา\nบทà¸à¸±à¸¨à¸ˆà¸£à¸£à¸¢à¹Œ\nบทจร\nบทบงสุ์\nบทมาลย์\nบทรัช\nบทเรศ\nบทวลัà¸à¸Šà¹Œ\nบนบาน\nบรมครู\nบรมธาตุ\nบรมบพิตร\nบรมวงศานุวงศ์\nบรมà¸à¸±à¸à¸´\nบรรณพิภพ\nบรรณศาลา\nบรรณาà¸à¸²à¸£\nบรรณาธิà¸à¸²à¸£\nบรรณานุà¸à¸£à¸¡\nบรรณารัà¸à¸©à¹Œ\nบรรณารัà¸à¸©à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nบรรดามี\nบรรดาศัà¸à¸”ิ์\nบรรทัดà¸à¸²à¸™\nบรรพบุรุษ\nบรรลัยà¸à¸±à¸¥à¸›à¹Œ\nบรรลัยจัà¸à¸£\nบริคณห์สนธิ\nบวงสรวง\nบ่วงบาศ\nบ้วนพระโà¸à¸©à¸à¹Œ\nบ่à¸à¹€à¸à¸´à¸”\nบà¸à¸à¸à¸¥à¹ˆà¸²à¸§\nบà¸à¸à¸šà¸—\nบà¸à¸à¸šà¸¸à¸\nบà¸à¸à¹ƒà¸šà¹‰\nบà¸à¸à¸›à¸±à¸”\nบ้à¸à¸‡à¸à¸±à¸à¸Šà¸²\nบ้à¸à¸‡à¸•à¸·à¹‰à¸™\nบ้à¸à¸‡à¹„ฟ\nบ้à¸à¸‡à¸«à¸¹\nบà¸à¸”สี\nบ่à¸à¸™à¸—ำลาย\nบà¸à¸šà¸Šà¹‰à¸³\nบà¸à¸šà¸šà¸²à¸‡\nบà¸à¸šà¹à¸šà¸š\nบังโà¸à¸¥à¸™\nบังโคลน\nบังใบ\nบั้งไฟ\nบังคับà¸à¸²à¸£\nบังคับบัà¸à¸Šà¸²\nบัà¸à¸Šà¸²à¸à¸²à¸£\nบัณฑุà¸à¸±à¸¡à¸žà¸¥\nบัดดล\nบัดเดี๋ยว\nบัดนั้น\nบัดนี้\nบัดสีบัดเถลิง\nบัตรเครดิต\nบัตรพลี\nบัตรสนเท่ห์\nบัตรสินเชื่à¸\nบั่นทà¸à¸™\nบั้นท้าย\nบั้นปลาย\nบั้นพระà¸à¸‡à¸„์\nบั้นเà¸à¸§\nบันไดลิง\nบันไดเลื่à¸à¸™\nบันเทิงคดี\nบัวลà¸à¸¢\nบัวบà¸\nบ้าจี้\nบ้าดีเดืà¸à¸”\nบ้าน้ำลาย\nบ้าบิ่น\nบ้าระห่ำ\nบ้าเลืà¸à¸”\nบ้าหà¸à¸šà¸Ÿà¸²à¸‡\nบาà¸à¸šà¸±à¹ˆà¸™\nบาà¸à¸«à¸™à¹‰à¸²\nบางตา\nบางเบา\nบางที\nบาดเจ็บ\nบาดà¹à¸œà¸¥\nบาดหมาง\nบาตรใหà¸à¹ˆ\nบาทบงà¸à¸Š\nบาทบงสุ์\nบาทบริจาริà¸à¸²\nบาทวิถี\nบานเà¸à¸¥à¹‡à¸”\nบานตะเà¸à¸µà¸¢à¸‡\nบานตะไท\nบานเบà¸à¸°\nบานปลาย\nบานà¹à¸œà¸¥à¸°\nบานพับ\nบ้านจัดสรร\nบ้านช่à¸à¸‡\nบ้านนà¸à¸\nบ้านพัà¸\nบ้านเมืà¸à¸‡\nบ้านรับรà¸à¸‡\nบ้านเรืà¸à¸™\nบาปà¸à¸£à¸£à¸¡\nบายศรี\nบ่ายเบี่ยง\nบ่ายหน้า\nบ่าวไพร่\nบิดเบี้ยว\nบิดเบืà¸à¸™\nบิดพลิ้ว\nบี้à¹à¸šà¸™\nบีบคั้น\nบีบรัด\nบึ้งตึง\nบึ้งบูด\nบุà¸à¸šà¸±à¹ˆà¸™\nบุà¸à¹€à¸šà¸´à¸\nบุà¸à¸£à¸¸à¸\nบุคลิà¸à¸ าพ\nบุคลิà¸à¸¥à¸±à¸à¸©à¸“ะ\nบุà¸à¸˜à¸£à¸£à¸¡\nบุà¸à¸™à¸´à¸˜à¸´\nบุà¸à¸¤à¸—ธิ์\nบุบสลาย\nบุ้ยใบ้\nบุรุษเพศ\nบุหงารำไป\nบู้บี้\nบูชายัà¸\nบูดบึ้ง\nบูดเบี้ยว\nเบาความ\nเบาใจ\nเบาบาง\nเบาปัà¸à¸à¸²\nเบามืà¸\nเบาà¹à¸£à¸‡\nเบาสมà¸à¸‡\nเบาหวาน\nเบาโหวง\nเบ้าตา\nเบาะà¹à¸ª\nเบิà¸à¸„วาม\nเบิà¸à¸šà¸²à¸™\nเบี้ยล่าง\nเบี้ยเลี้ยง\nเบี้ยหวัด\nเบี่ยงบ่าย\nเบียดบัง\nเบียดเบียน\nเบียดเสียด\nเบื้à¸à¸‡à¸•à¹‰à¸™\nเบื้à¸à¸‡à¸šà¸™\nเบื้à¸à¸‡à¸«à¸™à¹‰à¸²\nเบื้à¸à¸‡à¸«à¸¥à¸±à¸‡\nà¹à¸šà¸à¸°à¸”ิน\nà¹à¸šà¹€à¸šà¸²à¸°\nà¹à¸šà¹ˆà¸‡à¹€à¸šà¸²\nà¹à¸šà¹ˆà¸‡à¸›à¸±à¸™\nà¹à¸šà¹ˆà¸‡à¹à¸¢à¸\nà¹à¸šà¸šà¸‰à¸šà¸±à¸š\nà¹à¸šà¸šà¹à¸›à¸¥à¸™\nà¹à¸šà¸šà¹à¸œà¸™\nà¹à¸šà¸šà¸à¸¶à¸à¸«à¸±à¸”\nà¹à¸šà¸šà¸žà¸´à¸¡à¸žà¹Œ\nà¹à¸šà¸šà¸ªà¸à¸šà¸–าม\nà¹à¸šà¸šà¸à¸¢à¹ˆà¸²à¸‡\nà¹à¸šà¸°à¹à¸‰à¸°\nà¹à¸šà¸°à¸—่า\nโบà¹à¸”ง\nโบราณคดี\nโบราณวัตถุ\nโบราณสถาน\nใบขับขี่\nใบจà¸à¸‡\nใบตà¸à¸‡\nใบà¹à¸—รà¸\nใบบà¸à¸\nใบบุà¸\nใบเบิà¸à¸—าง\nใบปลิว\nใบพัด\nใบโพ\nใบไม้\nใบระà¸à¸²\nใบรับรà¸à¸‡\nใบลา\nใบเลี้ยง\nใบสั่ง\nใบสำคัà¸\nใบสุทธิ\nใบเสร็จ\nใบหน้า\nใบà¸à¸™à¸¸à¸à¸²à¸•\nใบระà¸à¸²\nปà¸à¸„รà¸à¸‡\nปà¸à¸„ลุม\nปà¸à¸›à¹‰à¸à¸‡\nปà¸à¸›à¸´à¸”\nปà¸à¸´à¸šà¸±à¸•à¸´à¸à¸²à¸£\nปà¸à¸´à¸šà¸±à¸•à¸´à¸šà¸¹à¸Šà¸²\nปà¸à¸žà¸µà¸§à¸´à¸—ยา\nปà¸à¸¡à¸Œà¸²à¸™\nปà¸à¸¡à¸—ัศน์\nปà¸à¸¡à¹€à¸—ศนา\nปà¸à¸¡à¸™à¸´à¹€à¸—ศ\nปà¸à¸¡à¸žà¸¢à¸²à¸šà¸²à¸¥\nปà¸à¸¡à¸¢à¸²à¸¡\nปà¸à¸¡à¸¤à¸à¸©à¹Œ\nปà¸à¸¡à¸§à¸±à¸¢\nปà¸à¸¡à¸ªà¸¡à¹‚พธิ\nปนเป\nป่นปี้\nปมเขื่à¸à¸‡\nปมเด่น\nปมด้à¸à¸¢\nปรนเปรà¸\nปรบไà¸à¹ˆ\nปรบมืà¸\nปรสิตวิทยา\nประโปรย\nประพรม\nประà¸à¸±à¸™à¸Šà¸µà¸§à¸´à¸•\nประà¸à¸±à¸™à¸ ัย\nประจัà¸à¸©à¹Œà¸žà¸¢à¸²à¸™\nประจัà¸à¸šà¸²à¸™\nประจันหน้า\nประจำà¸à¸²à¸£\nประจำเดืà¸à¸™\nประจำเมืà¸à¸‡\nประจำยาม\nประชดประชัน\nประชาà¸à¸£\nประชาà¸à¸£à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nประชาคม\nประชาชน\nประชาราษฎร์\nประชาชาติ\nประชาชี\nประชาทัณฑ์\nประชาบาล\nประชาพิจารณ์\nประชาภิบาล\nประชามติ\nประชาสงเคราะห์\nประชาสัมพันธ์\nประดับประดา\nประดามี\nประดาน้ำ\nประเดี๋ยวเดียว\nประเดี๋ยวนี้\nประทับใจ\nประทุษร้าย\nประเทศราช\nประพาสต้น\nประเพณีนิยม\nประลัยà¸à¸±à¸¥à¸›à¹Œ\nประวัติà¸à¸²à¸£à¸“์\nประวัติศาสตร์\nประสบà¸à¸²à¸£à¸“์\nประสบà¸à¸²à¸£à¸“์นิยม\nประสาทà¸à¸²à¸£\nประสูติà¸à¸²à¸£\nประสูติà¸à¸²à¸¥\nประเส\nปรับทุà¸à¸‚์\nปรับโทษ\nปรับปรุง\nปราà¸à¸à¸à¸²à¸£à¸“์\nปราดเปรียว\nปราดเปรื่à¸à¸‡\nปราบปราม\nปริà¸à¸à¸²à¸šà¸±à¸•à¸£\nปรัยัติธรรม\nปรุโปร่ง\nปลงใจ\nปลงตà¸\nปลดทุà¸à¸‚์\nปลดปลง\nปลดปล่à¸à¸¢\nปลดเปลื้à¸à¸‡\nปลดระวาง\nปลดà¹à¸à¸\nปล้นสะดม\nปลà¸à¸à¸à¸£à¸°à¸ªà¸¸à¸™\nปลà¸à¸à¸„à¸\nปลà¸à¸”โปร่ง\nปลà¸à¸”ภัย\nปลà¸à¸¡à¸›à¸™\nปลà¸à¸¡à¹à¸›à¸¥à¸‡\nปลà¸à¸šà¹‚ยน\nปล่à¸à¸¢à¹ƒà¸ˆ\nปล่à¸à¸¢à¸•à¸±à¸§\nปล่à¸à¸¢à¸›à¸¥à¸°\nปลั๊à¸à¹„ฟ\nปลาà¸à¸£à¸´à¸¡\nปลาเค็ม\nปลาจ่à¸à¸¡\nปลาเจ่า\nปลาà¹à¸”à¸\nปลาตู้\nปลาทà¸à¸‡\nปลาร้า\nปลาส้ม\nปลาดาว\nปลาบิน\nปลาà¸à¸²\nปลาวาฬ\nปลาหมึà¸\nปลาบปลื้ม\nปลายข้าว\nปลายà¹à¸–ว\nปลายทาง\nปลิ้นปลà¸à¸\nปลิ้นปล้à¸à¸™\nปลีà¸à¸•à¸±à¸§\nปลีà¸à¸¢à¹ˆà¸à¸¢\nปลุà¸à¹ƒà¸ˆ\nปลุà¸à¸›à¸¥à¹‰à¸³\nปลุà¸à¸›à¸±à¹ˆà¸™\nปลุà¸à¸£à¸°à¸”ม\nปลุà¸à¹€à¸ªà¸\nปลูà¸à¸à¸±à¸‡\nปลูà¸à¸ªà¸£à¹‰à¸²à¸‡\nปวดถ่วง\nปวดมวน\nปวดร้าว\nป่วนปั่น\nป่วยà¸à¸²à¸£\nปà¸à¸à¸¥à¸à¸\nป้à¸à¸‡à¸à¸±à¸™\nปัà¸à¹ƒà¸ˆ\nปัà¸à¸”ำ\nปัà¸à¸«à¸¥à¸±à¸\nปัจเจà¸à¸šà¸¸à¸„คล\nปัจเจà¸à¸žà¸¸à¸—ธะ\nปัจเจà¸à¹‚พธิ\nปัจฉิมชน\nปัจฉิมทิศ\nปัจฉิมภาค\nปัจฉิมยาม\nปัจฉิมลิขิต\nปัจฉิมวัย\nปัจฉิมวาจา\nปัà¸à¸à¸²à¸Šà¸™\nปัà¸à¸à¸²à¸§à¸´à¸¡à¸¸à¸•à¸´\nปัà¸à¸à¸²à¸à¹ˆà¸à¸™\nปัดเป่า\nปันส่วน\nปั่นป่วน\nปั่นà¹à¸›à¸°\nปั่นหัว\nปั้นจิ้ม\nปั้นเจ๋à¸\nปั้นปึ่ง\nปั้นสิบ\nปั๊มน้ำมัน\nป่าช้า\nป่าชายเลน\nป่าดง\nป่าดงดิบ\nป่าดิบ\nป่าเถื่à¸à¸™\nป่าเบà¸à¸ˆà¸žà¸£à¸£à¸“\nป่าละเมาะ\nปาà¸à¸à¸²\nปาà¸à¸‚à¸\nปาà¸à¹à¸‚็ง\nปาà¸à¸„à¸\nปาà¸à¸„ำ\nปาà¸à¸„ีบ\nปาà¸à¸ˆà¸±à¸”\nปาà¸à¸™à¹‰à¸³\nปาà¸à¹€à¸›à¸¥à¹ˆà¸²\nปาà¸à¹€à¸ªà¸µà¸¢à¸‡\nปานà¸à¸¥à¸²à¸‡\nป่านนี้\nป้านลม\nป้ายสี\nป่าวร้à¸à¸‡\nปิดฉาà¸\nปิดบัง\nปิตุฆาต\nปิตุภูมิ\nปีมะโว้\nปีà¹à¸ªà¸‡\nปี่à¸à¸¥à¸²à¸‡\nปี่ไฉน\nปี่ชวา\nปี่นà¸à¸\nปี่ใน\nปี่พาทย์\nปี่à¸à¹‰à¸\nปีà¸à¸à¸²\nปีนเà¸à¸¥à¸µà¸¢à¸§\nปีนป่าย\nปึà¸à¹à¸œà¹ˆà¸™\nปึงปัง\nปืนà¸à¸¥\nปืนครà¸\nปืนพà¸\nปืนยา\nปืนยาว\nปืนลม\nปืนเล็à¸\nปืนเล็à¸à¸¢à¸²à¸§\nปืนสั้น\nปืนใหà¸à¹ˆ\nปุบปับ\nปุ๊บปั๊บ\nปุ่มเปืà¸à¸\nปุยà¸à¹‰à¸²à¸¢\nปุ๋ยคà¸à¸\nปุ๋ยเคมี\nปุ๋ยวิทยาศาสตร์\nปุ๋ยหมัà¸\nปุ๋ยà¸à¸´à¸™à¸—รีย์\nปูจ๋า\nปูเสฉวน\nปู่เจ้า\nปู่ทวด\nปูนขาว\nปูนซีเมนต์\nปูนดิบ\nปูนà¹à¸”ง\nปูนปลาสเตà¸à¸£à¹Œ\nปูนปั้น\nเป็ดเทศ\nเป็ดน้ำ\nเป็นà¸à¸¥à¸²à¸‡\nเป็นใจ\nเป็นต้น\nเป็นต่à¸\nเป็นรà¸à¸‡\nเป็นไร\nเป็นลม\nเป็นห่วง\nเป็นà¸à¸¢à¸¹à¹ˆ\nเปรมปรีดิ์\nเปรà¸à¸°à¹€à¸›à¸·à¹‰à¸à¸™\nเปรียบเทียบ\nเปรียบเปรย\nเปรี้ยวปาà¸\nเปรี้ยวหวาน\nเปรื่à¸à¸‡à¸›à¸£à¸²à¸”\nเปลà¸à¸§à¸™\nเปล่งปลั่ง\nเปล่าดาย\nเปล่าเปลี่ยว\nเปลี่ยนใจ\nเปลี่ยนตัว\nเปลี่ยนà¹à¸›à¸¥à¸‡\nเปลี่ยนมืà¸\nเปลี่ยนหน้า\nเป๋à¸à¹€à¸«à¸¥à¸\nเปะปะ\nเป่าà¸à¸š\nเป้านิ่ง\nเป้าหมาย\nเปิดฉาà¸\nเปิดเปิง\nเปิดโปง\nเปิดผนึà¸\nเปิดเผย\nเปียà¸à¸›à¸¹à¸™\nà¹à¸›à¹‰à¸‡à¸ªà¸²à¸¥à¸µ\nà¹à¸›à¹‰à¸‡à¸™à¸§à¸¥\nà¹à¸›à¹‰à¸‡à¹€à¸›à¸µà¸¢à¸\nà¹à¸›à¹‰à¸‡à¸¡à¸±à¸™\nà¹à¸›à¹‰à¸‡à¸à¸¸à¹ˆà¸™\nà¹à¸›à¹‰à¸‡à¸£à¹ˆà¸³\nà¹à¸›à¹‰à¸‡à¸ªà¸´à¸‡à¸„โปร์\nà¹à¸›à¹‰à¸‡à¸«à¸¡à¸µà¹ˆ\nà¹à¸›à¸”ปน\nà¹à¸›à¸”เปื้à¸à¸™\nà¹à¸›à¸£à¸›à¸£à¸§à¸™\nà¹à¸›à¸£à¸œà¸±à¸™\nà¹à¸›à¸£à¸žà¸±à¸à¸•à¸£à¹Œ\nà¹à¸›à¸£à¸£à¸¹à¸›\nà¹à¸›à¸£à¸à¸±à¸à¸©à¸£\nà¹à¸›à¸¥à¸à¸›à¸¥à¸à¸¡\nà¹à¸›à¸°à¹‚ป้ง\nโป้ปด\nโปร่งà¹à¸ªà¸‡\nโปร่งใส\nโปรดปราน\nโปรยทาน\nโปรยปราย\nโปโลน้ำ\nผà¸à¸œà¸±à¸™\nผà¸à¸²à¸à¸£à¸à¸‡\nผงขาว\nผงชูรส\nผงซัà¸à¸Ÿà¸à¸\nผงฟู\nผดุงครรภ์\nผมไฟ\nผลพลà¸à¸¢à¹„ด้\nผลลัพธ์\nผลัดเปลี่ยน\nผลิตผล\nผลิตภัณฑ์\nผลุบโผล่\nผสมเทียม\nผสมผสาน\nผสมผเส\nผสมพันธุ์\nผสมโรง\nผสมเสร็จ\nผ่à¸à¸‡à¹à¸œà¹‰à¸§\nผ่à¸à¸‡à¹ƒà¸ª\nผ่à¸à¸™à¸„ลาย\nผ่à¸à¸™à¸Šà¸³à¸£à¸°\nผ่à¸à¸™à¸›à¸£à¸™\nผ่à¸à¸™à¸œà¸±à¸™\nผ่à¸à¸™à¸ªà¹ˆà¸‡\nผà¸à¸¡à¹‚ซ\nผà¸à¸¡à¹à¸«à¹‰à¸‡\nผัà¸à¸Šà¸µ\nผัà¸à¸•à¸šà¸Šà¸§à¸²\nผัà¸à¸šà¸¸à¹‰à¸‡\nผังเมืà¸à¸‡\nผัดผ่à¸à¸™\nผันà¹à¸›à¸£\nผันผวน\nผ่าตัด\nผ่าเผย\nผ่าหมาà¸\nผ่าเหล่า\nผ้าขนหนู\nผ้าขาวม้า\nผ้าขี้ริ้ว\nผ้าเช็ดตัว\nผ้าเช็ดปาà¸\nผ้าเช็ดมืà¸\nผ้าเช็ดหน้า\nผ้าดิบ\nผ้าต่วน\nผ้าไตร\nผ้าถุง\nผ้าà¹à¸–บ\nผ้านวม\nผ้านุ่ง\nผ้าใบ\nผ้าป่า\nผ้าป่าน\nผ้าผ่à¸à¸™\nผ้าพันคà¸\nผ้าพันà¹à¸œà¸¥\nผ้าà¹à¸žà¸£\nผ้าโพà¸à¸«à¸±à¸§\nผ้ามัดหมี่\nผ้ายาง\nผ้าลูà¸à¹„ม้\nผ้าเหลืà¸à¸‡\nผ้าà¸à¸™à¸²à¸¡à¸±à¸¢\nผ้าà¸à¹‰à¸à¸¡\nผาดโผน\nผาติà¸à¸£à¸£à¸¡\nผิดหวัง\nผิวเผิน\nผิวพรรณ\nผิวหนัง\nผีà¸à¸£à¸°à¸ªà¸·à¸\nผีà¸à¸£à¸°à¸«à¸±à¸‡\nผีà¸à¸à¸‡à¸à¸à¸¢\nผีโขมด\nผีดิบ\nผีตà¸à¸‡à¹€à¸«à¸¥à¸·à¸à¸‡\nผีถ้วยà¹à¸à¹‰à¸§\nผีà¹à¸–น\nผีทะเล\nผีบุà¸\nผีปà¸à¸š\nผีพุ่งไต้\nผีฟ้า\nผีเรืà¸à¸™\nผีสาง\nผีเสื้à¸\nผีห่า\nผึ่งผาย\nผุดผ่à¸à¸‡\nผุดผาด\nผู้คน\nผู้คุม\nผู้จัดà¸à¸²à¸£\nผู้ชาย\nผู้เชี่ยวชาà¸\nผู้ดี\nผู้โดยสาร\nผู้ต้à¸à¸‡à¸‚ัง\nผู้ต้à¸à¸‡à¸«à¸²\nผู้à¹à¸—น\nผู้น้à¸à¸¢\nผู้บริโภค\nผู้บังคับบัà¸à¸Šà¸²\nผู้ปà¸à¸„รà¸à¸‡\nผู้ประà¸à¸à¸šà¸à¸²à¸£\nผู้ป่วย\nผู้พิพาà¸à¸©à¸²\nผู้เยาว์\nผู้ร้าย\nผู้วิเศษ\nผู้สื่à¸à¸‚่าว\nผู้เสียหาย\nผู้หà¸à¸´à¸‡\nผู้ใหà¸à¹ˆ\nผู้ใหà¸à¹ˆà¸šà¹‰à¸²à¸™\nผูà¸à¸‚วัà¸\nผูà¸à¸‚าด\nผูà¸à¸žà¸±à¸™\nผูà¸à¸¡à¸±à¸”\nเผชิà¸à¸«à¸™à¹‰à¸²\nเผด็จà¸à¸²à¸£\nเผด็จศึà¸\nเผยà¹à¸œà¹ˆ\nเผยà¹à¸žà¸£à¹ˆ\nเผละผละ\nเผ่าพันธุ์\nเผื่à¸à¹à¸œà¹ˆ\nà¹à¸œà¸‡à¸¥à¸à¸¢\nà¹à¸œà¸™à¸à¸²à¸£\nà¹à¸œà¸™à¸‡à¸²à¸™\nà¹à¸œà¸™à¸—ี่\nà¹à¸œà¸™à¸œà¸±à¸‡\nà¹à¸œà¸™à¸ าพ\nà¹à¸œà¸™à¸ ูมิ\nà¹à¸œà¹ˆà¸™à¸”ิน\nà¹à¸œà¹ˆà¸™à¹€à¸ªà¸µà¸¢à¸‡\nà¹à¸œà¹‰à¸§à¸žà¸²à¸™\nโผงผาง\nà¸à¸™à¸—à¸à¸‡\nà¸à¸à¸¢à¸—à¸à¸‡\nà¸à¸±à¸à¹à¸„\nà¸à¸±à¸à¸šà¸±à¸§\nà¸à¸±à¸à¸à¹ˆà¸²à¸¢\nà¸à¸±à¸à¹ƒà¸à¹ˆ\nà¸à¸±à¸‡à¹ƒà¸ˆ\nà¸à¸±à¸‡à¸«à¸±à¸§\nà¸à¸²à¸Šà¸µ\nà¸à¸²à¹à¸à¸”\nà¸à¸²à¸¥à¸°à¸¡à¸µ\nà¸à¹ˆà¸²à¸žà¸£à¸°à¸šà¸²à¸—\nà¸à¹ˆà¸²à¸à¸·à¸™\nà¸à¹ˆà¸²à¸Ÿà¸±à¸™\nà¸à¹‰à¸²à¸Ÿà¸²à¸‡\nà¸à¸²à¸à¸•à¸±à¸§\nà¸à¸²à¸à¸à¸±à¸‡\nà¸à¸µà¸”าษ\nà¸à¸µà¸¡à¸°à¸¡à¹ˆà¸§à¸‡\nà¸à¸µà¸ˆà¸±à¸à¸£\nà¸à¸µà¹€à¸—้า\nà¸à¸µà¸›à¸²à¸\nà¸à¸µà¸žà¸²à¸¢\nà¸à¸µà¸¡à¸·à¸\nà¸à¸µà¹€à¸¢à¹‡à¸š\nà¸à¸¶à¸à¸‡à¸²à¸™\nà¸à¸¶à¸à¸›à¸£à¸·à¸\nà¸à¸¶à¸à¸à¸™\nà¸à¸¶à¸à¸ªà¸à¸™\nà¸à¸¶à¸à¸«à¸±à¸”\nà¸à¸·à¸”เคืà¸à¸‡\nใà¸à¹ˆà¸à¸±à¸™\nพงพี\nพงศ์พันธุ์\nพà¸à¸²à¹‚ศà¸\nพà¸à¸²à¹„ฟ\nพบปะ\nพบพาน\nพรสวรรค์\nพรมคด\nพรมà¹à¸”น\nพรมมิ\nพรรคพวà¸\nพรรณราย\nพรวดพราด\nพรหมชาติ\nพรหมลิขิต\nพรหมโลà¸\nพรหมวิหาร\nพร้à¸à¸¡à¹ƒà¸ˆ\nพร้à¸à¸¡à¸žà¸£à¸±à¹ˆà¸‡\nพร้à¸à¸¡à¹€à¸žà¸£à¸µà¸¢à¸‡\nพร้à¸à¸¡à¸¡à¸¹à¸¥\nพร้à¸à¸¡à¸ªà¸£à¸£à¸ž\nพร้à¸à¸¡à¸«à¸™à¹‰à¸²\nพระครู\nพระคุณ\nพระเคราะห์\nพระเครื่à¸à¸‡\nพระเจ้า\nพระเจ้าà¸à¸¢à¸¹à¹ˆà¸«à¸±à¸§\nพระชายา\nพระทัย\nพระนาง\nพระนางเจ้า\nพระเป็นเจ้า\nพระผู้เป็นเจ้า\nพระพิมพ์\nพระพุทธเจ้า\nพระพุทธà¸à¸‡à¸„์\nพระภูมิ\nพระยา\nพระรà¸à¸‡\nพระสนม\nพระสนมเà¸à¸\nพระà¸à¸‡à¸„์\nพระà¸à¸‡à¸„์เจ้า\nพระเà¸à¸\nพรั่งพร้à¸à¸¡\nพรั่งพรู\nพรั่นพรึง\nพร่างพราว\nพรายน้ำ\nพรายà¹à¸žà¸£à¸§\nพราวà¹à¸žà¸£à¸§\nพร่ำพลà¸à¸”\nพร่ำเพรื่à¸\nพร่ำเพ้à¸\nพริà¸à¹„ทย\nพริ้งพราย\nพริ้งเพรา\nพริ้งเพริศ\nพริบตา\nพริ้มพราย\nพริ้มเพรา\nพรุ่งนี้\nพฤติà¸à¸£à¸£à¸¡\nพฤติà¸à¸²à¸£à¸“์\nพฤตินัย\nพลà¸à¸²à¸£\nพลขับ\nพลความ\nพลเมืà¸à¸‡\nพลรบ\nพลร่ม\nพลเรืà¸à¸™\nพลโลà¸\nพลศึà¸à¸©à¸²\nพลบค่ำ\nพลà¸à¸”รัà¸\nพลังงาน\nพลังเงียบ\nพลังจิต\nพลั้งปาà¸\nพลั้งเผลà¸\nพลั้งพลาด\nพลัดถิ่น\nพลัดพราà¸\nพลาดท่า\nพลาดพลั้ง\nพลิà¸à¹à¸žà¸¥à¸‡\nพลีà¸à¸£à¸£à¸¡\nพลุ่งพล่าน\nพวà¸à¸žà¹‰à¸à¸‡\nพวงมาลัย\nพวงมาลา\nพวงหรีด\nพวงคราม\nพวงชมพู\nพวงà¹à¸ªà¸”\nพ่วงพี\nพวยน้ำ\nพวยพุ่ง\nพสà¸à¸™à¸´à¸à¸£\nพหุคูณ\nพหุภาคี\nพหูพจน์\nพหูสูต\nพà¸à¸„วร\nพà¸à¹ƒà¸ˆ\nพà¸à¹ƒà¸Šà¹‰\nพà¸à¹ƒà¸Šà¹‰à¹„ด้\nพà¸à¸”ี\nพà¸à¸•à¸±à¸§\nพà¸à¸—ำเนา\nพà¸à¸›à¸£à¸°à¸¡à¸²à¸“\nพà¸à¹€à¸žà¸µà¸¢à¸‡\nพà¸à¹à¸£à¸‡\nพà¸à¸ªà¸¡à¸„วร\nพà¸à¹€à¸«à¸¡à¸²à¸°\nพ่à¸à¸‚ุน\nพ่à¸à¸„รัว\nพ่à¸à¸•à¸²\nพ่à¸à¸šà¹‰à¸²à¸™\nพ่à¸à¸žà¸±à¸™à¸˜à¸¸à¹Œ\nพ่à¸à¸¡à¹ˆà¸²à¸¢\nพ่à¸à¹€à¸¡à¸·à¸à¸‡\nพ่à¸à¹€à¸¥à¸µà¹‰à¸¢à¸‡\nพ่à¸à¸ªà¸·à¹ˆà¸\nพà¸à¸à¸žà¸¹à¸™\nพ้à¸à¸‡à¸žà¸²à¸™\nพัà¸à¸œà¹ˆà¸à¸™\nพัà¸à¸žà¸´à¸‡\nพัà¸à¸Ÿà¸·à¹‰à¸™\nพัà¸à¸£à¹‰à¸à¸™\nพัà¸à¹à¸£à¸¡\nพัดยศ\nพัดลม\nพันพัว\nพับà¸à¸²à¸™\nพับเพียบ\nพัวพัน\nพาซื่à¸\nพาดพิง\nพิณพาทย์\nพิธีà¸à¸£\nพิธีà¸à¸£à¸£à¸¡\nพิธีà¸à¸²à¸£\nพิธีรีตà¸à¸‡\nพิธีสาร\nพินัยà¸à¸£à¸£à¸¡\nพิมพ์เขียว\nพิมพ์ใจ\nพิมพ์ดีด\nพิษสง\nพี่น้à¸à¸‡\nพี่เบิ้ม\nพี่เลี้ยง\nพึงใจ\nพึงพà¸à¹ƒà¸ˆ\nพึ่งพา\nพึ่งพิง\nพืชพันธุ์\nพืชมงคล\nพื้นà¸à¸²à¸™\nพื้นที่\nพื้นบ้าน\nพื้นเพ\nพื้นเมืà¸à¸‡\nพื้นเสีย\nพุพà¸à¸‡\nพุทธà¸à¸²à¸¥\nพุทธคุณ\nพุทธจัà¸à¸£\nพุทธเจดีย์\nพุทธฎีà¸à¸²\nพุทธปà¸à¸´à¸¡à¸²\nพุทธปà¸à¸´à¸¡à¸²à¸à¸£\nพุทธมามà¸à¸°\nพุทธศัà¸à¸£à¸²à¸Š\nพุทธศาสนิà¸à¸Šà¸™\nพุทธà¸à¸‡à¸„์\nพุทธชาด\nพุทธรัà¸à¸©à¸²\nพุ่มพวง\nพุ่มไม้\nพู่à¸à¸±à¸™\nพูดจา\nเพ่งเล็ง\nเพดานบิน\nเพดานปาà¸\nเพริศพราย\nเพริศพริ้ง\nเพริศà¹à¸žà¸£à¹‰à¸§\nเพรียà¸à¸žà¸£à¹‰à¸à¸‡\nเพรียวลม\nเพลงเชิด\nเพลงยาว\nเพลิงà¸à¸±à¸¥à¸›à¹Œ\nเพลินใจ\nเพลินตา\nเพลี่ยงพล้ำ\nเพ้à¸à¸à¸±à¸™\nเพาะà¸à¸²à¸¢\nเพาะชำ\nเพาะปลูà¸\nเพิà¸à¸–à¸à¸™\nเพิà¸à¹€à¸‰à¸¢\nเพิ่มเติม\nเพิ่มพูน\nเพียงตา\nเพียงพà¸\nเพียบà¹à¸›à¸£à¸°\nเพียบพร้à¸à¸¡\nเพื่à¸à¸™à¹€à¸à¸¥à¸\nเพื่à¸à¸™à¸•à¸²à¸¢\nเพื่à¸à¸™à¸šà¹‰à¸²à¸™\nเพื่à¸à¸™à¸à¸¹à¸‡\nเพื่à¸à¸™à¸¢à¸²à¸\nà¹à¸žà¹‰à¸—้à¸à¸‡\nà¹à¸žà¸£à¹ˆà¸«à¸¥à¸²à¸¢\nà¹à¸žà¸£à¹ˆà¸‡à¸žà¸£à¸²à¸¢\nà¹à¸žà¸£à¸§à¸žà¸£à¸²à¸§\nโพธิà¸à¸²à¸“\nโพธิบัลลังà¸à¹Œ\nโพธิสมภาร\nโพธิสัตว์\nโพ้นทะเล\nโพยภัย\nไพ่ตาย\nไพ่ป๊à¸à¸\nไพรวัน\nไพรสณฑ์\nไพรสัณฑ์\nไพร่พล\nไพร่ฟ้า\nไพร่สม\nไพร่ส่วย\nไพร่หลวง\nฟà¸à¸Šà¹‰à¸³\nฟà¸à¸‡à¹€à¸•à¹‰à¸²à¸«à¸¹à¹‰\nฟà¸à¸‡à¸™à¹‰à¸³\nฟà¸à¸‡à¸¡à¸±à¸™\nฟ้à¸à¸‡à¸à¸¥à¸±à¸š\nฟ้à¸à¸‡à¸£à¹‰à¸à¸‡\nฟà¸à¸™à¹€à¸Ÿà¸°\nฟัà¸à¸—à¸à¸‡\nฟัดเฟียด\nฟันดาบ\nฟันà¸à¹ˆà¸²\nฟันà¹à¸—้\nฟันน้ำนม\nฟันปลา\nฟันฟาง\nฟันเฟืà¸à¸‡\nฟันม้า\nฟันเลื่à¸à¸¢\nฟันหนู\nฟั่นเà¸à¸·à¸\nฟั่นเฟืà¸à¸™\nฟื้นตัว\nฟื้นà¸à¸à¸¢\nฟื้นฟู\nฟุ้งซ่าน\nฟุ้งเฟ้à¸\nฟุ้งเฟื่à¸à¸‡\nฟุตบà¸à¸¥\nฟูฟ่à¸à¸‡\nฟูเฟื่à¸à¸‡\nฟูมฟัà¸\nฟูมฟาย\nเฟะฟะ\nเฟื่à¸à¸‡à¸Ÿà¹‰à¸²\nเฟื่à¸à¸‡à¸Ÿà¸¸à¹‰à¸‡\nเฟื่à¸à¸‡à¸Ÿà¸¹\nไฟฉาย\nไฟà¹à¸Šà¹‡à¸\nไฟธาตุ\nไฟฟ้า\nภัตà¸à¸´à¸ˆ\nภาคทัณฑ์\nภาคพื้น\nภาคเรียน\nภาคภูมิ\nภาพถ่าย\nภาพนิ่ง\nภาพประà¸à¸à¸š\nภาพพจน์\nภาพยนตร์\nภาพลวงตา\nภาพลัà¸à¸©à¸“์\nภายนà¸à¸\nภายใน\nภายหน้า\nภายหลัง\nภารà¸à¸´à¸ˆ\nภารธุระ\nภารโรง\nภารตวิทยา\nภาษาศาสตร์\nภาสà¸à¸£\nภิà¸à¹‚à¸à¸ าพ\nภินชาติ\nภูธร\nภูธเรศ\nภูบาล\nภูเบศ\nภูเบศวร์\nภูเขา\nภูเขาไฟ\nภูผา\nภูตคาม\nภูตบดี\nภูตรูป\nภูเตศวร\nภูมินทร์\nภูมิบาล\nภูมิประเทศ\nภูมิภาค\nภูมิรัà¸à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nภูมิลำเนา\nภูมิศาสตร์\nภูมิà¸à¸²à¸à¸²à¸¨\nภูมิธรรม\nภูมิปัà¸à¸à¸²\nภูมิรู้\nภูมิใจ\nภูมิà¸à¸²à¸™\nภูมิคุ้มà¸à¸±à¸™\nภูมิà¹à¸žà¹‰\nภูษาโยง\nเภทภัย\nเภสัชà¸à¸£\nเภสัชà¸à¸£à¸£à¸¡\nเภสัชวิทยา\nเภสัชศาสตร์\nโภคทรัพย์\nโภคภัณฑ์\nโภชนาà¸à¸£\nโภชนาà¸à¸²à¸£\nมà¸à¸¸à¸Žà¸£à¸²à¸Šà¸à¸¸à¸¡à¸²à¸£\nมงคลà¹à¸à¸”\nมงคลสูตร\nมงคลหัตถี\nมณเฑียรบาล\nมดดำ\nมดà¹à¸”ง\nมดเท็จ\nมดยà¸à¸š\nมดลูà¸\nมธุปายาส\nมธุรส\nมนเทียรบาล\nมนุษย์à¸à¸š\nมโนà¸à¸£à¸£à¸¡\nมโนคติ\nมโนทุจริต\nมโนธรรม\nมโนภาพ\nมโนมัย\nมโนรถ\nมโนรมย์\nมโนสุจริต\nมรรคนายà¸\nมรรคผล\nมฤคชาติ\nมฤคทายวัน\nมฤคราช\nมลทิน\nมลพิษ\nมลสาร\nมวà¸à¹€à¸«à¸¥à¹‡à¸\nม้วนหน้า\nมวยไทย\nมวยปล้ำ\nมวยล้ม\nมวยวัด\nมวยสาà¸à¸¥\nมวยหมู่\nมวลสาร\nมà¸à¸„ราม\nมà¸à¸‹à¸\nมà¸à¸«à¸¡à¸¶à¸\nมà¸à¸‡à¹€à¸¡à¸µà¸¢à¸‡\nมà¸à¸šà¸•à¸±à¸§\nมà¸à¸šà¸«à¸¡à¸²à¸¢\nมà¸à¸¡à¹€à¸¡à¸²\nมะขามเทศ\nมะขามป้à¸à¸¡\nมะขามเปียà¸\nมะเขืà¸à¹€à¸—ศ\nมะเขืà¸à¸žà¸§à¸‡\nมะพร้าวà¹à¸à¹‰à¸§\nมัà¸à¸„ุ้น\nมัà¸à¸ˆà¸µà¹ˆ\nมัà¸à¸‡à¹ˆà¸²à¸¢\nมัà¸à¸™à¹‰à¸à¸¢\nมัà¸à¸¡à¸²à¸\nมัà¸à¹ƒà¸«à¸à¹ˆ\nมั่งคั่ง\nมั่งมี\nมัจจุราช\nมัชฌิมนิà¸à¸²à¸¢\nมัชฌิมประเทศ\nมัชฌิมยาม\nมัชฌิมวัย\nมัดจำ\nมัดหมี่\nมัธยมà¸à¸²à¸¥\nมัธยมศึà¸à¸©à¸²\nมันà¹à¸à¸§\nมันเทศ\nมันà¸à¸£à¸±à¹ˆà¸‡\nมันเปลว\nมันสมà¸à¸‡\nมั่นคง\nมั่นใจ\nมั่นหมาย\nมั่นเหมาะ\nมัวเมา\nมัวหมà¸à¸‡\nมั่วสุม\nม้าเทศ\nม้าน้ำ\nม้ามืด\nม้าเร็ว\nม้าล่à¸\nม้าลาย\nมาà¸à¸¡à¸²à¸¢\nมาตรà¸à¸²à¸£\nมาตรà¸à¸²à¸™\nมาตราส่วน\nมาตุคาม\nมาตุฆาต\nมาตุภูมิ\nม่านตา\nม่านบังตา\nมายาà¸à¸£\nมายาà¸à¸¥\nมายาà¸à¸²à¸£\nมายาวี\nมารผจà¸\nมารวิชัย\nมารสังคม\nมารหัวขน\nมาลาà¸à¸²à¸£\nมิ่งขวัà¸\nมิ่งมิตร\nมิจฉาจาร\nมิจฉาชีพ\nมิดชิด\nมิดเมี้ยน\nมิดหมี\nมิตรจิต\nมิตรภาพ\nมิตรสหาย\nมิน่า\nมีหน้า\nมีดโà¸à¸™\nมีดดาบ\nมีดโต้\nมีดพà¸\nมีดพับ\nมีดสั้น\nมึนงง\nมึนชา\nมึนตึง\nมึนเมา\nมืดครึ้ม\nมืดมน\nมืดมัว\nมืà¸à¸ˆà¸±à¸š\nมืà¸à¸”ี\nมืà¸à¹€à¸•à¸´à¸š\nมืà¸à¸›à¸·à¸™\nมืà¸à¹€à¸›à¸¥à¹ˆà¸²\nมืà¸à¸¡à¸·à¸”\nมืà¸à¸ªà¸à¸‡\nมืà¸à¹€à¸ªà¸·à¸\nมืà¸à¸«à¸™à¸¶à¹ˆà¸‡\nมืà¸à¹ƒà¸«à¸¡à¹ˆ\nมุà¸à¸•à¸¥à¸\nมุขปาà¸à¸°\nมุขมนตรี\nมุ่งมั่น\nมุ่งมาด\nมุ่งหน้า\nมุ่งหมาย\nมุ่งหวัง\nมุ้งลวด\nมุ้งสายบัว\nมุมà¸à¹‰à¸¡\nมุมà¸à¸¥à¸±à¸š\nมุมเงย\nมุมฉาà¸\nมุมตรง\nมุมป้าน\nมุมมืด\nมุมà¹à¸¢à¹‰à¸‡\nมุมสะท้à¸à¸™\nมุมหัà¸à¹€à¸«\nมุมà¹à¸«à¸¥à¸¡\nมุสาวาท\nมูà¸à¹€à¸¥à¸·à¸à¸”\nมูà¸à¸¡à¸±à¸™\nมูà¸à¸«à¸¥à¸§à¸‡\nมูนดิน\nมูลà¸à¸²à¸™\nมูลนาย\nมูลนิธิ\nมูลเหตุ\nมูลค่า\nมูลà¸à¸à¸¢\nเม็ดเงิน\nเม็ดเลืà¸à¸”\nเม็ดโลหิต\nเม่นทะเล\nเมรุมาศ\nเมรุราช\nเมล์à¸à¸²à¸à¸²à¸¨\nเมาดิบ\nเมามัน\nเมามัว\nเมามาย\nเมินเฉย\nเมียน้à¸à¸¢\nเมียหลวง\nเมียงมà¸à¸‡\nเมี่ยงลาว\nเมี่ยงส้ม\nเมื่à¸à¸à¸µà¹‰\nเมื่à¸à¸•à¸°à¸à¸µà¹‰\nเมื่à¸à¹ƒà¸”\nเมื่à¸à¹„ร\nเมื่à¸à¹„หร่\nเมื่à¸à¸™à¸±à¹‰à¸™\nเมืà¸à¸‡à¸‚ึ้น\nเมืà¸à¸‡à¸—่า\nเมืà¸à¸‡à¸™à¸à¸\nเมืà¸à¸‡à¸«à¸¥à¸§à¸‡\nเมื่à¸à¸¢à¸‚บ\nเมื่à¸à¸¢à¸¥à¹‰à¸²\nà¹à¸¡à¹ˆà¸à¸à¸‡\nà¹à¸¡à¹ˆà¸à¸¸à¸à¹à¸ˆ\nà¹à¸¡à¹ˆà¸„ุณ\nà¹à¸¡à¹ˆà¸‡à¸²à¸™\nà¹à¸¡à¹ˆà¹€à¸ˆà¹‰à¸²\nà¹à¸¡à¹ˆà¸Šà¸µ\nà¹à¸¡à¹ˆà¸—ัพ\nà¹à¸¡à¹ˆà¸™à¸¡\nà¹à¸¡à¹ˆà¸™à¹‰à¸³\nà¹à¸¡à¹ˆà¸šà¸—\nà¹à¸¡à¹ˆà¸šà¹‰à¸²à¸™\nà¹à¸¡à¹ˆà¹€à¸šà¸µà¹‰à¸¢\nà¹à¸¡à¹ˆà¸žà¸£à¸°\nà¹à¸¡à¹ˆà¸žà¸´à¸¡à¸žà¹Œ\nà¹à¸¡à¹ˆà¹€à¸žà¸¥à¸‡\nà¹à¸¡à¹ˆà¸¡à¸”\nà¹à¸¡à¹ˆà¸¡à¹ˆà¸²à¸¢\nà¹à¸¡à¹ˆà¹„ม้\nà¹à¸¡à¹ˆà¸¢à¸\nà¹à¸¡à¹ˆà¸¢à¸²à¸¢\nà¹à¸¡à¹ˆà¸£à¹‰à¸²à¸‡\nà¹à¸¡à¹ˆà¹€à¸£à¸·à¸à¸™\nà¹à¸¡à¹ˆà¹à¸£à¸‡\nà¹à¸¡à¹ˆà¹€à¸¥à¹‰à¸²\nà¹à¸¡à¹ˆà¹€à¸¥à¸µà¹‰à¸¢à¸‡\nà¹à¸¡à¹ˆà¸ªà¸µ\nà¹à¸¡à¹ˆà¸ªà¸·à¹ˆà¸\nà¹à¸¡à¹ˆà¹€à¸«à¸¥à¹‡à¸\nà¹à¸¡à¸‡à¸¡à¸¸à¸¡\nà¹à¸¡à¹ˆà¸™à¸¢à¸³\nà¹à¸¡à¸¥à¸‡à¸Šà¹‰à¸²à¸‡\nà¹à¸¡à¸¥à¸‡à¸§à¸±à¸™\nà¹à¸¡à¸¥à¸‡à¸›à¸\nà¹à¸¡à¸¥à¸‡à¸ ู่\nà¹à¸¡à¸¥à¸‡à¹€à¸¡à¹ˆà¸²\nà¹à¸¡à¸§à¹€à¸‹à¸²\nà¹à¸¡à¸§à¸™à¹‰à¸³\nà¹à¸¡à¸§à¸›à¹ˆà¸²\nà¹à¸¡à¸§à¸¡à¸à¸‡\nไม้à¸à¸¥à¸±à¸”\nไม้à¸à¸§à¸²à¸”\nไม้à¸à¸²à¸‡à¹€à¸‚น\nไม้เà¸à¸²à¸«à¸¥à¸±à¸‡\nไม้ขีดไฟ\nไม้จิ้มฟัน\nไม้เด็ด\nไม้ตาย\nไม้ตีพริà¸\nไม้ที\nไม้เท้า\nไม้บรรทัด\nไม้เมตร\nไม้ระà¹à¸™à¸‡\nไม้เรียว\nไม้หมà¸à¸™\nไม้à¸à¸±à¸”\nไม้จัตวา\nไม้ตรี\nไม้ไต่คู้\nไม้โท\nไม้ผัด\nไม้มลาย\nไม้ม้วน\nไม้ยมà¸\nไม้หน้า\nไม้หันà¸à¸²à¸à¸²à¸¨\nไม้เà¸à¸\nยà¸à¸à¸¥à¸µà¸š\nยà¸à¸„รู\nยà¸à¹€à¸„รื่à¸à¸‡\nยà¸à¹€à¸„้า\nยà¸à¸—รง\nยà¸à¸Ÿà¹‰à¸à¸‡\nยà¸à¹€à¸¡à¸†\nยà¸à¸¢à¸\nยà¸à¸¢à¹ˆà¸à¸‡\nยà¸à¹€à¸¥à¸´à¸\nยà¸à¹€à¸§à¹‰à¸™\nย่นย่à¸\nยมทูต\nยมบาล\nยมราช\nยมโลà¸\nยวดยิ่ง\nยวดยาน\nยวนยี\nยวบยาบ\nย่à¸à¸—้à¸\nย่à¸à¸ªà¹ˆà¸§à¸™\nย่à¸à¸«à¸™à¹‰à¸²\nย่à¸à¸«à¸¢à¹ˆà¸à¸™\nยà¸à¸à¸¢à¹‰à¸à¸™\nยà¸à¸‡à¹ƒà¸¢\nย่à¸à¸‡à¹€à¸šà¸²\nย่à¸à¸‡à¹à¸¢à¹ˆà¸‡\nยà¸à¸”เยี่ยม\nยà¸à¸”à¸à¸\nย้à¸à¸™à¸¢à¸à¸\nย้à¸à¸™à¸£à¸à¸¢\nย้à¸à¸™à¸¨à¸£\nย้à¸à¸™à¹à¸ªà¸‡\nย้à¸à¸™à¸«à¸¥à¸±à¸‡\nยà¸à¸šà¹à¸¢à¸š\nยà¸à¸¡à¸„วาม\nย่à¸à¸¡à¹€à¸¢à¸²\nย่à¸à¸¢à¸¢à¸±à¸š\nยัà¸à¸¢à¸à¸\nยัà¸à¸¢à¹‰à¸²à¸¢\nยัà¸à¹€à¸¢à¸·à¹‰à¸à¸‡\nยัà¸à¸à¸£à¸£à¸¡\nยัà¸à¸žà¸´à¸˜à¸µ\nยัดเยียด\nยับเยิน\nยับยั้ง\nยั่วยวน\nยั่วยุ\nยั่วเย้า\nยาà¸à¸§à¸²à¸”\nยาà¸à¸±à¸™à¸¢à¸¸à¸‡\nยาเขียว\nยาใจ\nยาฉุน\nยาชา\nยาซัด\nยาดà¸à¸‡\nยาà¹à¸”ง\nยาถ่าย\nยาธาตุ\nยานัตถุ์\nยาเบื่à¸\nยาโป๊\nยาà¹à¸à¸”\nยาพิษ\nยาระบาย\nยาสลบ\nยาสั่ง\nยาสีฟัน\nยาสูบ\nยาเส้น\nยาเสพติด\nยาหม่à¸à¸‡\nยาเหลืà¸à¸‡\nย่าทวด\nย่านาง\nยาà¸à¹à¸„้น\nยาà¸à¸ˆà¸™\nยาà¸à¹€à¸¢à¹‡à¸™\nยาà¸à¹„ร้\nยางนà¸à¸\nยางใน\nยางมะตà¸à¸¢\nยางมะตูม\nยางลบ\nยางสน\nยางà¸à¸²à¸¢\nย่างà¸à¸£à¸²à¸¢\nย่างเยื้à¸à¸‡\nย่างสด\nย่างสามขุม\nย่างเหยียบ\nยานเà¸à¸£à¸²à¸°\nยานพาหนะ\nยานà¸à¸§à¸à¸²à¸¨\nยานคาง\nยายทวด\nยาวเฟื้à¸à¸¢\nยาวยืด\nยาวเหยียด\nยำทวาย\nยำใหà¸à¹ˆ\nยำเà¸à¸£à¸‡\nยำเยง\nย่ำต๊à¸à¸\nย่ำยี\nย่ำà¹à¸¢à¹ˆ\nยิงเป้า\nยิ่งนัà¸\nยิ่งยวด\nยิ่งใหà¸à¹ˆ\nยินดี\nยินยà¸à¸¡\nยินร้าย\nยิ้มà¸à¸£à¸´à¹ˆà¸¡\nยิ้มà¹à¸‰à¹ˆà¸‡\nยิ้มà¹à¸•à¹‰\nยิ้มà¹à¸›à¹‰à¸™\nยิ้มเผล่\nยิ้มเยาะ\nยิ้มà¹à¸¢à¹‰à¸¡\nยียวน\nยึดครà¸à¸‡\nยึดถืà¸\nยึดมั่น\nยึดเหนี่ยว\nยืดยาด\nยืดยาว\nยืดเยื้à¸\nยืดหยุ่น\nยืดà¸à¸\nยืนà¸à¸£à¸²à¸™\nยืนต้น\nยืนพื้น\nยืนยง\nยืนยัน\nยืนหยัด\nยื้à¸à¸¢à¸¸à¸”\nยุยง\nยุà¹à¸¢à¸‡\nยุà¹à¸«à¸¢à¹ˆ\nยุคลบาท\nยุคเข็à¸\nยุคทà¸à¸‡\nยุคมืด\nยุ่งขิง\nยุ่งยาà¸\nยุ่งเหยิง\nยุติธรรม\nยุทธà¸à¸²à¸£\nยุทธนาวี\nยุทธปัจจัย\nยุทธภัณฑ์\nยุทธภูมิ\nยุทธวิธี\nยุทธศาสตร์\nยุทธหัตถี\nยุทธนาà¸à¸²à¸£\nยุทธนาธิà¸à¸²à¸£\nยุบยับ\nยุบยิบ\nยุพราช\nยู่ยี่\nเย็นเจี๊ยบ\nเย็นใจ\nเย็นฉ่ำ\nเย็นเฉียบ\nเย็นชา\nเย็นชืด\nเย็นตา\nเย็นเยียบ\nเย็นเยืà¸à¸\nเย็นวาบ\nเย็นวูบ\nเย็บà¸à¸µà¹ˆ\nเย็บจัà¸à¸£\nเย็บด้าย\nเย้ยหยัน\nเย้าหยà¸à¸\nเยาะเย้ย\nเยี่ยมà¸à¸£à¸²à¸¢\nเยี่ยมเยียน\nเยี่ยมเยืà¸à¸™\nเยี่ยมยà¸à¸”\nเยื่à¸à¹€à¸„ย\nเยื่à¸à¹ƒà¸¢\nเยืà¸à¸à¹€à¸¢à¹‡à¸™\nเยื้à¸à¸‡à¸à¸£à¸²à¸¢\nเยื้à¸à¸‡à¸¢à¸±à¸\nเยื้à¸à¸‡à¸¢à¹ˆà¸²à¸‡\nà¹à¸¢à¸à¸¢à¹‰à¸²à¸¢\nà¹à¸¢à¸à¹à¸¢à¸°\nà¹à¸¢à¹ˆà¸‡à¸Šà¸´à¸‡\nà¹à¸¢à¸šà¸„าย\nà¹à¸¢à¸šà¸¢à¸¥\nà¹à¸¢à¹‰à¸¡à¸žà¸£à¸²à¸¢\nà¹à¸¢à¹‰à¸¡à¸¢à¸´à¹‰à¸¡\nà¹à¸¢à¹‰à¸¡à¸ªà¸£à¸§à¸¥\nโยเย\nโย้เย้\nโยà¸à¹‚คลง\nโยà¸à¸¢à¹‰à¸²à¸¢\nโยà¸à¹‚ย้\nโยนà¸à¸¥à¸à¸‡\nใยหิน\nรà¸à¸Šà¸±à¸\nรà¸à¸£à¹‰à¸²à¸‡\nรà¸à¹€à¸£à¸µà¹‰à¸¢à¸§\nรà¸à¹€à¸£à¸·à¹‰à¸\nรà¸à¸£à¸²à¸\nรงควัตถุ\nรชนีà¸à¸£\nรถà¸à¸£à¸°à¸šà¸°\nรถเà¸à¹‹à¸‡\nรถเข็น\nรถà¹à¸‚่ง\nรถจัà¸à¸£\nรถจี๊ป\nรถตู้\nรถทัวร์\nรถบรรทุà¸\nรถพ่วง\nรถพยาบาล\nรถไฟ\nรถไฟฟ้า\nรถม้า\nรถเมล์\nรถยนต์\nรถราง\nรถลาà¸\nรถสปà¸à¸£à¹Œà¸•\nรถสิบล้à¸\nรบà¸à¸§à¸™\nรบรา\nรบเร้า\nรมดำ\nร่มเà¸à¸¥à¹‰à¸²\nร่มชูชีพ\nร่มเย็น\nร่มรื่น\nร่วงโรย\nรวงผึ้ง\nรวงรัง\nรวดเร็ว\nรวนเร\nรวบยà¸à¸”\nรวบรวม\nรวบรัด\nรวมพล\nรวมหัว\nร่วมใจ\nร่วมเพศ\nร่วมมืà¸\nร่วมรัà¸\nร่วมสมัย\nรวยริน\nรวยรื่น\nรสชาติ\nรสนิยม\nรà¸à¸‡à¸—้à¸à¸‡\nรà¸à¸‡à¹€à¸—้า\nรà¸à¸‡à¸žà¸·à¹‰à¸™\nร่à¸à¸‡à¸™à¹‰à¸³\nร่à¸à¸‡à¸£à¸à¸¢\nร้à¸à¸‡à¸‚à¸\nร้à¸à¸‡à¸—ุà¸à¸‚์\nร้à¸à¸‡à¹€à¸£à¸µà¸¢à¸™\nร้à¸à¸‡à¸«à¹ˆà¸¡\nร้à¸à¸‡à¹„ห้\nรà¸à¸‡à¸Šà¹‰à¸³\nรà¸à¸‡à¸—รง\nรà¸à¸”ชีวิต\nรà¸à¸”ตัว\nรà¸à¸”ตาย\nรà¸à¸™à¹à¸£à¸¡\nร่à¸à¸™à¹€à¸£à¹ˆ\nร้à¸à¸™à¹ƒà¸ˆ\nร้à¸à¸™à¸•à¸±à¸§\nร้à¸à¸™à¸£à¸™\nร้à¸à¸™à¸£à¸¸à¹ˆà¸¡\nร้à¸à¸™à¸§à¸´à¸Šà¸²\nร้à¸à¸™à¸à¸²à¸ªà¸™à¹Œ\nรà¸à¸šà¸ˆà¸±à¸”\nรà¸à¸šà¹€à¸”ืà¸à¸™\nรà¸à¸šà¸£à¸¹à¹‰\nรà¸à¸¢à¸£à¹‰à¸²à¸§\nร่à¸à¸¢à¸«à¸£à¸\nร้à¸à¸¢à¸¥à¸°\nร้à¸à¸¢à¸à¸£à¸à¸‡\nร้à¸à¸¢à¹à¸à¹‰à¸§\nร้à¸à¸¢à¸«à¸§à¸²à¸¢\nระนาดทุ้ม\nระนาดเà¸à¸\nระเบิดขวด\nระเบิดมืà¸\nระเบียบà¸à¸²à¸£\nรัà¸à¹ƒà¸„ร่\nรัà¸à¸©à¸²à¸à¸²à¸£\nรัà¸à¸©à¸²à¸à¸²à¸£à¸“์\nรังไข่\nรังà¹à¸•à¸™\nรังนà¸\nรังผึ้ง\nรังเพลิง\nรังมด\nรังสรรค์\nรังสฤษà¸à¹Œ\nรั้งรà¸\nรังสีà¹à¸žà¸—ย์\nรังสีวิทยา\nรัชà¸à¸²à¸¥\nรัชทายาท\nรัชนีà¸à¸£\nรัà¸à¸˜à¸£à¸£à¸¡à¸™à¸¹à¸\nรัà¸à¸šà¸²à¸¥\nรัà¸à¸šà¸¸à¸£à¸¸à¸©\nรัà¸à¸›à¸£à¸°à¸¨à¸²à¸ªà¸™à¹Œ\nรัà¸à¸›à¸£à¸°à¸«à¸²à¸£\nรัà¸à¸žà¸´à¸˜à¸µ\nรัà¸à¸¡à¸™à¸•à¸£à¸µ\nรัà¸à¸§à¸´à¸ªà¸²à¸«à¸à¸´à¸ˆ\nรัà¸à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nรัà¸à¸ªà¸ า\nรัดà¸à¸¸à¸¡\nรัดเà¸à¸¥à¹‰à¸²\nรัดตัว\nรัดประคด\nรัดรึง\nรัดรูป\nรัตติà¸à¸²à¸¥\nรับขวัà¸\nรับจ้าง\nรับช่วง\nรับใช้\nรับซื้à¸\nรับทราบ\nรับประà¸à¸±à¸™\nรับประทาน\nรับปาà¸\nรับผิด\nรับผิดชà¸à¸š\nรับฟ้à¸à¸‡\nรับฟัง\nรับมืà¸\nรับรà¸à¸‡\nรับรู้\nรับสมัคร\nรับสั่ง\nรับหน้า\nรับเหมา\nรั่วไหล\nรามืà¸\nร่าเริง\nราà¸à¹à¸à¹‰à¸§\nราà¸à¸‚วัà¸\nราà¸à¸à¸²à¸™\nราà¸à¸Ÿà¸±à¸™\nราà¸à¸¨à¸±à¸žà¸—์\nราà¸à¹€à¸«à¸‡à¹‰à¸²\nร่างà¸à¸²à¸¢\nร่างà¹à¸«\nร้างรา\nราชà¸à¸£à¸“ียà¸à¸´à¸ˆ\nราชà¸à¸²à¸£\nราชà¸à¸´à¸ˆ\nราชครู\nราชà¸à¸²à¸™\nราชทัณฑ์\nราชทินนาม\nราชทูต\nราชธานี\nราชนาวี\nราชบัณฑิต\nราชบัลลังà¸à¹Œ\nราชบาตร\nราชบุตร\nราชปะà¹à¸•à¸™\nราชภัà¸\nราชมัล\nราชยาน\nราชรถ\nราชลัà¸à¸ˆà¸à¸£\nราชเลขาธิà¸à¸²à¸£\nราชเลขานุà¸à¸²à¸£\nราชวงศ์\nราชวัติ\nราชสà¸à¸¸à¸¥\nราชสมบัติ\nราชสาส์น\nราชหัตถเลขา\nราชà¸à¸‡à¸„รัà¸à¸©à¹Œ\nราชโà¸à¸‡à¸à¸²à¸£\nราชาคณะ\nราชาศัพท์\nราชินีนาถ\nร้านชำ\nร้านรวง\nราบคาบ\nราบรื่น\nราบเรียบ\nรายà¸à¸²à¸£\nรายงาน\nรายจ่าย\nรายได้\nรายทาง\nรายรับ\nรายล้à¸à¸¡\nรายละเà¸à¸µà¸¢à¸”\nรายวิชา\nร่ายยาว\nร่ายรำ\nร้ายà¸à¸²à¸ˆ\nร้ายà¹à¸£à¸‡\nราวนม\nราวป่า\nร้าวฉาน\nร้าวราน\nรำพัด\nรำà¹à¸žà¸™\nรำวง\nร่ำไป\nร่ำร้à¸à¸‡\nร่ำเรียน\nร่ำไร\nร่ำลา\nร่ำไห้\nริเริ่ม\nริà¸à¹ˆà¸²à¸™\nริมà¸à¸µà¸›à¸²à¸\nริ้วรà¸à¸¢\nรีบร้à¸à¸™\nรีบรุด\nรีบเร่ง\nรื่นรมย์\nรื่นเริง\nรื้à¸à¸–à¸à¸™\nรื้à¸à¸Ÿà¸·à¹‰à¸™\nรุà¸à¸†à¸²à¸•\nรุà¸à¸£à¸²à¸™\nรุà¸à¸¥à¹‰à¸³\nรุà¸à¹„ล่\nรุ่งขึ้น\nรุ่งà¹à¸ˆà¹‰à¸‡\nรุ่งเช้า\nรุ่งเรืà¸à¸‡\nรุ่งโรจน์\nรุ่งสว่าง\nรุ่งสาง\nรุ่งà¸à¸£à¸¸à¸“\nรุจิเรข\nรุดหน้า\nรุนà¹à¸£à¸‡\nรุมเร้า\nรุมล้à¸à¸¡\nรุ่มรวย\nรุ่มร้à¸à¸™\nรุ่ยร่าย\nรู้à¹à¸à¸§\nรู้ความ\nรู้คุณ\nรู้งาน\nรู้จัà¸\nรู้à¹à¸ˆà¹‰à¸‡\nรู้ใจ\nรู้เชิง\nรู้ตัว\nรู้ทัน\nรู้เท่า\nรู้เรื่à¸à¸‡\nรู้สำนึà¸\nรู้สึà¸\nรู้เห็น\nรูปà¸à¸²à¸£à¸“์\nรูปโฉม\nรูปฌาน\nรูปถ่าย\nรูปทรง\nรูปธรรม\nรูปà¹à¸šà¸š\nรูปพรรณ\nรูปพรหม\nรูปภพ\nรูปภาพ\nรูปร่าง\nรูปสมบัติ\nเร่ร่à¸à¸™\nเร่งด่วน\nเร่งมืà¸\nเร่งรัด\nเร่งรีบ\nเร่งเร้า\nเร้นลับ\nเร่à¸à¸£à¹ˆà¸²\nเร่าร้à¸à¸™\nเราะราย\nเราะร้าย\nเริงใจ\nเริงรมย์\nเริดร้าง\nเริ่มต้น\nเริ่มà¹à¸£à¸\nเรี่ยราด\nเรี่ยไร\nเรียà¸à¸„ืน\nเรียà¸à¸•à¸±à¸§\nเรียà¸à¸£à¹‰à¸à¸‡\nเรียà¸à¸«à¸²\nเรียบร้à¸à¸¢\nเรียงความ\nเรียงตัว\nเรียงเบà¸à¸£à¹Œ\nเรียงพิมพ์\nเรียงเม็ด\nเรียงราย\nเรียนรู้\nเรียบร้à¸à¸¢\nเรียบเรียง\nเรียบวุธ\nเรี่ยมเร้\nเรี่ยวà¹à¸£à¸‡\nเรืà¸à¸à¸¥à¹„ฟ\nเรืà¸à¸à¸à¹à¸¥à¸°\nเรืà¸à¸à¸³à¸›à¸±à¹ˆà¸™\nเรืà¸à¸ˆà¹‰à¸²à¸‡\nเรืà¸à¸”ำน้ำ\nเรืà¸à¹‚ดยสาร\nเรืà¸à¸•à¸£à¸§à¸ˆà¸à¸²à¸£à¸“์\nเรืà¸à¸•à¸±à¸‡à¹€à¸\nเรืà¸à¸˜à¸‡\nเรืà¸à¸™à¸³à¸£à¹ˆà¸à¸‡\nเรืà¸à¸šà¸”\nเรืà¸à¸šà¸´à¸™\nเรืà¸à¹ƒà¸š\nเรืà¸à¸›à¸£à¸°à¸¡à¸‡\nเรืà¸à¸žà¹ˆà¸§à¸‡\nเรืà¸à¸žà¸´à¸†à¸²à¸•\nเรืà¸à¸¢à¸™à¸•à¹Œ\nเรืà¸à¸¢à¸²à¸§\nเรืà¸à¹‚ยง\nเรืà¸à¸£à¸š\nเรืà¸à¸¥à¸²à¸à¸ˆà¸¹à¸‡\nเรืà¸à¸ªà¸³à¸›à¸±à¹‰à¸™\nเรืà¸à¸ªà¸³à¹€à¸ า\nเรืà¸à¸«à¸¥à¸§à¸‡\nเรืà¸à¸«à¸²à¸‡à¸¢à¸²à¸§\nเรืà¸à¸à¸µà¹‚ปง\nเรืà¸à¹€à¸à¸µà¹‰à¸¢à¸¡à¸ˆà¸¸à¹Šà¸™\nเรื้à¸à¸£à¸±à¸‡\nเรืà¸à¸à¸ªà¸§à¸™\nเรืà¸à¸‡à¸™à¸²à¸¡\nเรืà¸à¸‡à¸£à¸à¸‡\nเรืà¸à¸‡à¹à¸ªà¸‡\nเรื่à¸à¸‡à¸£à¸²à¸§\nเรื่à¸à¸‡à¸ªà¸±à¹‰à¸™\nเรืà¸à¸™à¹à¸à¹‰à¸§\nเรืà¸à¸™à¸ˆà¸³\nเรืà¸à¸™à¹€à¸šà¸µà¹‰à¸¢\nเรืà¸à¸™à¹à¸ž\nเรืà¸à¸™à¸«à¸\nเรื่à¸à¸¢à¹€à¸ˆà¸·à¹‰à¸à¸¢\nเรื่à¸à¸¢à¹€à¸‰à¸·à¹ˆà¸à¸¢\nเรื่à¸à¸¢à¹€à¸›à¸·à¹ˆà¸à¸¢\nà¹à¸£à¹€à¸‡à¸²\nà¹à¸£à¸à¸™à¸²\nà¹à¸£à¸à¸™à¸²à¸‚วัà¸\nà¹à¸£à¸‡à¸‡à¸²à¸™\nà¹à¸£à¸‡à¸”ึงดูด\nà¹à¸£à¸‡à¹€à¸—ียน\nà¹à¸£à¸‡à¸¡à¹‰à¸²\nà¹à¸£à¸‡à¹€à¸«à¸§à¸µà¹ˆà¸¢à¸‡\nà¹à¸£à¸¡à¸£à¸à¸™\nà¹à¸£à¸¡à¸£à¸²\nà¹à¸£à¸¡à¹‚รย\nโรคจิต\nโรงครัว\nโรงงาน\nโรงเจ\nโรงเตี๊ยม\nโรงทาน\nโรงนา\nโรงพยาบาล\nโรงพัà¸\nโรงพิมพ์\nโรงเรียน\nโรงเรืà¸à¸™\nโรงà¹à¸£à¸¡\nโรงเลี้ยง\nโรงเลื่à¸à¸¢\nโรงสี\nโรงสีข้าว\nโรงà¸à¸²à¸«à¸²à¸£\nโรมรัน\nโรยรา\nฤชาà¸à¸£\nฤดูà¸à¸²à¸¥\nลงขัน\nลงà¹à¸‚à¸\nลงคà¸\nลงตัว\nลงท้าย\nลงทุน\nลงโทษ\nลงพุง\nลงมืà¸\nลงรัà¸\nลงรà¸à¸¢\nลงà¹à¸£à¸‡\nลงโรง\nลงเà¸à¸¢\nลดตัว\nลดละ\nลดเลี้ยว\nลดหย่à¸à¸™\nลดหลั่น\nลนลาน\nล้นพ้น\nล้นหลาม\nล้นเหลืà¸\nลบล้าง\nลบเลืà¸à¸™\nลบหลู่\nลมà¸à¸£à¸”\nลมค้า\nลมงวง\nลมà¹à¸”ด\nลมทะเล\nลมบà¸\nลมบน\nลมบ้าหมู\nลมปราณ\nลมปาà¸\nลมพิษ\nลมว่าว\nลมเสีย\nลมหนาว\nลมหายใจ\nล่มจม\nล่มสลาย\nล้มละลาย\nล้มลุà¸\nล้มเลิà¸\nล่วงเà¸à¸´à¸™\nล่วงรู้\nล่วงละเมิด\nล่วงลับ\nล่วงล้ำ\nล่วงเลย\nล่วงหน้า\nลวดลาย\nลวดสปริง\nลวดหนาม\nล้วนà¹à¸¥à¹‰à¸§\nลหุโทษ\nล่à¸à¸¥à¸§à¸‡\nล่à¸à¸«à¸¥à¸à¸\nล่à¸à¹à¸«à¸¥à¸¡\nล้à¸à¸•à¹Šà¸à¸\nล้à¸à¹€à¸¥à¸·à¹ˆà¸à¸™\nล้à¸à¹€à¸¥à¹ˆà¸™\nล้à¸à¹€à¸¥à¸µà¸¢à¸™\nล้à¸à¸«à¸¥à¸à¸\nลà¸à¸‡à¹€à¸Šà¸´à¸‡\nลà¸à¸‡à¸”ี\nลà¸à¸‡à¸ ูมิ\nล่à¸à¸‡à¸«à¸™\nลà¸à¸”ช่à¸à¸‡\nล่à¸à¸™à¸ˆà¹‰à¸à¸™\nลà¸à¸šà¸à¸±à¸”\nล้à¸à¸¡à¸§à¸‡\nลà¸à¸¢à¹à¸à¹‰à¸§\nลà¸à¸¢à¸Šà¸²à¸¢\nลà¸à¸¢à¸•à¸±à¸§\nลà¸à¸¢à¸™à¸§à¸¥\nลà¸à¸¢à¹à¸ž\nลà¸à¸¢à¸¥à¸³\nละทิ้ง\nละเลย\nละเว้น\nละครนà¸à¸\nละครใน\nละครเพลง\nละครร้à¸à¸‡\nละครรำ\nละครลิง\nละครสัตว์\nละเà¸à¸µà¸¢à¸”à¸à¹ˆà¸à¸™\nลัà¸à¹„à¸à¹ˆ\nลัà¸à¸žà¸²\nลัà¸à¹€à¸žà¸¨\nลัà¸à¸¢à¸´à¹‰à¸¡\nลัà¸à¸¥à¸à¸š\nลัà¸à¸¥à¸±à¹ˆà¸™\nลัà¸à¸«à¸¥à¸±à¸š\nลัดเลาะ\nลับตา\nลับà¹à¸¥\nลับหลัง\nลาà¸à¸à¸\nล่าช้า\nล่าทัพ\nล้าสมัย\nล้าหลัง\nลาà¸à¸‚้าง\nล้างบาง\nล้างผลาà¸\nลาดเขา\nลาดตระเวน\nลาดเท\nลาดยาง\nลานบิน\nลาภปาà¸\nลาภลà¸à¸¢\nลามปาม\nลามเลีย\nลายคราม\nลายเซ็น\nลายà¹à¸—ง\nลายน้ำ\nลายพร้à¸à¸¢\nลายมืà¸\nลายลัà¸à¸©à¸“์\nลายเส้น\nลำà¸à¸¥à¹‰à¸à¸‡\nลำà¹à¸‚้ง\nลำธาร\nลำà¹à¸ªà¸‡\nลำไส้\nลำตัด\nลำนำ\nล่ำสัน\nล้ำยุค\nล้ำสมัย\nล้ำลึà¸\nล้ำเลิศ\nล้ำเส้น\nล้ำหน้า\nลิงจุ่น\nลิงลม\nลิงโลด\nลิดรà¸à¸™\nลิ้นไà¸à¹ˆ\nลิ้นชัà¸\nลิ้นปี่\nลิ้นควาย\nลิ้นงูเห่า\nลิ้นหมา\nลิบลับ\nลิบลิ่ว\nลิ่มเลืà¸à¸”\nลี้ภัย\nลี้ลับ\nลึà¸à¸‹à¸¶à¹‰à¸‡\nลึà¸à¸¥à¸±à¸š\nลึà¸à¸¥à¹‰à¸³\nลืมตน\nลืมต้น\nลืมตัว\nลืมตา\nลืมเลืà¸à¸™\nลืà¸à¸Šà¸²\nลืà¸à¸Šà¸·à¹ˆà¸\nลืà¸à¸¥à¸±à¹ˆà¸™\nลุล่วง\nลุà¸à¸¥à¸™\nลุà¸à¸¥à¸²à¸¡\nลุà¸à¸¥à¸µà¹‰à¸¥à¸¸à¸à¸¥à¸™\nลุà¸à¸®à¸·à¸\nลุ่มน้ำ\nลุ่มลึà¸\nลุ่มหลง\nลุ่ทาง\nลูà¸à¸à¸£à¸‡\nลูà¸à¸à¸£à¸à¸\nลูà¸à¸à¸£à¸¸à¸‡\nลูà¸à¸à¸¥à¸à¸™\nลูà¸à¸à¸¥à¸´à¹‰à¸‡\nลูà¸à¸à¸§à¸²à¸”\nลูà¸à¸à¸°à¸ˆà¹Šà¸à¸\nลูà¸à¸à¸¸à¸à¹à¸ˆ\nลูà¸à¹€à¸à¸”\nลูà¸à¹à¸à¹‰à¸§\nลูà¸à¸‚นไà¸à¹ˆ\nลูà¸à¸‚่าง\nลูà¸à¸‚ุน\nลูà¸à¹€à¸‚ย\nลูà¸à¸„รึ่ง\nลูà¸à¸„ลื่น\nลูà¸à¸„วาม\nลูà¸à¸„à¸\nลูà¸à¸„้า\nลูà¸à¸„ิด\nลูà¸à¸„ู่\nลูà¸à¸ˆà¹‰à¸²à¸‡\nลูà¸à¸Šà¹‰à¸²à¸‡\nลูà¸à¸Šà¸´à¸”\nลูà¸à¸Šà¸´à¹‰à¸™\nลูà¸à¸Šà¸¸à¸š\nลูà¸à¸‹à¸à¸‡\nลูà¸à¹‚ซ่\nลูà¸à¸”à¸à¸\nลูà¸à¸”ิ่ง\nลูà¸à¸•à¸°à¸à¸±à¹ˆà¸§\nลูà¸à¸•à¸¸à¹‰à¸¡\nลูà¸à¹€à¸•à¹‰à¸²\nลูà¸à¹€à¸•à¹‹à¸²\nลูà¸à¸–้วย\nลูà¸à¸—ุ่ง\nลูà¸à¹€à¸˜à¸\nลูà¸à¸™à¹‰à¸à¸‡\nลูà¸à¸™à¹‰à¸³\nลูà¸à¸™à¸´à¸¡à¸´à¸•\nลูà¸à¸šà¸à¸¥\nลูà¸à¸šà¹‰à¸²à¸™\nลูà¸à¸šà¸²à¸¨à¸à¹Œ\nลูà¸à¸šà¸´à¸”\nลูà¸à¹€à¸šà¸µà¹‰à¸¢à¸§\nลูà¸à¸›à¸£à¸°à¸„บ\nลูà¸à¸›à¸£à¸°à¸„ำ\nลูà¸à¸›à¸±à¸”\nลูà¸à¸›à¸·à¸™\nลูà¸à¹‚ป่ง\nลูà¸à¸œà¸ªà¸¡\nลูà¸à¸œà¸¹à¹‰à¸Šà¸²à¸¢\nลูà¸à¸œà¸¹à¹‰à¸«à¸à¸´à¸‡\nลูà¸à¸žà¸£à¸£à¸„\nลูà¸à¸žà¸µà¹ˆ\nลูà¸à¸Ÿà¸¹à¸\nลูà¸à¹„ฟ\nลูà¸à¸¡à¸·à¸\nลูà¸à¹‚ม่\nลูà¸à¹„ม้\nลูà¸à¸¢à¸²à¹€à¸˜à¸\nลูà¸à¸£à¸à¸\nลูà¸à¸£à¸±à¸‡\nลูà¸à¹€à¸£à¸·à¸\nลูà¸à¸¥à¹‰à¸\nลูà¸à¸¥à¸à¸¢\nลูà¸à¹€à¸¥à¹ˆà¸™\nลูà¸à¹€à¸¥à¸µà¹‰à¸¢à¸‡\nลูà¸à¹‚ลà¸\nลูà¸à¸§à¸±à¸”\nลูà¸à¸¨à¸£\nลูà¸à¸¨à¸´à¸©à¸¢à¹Œ\nลูà¸à¸ªà¸¡à¸¸à¸™\nลูà¸à¸ªà¸°à¹ƒà¸ ้\nลูà¸à¸ªà¸¹à¸š\nลูà¸à¹€à¸ªà¸·à¸\nลูà¸à¸«à¸™à¸±à¸‡\nลูà¸à¸«à¸™à¸µà¹‰\nลูà¸à¸«à¸™à¸¹\nลูà¸à¸«à¸¡à¸²à¸\nลูà¸à¸«à¸¥à¸‡\nลูà¸à¸«à¸¥à¸²à¸™\nลูà¸à¸«à¸²à¸š\nลูà¸à¸«à¸´à¸™\nลูà¸à¹€à¸«à¹‡à¸š\nลูà¸à¹€à¸«à¸¡à¹‡à¸™\nลูà¸à¹à¸«à¸‡à¹ˆ\nลูà¸à¸à¸¡\nลูà¸à¸«à¸¡à¹‰à¸\nลูบคม\nลูบคลำ\nลูบไล้\nเล็à¸à¸™à¹‰à¸à¸¢\nเลขคณิต\nเลขผา\nเลขหมาย\nเล็ดลà¸à¸”\nเล่นงาน\nเล่นà¹à¸‡à¹ˆ\nเล่นชู้\nเล่นตัว\nเล่นลิ้น\nเล่นหัว\nเลนส์นูน\nเลนส์เว้า\nเล็บครุฑ\nเลยเถิด\nเลศนัย\nเล่ห์à¸à¸¥\nเล่ห์เหลี่ยม\nเลà¸à¹‚ฉม\nเลà¸à¸¡à¸²à¸™\nเลà¸à¹€à¸¥à¸´à¸¨\nเลà¸à¸ªà¸£à¸§à¸‡\nเล่à¸à¸¥à¹ˆà¸²\nเลà¸à¸°à¹€à¸¥à¸·à¸à¸™\nเล่าเรียน\nเล่าลืà¸\nเลาะลัด\nเลิà¸à¸£à¸²\nเลิà¸à¸£à¹‰à¸²à¸‡\nเลิà¸à¸¥à¹‰à¸¡\nเลิศเลà¸\nเลี้ยงชีพ\nเลี้ยงดู\nเลี้ยงต้à¸à¸¢\nเลียบเคียง\nเลี้ยวลด\nเลืà¸à¸à¸•à¸±à¹‰à¸‡\nเลืà¸à¸à¹€à¸Ÿà¹‰à¸™\nเลืà¸à¸à¸ªà¸£à¸£\nเลื่à¸à¸‡à¸¥à¸·à¸\nเลืà¸à¸”à¸à¸³à¹€à¸”า\nเลืà¸à¸”เนื้à¸\nเลืà¸à¸”à¸à¸²à¸”\nเลืà¸à¸”เย็น\nเลืà¸à¸”ร้à¸à¸™\nเลืà¸à¸”หมู\nเลืà¸à¸”à¸à¸¸à¹ˆà¸™\nเลืà¸à¸™à¸£à¸²à¸‡\nเลื่à¸à¸™à¹€à¸›à¸·à¹‰à¸à¸™\nเลื่à¸à¸™à¸¥à¸à¸¢\nเลื่à¸à¸¡à¸žà¸£à¸²à¸¢\nเลื่à¸à¸¡à¹ƒà¸ª\nเลื่à¸à¸¢à¸‰à¸¥à¸¸\nเลื่à¸à¸¢à¸¥à¸±à¸™à¸”า\nเลื่à¸à¸¢à¸§à¸‡à¹€à¸”ืà¸à¸™\nเลื้à¸à¸¢à¸„ลาน\nà¹à¸¥à¹€à¸«à¸¥à¸µà¸¢à¸§\nà¹à¸¥à¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™\nà¹à¸¥à¹‰à¸§à¸à¸±à¸™\nà¹à¸¥à¸°à¹€à¸¥à¹‡à¸¡\nโล่งใจ\nโล่งโถง\nโล่งà¸à¸\nโลดเต้น\nโลดโผน\nโลดลิ่ว\nโลดà¹à¸¥à¹ˆà¸™\nไล่ที่\nไล่เบี้ย\nไล่เลี่ย\nไล่เลียง\nไล่หลัง\nไล่à¸à¸à¸\nวà¸à¸§à¸™\nวงà¸à¸š\nวงà¸à¸¥à¸¡\nวงà¸à¸²à¸£\nวงà¹à¸‚น\nวงเงิน\nวงจร\nวงนà¸à¸\nวงใน\nวงรี\nวงเล็บ\nวงเวียน\nวงà¹à¸«à¸§à¸™\nวงศ์วาน\nวจีà¸à¸£à¸£à¸¡\nวจีเภท\nวจีภาค\nวนเวียน\nวà¸à¸”วาย\nว็à¸à¸šà¹à¸§à¹‡à¸š\nวังวน\nวังหน้า\nวังหลวง\nวังหลัง\nวัดราษฎร์\nวัดวา\nวัดหลวง\nวัดผล\nวัดพื้น\nวัตถุนิยม\nวัตถุประสงค์\nวัตรปà¸à¸´à¸šà¸±à¸•à¸´\nวันโà¸à¸™\nวันพระ\nวันเพ็à¸\nวัยรุ่น\nวัยวุฒิ\nว่าà¸à¸¥à¹ˆà¸²à¸§\nว่าจ้าง\nว่าด้วย\nว่าที่\nวางà¸à¹‰à¸²à¸¡\nวางใจ\nวางตัว\nวางตา\nวางโต\nวางท่า\nวางมวย\nวางมาด\nวางมืà¸\nวางวาย\nว่างเปล่า\nว่างเว้น\nวาดเขียน\nว่านเครืà¸\nวาบหวาม\nวายชนม์\nวายปราณ\nวายวาง\nวายวà¸à¸”\nวายร้าย\nวายุภัà¸à¸©à¹Œ\nวาววับ\nวาววาม\nวาวà¹à¸§à¸§\nวาวà¹à¸ªà¸‡\nวิà¸à¸¤à¸•à¸à¸²à¸£à¸“์\nวิà¸à¸¤à¸•à¸´à¸à¸²à¸£à¸“์\nวิà¸à¸¤à¸•à¸à¸²à¸¥\nวิà¸à¸¤à¸•à¸´à¸à¸²à¸¥\nวิà¸à¸¥à¸ˆà¸£à¸´à¸•\nวิงเวียน\nวิ่งเต้น\nวิ่งผลัด\nวิ่งรà¸à¸\nวิ่งราว\nวิจิตรศิลป์\nวิชาà¸à¸²à¸£\nวิชาชีพ\nวิชาธร\nวิà¸à¸à¸¹à¸Šà¸™\nวิดพื้น\nวิตà¸à¸ˆà¸£à¸´à¸•\nวิถีทาง\nวิทยาà¸à¸£\nวิทยาà¸à¸¥\nวิทยาà¸à¸²à¸£\nวิทยาเขต\nวิทยาทาน\nวิทยาธร\nวิทยานิพนธ์\nวิทยาศาสตร์\nวิเทศสัมพันธ์\nวิธีà¸à¸²à¸£\nวินัยธร\nวินัยปิฎà¸\nวินาศà¸à¸£à¸£à¸¡\nวินาศภัย\nวินาศสันตะโร\nวิภัชพยาà¸à¸£à¸“์\nวิภัชวาที\nวิไลวรรณ\nวิสัà¸à¸à¸µà¹à¸žà¸—ย์\nวิสัà¸à¸à¸µà¸ าพ\nวิสัà¸à¸à¸µà¸§à¸´à¸—ยา\nวุฒิบัตร\nวุฒิสภา\nวุฒิสมาชิà¸\nวุ่นวาย\nวุ้นเส้น\nวูบวาบ\nเวจà¸à¸¸à¸Žà¸µ\nเวจมรรค\nเวชà¸à¸£à¸£à¸¡\nเวชภัณฑ์\nเวชศาสตร์\nเวทมนตร์\nเวนคืน\nเวรà¸à¸£à¸£à¸¡\nเวฬุà¸à¸²à¸£\nเวฬุวัน\nเว้าวà¸à¸™\nเวิ้งว้าง\nเวียงวัง\nเวียนเทียน\nà¹à¸§à¹‰à¸‡à¸à¸±à¸”\nà¹à¸§à¸”ล้à¸à¸¡\nà¹à¸§à¸”วง\nà¹à¸§à¹ˆà¸™à¸‚ยาย\nà¹à¸§à¹ˆà¸™à¹à¸„ว้น\nà¹à¸§à¹ˆà¸™à¸•à¸²\nà¹à¸§à¸šà¸§à¸±à¸š\nà¹à¸§à¸§à¸•à¸²\nà¹à¸§à¸§à¸§à¸²à¸¡\nà¹à¸§à¸§à¸§à¸²à¸§\nà¹à¸§à¸°à¹€à¸§à¸µà¸¢à¸™\nโวยวาย\nไวไฟ\nไว้ใจ\nไว้ชื่à¸\nไว้ตัว\nไว้ทุà¸à¸‚์\nไว้ลาย\nไว้หน้า\nไว้à¸à¸²à¸¥à¸±à¸¢\nศนิวาร\nศà¸à¸à¸à¸¥à¸±à¸š\nศà¸à¸à¸à¸³\nศà¸à¸à¸à¸³à¸¡à¸²\nศัà¸à¸”ิ์ศรี\nศัà¸à¸”ิ์สิทธิ์\nศารทวิษุวัติ\nศาลà¹à¸‚วง\nศาลจังหวัด\nศาลชั้นต้น\nศาลฎีà¸à¸²\nศาลเตี้ย\nศาลทหาร\nศาลปà¸à¸„รà¸à¸‡\nศาลพระภูมิ\nศาลเพียงตา\nศาลà¹à¸žà¹ˆà¸‡\nศาลรัà¸à¸˜à¸£à¸£à¸¡à¸™à¸¹à¸\nศาลà¹à¸£à¸‡à¸‡à¸²à¸™\nศาลล้มละลาย\nศาลโลà¸\nศาลสูง\nศาลสูงสุด\nศาลà¸à¸²à¸à¸²\nศาลà¸à¸¸à¸—ธรณ์\nศาลาà¸à¸¥à¸²à¸‡\nศาลาดิน\nศาลาราย\nศาลาวัด\nศิลาฤà¸à¸©à¹Œ\nศิลาà¹à¸¥à¸‡\nศิษย์เà¸à¹ˆà¸²\nศิษย์เà¸à¸\nศีลจุ่ม\nศีลธรรม\nศีลวัต\nศีลà¸à¸”\nศูนย์à¸à¸¥à¸²à¸‡\nศูนย์à¸à¸²à¸£à¸„้า\nศูนย์ถ่วง\nศูนย์สูตร\nศูนย์หน้า\nเศร้าใจ\nเศร้าโศà¸\nเศร้าสร้à¸à¸¢\nเศร้าสลด\nเศร้าหมà¸à¸‡\nเศวตฉัตร\nเศษเà¸à¸´à¸™\nเศษซ้à¸à¸™\nเศษวรรค\nเศษส่วน\nเศษเหล็à¸\nโศà¸à¸™à¸²à¸à¸à¸£à¸£à¸¡\nโศà¸à¸¨à¸±à¸¥à¸¢à¹Œ\nโศà¸à¹€à¸¨à¸£à¹‰à¸²\nโศà¸à¸ªà¸¥à¸”\nสà¸à¸¥à¹‚ลà¸\nส่งเดช\nส่งท้าย\nส่งเสริม\nส่งเสีย\nส่งเสียง\nสงบเงียบ\nสงบเสงี่ยม\nสง่างาม\nสง่าราศี\nสดชื่น\nสดใส\nสตรีเพศ\nสติปัà¸à¸à¸²\nสถลมารค\nสถานà¸à¸‡à¸ªà¸¸à¸¥\nสถานที่\nสถานทูต\nสถานà¸à¸²à¸£à¸“์\nสถานภาพ\nสถิติศาสตร์\nสนตะพาย\nสนใจ\nส้นตีน\nสนธิสัà¸à¸à¸²\nสนนราคา\nสนับà¹à¸‚้ง\nสนับเพลา\nสนับมืà¸\nสนามบิน\nสนามเพลาะ\nสนิทสนม\nสนิมขุม\nสนิมสร้à¸à¸¢\nสนุà¸à¸ªà¸™à¸²à¸™\nสบประมาท\nสบายใจ\nสภาพธรรม\nสมควร\nสมจริง\nสมใจ\nสมนัย\nสมน้ำหน้า\nสมประà¸à¸à¸š\nสมส่วน\nสมหวัง\nสมคบ\nสมทบ\nสมยà¸à¸¡\nสมรัà¸\nสมรู้\nสมสู่\nส้มฉุน\nส้มตำ\nส้มลิ้ม\nส้มà¸à¸¸à¹‰à¸‡\nส้มเช้า\nสมà¸à¸²à¸™à¸²à¸¡\nสมมติà¸à¸²à¸™\nสมมุติà¸à¸²à¸™\nสมมติเทพ\nสมรภูมิ\nสมัครใจ\nสมัยนิยม\nสมุทรศาสตร์\nสมุทรเสนา\nสยดสยà¸à¸‡\nสยà¸à¸‡à¸‚วัà¸\nสยามรัà¸\nสรรหา\nสรวมชีพ\nสรวลเส\nสร้à¸à¸¢à¹€à¸¨à¸£à¹‰à¸²\nสร้างสรรค์\nสร้างเสริม\nสลดใจ\nสลบไสล\nสละสลวย\nสลาเหิน\nสลาà¸à¸ ัต\nสวนครัว\nสวนป่า\nสวนสนุà¸\nสวนหย่à¸à¸¡\nส่วนà¸à¸¥à¸²à¸‡\nส่วนเà¸à¸´à¸™\nส่วนตัว\nส่วนบุà¸\nส่วนà¹à¸šà¹ˆà¸‡\nส่วนประà¸à¸à¸š\nส่วนพระà¸à¸‡à¸„์\nส่วนผสม\nส่วนรวม\nส่วนร่วม\nส่วนลด\nส่วนสัด\nสวมà¸à¸à¸”\nสวมเขา\nสวมรà¸à¸¢\nสวยมภู\nสว่างไสว\nสวามิภัà¸à¸”ิ์\nสวิงสวาย\nสสารนิยม\nส่à¸à¹€à¸ªà¸µà¸¢à¸”\nสà¸à¸”คล้à¸à¸‡\nสà¸à¸”à¹à¸—รà¸\nสà¸à¸”à¹à¸™à¸¡\nสà¸à¸šà¸–าม\nสà¸à¸šà¸—าน\nสà¸à¸šà¹„ล่\nสà¸à¸šà¸ªà¸§à¸™\nส้à¸à¸¡à¹€à¸ªà¸µà¸¢à¸‡\nสะสวย\nสะà¹à¸à¸§à¸±à¸¥à¸¢à¹Œ\nสะà¹à¸à¹à¸ªà¸‡\nสะใจ\nสะเด็ดยาด\nสะเทืà¸à¸™à¹ƒà¸ˆ\nสะบัดช่à¸\nสั่งสม\nสั่งสà¸à¸™\nสั่งเสีย\nสังเà¸à¸•à¸à¸²à¸£à¸“์\nสังคมนิยม\nสังคมวิทยา\nสังคมศาสตร์\nสังคมศึà¸à¸©à¸²\nสังคมสงเคราะห์\nสัà¸à¸à¸²à¸šà¸±à¸•à¸£\nสัดส่วน\nสัตà¸à¸²à¸£\nสัตบุรุษ\nสัตบริภัณฑ์\nสัตภัณฑ์\nสัตมหาสถาน\nสัตโลหะ\nสันเขา\nสันดà¸à¸™\nสันหลัง\nสั่นเทา\nสั่นเทิ้ม\nสันติบาล\nสันติภาพ\nสันติวิธี\nสันติสุข\nสับเปลี่ยน\nสับสน\nสับหลีà¸\nสับหว่าง\nสัมมาคารวะ\nสัมมาชีพ\nส่าเหล้า\nสาà¸à¸à¸°à¹€à¸šà¸·à¸\nสาทิสลัà¸à¸©à¸“์\nสาธุà¸à¸²à¸£\nสาธุชน\nสาบเสืà¸\nสาปสรร\nสาปà¹à¸Šà¹ˆà¸‡\nสาปส่ง\nสามง่าม\nสามล้à¸\nสามเหลี่ยม\nสามเวท\nสามัà¸à¸Šà¸™\nสามัà¸à¸ªà¸³à¸™à¸¶à¸\nสายดิ่ง\nสายดิน\nสายตรวจ\nสายน้ำ\nสายบัว\nสายพาน\nสายฟ้า\nสายยาง\nสายยู\nสายใย\nสายรà¸\nสายรุ้ง\nสายล่à¸à¸Ÿà¹‰à¸²\nสายลับ\nสายเลืà¸à¸”\nสายโลหิต\nสายวัด\nสายส่ง\nสายสวาท\nสายสะดืà¸\nสายสะพาย\nสายสัมพันธ์\nสายสิà¸à¸ˆà¸™à¹Œ\nสายสืบ\nสายไหม\nสายà¸à¸²à¸à¸²à¸¨\nสายตา\nสายหยุด\nสารตรา\nสารประà¸à¸à¸š\nสารละลาย\nสารส้ม\nสารหนู\nสารทฤดู\nสาวใช้\nสาวน้à¸à¸¢\nสาวใหà¸à¹ˆ\nสำนัà¸à¸‡à¸²à¸™\nสำนัà¸à¸žà¸´à¸¡à¸žà¹Œ\nสำนัà¸à¸ªà¸‡à¸†à¹Œ\nสำมะโนครัว\nสำเร็จรูป\nสิà¸à¸‚าบท\nสิงสถิต\nสิงสู่\nสิ่งà¸à¹ˆà¸à¸ªà¸£à¹‰à¸²à¸‡\nสิ่งขà¸à¸‡\nสิ่งปà¸à¸´à¸à¸¹à¸¥\nสิ่งพิมพ์\nสิ่งà¹à¸§à¸”ล้à¸à¸¡\nสิ่งศัà¸à¸”ิ์สิทธิ์\nสิทธิà¸à¸£\nสิทธิ์ขาด\nสิทธิชัย\nสิทธิโชค\nสิทธิบัตร\nสินค้า\nสินจ้าง\nสินเชื่à¸\nสินไถ่\nสินทรัพย์\nสินน้ำใจ\nสินบน\nสินà¹à¸£à¹ˆ\nสินสมรส\nสินสà¸à¸”\nสินไหม\nสิ้นเชิง\nสิ้นสุด\nสีผึ้ง\nสีลม\nสีชà¸à¸¥à¹Œà¸\nสีถ่าน\nสีเทียน\nสีน้ำ\nสีน้ำมัน\nสีโปสเตà¸à¸£à¹Œ\nสีà¸à¸¸à¹ˆà¸™\nสี่เหลี่ยม\nสีหน้า\nสึà¸à¸«à¸£à¸\nสืบทà¸à¸”\nสืบค้น\nสืบสวน\nสืบสาว\nสืบเสาะ\nสื่à¸à¸œà¸ªà¸¡\nสื่à¸à¸¡à¸§à¸¥à¸Šà¸™\nสื่à¸à¸ªà¸²à¸£\nสุà¸à¸‡à¸à¸¡\nสุà¸à¸”ิบ\nสุà¸à¸›à¸¥à¸±à¹ˆà¸‡\nสุà¸à¹ƒà¸ª\nสุขนาà¸à¸à¸£à¸£à¸¡\nสุขภัณฑ์\nสุขภาพ\nสุขลัà¸à¸©à¸“ะ\nสุขวิทยา\nสุขศาลา\nสุขศึà¸à¸©à¸²\nสุดท้าย\nสุตà¸à¸§à¸µ\nสุนทรพจน์\nสุภาพชน\nสู่ขà¸\nสู่รู้\nสู่สม\nสูงส่ง\nสูà¸à¹€à¸›à¸¥à¹ˆà¸²\nสูà¸à¸ªà¸´à¹‰à¸™\nสูà¸à¹€à¸ªà¸µà¸¢\nสูà¸à¸«à¸²à¸¢\nเสสรวล\nเสà¹à¸ªà¸£à¹‰à¸‡\nเสà¸à¸ªà¸£à¸£\nเสถียรภาพ\nเส้นชัย\nเส้นตรง\nเส้นตาย\nเส้นทาง\nเส้นใย\nเส้นรุ้ง\nเส้นเลืà¸à¸”\nเส้นà¹à¸§à¸‡\nเส้นสาย\nเส้นเสียง\nเส้นหมี่\nเส้นเà¸à¹‡à¸™\nเสบียงà¸à¸£à¸±à¸‡\nเสมà¸à¸ าค\nเสมà¸à¸«à¸™à¹‰à¸²\nเสมà¸à¹€à¸«à¸¡à¸·à¸à¸™\nเสมียนตรา\nเสร็จสรรพ\nเสร็จสิ้น\nเสริมส่ง\nเสริมสร้าง\nเสริมสวย\nเสรีไทย\nเสรีธรรม\nเสรีนิยม\nเสรีภาพ\nเสาเข็ม\nเสาธง\nเสียใจ\nเสียเชิง\nเสียดาย\nเสียที\nเสียเที่ยว\nเสียเปรียบ\nเสียเปล่า\nเสียรู้\nเสียà¹à¸£à¸‡\nเสียสละ\nเสียหลัà¸\nเสียหาย\nเสี่ยงทาย\nเสียดà¹à¸—ง\nเสียดà¹à¸—รà¸\nเสียดสี\nเสี้ยนศึà¸\nเสี้ยนหนาม\nเสี้ยมสà¸à¸™\nเสียวซ่าน\nเสียวไส้\nเสืà¸à¸”าว\nเสืà¸à¸”ำ\nเสืà¸à¸›à¸¥à¸²\nเสืà¸à¸›à¹ˆà¸²\nเสืà¸à¹„ฟ\nเสื่à¸à¸à¸\nเสื่à¸à¸à¸£à¸°à¸ˆà¸¹à¸”\nเสื่à¸à¸™à¹‰à¸³à¸¡à¸±à¸™\nเสื่à¸à¸¥à¸³à¹à¸žà¸™\nเสื้à¸à¸à¸¥à¹‰à¸²à¸¡\nเสื้à¸à¸à¸±à¹Šà¸\nเสื้à¸à¹€à¸à¸£à¸²à¸°\nเสื้à¸à¸„รุย\nเสื้à¸à¹à¸ªà¸‡\nเสื้à¸à¹€à¸¡à¸·à¸à¸‡\nเสืà¸à¸à¸„ลาน\nเสืà¸à¸à¸ªà¸™\nเสืà¸à¸à¹„ส\nเสื่à¸à¸¡à¸„ลาย\nเสื่à¸à¸¡à¸–à¸à¸¢\nเสื่à¸à¸¡à¸—ราม\nเสื่à¸à¸¡à¹‚ทรม\nเสื่à¸à¸¡à¸ªà¸¥à¸²à¸¢\nเสื่à¸à¸¡à¸ªà¸¹à¸\nเสื่à¸à¸¡à¹€à¸ªà¸µà¸¢\nเสืà¸à¸«à¸¡à¸à¸š\nà¹à¸ªà¸à¸«à¸™à¹‰à¸²\nà¹à¸ªà¸”งà¸à¸à¸\nà¹à¸ªà¹€à¸–า\nà¹à¸ªà¸™à¸à¸¥\nà¹à¸ªà¸™à¸£à¸¹à¹‰\nà¹à¸ªà¸£à¹‰à¸‡à¸§à¹ˆà¸²\nใส่ความ\nใส่ไคล้\nใส่ใจ\nใส่ไฟ\nไส้à¸à¸£à¸à¸\nไส้ไà¸à¹ˆ\nไส้ติ่ง\nไส้ศึà¸\nไส้à¸à¸±à¹ˆà¸§\nไส้เดืà¸à¸™\nไส้ตัน\nไสยเวท\nไสยศาสตร์\nหà¸à¸¥à¹‰à¸¡\nหงส์หยà¸\nหงà¸à¸™à¹„à¸à¹ˆ\nหงà¸à¸¢à¸à¹‹à¸à¸¢\nหงà¸à¸¢à¹€à¸«à¸‡à¸²\nหงายท้à¸à¸‡\nหงายหลัง\nหงำเหงà¸à¸°\nหงำเหงืà¸à¸\nหดหาย\nหดหู่\nหนทาง\nหนวà¸à¸«à¸¹\nหน่วงเหนี่ยว\nหน่วยà¸à¹‰à¸²à¸™\nหน่à¸à¹„ม้\nหนà¸à¸‡à¹ƒà¸™\nหนà¸à¸‡à¹à¸‹à¸‡\nหนัà¸à¸‚้à¸\nหนัà¸à¹ƒà¸ˆ\nหนัà¸à¹à¸™à¹ˆà¸™\nหนัà¸à¸«à¸™à¹ˆà¸§à¸‡\nหนัà¸à¸«à¸™à¸²\nหนังà¸à¸¥à¸±à¸š\nหนังตะลุง\nหนังเรียด\nหนังสด\nหนังใหà¸à¹ˆ\nหนังสืà¸à¸žà¸´à¸¡à¸žà¹Œ\nหนาà¹à¸™à¹ˆà¸™\nหน้าà¸à¸£à¸°à¸”าน\nหน้าà¸à¸²à¸\nหน้าà¸à¸²à¸¬\nหน้าà¹à¸‚้ง\nหน้าจั่ว\nหน้าฉาน\nหน้าตัà¸\nหน้าตา\nหน้าต่าง\nหน้าท้à¸à¸‡\nหน้าทับ\nหน้าที่\nหน้าที่นั่ง\nหน้าบัน\nหน้าปัด\nหน้าผา\nหน้าผาà¸\nหน้าม้า\nหน้ามุข\nหน้าไม้\nหน้าเลืà¸à¸”\nหน้าà¸à¸\nหนามเตย\nหน่ายหนี\nหน่ายà¹à¸«à¸™à¸‡\nหนาวเหน็บ\nหนำใจ\nหนี้สิน\nหนี้สูà¸\nหนุนเนื่à¸à¸‡\nหนุนหลัง\nหมà¸à¸¡à¸¸à¹ˆà¸™\nหมดจด\nหมà¸à¸‚วัà¸\nหมà¸à¸„วาม\nหมà¸à¹à¸„น\nหมà¸à¸‡à¸¹\nหมà¸à¸”ู\nหมà¸à¸•à¸³à¹à¸¢\nหมà¸à¸—ำขวัà¸\nหมà¸à¸™à¸§à¸”\nหมà¸à¸œà¸µ\nหมà¸à¸¢à¸²\nหมà¸à¸¥à¸³\nหมà¸à¹€à¸ªà¸™à¹ˆà¸«à¹Œ\nหม้à¸à¹à¸à¸‡\nหม้à¸à¸•à¸²à¸¥\nหม้à¸à¸™à¹‰à¸³\nหม้à¸à¹à¸›à¸¥à¸‡\nหมà¸à¸‡à¹ƒà¸ˆ\nหมà¸à¸‡à¸¡à¸±à¸§\nหมà¸à¸‡à¸«à¸¡à¹ˆà¸™\nหมà¸à¸‡à¸«à¸¡à¸²à¸‡\nหมà¸à¸™à¸‚วาน\nหมà¸à¸™à¸‚้าง\nหมà¸à¸™à¸—à¸à¸‡\nหม่à¸à¸¡à¹€à¸ˆà¹‰à¸²\nหม่à¸à¸¡à¸‰à¸±à¸™\nหม่à¸à¸¡à¸£à¸²à¸Šà¸§à¸‡à¸¨à¹Œ\nหม่à¸à¸¡à¸«à¸¥à¸§à¸‡\nหม่à¸à¸¡à¸«à¹‰à¸²à¸¡\nหมั่นไส้\nหมาป่า\nหมาหมู่\nหมาà¸à¸à¸£à¸±à¹ˆà¸‡\nหมาà¸à¸ªà¸‡\nหมาà¸à¸«à¸à¸¡\nหมาà¸à¹€à¸à¹‡à¸š\nหมาà¸à¸£à¸¸à¸\nหมาà¸à¹€à¸¡à¹ˆà¸²\nหมางใจ\nหมางเมิน\nหมาไม้\nหมายเà¸à¸“ฑ์\nหมายขัง\nหมายค้น\nหมายความ\nหมายจับ\nหมายใจ\nหมายตา\nหมายปล่à¸à¸¢\nหมายมั่น\nหมายเรียà¸\nหมายเลข\nหมายเหตุ\nหมิ่นเหม่\nหมึà¸à¸ˆà¸µà¸™\nหมุนเวียน\nหมูà¹à¸”ง\nหมูป่า\nหมูà¹à¸œà¹ˆà¸™\nหมูยà¸\nหมูหย็à¸à¸‡\nหมูหัน\nหมูà¹à¸®à¸¡\nหมู่บ้าน\nหยดย้à¸à¸¢\nหยà¸à¸à¹€à¸¢à¹‰à¸²\nหยัà¸à¸£à¸±à¹‰à¸‡\nหยัà¸à¸¨à¸\nหยั่งทราบ\nหยั่งรู้\nหยั่งเสียง\nหยาบคาย\nหยาบช้า\nหยาบโลน\nหยาบหยาม\nหยิบมืà¸\nหยิบยà¸\nหยิบยืม\nหยิบหย่ง\nหยิบโหย่ง\nหริรัà¸à¸©à¹Œ\nหริวงศ์\nหลงผิด\nหลบฉาà¸\nหลบมุม\nหลวงจีน\nหลวงพ่à¸\nหลวมตัว\nหล่à¸à¸¥à¸·à¹ˆà¸™\nหล่à¸à¹€à¸¥à¸µà¹‰à¸¢à¸‡\nหล่à¸à¸«à¸¥à¸à¸¡\nหลà¸à¸à¸¥à¸§à¸‡\nหลà¸à¸à¸¥à¹ˆà¸\nหลà¸à¸à¸¥à¹‰à¸\nหลà¸à¸”ลม\nหลà¸à¸”เลืà¸à¸”\nหลà¸à¸”à¸à¸²à¸«à¸²à¸£\nหลà¸à¸¡à¸•à¸±à¸§\nหลà¸à¸¡à¹€à¸«à¸¥à¸§\nหลัà¸à¸à¸²à¸£\nหลัà¸à¹€à¸à¸“ฑ์\nหลัà¸à¸Šà¸±à¸¢\nหลัà¸à¸à¸²à¸™\nหลัà¸à¸—รัพย์\nหลัà¸à¹€à¸¡à¸·à¸à¸‡\nหลัà¸à¸¥à¸à¸¢\nหลัà¸à¸ªà¸¹à¸•à¸£\nหลัà¸à¹à¸«à¸¥à¹ˆà¸‡\nหลัà¸à¹à¸«à¸¥à¸¡\nหลังคา\nหลังเต่า\nหลั่งไหล\nหลับนà¸\nหลับใน\nหลาà¸à¹ƒà¸ˆ\nหลาà¸à¸«à¸¥à¸²à¸¢\nหลาบจำ\nหลายหลาà¸\nหลายà¹à¸«à¸¥à¹ˆ\nหลุดพ้น\nหลุดลà¸à¸¢\nหลุดลุ่ย\nหลุมโจน\nหลุมพราง\nหวงà¸à¹‰à¸²à¸‡\nหวงห้าม\nหวงà¹à¸«à¸™\nห่วงใย\nห้วงน้ำ\nหวังใจ\nหวังดี\nหวั่นà¸à¸¥à¸±à¸§\nหวั่นเà¸à¸£à¸‡\nหวั่นใจ\nหวั่นวิตà¸\nหวั่นหวาด\nหวั่นไหว\nหวาดà¸à¸¥à¸±à¸§\nหวาดเà¸à¸£à¸‡\nหวาดผวา\nหวาดเสียว\nหวาดหวั่น\nหวาดไหว\nหวานเย็น\nหว่านล้à¸à¸¡\nหà¸à¸„à¸à¸¢\nหà¸à¸„ำ\nหà¸à¸‰à¸±à¸™\nหà¸à¹„ตร\nหà¸à¸›à¸£à¸°à¸Šà¸¸à¸¡\nหà¸à¸žà¸±à¸\nห่à¸à¸«à¸¡à¸\nห่à¸à¹€à¸«à¸µà¹ˆà¸¢à¸§\nหà¸à¸à¸‹à¸±à¸”\nห้à¸à¸‡à¹€à¸„รื่à¸à¸‡\nห้à¸à¸‡à¸Šà¸¸à¸”\nห้à¸à¸‡à¹à¸–ว\nห้à¸à¸‡à¹‚ถง\nห้à¸à¸‡à¸™à¹‰à¸³\nห้à¸à¸‡à¸ªà¸¡à¸¸à¸”\nหà¸à¸ªà¸¡à¸¸à¸”\nหà¸à¸¡à¸«à¸§à¸™\nห้à¸à¸¡à¸¥à¹‰à¸à¸¡\nห้à¸à¸¢à¹‚หน\nหัà¸à¸¥à¹‰à¸²à¸‡\nหัà¸à¸«à¸²à¸\nหัà¸à¸«à¹‰à¸²à¸¡\nหัà¸à¹€à¸«\nหัà¸à¹‚หม\nหัà¸à¸¡à¸¸à¸\nหันเห\nหับเผย\nหัวขโมย\nหัวข้à¸\nหัวขั้ว\nหัวเข่า\nหัวโขน\nหัวคะà¹à¸™à¸™\nหัวค่ำ\nหัวคิด\nหัวจุà¸\nหัวโจà¸\nหัวใจ\nหัวเทียน\nหัวนม\nหัวนà¸à¸™\nหัวป่า\nหัวมุม\nหัวเรื่à¸à¸‡\nหัวà¹à¸£à¹‰à¸‡\nหัวใส\nหัวหน้า\nหัวหน่าว\nหัวหà¸à¸\nหัวเห็ด\nหัวไหล่\nหัวà¸à¸\nหัสดนตรี\nหัสนาà¸à¸à¸£à¸£à¸¡\nหัสนิยาย\nหัสดีลิงค์\nหางเครื่à¸à¸‡\nหางà¹à¸–ว\nหางเลข\nหางว่าว\nหางเสียง\nหางเสืà¸\nห่างเหิน\nหาบเร่\nห้ามปราม\nห้ามล้à¸\nหายตัว\nหาวนà¸à¸™\nห้าวหาà¸\nห้ำหั่น\nหินงà¸à¸\nหินทราย\nหินปูน\nหินย้à¸à¸¢\nหินà¸à¹ˆà¸à¸™\nหินชาติ\nหินยาน\nหีบเพลง\nหีบห่à¸\nหุ่นà¸à¸£à¸°à¸šà¸à¸\nหุ่นยนต์\nหุ้นลม\nหุ้นส่วน\nหุบเขา\nหุบผา\nหุบเหว\nหูà¸à¸£à¸°à¸•à¹ˆà¸²à¸¢\nหูช้าง\nหูรูด\nหูà¸à¸§à¸²à¸‡\nเหงาหงà¸à¸¢\nเหงื่à¸à¸à¸²à¸¬\nเหตุà¸à¸²à¸£à¸“์\nเหตุผล\nเห็นà¹à¸à¹ˆ\nเห็นใจ\nเหน็บà¹à¸™à¸¡\nเหน็บชา\nเหนียวà¹à¸™à¹ˆà¸™\nเหนี่ยวนำ\nเหนี่ยวรั้ง\nเหนื่à¸à¸¢à¸«à¸™à¹ˆà¸²à¸¢\nเหมาะเจาะ\nเหมาะสม\nเหมาะเหม็ง\nเหยเà¸\nเหยียดหยาม\nเหล็à¸à¸à¸¥à¹‰à¸²\nเหล็à¸à¸ˆà¸²à¸£\nเหล็à¸à¹ƒà¸™\nเหล็à¸à¸ªà¹ˆà¸‡\nเหล็à¸à¹€à¸ªà¹‰à¸™\nเหล็à¸à¸«à¸¥à¹ˆà¸\nเหล็à¸à¹„หล\nเหลวà¹à¸«à¸¥à¸\nเหลวไหล\nเหลà¸à¸«à¸¥à¸²\nเหล่าà¸à¸\nเหลียวà¹à¸¥\nเหลืà¸à¹€à¸à¸´à¸™\nเหลืà¸à¸‚à¸\nเหลืà¸à¹ƒà¸ˆ\nเหลืà¸à¹€à¸Šà¸·à¹ˆà¸\nเหลืà¸à¹€à¸Ÿà¸·à¸\nเหลืà¸à¸£à¹‰à¸²à¸¢\nเหลืà¸à¸¥à¹‰à¸™\nเหลืà¸à¸«à¸¥à¸²à¸¢\nเหลืà¸à¹à¸«à¸¥à¹ˆ\nเหลืà¸à¹à¸ªà¸™\nเหลืà¸à¸«à¸¥à¸\nเหลื่à¸à¸¡à¸¥à¹‰à¸³\nเห่à¸à¹€à¸«à¸´à¸¡\nเหินห่าง\nเหิมเà¸à¸£à¸´à¸¡\nเหิมหาà¸\nเหี้ยมเà¸à¸£à¸µà¸¢à¸¡\nเหี้ยมหาà¸\nเหี้ยมโหด\nเหี่ยวà¹à¸«à¹‰à¸‡\nเหืà¸à¸”หาย\nเหืà¸à¸”à¹à¸«à¹‰à¸‡\nà¹à¸«à¹ˆà¹à¸«à¸™\nà¹à¸«à¸™à¸‡à¸«à¸™à¹ˆà¸²à¸¢\nà¹à¸«à¸¥à¸à¸¥à¸²à¸\nà¹à¸«à¸¥à¸à¹€à¸«à¸¥à¸§\nà¹à¸«à¸§à¸à¹à¸™à¸§\nà¹à¸«à¸§à¸à¸§à¹ˆà¸²à¸¢\nโหงพราย\nโหดร้าย\nโหดเหี้ยม\nโหยหวน\nโหวงเหวง\nให้à¸à¸²à¸£\nให้ท่า\nให้ท้าย\nให้ร้าย\nให้หลัง\nไหมพรม\nไหวพริบ\nà¸à¸à¹„à¸à¹ˆ\nà¸à¸à¸£à¹ˆà¸à¸‡\nà¸à¸‡à¸„์à¸à¸£\nà¸à¸‡à¸„์à¸à¸²à¸£\nà¸à¸”à¸à¸¥à¸±à¹‰à¸™\nà¸à¸”ทน\nà¸à¸”สู\nà¸à¸”à¸à¸¢à¸²à¸\nà¸à¸”à¸à¸à¸¡\nà¸à¸”ีตà¸à¸²à¸¥\nà¸à¸”ีตชาติ\nà¸à¸”ีตภพ\nà¸à¸•à¸´à¸Šà¸²à¸•à¸šà¸¸à¸•à¸£\nà¸à¸˜à¸´à¸à¸²à¸£à¸šà¸”ี\nà¸à¸™à¸²à¸„ตà¸à¸²à¸¥\nà¸à¸™à¸´à¸ˆà¸à¸£à¸£à¸¡\nà¸à¸™à¸¸à¸Šà¸²à¸•à¸šà¸¸à¸•à¸£\nà¸à¹€à¸™à¸à¸›à¸£à¸°à¸ªà¸‡à¸„์\nà¸à¸šà¸£à¸¡\nà¸à¸šà¸à¸§à¸¥\nà¸à¸šà¸à¹‰à¸²à¸§\nà¸à¸šà¸à¸¸à¹ˆà¸™\nà¸à¸šà¸²à¸¢à¸ ูมิ\nà¸à¸šà¸²à¸¢à¸¡à¸¸à¸‚\nà¸à¸ ัพบุคคล\nà¸à¸ ัยทาน\nà¸à¸ ัยโทษ\nà¸à¸ ิชาตบุตร\nà¸à¸¡à¸¢à¸´à¹‰à¸¡\nà¸à¸¡à¸£à¸£à¸±à¸•à¸™à¹Œ\nà¸à¸¡à¸¤à¸•à¸šà¸—\nà¸à¸¡à¸¤à¸•à¸£à¸ª\nà¸à¸¢à¹ˆà¸²à¸‡à¹„ร\nà¸à¸£à¸£à¸–à¸à¸£\nà¸à¸£à¸£à¸–à¸à¸§à¸µ\nà¸à¸£à¸£à¸–คดี\nà¸à¸£à¸£à¸–ประโยชน์\nà¸à¸£à¸£à¸–รส\nà¸à¸£à¸£à¸˜à¸™à¸´à¸¨à¸²\nà¸à¸£à¸£à¸˜à¸ าค\nà¸à¸£à¸£à¸˜à¸ªà¸£à¸°\nà¸à¸£à¸ªà¸¸à¸¡à¸žà¸¥\nà¸à¸£à¸¹à¸›à¸Œà¸²à¸™\nà¸à¸£à¸¹à¸›à¸žà¸£à¸«à¸¡\nà¸à¸£à¸¹à¸›à¸ พ\nà¸à¸£à¸¹à¸›à¸ ูมิ\nà¸à¸§à¸Šà¸²à¸•à¸šà¸¸à¸•à¸£\nà¸à¸§à¸”ดี\nà¸à¸§à¸”à¸à¹‰à¸²à¸‡\nà¸à¹‰à¸§à¸™à¸—้วน\nà¸à¹‰à¸§à¸™à¸žà¸µ\nà¸à¸§à¸šà¸à¸±à¹‹à¸™\nà¸à¸§à¸¢à¸Šà¸±à¸¢\nà¸à¸§à¸¢à¸žà¸£\nà¸à¸ªà¸¸à¸ à¸à¸£à¸£à¸¡à¸à¸²à¸™\nà¸à¸ªà¸¸à¸ สัà¸à¸à¸²\nà¸à¹‚หสิà¸à¸£à¸£à¸¡\nà¸à¸à¹€à¸ˆà¹‰à¸²\nà¸à¸à¸à¹à¸‚à¸\nà¸à¸à¸à¸•à¸±à¸§\nà¸à¸à¸à¹‚รง\nà¸à¸à¸à¸¤à¸—ธิ์\nà¸à¸à¸à¸¥à¸²à¸¢\nà¸à¸à¸à¸«à¸²à¸\nà¸à¸à¸”à¸à¹‰à¸à¸™\nà¸à¸à¸”à¹à¸à¸”\nà¸à¹ˆà¸à¸™à¸‚้à¸\nà¸à¹ˆà¸à¸™à¹ƒà¸ˆ\nà¸à¹ˆà¸à¸™à¸Šà¹‰à¸à¸¢\nà¸à¹ˆà¸à¸™à¸™à¹‰à¸à¸¡\nà¸à¹ˆà¸à¸™à¹€à¸›à¸¥à¸µà¹‰à¸¢\nà¸à¹ˆà¸à¸™à¹€à¸žà¸¥à¸µà¸¢\nà¸à¹ˆà¸à¸™à¹‚ยน\nà¸à¹ˆà¸à¸™à¸«à¸§à¸²à¸™\nà¸à¹ˆà¸à¸™à¸«à¸±à¸”\nà¸à¹ˆà¸à¸™à¹„หว\nà¸à¹ˆà¸à¸™à¹à¸\nà¸à¹‰à¸à¸™à¸§à¸à¸™\nà¸à¹‰à¸à¸™à¸à¸à¸”\nà¸à¹‰à¸à¸¡à¸„้à¸à¸¡\nà¸à¸±à¸à¸©à¸£à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nà¸à¸±à¸à¸©à¸£à¸ªà¸²à¸ªà¹Œà¸™\nà¸à¸±à¸„คีภัย\nà¸à¸±à¸à¸Šà¸™à¸°à¸¨à¸±à¸à¸£à¸²à¸Š\nà¸à¸±à¸”ฉีด\nà¸à¸±à¸”à¸à¸±à¹‰à¸™\nà¸à¸±à¸•à¸£à¸²à¸ªà¹ˆà¸§à¸™\nà¸à¸±à¸™à¹‚ตชน\nà¸à¸±à¸™à¹‚ตนาที\nà¸à¸±à¸šà¸ˆà¸™\nà¸à¸±à¸šà¹€à¸‰à¸²\nà¸à¸±à¸šà¸à¸²à¸¢\nà¸à¸±à¸ªà¸ªà¸¸à¸Šà¸¥\nà¸à¸±à¸ªà¸ªà¸¸à¸˜à¸²à¸£à¸²\nà¸à¸²à¸à¸±à¸›à¸à¸´à¸£à¸´à¸¢à¸²\nà¸à¸²à¸à¸²à¸£à¸™à¸²à¸¡\nà¸à¸²à¸à¸²à¸¨à¸˜à¸²à¸•à¸¸\nà¸à¸²à¸à¸²à¸¨à¸¢à¸²à¸™\nà¸à¸²à¸„ารชุด\nà¸à¹ˆà¸²à¸‡à¹€à¸à¹‡à¸šà¸™à¹‰à¸³\nà¸à¹‰à¸²à¸‡à¸à¸´à¸‡\nà¸à¸²à¸ˆà¸«à¸²à¸\nà¸à¸²à¸ˆà¸à¸‡\nà¸à¸²à¸Šà¸à¸²à¸à¸£\nà¸à¸²à¸Šà¸à¸²à¸à¸£à¸£à¸¡\nà¸à¸²à¸Šà¸à¸²à¸šà¸±à¸•à¸£\nà¸à¸²à¸Šà¸à¸²à¸ªà¸´à¸—ธิ์\nà¸à¸²à¸à¸²à¸ªà¸´à¸—ธิ์\nà¸à¸²à¸“าเขต\nà¸à¸²à¸“าจัà¸à¸£\nà¸à¸²à¸“านิคม\nà¸à¸²à¸“าประโยชน์\nà¸à¸²à¹‚ปà¸à¸ªà¸´à¸“\nà¸à¸²à¹‚ปธาตุ\nà¸à¸²à¸ าà¸à¸£\nà¸à¸²à¸¢à¸¸à¸‚ัย\nà¸à¸²à¸¢à¸¸à¸§à¸±à¸’นะ\nà¸à¸²à¹‚ลà¸à¸à¸ªà¸´à¸“\nà¸à¸²à¸«à¸²à¸£à¸§à¹ˆà¸²à¸‡\nà¸à¸³à¸žà¸£à¸²à¸‡\nà¸à¸´à¸”โรย\nà¸à¸´à¸”à¸à¸à¸”\nà¸à¸´à¸”เà¸à¸·à¹‰à¸à¸™\nà¸à¸´à¸•à¸–ีลิงค์\nà¸à¸´à¸—ธิปาà¸à¸´à¸«à¸²à¸£à¸´à¸¢à¹Œ\nà¸à¸´à¸—ธิพล\nà¸à¸´à¸—ธิฤทธิ์\nà¸à¸´à¸™à¸±à¸‡à¸‚ังขà¸à¸š\nà¸à¸´à¹ˆà¸¡à¸•à¸±à¸§\nà¸à¸´à¹ˆà¸¡à¸«à¸™à¸³\nà¸à¸´à¹ˆà¸¡à¹€à¸à¸¡\nà¸à¸´à¹ˆà¸¡à¹€à¸à¸´à¸š\nà¸à¸µà¸‰à¸±à¸™\nà¸à¸µà¸•à¸±à¸§\nà¸à¸¶à¸‡à¸„ะนึง\nà¸à¸¶à¸‡à¸¡à¸µà¹ˆ\nà¸à¸¶à¸‡à¸à¸¥\nà¸à¸¶à¹ˆà¸‡à¸¢à¸²à¸‡\nà¸à¸¶à¹ˆà¸‡à¸à¹ˆà¸²à¸‡\nà¸à¸¶à¸”ใจ\nà¸à¸¶à¸”à¸à¸±à¸”\nà¸à¸·à¸”à¸à¸²à¸”\nà¸à¸·à¹‰à¸à¸‰à¸²à¸§\nà¸à¸·à¹‰à¸à¸‹à¹ˆà¸²\nà¸à¸·à¹‰à¸à¸à¸¶à¸‡\nà¸à¸¸à¸à¸‰à¸à¸£à¸£à¸ˆà¹Œ\nà¸à¸¸à¸à¸à¸²à¸ˆ\nà¸à¸¸à¸”à¸à¸¹à¹‰\nà¸à¸¸à¹ˆà¸™à¹€à¸„รื่à¸à¸‡\nà¸à¸¸à¹ˆà¸™à¹ƒà¸ˆ\nà¸à¸¸à¸šà¸à¸´à¸š\nà¸à¸¸à¸šà¸±à¸•à¸´à¸ ัย\nà¸à¸¸à¸šà¸±à¸•à¸´à¹€à¸«à¸•à¸¸\nà¸à¸¸à¹‚บสถà¸à¸£à¸£à¸¡\nà¸à¸¸à¹‚บสถหัตถี\nà¸à¸¸à¸›à¸¡à¸²à¹‚วหาร\nà¸à¸¸à¹‰à¸¡à¸Šà¸¹\nà¸à¸¸à¹‰à¸¡à¸ªà¸¡\nà¸à¸¸à¹‰à¸¢à¸à¹‰à¸²à¸¢\nà¸à¸¹à¹‰à¸à¸µà¹‰\nเà¸à¸à¸ˆà¸´à¸•\nเà¸à¸à¸‰à¸±à¸™à¸—์\nเà¸à¸à¸Šà¸™\nเà¸à¸à¹€à¸—ศ\nเà¸à¸à¸™à¸±à¸¢\nเà¸à¸à¸šà¸¸à¸„คล\nเà¸à¸à¸šà¸¸à¸£à¸¸à¸©\nเà¸à¸à¸žà¸ˆà¸™à¹Œ\nเà¸à¸à¸ พ\nเà¸à¸à¸ าพ\nเà¸à¸à¸¡à¸±à¸¢\nเà¸à¸à¸£à¸²à¸Š\nเà¸à¸à¸£à¸¹à¸›\nเà¸à¸à¸¥à¸±à¸à¸©à¸“์\nเà¸à¸à¸¨à¸\nเà¸à¸à¸ªà¸²à¸£\nเà¸à¸à¸ªà¸´à¸—ธิ์\nเà¸à¸à¸à¸¸\nเà¸à¹‡à¸”à¸à¸¶à¸‡\nเà¸à¸™à¹€à¸à¸µà¸¢à¸‡\nเà¸à¸¡à¸à¸£\nเà¸à¸à¸à¸§à¸¢\nเà¸à¸à¸à¸\nเà¸à¸²à¸à¸²à¸£\nเà¸à¸²à¸‡à¸²à¸™\nเà¸à¸²à¸ˆà¸£à¸´à¸‡\nเà¸à¸²à¹ƒà¸ˆ\nเà¸à¸²à¹€à¸›à¸£à¸µà¸¢à¸š\nเà¸à¸²à¹€à¸¢à¸µà¹ˆà¸¢à¸‡\nเà¸à¸´à¸šà¸à¸²à¸š\nเà¸à¸µà¸¢à¸‡à¸à¸²à¸¢\nเà¸à¸µà¸¢à¸‡à¹€à¸à¸™\nเà¸à¸·à¹‰à¸à¹€à¸Ÿà¸·à¹‰à¸\nโà¸à¹ˆà¹‚ถง\nโà¸à¹‰à¹‚ถง\nโà¸à¹ˆà¸à¸§à¸”\nโà¸à¹‰à¸à¸§à¸”\nโà¸à¹ˆà¸à¹ˆà¸²\nโà¸à¹‰à¹‚ลม\nโà¸à¸”ครวà¸\nโà¸à¸”โà¸à¸¢\nโà¸à¸™à¸à¹ˆà¸à¸™\nโà¸à¸™à¹€à¸à¸™\nโà¸à¸šà¸à¹‰à¸à¸¡\nโà¸à¸šà¸à¸¸à¹‰à¸¡\nโà¸à¸ªà¸–à¸à¸£à¸£à¸¡\nไà¸à¹€à¸ªà¸µà¸¢\nไà¸à¸à¸£à¸™\nฮวบฮาบ\nฮาป่า\nฮึà¸à¸«à¸²à¸\nฮึà¸à¸«à¹‰à¸²à¸§\nฮึà¸à¹€à¸«à¸´à¸¡\nฮึà¸à¹‚หม\nฮึà¸à¸®à¸±à¸\nเฮงซวย\nโฮà¸à¸®à¸·à¸\nโฮà¸à¸®à¸²à¸\n\nà¸à¹‡\nà¸à¸\nà¸à¹Šà¸\nà¸à¸à¸¸à¸˜à¸ ัณฑ์\nà¸à¸‡\nà¸à¹ˆà¸‡\nà¸à¹‰à¸‡\nà¸à¹Šà¸‡\nà¸à¹‹à¸‡\nà¸à¸‡à¸à¸à¸™\nà¸à¸‡à¹„ฉ่\nà¸à¸‡à¹€à¸•à¹Šà¸\nà¸à¸‡à¸ªà¸µ\nà¸à¸‡à¸ªà¸¸à¸¥\nà¸à¸Š\nà¸à¸Ž\nà¸à¸à¸¸à¸\nà¸à¸à¸´à¸™\nà¸à¸“ิà¸à¸™à¸±à¸™à¸•à¹Œ\nà¸à¸“ิà¸à¸²à¸£à¹Œ\nà¸à¸”\nà¸à¸•à¹€à¸§à¸—ิตา\nà¸à¸•à¹€à¸§à¸—ี\nà¸à¸•à¸±à¸à¸Šà¸¥à¸µ\nà¸à¸•à¸±à¸à¸à¸¸à¸•à¸²\nà¸à¸•à¸±à¸à¸à¸¹\nà¸à¸•à¸²à¸˜à¸´à¸à¸²à¸£\nà¸à¸•à¸²à¸ ินิหาร\nà¸à¸•à¸´à¸à¸²\nà¸à¸–า\nà¸à¸–ิà¸à¸²à¸ˆà¸²à¸£à¸¢à¹Œ\nà¸à¸—ลี\nà¸à¸™\nà¸à¹ˆà¸™\nà¸à¹‰à¸™\nà¸à¸™à¸\nà¸à¸™à¸´à¸©à¸à¹Œ\nà¸à¸™à¸´à¸©à¸à¸²\nà¸à¸š\nà¸à¸šà¸\nà¸à¸šà¸”าน\nà¸à¸šà¸—ู\nà¸à¸šà¸²à¸¥\nà¸à¸šà¸´à¸™à¸—ร์\nà¸à¸šà¸´à¸¥\nà¸à¸šà¸µà¹ˆ\nà¸à¸šà¸¹à¸£\nà¸à¹€à¸šà¸™à¸—ร์\nà¸à¸¡\nà¸à¹‰à¸¡\nà¸à¸¡à¸“ฑลาภิเษà¸\nà¸à¸¡à¸“ฑโลทà¸\nà¸à¸¡à¸¥\nà¸à¸¡à¸¥à¸²\nà¸à¸¡à¸¥à¸²à¸¨\nà¸à¸¡à¸¥à¸²à¸ªà¸™à¹Œ\nà¸à¸¡à¹€à¸¥à¸¨\nà¸à¸¡à¸±à¸“ฑลุ\nà¸à¸¡à¸¸à¸—\nà¸à¸£\nà¸à¸£à¸à¸Ž\nà¸à¸£à¸à¸Žà¸²à¸„ม\nà¸à¸£à¸à¸\nà¸à¸£à¸‡\nà¸à¸£à¸Šà¸à¸²à¸¢\nà¸à¸£à¸“ฑ์\nà¸à¸£à¸“ิà¸à¸²à¸£à¹Œ\nà¸à¸£à¸“ี\nà¸à¸£à¸“ีย์\nà¸à¸£à¸“ียà¸à¸´à¸ˆ\nà¸à¸£à¸“ียะ\nà¸à¸£à¸”\nà¸à¸£à¸™\nà¸à¸£à¸š\nà¸à¸£à¸šà¸¹à¸£\nà¸à¸£à¸žà¸´à¸™à¸˜à¸¸à¹Œ\nà¸à¸£à¸¡\nà¸à¸£à¸£à¸à¸Ž\nà¸à¸£à¸£à¸à¸¨\nà¸à¸£à¸£à¹€à¸à¸”\nà¸à¸£à¸£à¹„à¸à¸£\nà¸à¸£à¸£à¹€à¸ˆà¸µà¸¢à¸\nà¸à¸£à¸£à¸Šà¸´à¸‡\nà¸à¸£à¸£à¹€à¸Šà¸µà¸¢à¸‡\nà¸à¸£à¸£à¹‚ชà¸\nà¸à¸£à¸£à¸à¹Œ\nà¸à¸£à¸£à¸à¸²\nà¸à¸£à¸£à¸“\nà¸à¸£à¸£à¸“า\nà¸à¸£à¸£à¸“ิà¸à¸²\nà¸à¸£à¸£à¸“ิà¸à¸²à¸£à¹Œ\nà¸à¸£à¸£à¸”ิ\nà¸à¸£à¸£à¸”ิà¸\nà¸à¸£à¸£à¸”ึà¸\nà¸à¸£à¸£à¸•à¸¸\nà¸à¸£à¸£à¹„ตร\nà¸à¸£à¸£à¸—บ\nà¸à¸£à¸£à¹à¸—à¸\nà¸à¸£à¸£à¸šà¸´à¸”\nà¸à¸£à¸£à¸šà¸¹à¸£\nà¸à¸£à¸£à¸ ิรมย์\nà¸à¸£à¸£à¸¡\nà¸à¸£à¸£à¸¡à¹Œ\nà¸à¸£à¸£à¸¡à¹Œà¸ ิรมย์\nà¸à¸£à¸£à¸¡à¸Šà¸§à¸²à¸•\nà¸à¸£à¸£à¸¡à¸±à¸Šà¸§à¸²à¸•\nà¸à¸£à¸£à¸¡à¸²à¸Šà¸µà¸ž\nà¸à¸£à¸£à¸¡à¸²à¸˜à¸´à¸à¸²à¸£\nà¸à¸£à¸£à¸¡à¸²à¸£\nà¸à¸£à¸£à¸©à¸\nà¸à¸£à¸£à¸ªà¸°\nà¸à¸£à¸£à¹à¸ªà¸‡\nà¸à¸£à¸§à¸”\nà¸à¸£à¸§à¸š\nà¸à¸£à¸§à¸¡\nà¸à¸£à¹‰à¸§à¸¡\nà¸à¸£à¸§à¸¢\nà¸à¸£à¸§à¸´à¸\nà¸à¸£à¸ªà¸²à¸›à¸™à¹Œ\nà¸à¸£à¸ªà¸¸à¸—ธิ์\nà¸à¸£à¸\nà¸à¸£à¹‰à¸\nà¸à¸£à¸à¸\nà¸à¸£à¹‡à¸à¸à¸à¸£à¹‹à¸à¸¢\nà¸à¸£à¸à¸à¹à¸à¸£à¸\nà¸à¸£à¸à¸‡\nà¸à¸£à¸à¸‡à¸à¸£à¸à¸¢\nà¸à¸£à¸à¸”\nà¸à¸£à¹ˆà¸à¸™\nà¸à¸£à¸à¸š\nà¸à¸£à¸à¸¡\nà¸à¸£à¹ˆà¸à¸¢\nà¸à¸£à¸°\nà¸à¸£à¸°à¸à¸£\nà¸à¸£à¸°à¸à¸£à¸¸à¹ˆà¸™\nà¸à¸£à¸°à¸à¸¥à¸±à¸šà¸à¸¥à¸à¸\nà¸à¸£à¸°à¸à¸µà¹‰\nà¸à¸£à¸°à¹€à¸à¸£à¸à¸\nà¸à¸£à¸°à¹€à¸à¸£à¸´à¸\nà¸à¸£à¸°à¹€à¸à¸£à¸´à¹ˆà¸™\nà¸à¸£à¸°à¸„น\nà¸à¸£à¸°à¸„าย\nà¸à¸£à¸°à¸‡à¸à¸à¸£à¸°à¹€à¸‡à¸´à¹ˆà¸™\nà¸à¸£à¸°à¸‡à¹ˆà¸à¸‡à¸à¸£à¸°à¹à¸‡à¹ˆà¸‡\nà¸à¸£à¸°à¸‡à¹ˆà¸à¸™à¸à¸£à¸°à¹à¸‡à¹ˆà¸™\nà¸à¸£à¸°à¹€à¸‡à¹‰à¸²à¸à¸£à¸°à¸‡à¸à¸”\nà¸à¸£à¸°à¹‚งà¸\nà¸à¸£à¸°à¸ˆà¸\nà¸à¸£à¸°à¸ˆà¸‡\nà¸à¸£à¸°à¸ˆà¸£\nà¸à¸£à¸°à¸ˆà¸à¸\nà¸à¸£à¸°à¸ˆà¸à¸‡à¸«à¸‡à¹ˆà¸à¸‡\nà¸à¸£à¸°à¸ˆà¹‹à¸à¸‡à¸«à¸‡à¹ˆà¸à¸‡\nà¸à¸£à¸°à¸ˆà¸à¸‡à¸à¹à¸‡\nà¸à¸£à¸°à¸ˆà¹‰à¸à¸™\nà¸à¸£à¸°à¸ˆà¸à¸™à¸«à¸¹\nà¸à¸£à¸°à¸ˆà¹‰à¸à¸¢\nà¸à¸£à¸°à¸ˆà¹‹à¸à¸«à¸§à¸\nà¸à¸£à¸°à¸ˆà¸°\nà¸à¸£à¸°à¸ˆà¸±à¸\nà¸à¸£à¸°à¸ˆà¸±à¸‡\nà¸à¸£à¸°à¸ˆà¸±à¸”\nà¸à¸£à¸°à¸ˆà¸±à¸š\nà¸à¸£à¸°à¸ˆà¹ˆà¸²\nà¸à¸£à¸°à¸ˆà¹ˆà¸²à¸‡\nà¸à¸£à¸°à¸ˆà¸²à¸”\nà¸à¸£à¸°à¸ˆà¸²à¸™\nà¸à¸£à¸°à¸ˆà¸²à¸š\nà¸à¸£à¸°à¸ˆà¸²à¸¡\nà¸à¸£à¸°à¸ˆà¸²à¸¢\nà¸à¸£à¸°à¸ˆà¸²à¸§\nà¸à¸£à¸°à¸ˆà¸´à¸\nà¸à¸£à¸°à¸ˆà¸´à¹‹à¸‡\nà¸à¸£à¸°à¸ˆà¸´à¸”\nà¸à¸£à¸°à¸ˆà¸´à¸š\nà¸à¸£à¸°à¸ˆà¸´à¹‹à¸¡\nà¸à¸£à¸°à¸ˆà¸´à¸£à¸´à¸”\nà¸à¸£à¸°à¸ˆà¸´à¹‹à¸§\nà¸à¸£à¸°à¸ˆà¸µà¹‰\nà¸à¸£à¸°à¸ˆà¸µà¹‹\nà¸à¸£à¸°à¸ˆà¸¸à¸\nà¸à¸£à¸°à¸ˆà¸¸à¹‹à¸‡à¸à¸£à¸°à¸ˆà¸´à¹‹à¸‡\nà¸à¸£à¸°à¸ˆà¸¸à¸š\nà¸à¸£à¸°à¸ˆà¸¸à¹Šà¸š\nà¸à¸£à¸°à¸ˆà¸¸à¹‹à¸¡à¸à¸£à¸°à¸ˆà¸´à¹‹à¸¡\nà¸à¸£à¸°à¸ˆà¸¸à¸¢\nà¸à¸£à¸°à¸ˆà¸¹à¹‰\nà¸à¸£à¸°à¸ˆà¸¹à¹‹à¸à¸£à¸°à¸ˆà¸µà¹‹\nà¸à¸£à¸°à¸ˆà¸¹à¸”\nà¸à¸£à¸°à¹€à¸ˆà¸à¸°à¸à¸£à¸°à¹€à¸ˆà¸´à¸‡\nà¸à¸£à¸°à¹€à¸ˆà¸²\nà¸à¸£à¸°à¹€à¸ˆà¹ˆà¸²\nà¸à¸£à¸°à¹€à¸ˆà¹‰à¸²\nà¸à¸£à¸°à¹€à¸ˆà¸²à¸°\nà¸à¸£à¸°à¹€à¸ˆà¸´à¸‡\nà¸à¸£à¸°à¹€à¸ˆà¸´à¸”à¸à¸£à¸°à¹€à¸ˆà¸´à¸‡\nà¸à¸£à¸°à¹€à¸ˆà¸µà¹‰à¸¢à¸‡\nà¸à¸£à¸°à¹€à¸ˆà¸µà¹Šà¸¢à¸š\nà¸à¸£à¸°à¹€à¸ˆà¸µà¸¢à¸§\nà¸à¸£à¸°à¹€à¸ˆà¸µà¹Šà¸¢à¸§\nà¸à¸£à¸°à¹à¸ˆà¸°\nà¸à¸£à¸°à¹‚จน\nà¸à¸£à¸°à¹‚จม\nà¸à¸£à¸°à¸‰à¸à¸\nà¸à¸£à¸°à¸‰à¹ˆà¸à¸™\nà¸à¸£à¸°à¸‰à¸±à¸šà¸à¸£à¸°à¹€à¸‰à¸‡\nà¸à¸£à¸°à¸‰à¸´à¹ˆà¸‡\nà¸à¸£à¸°à¸‰à¸µà¸\nà¸à¸£à¸°à¸‰à¸¹à¸”\nà¸à¸£à¸°à¹€à¸‰à¸\nà¸à¸£à¸°à¹€à¸‰à¸”\nà¸à¸£à¸°à¹à¸‰à¸\nà¸à¸£à¸°à¹‚ฉà¸à¸à¸£à¸°à¹€à¸‰à¸\nà¸à¸£à¸°à¹‚ฉม\nà¸à¸£à¸°à¸Šà¸”à¸à¸£à¸°à¸Šà¹‰à¸à¸¢\nà¸à¸£à¸°à¸Šà¸à¸™\nà¸à¸£à¸°à¸Šà¸à¸¡à¸”à¸à¸\nà¸à¸£à¸°à¸Šà¹‰à¸à¸¢\nà¸à¸£à¸°à¸Šà¸±à¸‡\nà¸à¸£à¸°à¸Šà¸±à¹‰à¸™\nà¸à¸£à¸°à¸Šà¸±à¸š\nà¸à¸£à¸°à¸Šà¸²à¸\nà¸à¸£à¸°à¸Šà¸²à¸¢\nà¸à¸£à¸°à¸Šà¸´à¸‡\nà¸à¸£à¸°à¸Šà¸´à¸”\nà¸à¸£à¸°à¸Šà¸¸\nà¸à¸£à¸°à¸Šà¸¸à¸\nà¸à¸£à¸°à¸Šà¸¸à¹ˆà¸¡à¸à¸£à¸°à¸Šà¸§à¸¢\nà¸à¸£à¸°à¹€à¸Šà¸\nà¸à¸£à¸°à¹€à¸Šà¸²\nà¸à¸£à¸°à¹€à¸Šà¹‰à¸²\nà¸à¸£à¸°à¹€à¸Šà¸µà¸¢à¸‡\nà¸à¸£à¸°à¹à¸Šà¸‡\nà¸à¸£à¸°à¹à¸Šà¸°\nà¸à¸£à¸°à¹‚ชà¸\nà¸à¸£à¸°à¸‹à¹ˆà¸à¸‡à¸à¸£à¸°à¹à¸‹à¹ˆà¸‡\nà¸à¸£à¸°à¸‹à¸±à¸š\nà¸à¸£à¸°à¸‹à¸²à¸š\nà¸à¸£à¸°à¸‹à¸´à¸\nà¸à¸£à¸°à¸‹à¸´à¸š\nà¸à¸£à¸°à¸‹à¸µà¹‰\nà¸à¸£à¸°à¸‹à¸¸à¸‡\nà¸à¸£à¸°à¸‹à¸¸à¸šà¸à¸£à¸°à¸‹à¸´à¸š\nà¸à¸£à¸°à¸‹à¸¸à¹‰à¸¡\nà¸à¸£à¸°à¸‹à¸¹à¹ˆ\nà¸à¸£à¸°à¹€à¸‹à¹‡à¸™\nà¸à¸£à¸°à¹€à¸‹à¸\nà¸à¸£à¸°à¹€à¸‹à¸à¸°à¸à¸£à¸°à¹€à¸‹à¸\nà¸à¸£à¸°à¹€à¸‹à¸à¸°à¸à¸£à¸°à¹€à¸‹à¸´à¸‡\nà¸à¸£à¸°à¹€à¸‹à¹‰à¸²\nà¸à¸£à¸°à¹€à¸‹à¸´à¸‡\nà¸à¸£à¸°à¹à¸‹\nà¸à¸£à¸°à¹à¸‹à¸°\nà¸à¸£à¸°à¹‚ซà¸à¸£à¸°à¹€à¸‹\nà¸à¸£à¸°à¸Žà¸µ\nà¸à¸£à¸°à¸Žà¸¸à¸¡à¸žà¸µ\nà¸à¸£à¸°à¸”à¸\nà¸à¸£à¸°à¸”้ง\nà¸à¸£à¸°à¸”นโด่\nà¸à¸£à¸°à¸”วง\nà¸à¸£à¸°à¸”วน\nà¸à¸£à¸°à¸”้วมà¸à¸£à¸°à¹€à¸”ี้ยม\nà¸à¸£à¸°à¸”à¸\nà¸à¸£à¸°à¸”à¸à¸‡\nà¸à¸£à¸°à¸”à¸à¸‡à¸«à¸²à¸¢\nà¸à¸£à¸°à¸”à¸à¸™\nà¸à¸£à¸°à¸”à¸à¸¡\nà¸à¸£à¸°à¸”ัà¸à¸à¸£à¸°à¹€à¸”ี้ย\nà¸à¸£à¸°à¸”ังงัว\nà¸à¸£à¸°à¸”ังงา\nà¸à¸£à¸°à¸”าà¸\nà¸à¸£à¸°à¸”้าง\nà¸à¸£à¸°à¸”างลาง\nà¸à¸£à¸°à¸”าด\nà¸à¸£à¸°à¸”าดขาว\nà¸à¸£à¸°à¸”าน\nà¸à¸£à¸°à¸”านพน\nà¸à¸£à¸°à¸”าษ\nà¸à¸£à¸°à¸”ำà¸à¸£à¸°à¸”่าง\nà¸à¸£à¸°à¸”ิà¸\nà¸à¸£à¸°à¸”ิ่ง\nà¸à¸£à¸°à¸”ิ้ง\nà¸à¸£à¸°à¸”ิบ\nà¸à¸£à¸°à¸”ี่\nà¸à¸£à¸°à¸”ี้à¸à¸£à¸°à¹€à¸”ียม\nà¸à¸£à¸°à¸”ึง\nà¸à¸£à¸°à¸”ืบ\nà¸à¸£à¸°à¸”ุ\nà¸à¸£à¸°à¸”ุà¸à¸à¸£à¸°à¸”ิà¸\nà¸à¸£à¸°à¸”ุ้งà¸à¸£à¸°à¸”ิ้ง\nà¸à¸£à¸°à¸”ุบ\nà¸à¸£à¸°à¸”ุบà¸à¸£à¸°à¸”ิบ\nà¸à¸£à¸°à¸”ุม\nà¸à¸£à¸°à¸”ูà¸\nà¸à¸£à¸°à¹€à¸”à¸\nà¸à¸£à¸°à¹€à¸”้ง\nà¸à¸£à¸°à¹€à¸”็น\nà¸à¸£à¸°à¹€à¸”้า\nà¸à¸£à¸°à¹€à¸”าะ\nà¸à¸£à¸°à¹€à¸”ิด\nà¸à¸£à¸°à¹€à¸”ี้ย\nà¸à¸£à¸°à¹€à¸”ียด\nà¸à¸£à¸°à¹€à¸”ืà¸à¸\nà¸à¸£à¸°à¹€à¸”ื่à¸à¸‡\nà¸à¸£à¸°à¹à¸”็à¸\nà¸à¸£à¸°à¹à¸”้ง\nà¸à¸£à¸°à¹à¸”้à¹à¸£à¹ˆ\nà¸à¸£à¸°à¹à¸”่ว\nà¸à¸£à¸°à¹à¸”ะ\nà¸à¸£à¸°à¹‚ดà¸\nà¸à¸£à¸°à¹‚ดง\nà¸à¸£à¸°à¹‚ดด\nà¸à¸£à¸°à¹‚ดน\nà¸à¸£à¸°à¹„ด\nà¸à¸£à¸°à¸•à¸£à¸±à¸š\nà¸à¸£à¸°à¸•à¸£à¸²à¸\nà¸à¸£à¸°à¸•à¸£à¸¸à¸”\nà¸à¸£à¸°à¸•à¸£à¸¸à¸¡\nà¸à¸£à¸°à¸•à¹‰à¸§à¸¡à¸à¸£à¸°à¹€à¸•à¸µà¹‰à¸¢à¸¡\nà¸à¸£à¸°à¸•à¹‰à¸\nà¸à¸£à¸°à¸•à¹ˆà¸à¸‡à¸à¸£à¸°à¹à¸•à¹ˆà¸‡\nà¸à¸£à¸°à¸•à¹Šà¸à¸š\nà¸à¸£à¸°à¸•à¹‰à¸à¸¢à¸•à¸µà¸§à¸´à¸”\nà¸à¸£à¸°à¸•à¸±à¸\nà¸à¸£à¸°à¸•à¸±à¹‰à¸§\nà¸à¸£à¸°à¸•à¹ˆà¸²à¸¢\nà¸à¸£à¸°à¸•à¸´à¸\nà¸à¸£à¸°à¸•à¸´à¹Šà¸”\nà¸à¸£à¸°à¸•à¸´à¸š\nà¸à¸£à¸°à¸•à¸·à¸à¸£à¸·à¸à¸£à¹‰à¸™\nà¸à¸£à¸°à¸•à¸¸à¸\nà¸à¸£à¸°à¸•à¸¸à¹‰à¸‡à¸à¸£à¸°à¸•à¸´à¹‰à¸‡\nà¸à¸£à¸°à¸•à¸¸à¹ˆà¸™\nà¸à¸£à¸°à¸•à¸¸à¹‰à¸™\nà¸à¸£à¸°à¸•à¸¹à¸š\nà¸à¸£à¸°à¹€à¸•à¸‡\nà¸à¸£à¸°à¹€à¸•à¹‡à¸™\nà¸à¸£à¸°à¹€à¸•à¸à¸°\nà¸à¸£à¸°à¹€à¸•à¸²à¸°\nà¸à¸£à¸°à¹€à¸•à¸²à¸°à¸à¸£à¸°à¹à¸•à¸°\nà¸à¸£à¸°à¹€à¸•à¸·à¹‰à¸à¸‡\nà¸à¸£à¸°à¹à¸•\nà¸à¸£à¸°à¹à¸•à¹à¸•à¹‰à¹à¸§à¹‰à¸”\nà¸à¸£à¸°à¹‚ตà¸à¸à¸£à¸°à¸•à¸²à¸\nà¸à¸£à¸°à¹‚ตน\nà¸à¸£à¸°à¸–ด\nà¸à¸£à¸°à¸–à¸à¸š\nà¸à¸£à¸°à¸–ั่ว\nà¸à¸£à¸°à¸–าง\nà¸à¸£à¸°à¸–ิà¸\nà¸à¸£à¸°à¸–ิน\nà¸à¸£à¸°à¹€à¸–ิบ\nà¸à¸£à¸°à¹‚ถน\nà¸à¸£à¸°à¸—à¸\nà¸à¸£à¸°à¸—ง\nà¸à¸£à¸°à¸—บ\nà¸à¸£à¸°à¸—รวง\nà¸à¸£à¸°à¸—à¸à¸\nà¸à¸£à¸°à¸—้à¸à¸™\nà¸à¸£à¸°à¸—่à¸à¸™à¸à¸£à¸°à¹à¸—่น\nà¸à¸£à¸°à¸—่à¸à¸¡\nà¸à¸£à¸°à¸—้à¸à¸¡à¸à¸£à¸°à¹à¸—้ม\nà¸à¸£à¸°à¸—ะ\nà¸à¸£à¸°à¸—ั่ง\nà¸à¸£à¸°à¸—ั้น\nà¸à¸£à¸°à¸—า\nà¸à¸£à¸°à¸—าย\nà¸à¸£à¸°à¸—าสี\nà¸à¸£à¸°à¸—าหà¸à¸‡\nà¸à¸£à¸°à¸—ำ\nà¸à¸£à¸°à¸—ิà¸à¸à¸£à¸°à¸—วย\nà¸à¸£à¸°à¸—ิง\nà¸à¸£à¸°à¸—ึง\nà¸à¸£à¸°à¸—ืบ\nà¸à¸£à¸°à¸—ุ\nà¸à¸£à¸°à¸—ุง\nà¸à¸£à¸°à¸—ุ้ง\nà¸à¸£à¸°à¸—ุ่ม\nà¸à¸£à¸°à¸—ู้\nà¸à¸£à¸°à¹€à¸—่\nà¸à¸£à¸°à¹€à¸—ียบ\nà¸à¸£à¸°à¹€à¸—ียม\nà¸à¸£à¸°à¹€à¸—ืà¸à¸™\nà¸à¸£à¸°à¹€à¸—ื้à¸à¸¡\nà¸à¸£à¸°à¹à¸—à¸\nà¸à¸£à¸°à¹à¸—่น\nà¸à¸£à¸°à¹à¸—ะ\nà¸à¸£à¸°à¹„ทชาย\nà¸à¸£à¸°à¸™à¹ˆà¸à¸‡\nà¸à¸£à¸°à¸™à¸±à¹‰à¸™\nà¸à¸£à¸°à¸™à¸µà¹‰\nà¸à¸£à¸°à¹à¸™à¸°à¸à¸£à¸°à¹à¸«à¸™\nà¸à¸£à¸°à¹‚น้น\nà¸à¸£à¸°à¹„น\nà¸à¸£à¸°à¸šà¸\nà¸à¸£à¸°à¸šà¸¡\nà¸à¸£à¸°à¸šà¸§à¸™\nà¸à¸£à¸°à¸šà¸§à¸¢\nà¸à¸£à¸°à¸šà¸§à¸£\nà¸à¸£à¸°à¸šà¸à¸\nà¸à¸£à¸°à¸šà¸à¸‡\nà¸à¸£à¸°à¸šà¸°\nà¸à¸£à¸°à¸šà¸±à¸”\nà¸à¸£à¸°à¸šà¸±à¹‰à¸§à¸à¸£à¸°à¹€à¸šà¸µà¹‰à¸¢\nà¸à¸£à¸°à¸šà¹ˆà¸²\nà¸à¸£à¸°à¸šà¹‰à¸²\nà¸à¸£à¸°à¸šà¸²à¸\nà¸à¸£à¸°à¸šà¸²à¸¢\nà¸à¸£à¸°à¸šà¸²à¸¥\nà¸à¸£à¸°à¸šà¸´\nà¸à¸£à¸°à¸šà¸´à¹‰à¸‡\nà¸à¸£à¸°à¸šà¸´à¸”\nà¸à¸£à¸°à¸šà¸´à¸¥\nà¸à¸£à¸°à¸šà¸µà¹ˆ\nà¸à¸£à¸°à¸šà¸·à¸\nà¸à¸£à¸°à¸šà¸¸à¸‡\nà¸à¸£à¸°à¸šà¸¸à¹ˆà¸¡à¸à¸£à¸°à¸šà¹ˆà¸²à¸¡\nà¸à¸£à¸°à¸šà¸¹à¹‰à¸à¸£à¸°à¸šà¸µà¹‰\nà¸à¸£à¸°à¸šà¸¹à¸™\nà¸à¸£à¸°à¸šà¸¹à¸£\nà¸à¸£à¸°à¹€à¸šà¸‡\nà¸à¸£à¸°à¹€à¸šà¸\nà¸à¸£à¸°à¹€à¸šà¹‡à¸”à¸à¸£à¸°à¸šà¸§à¸™\nà¸à¸£à¸°à¹€à¸šà¸™\nà¸à¸£à¸°à¹€à¸šà¸²\nà¸à¸£à¸°à¹€à¸šà¸´à¸\nà¸à¸£à¸°à¹€à¸šà¸µà¸¢à¸”\nà¸à¸£à¸°à¹€à¸šà¸µà¸¢à¸™\nà¸à¸£à¸°à¹€à¸šà¸·à¹‰à¸à¸‡\nà¸à¸£à¸°à¹à¸šà¸\nà¸à¸£à¸°à¹à¸šà¸°\nà¸à¸£à¸°à¹‚บม\nà¸à¸£à¸°à¸›à¸¡à¸à¸£à¸°à¸›à¸³\nà¸à¸£à¸°à¸›à¸¡à¸à¸£à¸°à¹€à¸›à¸²\nà¸à¸£à¸°à¸›à¸£à¸à¸\nà¸à¸£à¸°à¸›à¸£à¸à¸à¸§à¹ˆà¸²à¸§\nà¸à¸£à¸°à¸›à¸£à¸µà¹‰à¸à¸£à¸°à¹€à¸›à¸£à¹ˆà¸²\nà¸à¸£à¸°à¸›à¸à¸\nà¸à¸£à¸°à¸›à¹‰à¸à¸à¸£à¸°à¹à¸›à¹‰\nà¸à¸£à¸°à¸›à¹ˆà¸à¸‡\nà¸à¸£à¸°à¸›à¹‹à¸à¸‡\nà¸à¸£à¸°à¸›à¸à¸”à¸à¸£à¸°à¹à¸›à¸”\nà¸à¸£à¸°à¸›à¹‹à¸à¸«à¸¥à¸\nà¸à¸£à¸°à¸›à¸±à¹‰à¸§à¸à¸£à¸°à¹€à¸›à¸µà¹‰à¸¢\nà¸à¸£à¸°à¸›à¹ˆà¸³\nà¸à¸£à¸°à¸›à¸¸à¸\nà¸à¸£à¸°à¸›à¸¸à¹Šà¸à¸¥à¸¸à¸\nà¸à¸£à¸°à¸›à¸¸à¹ˆà¸¡\nà¸à¸£à¸°à¸›à¸¸à¹ˆà¸¡à¸à¸£à¸°à¸›à¹ˆà¸³\nà¸à¸£à¸°à¸›à¸¸à¹ˆà¸¡à¸à¸£à¸°à¸›à¸´à¹ˆà¸¡\nà¸à¸£à¸°à¹€à¸›à¹‹à¸²\nà¸à¸£à¸°à¹€à¸›à¸²à¸°\nà¸à¸£à¸°à¹‚ปà¸\nà¸à¸£à¸°à¹‚ปรง\nà¸à¸£à¸°à¸œà¸¡\nà¸à¸£à¸°à¸œà¸¥à¸µà¸à¸£à¸°à¸œà¸¥à¸²à¸¡\nà¸à¸£à¸°à¸œà¸²à¸™\nà¸à¸£à¸°à¸œà¸µà¸\nà¸à¸£à¸°à¸žà¸£à¸§à¸™\nà¸à¸£à¸°à¸žà¸£à¸´à¹‰à¸¡\nà¸à¸£à¸°à¸žà¸à¸\nà¸à¸£à¸°à¸žà¸à¸‡\nà¸à¸£à¸°à¸žà¹‰à¸à¸¡\nà¸à¸£à¸°à¸žà¸±à¸\nà¸à¸£à¸°à¸žà¸±à¸‡\nà¸à¸£à¸°à¸žà¸±à¸‡à¹€à¸«à¸´à¸£\nà¸à¸£à¸°à¸žà¸±à¸‡à¹‚หม\nà¸à¸£à¸°à¸žà¸±à¸”\nà¸à¸£à¸°à¸žà¸±à¸•à¸£\nà¸à¸£à¸°à¸žà¸±à¸™\nà¸à¸£à¸°à¸žà¸±à¹ˆà¸™\nà¸à¸£à¸°à¸žà¸²\nà¸à¸£à¸°à¸žà¸²à¸\nà¸à¸£à¸°à¸žà¸µà¹‰\nà¸à¸£à¸°à¸žà¸·à¸\nà¸à¸£à¸°à¸žà¸¸à¹‰à¸‡\nà¸à¸£à¸°à¸žà¸¸à¹ˆà¸¡\nà¸à¸£à¸°à¹€à¸žà¸²à¸°\nà¸à¸£à¸°à¹€à¸žà¸´à¸‡\nà¸à¸£à¸°à¹€à¸žà¸·à¹ˆà¸à¸¡\nà¸à¸£à¸°à¹à¸žà¹‰à¸‡\nà¸à¸£à¸°à¸Ÿà¸±à¸”à¸à¸£à¸°à¹€à¸Ÿà¸µà¸¢à¸”\nà¸à¸£à¸°à¸Ÿà¸¹à¸¡à¸à¸£à¸°à¸Ÿà¸²à¸¢\nà¸à¸£à¸°à¸¡à¸¥\nà¸à¸£à¸°à¸¡à¸à¸š\nà¸à¸£à¸°à¸¡à¸à¸¡à¸à¸£à¸°à¹à¸¡à¸¡\nà¸à¸£à¸°à¸¡à¸±à¸‡\nà¸à¸£à¸°à¸¡à¸±à¸™\nà¸à¸£à¸°à¸¡à¸´à¸”à¸à¸£à¸°à¹€à¸¡à¸µà¹‰à¸¢à¸™\nà¸à¸£à¸°à¸¡à¸¸à¸—\nà¸à¸£à¸°à¹€à¸¡à¸²à¸°\nà¸à¸£à¸°à¸¢à¹ˆà¸à¸‡\nà¸à¸£à¸°à¸¢à¹ˆà¸à¸‡à¸à¸£à¸°à¹à¸¢à¹ˆà¸‡\nà¸à¸£à¸°à¸¢à¹ˆà¸à¸™\nà¸à¸£à¸°à¸¢à¹ˆà¸à¸¡\nà¸à¸£à¸°à¸¢à¸²\nà¸à¸£à¸°à¸¢à¸²à¸‡\nà¸à¸£à¸°à¸¢à¸²à¸ˆà¸\nà¸à¸£à¸°à¸¢à¸²à¸«à¸‡à¸±à¸™\nà¸à¸£à¸°à¸¢à¸´à¸\nà¸à¸£à¸°à¸¢à¸´à¹‰à¸¡à¸à¸£à¸°à¸¢à¹ˆà¸à¸‡\nà¸à¸£à¸°à¸¢à¸¶à¸à¸à¸£à¸°à¸¢à¸·à¸\nà¸à¸£à¸°à¸¢à¸·à¸”à¸à¸£à¸°à¸¢à¸²à¸”\nà¸à¸£à¸°à¹€à¸¢à¹‰à¸à¸à¸£à¸°à¹à¸«à¸¢à¹ˆà¸‡\nà¸à¸£à¸°à¸£à¸à¸\nà¸à¸£à¸°à¹€à¸£à¸µà¸¢à¸™\nà¸à¸£à¸°à¹‚รà¸à¸™à¹‰à¸³à¸‚้าว\nà¸à¸£à¸°à¹‚รà¸à¹ƒà¸«à¸à¹ˆ\nà¸à¸£à¸°à¹„ร\nà¸à¸£à¸°à¸¥à¸”\nà¸à¸£à¸°à¸¥à¸š\nà¸à¸£à¸°à¸¥à¸à¸\nà¸à¸£à¸°à¸¥à¸à¸¡\nà¸à¸£à¸°à¸¥à¸°à¸«à¸¥à¹ˆà¸³\nà¸à¸£à¸°à¸¥à¸±à¸”\nà¸à¸£à¸°à¸¥à¸±à¸š\nà¸à¸£à¸°à¸¥à¸±à¸¡à¸žà¸£\nà¸à¸£à¸°à¸¥à¸²\nà¸à¸£à¸°à¸¥à¸³\nà¸à¸£à¸°à¸¥à¸³à¸žà¸±à¸\nà¸à¸£à¸°à¸¥à¸³à¸žà¸¸à¸\nà¸à¸£à¸°à¸¥à¸´à¸‡\nà¸à¸£à¸°à¸¥à¸µ\nà¸à¸£à¸°à¸¥à¸¸à¸¡à¸žà¸²à¸‡\nà¸à¸£à¸°à¸¥à¸¸à¸¡à¸žà¸¸à¸\nà¸à¸£à¸°à¸¥à¸¸à¸¡à¸žà¸¹\nà¸à¸£à¸°à¸¥à¸¹à¸™\nà¸à¸£à¸°à¸¥à¸¹à¹ˆà¸™à¹Œ\nà¸à¸£à¸°à¹€à¸¥à¹‡à¸™\nà¸à¸£à¸°à¹€à¸¥à¸µà¸¢à¸”\nà¸à¸£à¸°à¹€à¸¥à¸·à¸à¸\nà¸à¸£à¸°à¹‚ลง\nà¸à¸£à¸°à¸§à¸™\nà¸à¸£à¸°à¸§à¸±à¸”\nà¸à¸£à¸°à¸§à¸²à¸”\nà¸à¸£à¸°à¸§à¸²à¸™\nà¸à¸£à¸°à¸§à¸²à¸¢\nà¸à¸£à¸°à¸§à¸´à¸™\nà¸à¸£à¸°à¸§à¸µ\nà¸à¸£à¸°à¸§à¸µà¸à¸£à¸°à¸§à¸²à¸”\nà¸à¸£à¸°à¸§à¸¹à¸”à¸à¸£à¸°à¸§à¸²à¸”\nà¸à¸£à¸°à¹€à¸§à¸™\nà¸à¸£à¸°à¹€à¸§à¸¢à¸à¸£à¸°à¸§à¸²à¸¢\nà¸à¸£à¸°à¹à¸§à¸™\nà¸à¸£à¸°à¹‚วยà¸à¸£à¸°à¸§à¸²à¸¢\nà¸à¸£à¸°à¸©à¸±à¸¢\nà¸à¸£à¸°à¸©à¸²à¸›à¸“์\nà¸à¸£à¸°à¸ªà¸‡\nà¸à¸£à¸°à¸ªà¸š\nà¸à¸£à¸°à¸ªà¸¡\nà¸à¸£à¸°à¸ªà¸£à¸§à¸¥\nà¸à¸£à¸°à¸ªà¸£à¹‰à¸à¸¢\nà¸à¸£à¸°à¸ªà¸§à¸™\nà¸à¸£à¸°à¸ªà¸§à¸¢\nà¸à¸£à¸°à¸ªà¸à¸š\nà¸à¸£à¸°à¸ªà¸°\nà¸à¸£à¸°à¸ªà¸±à¸‡\nà¸à¸£à¸°à¸ªà¸±à¸™\nà¸à¸£à¸°à¸ªà¸±à¸šà¸à¸£à¸°à¸ªà¹ˆà¸²à¸¢\nà¸à¸£à¸°à¸ªà¸²\nà¸à¸£à¸°à¸ªà¸²à¸™à¸•à¸´à¹Œ\nà¸à¸£à¸°à¸ªà¸²à¸š\nà¸à¸£à¸°à¸ªà¸²à¸¢\nà¸à¸£à¸°à¸ªà¸·à¸\nà¸à¸£à¸°à¸ªà¸¸à¸‡à¸à¸£à¸°à¸ªà¸´à¸‡\nà¸à¸£à¸°à¸ªà¸¸à¸™\nà¸à¸£à¸°à¸ªà¸¹à¸—ธิ์\nà¸à¸£à¸°à¸ªà¸¹à¸š\nà¸à¸£à¸°à¹€à¸ªà¸”\nà¸à¸£à¸°à¹€à¸ªà¹‡à¸™à¸à¸£à¸°à¸ªà¸²à¸¢\nà¸à¸£à¸°à¹€à¸ªà¹ˆà¸²\nà¸à¸£à¸°à¹€à¸ªà¸²à¸°à¸à¸£à¸°à¹à¸ªà¸°\nà¸à¸£à¸°à¹€à¸ªà¸µà¸¢à¸™\nà¸à¸£à¸°à¹€à¸ªà¸µà¸¢à¸£\nà¸à¸£à¸°à¹€à¸ªà¸·à¸à¸à¸à¸£à¸°à¸ªà¸™\nà¸à¸£à¸°à¹à¸ª\nà¸à¸£à¸°à¹à¸ªà¸‡\nà¸à¸£à¸°à¹à¸ªà¸°\nà¸à¸£à¸°à¹‚สง\nà¸à¸£à¸°à¹„ส\nà¸à¸£à¸°à¸«à¸™à¸\nà¸à¸£à¸°à¸«à¸™à¸²à¸\nà¸à¸£à¸°à¸«à¸™à¸²à¸š\nà¸à¸£à¸°à¸«à¸™à¹ˆà¸³\nà¸à¸£à¸°à¸«à¸¡à¸§à¸”\nà¸à¸£à¸°à¸«à¸¡à¸à¸š\nà¸à¸£à¸°à¸«à¸¡à¹ˆà¸à¸¡\nà¸à¸£à¸°à¸«à¸¡à¸±à¹ˆà¸‡\nà¸à¸£à¸°à¸«à¸¡à¸´à¸š\nà¸à¸£à¸°à¸«à¸¡à¸¸à¸”à¸à¸£à¸°à¸«à¸¡à¸´à¸”\nà¸à¸£à¸°à¸«à¸¡à¸¸à¸š\nà¸à¸£à¸°à¸«à¸¢à¹ˆà¸‡\nà¸à¸£à¸°à¸«à¸¢à¹ˆà¸à¸¡\nà¸à¸£à¸°à¸«à¸¢à¸±à¸‡\nà¸à¸£à¸°à¸«à¸¢à¸±à¸š\nà¸à¸£à¸°à¸«à¸¢à¸´à¹ˆà¸¡\nà¸à¸£à¸°à¸«à¸£à¸à¸”\nà¸à¸£à¸°à¸«à¸£à¸´à¹ˆà¸‡\nà¸à¸£à¸°à¸«à¸§à¸™\nà¸à¸£à¸°à¸«à¸§à¸±à¸”\nà¸à¸£à¸°à¸«à¸à¸‡\nà¸à¸£à¸°à¸«à¸±à¸‡\nà¸à¸£à¸°à¸«à¸±à¸”\nà¸à¸£à¸°à¸«à¸²à¸‡\nà¸à¸£à¸°à¸«à¸²à¸¢\nà¸à¸£à¸°à¸«à¸¶à¸¡\nà¸à¸£à¸°à¸«à¸¶à¹ˆà¸¡\nà¸à¸£à¸°à¸«à¸·à¸”à¸à¸£à¸°à¸«à¸à¸š\nà¸à¸£à¸°à¹€à¸«à¹‡à¸™\nà¸à¸£à¸°à¹€à¸«à¸™à¸µà¸¢à¸”\nà¸à¸£à¸°à¹€à¸«à¸¡à¹‡à¸”à¸à¸£à¸°à¹€à¸«à¸¡à¸µà¸¢à¸”\nà¸à¸£à¸°à¹€à¸«à¸¡à¹‡à¸”à¸à¸£à¸°à¹à¸«à¸¡à¹ˆ\nà¸à¸£à¸°à¹€à¸«à¸¡à¹ˆà¸™\nà¸à¸£à¸°à¹€à¸«à¸¡à¹ˆà¸²\nà¸à¸£à¸°à¹€à¸«à¸§à¹ˆà¸²\nà¸à¸£à¸°à¹€à¸«à¹ˆà¸\nà¸à¸£à¸°à¹€à¸«à¸´à¸¡\nà¸à¸£à¸°à¹€à¸«à¸µà¹‰à¸¢à¸™à¸à¸£à¸°à¸«à¸·à¸à¸£à¸·à¸\nà¸à¸£à¸°à¹à¸«\nà¸à¸£à¸°à¹à¸«à¸—à¸à¸‡\nà¸à¸£à¸°à¹à¸«à¸™à¸š\nà¸à¸£à¸°à¹à¸«à¸™à¸°\nà¸à¸£à¸°à¹à¸«à¸¡à¸š\nà¸à¸£à¸°à¹à¸«à¸¡à¹ˆà¸§\nà¸à¸£à¸°à¹à¸«à¸¢à¹ˆà¸‡\nà¸à¸£à¸°à¹à¸«à¸£à¹ˆà¸¡\nà¸à¸£à¸°à¹à¸«à¸¥à¹ˆà¸‡\nà¸à¸£à¸°à¹‚ห้\nà¸à¸£à¸°à¹‚หนด\nà¸à¸£à¸°à¹‚หม\nà¸à¸£à¸°à¹‚หย\nà¸à¸£à¸°à¹‚หย่ง\nà¸à¸£à¸°à¸à¸§à¸¥\nà¸à¸£à¸°à¸à¹‰à¸à¸à¸£à¸°à¹à¸à¹‰\nà¸à¸£à¸°à¸à¸à¸”à¸à¸£à¸°à¹à¸à¸”\nà¸à¸£à¸°à¸à¸à¸š\nà¸à¸£à¸°à¸à¸à¸¡\nà¸à¸£à¸°à¸à¹‰à¸à¸¡à¸à¸£à¸°à¹à¸à¹‰à¸¡\nà¸à¸£à¸°à¸à¸±à¸\nà¸à¸£à¸°à¸à¸±à¸à¸à¸£à¸°à¸à¹ˆà¸§à¸™\nà¸à¸£à¸°à¸à¸±à¹‰à¸§à¹à¸—งควาย\nà¸à¸£à¸°à¸à¹‰à¸²\nà¸à¸£à¸°à¸à¸²à¸™\nà¸à¸£à¸°à¸à¸´à¸”\nà¸à¸£à¸°à¸à¸´à¸”à¸à¸£à¸°à¹€à¸à¸·à¹‰à¸à¸™\nà¸à¸£à¸°à¸à¸¶à¸\nà¸à¸£à¸°à¸à¸·à¸”\nà¸à¸£à¸°à¸à¸¸\nà¸à¸£à¸°à¸à¸¸à¸\nà¸à¸£à¸°à¹€à¸à¸²\nà¸à¸£à¸°à¹€à¸à¸´à¸\nà¸à¸£à¸°à¹€à¸à¸´à¸š\nà¸à¸£à¸°à¹à¸à¸\nà¸à¸£à¸°à¹à¸à¸š\nà¸à¸£à¸°à¹à¸à¸¡\nà¸à¸£à¸°à¹„à¸\nà¸à¸£à¸±à¸\nà¸à¸£à¸±à¸à¸‚ี\nà¸à¸£à¸±à¸‡\nà¸à¸£à¸±à¸Šà¸à¸²à¸¢\nà¸à¸£à¸±à¸“ฑ์\nà¸à¸£à¸±à¸“ย์\nà¸à¸£à¸±à¸™\nà¸à¸£à¸±à¸š\nà¸à¸£à¸±à¸¡\nà¸à¸£à¸²à¸\nà¸à¸£à¸²à¸‡\nà¸à¸£à¹ˆà¸²à¸‡\nà¸à¸£à¸²à¸”\nà¸à¸£à¸²à¸”วง\nà¸à¸£à¸²à¸™\nà¸à¸£à¹‰à¸²à¸™\nà¸à¸£à¸²à¸š\nà¸à¸£à¸²à¸Ÿ\nà¸à¸£à¸²à¸¡\nà¸à¸£à¸²à¸¢\nà¸à¸£à¹ˆà¸²à¸¢\nà¸à¸£à¸²à¸§\nà¸à¸£à¹‰à¸²à¸§\nà¸à¸£à¸³\nà¸à¸£à¹ˆà¸³\nà¸à¸£à¸´à¸\nà¸à¸£à¸´à¹Šà¸\nà¸à¸£à¸´à¸à¸à¸£à¸´à¸§\nà¸à¸£à¸´à¸à¸à¸£à¸µ\nà¸à¸£à¸´à¹ˆà¸‡\nà¸à¸£à¸´à¹Šà¸‡\nà¸à¸£à¸´à¸‡à¸à¸£à¸´à¸§\nà¸à¸£à¸´à¹‰à¸‡à¸à¸£à¸´à¹‰à¸§\nà¸à¸£à¸´à¸Š\nà¸à¸£à¸´à¸“ี\nà¸à¸£à¸´à¸™\nà¸à¸£à¸´à¸™à¸—ร์\nà¸à¸£à¸´à¸™à¸µ\nà¸à¸£à¸´à¸š\nà¸à¸£à¸´à¸¡\nà¸à¸£à¸´à¹ˆà¸¡\nà¸à¸£à¸´à¸¢à¸²\nà¸à¸£à¸´à¸¢à¸²à¸™à¸¸à¹€à¸„ราะห์\nà¸à¸£à¸´à¸§\nà¸à¸£à¸´à¹‰à¸§\nà¸à¸£à¸µ\nà¸à¸£à¸µà¸‘า\nà¸à¸£à¸µà¸”\nà¸à¸£à¸µà¹Šà¸”\nà¸à¸£à¸µà¸˜à¸²\nà¸à¸£à¸µà¸©\nà¸à¸£à¸µà¸ª\nà¸à¸£à¸¶à¹Šà¸š\nà¸à¸£à¸¸\nà¸à¸£à¸¸à¸‡\nà¸à¸£à¸¸à¹‰à¸‡à¸à¸£à¸´à¹ˆà¸‡\nà¸à¸£à¸¸à¸“\nà¸à¸£à¸¸à¸“า\nà¸à¸£à¸¸à¸“าธิคุณ\nà¸à¸£à¸¸à¹ˆà¸™\nà¸à¸£à¸¸à¸š\nà¸à¸£à¸¸à¹ˆà¸¡\nà¸à¸£à¸¸à¹‰à¸¡à¸à¸£à¸´à¹ˆà¸¡\nà¸à¸£à¸¸à¸¢\nà¸à¸£à¸¸à¸¢à¹€à¸à¸£à¸µà¸¢à¸§\nà¸à¸£à¸¹\nà¸à¸£à¸¹à¸”\nà¸à¸£à¸¹à¸¡\nà¸à¹€à¸£à¸“ุ\nà¸à¹€à¸£à¸™à¸—ร\nà¸à¹€à¸£à¸™à¸—ร์\nà¸à¸¤à¸Š\nà¸à¸¤à¸”าภินิหาร\nà¸à¸¤à¸•à¸•à¸´à¸à¸²\nà¸à¸¤à¸©à¸Žà¸²\nà¸à¸¤à¸©à¸Žà¸²à¸˜à¸²à¸£\nà¸à¸¤à¸©à¸Žà¸²à¸ ินิหาร\nà¸à¸¤à¸©à¸Žà¸µà¸à¸²\nà¸à¸¤à¸©à¸“า\nà¸à¸¥\nà¸à¸¥à¸”\nà¸à¸¥à¹ˆà¸™\nà¸à¸¥à¸š\nà¸à¸¥à¸¡\nà¸à¸¥à¸¥à¸°\nà¸à¸¥à¸§à¸‡\nà¸à¸¥à¹‰à¸§à¸¢\nà¸à¸¥à¸¨\nà¸à¸¥à¹‰à¸\nà¸à¸¥à¸à¸\nà¸à¸¥à¸à¸‡\nà¸à¸¥à¹ˆà¸à¸‡\nà¸à¸¥à¹‰à¸à¸‡\nà¸à¸¥à¹‰à¸à¸‡à¹à¸à¸¥à¹‰à¸‡\nà¸à¸¥à¸à¸™\nà¸à¸¥à¹ˆà¸à¸™\nà¸à¸¥à¹‰à¸à¸™\nà¸à¸¥à¹ˆà¸à¸¡\nà¸à¸¥à¹‰à¸à¸¡à¹à¸à¸¥à¹‰à¸¡\nà¸à¸¥à¸à¸¢\nà¸à¸¥à¸±à¸\nà¸à¸¥à¸±à¸”\nà¸à¸¥à¸±à¹ˆà¸™\nà¸à¸¥à¸±à¹‰à¸™\nà¸à¸¥à¸±à¸™à¸—à¸à¹Œ\nà¸à¸¥à¸±à¸™à¸—ะ\nà¸à¸¥à¸±à¸š\nà¸à¸¥à¸±à¸¡à¸žà¸£\nà¸à¸¥à¸±à¸¡à¸žà¸±à¸\nà¸à¸¥à¸±à¸§\nà¸à¸¥à¸±à¹‰à¸§\nà¸à¸¥à¸²\nà¸à¸¥à¹‰à¸²\nà¸à¸¥à¸²à¸\nà¸à¸¥à¸²à¸à¸¥à¸²à¸”\nà¸à¸¥à¸²à¸‡\nà¸à¸¥à¸²à¸”\nà¸à¸¥à¸²à¸šà¸²à¸•\nà¸à¸¥à¸²à¸›\nà¸à¸¥à¹‰à¸²à¸¡\nà¸à¸¥à¸²à¸¢\nà¸à¸¥à¹‰à¸²à¸¢\nà¸à¸¥à¸²à¸¢à¸à¸¥à¸à¸\nà¸à¸¥à¹ˆà¸²à¸§\nà¸à¸¥à¸²à¹‚หม\nà¸à¸¥à¹ˆà¸³\nà¸à¸¥à¹‰à¸³\nà¸à¸¥à¸´à¹‰à¸‡\nà¸à¸¥à¸´à¸‡à¸„์\nà¸à¸¥à¸´à¹ˆà¸™\nà¸à¸¥à¸µ\nà¸à¸¥à¸µà¸š\nà¸à¸¥à¸¶à¸‡\nà¸à¸¥à¸¶à¸‡à¸„์\nà¸à¸¥à¸·à¸™\nà¸à¸¥à¸¸à¹ˆà¸¡\nà¸à¸¥à¸¸à¹‰à¸¡\nà¸à¸¥à¸¹à¹‚คส\nà¸à¹€à¸¥à¸§à¸£à¸°\nà¸à¸§à¸”\nà¸à¸§à¸™\nà¸à¸§à¸¡\nà¸à¸§à¸¢\nà¸à¸§à¸¢à¸ˆà¸±à¹Šà¸š\nà¸à¸§à¸¢à¸ˆà¸µà¹Š\nà¸à¹‹à¸§à¸¢à¹€à¸•à¸µà¹‹à¸¢à¸§\nà¸à¸§à¸±à¸\nà¸à¸§à¸±à¸”\nà¸à¸§à¸²\nà¸à¸§à¹ˆà¸²\nà¸à¸§à¸²à¸‡\nà¸à¸§à¹ˆà¸²à¸‡\nà¸à¸§à¹‰à¸²à¸‡\nà¸à¸§à¹ˆà¸²à¸‡à¹‚ซ้ง\nà¸à¸§à¸²à¸‡à¸•à¸¸à¹‰à¸‡\nà¸à¸§à¸²à¸”\nà¸à¸§à¹‰à¸²à¸™\nà¸à¸§à¹Šà¸²à¸™\nà¸à¸§à¹‰à¸²à¸§\nà¸à¸§à¸²à¸§à¹€à¸„รืà¸\nà¸à¸§à¸µ\nà¸à¸©à¸“ะ\nà¸à¸©à¸¡à¸²\nà¸à¸©à¸±à¸•à¸£\nà¸à¸©à¸±à¸•à¸£à¸²\nà¸à¸©à¸±à¸•à¸£à¸´à¸¢à¹Œ\nà¸à¸©à¸±à¸•à¸£à¸µ\nà¸à¸©à¸±à¸•à¸£à¸µà¸¢à¹Œ\nà¸à¸©à¸±à¸¢\nà¸à¸©à¸²à¸›à¸“์\nà¸à¸©à¸´à¸”ิ\nà¸à¸©à¸µà¸£\nà¸à¸©à¸µà¸£à¸˜à¸²à¸£à¸²\nà¸à¸©à¸µà¸£à¸°\nà¸à¸ªà¸²à¸™à¸•à¸´à¹Œ\nà¸à¸ªà¸´à¸à¸£\nà¸à¸ªà¸´à¸à¸£à¸£à¸¡\nà¸à¸ªà¸´à¸“\nà¸à¸«à¸±à¸‡à¸›à¸²à¸¢à¸²\nà¸à¸«à¸²à¸›à¸“ะ\nà¸à¹€à¸¬à¸§à¸£à¸²à¸\nà¸à¸\nà¸à¹ˆà¸\nà¸à¹‰à¸\nà¸à¹Šà¸\nà¸à¸à¸\nà¸à¹Šà¸à¸\nà¸à¸à¹à¸\nà¸à¸à¸‡\nà¸à¹ˆà¸à¸‡\nà¸à¹‰à¸à¸‡\nà¸à¸à¸‡à¸à¸à¸¢\nà¸à¹Šà¸à¸‹\nà¸à¸à¸”\nà¸à¹ˆà¸à¸™\nà¸à¹‰à¸à¸™\nà¸à¸à¸š\nà¸à¸à¸šà¸™à¸²à¸‡\nà¸à¹Šà¸à¸šà¸›à¸µà¹‰\nà¸à¸à¸›à¸£\nà¸à¹‰à¸à¸¡\nà¸à¸à¸¡à¸à¹‰à¸\nà¸à¹ˆà¸à¸¡à¸à¹‰à¸\nà¸à¸à¸¢\nà¸à¹‰à¸à¸¢\nà¸à¹‹à¸à¸¢\nà¸à¸à¸£à¸´à¸¥à¸¥à¸²\nà¸à¸à¸¥à¹Œà¸Ÿ\nà¸à¸à¹à¸¥à¸°\nà¸à¸à¹€à¸à¸µà¹Šà¸¢à¸°\nà¸à¸°\nà¸à¸°à¸à¸±à¸‡\nà¸à¸°à¸‡à¹‰à¸à¸‡à¸à¸°à¹à¸‡à¹‰à¸‡\nà¸à¸°à¸ˆà¸±à¸‡\nà¸à¸°à¹à¸ˆà¸°\nà¸à¸°à¸Šà¸°\nà¸à¸°à¸Šà¸±à¸‡\nà¸à¸°à¸Šà¸²à¸¡à¸²à¸¨\nà¸à¸°à¸Šà¸´à¸‡\nà¸à¸°à¸Šà¸¶à¹ˆà¸à¸à¸°à¸Šà¸±à¹ˆà¸\nà¸à¸°à¹à¸Šà¹ˆ\nà¸à¸°à¸‹à¸§à¸\nà¸à¸°à¸‹à¹‰à¸²à¸«à¸à¸¢\nà¸à¸°à¸‹à¸µà¹ˆ\nà¸à¸°à¹‚ซ่\nà¸à¸°à¹‚ซ้\nà¸à¸°à¸”à¸\nà¸à¸°à¸”ง\nà¸à¸°à¸”วน\nà¸à¸°à¸”à¸à¸\nà¸à¸°à¸”ะ\nà¸à¸°à¸”ังบาย\nà¸à¸°à¸”ัด\nà¸à¸°à¸”้าง\nà¸à¸°à¸”ำà¸à¸°à¸”่าง\nà¸à¸°à¸”ี\nà¸à¸°à¸”ี่\nà¸à¸°à¸”ุ้ง\nà¸à¸°à¹€à¸”้\nà¸à¸°à¹€à¸”à¸\nà¸à¸°à¹€à¸”ี๋ยว\nà¸à¸°à¸•à¸£à¸¸à¸”\nà¸à¸°à¸•à¸à¸\nà¸à¸°à¸•à¹ˆà¸à¸¢\nà¸à¸°à¸•à¸±à¸\nà¸à¸°à¸•à¸±à¹‰à¸\nà¸à¸°à¸•à¸±à¸‡\nà¸à¸°à¸•à¸±à¸‡à¸à¸°à¸•à¸´à¹‰à¸§\nà¸à¸°à¸•à¹Šà¸²à¸\nà¸à¸°à¸•à¹‰à¸³\nà¸à¸°à¸•à¸´à¹Šà¸à¸£à¸´à¸\nà¸à¸°à¸•à¸´à¸‡à¸à¸°à¹à¸•à¸‡\nà¸à¸°à¸•à¸µà¸š\nà¸à¸°à¸•à¸¶à¸‡à¸à¸°à¹à¸•à¸‡\nà¸à¸°à¸•à¸¸à¹Šà¸\nà¸à¸°à¸•à¸¸à¸”\nà¸à¸°à¸•à¸¹à¸\nà¸à¸°à¹€à¸•à¸‡\nà¸à¸°à¹‚ต๊à¸\nà¸à¸°à¹‚ตงà¸à¸°à¹€à¸•à¸‡\nà¸à¸°à¹‚ต้งโห่ง\nà¸à¸°à¸–ัว\nà¸à¸°à¸—à¸à¸£à¸\nà¸à¸°à¸—à¸\nà¸à¸°à¸—ัง\nà¸à¸°à¸—ังหัน\nà¸à¸°à¸—ัดรัด\nà¸à¸°à¸—ันหัน\nà¸à¸°à¸—ับ\nà¸à¸°à¸—ิ\nà¸à¸°à¸—ืà¸\nà¸à¸°à¸—ุน\nà¸à¸°à¹€à¸—ย\nà¸à¸°à¹€à¸—าะ\nà¸à¸°à¹à¸—้\nà¸à¸°à¹à¸—่ง\nà¸à¸°à¹à¸—น\nà¸à¸°à¸™à¸§à¸¥\nà¸à¸°à¸™à¸±à¸”\nà¸à¸°à¸šà¹ˆà¸à¸™à¸à¸°à¹à¸šà¹ˆà¸™\nà¸à¸°à¸šà¸±à¸‡\nà¸à¸°à¸šà¸±à¹‰à¸‡\nà¸à¸°à¸šà¸´à¹‰à¸‡\nà¸à¸°à¸šà¸´à¸¥\nà¸à¸°à¸šà¸¶à¸‡à¸à¸°à¸šà¸à¸™\nà¸à¸°à¸šà¸¸à¸”\nà¸à¸°à¹€à¸šà¹‰à¸\nà¸à¸°à¹€à¸šà¸µà¸¢à¸™\nà¸à¸°à¹€à¸šà¸·à¸\nà¸à¸°à¸›à¸£à¸´à¸”à¸à¸°à¸›à¸£à¸à¸¢\nà¸à¸°à¸›à¸£à¸´à¸š\nà¸à¸°à¸›à¸£à¸´à¸šà¸à¸°à¸›à¸£à¸à¸¢\nà¸à¸°à¸›à¸¥à¸à¸à¸°à¹€à¸›à¸¥à¸µà¹‰à¸¢\nà¸à¸°à¸›à¸§à¸à¸à¸°à¹€à¸›à¸µà¸¢à¸\nà¸à¸°à¸›à¸à¸¡\nà¸à¸°à¸›à¸à¸¡à¸‚าง\nà¸à¸°à¸›à¸°\nà¸à¸°à¸›à¹‰à¸³à¸à¸°à¹€à¸›à¹‹à¸\nà¸à¸°à¸›à¸´\nà¸à¸°à¸›à¸¹\nà¸à¸°à¸›à¸¹à¸”\nà¸à¸°à¸›à¸¹à¸”หลูด\nà¸à¸°à¹€à¸›à¸°\nà¸à¸°à¹€à¸›à¸´à¹Šà¸šà¸à¸°à¸›à¹Šà¸²à¸š\nà¸à¸°à¹€à¸›à¸µà¸¢à¸”\nà¸à¸°à¹à¸›à¹‰à¸™\nà¸à¸°à¹à¸›à¸°\nà¸à¸°à¹‚ปรง\nà¸à¸°à¹‚ปโล\nà¸à¸°à¸œà¸¥à¸¸à¸šà¸à¸°à¹‚ผล่\nà¸à¸°à¹€à¸œà¹ˆà¸™\nà¸à¸°à¹€à¸œà¸¥à¸\nà¸à¸°à¹‚ผลà¸à¸à¸°à¹€à¸œà¸¥à¸\nà¸à¸°à¸žà¸‡\nà¸à¸°à¸žà¸£à¸§à¸”à¸à¸°à¸žà¸£à¸²à¸”\nà¸à¸°à¸žà¸£à¹ˆà¸à¸‡à¸à¸°à¹à¸žà¸£à¹ˆà¸‡\nà¸à¸°à¸žà¸£à¸´à¸š\nà¸à¸°à¸žà¸£à¸¸à¸™\nà¸à¸°à¸žà¸£à¸¹à¸”à¸à¸°à¸žà¸£à¸²à¸”\nà¸à¸°à¸žà¸¥à¹‰à¸\nà¸à¸°à¸žà¹‰à¸\nà¸à¸°à¹€à¸žà¸£à¸²\nà¸à¸°à¹€à¸žà¸µà¸¢à¸”\nà¸à¸°à¹€à¸¡à¹‡à¸‡\nà¸à¸°à¸£à¹ˆà¸à¸‡à¸à¸°à¹à¸£à¹ˆà¸‡\nà¸à¸°à¸£à¸°à¸•à¸°\nà¸à¸°à¸£à¸°à¸«à¸™à¸°\nà¸à¸°à¸£à¸±à¸‡\nà¸à¸°à¸£à¸±à¸•\nà¸à¸°à¸£à¸²à¸‡\nà¸à¸°à¸£à¸´à¸‡\nà¸à¸°à¸£à¸¸à¸‡à¸à¸°à¸£à¸±à¸‡\nà¸à¸°à¸£à¸¸à¹ˆà¸‡à¸à¸°à¸£à¸´à¹ˆà¸‡\nà¸à¸°à¸£à¸¸à¸™\nà¸à¸°à¹€à¸£\nà¸à¸°à¹€à¸£à¸à¸°à¸£à¹ˆà¸à¸™\nà¸à¸°à¹€à¸£à¹ˆà¸à¸°à¸£à¹ˆà¸à¸™\nà¸à¸°à¹€à¸£à¹ˆà¸\nà¸à¸°à¹€à¸£à¸µà¹ˆà¸¢à¸à¸°à¸£à¸²à¸”\nà¸à¸°à¹‚รà¸à¸°à¹€à¸£\nà¸à¸°à¸¥à¸§à¸¢\nà¸à¸°à¸¥à¸\nà¸à¸°à¸¥à¹ˆà¸à¸à¸°à¹à¸¥à¹ˆ\nà¸à¸°à¸¥à¸à¸ˆà¸µà¹Š\nà¸à¸°à¸¥à¹ˆà¸à¸™\nà¸à¸°à¸¥à¹ˆà¸à¸¡à¸à¸°à¹à¸¥à¹ˆà¸¡\nà¸à¸°à¸¥à¹ˆà¸à¸¢à¸à¸°à¸«à¸¥à¸´à¸š\nà¸à¸°à¸¥à¸°à¸›à¸±à¸‡à¸«à¸²\nà¸à¸°à¸¥à¸°à¸¡à¸±à¸‡\nà¸à¸°à¸¥à¸°à¹à¸¡\nà¸à¸°à¸¥à¸°à¸à¸à¸¡\nà¸à¸°à¸¥à¸±à¸‡à¸•à¸±à¸‡à¹„à¸à¹ˆ\nà¸à¸°à¸¥à¸±à¸™\nà¸à¸°à¸¥à¸±à¸™à¸—า\nà¸à¸°à¸¥à¸²\nà¸à¸°à¸¥à¸²à¸‡\nà¸à¸°à¸¥à¸²à¸ªà¸µ\nà¸à¸°à¸¥à¸³à¸žà¸\nà¸à¸°à¸¥à¸´à¸‡\nà¸à¸°à¸¥à¸´à¸‡à¸›à¸¥à¸´à¸‡\nà¸à¸°à¸¥à¸´à¹‰à¸¡à¸à¸°à¹€à¸«à¸¥à¸µà¹ˆà¸¢\nà¸à¸°à¸¥à¸´à¸à¹ˆà¸à¸‡\nà¸à¸°à¸¥à¸¸à¸¡à¸žà¸µ\nà¸à¸°à¹€à¸¥à¹‡à¸‡\nà¸à¸°à¹€à¸¥à¹ˆà¸à¸à¸°à¸¥à¹ˆà¸²\nà¸à¸°à¹€à¸¥à¸´à¸”\nà¸à¸°à¹€à¸¥à¸µà¸¢à¸§\nà¸à¸°à¹à¸¥\nà¸à¸°à¹‚ล่\nà¸à¸°à¹‚ลง\nà¸à¸°à¸§à¸à¸à¸à¸°à¹à¸§à¸\nà¸à¸°à¸§à¸°\nà¸à¸°à¸ªà¹‰à¸¡à¸Šà¸·à¹ˆà¸™\nà¸à¸°à¸ªà¸±à¸‡\nà¸à¸°à¸ªà¹‰à¸²à¸«à¸à¸¢\nà¸à¸°à¸«à¸™à¸à¸à¸°à¹à¸«à¸™\nà¸à¸°à¸«à¸™à¹‡à¸à¸‡à¸à¸°à¹à¸«à¸™à¹‡à¸‡\nà¸à¸°à¸«à¸™à¸°\nà¸à¸°à¸«à¸™à¸¸à¸‡à¸à¸°à¸«à¸™à¸´à¸‡\nà¸à¸°à¸«à¸£à¹ˆà¸à¸‡\nà¸à¸°à¸«à¸£à¸à¸”\nà¸à¸°à¸«à¸£à¹‡à¸à¸¡à¸à¸°à¹à¸«à¸£à¹‡à¸¡\nà¸à¸°à¸«à¸£à¸²à¸™\nà¸à¸°à¸«à¸£à¸µà¹ˆ\nà¸à¸°à¸«à¸£à¸µà¹ˆà¸›à¸±à¹Šà¸š\nà¸à¸°à¸«à¸¥à¸²à¸›à¹‹à¸²\nà¸à¸°à¸«à¸¥à¹ˆà¸³\nà¸à¸°à¸«à¸¥à¸µà¹ˆ\nà¸à¸°à¸«à¸¥à¸µà¸à¸°à¸«à¸¥à¸\nà¸à¸°à¸«à¸¥à¸¸à¸à¸à¸°à¸«à¸¥à¸´à¸\nà¸à¸°à¸«à¸³\nà¸à¸°à¸«à¸³à¹à¸žà¸°\nà¸à¸°à¸«à¸·à¸\nà¸à¸°à¸«à¸¹à¸”\nà¸à¸°à¹€à¸«à¸£à¸µà¹ˆà¸¢à¸‡\nà¸à¸°à¹€à¸«à¸¥à¸²à¸°à¹€à¸›à¸²à¸°\nà¸à¸°à¹à¸«à¸¢à¸\nà¸à¸°à¹à¸«à¸°\nà¸à¸°à¹‚หลà¸\nà¸à¸°à¹‚หล้ง\nà¸à¸°à¹„หล่\nà¸à¸°à¸à¸§à¸¡\nà¸à¸°à¸à¸à¸¡\nà¸à¸°à¸à¸²à¸™\nà¸à¸°à¸à¸²à¸¡\nà¸à¸°à¸à¸¹à¸š\nà¸à¸±à¸\nà¸à¸±à¹Šà¸\nà¸à¸±à¸à¸à¸£à¸²\nà¸à¸±à¸à¸à¸²à¸£à¸¸\nà¸à¸±à¸à¸‚ฬะ\nà¸à¸±à¸‡\nà¸à¸±à¹‰à¸‡\nà¸à¸±à¸‡à¸à¹‰à¸²\nà¸à¸±à¸‡à¹€à¸à¸µà¸¢à¸‡\nà¸à¸±à¸‡à¸‚า\nà¸à¸±à¸‡à¸‰à¸´à¸™\nà¸à¸±à¸‡à¸Ÿà¸¹\nà¸à¸±à¸‡à¸§à¸¥\nà¸à¸±à¸‡à¸§à¸²à¸™\nà¸à¸±à¸‡à¸ªà¸”าล\nà¸à¸±à¸‡à¹„ส\nà¸à¸±à¸‡à¸«à¸±à¸™\nà¸à¸±à¸ˆà¸‰à¸›à¸°\nà¸à¸±à¸ˆà¸‰à¸°\nà¸à¸±à¸ˆà¸‰à¸²\nà¸à¸±à¸\nà¸à¸±à¸à¸ˆà¸¸à¸\nà¸à¸±à¸à¸ˆà¸¸à¸à¸²à¸£à¸²\nà¸à¸±à¸à¸Šà¸²\nà¸à¸±à¸à¸à¸²\nà¸à¸±à¸\nà¸à¸±à¸“à¸à¸à¸°\nà¸à¸±à¸“à¸à¸à¸°\nà¸à¸±à¸“à¸à¸Šà¸°\nà¸à¸±à¸“à¸à¸±à¸¨\nà¸à¸±à¸“à¸à¸±à¸¨à¸§à¹Œ\nà¸à¸±à¸“à¸à¸²\nà¸à¸±à¸“à¸à¸µ\nà¸à¸±à¸“ฑ์\nà¸à¸±à¸“ณ์\nà¸à¸±à¸“หา\nà¸à¸±à¸”\nà¸à¸±à¸•à¸•à¸´à¸à¸¡à¸²à¸ª\nà¸à¸±à¸•à¸•à¸´à¸à¸²\nà¸à¸±à¸•à¸•à¸´à¹€à¸à¸¢à¸²\nà¸à¸±à¸•à¸£à¸²\nà¸à¸±à¸—ลี\nà¸à¸±à¸™\nà¸à¸±à¹ˆà¸™\nà¸à¸±à¹‰à¸™\nà¸à¸±à¸™à¹€à¸à¸£à¸²\nà¸à¸±à¸™à¹„à¸à¸£\nà¸à¸±à¸™à¸Šà¸´à¸‡\nà¸à¸±à¸™à¹€à¸Šà¸\nà¸à¸±à¸™à¸”าร\nà¸à¸±à¸™à¸”าล\nà¸à¸±à¸™à¹„ด\nà¸à¸±à¸™à¸•à¹Œ\nà¸à¸±à¸™à¸•à¸±à¸‡\nà¸à¸±à¸™à¹„ตร\nà¸à¸±à¸™à¸—ร\nà¸à¸±à¸™à¸—ราà¸à¸£\nà¸à¸±à¸™à¸ ิรมย์\nà¸à¸±à¸™à¹€à¸¡à¸µà¸¢à¸‡\nà¸à¸±à¸™à¸¢à¹Œ\nà¸à¸±à¸™à¸¢à¸²\nà¸à¸±à¸™à¸¢à¸²à¸¢à¸™\nà¸à¸±à¸™à¸¥à¸‡\nà¸à¸±à¸™à¸¥à¸à¸‡\nà¸à¸±à¸™à¹à¸ªà¸‡\nà¸à¸±à¹‰à¸™à¸«à¸¢à¸±à¹ˆà¸™\nà¸à¸±à¸š\nà¸à¸±à¸šà¹à¸à¹‰\nà¸à¸±à¸›\nà¸à¸±à¸›à¸•à¸±à¸™\nà¸à¸±à¸›à¸›à¸²à¸ªà¸´à¸\nà¸à¸±à¸›à¸›à¸´à¸¢à¸ ัณฑ์\nà¸à¸±à¸›à¸›à¸´à¸¢à¸°\nà¸à¸±à¸¡à¸›à¸™à¸²à¸—\nà¸à¸±à¸¡à¸›à¸£à¸°à¹‚ด\nà¸à¸±à¸¡à¸›à¸µ\nà¸à¸±à¸¡à¸žà¸¥\nà¸à¸±à¸¡à¸žà¸¸à¸Š\nà¸à¸±à¸¡à¸žà¸¹\nà¸à¸±à¸¡à¸žà¸¹à¸Šà¸²\nà¸à¸±à¸¡à¹‚พช\nà¸à¸±à¸¡à¸¡à¸±à¸Šà¸§à¸²à¸•\nà¸à¸±à¸¡à¸¡à¸±à¸à¸à¸²à¸™\nà¸à¸±à¸¡à¸¡à¸±à¸™à¸•à¸ าพรังสี\nà¸à¸±à¸¡à¸¡à¸±à¸™à¸•à¸£à¸±à¸‡à¸ªà¸µ\nà¸à¸±à¸¡à¸¡à¸²à¸£\nà¸à¸±à¸¡à¸¥à¸²à¸¨\nà¸à¸±à¸¢à¸§à¸´à¸à¸±à¸¢\nà¸à¸±à¸¥à¸Šà¸²à¸\nà¸à¸±à¸¥à¸šà¸\nà¸à¸±à¸¥à¸›à¹Œ\nà¸à¸±à¸¥à¸›à¸™à¸²\nà¸à¸±à¸¥à¸›à¸žà¸¤à¸à¸©à¹Œ\nà¸à¸±à¸¥à¸›à¸±à¸‡à¸«à¸²\nà¸à¸±à¸¥à¸›à¸²à¸§à¸ªà¸²à¸™\nà¸à¸±à¸¥à¸›à¸´à¸•\nà¸à¸±à¸¥à¹€à¸¡à¹‡à¸”\nà¸à¸±à¸¥à¸¢à¸²\nà¸à¸±à¸¥à¸¢à¸²à¸“มิตร\nà¸à¸±à¸¥à¸¢à¸²à¸“ี\nà¸à¸±à¸¥à¸à¸à¸¡\nà¸à¸±à¸¨à¸¢à¸›\nà¸à¸±à¸©à¸“\nà¸à¸²\nà¸à¹‹à¸²\nà¸à¸²à¸\nà¸à¸²à¸à¸šà¸²à¸—\nà¸à¸²à¸à¸°à¸—ิง\nà¸à¸²à¸à¸°à¹€à¸¢à¸µà¸¢\nà¸à¸²à¸à¸µ\nà¸à¸²à¸‡\nà¸à¹‰à¸²à¸‡\nà¸à¸²à¸‡à¹€à¸à¸‡\nà¸à¸²à¸‡à¹€à¸‚น\nà¸à¹Šà¸²à¸‹\nà¸à¸²à¸‹à¸°à¸¥à¸à¸‡\nà¸à¸²à¸à¸ˆà¸™à¸²\nà¸à¸²à¸\nà¸à¸²à¸”\nà¸à¹Šà¸²à¸”\nà¸à¸²à¸™\nà¸à¹ˆà¸²à¸™\nà¸à¹‰à¸²à¸™\nà¸à¹Šà¸²à¸™\nà¸à¸²à¸™à¸”า\nà¸à¸²à¸™à¸•à¹Œ\nà¸à¸²à¸™à¸™\nà¸à¹‰à¸²à¸™à¸žà¸£à¹‰à¸²à¸§\nà¸à¸²à¸™à¸žà¸¥à¸¹\nà¸à¸²à¸™à¹‰à¸²\nà¸à¸²à¸š\nà¸à¹‰à¸²à¸š\nà¸à¸²à¸šà¸¹\nà¸à¸²à¸žà¸¢à¹Œ\nà¸à¸²à¹€à¸Ÿà¸à¸µà¸™\nà¸à¸²à¹à¸Ÿ\nà¸à¸²à¸¡\nà¸à¹‰à¸²à¸¡\nà¸à¸²à¸¡à¸²à¸£à¸¡à¸“์\nà¸à¸²à¸¡à¸´à¸™à¸µ\nà¸à¸²à¹€à¸¡à¸ªà¸¸à¸¡à¸´à¸ˆà¸‰à¸²à¸ˆà¸²à¸£\nà¸à¸²à¸¢\nà¸à¹ˆà¸²à¸¢\nà¸à¸²à¹€à¸¢à¸™\nà¸à¸²à¸£\nà¸à¸²à¸£à¸“์\nà¸à¸²à¸£à¹Œà¸”\nà¸à¸²à¸£à¹Œà¸•à¸¹à¸™\nà¸à¸²à¸£à¸šà¸¹à¸£\nà¸à¸²à¸£à¸¢à¹Œ\nà¸à¸²à¸£à¸§à¸´à¸\nà¸à¸²à¸£à¹€à¸§à¸\nà¸à¸²à¸£à¸°à¹€à¸à¸”\nà¸à¸²à¸£à¸°à¸šà¸¸à¸«à¸™à¸´à¸‡\nà¸à¸²à¸£à¸±à¸“ย์\nà¸à¸²à¸£à¸±à¸™à¸•à¹Œ\nà¸à¸²à¸£à¸²à¸‡à¸«à¸±à¸§à¸‚วาน\nà¸à¸²à¸£à¸´à¸•à¸à¸²à¸£à¸\nà¸à¸²à¸£à¸´à¸•à¸§à¸²à¸ˆà¸\nà¸à¸²à¸£à¸¸à¸\nà¸à¸²à¸£à¸¸à¸“ย์\nà¸à¸²à¹€à¸£à¸à¸²à¸£à¹ˆà¸à¸™\nà¸à¸²à¸¥\nà¸à¸²à¸¥à¸à¸£à¸£à¸“ี\nà¸à¸²à¸¥à¸à¸´à¸“ี\nà¸à¸²à¸¥à¸ˆà¸±à¸à¸£\nà¸à¸²à¸¥à¸±à¸à¸à¸¸à¸•à¸²\nà¸à¸²à¸¥à¸±à¸à¸à¸¹\nà¸à¸²à¸¥à¸±à¸”\nà¸à¸²à¸¥à¸²à¸™à¸¸à¸à¸²à¸¥\nà¸à¸²à¸¥à¸´à¸\nà¸à¸²à¸¥à¸µ\nà¸à¸²à¹à¸¥\nà¸à¸²à¹à¸¥à¹‡à¸à¸‹à¸µ\nà¸à¸²à¹à¸¥à¹‡à¸à¹‚ทส\nà¸à¸²à¸§\nà¸à¹‰à¸²à¸§\nà¸à¸²à¸§à¸§à¸²à¸§\nà¸à¸²à¸§à¸²à¸‡\nà¸à¸²à¹à¸§à¸™\nà¸à¸²à¸¨à¸´à¸\nà¸à¸²à¸©à¸à¸°\nà¸à¸²à¸©à¸²\nà¸à¸²à¸ªà¸£\nà¸à¸²à¸ªà¸°\nà¸à¸²à¸ªà¸²\nà¸à¸²à¸ªà¸²à¸£\nà¸à¸²à¸ªà¸²à¸§à¸°\nà¸à¸²à¸ªà¸´à¹‚น\nà¸à¸²à¸«à¸¥\nà¸à¸²à¸«à¸¥à¸‡\nà¸à¸²à¸«à¸¥à¸²\nà¸à¸²à¹€à¸«à¸§à¹ˆà¸²\nà¸à¸²à¹„หล่\nà¸à¸²à¸¬\nà¸à¸²à¸¬à¸²à¸§à¸\nà¸à¸²à¸®à¸±à¸‡\nà¸à¸³\nà¸à¹ˆà¸³\nà¸à¸³à¸à¸§à¸¡\nà¸à¸³à¸à¸±à¸”\nà¸à¸³à¸à¸±à¸š\nà¸à¹‰à¸³à¸à¸¶à¹ˆà¸‡\nà¸à¸³à¸à¸¹à¸™\nà¸à¹‰à¸³à¹€à¸à¸´à¸™\nà¸à¸³à¹€à¸à¸µà¸¢à¸‡\nà¸à¸³à¸„ูน\nà¸à¸³à¸ˆà¸£\nà¸à¸³à¸ˆà¸±à¸”\nà¸à¸³à¸ˆà¸²à¸¢\nà¸à¸³à¸Šà¸±à¸š\nà¸à¸³à¸Šà¸³\nà¸à¸³à¸‹à¸²à¸š\nà¸à¸³à¸‹à¸³\nà¸à¸³à¸”้น\nà¸à¸³à¸”ัด\nà¸à¸³à¸”าล\nà¸à¸³à¹€à¸”า\nà¸à¸³à¸˜à¸£\nà¸à¸³à¸™à¸¥\nà¸à¸³à¸™à¸±à¸™\nà¸à¸³à¸™à¸±à¸¥\nà¸à¸³à¹€à¸™à¸´à¸”\nà¸à¸³à¸šà¸±à¸‡\nà¸à¹ˆà¸³à¸šà¸¶à¹‰à¸‡\nà¸à¸³à¹€à¸šà¹‰à¸\nà¸à¸³à¸›à¸\nà¸à¸³à¸›à¸±à¹ˆà¸™\nà¸à¸³à¸œà¸¥à¸²\nà¸à¸³à¸žà¸‡\nà¸à¸³à¸žà¸”\nà¸à¸³à¸žà¸•\nà¸à¸³à¸žà¸£à¹‰à¸²\nà¸à¸³à¸žà¸£à¸²à¸\nà¸à¸³à¸žà¸§à¸”\nà¸à¸³à¸žà¸à¸‡\nà¸à¸³à¸žà¸·à¸”\nà¸à¸³à¸žà¸¸à¸”\nà¸à¸³à¸žà¸¹\nà¸à¸³à¹€à¸žà¸¥à¸´à¸‡\nà¸à¸³à¹à¸žà¸‡\nà¸à¸³à¸ ู\nà¸à¸³à¸¡à¸¥à¸²à¸¨à¸™à¹Œ\nà¸à¸³à¸¡à¹€à¸¥à¸¨\nà¸à¸³à¸¡à¸°à¸–ัน\nà¸à¸³à¸¡à¸°à¸¥à¸\nà¸à¸³à¸¡à¸°à¸«à¸¢à¸µà¹ˆ\nà¸à¸³à¸¡à¸°à¸«à¸£à¸´à¸”\nà¸à¸³à¸¡à¸±à¸‡à¸¥à¸°à¸à¸²à¸£\nà¸à¸³à¸¡à¸±à¸‡à¸§à¸´à¸¥à¸´à¸•\nà¸à¸³à¸¡à¸±à¸Šà¸žà¸¥\nà¸à¸³à¸¢à¸²à¸™\nà¸à¸³à¸¢à¸³\nà¸à¸³à¸£à¸\nà¸à¸³à¸£à¸²à¸š\nà¸à¸³à¸£à¸²à¸¥\nà¸à¸³à¹€à¸£à¸´à¸š\nà¸à¸³à¹„ร\nà¸à¸³à¸¥à¸±à¸‡\nà¸à¸³à¸¥à¸¸à¸‡\nà¸à¸³à¹€à¸¥à¸²\nà¸à¸³à¹„ล\nà¸à¸³à¸ªà¸£à¸”\nà¸à¸³à¸ªà¸£à¸§à¸¥\nà¸à¸³à¸«à¸™à¸”\nà¸à¸³à¸«à¸™à¸±à¸”\nà¸à¸³à¹€à¸«à¸™à¹‡à¸ˆ\nà¸à¸³à¹à¸«à¸‡\nà¸à¸´à¸\nà¸à¸´à¹Šà¸\nà¸à¸´à¹ˆà¸‡\nà¸à¸´à¹‰à¸‡à¸à¹ˆà¸²\nà¸à¸´à¹‰à¸‡à¸à¸·à¸\nà¸à¸´à¹‰à¸‡à¹‚ครง\nà¸à¸´à¸ˆ\nà¸à¸´à¸ˆà¸ˆà¸°\nà¸à¸´à¸ˆà¸ˆà¸²\nà¸à¸´à¸”าà¸à¸²à¸£\nà¸à¸´à¸”าหยัน\nà¸à¸´à¸•à¸•à¸´\nà¸à¸´à¸•à¸•à¸´à¸¡à¸¨à¸±à¸à¸”ิ์\nà¸à¸´à¸™\nà¸à¸´à¸™à¸™à¸£\nà¸à¸´à¸™à¸›à¸¥à¸µ\nà¸à¸´à¸™à¹€à¸›à¸µà¹‰à¸¢à¸§\nà¸à¸´à¸™à¸£à¸´à¸™\nà¸à¸´à¸™à¸£à¸µ\nà¸à¸´à¹Šà¸š\nà¸à¸´à¸¡à¸•à¸¶à¹‹à¸‡\nà¸à¸´à¸¡à¸´à¸Šà¸²à¸•à¸´\nà¸à¸´à¸¡à¸´à¸§à¸´à¸—ยา\nà¸à¸´à¹‚มโน\nà¸à¸´à¹‚ยตีน\nà¸à¸´à¸£à¸°\nà¸à¸´à¸£à¸´à¸“ี\nà¸à¸´à¸£à¸´à¸™à¸—\nà¸à¸´à¸£à¸´à¹€à¸™à¸¨à¸§à¸£\nà¸à¸´à¸£à¸´à¸¢à¸²\nà¸à¸´à¹€à¸¥à¸™\nà¸à¸´à¹€à¸¥à¸ª\nà¸à¸´à¹‚ล\nà¸à¸´à¹‚ลมà¸à¸°\nà¸à¸´à¹ˆà¸§\nà¸à¸´à¹‹à¸§\nà¸à¸µ\nà¸à¸µà¹ˆ\nà¸à¸µà¹‰\nà¸à¸µà¹Š\nà¸à¸µà¹‹\nà¸à¸µà¸à¸§à¸´à¸—ยา\nà¸à¸µà¸”\nà¸à¸µà¸•à¸²à¸£à¹Œ\nà¸à¸µà¸š\nà¸à¸µà¸£à¸•à¸´\nà¸à¸µà¸¬à¸²\nà¸à¸¶à¸\nà¸à¸¶à¸‡\nà¸à¸¶à¹ˆà¸‡\nà¸à¸¶à¹‹à¸™\nà¸à¸¸\nà¸à¸¸à¸\nà¸à¸¸à¹Šà¸\nà¸à¸¸à¸à¸à¸¸à¸\nà¸à¸¸à¸à¸à¸¸à¸£\nà¸à¸¸à¸à¸£à¸£à¸¡\nà¸à¸¸à¹‰à¸‡\nà¸à¸¸à¸‡à¸à¸™\nà¸à¸¸à¸‡à¸²à¸™\nà¸à¸¸à¹‚งà¸\nà¸à¸¸à¸ˆà¸µ\nà¸à¸¸à¸à¹à¸ˆ\nà¸à¸¸à¸à¸Šà¸£\nà¸à¸¸à¸Ž\nà¸à¸¸à¸Žà¸²\nà¸à¸¸à¸Žà¸µ\nà¸à¸¸à¸Žà¸¸à¸¡à¸žà¸µ\nà¸à¸¸à¸à¸à¸±à¸‡\nà¸à¸¸à¸à¸´\nà¸à¸¸à¸“ฑ์\nà¸à¸¸à¸“ฑล\nà¸à¸¸à¸“ฑี\nà¸à¸¸à¸“โฑ\nà¸à¸¸à¸“าล\nà¸à¸¸à¸“ี\nà¸à¸¸à¸”\nà¸à¸¸à¸”ัง\nà¸à¸¸à¸”ั่น\nà¸à¸¸à¸”า\nà¸à¸¸à¸—ัณฑ์\nà¸à¸¸à¸™\nà¸à¸¸à¹Šà¸™\nà¸à¸¸à¸™à¹€à¸Šà¸µà¸¢à¸‡\nà¸à¸¸à¸™à¸—ี\nà¸à¸¸à¹‚นà¸à¸²à¸¡à¸\nà¸à¸¸à¸š\nà¸à¸¸à¸šà¸à¸±à¸š\nà¸à¸¸à¸¡\nà¸à¸¸à¹ˆà¸¡\nà¸à¸¸à¸¡à¸à¸à¸¢\nà¸à¸¸à¸¡à¸ ์\nà¸à¸¸à¸¡à¸ นิยา\nà¸à¸¸à¸¡à¸ ัณฑ์\nà¸à¸¸à¸¡à¸ า\nà¸à¸¸à¸¡à¸ ิล\nà¸à¸¸à¸¡à¸ ีล์\nà¸à¸¸à¸¡à¹€à¸«à¸‡\nà¸à¸¸à¸¡à¸²à¸£\nà¸à¸¸à¸¡à¸²à¸£à¸²\nà¸à¸¸à¸¡à¸²à¸£à¸µ\nà¸à¸¸à¸¡à¸¸à¸—\nà¸à¸¸à¸¢\nà¸à¸¸à¹Šà¸¢\nà¸à¸¸à¹‹à¸¢\nà¸à¸¸à¸¢à¸Šà¹ˆà¸²à¸¢\nà¸à¸¸à¸¢à¹€à¸®à¸‡\nà¸à¸¸à¸£à¸£à¸°\nà¸à¸¸à¸£à¸¸à¸žà¸´à¸™à¸—์\nà¸à¸¸à¹€à¸£à¸²\nà¸à¸¸à¸¥\nà¸à¸¸à¸¥à¸²\nà¸à¸¸à¸¥à¸²à¸«à¸¥\nà¸à¸¸à¸¥à¸µ\nà¸à¸¸à¸¥à¸µà¸à¸¸à¸ˆà¸\nà¸à¸¸à¹€à¸¥à¸²\nà¸à¸¸à¹à¸¥\nà¸à¸¸à¹€à¸§à¸£\nà¸à¸¸à¸¨à¸£à¸²à¸Š\nà¸à¸¸à¸¨à¸¥\nà¸à¸¸à¸¨à¹‚ลบาย\nà¸à¸¸à¸ªà¸¸à¸¡\nà¸à¸¸à¸ªà¸¸à¸¡à¸ ์\nà¸à¸¸à¸ªà¸¸à¸¡à¸²\nà¸à¸¸à¸ªà¸¸à¸¡à¸²à¸¥à¸¢à¹Œ\nà¸à¸¸à¸ªà¸¸à¸¡à¸´à¸•à¸¥à¸”าเวลลิตา\nà¸à¸¸à¸«à¸™à¸µ\nà¸à¸¸à¸«à¸™à¸¸à¸‡\nà¸à¸¸à¸«à¸£à¹ˆà¸²\nà¸à¸¸à¸«à¸¥à¹ˆà¸²\nà¸à¸¸à¸«à¸¥à¸²à¸š\nà¸à¸¸à¹à¸«à¸¥à¸°\nà¸à¸¹\nà¸à¸¹à¹ˆ\nà¸à¸¹à¹‰\nà¸à¸¹à¹Šà¸\nà¸à¸¹à¸\nà¸à¸¹à¸à¸²\nà¸à¸¹à¸“ฑ์\nà¸à¸¹à¸”\nà¸à¸¹à¸š\nà¸à¸¹à¸›à¸£à¸µ\nà¸à¸¹à¸£à¸¡à¸°\nà¸à¸¹à¸£à¸¡à¸²à¸§à¸•à¸²à¸£\nเà¸\nเà¸à¹‰\nเà¸à¹Š\nเà¸à¹‹\nเà¸à¸\nเà¸à¹Šà¸\nเà¸à¸à¸¡à¸°à¹€à¸«à¸£à¸\nเà¸à¹Šà¸à¸®à¸§à¸¢\nเà¸à¹‰à¸à¸±à¸‡\nเà¸à¹‡à¸‡\nเà¸à¹ˆà¸‡\nเà¸à¹‰à¸‡\nเà¸à¹‹à¸‡\nเà¸à¸‡à¸à¸à¸¢\nเà¸à¹ˆà¸‡à¸à¸²à¸ˆ\nเà¸à¸‡à¹€à¸‚ง\nเà¸à¹‹à¸‡à¹€à¸„ง\nเà¸à¹‡à¸ˆ\nเà¸à¸ˆà¸´à¸à¸²à¸ˆà¸²à¸£à¸¢à¹Œ\nเà¸à¸Šà¸²\nเà¸à¸“ฑ์\nเà¸à¸”\nเà¸à¹‡à¸”\nเà¸à¸•à¸¸\nเà¸à¸™\nเà¸à¹‡à¸š\nเà¸à¸¡\nเà¸à¸¢\nเà¸à¸¢à¸¹à¸£\nเà¸à¸£à¸‡\nเà¸à¸£à¹‡à¸‡\nเà¸à¸£à¹‡à¸”\nเà¸à¸£à¸™\nเà¸à¸£à¹ˆà¸\nเà¸à¸£à¸à¸°\nเà¸à¸£à¸²à¸°\nเà¸à¸£à¸´à¸\nเà¸à¸£à¸´à¸™\nเà¸à¸£à¸´à¹ˆà¸™\nเà¸à¸£à¸µà¸¢à¸\nเà¸à¸£à¸µà¸¢à¸‡\nเà¸à¸£à¸µà¸¢à¸”\nเà¸à¸£à¸µà¸¢à¸™\nเà¸à¸£à¸µà¸¢à¸š\nเà¸à¸£à¸µà¸¢à¸¡\nเà¸à¸£à¸µà¸¢à¸§\nเà¸à¸£à¸µà¹‰à¸¢à¸§\nเà¸à¹€à¸£\nเà¸à¸¥à¹‡à¸”\nเà¸à¸¥à¸¨\nเà¸à¸¥à¸\nเà¸à¸¥à¸²\nเà¸à¸¥à¹‰à¸²\nเà¸à¸¥à¸²à¸°\nเà¸à¸¥à¸µà¹ˆà¸¢\nเà¸à¸¥à¸µà¹‰à¸¢\nเà¸à¸¥à¸µà¸¢à¸‡\nเà¸à¸¥à¸µà¹‰à¸¢à¸‡\nเà¸à¸¥à¸µà¸¢à¸”\nเà¸à¸¥à¸µà¸¢à¸§\nเà¸à¸¥à¸·à¸\nเà¸à¸¥à¸·à¹‰à¸\nเà¸à¸¥à¸·à¸à¸\nเà¸à¸¥à¸·à¹ˆà¸à¸™\nเà¸à¸¥à¸·à¹‰à¸à¸™\nเà¸à¸§à¸±à¸\nเà¸à¸§à¸µà¸¢à¸™\nเà¸à¸¨\nเà¸à¸¨à¸§\nเà¸à¸¨à¸§à¸°\nเà¸à¸¨à¸²\nเà¸à¸¨à¸´à¸™à¸µ\nเà¸à¸¨à¸µ\nเà¸à¸©à¸•à¸£\nเà¸à¸©à¸¡\nเà¸à¸©à¸µà¸¢à¸“\nเà¸à¸©à¸µà¸¢à¸™\nเà¸à¸©à¸µà¸¢à¸£\nเà¸à¸ª\nเà¸à¸ªà¸£\nเà¸à¸ªà¸£à¸µ\nเà¸à¸ªà¸²\nเà¸à¸ªà¸µ\nเà¸à¹‰à¸\nเà¸à¸à¸´à¸Šà¸²\nเà¸à¸°\nเà¸à¸°à¸à¸°\nเà¸à¸²\nเà¸à¹ˆà¸²\nเà¸à¹‰à¸²\nเà¸à¹‹à¸²\nเà¸à¸²à¸•à¹Œ\nเà¸à¸²à¸—ัณฑ์\nเà¸à¸²à¸šà¸´à¸¥\nเà¸à¸²à¸¥à¸±à¸”\nเà¸à¸²à¸¥à¸´à¸™\nเà¸à¸²à¹„ศย\nเà¸à¸²à¸«à¸¥à¸µ\nเà¸à¸²à¹€à¸«à¸¥à¸²\nเà¸à¸²à¹€à¸«à¸¥à¸µà¸¢à¸‡\nเà¸à¹‰à¸²à¸à¸µà¹‰\nเà¸à¸²à¸°\nเà¸à¸´à¹‰à¸‡\nเà¸à¸´à¸”\nเà¸à¸´à¸™\nเà¸à¸´à¸š\nเà¸à¸µà¸¢\nเà¸à¸µà¸¢à¸à¸à¸²à¸¢\nเà¸à¸µà¸¢à¸‡\nเà¸à¸µà¹ˆà¸¢à¸‡\nเà¸à¸µà¹‹à¸¢à¸‡\nเà¸à¸µà¸¢à¸ˆ\nเà¸à¸µà¸¢à¸”\nเà¸à¸µà¸¢à¸™\nเà¸à¸µà¹‰à¸¢à¸¡à¹„ฉ่\nเà¸à¸µà¹‰à¸¢à¸¡à¸à¸µà¹‹\nเà¸à¸µà¸¢à¸£à¹Œ\nเà¸à¸µà¸¢à¸£à¸•à¸´\nเà¸à¸µà¸¢à¸£à¸•à¸´à¹Œ\nเà¸à¸µà¹ˆà¸¢à¸§\nเà¸à¸µà¹‰à¸¢à¸§\nเà¸à¸µà¹Šà¸¢à¸§\nเà¸à¸µà¹Šà¸¢à¸°\nเà¸à¸·à¹‰à¸\nเà¸à¸·à¸à¸\nเà¸à¸·à¹‰à¸à¸à¸¹à¸¥\nเà¸à¸·à¸à¸š\nà¹à¸\nà¹à¸à¹ˆ\nà¹à¸à¹‰\nà¹à¸à¸‡\nà¹à¸à¹ˆà¸‡\nà¹à¸à¹‰à¸‡\nà¹à¸à¹Šà¸‡\nà¹à¸à¸‡à¹„ด\nà¹à¸à¸‡à¹à¸™à¸‡\nà¹à¸à¹‚ดลิเนียม\nà¹à¸à¸™\nà¹à¸à¹ˆà¸™\nà¹à¸à¹Šà¸›\nà¹à¸à¸¡\nà¹à¸à¹‰à¸¡\nà¹à¸à¸¡à¸¡à¸²\nà¹à¸à¸£à¸\nà¹à¸à¸£à¹ˆà¸‡\nà¹à¸à¸£à¹‡à¸™\nà¹à¸à¸£à¸™à¸´à¸•\nà¹à¸à¸£à¹„ฟต์\nà¹à¸à¸£à¹ˆà¸§\nà¹à¸à¸£à¸°\nà¹à¸à¸¥\nà¹à¸à¸¥à¹‰à¸‡\nà¹à¸à¸¥à¸™\nà¹à¸à¸¥à¸š\nà¹à¸à¸¥à¹‰à¸¡\nà¹à¸à¸¥à¸¥à¸à¸™\nà¹à¸à¸¥à¹€à¸¥à¸µà¸¢à¸¡\nà¹à¸à¸¥à¹‰à¸§\nà¹à¸à¸¥à¸°\nà¹à¸à¹à¸¥\nà¹à¸à¸§\nà¹à¸à¹‰à¸§\nà¹à¸à¸§à¹ˆà¸‡\nà¹à¸à¹Šà¸ª\nà¹à¸à¸°\nโà¸\nโà¸à¹ˆ\nโà¸à¹‰\nโà¸à¹‹\nโà¸à¸\nโà¸à¸à¸™à¸¸à¸—\nโà¸à¸à¸´à¸¥à¸²\nโà¸à¹‚à¸à¹‰\nโà¸à¸‡\nโà¸à¹ˆà¸‡\nโà¸à¸‡à¸à¸²à¸‡\nโà¸à¹‰à¸‡à¹€à¸à¹‰à¸‡\nโà¸à¸‡à¹‚à¸à¹‰\nโà¸à¹‰à¸‡à¹‚ค้ง\nโà¸à¹€à¸Šà¸²à¸§à¹Œ\nโà¸à¸à¸ˆà¸™à¸²à¸—\nโà¸à¸à¸ˆà¸²\nโà¸à¸à¸´\nโà¸à¸\nโà¸à¸à¸²à¸ª\nโà¸à¸“ะ\nโà¸à¸”ัง\nโà¸à¸—ัณฑ์\nโà¸à¸™\nโà¸à¹ˆà¸™\nโà¸à¹‹à¸™\nโà¸à¸¡à¸¥\nโà¸à¸¡à¸¸à¸—\nโà¸à¹€à¸¡à¸™\nโà¸à¹€à¸¡à¸¨\nโà¸à¸¢\nโà¸à¸£à¸\nโà¸à¸£à¸à¸à¸£à¸²à¸\nโà¸à¸£à¸‡\nโà¸à¸£à¹ˆà¸‡\nโà¸à¸£à¹ˆà¸‡à¸à¸£à¹ˆà¸²à¸‡\nโà¸à¸£à¸‡à¹€à¸à¸£à¸‡\nโà¸à¸£à¹‹à¸‡à¹€à¸à¸£à¹‹à¸‡\nโà¸à¸£à¸à¸ˆ\nโà¸à¸£à¸•à¹‹à¸™\nโà¸à¸£à¸˜\nโà¸à¸£à¸˜à¸²\nโà¸à¸£à¹‹à¸™\nโà¸à¸£à¸¡\nโà¸à¸£à¸¢\nโà¸à¸£à¸¨\nโà¸à¹‚รโà¸à¹€à¸•\nโà¸à¹‚รโà¸à¹‚รà¸\nโà¸à¹‚รโà¸à¹‚ส\nโà¸à¸¥à¸™\nโà¸à¸¥à¸²à¸«à¸¥\nโà¸à¹„ล\nโà¸à¸§à¸´à¸—\nโà¸à¸¨\nโà¸à¸¨à¸¥\nโà¸à¸©à¸¡\nโà¸à¸ªà¸™\nโà¸à¸ªà¸±à¸Š\nโà¸à¸ªà¸´à¸™à¸—ร์\nโà¸à¸ªà¸µà¸¢à¹Œ\nโà¸à¸ªà¸¸à¸¡\nโà¸à¹„สย\nโà¸à¸«à¸\nใà¸à¸¥à¹‰\nไà¸\nไà¸à¹ˆ\nไà¸à¹Š\nไà¸à¹‹\nไà¸à¹ˆà¸à¸à¸¡\nไà¸à¸žà¸±à¸¥\nไà¸à¸£\nไà¸à¸£à¸ž\nไà¸à¸£à¸¥à¸²à¸ª\nไà¸à¸£à¸¨à¸£\nไà¸à¸£à¸¨à¸£à¸µ\nไà¸à¸£à¸ªà¸£\nไà¸à¸£à¸ªà¸£à¸µ\nไà¸à¸£à¸ªà¸´à¸—ธิ\nไà¸à¸¥\nไà¸à¸¥à¹ˆ\nไà¸à¸¥à¸²à¸ª\nไà¸à¸§\nไà¸à¸§à¸±à¸¥\nขงจื๊à¸\nขจร\nขจรจบ\nขจัด\nขจ่าง\nขจาย\nขจาว\nขจิต\nขจี\nขจุย\nขเจา\nขณะ\nขด\nขน\nข้น\nขนง\nขนด\nขนบ\nขนม\nขนà¸à¸‡\nขนà¸à¸™\nขนà¸à¸š\nขนัด\nขนัน\nขนาà¸\nขนาง\nขนาด\nขนาน\nขนาบ\nขนาย\nขนำ\nขนิษà¸\nขนิษà¸à¸²\nขนุน\nขนุนนà¸\nขบ\nขบถ\nขบวน\nขบวร\nขม\nข่ม\nขมงโà¸à¸£à¸¢\nขมวด\nขมวน\nขมà¸à¸‡\nขม่à¸à¸¡\nขมัง\nขมับ\nขมา\nขม้ำ\nขมิ้น\nขมิบ\nขมีขมัน\nขมึง\nขมึงทึง\nขมุ\nขมุà¸à¸‚มัว\nขมุบ\nขโมย\nขยด\nขยม\nขย่ม\nขยà¸à¸\nขยà¸à¸‡\nขย่à¸à¸™\nขย้à¸à¸™\nขยะ\nขยัà¸\nขยัน\nขยั้น\nขยับ\nขยาด\nขยาย\nขยำ\nขย้ำ\nขยิà¸\nขยิบ\nขยิ่ม\nขยี้\nขยุà¸à¸‚ยิà¸\nขยุà¸à¸‚ยุย\nขยุบ\nขยุบขยิบ\nขยุม\nขยุ้ม\nขยุย\nขรม\nขรรค์\nขรัว\nขริบ\nขรี\nขรึม\nขรุขระ\nขลบ\nขล้à¸\nขลัง\nขลับ\nขลาด\nขลาย\nขลิบ\nขลุà¸\nขลุà¸à¸‚ลัà¸\nขลุà¸à¸‚ลิà¸\nขลุบ\nขลุม\nขลุ่ย\nขลู\nขลู่\nขวง\nข่วง\nขวด\nข่วน\nขวนขวาย\nขวบ\nขวย\nขวัà¸à¹„ขว่\nขวัà¸\nขวั้น\nขวับ\nขวับเขวียว\nขวา\nขวาà¸\nขวาง\nขว้าง\nขวาด\nขวาน\nขวายขวน\nขวาว\nขว้าว\nขวิด\nขà¸\nข่à¸\nข้à¸\nขà¸à¸‡\nข้à¸à¸‡\nขà¸à¸”\nขà¸à¸™\nข้à¸à¸™\nขà¸à¸š\nขà¸à¸¡\nข่à¸à¸¢\nข้à¸à¸¢\nข่à¸à¸¢à¸«à¸¢à¸à¸‡\nขะà¹à¸ˆà¸°\nขะเน็ด\nขะมà¸à¸¡à¸‚ะà¹à¸¡à¸¡\nขะมัà¸à¹€à¸‚ม้น\nขะมุà¸à¸‚ะมà¸à¸¡\nขะยิà¸\nขะยุà¸\nขะเย้à¸à¹à¸‚ย่ง\nขัค\nขัง\nขังขà¸à¸\nขัช\nขัณฑสà¸à¸£\nขัณฑสีมา\nขัด\nขัดมà¸à¸™\nขัตติยมานะ\nขัน\nขั้น\nขันติ\nขันตี\nขันโตà¸\nขันที\nขันธ์\nขันธาวาร\nขับ\nขัว\nขั้ว\nขา\nข่า\nข้า\nขาà¸\nขาà¸à¹Šà¸§à¸¢\nขาง\nข่าง\nข้าง\nขาณุ\nขาด\nขาทนียะ\nขาน\nขาบ\nข้าพเจ้า\nขาม\nข่าม\nข้าม\nขาย\nข่าย\nขาล\nขาว\nข่าว\nข้าว\nข้าวà¸à¸±à¸‡à¸à¸¸à¸¥à¸µ\nขำ\nขิà¸\nขิง\nขิงà¹à¸à¸¥à¸‡\nขิงà¹à¸„รง\nขิด\nขิปสัทโท\nขิม\nขี่\nขี้\nขี้เข็บ\nขีณาสพ\nขีด\nขี้ตังนี\nขีปนาวุธ\nขี้ยà¸à¸\nขีระ\nขึง\nขึ้ง\nขึ้น\nขึ้นฉ่าย\nขืน\nขื่น\nขื่à¸\nขุà¸\nขุด\nขุน\nขุ่น\nขุนเพ็ด\nขุม\nขุย\nขู่\nขูด\nเข\nเข้\nเขà¸\nเข็ง\nเข่ง\nเขจร\nเข็à¸\nเข็ด\nเขดา\nเขต\nเขน\nเข็น\nเข่น\nเขนง\nเขน็ด\nเขนย\nเขบ็จขบวน\nเขบ็ต\nเขม\nเข็ม\nเข้ม\nเข้มขาบ\nเขม็ง\nเขม็ดà¹à¸‚ม่\nเขม่น\nเขม้น\nเขม้นขะมัà¸\nเขมร\nเขมา\nเขม่า\nเขมืà¸à¸š\nเขย\nเขยà¸\nเขย่ง\nเขย้à¸à¹à¸‚ย่ง\nเขย่า\nเขยิน\nเขยิบ\nเขยื้à¸à¸™\nเขรà¸à¸°\nเขลง\nเขลà¸à¸°\nเขละ\nเขลา\nเขลาะ\nเขว\nเขษม\nเขฬะ\nเขะขะ\nเขา\nเข่า\nเข้า\nเขิง\nเขิน\nเขิบ\nเขี่ย\nเขียง\nเขียด\nเขียดตะปาด\nเขียน\nเขี่ยน\nเขียม\nเขียว\nเขี้ยว\nเขียะ\nเขืà¸\nเขืà¸à¸‡\nเขื่à¸à¸‡\nเขื่à¸à¸™\nเขืà¸à¸¡\nà¹à¸‚\nà¹à¸‚้\nà¹à¸‚à¸\nà¹à¸‚็ง\nà¹à¸‚่ง\nà¹à¸‚้ง\nà¹à¸‚น\nà¹à¸‚่น\nà¹à¸‚้น\nà¹à¸‚นง\nà¹à¸‚ม\nà¹à¸‚ม็บ\nà¹à¸‚ม่ว\nà¹à¸‚ยง\nà¹à¸‚ย่ง\nà¹à¸‚วà¸\nà¹à¸‚วง\nà¹à¸‚วน\nà¹à¸‚วะ\nโข\nโขà¸\nโขง\nโข่ง\nโขด\nโขดง\nโขน\nโขนง\nโขม\nโขมง\nโขมด\nโขยà¸\nโขยง\nโขย่ง\nโขยด\nโขลà¸\nโขลง\nโขลน\nโขษม\nไข\nไข่\nไข้\nไขว่\nไขว้\nคคนะ\nคคนัมพร\nคคนางค์\nคคนานต์\nคง\nคงคา\nคงไคย\nคช\nคชาชาติ\nคชาชีพ\nคชาธาร\nคชาภรณ์\nคณนา\nคณบดี\nคณะ\nคณาจารย์\nคณาธิà¸à¸²à¸£\nคณาธิปไตย\nคณานับ\nคณิà¸à¸²\nคณิต\nคเณศ\nคด\nคดี\nคติ\nคทา\nคน\nค้น\nคนทา\nคนทิสà¸\nคนที\nคนโท\nคนธ์\nคันธ์\nคนธรรพ์\nคเนจร\nคบ\nคม\nคมน์\nคมนาà¸à¸²à¸£\nคมนาคม\nคมิà¸à¸ ัต\nครà¸\nครบ\nครรชิต\nครรภ\nครรภ์\nครรลà¸à¸‡\nครรโลง\nครรไล\nครวà¸\nครวี\nครหา\nครà¸à¸\nครà¸à¸‡\nครà¸à¸‡à¹à¸„รง\nคร่à¸à¹€à¸‡à¸²à¸°\nคร่à¸à¹€à¸—ียน\nครà¸à¸š\nคร่à¸à¸¡\nคระเมิม\nคระà¹à¸¥à¸‡\nคระไล\nคระà¹à¸§à¸‡\nคระหน\nคระหวน\nคระหาย\nคระโหย\nครั่ง\nครั้ง\nครัดเคร่ง\nครัน\nครั่น\nครั้น\nครับ\nครัว\nครา\nคร่า\nคราà¸\nคราง\nคราà¸\nคราด\nคร้าน\nคราบ\nคราม\nคร้าม\nครามครัน\nคราว\nคร่าว\nคราส\nครำ\nคร่ำ\nคร่ำเคร่ง\nคริปทà¸à¸™\nคริสต์\nครีบ\nครีม\nครีษมายัน\nครึ\nครึà¸à¸„รื้น\nครึà¸à¹‚ครม\nครึ่ง\nครึ่ด\nครึน\nครึ้ม\nครืด\nครืน\nครื้น\nครืนครั่น\nครื้นครั่น\nครื้นครึà¸\nครื้นเครง\nครืà¸\nครุ\nครุคระ\nครุฑ\nครุ่น\nครุมเครืà¸\nครุย\nครุวนา\nครู\nครู่\nครูด\nคฤโฆษ\nคฤนถ์\nคฤหบดี\nคฤหัสถ์\nคฤหาสน์\nคลวง\nคลà¸\nคล้à¸\nคลà¸à¸\nคลà¸à¸‡\nคล่à¸à¸‡\nคล้à¸à¸‡\nคลà¸à¸”\nคลà¸à¸™\nคล้à¸à¸¢\nคลà¸à¸£à¸µà¸™\nคลà¸à¹‚รฟà¸à¸£à¹Œà¸¡\nคลà¸à¹‚รฟีลล์\nคละ\nคละคลุ้ง\nคลัà¸\nคลั่à¸\nคลัง\nคลั่ง\nคลัตช์\nคลับคล้าย\nคลับคลา\nคลา\nคล้า\nคลางà¹à¸„ลง\nคลาด\nคลาน\nคลาย\nคล้าย\nคล้ายคลึง\nคล่าว\nคลำ\nคล่ำ\nคล้ำ\nคลิ้งโคลง\nคลิด\nคลินิà¸\nคลี\nคลี่\nคลึง\nคลื่น\nคลุà¸\nคลุ้ง\nคลุบ\nคลุม\nคลุ่ม\nคลุ้ม\nควง\nควณ\nควน\nควบ\nควย\nควร\nควัà¸\nควั่à¸\nควั่งคว้าง\nควัน\nควั่น\nคว้า\nควาà¸\nคว้าง\nควาà¸\nควาน\nคว้าน\nความ\nควาย\nคว่าว\nคว่ำ\nควินิน\nควิวคว่าง\nคหà¸à¸£à¸£à¸¡\nคหà¸à¸£à¸£à¸¡à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nคหบดี\nคหัà¸\nคà¸\nค้à¸\nคà¸à¸\nค็à¸à¸à¸„ัส\nค็à¸à¸à¹€à¸—ล\nคà¸à¹€à¸„ซà¸à¸¢à¸”์\nค่à¸à¸‡à¸à¹‰à¸à¸¢\nคà¸à¸”\nคà¸à¹à¸”ง\nคà¸à¸™\nค่à¸à¸™\nค้à¸à¸™\nคà¸à¸™à¸à¸£à¸µà¸•\nคà¸à¸™à¹€à¸”นเซà¸à¸£à¹Œ\nคà¸à¸™à¹à¸§à¸™à¸•à¹Œ\nคà¸à¸™à¹€à¸ªà¸´à¸£à¹Œà¸•\nคà¸à¸¡\nค่à¸à¸¡\nค้à¸à¸¡\nคà¸à¸¡à¸žà¸´à¸§à¹€à¸•à¸à¸£à¹Œ\nคà¸à¸¡à¸¡à¸²à¸™à¹‚ด\nคà¸à¸¡à¸¡à¸´à¸§à¸™à¸´à¸ªà¸•à¹Œ\nคà¸à¸¢\nค่à¸à¸¢\nค้à¸à¸¢\nคà¸à¸¢à¸¥à¹Œ\nคà¸à¸£à¹Œà¸”\nคà¸à¹à¸¥à¸™\nคà¸à¸ªà¸•à¸´à¸à¹‚ซดา\nคะ\nค่ะ\nคะไขว่\nคะค้à¸à¸¢\nคะคาน\nคะนน\nคะนà¸à¸‡\nคะน้า\nคะนึง\nคะเน\nคะเนงร้าย\nคะเน็ด\nคะà¹à¸™à¸™\nคะมำ\nคะยั้นคะยà¸\nคะเยà¸\nคัà¸\nคั่à¸\nคัคนะ\nคัคนัมพร\nคัคนางค์\nคัคนานต์\nคั่ง\nคังไคย\nคัจฉ\nคัณฑมาลา\nคัณฑสูตร\nคัด\nคัดเค้า\nคัดมà¸à¸™\nคัดเม็ง\nคัทลียา\nคัน\nคั่น\nคั้น\nคันถรจนาจารย์\nคันธà¸à¸¸à¸Žà¸µ\nคันธมาทน์\nคันธารราษฎร์\nคับ\nคับค้à¸à¸™\nคับคา\nคับà¹à¸„\nคัพภ์\nคัมภีร์\nคัมภีรภาพ\nคัล\nคั่ว\nคา\nค่า\nค้า\nค่าคบ\nคาง\nค่าง\nค้าง\nคางคà¸\nค้างคาว\nคาด\nคาถา\nคาทà¸à¸¥à¸´à¸\nคาน\nค้าน\nคาบ\nคาพยุต\nคาม\nคามวาสี\nคามณีย์\nคามภีร์\nคาย\nค่าย\nคาร์บà¸à¸™\nคาร์บà¸à¹€à¸™à¸•\nคาร์บà¸à¸¥à¸´à¸\nคาร์บูเรเตà¸à¸£à¹Œ\nคาร์โบรันดัม\nคาร์โบไฮเดรต\nคารม\nคารวะ\nคาราเต้\nคาราวาน\nคาว\nค่าว\nค้าว\nคาวตà¸à¸‡\nคาวี\nคาวุต\nคาส\nคำ\nค่ำ\nค้ำ\nคำนวณ\nคำนวร\nคำนับ\nคำนัล\nคำนึง\nคำนูณ\nคำà¸à¸à¸¢\nคำเพลิง\nคำรน\nคำรบ\nคำราม\nคำà¹à¸ªà¸”\nคำà¹à¸«à¸‡\nคำโà¸à¸‡\nคิà¸\nคิง\nคิด\nคิมหันต์\nคิรี\nคิลาน\nคิลานะ\nคิว\nคิ้ว\nคี่\nคีต\nคีบ\nคีม\nคีรี\nคีรีบูน\nคึà¸\nคึ่à¸\nคึà¸à¸„ัà¸\nคืน\nคืบ\nคืà¸\nคุ\nคุà¸\nคุà¸à¸à¸µà¹‰\nคุà¸à¸„าม\nคุà¸à¸žà¸²à¸—ย์\nคุ้ง\nคุณ\nคุด\nคุดทะราด\nคุต\nคุตติ\nคุ่น\nคุ้น\nคุป\nคุปต์\nคุปติ\nคุม\nคุ่ม\nคุ้ม\nคุย\nคุ้ย\nคุยหà¸à¸²à¸™\nคุยหประเทศ\nคุรุ\nคุลา\nคุลิà¸à¹ˆà¸²\nคุลีà¸à¸²à¸£\nคุหา\nคู\nคู่\nคู้\nคูณ\nคูถ\nคูน\nคูปà¸à¸‡\nคูเรียม\nคูหา\nเค้à¸\nเค้เà¸à¹‰\nเค้ง\nเคณฑะ\nเคด\nเค็ด\nเคน\nเค้น\nเคเบิล\nเค็ม\nเคมี\nเคย\nเครง\nเคร่ง\nเครงครา\nเครงครำ\nเครดิต\nเครน\nเครา\nเคร่า\nเคราหณี\nเคราะห์\nเครียด\nเครียว\nเครืà¸\nเครื่à¸à¸‡\nเคล้ง\nเคล็ด\nเคล้น\nเคล้า\nเคล่าคล่à¸à¸‡\nเคลิบเคลิ้ม\nเคลิ้ม\nเคลีย\nเคลื่à¸à¸™\nเคลืà¸à¸š\nเคว้ง\nเคหะ\nเคหา\nเคà¸à¸°\nเค้า\nเคาน์เตà¸à¸£à¹Œ\nเคารพ\nเคาะ\nเคาะà¹à¸„ะ\nเคียง\nเคียด\nเคียน\nเคียม\nเคี่ยม\nเคียร\nเคียว\nเคี่ยว\nเคี้ยว\nเคืà¸à¸‡\nà¹à¸„\nà¹à¸„่\nà¹à¸„้\nà¹à¸„à¹à¸¥\nà¹à¸„ดเมียม\nà¹à¸„็ตตาล็à¸à¸\nà¹à¸„à¹à¸•à¸£\nà¹à¸„โทด\nà¹à¸„น\nà¹à¸„่น\nà¹à¸„้น\nà¹à¸„บ\nà¹à¸„บหมู\nà¹à¸„ปซูล\nà¹à¸„ม\nà¹à¸„ร่\nà¹à¸„รà¸\nà¹à¸„รง\nà¹à¸„ระ\nà¹à¸„ลคูลัส\nà¹à¸„ลง\nà¹à¸„ลเซียม\nà¹à¸„ลน\nà¹à¸„ล้ว\nà¹à¸„ล่วคล่à¸à¸‡\nà¹à¸„ลà¸à¸£à¸µ\nà¹à¸„ลิฟà¸à¸£à¹Œà¹€à¸™à¸µà¸¢à¸¡\nà¹à¸„ว\nà¹à¸„วà¸\nà¹à¸„ว้น\nà¹à¸„à¹à¸ªà¸”\nà¹à¸„ะ\nโค\nโคà¸\nโคเคน\nโค่ง\nโค้ง\nโคจร\nโคเซà¹à¸„นต์\nโคไซน์\nโคตร\nโคà¹à¸—นเจนต์\nโคธา\nโคน\nโค่น\nโคบà¸à¸¥à¸•à¹Œ\nโคปผà¸à¸°\nโคม\nโคม่า\nโครà¸\nโครà¸à¸„ราà¸\nโครง\nโคร่ง\nโคร่งคร่าง\nโครม\nโครเมียม\nโครโมโซม\nโคราช\nโครำ\nโคล\nโคลง\nโคลน\nโควตา\nโคà¸à¸à¸£à¹Œà¸”ิเนต\nใคร\nใคร่\nใคร่ครวà¸\nไค\nไค้\nไคร้\nไคร้เครืà¸\nไคล\nไคล้\nฆนะ\nฆราวาส\nฆ้à¸à¸‡\nฆ่า\nฆาต\nฆาน\nฆานินทรีย์\nเฆี่ยน\nโฆรวิส\nโฆษà¸\nโฆษณา\nโฆษะ\nโฆษิต\nงà¸\nงง\nงด\nงดงาม\nงบ\nงม\nงวง\nง่วง\nงวด\nง่วน\nง้วน\nงวยงง\nงà¸\nง้à¸\nงà¸à¸\nงà¸à¸à¹à¸‡à¸\nง่à¸à¸à¹à¸‡à¹ˆà¸\nง่à¸à¸‡\nง่à¸à¸‡à¹à¸‡à¹ˆà¸‡\nงà¸à¹à¸‡\nงà¸à¸”\nงà¸à¸”à¹à¸‡à¸”\nงà¸à¸™\nง่à¸à¸™\nง่à¸à¸™à¹à¸‡à¹ˆà¸™\nงà¸à¸™à¸«à¸‡à¹ˆà¸\nงà¸à¸š\nงà¸à¸¡\nง้à¸à¸¡\nงà¸à¸¢\nง่à¸à¸¢\nงัà¸\nงั่à¸\nงั่ง\nงัด\nงัน\nงันงà¸\nงับ\nงัว\nงั่ว\nงัวเงีย\nงา\nง่า\nง้าง\nงาน\nง่าน\nงาบ\nงาม\nง่าม\nงาย\nง่าย\nง้าว\nงำ\nง่ำ\nง้ำ\nงิ้ว\nงี่เง่า\nงีบ\nงึà¸\nงึน\nงึม\nงุด\nงุนงง\nงุ่นง่าน\nงุบ\nงุบงิบ\nงุ้ม\nงุ่มง่าม\nงุย\nงู\nงูบ\nงูสวัด\nเงà¸\nเงย\nเงà¸à¸°\nเงà¸à¸°à¸‡à¸°\nเงา\nเง่า\nเง้า\nเงาะ\nเงิน\nเงี่ยง\nเงี่ยน\nเงียบ\nเงี้ยว\nเงี่ยหู\nเงื้à¸\nเงืà¸à¸\nเงื่à¸à¸‡\nเงืà¸à¸”\nเงื่à¸à¸™\nเงืà¸à¸š\nเงื้à¸à¸¡\nà¹à¸‡\nà¹à¸‡à¹ˆ\nà¹à¸‡à¹ˆà¸‡\nà¹à¸‡à¹ˆà¸™\nà¹à¸‡à¹‰à¸¡\nà¹à¸‡à¸°\nโง\nโง่\nโงà¸\nโงà¸à¹€à¸‡à¸\nโงง\nโง่ง\nโง้ง\nโงงเงง\nโง่งเง่ง\nโงเง\nโงน\nโงนเงน\nไง้\nจà¸\nจง\nจ่ง\nจงà¸à¸£à¸¡\nจงà¸à¸¥\nจงà¸à¸¥à¸™à¸µ\nจงโคร่ง\nโจงโคร่ง\nจงà¸à¸£\nจงà¸à¸²à¸‡\nจด\nจดุรงค์\nจตุปัจจัย\nจตุลังคบาท\nจตุโลà¸à¸šà¸²à¸¥\nจตุสดมภ์\nจตุตถ\nจตุตถี\nจตุร\nจตุรงค์\nจตุรพัà¸à¸•à¸£à¹Œ\nจตุรพิธ\nจตุรพิธพร\nจน\nจบ\nจม\nจ่ม\nจมร\nจมรี\nจมูà¸\nจยุติ\nจร\nจรณะ\nจรด\nจรรจา\nจรรโจษ\nจรรม\nจรรยา\nจรรโลง\nจรลี\nจรวจ\nจรวด\nจรส\nจรà¸à¸\nจระเข้\nจระนำ\nจระบี\nจรัล\nจรัส\nจราจร\nจราà¸\nจริà¸\nจริง\nจริต\nจริม\nจริยธรรม\nจริยวัตร\nจริยาวัตร\nจริยศาสตร์\nจริยศึà¸à¸©à¸²\nจริยา\nจรุง\nจรูง\nจรูà¸\nจเร\nจล\nจลนพลศาสตร์\nจลนศาสตร์\nจลนี\nจลาจล\nจวà¸\nจ๊วà¸\nจวง\nจ้วง\nจ๋วง\nจวด\nจวน\nจวบ\nจวัà¸\nจà¸\nจ่à¸\nจ้à¸\nจ๋à¸\nจà¸à¸\nจ้à¸à¸\nจ๊à¸à¸\nจ้à¸à¸à¹à¸ˆà¹‰à¸\nจà¸à¸‡\nจ้à¸à¸‡\nจ๋à¸à¸‡\nจ้à¸à¸‡à¹€à¸•\nจà¸à¸‡à¹€à¸›à¸£à¸µà¸¢à¸‡\nจ้à¸à¸‡à¸«à¸™à¹ˆà¸à¸‡\nจà¸à¸‡à¸«à¸à¸‡\nจà¸à¹à¸ˆ\nจ๋à¸à¹à¸ˆà¹‹\nจà¸à¸”\nจà¸à¸™\nจ้à¸à¸™\nจà¸à¸™à¸ˆà¹ˆà¸\nจà¸à¸š\nจà¸à¸¡\nจ่à¸à¸¡\nจà¸à¸¡à¸ªà¸¸à¸£à¸²à¸‡à¸„์\nจ่à¸à¸¢\nจ้à¸à¸¢\nจ๋à¸à¸¢\nจà¸à¹à¸ª\nจะ\nจ้ะ\nจ๊ะ\nจ๋ะ\nจะà¸à¸¥à¸°\nจะà¸à¸¥à¸²à¸¡\nจะà¸à¸¹à¸”\nจะขาบ\nจะเข้\nจะเข็บ\nจะงà¸à¸¢\nจะจะ\nจ๊ะจ๋า\nจะà¹à¸ˆà¹‰à¸‡\nจะà¹à¸ˆà¹ˆà¸¡\nจะละเม็ด\nจะละหวั่น\nจัà¸\nจั้à¸\nจัà¸à¸à¸²à¸¢\nจั๊à¸à¸à¸´à¹‰à¸¡\nจัà¸à¸‚ุ\nจัà¸à¸ˆà¸±à¹ˆà¸™\nจัà¸à¸ˆà¸µà¹‰\nจั๊à¸à¸ˆà¸µà¹‰\nจั๊à¸à¹€à¸”ียม\nจัà¸à¸£\nจัà¸à¸£à¸žà¸²à¸\nจัà¸à¸£à¸§à¸²à¸\nจัà¸à¸£à¸´à¸™\nจัà¸à¸£à¸µ\nจั๊à¸à¹€à¸¥à¹‰à¸\nจัà¸à¸©à¸¸\nจัà¸à¹à¸«à¸¥à¹ˆà¸™\nจัง\nจั้ง\nจั๋ง\nจังà¸à¸§à¸”\nจังà¸à¸à¸š\nจังà¸à¹‰à¸²\nจังà¸à¸¹à¸”\nจังโà¸à¸à¸à¹Œ\nจังงัง\nจั้งมั่ง\nจังไร\nจังหนับ\nจังหรีด\nจังหวะ\nจังหวัด\nจังหัน\nจัà¸à¹„ร\nจัณฑ์\nจัณฑาล\nจัด\nจัตตาฬีสะ\nจัตวา\nจัตุ\nจัตุรงค์\nจัตุรัส\nจัตุลังคบาท\nจัตุโลà¸à¸šà¸²à¸¥\nจัตุสดมภ์\nจัน\nจั่น\nจันโจษ\nจั่นดิน\nจันท์\nจันทน์\nจันทร์\nจันทรคติ\nจันทรคราส\nจันทรุปราคา\nจันทรเม็ด\nจันทวาร\nจันทัน\nจันà¸à¸±à¸š\nจับ\nจับà¸à¸±à¸‡\nจับฉ่าย\nจับเดิม\nจับปิ้ง\nจับยี่à¸à¸µ\nจัมบà¸\nจัมปà¸à¸°\nจัมปา\nจัมมะ\nจัว\nจั่ว\nจั๊วะ\nจา\nจ่า\nจ้า\nจ๋า\nจาà¸\nจาà¸à¸žà¸²à¸\nจาคะ\nจาคี\nจาง\nจ่าง\nจ้าง\nจางปาง\nจางวาง\nจาด\nจาตุรงค์\nจาตุรนต์\nจาตุรันต์\nจาน\nจ้าน\nจาบ\nจาบัล\nจาบัลย์\nจาป\nจาม\nจ่ามงà¸à¸¸à¸Ž\nจามจุรี\nจามร\nจามรี\nจามีà¸à¸£\nจ่าย\nจาร\nจ่ารง\nจารวาà¸\nจาระไน\nจาระบี\nจาริà¸\nจารึà¸\nจารี\nจารีต\nจารุ\nจ้าละหวั่น\nจาว\nจ้าว\nจ่าหวัà¸\nจำ\nจ้ำ\nจำà¸à¸±à¸”\nจำงาย\nจ้ำจี้\nจำเจ\nจำเดิม\nจำทวย\nจำนง\nจำนน\nจำนรรจ์\nจำนรรจา\nจำนวน\nจำนà¸à¸‡\nจำนัล\nจำนำ\nจำเนียน\nจำเนียม\nจำเนียร\nจำà¹à¸™à¸\nจำบ่ม\nจำบัง\nจ้ำเบ้า\nจำปา\nจำปาดะ\nจำปี\nจำปูน\nจำพวà¸\nจำเพาะ\nจ้ำม่ำ\nจำรัส\nจำราà¸\nจำรูà¸\nจำเริà¸\nจำเรียง\nจำลà¸à¸‡\nจำเลย\nจำเลาะ\nจำà¹à¸¥à¸‡\nจำà¹à¸¥à¹ˆà¸™\nจำหนับ\nจ๋ำหนับ\nจำหน่าย\nจำหระ\nจำหล่à¸\nจำหลัà¸\nจำเหียง\nจำà¸à¸§à¸”\nจิ\nจิà¸\nจิ้งโà¸à¸£à¹ˆà¸‡\nจิ้งจà¸\nจิงจ้à¸\nจิ้งจà¸à¸\nจิงจัง\nจิ้งจัง\nจิงโจ้\nจิ้งหรีด\nจิ้งเหลน\nจิต\nจิตà¸à¸²à¸˜à¸²à¸™\nจิตต์\nจิตร\nจิตรจุล\nจิตระ\nจิตรา\nจินเจา\nจินดา\nจินดาหนา\nจินดาหรา\nจินต์\nจิบ\nจิปาถะ\nจิ่ม\nจิ้ม\nจิ้มà¸à¹‰à¸à¸‡\nจิ้มลิ้ม\nจิรà¸à¸²à¸¥\nจิ๋ว\nจี\nจี่\nจี้\nจี๋\nจี๋จ้à¸\nจีà¹à¸ˆà¹Šà¸š\nจี๊ด\nจีน\nจีนà¹à¸ª\nจีบ\nจีโบ\nจีม\nจีวร\nจึง\nจึ่ง\nจึ้ง\nจืด\nจุ\nจุà¸\nจุ๊à¸à¸à¸£à¸¹à¹Š\nจุà¸à¸ˆà¸´à¸\nจุà¸à¸Šà¸µ\nจุà¸à¸œà¸²à¸¡\nจุà¸à¹‚รหินี\nจุ่ง\nจุ๋งจิ๋ง\nจุฑา\nจุณ\nจุณณียบท\nจุด\nจุติ\nจุตูปปาตà¸à¸²à¸“\nจุทส\nจุน\nจุ่น\nจุ้น\nจุนจู๋\nจุ้นจู๊\nจุนทà¸à¸²à¸£\nจุนสี\nจุบ\nจุ๊บ\nจุบจิบ\nจุ๊บà¹à¸ˆà¸‡\nจุ่ม\nจุ้ม\nจุ๋มจิ๋ม\nจุมพà¸\nจุมพรวด\nจุมพล\nจุมพิต\nจุมโพล่\nจุ้ย\nจุรณ\nจูรณ\nจุรี\nจุไร\nจุล\nจุลจà¸à¸¡à¹€à¸à¸¥à¹‰à¸²\nจุลวงศ์\nจุฬา\nจุฬาราชมนตรี\nจุฬาลัมพา\nจุฬาลำพา\nจู\nจู่\nจู้\nจู๋\nจูง\nจู้จี้\nจู๋จี๋\nจู๊ด\nจูบ\nเจ\nเจ๊à¸\nเจ่ง\nเจ้ง\nเจ๊ง\nเจ๋ง\nเจ็ด\nเจ็ดตะคลี\nเจดีย์\nเจดียสถาน\nเจต\nเจตนา\nเจตพังคี\nเจตมูลเพลิง\nเจตสิà¸\nเจโตวิมุติ\nเจน\nเจ็บ\nเจรจา\nเจริà¸\nเจริด\nเจรียง\nเจลียง\nเจว็ด\nเจษฎา\nเจ๊สัว\nเจà¸\nเจ่à¸\nเจ๋à¸\nเจ๋à¸à¹€à¸ˆà¹Šà¸à¸°\nเจà¸à¸£à¹Œà¹€à¸¡à¹€à¸™à¸µà¸¢à¸¡\nเจà¸à¸°\nเจา\nเจ่า\nเจ้า\nเจ๊า\nเจาะ\nเจิ่ง\nเจิด\nเจิ่น\nเจิม\nเจีย\nเจียง\nเจียด\nเจียน\nเจี๋ยน\nเจี๊ยบ\nเจียม\nเจี๋ยมเจี้ยม\nเจียร\nเจียระไน\nเจียระบาด\nเจียว\nเจี๊ยวจ๊าว\nเจืà¸\nเจื่à¸à¸™\nเจื้à¸à¸¢\nเจืà¸à¸ªà¸¡\nà¹à¸ˆ\nà¹à¸ˆà¹‰\nà¹à¸ˆà¹‹\nà¹à¸ˆà¸\nà¹à¸ˆà¸à¸±à¸™\nà¹à¸ˆà¸‡\nà¹à¸ˆà¹ˆà¸‡\nà¹à¸ˆà¹‰à¸‡\nà¹à¸ˆà¸‡à¸¥à¸à¸™\nà¹à¸ˆà¹Šà¸”\nà¹à¸ˆà¹Šà¸”à¹à¸ˆà¹‹\nà¹à¸ˆà¸•à¸£\nà¹à¸ˆà¹‰à¸™\nà¹à¸ˆà¸š\nà¹à¸ˆà¹ˆà¸¡\nà¹à¸ˆà¸£à¸‡\nà¹à¸ˆà¸§\nà¹à¸ˆà¹ˆà¸§\nà¹à¸ˆà¹‰à¸§\nà¹à¸ˆà¹‹à¸§\nà¹à¸ˆà¸°\nโจà¸\nโจ๊à¸\nโจง\nโจ่งครึ่ม\nโจ๋งครึ่ม\nโจ่งครุ่ม\nโจ๋งเจ๋ง\nโจ่งà¹à¸ˆà¹‰à¸‡\nโจท\nโจทà¸à¹Œ\nโจทนา\nโจทย์\nโจน\nโจม\nโจร\nโจล\nโจษ\nโจษจัน\nใจ\nไจ\nไจ้\nฉà¸\nฉà¸à¸£à¸£à¸ˆà¹Œ\nฉà¸à¸©à¸±à¸•à¸£à¸´à¸¢à¹Œ\nฉà¸à¸²à¸ˆ\nฉà¸à¸²à¸¡à¸²à¸žà¸ˆà¸£\nฉà¸à¸²à¸¡à¸²à¸§à¸ˆà¸£\nฉง\nฉงน\nฉงาย\nฉทึง\nฉนวน\nฉนัง\nฉนาà¸\nฉนำ\nฉบัง\nฉบัด\nฉบับ\nฉบำ\nฉม\nฉมบ\nฉมวà¸\nฉมวย\nฉม่à¸à¸‡\nฉมัง\nฉมัน\nฉมา\nฉมำ\nฉล\nฉลวย\nฉลà¸à¸‡\nฉลà¸à¸¡\nฉลัà¸\nฉลับ\nฉลาà¸\nฉลาง\nฉลาด\nฉลาม\nฉลาย\nฉลิว\nฉลีà¸\nฉลุ\nฉลู\nฉวย\nฉวะ\nฉวัดเฉวียน\nฉวาง\nฉวี\nฉศà¸\nฉ้à¸\nฉà¸à¸\nฉ่à¸à¸‡\nฉà¸à¸”\nฉ่à¸à¸¢\nฉà¸à¹€à¸¥à¸²à¸°\nฉะ\nฉะฉาด\nฉะฉาน\nฉะฉ่ำ\nฉะฉี่\nฉะเฉื่à¸à¸¢\nฉะนั้น\nฉะนี้\nฉะà¸à¹‰à¸à¸™\nฉัà¸à¸à¸°\nฉัà¸\nฉัด\nฉัตร\nฉัททันต์\nฉัน\nฉันท\nฉันท์\nฉันทะ\nฉันทา\nฉันทาคติ\nฉันทานุมัติ\nฉับ\nฉัพพรรณรังสี\nฉัยยา\nฉ่า\nฉาà¸\nฉาง\nฉ่าง\nฉ่าฉาว\nฉาด\nฉาดฉาน\nฉาตà¸à¸ ัย\nฉาน\nฉาบ\nฉาบฉวย\nฉาย\nฉายา\nฉาว\nฉ่ำ\nฉำฉา\nฉำà¹à¸‰à¸°\nฉิ่ง\nฉิน\nฉินท์\nฉินทฤà¸à¸©à¹Œ\nฉิบ\nฉิมพลี\nฉิว\nฉี่\nฉีà¸\nฉีด\nฉุ\nฉุà¸\nฉุด\nฉุน\nฉุป\nฉุป\nฉุย\nฉุยฉาย\nฉู่\nฉู่ฉี่\nฉูด\nฉูดฉาด\nเฉ\nเฉà¸\nเฉโà¸\nเฉ่ง\nเฉด\nเฉท\nเฉนียน\nเฉพาะ\nเฉย\nเฉลย\nเฉลว\nเฉลา\nเฉลิม\nเฉลี่ย\nเฉลียง\nเฉลี่ยง\nเฉลียบ\nเฉลียว\nเฉวียง\nเฉวียน\nเฉà¸à¸°à¹à¸‰à¸°\nเฉา\nเฉาà¸à¹Šà¸§à¸¢\nเฉาฮื้à¸\nเฉาะ\nเฉิด\nเฉิบ\nเฉียง\nเฉียงพร้านางà¹à¸\nเฉียด\nเฉียบ\nเฉียว\nเฉี่ยว\nเฉืà¸à¸™\nเฉื่à¸à¸¢\nà¹à¸‰\nà¹à¸‰à¹ˆ\nà¹à¸‰à¸\nà¹à¸‰à¸‡\nà¹à¸‰à¹ˆà¸‡\nà¹à¸‰à¸¥à¸š\nà¹à¸‰à¸¥à¹‰à¸¡\nà¹à¸‰à¸°\nโฉ\nโฉ่\nโฉเà¸\nโฉ่งฉ่าง\nโฉงเฉง\nโฉด\nโฉนด\nโฉบ\nโฉเบ๊\nโฉม\nโฉลà¸\nไฉน\nไฉไล\nชà¸\nชคัตตรัย\nชง\nชงโค\nชงฆ์\nชงฆา\nชงโลง\nชฎา\nชฎามังษี\nชฎามังสี\nชฎิล\nชด\nชน\nชนà¸\nชนนี\nชนม์\nชนวน\nชนะ\nชนัà¸\nชนา\nชนาง\nชนิด\nชเนตตี\nชบา\nชม\nชมดชม้à¸à¸¢\nชมนาด\nชมพู\nชมพู่\nชมรม\nชม้à¸à¸¢\nชม้าย\nชไม\nชยา\nชโย\nชรทึง\nชรริน\nชรà¸à¸¸à¹ˆà¸¡\nชระล้ำ\nชระลุ\nชระà¸à¸²à¸š\nชระเà¸à¸¡\nชรัด\nชรา\nชล\nชโลง\nชโลม\nช่วง\nชวด\nชวน\nชวย\nช่วย\nชวร\nชวลิต\nชวา\nชวาล\nชวาลา\nช่à¸\nชà¸à¸\nช็à¸à¸\nช็à¸à¸à¹‚à¸à¹€à¸¥à¸•\nช็à¸à¸à¹‚à¸à¹à¸¥à¸•\nชà¸à¸‡\nช่à¸à¸‡\nช้à¸à¸‡\nชà¸à¸‡à¸£à¸°à¸à¸²\nชà¸à¸™\nช่à¸à¸™\nช้à¸à¸™\nชà¸à¸š\nชà¸à¸¡\nช้à¸à¸¢\nชà¸à¸¥à¹Œà¸\nชà¸à¹ˆà¸³\nชà¸à¸¸à¹ˆà¸¡\nชะ\nชะคราม\nชะงà¸à¸\nชะง่à¸à¸™\nชะงัà¸\nชะงัด\nชะง้ำ\nชะงุ้ม\nชะเง้à¸\nชะเงื้à¸à¸¡\nชะà¹à¸‡à¹‰\nชะโงà¸\nชะฉ่า\nชะช่à¸à¸‡\nชะชะ\nชะช้า\nชะโด\nชะตา\nชะต้า\nชะนี\nชะเนาะ\nชะเนียง\nชะพลู\nชะเพลิง\nชะมด\nชะมบ\nชะมวง\nชะมัง\nชะมัด\nชะà¹à¸¡à¹ˆ\nชะรà¸à¸¢\nชะลà¸\nชะลà¸à¸¡\nชะล่า\nชะลาน\nชะลิน\nชะลูด\nชะเลง\nชะเลย\nชะà¹à¸¥à¹‡à¸\nชะà¹à¸¥à¸‡\nชะวาà¸\nชะวาด\nชะเวิà¸à¸Šà¸°à¸§à¸²à¸\nชะà¹à¸§à¸‡\nชะà¸à¸¡\nชะà¸à¹‰à¸à¸™\nชะเà¸à¸¡\nชะโà¸à¸™\nชัà¸\nชัà¸à¸„ราม\nชัà¸à¸Šà¹‰à¸²\nชัง\nชั่ง\nชังคา\nชังฆ\nชัชวาล\nชัà¸\nชัด\nชัดช้า\nชัน\nชั้น\nชันà¸à¸²à¸”\nชันชี\nชันตุ\nชันนะตุ\nชันนุ\nชันโรง\nชันษา\nชันสูตร\nชัปนะ\nชัพ\nชัมพูนท\nชัย\nชัยพฤà¸à¸©à¹Œ\nชัยภูมิ\nชัลลุà¸à¸²\nชั่ว\nชั้ว\nชัวชม\nชา\nช้า\nชาคระ\nชาคริต\nชาคริยานุโยค\nช่าง\nช้าง\nช้าช่à¸à¸™\nชาà¸\nชาด\nชาดà¸\nชาต\nชาตบุษย์\nชาตรี\nชาตะ\nชาตา\nชาติ\nชาน\nชานุ\nช้าปี่\nชาปีไหน\nช้าà¹à¸›à¹‰à¸™\nช้าพลู\nชาม\nชามพูนท\nชามาดร\nชามาดา\nชามาตุ\nชาย\nชายา\nชาล\nชาลา\nชาลินี\nช้าเลืà¸à¸”\nชาว\nชาวี\nชำ\nช่ำ\nช้ำ\nชำงัด\nชำงาย\nช่ำชà¸à¸‡\nชำนะ\nชำนัà¸\nชำนัน\nชำนาà¸\nชำนิ\nชำเนียร\nชำมะนาด\nชำมะเลียง\nชำร่วย\nชำระ\nช้ำรั่ว\nชำรุด\nชำเรา\nชำเราะ\nชำà¹à¸£à¸\nชำà¹à¸£à¸°\nชำเลืà¸à¸‡\nชำà¹à¸«à¸¥à¸°\nชิ\nชิง\nชิ่ง\nชิงชัน\nชิงช้า\nชิงช้าชาลี\nชิงชี่\nชิงฮื้à¸\nชิชะ\nชิชิ\nชิณณะ\nชิด\nชิเดนทรีย์\nชิต\nชิตินทรีย์\nชิน\nชิ้น\nชินโต\nชิโนรส\nชิม\nชิมà¹à¸›à¸™à¸‹à¸µ\nชิยา\nชิรณะ\nชิระ\nชิวหา\nชิสา\nชี\nชี่\nชี้\nชีปะขาว\nชีผะขาว\nชีผ้าขาว\nชีพ\nชีฟà¸à¸‡\nชีรณ\nชีระ\nชีวเคมี\nชีวประวัติ\nชีวภาพ\nชีววิทยา\nชีวะ\nชีวัน\nชีวา\nชีวาตม์\nชีวาลัย\nชีวิต\nชีวิตัà¸à¸©à¸±à¸¢\nชีวิน\nชีวี\nชืด\nชื่น\nชื้น\nชื่à¸\nชุà¸\nชุà¸à¸Šà¸µ\nชุ้ง\nชุณห\nชุด\nชุติ\nชุน\nชุบ\nชุม\nชุ่ม\nชุมนุม\nชุมพร\nชุมพา\nชุมà¹à¸žà¸£à¸\nชุมรุม\nชุมà¹à¸ªà¸‡\nชุมเห็ด\nชุ่ย\nชุลมุน\nชุลี\nชุษณะ\nชู\nชู้\nเช็ค\nเช้ง\nเช้งวับ\nเชงเลง\nเช็ด\nเชน\nเช่น\nเชย\nเชลง\nเชลย\nเชลà¹à¸¥à¹‡à¸\nเชลียง\nเชวง\nเชษà¸à¸°\nเชษà¸à¸²\nเชà¸\nเช่า\nเช้า\nเชาว์\nเชาวน์\nเชิง\nเชิà¸\nเชิด\nเชิ้ต\nเชียง\nเชี่ยน\nเชียบ\nเชี่ยม\nเชียร\nเชียร์\nเชียว\nเชี่ยว\nเชื่à¸\nเชื้à¸\nเชืà¸à¸\nเชื่à¸à¸‡\nเชืà¸à¸”\nเชืà¸à¸™\nเชื่à¸à¸¡\nà¹à¸Š\nà¹à¸Šà¹ˆ\nà¹à¸Šà¹ˆà¸‡\nà¹à¸Šà¸‡à¸¡à¸²\nà¹à¸Šà¸šà¹Šà¸§à¸¢\nà¹à¸Šà¹ˆà¸¡\nà¹à¸Šà¸£à¹Œ\nà¹à¸Šà¸¥à¹ˆà¸¡\nà¹à¸Šà¸ªà¸‹à¸µ\nà¹à¸Šà¸°\nโชà¸\nโชค\nโชงโลง\nโชดà¸\nโชดึà¸\nโชต\nโชตà¸\nโชติ\nโชติà¸\nโชน\nโชมโรม\nโชย\nโชยงà¸à¸²à¸£\nโชยชาย\nโชยติส\nโชว์\nใช่\nใช้\nไช\nไชนะ\nไชย\nไชโย\nซà¸\nซ่à¸\nซงดำ\nซ่งฮื้à¸\nซด\nซน\nซ้น\nซบ\nซม\nซวดเซ\nซวน\nซวย\nซà¸\nซà¸à¸\nซà¸à¸‡\nซ่à¸à¸‡\nซ้à¸à¸‡\nซà¸à¸‡à¹à¸¡à¸§\nซ้à¸à¸‡à¹à¸¡à¸§\nซà¸à¸™\nซ่à¸à¸™\nซ้à¸à¸™\nซà¸à¸¡\nซ่à¸à¸¡\nซ้à¸à¸¡\nซà¸à¸¡à¸‹à¹ˆà¸\nซà¸à¸¢\nซà¸à¸ª\nซัà¸\nซัà¸à¸ªà¹‰à¸²à¸§\nซัง\nซั้ง\nซัด\nซับ\nซัลฟา\nซั้ว\nซา\nซ่า\nซาà¸\nซาง\nซ่าง\nซาด\nซาน\nซ่าน\nซาบซ่าน\nซาบซึ้ง\nซ่าโบะ\nซาà¹à¸¡à¹€à¸£à¸µà¸¢à¸¡\nซ้าย\nซาลาเปา\nซาว\nซ่าหริ่ม\nซำ\nซ้ำ\nซิ\nซี\nซิà¸\nซิà¸à¸‚์\nซิà¸à¸‹à¸µà¹‰\nซิà¸à¹à¸‹à¹‡à¸\nซิà¸à¸²à¸£à¹Œ\nซิงโคนา\nซิ่น\nซินนามิà¸\nซินà¹à¸ª\nซิบ\nซิป\nซิฟิลิส\nซิลิคà¸à¸™\nซิว\nซี่\nซีà¸\nซีเซียม\nซีด\nซี้ด\nซีนà¸à¸™\nซีป่าย\nซีเมนต์\nซีเรียม\nซีลีเนียม\nซีà¸à¸´à¹Šà¸§\nซึà¸\nซึง\nซึ่ง\nซึ้ง\nซึม\nซื่à¸\nซื้à¸\nซุà¸\nซุง\nซุน\nซุบ\nซุป\nซุ่ม\nซุ้ม\nซุ่มซ่าม\nซุย\nซู่\nซูโครส\nซูด\nซู้ด\nซูดซาด\nซูบ\nเซ\nเซ็à¸\nเซà¹à¸„นต์\nเซ็ง\nเซ่ง\nเซ้ง\nเซ็งà¹à¸‹à¹ˆ\nเซต\nเซน\nเซ็น\nเซ่น\nเซนติà¸à¸£à¸±à¸¡\nเซนติเà¸à¸£à¸”\nเซนติเมตร\nเซนติลิตร\nเซปัà¸à¸•à¸°à¸à¸£à¹‰à¸\nเซราะ\nเซรุ่ม\nเซลเซียส\nเซลล์\nเซลลูลà¸à¸¢à¸”์\nเซลลูโลส\nเซ่à¸\nเซà¸à¸£à¹Œà¹‚คเนียม\nเซà¸à¸°\nเซา\nเซ้าซี้\nเซาะ\nเซิง\nเซิ้ง\nเซียน\nเซียบ\nเซียมซี\nเซียว\nเซี่ยว\nเซี่ยวà¸à¸²à¸‡\nเซื่à¸à¸‡\nà¹à¸‹\nà¹à¸‹à¹ˆ\nà¹à¸‹à¹‡à¸à¸„าริน\nà¹à¸‹à¸‡\nà¹à¸‹à¸‡à¹à¸‹à¸§\nà¹à¸‹à¸”\nà¹à¸‹à¸š\nà¹à¸‹à¸¡\nà¹à¸‹à¸¢à¸´à¸”\nà¹à¸‹à¹ˆà¸§\nà¹à¸‹à¸°\nโซ\nโซ่\nโซà¸\nโซ่ง\nโซงโขดง\nโซเซ\nโซดา\nโซเดียม\nโซม\nโซรม\nโซลา\nไซ\nไซ้\nไซเà¸à¸´à¸¥\nไซโคลน\nไซน์\nไซยาไนด์\nไซร้\nไซเรน\nไซโล\nฌาน\nฌาปน\nฌาปนà¸à¸´à¸ˆ\nฌาปนสถาน\nเฌà¸\nเฌà¸à¹€à¸à¸¡\nà¸à¸§à¸™\nà¸à¸±à¸•à¸•à¸´\nà¸à¸²à¸“\nà¸à¸²à¸•à¸´\nà¸à¸²à¸™à¸²à¸‹à¸°à¸®à¹Œ\nà¸à¸´à¸š\nà¸à¸µà¹ˆà¸›à¸¸à¹ˆà¸™\nเà¸à¸¢à¸˜à¸£à¸£à¸¡\nไà¸à¸¢à¸˜à¸£à¸£à¸¡\nฎีà¸à¸²\nà¸à¸à¸±à¸”\nà¸à¸²à¸à¸¹à¸£\nà¸à¸²à¸™\nà¸à¸²à¸™à¸°\nà¸à¸²à¸™à¸±à¸™à¸”ร\nà¸à¸²à¸™à¸²à¸™à¸¸à¸à¸£à¸¡\nà¸à¸²à¸™à¸²à¸™à¸¸à¸£à¸¹à¸›\nà¸à¸²à¸™à¸²à¸™à¸¸à¸¨à¸±à¸à¸”ิ์\nà¸à¸²à¸™à¸µà¸¢à¸°\nà¸à¸²à¸›à¸™\nà¸à¸²à¸›à¸™à¸²\nà¸à¸²à¸¢à¸µ\nà¸à¸´à¸•\nà¸à¸´à¸•à¸´\nฑาหà¸\nฑาหะ\nเฒ่า\nณรงค์\nเณร\nดà¸\nดง\nด้ง\nด้น\nดนโด่\nดนตรี\nดนัย\nดนุ\nดนู\nดบัสวิน\nดบัสวี\nดม\nดรงค์\nดรณี\nดรรชนี\nดราฟต์\nดรุณ\nดรุณี\nดล\nดวง\nด้วง\nดวด\nด่วน\nด้วน\nด้วย\nดà¸à¸\nดà¸à¸‡\nด่à¸à¸‡\nด้à¸à¸‡\nดà¸à¸‡à¸‰à¸²à¸¢\nดà¸à¸‡à¸”ึง\nดà¸à¸”\nดà¸à¸™\nด่à¸à¸™\nดà¸à¸¡\nด้à¸à¸¡\nดà¸à¸¢\nด้à¸à¸¢\nดà¸à¸¥à¸¥à¸²à¸£à¹Œ\nดะ\nดะโต๊ะ\nดะหมัง\nดัà¸\nดัà¸à¸”าน\nดัà¸à¹à¸”้\nดัง\nดั่ง\nดั้ง\nดัชนี\nดัด\nดัตช์\nดัน\nดั้น\nดับ\nดัมพ์\nดั้วเดี้ย\nดัสà¸à¸£\nดา\nด่า\nดาà¸\nด่าง\nด้าง\nดาด\nดาน\nด่าน\nด้าน\nดาบ\nดาบส\nดาม\nด้าม\nด้ามจิ้ว\nดามพ์\nดาย\nด้าย\nดารà¸à¸°\nดารณี\nดารดาษ\nดาระ\nดารา\nดาล\nดาลัด\nดาว\nด่าว\nด้าว\nดาวดึงส์\nดาวบส\nดาษ\nดาษดา\nดำ\nด่ำ\nด้ำ\nดำà¸à¸¥\nดำเà¸à¸´à¸‡\nดำà¹à¸„ง\nดำดง\nดำนาณ\nดำเนิน\nดำบล\nดำรง\nดำรวจ\nดำรัส\nดำริ\nดำรี\nดำรู\nดำฤษณา\nดำเลิง\nดิà¸\nดิ่ง\nดิฉัน\nดิà¸\nดิตถ์\nดิถี\nดิน\nดิ้น\nดิบ\nดิรัจฉาน\nดิลà¸\nดิ่ว\nดิ้ว\nดิ้วเดี้ยว\nดิษà¸à¹Œ\nดิสโพรเซียม\nดี\nดีเซล\nดีด\nดีดีที\nดีบุà¸\nดีปลี\nดีเปรสชัน\nดีหมี\nดีหลี\nดึà¸\nดึง\nดึ่ง\nดึ่ม\nดื่น\nดื่ม\nดืà¸\nดื้à¸\nดุ\nดุà¸\nดุà¸à¸”ิà¸\nดุà¸à¸—ะเล\nดุ้ง\nดุ้งดิ้ง\nดุจ\nดุด\nดุน\nดุ้น\nดุบ\nดุม\nดุ่ม\nดุ่ย\nดุรงค์\nดุริยะ\nดุริยางค์\nดุริยางคศาสตร์\nดุริยางคศิลป์\nดุล\nดุษฎี\nดุษณี\nดุษณีภาพ\nดุษิต\nดุสิต\nดุเหว่า\nดู\nดูà¸à¸„่าง\nดูà¸à¸£\nดูด\nดูรา\nดูà¹à¸¥\nเด\nเด่\nเดà¸\nเด็à¸\nเดà¸à¸‹à¹Œà¹‚ทรส\nเดคาà¸à¸£à¸±à¸¡\nเดคาเมตร\nเดคาลิตร\nเด้ง\nเด็จ\nเดช\nเดชน์\nเดชนะ\nเดชะ\nเดโช\nเดซิà¸à¸£à¸±à¸¡\nเดซิเมตร\nเดซิลิตร\nเด็ด\nเดน\nเด่น\nเดนมาร์à¸\nเดรัจฉาน\nเด๋à¸\nเด๋à¸à¸”๋า\nเดา\nเด้า\nเดาะ\nเดิน\nเดิ่น\nเดิม\nเดียง\nเดียด\nเดียรดาษ\nเดียรถีย์\nเดียรัจฉาน\nเดียว\nเดี่ยว\nเดี๋ยว\nเดียะ\nเดื่à¸\nเดืà¸à¸\nเดื่à¸à¸‡\nเดืà¸à¸”\nเดืà¸à¸™\nเดืà¸à¸¢\nà¹à¸”\nà¹à¸”่\nà¹à¸”à¸\nà¹à¸”็à¸\nà¹à¸”à¸à¸‡à¸²\nà¹à¸”à¸à¹à¸”้\nà¹à¸”ง\nà¹à¸”ด\nà¹à¸”น\nà¹à¸”่น\nà¹à¸”่ว\nà¹à¸”ะ\nà¹à¸”ะà¹à¸”๋\nโด\nโด่\nโดà¸à¹€à¸”à¸\nโด่ง\nโดด\nโดน\nโดม\nโดมร\nโดย\nโดรณ\nใด\nได\nได้\nไดà¹à¸‹à¹‡à¸à¸„าไรด์\nไดนาโม\nไดนาไมต์\nไดโนเสาร์\nไดเรà¸à¸•à¸£à¸´à¸à¸‹à¹Œ\nตà¸\nต๊à¸à¹‚ต\nตง\nต๋ง\nตงฉิน\nตงิด\nตงุ่น\nตด\nตติย\nตถาคต\nตน\nต้น\nตนัย\nตนุ\nตบ\nตบะ\nตปนียะ\nตม\nต้ม\nตมูà¸\nตยาคี\nตรง\nตรณี\nตรม\nตรรà¸\nตรรà¸à¸°\nตรลบ\nตรลà¸à¸”\nตรลาด\nตรวจ\nตรวน\nตรà¸à¸\nตรà¸à¸‡\nตรà¸à¸¡à¹ƒà¸ˆ\nตรà¸à¸¡à¸•à¸£à¸¡\nตระ\nตระà¸à¸¥\nตระà¸à¸§à¸™\nตระà¸à¸à¸‡\nตระà¸à¸²à¸£\nตระà¸à¸¹à¸¥\nตระคัร\nตระเตรียม\nตระนาว\nตระบà¸\nตระบà¸à¸\nตระบà¸à¸‡\nตระบัด\nตระบัน\nตระเบ็ง\nตระà¹à¸šà¸\nตระà¹à¸šà¸‡\nตระโบม\nตระพà¸à¸‡\nตระพัง\nตระลาà¸à¸²à¸£\nตระวัน\nตระเว็ด\nตระเวน\nตระสัà¸\nตระหง่าน\nตระหนà¸\nตระหนัà¸\nตระหน่ำ\nตระหนี่\nตรัง\nตรังค์\nตรับ\nตรับฟัง\nตรัย\nตรัยตรึงศ์\nตรัส\nตรัสสา\nตรา\nตราà¸à¸•à¸£à¸³\nตราชู\nตราบ\nตราสัง\nตรำ\nตริ\nตริว\nตรี\nตรีปวาย\nตรีพิธพรรณ\nตรียัมปวาย\nตรึà¸\nตรึง\nตรุ\nตรุณ\nตรุณะ\nตรุษ\nตรู\nตรู่\nตฤณ\nตฤตีย\nตฤษณา\nตลà¸\nตลบ\nตลà¸à¸”\nตลับ\nตลาด\nตลิ่ง\nตลึง\nตวง\nต่วน\nต้วมเตี้ยม\nตวัà¸\nตวัด\nตวาด\nตà¸\nตà¸à¸¡à¹ˆà¸\nต่à¸\nต้à¸\nตà¸à¸\nต๊à¸à¸\nต๊à¸à¸à¸•à¹‹à¸à¸¢\nตà¸à¸‡\nต้à¸à¸‡\nตà¸à¸‡à¸à¸£à¸²à¸¢\nต้à¸à¸‡à¹€à¸•\nตà¸à¸‡à¹à¸•à¸\nต่à¸à¸‡à¹à¸•à¹ˆà¸‡\nตà¸à¸‡à¹€à¸«à¸¥à¸·à¸à¸‡\nตà¸à¸”\nตà¸à¸™\nต้à¸à¸™\nตà¸à¸š\nตà¸à¹€à¸šà¸²\nตà¸à¸¡\nต่à¸à¸¡\nต๋à¸à¸¡\nต่à¸à¸¢\nต้à¸à¸¢\nต้à¸à¸¢à¸•à¸£à¸´à¹ˆà¸‡\nต้à¸à¸¢à¸•à¸´à¹ˆà¸‡\nต้à¸à¸¢à¸•à¸µà¸§à¸´à¸”\nตà¸à¹à¸¢\nตà¸à¸£à¹Œà¸›à¸´à¹‚ด\nต่à¸à¹„ส้\nตà¸à¹à¸«à¸¥\nตะ\nตะà¸à¸£à¸™\nตะà¸à¸£à¹‰à¸\nตะà¸à¸£à¸±à¸™\nตะà¸à¸£à¸±à¸š\nตะà¸à¸£à¹‰à¸²\nตะà¸à¸£à¸²à¸¡\nตะà¸à¸£à¸¸à¸”\nตะà¸à¸£à¸¸à¸¡\nตะà¸à¸£à¸¸à¸¡à¸•à¸°à¸à¸£à¸²à¸¡\nตะà¸à¸¥à¸°\nตะà¸à¸¥à¸²à¸¡\nตะà¸à¸§à¸”\nตะà¸à¸\nตะà¸à¸à¸™\nตะà¸à¸±à¸‡\nตะà¸à¸±à¹ˆà¸§\nตะà¸à¸²à¸‡\nตะà¸à¸²à¸”\nตะà¸à¸²à¸¢\nตะà¸à¸²à¸§\nตะà¸à¸¸à¸à¸•à¸°à¸à¸±à¸\nตะà¸à¸¸à¸¢\nตะà¸à¸¹\nตะà¸à¸¹à¸”\nตะเà¸à¸µà¸¢à¸à¸•à¸°à¸à¸²à¸¢\nตะเà¸à¸µà¸¢à¸‡\nตะเà¸à¸µà¸¢à¸š\nตะà¹à¸\nตะà¹à¸à¹ˆ\nตะà¹à¸à¸£à¸‡\nตะโà¸\nตะโà¸à¹‰\nตะโà¸à¸\nตะโà¸à¸™\nตะโà¸à¸£à¸‡\nตะโà¸à¸£à¸¡\nตะไà¸à¸£\nตะขบ\nตะขà¸\nตะขาบ\nตะขิดตะขวง\nตะเข้\nตะเข็บ\nตะโขง\nตะคร้à¸\nตะครà¸à¸‡\nตะครั่นตะครà¸\nตะคร้ำ\nตะคริว\nตะคิว\nตะครุบ\nตะคà¸à¸\nตะคัน\nตะค้า\nตะคาà¸\nตะค้าน\nตะคุ่ม\nตะเครียว\nตะเคียว\nตะเคียน\nตะà¹à¸„ง\nตะไคร่\nตะไคร้\nตะเฆ่\nตะนà¸à¸¢\nตะนาว\nตะบม\nตะบà¸à¸‡\nตะบà¸à¸¢\nตะบัน\nตะบิ้ง\nตะบิด\nตะบิดตะบà¸à¸¢\nตะบี้ตะบัน\nตะบึง\nตะบูน\nตะเบ็ง\nตะเบ็งมาน\nตะเบ๊ะ\nตะà¹à¸šà¸\nตะà¹à¸šà¸‡\nตะโบม\nตะไบ\nตะปบ\nตะปลิง\nตะปิ้ง\nตะปุ่มตะป่ำ\nตะปู\nตะพง\nตะพด\nตะพà¸à¸‡\nตะพัà¸\nตะพัง\nตะพัด\nตะพั้น\nตะพาà¸\nตะพาน\nตะพาบ\nตะพาย\nตะพึด\nตะพึดตะพืà¸\nตะพุ่น\nตะเพรา\nตะเพิง\nตะเพิด\nตะเพียน\nตะโพà¸\nตะโพง\nตะโพน\nตะเภา\nตะใภ้\nตะม่à¸\nตะมà¸à¸¢\nตะรังà¸à¸°à¸™à¸¹\nตะรังตังà¸à¸§à¸²à¸‡\nตะรังตังช้าง\nตะราง\nตะลà¸à¸‡\nตะลà¸à¸™\nตะล่à¸à¸¡\nตะละ\nตะลาน\nตะลิงปลิง\nตะลิบ\nตะลีตะลาน\nตะลึง\nตะลึงพรึงเพริด\nตะลุง\nตะลุ่ม\nตะลุ่มนà¸\nตะลุมบà¸à¸™\nตะลุ่มโปง\nตะลุมพà¸\nตะลุมพุà¸\nตะลุย\nตะเลง\nตะà¹à¸¥à¸‡à¹à¸à¸‡\nตะไล\nตะวัน\nตะเวน\nตะหลิว\nตะหลุà¸\nตะหลุง\nตะà¹à¸«à¸‡à¹ˆà¸§\nตะà¹à¸«à¸¡à¸°à¹à¸‚ะ\nตะโหงà¸\nตัà¸\nตัà¸à¸à¸°\nตัà¸à¹€à¸•à¸·à¸à¸™\nตั๊à¸à¹à¸•à¸™\nตัà¸à¸©à¸±à¸¢\nตัง\nตั่ง\nตั้ง\nตังเà¸\nตังฉ่าย\nตังเม\nตังวาย\nตังโà¸à¹‹\nตัจฉà¸\nตัจฉนี\nตัณฑุล\nตัณหา\nตัด\nตัน\nตันตระ\nตันติ\nตันหยง\nตับ\nตับปิ้ง\nตัว\nตั๋ว\nตัวจี๊ด\nตัวตืด\nตั้วโผ\nตั้วเหี่ย\nตา\nตาà¸\nตาà¸à¸§à¸²à¸‡\nต่าง\nตาด\nตาน\nต่าน\nต้าน\nตานนà¸à¸à¸”\nตานี\nตาบ\nตาม\nตามะà¹à¸™\nตามิน\nตาย\nตาราไต\nตาล\nตาลุ\nต๋าว\nตาเสืà¸\nตาหนู\nตาฬ\nตำ\nต่ำ\nตำนาน\nตำบล\nตำà¹à¸š\nตำà¹à¸¢\nตำรวจ\nตำรับ\nตำรา\nตำรุ\nตำลึง\nตำเสา\nตำหนัà¸\nตำหนิ\nตำà¹à¸«à¸™à¹ˆà¸‡\nติ\nติà¸\nติ๊à¸\nติà¸à¸°\nติà¸à¸²à¸«à¸£à¸±à¸‡\nติง\nติ่ง\nติ๋ง\nติ่งตั่ง\nติ๋งต่าง\nติงส\nติงสติ\nติณ\nติด\nติตติà¸à¸°\nติตติร\nติตถ\nติตถะ\nติถี\nติมิงคละ\nติรัจฉาน\nติลà¸\nติละ\nติ้ว\nตี\nตี่\nตีน\nตีบ\nตีรถะ\nตีระ\nตึ\nตึà¸\nตึ้à¸\nตึ้à¸à¸•à¸±à¹‰à¸\nตึง\nตึดตื๋à¸\nตึ๊ดตื๋à¸\nตืด\nตื่น\nตื้น\nตื้à¸\nตื๊à¸\nตื๋à¸\nตุ\nตุ๊\nตุ๊à¸à¹à¸\nตุ๊à¸à¸•à¸²\nตุ๊à¸à¸•à¹ˆà¸³\nตุà¸à¸•à¸´à¸\nตุ๊à¸à¸•à¸´à¹Šà¸\nตุ๊à¸à¸•à¸¸à¹ˆà¸™\nตุ๊à¸à¸•à¸¸à¹‹à¸¢\nตุง\nตุ้งà¸à¹ˆà¸²\nตุ้งติ้ง\nตุ๊ดตู่\nตุน\nตุ่น\nตุ๋น\nตุนาหงัน\nตุบ\nตุ้บ\nตุ๊บป่à¸à¸‡\nตุปัดตุป่à¸à¸‡\nตุปัดตุเป๋\nตุ่ม\nตุ้ม\nตุ๋ม\nตุ้มà¸à¸§à¹‰à¸²à¸§\nตุมà¸à¸²\nตุ้มà¹à¸‹à¸°\nตุมตัง\nตุ้มเต๋น\nตุ้มปี่\nตุมพะ\nตุ่ย\nตุ้ย\nตุ๊ย\nตุ๋ยตุ่ย\nตุรคะ\nตุรงค์\nตุล\nตุลา\nตุหรัดตุเหร่\nตู\nตู่\nตู้\nตูà¸\nตูด\nตูบ\nตูม\nเต๊à¸\nเต็ง\nเต่ง\nเตช\nเตโช\nเต้น\nเต็นท์\nเต็ม\nเตย\nเตร่\nเตร็ด\nเตรตา\nเตรียม\nเตรียมตรม\nเตละ\nเตลิด\nเตว็ด\nเต่à¸\nเตà¸à¸°\nเตะ\nเตา\nเต่า\nเต้า\nเต๋า\nเต่าเà¸à¸µà¸¢à¸”\nเต้าเจี้ยว\nเต้าทึง\nเต้าหู้\nเต้าฮวย\nเต๊าะ\nเตาะà¹à¸•à¸°\nเติ่ง\nเติบ\nเติม\nเตี้ย\nเตียง\nเตียน\nเตียบ\nเตี๋ยม\nเตียรถ์\nเตียว\nเตี่ยว\nเตืà¸à¸™\nà¹à¸•à¹ˆ\nà¹à¸•à¹‰\nà¹à¸•à¸\nà¹à¸•à¸‡\nà¹à¸•à¹ˆà¸‡\nà¹à¸•à¸‡à¹€à¸¡\nà¹à¸•à¹‰à¸ˆà¸´à¹‹à¸§\nà¹à¸•à¸”\nà¹à¸•à¹Šà¸”à¹à¸•à¹‹\nà¹à¸•à¸™\nà¹à¸•à¹‰à¸¡\nà¹à¸•à¸£\nà¹à¸•à¸£à¸°\nà¹à¸•à¹‰à¸§\nà¹à¸•à¹‰à¸§à¹à¸£à¹‰à¸§\nà¹à¸•à¹‰à¸§à¹à¸¥à¹‰à¸§\nà¹à¸•à¹ˆà¸§à¹ˆà¸²\nà¹à¸•à¹‰à¹à¸§à¹‰à¸”\nà¹à¸•à¸°\nโต\nโต้\nโตà¸\nโต่ง\nโต้ง\nโตงเตง\nโตฎà¸\nโต๊ด\nโตน\nโตนด\nโต้โผ\nโตมร\nโตย\nโตรà¸\nโต๊ะ\nใต้\nไต\nไต่\nไต้\nไต๋\nไตร\nไตรà¸à¸´à¸¨à¸¢à¸²\nไตรดายุค\nไตร่ตรà¸à¸‡\nไตรย\nไต้หวัน\nถà¸\nถà¸à¸¥\nถงาด\nถด\nถนน\nถนà¸à¸¡\nถนัด\nถนัน\nถนำ\nถนิม\nถม\nถ่ม\nถมà¸\nถมึงทึง\nถลà¸\nถลà¸à¸šà¸²à¸•à¸£\nถลน\nถล่ม\nถลà¸à¸\nถลัน\nถลา\nถลาà¸\nถลาย\nถลำ\nถลึงตา\nถลุง\nถ่วง\nถ้วน\nถ้วย\nถวัล\nถวัลย์\nถวาย\nถวิน\nถวิล\nถ่à¸\nถ้à¸\nถà¸à¸\nถà¸à¸‡\nถ่à¸à¸‡\nถ้à¸à¸‡\nถà¸à¸”\nถà¸à¸™\nถà¸à¸š\nถà¸à¸šà¹à¸–บ\nถ่à¸à¸¡\nถà¸à¸¢\nถ่à¸à¸¢\nถ้à¸à¸¢\nถะ\nถะถั่น\nถะมัดถะà¹à¸¡à¸‡\nถัà¸\nถัง\nถั่ง\nถัด\nถัทธ\nถัน\nถั่น\nถับ\nถัมภ์\nถัว\nถั่ว\nถา\nถ้า\nถาà¸\nถาง\nถ่าง\nถาด\nถาน\nถ่าน\nถาบ\nถาม\nถามะ\nถ่าย\nถ่าว\nถาวร\nถาวรธิรา\nถ้ำ\nถิ่น\nถี่\nถีบ\nถึà¸\nถึง\nถืà¸\nถุง\nถุน\nถุย\nถู\nถูà¸\nเถà¸à¸´à¸‡\nเถน\nเถร\nเถระ\nเถรานุเถระ\nเถรี\nเถลไถล\nเถลิง\nเถลืà¸à¸à¸–ลน\nเถ่à¸\nเถà¸à¸°\nเถา\nเถ้า\nเถาวัลย์\nเถาะ\nเถิà¸\nเถิง\nเถิด\nเถิดเทิง\nเถิน\nเถียง\nเถียร\nเถืà¸\nเถืà¸à¸\nเถื่à¸à¸™\nà¹à¸–\nà¹à¸–à¸\nà¹à¸–ง\nà¹à¸–น\nà¹à¸–บ\nà¹à¸–ม\nà¹à¸–ลง\nà¹à¸–ลบ\nà¹à¸–ว\nโถ\nโถง\nโถงเถง\nโถบ\nโถม\nโถมนาà¸à¸²à¸£\nไถ\nไถ่\nไถ้\nไถง\nไถล\nทà¸à¸¥à¹‰à¸²\nทà¹à¸à¸¥à¹‰à¸§\nท่ง\nทด\nทน\nท้น\nทนต์\nทนโท่\nทนาย\nทบ\nทบวง\nทมà¸\nทมะ\nทมิฬ\nทโมน\nทยà¸à¸¢\nทà¹à¸¢à¸‡\nทรà¸à¸£à¸£à¸¡\nทรชน\nทรชาติ\nทรพิษ\nทรยศ\nทรราช\nทรลัà¸à¸©à¸“์\nทรง\nทรพี\nทรมาทรà¸à¸£à¸£à¸¡\nทรมาน\nทรรทึง\nทรรป\nทรรปณ์\nทรรปณะ\nทรรศนะ\nทรรศนาà¸à¸²à¸£\nทรรศนีย์\nทรวง\nทรวดทรง\nทรวาร\nทรหด\nทรหวล\nทรหึง\nทรà¸à¸¡à¹‚บน\nทระนง\nทรัพย์\nทรัพยาà¸à¸£\nทรัมเป็ต\nทรานซิสเตà¸à¸£à¹Œ\nทราบ\nทราม\nทราย\nทรุด\nทฤษฎี\nทลาย\nทลิท\nทลิททà¸\nทวง\nท้วง\nท่วงท่า\nท่วงทำนà¸à¸‡\nท่วงที\nทวด\nทวน\nท้วน\nท่วม\nท้วม\nทวย\nท่วย\nท้วย\nทวà¸à¸¢\nทวัตดึงส์\nทวัย\nทวา\nทวาบร\nทว่า\nทวาย\nทวาร\nทวิ\nทวิช\nทวิตีย์\nทวิตียา\nทวี\nทวีธาภิเษà¸\nทวีป\nทศ\nทศมี\nทศางค์\nทหระ\nทหาร\nทà¸\nท่à¸\nท้à¸\nทà¸à¸\nทà¸à¸‡\nท่à¸à¸‡\nท้à¸à¸‡\nทà¸à¸‡à¸à¸§à¸²à¸§\nทà¸à¸‡à¸ ู\nทà¸à¸‡à¸¥à¸´à¸™\nทà¸à¸‡à¸«à¸¥à¸²à¸‡\nทà¸à¸‡à¹‚หลง\nทà¸à¸‡à¸à¸¸à¹„ร\nทà¸à¸”\nทà¸à¸™\nท่à¸à¸™\nทà¸à¸™à¸‹à¸´à¸¥\nทà¸à¸Ÿà¸Ÿà¸µà¹ˆ\nท่à¸à¸¡\nทà¸à¸¢\nทà¸à¹€à¸£à¸µà¸¢à¸¡\nทะ\nทะงัน\nทะนง\nทะนน\nทะนาน\nทะนุ\nทะเบียน\nทะมัดทะà¹à¸¡à¸‡\nทะมึน\nทะมื่น\nทะà¹à¸¡à¹ˆà¸‡\nทะยาน\nทะเยà¸à¸—ะยาน\nทะà¹à¸¢\nทะร่à¸à¸—ะà¹à¸£à¹ˆ\nทะลวง\nทะลà¸à¸\nทะลัà¸\nทะลาย\nทะลึ่ง\nทะลุ\nทะลุดทะลาด\nทะเล\nทะเล้น\nทะเล่à¸à¸—ะล่า\nทะเลาะ\nทะเลิ่à¸à¸—ะลั่à¸\nทะวาย\nทัà¸\nทัà¸à¸‚์\nทัà¸à¸‚ิà¸\nทัà¸à¸‚ิณ\nทัà¸à¸‚ิณา\nทัà¸à¸‚ิณาวัà¸\nทัà¸à¸‚ิโณทà¸\nทัà¸à¸‚ิไณยบุคคล\nทัà¸à¸—ิน\nทัà¸à¸©à¸°\nทัà¸à¸©à¸²\nทัà¸à¸©à¸´à¸“\nทัà¸à¸©à¸´à¸“า\nทัà¸à¸©à¸´à¹‚ณทà¸\nทัง\nทั่ง\nทั้ง\nทังวล\nทังวี้ทังวล\nทังสเตน\nทัณฑ์\nทัณฑà¸à¸£à¸£à¸¡\nทัณฑฆาต\nทัณฑสถาน\nทัณฑะ\nทัณฑิà¸à¸²\nทัณฑิมา\nทัณฑีบท\nทัด\nทัดทา\nทัต\nทัน\nทันต์\nทันตชะ\nทันตà¹à¸žà¸—ย์\nทันติน\nทันตี\nทันธ์\nทับ\nทับทิม\nทับสมิงคลา\nทัพ\nทัพพะ\nทัพพี\nทั่ว\nทัศ\nทัศน์\nทัศนะ\nทัศนา\nทัศนคติ\nทัศนวิสัย\nทัศนศาสตร์\nทัศนศิลป์\nทัศนศึà¸à¸©à¸²\nทัศนาà¸à¸²à¸£\nทัศนาจร\nทัศนีย์\nทัศนียภาพ\nทัศนูปà¸à¸£à¸“์\nทัศไนย\nทัสนานุตริยะ\nทัฬหะ\nทัฬหิ\nทัฬหี\nทา\nท่า\nท้า\nทาà¸\nทาง\nท้าง\nทาà¸à¸°\nทาà¸à¸´à¸à¸°\nทาฒะ\nทาฒิà¸à¸°\nทาน\nท่าน\nทานต์\nทานพ\nทาบ\nทาม\nท่ามà¸à¸¥à¸²à¸‡\nทาย\nท้าย\nทายà¸\nทายัช\nทายาด\nทายาท\nทายิà¸à¸²\nทารà¸\nทารพี\nทาริà¸à¸²\nทารุณ\nทาว\nท่าว\nท้าว\nทาส\nทาสี\nทำ\nทำนบ\nทำนà¸à¸‡\nทำนาย\nทำนุ\nทำนูล\nทำเนา\nทำเนียบ\nทำไม\nทำลาย\nทำเล\nทิคัมพร\nทิฆัมพร\nทิ้ง\nทิงเจà¸à¸£à¹Œ\nทิ้งถ่à¸à¸™\nทิ้งทูด\nทิชะ\nทิชาà¸à¸£\nทิชาชาติ\nทิà¸à¸à¸°\nทิà¸à¸à¸²à¸™à¸¸à¸„ติ\nทิà¸à¸à¸¸à¸Šà¸¸à¸à¸£à¸£à¸¡\nทิà¸à¸˜à¸£à¸£à¸¡\nทิà¸à¸´\nทิด\nทิต\nทิน\nทิพ\nทิพย์\nทิพา\nทิม\nทิ่ม\nทิมทà¸à¸‡\nทิว\nทิวงคต\nทิวทัศน์\nทิวา\nทิศ\nทิศา\nทิศานุทิศ\nที\nที่\nทีฆชาติ\nทีฆนิà¸à¸²à¸¢\nทีฆสระ\nทีฆายุ\nทีป\nทีม\nทีเà¸à¹‡à¸™à¸—ี\nทึà¸\nทึà¸à¸—ัà¸\nทึ่ง\nทึ้ง\nทึดทืà¸\nทึนทึà¸\nทึบ\nทึม\nทึ่ม\nทื่à¸\nทุ\nทุà¸\nทุà¸à¸‚์\nทุà¸à¸‚ลาภ\nทุà¸à¸‚เวทนา\nทุà¸à¸‚ารมณ์\nทุà¸à¸\nทุà¸à¸£à¸à¸´à¸£à¸´à¸¢à¸²\nทุà¸à¸°\nทุà¸à¸±à¸‡\nทุà¸à¸¹à¸¥\nทุคตะ\nทุคติ\nทุ่ง\nทุ้ง\nทุงงะ\nทุจริต\nทุด\nทุทรรศนนิยม\nทุนิยม\nทุน\nทุ่น\nทุนนิมิต\nทุบ\nทุบทู\nทุปปัà¸à¸à¸²\nทุพพรรณ\nทุพพล\nทุพพลภาพ\nทุพภิà¸à¸‚ภัย\nทุม\nทุ่ม\nทุ้ม\nทุย\nทุ้ย\nทุรà¸à¸±à¸™à¸”าร\nทุรชน\nทุรชาติ\nทุรพล\nทุรลัà¸à¸©à¸“์\nทุรน\nทุรนทุราย\nทุรัศ\nทุราคม\nทุราจาร\nทุเรศ\nทุเรียน\nทุลัà¸à¸—ุเล\nทุเลา\nทุศีล\nทุสสะ\nทุสสีล\nทู\nทูโม่ง\nทู่\nทู้\nทูà¸à¸±à¸‡\nทู่ซี้\nทูต\nทูตานุทูต\nทูน\nทูบ\nทูม\nทูล\nทูเลียม\nเท\nเท่\nเทคนิค\nเทคนีเชียม\nเทคโนโลยี\nเท้ง\nเท้งเต้ง\nเท็จ\nเทนนิส\nเทพ\nเทพา\nเทพารัà¸à¸©à¹Œ\nเทพยเจ้า\nเทพยดา\nเทพยุดา\nเทพิน\nเทพินทร์\nเทพี\nเทเพนทร์\nเทโพ\nเทริด\nเทลลูเรียม\nเทวทัณฑ์\nเทวดา\nเทวทูต\nเทวธรรม\nเทวนาครี\nเทวนิยม\nเทวรูป\nเทวโลà¸\nเทววิทยา\nเทวสถาน\nเทวศ\nเทวษ\nเทวัà¸\nเทวัน\nเทวาลัย\nเทวินทร์\nเทวี\nเทเวศ\nเทเวศร์\nเทเวศวร์\nเทศ\nเทศะ\nเทศาภิบาล\nเทศน์\nเทศนา\nเทห์\nเท่ห์\nเทห์ฟาà¸à¸Ÿà¹‰à¸²\nเทหวัตถุ\nเท่à¸\nเท้à¸\nเทà¸à¸\nเทà¸à¸¡\nเทà¸à¸£à¹Œà¹€à¸šà¸µà¸¢à¸¡\nเทà¸à¸£à¹Œà¹‚มมิเตà¸à¸£à¹Œ\nเทà¸à¸°à¸—ะ\nเทา\nเท่า\nเท้า\nเท้ายายม่à¸à¸¡\nเท่ารึง\nเทิ่ง\nเทิด\nเทิน\nเทิบ\nเทิบทาบ\nเทิ้ม\nเที่ยง\nเทียด\nเทียน\nเที้ยน\nเทียบ\nเทียม\nเทียร\nเที้ยร\nเทียว\nเที่ยว\nเทืà¸\nเทื่à¸\nเทื้à¸\nเทืà¸à¸\nà¹à¸—้\nà¹à¸—็à¸à¸‹à¸µà¹ˆ\nà¹à¸—ง\nà¹à¸—่ง\nà¹à¸—้ง\nà¹à¸—็งà¸à¹Œ\nà¹à¸—งทวย\nà¹à¸—งวิสัย\nà¹à¸—ตย์\nà¹à¸—น\nà¹à¸—่น\nà¹à¸—นเจนต์\nà¹à¸—นทาลัม\nà¹à¸—บ\nà¹à¸—รà¸\nà¹à¸—รà¸à¹€à¸•à¸à¸£à¹Œ\nà¹à¸—ลเลียม\nà¹à¸—ะ\nโท\nโท่\nโทà¸à¹€à¸—à¸\nโทง\nโทงเทง\nโทณะ\nโทน\nโทนโท่\nโทมนัส\nโทรคมนาคม\nโทรทรรศน์\nโทรทัศน์\nโทรพิมพ์\nโทรภาพ\nโทรเลข\nโทรศัพท์\nโทรสาร\nโทรม\nโทษ\nโทษา\nโทษานุโทษ\nโทสะ\nโทสาคติ\nโทโส\nโทหฬินี\nไท\nไท้\nไทเทเนียม\nไทเทรต\nไทย\nไทร\nไทวะ\nธง\nธงà¸à¹Œ\nธชะ\nธชี\nธตรà¸\nธนบัตร\nธนสมบัติ\nธนสาร\nธนะ\nธนา\nธนาคม\nธนาคาร\nธนาณัติ\nธเนศ\nธโนปจัย\nธไนศวรรย์\nธนิต\nธนิษà¸à¸°\nธนิษà¸à¸²\nธนุ\nธนุรวิทยา\nธนุรเวท\nธนู\nธม\nธมà¸à¸£à¸\nธรณะ\nธรณิน\nธรณินทร์\nธรณิศ\nธรณิศร\nธรณิศวร์\nธรณี\nธรมาน\nธรรม\nธรรมนูà¸\nธรรมยุต\nธรรมยุติà¸à¸™à¸´à¸à¸²à¸¢\nธรรมะ\nธรรมาทิตย์\nธรรมาธรรม\nธรรมาธิปไตย\nธรรมาธิษà¸à¸²à¸™\nธรรมานุสาร\nธรรมาภิมุข\nธรรมาภิสมัย\nธรรมายตนะ\nธรรมารมณ์\nธรรมาสน์\nธรรมิà¸\nธรา\nธราดล\nธราธร\nธราธาร\nธราธิบดี\nธราธิป\nธริษตรี\nธเรษตรี\nธเรศ\nธวัช\nธัช\nธัà¸\nธัà¸à¸à¸²à¸«à¸²à¸£\nธันยา\nธันยาวาท\nธันวาคม\nธัมมะ\nธาดา\nธาตรี\nธาตวาà¸à¸£\nธาตุ\nธาตุโขภ\nธาตุมมิสสา\nธานิน\nธานินทร์\nธานี\nธาร\nธารà¸à¸³à¸™à¸±à¸¥\nธารคำนัล\nธารณะ\nธารณา\nธารา\nธาษตรี\nธำมรงค์\nธำรง\nธิดา\nธิติ\nธีระ\nธุช\nธุดงค์\nธุดงควัตร\nธุต\nธุตตะ\nธุมเà¸à¸•à¸¸\nธุมา\nธุรà¸à¸²à¸£\nธุรà¸à¸´à¸ˆ\nธุระ\nธุรำ\nธุลี\nธุวดารา\nธุวภาค\nธุวมณฑล\nธูป\nเธนุ\nเธà¸\nเธียร\nโธ่\nโธวนะ\nนà¸\nนà¸à¸¸à¸¥\nนขลิขิต\nนขะ\nนขา\nนเคนทร์\nนโคทร\nนคร\nนครินทร์\nนคเรศ\nนง\nนงคุà¸\nนที\nนนตรา\nนนท์\nนันทน์\nนนทรี\nนนทลี\nนนทิ\nนบ\nนปุงสà¸à¸¥à¸´à¸‡à¸„์\nนปุงสà¸à¸¥à¸¶à¸‡à¸„์\nนพ\nนพนิต\nนภจร\nนภดล\nนภศูล\nนภา\nนภาลัย\nนม\nนมตำเรีย\nนมตำเลีย\nนมะ\nนมัสà¸à¸²à¸£\nนมาซ\nนยนะ\nนยนา\nนโยบาย\nนรชาติ\nนรเทพ\nนรนาถ\nนรบดี\nนรบาล\nนรสิงห์\nนรสีห์\nนรา\nนราà¸à¸£\nนราธิป\nนรินทร์\nนริศ\nนริศร\nนริศวร\nนเรศ\nนเรศวร\nนเรศวร์\nนโรดม\nนรà¸\nนรà¸à¸²à¸™à¸•à¹Œ\nนรà¸à¸²à¸£\nนรี\nนฤเทพ\nนฤบดี\nนฤบาล\nนฤเบศ\nนฤปเวศม์\nนฤปัตนี\nนฤคหิต\nนฤนาท\nนฤมล\nนฤตย์\nนฤตยสถาน\nนฤพาน\nนฤมาณ\nนฤมิต\nนลาà¸\nนลิน\nนลินี\nนวà¸à¸£à¸£à¸¡\nนวà¸à¸²à¸£\nนวà¸à¸´à¸ˆ\nนวนิยาย\nนวปฎล\nนวรัตน์\nนวโลหะ\nนวà¸à¸°\nนวโà¸à¸§à¸²à¸—\nนวด\nนวม\nน่วม\nนวมี\nนวย\nนวล\nนวัตà¸à¸£à¸£à¸¡\nนวาระ\nนหารุ\nนหุต\nนฬà¸à¸²à¸£\nนà¸\nนà¸à¸\nนà¸à¸‡\nน่à¸à¸‡\nน้à¸à¸‡\nน่à¸à¸‡à¹à¸™à¹ˆà¸‡\nนà¸à¸•\nนà¸à¸™\nนà¸à¸š\nน้à¸à¸¡\nน้à¸à¸¢\nน้à¸à¸¢à¸«à¸™à¹ˆà¸²\nน้à¸à¸¢à¹‚หน่ง\nนะ\nนะà¹à¸™à¹ˆà¸‡\nนัà¸\nนัà¸à¸‚ัต\nนัà¸à¸‚ัตฤà¸à¸©à¹Œ\nนัà¸à¸©à¸±à¸•à¸£\nนัà¸à¸ªà¸£à¸²à¸Š\nนัข\nนั่ง\nนังคัล\nนัจ\nนัฑ\nนัด\nนัดดา\nนัตถุ์\nนั่น\nนั้น\nนันททายี\nนันทนาà¸à¸²à¸£\nนันทวัน\nนันทิ\nนับ\nนัย\nนัยน์\nนัยนา\nนัว\nนัวเนีย\nนา\nน่า\nน้า\nนาà¸\nนาà¸à¸šà¸¸à¸”\nนาà¸à¸²à¸ªà¸²à¸«à¸£à¸µ\nนาค\nนาคร\nนาคา\nนาคาวโลà¸\nนาคินทร์\nนาคี\nนาเคนทร์\nนาเคศวร\nนาง\nนางเà¸à¸¥à¹‡à¸”\nนางนวล\nนางนูน\nนางรม\nนางรำ\nนางล้à¸à¸¡\nนางเล็ด\nนางเลิ้ง\nนางหงส์\nนางà¸à¸²à¸¢\nนางà¹à¸à¹ˆà¸™\nนาà¸\nนาà¸à¸à¸°\nนาด\nนาถ\nนาท\nนาที\nนาน\nน่าน\nนานัครส\nนานัปà¸à¸²à¸£\nนานา\nนาเนà¸\nนาบ\nนาภี\nนาม\nนามานุà¸à¸£à¸¡\nนามาภิไธย\nนาย\nน่าย\nนายà¸\nนายิà¸à¸²\nนารา\nนารายณ์\nนารี\nนาเรศ\nนาลิวัน\nนาว\nน้าว\nนาวา\nนาวิà¸\nนาวิน\nนาวี\nนาเวศ\nนาศ\nนาสา\nนาสิà¸\nนาฬิà¸à¸²\nนาฬิเà¸\nนาฬี\nนำ\nน้ำ\nน้ำละว้า\nน้ำว้า\nนิ\nนิà¸à¹€à¸à¸´à¸¥\nนิà¸à¸‚ะ\nนิà¸à¸£\nนิà¸à¸£à¸à¸¢à¸”์\nนิà¸à¸²à¸¢\nนิคม\nนิครนถ์\nนิคหà¸à¸£à¸£à¸¡\nนิคหะ\nนิคหิต\nนิคาลัย\nนิเคราะห์\nนิโคติน\nนิโครธ\nนิโครม\nนิ่ง\nนิจ\nนิด\nนิตย์\nนิตยทาน\nนิตยภัต\nนิตยสาร\nนิติ\nนิทร\nนิทรรศà¸à¸²à¸£\nนิทรา\nนิทรารมณ์\nนิทัศน์\nนิทาน\nนิเทศ\nนิธาน\nนิธิ\nนินทา\nนินนาท\nนินาท\nนิบาต\nนิปริยาย\nนิปัจà¸à¸²à¸£\nนิพจน์\nนิพนธ์\nนิพพาน\nนิพพิทา\nนิพัทธ์\nนิพันธ์\nนิพิท\nนิเพท\nนิภา\nนิ่ม\nนิ้ม\nนิมนต์\nนิมมาน\nนิมมานรดี\nนิมิต\nนิยต\nนิยม\nนิยัตินิยม\nนิยาม\nนิยาย\nนิยุต\nนิรคุณ\nนิรชร\nนิรชรา\nนิรทุà¸à¸‚์\nนิรเทศ\nนิรโทษ\nนิรโทษà¸à¸£à¸£à¸¡\nนิรนัย\nนิรนาม\nนิรภัย\nนิรมล\nนิรมาน\nนิรัตศัย\nนิรันดร\nนิราพาธ\nนิรามัย\nนิรามิษ\nนิราศรัย\nนิรินธน์\nนิรมาณ\nนิรมิต\nนิรยบาล\nนิรัพพุท\nนิรา\nนิราศ\nนิรุà¸à¸•à¸´\nนิรุตติ\nนิรุทธ์\nนิโรธ\nนิล\nนิลุบล\nนิโลบล\nนิ่ว\nนิ้ว\nนิวคลิà¸à¸´à¸\nนิวเคลียร์\nนิวเคลียส\nนิวตรà¸à¸™\nนิวรณ์\nนิวัต\nนิวัตน์\nนิวาต\nนิวาส\nนิเวศ\nนิเวศน์\nนิศา\nนิษาท\nนิสัช\nนิสัชชาà¸à¸²à¸£\nนิสัย\nนิสาท\nนิสิต\nนิสีทนสันถัต\nนิสีทนะ\nนิสีทนาà¸à¸²à¸£\nนิเสธ\nนี่\nนี้\nนี่นัน\nนีรนาท\nนีà¸à¸à¸™\nนีโà¸à¸”ิเมียม\nนึà¸\nนึง\nนึ่ง\nนุง\nนุ่ง\nนุงนัง\nนุช\nนุต\nนุ่น\nนุ่ม\nนุ้ย\nนูน\nนู่น\nนู้น\nเนà¸à¸‚ัม\nเนตบà¸à¸¥\nเนตร\nเนติ\nเน้น\nเนบิวลา\nเนปจูน\nเนปทูเนียม\nเนมิ\nเนย\nเนรà¸à¸±à¸“à¸à¸µ\nเนรคุณ\nเนรเทศ\nเนรนาด\nเนรมิต\nเนระพูสี\nเนà¸\nเน้à¸\nเนา\nเน่า\nเนาวนิต\nเนาวรัตน์\nเนิน\nเนิ่น\nเนิบ\nเนียง\nเนียน\nเนียม\nเนียร\nเนียรทุà¸à¸‚์\nเนียรเทศ\nเนียรนาท\nเนื้à¸\nเนืà¸à¸‡\nเนื่à¸à¸‡\nเนืà¸à¸¢\nà¹à¸™à¹ˆ\nà¹à¸™à¹ˆà¸‡\nà¹à¸™à¹ˆà¸™\nà¹à¸™à¸š\nà¹à¸™à¹ˆà¸š\nà¹à¸™à¸¡\nà¹à¸™à¸§\nà¹à¸™à¹ˆà¸§\nà¹à¸™à¸°\nà¹à¸™à¹ˆà¸°\nà¹à¸™à¸°à¹à¸«à¸™\nโน\nโน้ต\nโนน\nโน่น\nโน้น\nโนเบเลียม\nโน้ม\nโนมพรรณ\nโนรา\nโนรี\nใน\nไน\nไนต์คลับ\nไนโตรเจน\nไนลà¸à¸™\nไนโà¸à¹€à¸šà¸µà¸¢à¸¡\nบ่\nบà¸\nบง\nบ่ง\nบงà¸à¹Œ\nบ๊งเบ๊ง\nบงสุ์\nบด\nบดินทร์\nบดี\nบถ\nบท\nบน\nบ่น\nบพิตร\nบพิธ\nบ่ม\nบรม\nบรมัตถ์\nบรรจง\nบรรจถรณ์\nบรรจบ\nบรรจวบ\nบรรจุ\nบรรเจิด\nบรรณ\nบรรดา\nบรรตานึà¸\nบรรถร\nบรรทม\nบรรทัด\nบรรทาน\nบรรทุà¸\nบรรเทา\nบรรเทืà¸à¸‡\nบรรพ\nบรรพ์\nบรรพชา\nบรรพชิต\nบรรพต\nบรรยง\nบรรยงà¸à¹Œ\nบรรยเวà¸à¸©à¸à¹Œ\nบรรยาà¸à¸²à¸¨\nบรรยาย\nบรรลัย\nบรรลาย\nบรรลุ\nบรรเลง\nบรรโลม\nบรรษัท\nบรรสบ\nบรรสพ\nบรรสม\nบรรสาน\nบรรสาร\nบรรหาน\nบรรหาร\nบรà¸à¸™à¸‹à¹Œ\nบรั่นดี\nบรัศว์\nบราลี\nบริà¸à¸£à¸£à¸¡\nบริà¸à¸²à¸£\nบริขาร\nบริขารโจล\nบริคณห์\nบริจาค\nบริจาริà¸à¸²\nบริเฉท\nบริชน\nบริดจ์\nบริบท\nบริบาล\nบริบูรณ์\nบริพนธ์\nบริพัตร\nบริพันธ์\nบริพาชà¸\nบริพาร\nบริภัณฑ์\nบริภาษ\nบริโภค\nบริมาส\nบริยาย\nบริรม\nบริรัà¸à¸©à¹Œ\nบริราช\nบริวรรต\nบริวาร\nบริวาส\nบริเวณ\nบริษัท\nบริสชน\nบริสุทธิ์\nบริหาร\nบล็à¸à¸\nบวà¸\nบวง\nบ่วง\nบวช\nบวน\nบ้วน\nบวบ\nบวม\nบ๊วย\nบวร\nบหลิ่ม\nบà¸\nบ่à¸\nบ้à¸\nบà¸à¸\nบà¸à¸‡\nบ่à¸à¸‡\nบ้à¸à¸‡\nบ๊à¸à¸‡\nบ้à¸à¸‡à¹à¸šà¹Šà¸§\nบà¸à¸‡à¸«à¸¥à¸²\nบà¸à¸”\nบà¸à¸™\nบ่à¸à¸™\nบà¸à¸š\nบ้à¸à¸¡\nบ๋à¸à¸¡\nบ่à¸à¸¢\nบà¸à¸£à¸°à¹€à¸žà¹‡à¸”\nบà¸à¸¥\nบà¸à¸¥à¸¥à¸¹à¸™\nบ้à¸à¸«à¸¸à¹‰à¸™\nบ๊ะ\nบ๊ะจ่าง\nบะหมี่\nบัà¸\nบัà¸à¹‚à¸à¸£à¸\nบัคเตรี\nบัง\nบั้ง\nบังà¸à¸°à¹‚ล\nบังเà¸à¸´à¸”\nบังคน\nบังคม\nบังคล\nบังควร\nบังคับ\nบังคัล\nบังà¹à¸—รà¸\nบังวาย\nบังเวียน\nบังสุà¸à¸¸à¸¥\nบังสุà¸à¸¹à¸¥à¸´à¸\nบังสูรย์\nบังหวน\nบังเหตุ\nบังเหียน\nบังà¸à¸£\nบังà¸à¸§à¸ˆ\nบังà¸à¸²à¸ˆ\nบังเà¸à¸´à¸\nบัà¸à¸ˆà¸\nบัà¸à¸Šà¸£\nบัà¸à¸Šà¸²\nบัà¸à¸Šà¸µ\nบัà¸à¸à¸±à¸•à¸´\nบัà¸à¸«à¸²\nบัà¸\nบัณฑร\nบัณฑิต\nบัณฑิตย์\nบัณฑุ\nบัณฑูร\nบัณเฑาะà¸à¹Œ\nบัณเฑาะว์\nบัณณาส\nบัณรส\nบัณรสี\nบัด\nบัดà¸à¸£à¸µ\nบัดซบ\nบัดสี\nบัตร\nบัทม์\nบัน\nบั่น\nบั้น\nบันจวบ\nบันดล\nบันดาล\nบันได\nบันทึà¸\nบันทึง\nบันเทิง\nบันยะบันยัง\nบันลืà¸\nบัปผาสะ\nบัพ\nบัพชา\nบัพพาชนียà¸à¸£à¸£à¸¡\nบัล\nบัลลพ\nบัลลังà¸à¹Œ\nบัลลูน\nบัลเลต์\nบัว\nบา\nบ่า\nบ้า\nบาà¸\nบาง\nบ่าง\nบ้าง\nบาจรีย์\nบาซิลลัส\nบาด\nบาดทะจิต\nบาดทะพิษ\nบาดทะยัà¸\nบาดาล\nบาตร\nบาท\nบาทสà¸à¸¸à¸“ี\nบาทหลวง\nบาทาธึà¸\nบาทุà¸à¸²\nบาน\nบ้าน\nบานชื่น\nบานเช้า\nบานบุรี\nบานไม่รู้โรย\nบานเย็น\nบ้าบ๋า\nบาป\nบาย\nบ่าย\nบ้าย\nบาร์\nบารนี\nบารมี\nบาร์เรล\nบาร์เลย์\nบารà¸à¸¡à¸´à¹€à¸•à¸à¸£à¹Œ\nบ้าระบุ่น\nบาเรียน\nบาเรียม\nบาล\nบาลี\nบ่าว\nบ่าวขุน\nบาศ\nบาศà¸à¹Œ\nบาสเà¸à¸•à¸šà¸à¸¥\nบาหลี\nบ๋ำ\nบำเทิง\nบำนาà¸\nบำบวง\nบำบัด\nบำเพ็à¸\nบำราบ\nบำราศ\nบำรุง\nบำรู\nบำเรà¸\nบำหยัด\nบำเหน็จ\nบิ\nบิà¸\nบิณฑบาต\nบิด\nบิดร\nบิดหล่า\nบิดา\nบิตุ\nบิตุจฉา\nบิตุรงค์\nบิตุเรศ\nบิตุลา\nบิน\nบิ่น\nบินยา\nบิลเลียด\nบิวเรตต์\nบิสมัท\nบี้\nบีฑา\nบีตา\nบีบ\nบีเยศ\nบึà¸\nบึà¸à¸šà¸¶à¸™\nบึง\nบึ่ง\nบึ้ง\nบุ\nบุà¸\nบุคคล\nบุคลาà¸à¸£\nบุคลาธิษà¸à¸²à¸™\nบุคลิà¸\nบุง\nบุ่ง\nบุ้ง\nบุ้งà¸à¸µà¹‹\nบุà¸\nบุà¸à¸à¸²à¸˜à¸´à¸à¸²à¸£\nบุà¸à¸à¸²à¸™à¸¸à¸ าพ\nบุà¸à¸à¸²à¸ ินิหาร\nบุà¸à¸à¸²à¸ ิสังขาร\nบุณฑริà¸\nบุณมี\nบุณย์\nบุตร\nบุตรี\nบุถุชน\nบุทคล\nบุนนาค\nบุบ\nบุบบิบ\nบุปผชาติ\nบุพà¸à¸£à¸£à¸¡\nบุพà¸à¸²à¸£à¸µ\nบุพà¸à¸´à¸ˆ\nบุพชาติ\nบุพทัà¸à¸©à¸´à¸“\nบุพนิมิต\nบุพบท\nบุพพาจารย์\nบุพเพสันนิวาส\nบุพโพ\nบุ๋ม\nบุ่มบ่าม\nบุ้ย\nบุรณะ\nบุรพทิศ\nบุรพบท\nบุรพาจารย์\nบูรพาจารย์\nบุระ\nบุราณ\nบุรินทร์\nบุริมทิศ\nบุริมพรรษา\nบุริมสิทธิ\nบุรี\nบุรุษ\nบุโรทั่ง\nบุษà¸à¸£\nบุษบà¸\nบุษบง\nบุษบัน\nบุษบา\nบุษบามินตรา\nบุษปราค\nบุษปะ\nบุษย์\nบุษย์น้ำทà¸à¸‡\nบุษยมาส\nบุษยะ\nบุษราคัม\nบุหงัน\nบุหงา\nบุหรง\nบุหรี่\nบุหลัน\nบู่\nบู้\nบูชนียสถาน\nบูชา\nบูชิต\nบูด\nบูดู\nบูร\nบูรณ์\nบูรณภาพ\nบูรณมี\nบูรณะ\nบูรณาà¸à¸²à¸£\nบูรพ์\nบูรพะ\nบูรพา\nเบ้\nเบ่ง\nเบ๊จี๋\nเบà¸à¸à¸²à¸™à¸µ\nเบà¸à¸ˆà¸à¸±à¸¥à¸¢à¸²à¸“ี\nเบà¸à¸ˆà¸à¸²à¸¡à¸„ุณ\nเบà¸à¸ˆà¸‚ันธ์\nเบà¸à¸ˆà¸”ุริยางค์\nเบà¸à¸ˆà¸˜à¸£à¸£à¸¡\nเบà¸à¸ˆà¸šà¸£à¸£à¸žà¸•\nเบà¸à¸ˆà¸žà¸£à¸£à¸“\nเบà¸à¸ˆà¹€à¸žà¸ª\nเบà¸à¸ˆà¸¡à¸²à¸¨\nเบà¸à¸ˆà¸£à¸‡à¸„์\nเบà¸à¸ˆà¸¨à¸\nเบà¸à¸ˆà¸¨à¸µà¸¥\nเบà¸à¸ˆà¸°\nเบà¸à¸ˆà¸²\nเบà¸à¸ˆà¸²à¸‡à¸„์\nเบà¸à¸ˆà¸²à¸‡à¸„ประดิษà¸à¹Œ\nเบà¸à¸à¸²\nเบà¸à¸žà¸²à¸”\nเบ็ด\nเบ็ดเตล็ด\nเบ็ดเสร็จ\nเบน\nเบนซิน\nเบรà¸\nเบริลเลียม\nเบส\nเบ้à¸\nเบà¸à¸£à¹Œ\nเบà¸à¸£à¹Œà¸„ีเลียม\nเบ้à¸à¹€à¸£à¹ˆà¸\nเบ้à¸à¹€à¸£à¹ˆà¸à¹€à¸—่à¸\nเบ้à¸à¹€à¸£à¸´à¹ˆà¸¡\nเบ้à¸à¹€à¸£à¸´à¹ˆà¸¡à¹€à¸—ิ่ม\nเบà¸à¸°\nเบà¸à¸°à¸šà¸°\nเบะ\nเบา\nเบ้า\nเบาราณ\nเบาะ\nเบิà¸\nเบิ่ง\nเบี้ย\nเบี่ยง\nเบียด\nเบียน\nเบียร์\nเบี้ยว\nเบืà¸\nเบื่à¸\nเบื้à¸\nเบื้à¸à¸‡\nเบืà¸à¸™\nà¹à¸š\nà¹à¸šà¹‰\nà¹à¸šà¸\nà¹à¸šà¸„ทีเรีย\nà¹à¸šà¹ˆà¸‡\nà¹à¸šà¸‡à¸à¹Œ\nà¹à¸šà¸”มินตัน\nà¹à¸šà¸•à¹€à¸•à¸à¸£à¸µà¹ˆ\nà¹à¸šà¸™\nà¹à¸šà¸™à¹‚จ\nà¹à¸šà¸š\nà¹à¸šà¹‡à¸š\nà¹à¸šà¹€à¸£à¸µà¸¢à¸¡\nà¹à¸šà¸«à¸¥à¸²\nà¹à¸šà¸°\nโบ\nโบ้\nโบ๋\nโบà¸\nโบà¸à¸‚รณี\nโบà¸à¸‚รพรรษ\nโบชุà¸\nโบต\nโบนัส\nโบ๊เบ๊\nโบย\nโบรมีน\nโบรà¸à¸™\nโบราณ\nโบสถ์\nใบ\nใบ้\nไบ่\nปà¸\nปà¸à¸•à¸´\nปà¸à¸£à¸“์\nปà¸à¸£à¸“ัม\nปà¸à¸´à¸“à¸à¸°\nปà¸à¸µà¸£à¸“ัม\nปโà¸à¸à¸´\nปง\nป่ง\nปงช้าง\nปฎล\nปà¸à¸±à¸\nปà¸à¸´à¸à¸£à¸“์\nปà¸à¸´à¸à¸£à¸£à¸¡\nปà¸à¸´à¸à¸²à¸£à¸°\nปà¸à¸´à¸à¸´à¸£à¸´à¸¢à¸²\nปà¸à¸´à¸à¸¹à¸¥\nปà¸à¸´à¸„ม\nปà¸à¸´à¸„หิต\nปà¸à¸´à¸„าหà¸\nปà¸à¸´à¸†à¸°\nปà¸à¸´à¸Šà¸µà¸§à¸™à¸°\nปà¸à¸´à¸à¸à¸²\nปà¸à¸´à¸à¸²à¸“\nปà¸à¸´à¸—ิน\nปà¸à¸´à¸šà¸–\nปà¸à¸´à¸šà¸±à¸•à¸´\nปà¸à¸´à¸›à¸—า\nปà¸à¸´à¸›à¸±à¸à¸©à¹Œ\nปà¸à¸´à¸›à¸±à¸™\nปà¸à¸´à¸›à¸¸à¸ˆà¸‰à¸²à¸žà¸¢à¸²à¸à¸£à¸“์\nปà¸à¸´à¸›à¸¸à¸ˆà¸‰à¸²à¸§à¸²à¸—ี\nปà¸à¸´à¸žà¸±à¸—ธ์\nปà¸à¸´à¸žà¸²à¸à¸¢à¹Œ\nปà¸à¸´à¸ าค\nปà¸à¸´à¸ าณ\nปà¸à¸´à¸¡à¸²\nปà¸à¸´à¸¡à¸²à¸à¸£\nปà¸à¸´à¸¢à¸¸à¸—ธ์\nปà¸à¸´à¸£à¸ž\nปà¸à¸´à¸£à¸¹à¸›\nปà¸à¸´à¹‚ลม\nปà¸à¸´à¸§à¸±à¸•à¸´\nปà¸à¸´à¸§à¸²à¸•\nปà¸à¸´à¸§à¸²à¸—\nปà¸à¸´à¹€à¸§à¸˜\nปà¸à¸´à¸ªà¸™à¸˜à¸´\nปà¸à¸´à¸ªà¸§à¸°\nปà¸à¸´à¸ªà¸±à¸‡à¸‚รณ์\nปà¸à¸´à¸ªà¸±à¸™à¸–าร\nปà¸à¸´à¸ªà¸±à¸¡à¸ ิทา\nปà¸à¸´à¹€à¸ªà¸˜\nปà¸à¸žà¸µ\nปà¸à¸¡\nปà¸à¸§à¸µ\nปณต\nปณาม\nปณิธาน\nปณิธิ\nปณีต\nปด\nปดิวรัดา\nปติ\nปถพี\nปถมัง\nปถวี\nปทัà¸à¸à¸²à¸™\nปทัสถาน\nปทานุà¸à¸£à¸¡\nปทีป\nปทุม\nปน\nป่น\nปนัดดา\nปปัà¸à¸ˆà¸°\nปม\nปรนัย\nปรปัà¸à¸©à¹Œ\nปรโลà¸\nปรวาที\nปรà¸\nปรà¸à¸•à¸´\nปรง\nปรตยัà¸à¸©à¹Œ\nปรน\nปรนนิบัติ\nปรนิมมิตวสวัตดี\nปรบ\nปรปัà¸à¸©à¹Œ\nปรมัตถ์\nปรมาจารย์\nปรมาณู\nปรมาภิไธย\nปรมาภิเษà¸\nปรมินทร์\nบรเมนทร์\nปรเมศวร์\nปรเมษà¸à¹Œ\nปรวด\nปรวนà¹à¸›à¸£\nปรศุ\nปรสิต\nปร๋à¸\nปรà¸à¸‡à¸”à¸à¸‡\nปรà¸à¸”\nปรà¸à¸—\nปรà¸à¸¢\nประ\nประà¸à¸š\nประà¸à¸¤à¸•\nประà¸à¸¤à¸•à¸´\nประà¸à¸¥\nประà¸à¸§à¸”\nประà¸à¸§à¸”ประขัน\nประà¸à¸à¸š\nประà¸à¸±à¸™\nประà¸à¸±à¸š\nประà¸à¸²à¸¢\nประà¸à¸²à¸¢à¸žà¸£à¸¶à¸\nประà¸à¸²à¸£\nประà¸à¸²à¸¨\nประà¸à¸²à¸¨à¸™à¸µà¸¢à¸šà¸±à¸•à¸£\nประà¸à¸²à¸¨à¸´à¸•\nประà¸à¸³\nประà¸à¸´à¸”\nประà¸à¸´à¸•\nประคด\nประคนธรรพ\nประคนธรรพ์\nประคบ\nประคบประหงม\nประคà¸à¸‡\nประคับประคà¸à¸‡\nประคัลภ์\nประคำ\nประคิ่น\nประคุณ\nประเคน\nประเคราะห์\nประโคน\nประโคนธรรพ\nประโคนธรรพ์\nประโคม\nประจง\nประจà¸\nประจบ\nประจบประà¹à¸ˆà¸‡\nประจวบ\nประจ๋à¸à¸›à¸£à¸°à¹à¸ˆà¹‹\nประจัà¸à¸©à¹Œ\nประจัà¸à¸©à¸™à¸´à¸¢à¸¡\nประจัà¸\nประจัน\nประจาà¸\nประจาค\nประจาน\nประจำ\nประจิม\nประจิ้มประเจ๋à¸\nประจุ\nประจุคมน์\nประจุบัน\nประเจà¸\nประเจิด\nประเจิดประเจ้à¸\nประเจียด\nประà¹à¸ˆ\nประชด\nประชน\nประชวม\nประชวร\nประชัน\nประชา\nประชาธิปไตย\nประชิด\nประชี\nประชุม\nประเชิà¸\nประณต\nประณม\nประณาม\nประณิธาน\nประณิธิ\nประณีต\nประณุท\nประดง\nประดน\nประดวน\nประดà¸à¸™\nประดà¸à¸¢\nประดัà¸\nประดัà¸à¸›à¸£à¸°à¹€à¸”ิด\nประดัง\nประดับ\nประดา\nประดาà¸\nประดาป\nประดาษ\nประดิชà¸à¸²\nประดิดประดà¸à¸¢\nประดิทิน\nประดิษà¸à¹Œ\nประดิษà¸à¸à¸£à¸£à¸¡\nประดิษà¸à¸²à¸™\nประดุง\nประดุจ\nประดู่\nประเด\nประเด็น\nประเดิม\nประเดียง\nประเดี๋ยว\nประเดี๋ยวประด๋าว\nประà¹à¸”ง\nประà¹à¸”ะ\nประโดง\nประโดย\nประตง\nประตัà¸\nประตาป\nประติชà¸à¸²\nประติà¸à¸²à¸“\nประติทิน\nประติมาà¸à¸£\nประติมาà¸à¸£à¸£à¸¡\nประติรพ\nประตู\nประถม\nประถมจินดา\nประทม\nประท้วง\nประทวน\nประทัà¸à¸©à¹Œ\nประทัà¸à¸©à¸´à¸“\nประทัง\nประทัด\nประทับ\nประทาน\nประทาย\nประทาศี\nประทิน\nประทิ่น\nประทีป\nประทุà¸\nประทุน\nประทุษ\nประทุษà¸à¹Œ\nประเทศ\nประเทา\nประเทียด\nประเทียบ\nประเทืà¸à¸‡\nประธาน\nประธานาธิบดี\nประนม\nประนà¸\nประนà¸à¸¡\nประนัง\nประนัปดา\nประนีประนà¸à¸¡\nประปราน\nประปราย\nประปา\nประเปรี้ยง\nประเปรียว\nประพจน์\nประพนธ์\nประพรม\nประพฤติ\nประพฤทธิ์\nประพัด\nประพัทธ์\nประพันธ์\nประพาต\nประพาส\nประพาสมหรณพ\nประพาฬ\nประพิณ\nประพิมพ์ประพาย\nประพุทธ์\nประเพณี\nประโพธ\nประไพ\nประไพร\nประภพ\nประภัสสร\nประภา\nประภาคาร\nประภาพ\nประภาษ\nประภาส\nประเภท\nประมง\nประมวล\nประมาณ\nประมาท\nประมุข\nประมุท\nประมูล\nประเมิน\nประโมง\nประโมทย์\nประยงค์\nประยุà¸à¸•à¹Œ\nประยุทธ์\nประยุร\nประยูร\nประโยค\nประโยชน์\nประโรหิต\nประลมพ์\nประลà¸à¸‡\nประลัย\nประลาต\nประลาย\nประลุ\nประเล่ห์\nประเล้าประโลม\nประโลม\nประวรรต\nประวรรตน์\nประวัติ\nประวาล\nประวาลปัทม์\nประวาส\nประวิง\nประวิช\nประวิตร\nประวิน\nประวีณ\nประเวณี\nประเวศ\nประเวศน์\nประศม\nประศาสน์\nประศุ\nประสà¸\nประสงค์\nประสบ\nประสพ\nประสม\nประสะ\nประสัà¸\nประสันนาà¸à¸²à¸£\nประสัยห์\nประสา\nประสาท\nประสาธน์\nประสาน\nประสาร\nประสิทธิ์\nประสิทธิผล\nประสิทธิภาพ\nประสีประสา\nประสูต\nประสูติ\nประเสบัน\nประเสบันà¸à¸²à¸à¸‡\nประเสริà¸\nประหนึ่ง\nประหม่า\nประหยัด\nประหลาด\nประหล่ำ\nประหวัด\nประหวั่น\nประหัตประหาร\nประหาณ\nประหาร\nประเหล\nประเหส\nประไหมสุหรี\nประà¸à¸š\nประà¸à¸£\nปรัà¸\nปรัà¸à¸›à¸£à¸³\nปรัà¸à¸¡à¸°\nปรัง\nปรัชà¸à¸²\nปรัตถจริยา\nปรัตยุบัน\nปรัน\nปรับ\nปรัมปรา\nปรัศจิม\nปรัศนา\nปรัศนี\nปรัศว์\nปรัสสบท\nปร่า\nปราà¸à¸\nปราà¸à¸£à¸¡\nปราà¸à¸¤à¸•\nปราà¸à¸²à¸£\nปราง\nปรางค์\nปราจีน\nปราชà¸à¹Œ\nปราชà¸à¸²\nปราชัย\nปราณ\nปราณี\nปราด\nปราน\nปรานี\nปราบ\nปราบดาภิเษà¸\nปราปต์\nปราม\nปรามาส\nปราโมช\nปราโมทย์\nปราย\nปรารถนา\nปรารภ\nปรารมภ์\nปราศ\nปราศจาà¸\nปราศรัย\nปราษณี\nปราษาณ\nปราสัย\nปราสาท\nปรำ\nปริ\nปริà¸\nปริà¸à¸‚าร\nปริà¸à¸£à¸£à¸¡\nปริà¸à¸±à¸›\nปริคณห์\nปริจาค\nปริจาริà¸à¸²\nปริเฉท\nปริชน\nปริซึม\nปริà¸à¸à¸²\nปริณาม\nปริณายà¸\nปริต\nปริตตะ\nปริตโตทà¸\nปริตร\nปริทรรศน์\nปริทัยหัคคี\nปริทัศน์\nปริเทพ\nปริเทวะ\nปรินิพพาน\nปริบ\nปริบท\nปริปันถ์\nปริพนธ์\nปริพัตร\nปริพันธ์\nปริพาชà¸\nปริภัณฑ์\nปริภาษ\nปริภูมิ\nปริโภค\nปริ่ม\nปริมณฑล\nปริมาณ\nปริมาตร\nปริยัติ\nปริยานุช\nปริยาย\nปริเยศ\nปริโยสาน\nปริวรรต\nปริวัตร\nปริวาร\nปริวาส\nปริวิตà¸\nปริเวณ\nปริศนา\nปริษัท\nปริสัà¸à¸à¸¹\nปริสุทธิ\nปริหาน\nปริหาร\nปรี่\nปรีชà¸à¸²\nปรีชา\nปรี๊ด\nปรีดา\nปรีดิ\nปรีดิ์\nปรีดี\nปรีติ\nปรียะ\nปรียา\nปรึà¸\nปรึà¸à¸©à¸²\nปรึง\nปรืà¸\nปรื๋à¸\nปรุ\nปรุง\nปรู\nปรู๋\nปรูด\nปรู๊ด\nปรู๊ดปร๊าด\nปรู๊ฟ\nปฤงคพ\nปฤจฉา\nปฤษฎางค์\nปฤษà¸\nปลà¸\nปลà¸à¹€à¸›à¸¥à¸µà¹‰à¸¢\nปลง\nปล่ง\nปลด\nปล้น\nปลวà¸\nปลà¸à¸\nปล่à¸à¸‡\nปล้à¸à¸‡\nปลà¸à¸”\nปล้à¸à¸™\nปลà¸à¸š\nปลà¸à¸¡\nปล่à¸à¸¢\nปละ\nปลัà¸\nปลั๊à¸\nปลัง\nปลั่ง\nปลัด\nปลัดขิà¸\nปลา\nปลาต\nปลาบ\nปลาย\nปลาสเตà¸à¸£à¹Œ\nปลาสนาà¸à¸²à¸£\nปล้ำ\nปลิง\nปลิด\nปลิ้น\nปลิโพธ\nปลิม\nปลิ่ม\nปลิว\nปลี\nปลีà¸\nปลื้ม\nปลุà¸\nปลูà¸\nปวà¸à¹€à¸›à¸µà¸¢à¸\nปวง\nป่วง\nปวด\nป่วน\nป้วน\nป้วนเปี้ยน\nป่วย\nปวัตน์\nปวารณา\nปวาล\nปวาส\nปวาฬ\nปวิช\nปวิตร\nปวิธ\nปวิเวà¸\nปวีณ\nปวุติ\nปเวณี\nปเวส\nปเวสน์\nปศุ\nปสันนะ\nปสันนาà¸à¸²à¸£\nปสาท\nปสาน\nปสาสน์\nปสุ\nปสุต\nปสูติ\nปหังสนะ\nปหาน\nปหาร\nปหาส\nปà¸\nป้à¸\nป๋à¸\nปà¸à¸\nปà¸à¸‡\nป่à¸à¸‡\nป้à¸à¸‡\nปà¸à¸”\nปà¸à¸™\nป้à¸à¸™\nปà¸à¸™à¸”์\nปà¸à¹€à¸™à¸²à¸°\nปà¸à¸š\nป้à¸à¹à¸›à¹‰\nปà¸à¸¡\nป้à¸à¸¡\nป๋à¸à¸¡\nปà¸à¸¢\nป้à¸à¸¢\nป้à¸à¸¢à¸\nปะ\nปะà¸à¸™\nปะà¸à¸±à¸‡\nปะà¸à¸²à¸£à¸±à¸‡\nปะà¸à¸³\nปะขาว\nปะงาบ\nปะตาปา\nปะตาระà¸à¸²à¸«à¸¥à¸²\nปะติดปะต่à¸\nปะติยาน\nปะทะ\nปะทะปะทัง\nปะทุ\nปะทุน\nปะปน\nปะมง\nปะราลี\nปะรำ\nปะไร\nปะลà¸à¸¡\nปะเลง\nปะà¹à¸¥à¹ˆà¸¡\nปะโลง\nปะวะหล่ำ\nปะหงับ\nปะหนัน\nปะหัง\nปะเหลาะ\nปัà¸\nปัà¸à¸‚์\nปัà¸à¹€à¸›à¹‰à¸²\nปัà¸à¸©à¹Œ\nปัà¸à¸©à¸²\nปัà¸à¸©à¸´à¸™\nปัà¸à¸©à¸µ\nปัง\nปั๋ง\nปังสุ์\nปังสุà¸à¸¸à¸¥\nปัจจัตตะ\nปัจจันต์\nปัจจันตคาม\nปัจจันตชนบท\nปัจจันตประเทศ\nปัจจัย\nปัจจามิตร\nปัจจุคมน์\nปัจจุทธรณ์\nปัจจุบัน\nปัจจุสมัย\nปัจเจà¸\nปัจโจปà¸à¸²à¸£à¸à¸´à¸ˆ\nปัจฉา\nปัจฉิม\nปัจถรณ์\nปัจนึà¸\nปัจยาà¸à¸²à¸£\nปัจเวà¸à¸‚ณ์\nปัชชุน\nปัà¸à¸ˆà¸™à¸—ี\nปัà¸à¸ˆà¸§à¸±à¸„คีย์\nปัà¸à¸ˆà¸\nปัà¸à¸ˆà¸à¸°\nปัà¸à¸ˆà¸¡à¸µ\nปัà¸à¸ˆà¸§à¸µà¸ªà¸•à¸´\nปัà¸à¸à¸±à¸•à¸´\nปัà¸à¸à¸²\nปัà¸à¸«à¸²\nปัà¸\nปัà¸à¸™à¸°\nปัà¸à¸¢à¸²à¸§à¸±à¸•\nปัณฑรหัตถี\nปัณณะ\nปัณณาส\nปัณณาสà¸à¹Œ\nปัณรสี\nปัณหิ\nปัด\nปัตคาด\nปัตตะ\nปัตตานึà¸\nปัตตานุโมทนา\nปัตตาเวีย\nปัตติ\nปัตติà¸\nปัตถร\nปัตถะ\nปัตนิ\nปัตนี\nปัตหล่า\nปัถพี\nปัถวี\nปัทม์\nปัทมะ\nปัทมาสน์\nปัน\nปั่น\nปั้น\nปั้นจั่น\nปันจุเหร็จ\nปั้นลม\nปั้นหยา\nปั้นเหน่ง\nปับ\nปั๊บ\nปัปผาสะ\nปัพพาชนียà¸à¸£à¸£à¸¡\nปัพภาระ\nปั๊ม\nปัยà¸à¸²\nปัยยิà¸à¸²\nปัวเปีย\nปัศจิม\nปัศตัน\nปัสสาวะ\nปัสสาสะ\nปา\nป่า\nป้า\nปาà¸\nปาง\nป้าง\nปาจรีย์\nปาจิตตีย์\nปาจีน\nปาà¸à¸¥à¸´\nปาà¸à¸´à¸šà¸—\nปาà¸à¸´à¸šà¸¸à¸„ลิà¸\nปาà¸à¸´à¹‚ภค\nปาà¸à¸´à¸«à¸²à¸£à¸´à¸¢à¹Œ\nปาà¸à¸\nปาà¸à¸à¸–า\nปาà¸à¸°\nปาณà¸à¸Šà¸²à¸•à¸´\nปาณะ\nปาณาติบาต\nปาณิ\nปาณี\nปาด\nปาติโมà¸à¸‚์\nปาตี\nปาเต๊ะ\nปาท่à¸à¸‡à¹‚à¸à¹‹\nปาทังà¸à¸²\nปาทาน\nปาทุà¸à¸²\nปาน\nป่าน\nป้าน\nปานะ\nปานียะ\nป้าบ\nป๊าบ\nปาพจน์\nปาม\nปาโมà¸à¸‚์\nป่าย\nป้าย\nปายาส\nปาร์เà¸à¸•à¹Œ\nปารมี\nปารเมศ\nปาราชิà¸\nปาริฉัตร\nปาริชาต\nปารุสà¸à¸§à¸±à¸™\nปาล\nปาล์ม\nปาลิไลยà¸à¹Œ\nปาลี\nปาว\nป่าว\nป๊าว\nปาวาร\nปาษาณ\nปาส\nปาสาณ\nปาสาทิà¸à¸°\nปาหนัน\nปาหี่\nปำ\nป้ำ\nป้ำเป๋à¸\nปิà¸à¸™à¸´à¸\nปิ้ง\nปิงคละ\nปิงปà¸à¸‡\nปิฎà¸\nปิà¸à¸à¸°\nปิà¸à¸´\nปิณฑะ\nปิด\nปิตตะ\nปิตา\nปิตามหัยà¸à¸²\nปิตามหัยยิà¸à¸²\nปิตุ\nปิตุจฉา\nปิตุภูมิ\nปิตุลา\nปิโตรเลียม\nปิ่น\nปิ่นà¹à¸à¹‰à¸§\nปิ่นโต\nปิปผลี\nปิ่ม\nปิ้ม\nปิยะ\nปิยังคุ\nปิโยรส\nปิลันธน์\nปิ๋ว\nปิศาจ\nปิหà¸à¸°\nปี\nปี่\nปี้\nปี๋\nปีà¸\nปีà¸à¸°\nปี๊ด\nปีติ\nปีน\nปีบ\nปี๊บ\nปีศาจ\nปีฬà¸à¸°\nปึà¸\nปึง\nปึ่ง\nปึ๋ง\nปึ้ด\nปึมปื้à¸\nปืน\nปื้น\nปืà¸\nปื้à¸\nปื๋à¸\nปุ\nปุ๊\nปุà¸\nปุà¸à¸›à¸¸à¸¢\nปุคละ\nปุ้งà¸à¸µà¹‹\nปุงควะ\nปุงลิงค์\nปุงลึงค์\nปุจฉา\nปุà¸à¸°\nปุณฑริà¸\nปุด\nปุตตะ\nปุถุชน\nปุนนาค\nปุนภพ\nปุนัพสุ\nปุบ\nปุ๊บ\nปุปผะ\nปุปะ\nปุพพะ\nปุ่ม\nปุ่มป่ำ\nปุ้ม\nปุ๋ม\nปุย\nปุ้ย\nปุ๋ย\nปุรณะ\nปุระ\nปุราณ\nปุราณะ\nปุริมพรรษา\nปุเรจาริà¸\nปุโรหิต\nปุลลิงค์\nปุลลึงค์\nปุลินท์\nปุโลปุเล\nปุษยะ\nปุสสะ\nปู\nปู่\nปูชà¸à¸°\nปูชนียบุคคล\nปูชนียวัตถุ\nปูชนียะ\nปูชา\nปูชิต\nปูด\nปูน\nปูม\nปู้ยี่ปู้ยำ\nปูระ\nปูลู\nเป้\nเป๋\nเปà¸\nเป๊à¸\nเป่ง\nเป้ง\nเป๋ง\nเป็ด\nเปตพลี\nเปตà¸à¸‡\nเป็น\nเปยยาล\nเปร็ง\nเปรต\nเปรม\nเปรย\nเปรà¸\nเปรà¸à¸°\nเปราะ\nเปรียง\nเปรี้ยง\nเปรี้ยงปร้าง\nเปรียà¸\nเปรียบ\nเปรี่ยม\nเปรียว\nเปรี้ยว\nเปรียะ\nเปรี๊ยะ\nเปรื่à¸à¸‡\nเปรื้à¸à¸¢\nเปล\nเปล่ง\nเปลว\nเปลา\nเปล่า\nเปล้า\nเปลาะ\nเปลี้ย\nเปลี่ยน\nเปลี่ยม\nเปลี่ยว\nเปลืà¸à¸\nเปลืà¸à¸‡\nเปลื้à¸à¸‡\nเปลืà¸à¸¢\nเปศะ\nเปศัส\nเปสà¸à¸²à¸£\nเปสละ\nเปสุà¸à¸§à¸²à¸—\nเป๋à¸\nเป้à¸à¹€à¸¢à¹‰à¸\nเปà¸à¸£à¹Œ\nเปà¸à¸£à¹Œà¹€à¸‹à¹‡à¸™à¸•à¹Œ\nเปะ\nเปา\nเป่า\nเป้า\nเป๊า\nเป๋า\nเป๋าฮื้à¸\nเปาะ\nเป๊าะ\nเปาะเปี๊ยะ\nเปาะà¹à¸›à¸°\nเปิà¸\nเปิง\nเปิงมาง\nเปิด\nเปิ่น\nเปิบ\nเปิ๊บ\nเปีย\nเปียà¸\nเปี๊ยà¸\nเปี๊ยบ\nเปี่ยม\nเปี้ยว\nเปี๊ยว\nเปียะ\nเปี๊ยะ\nเปืà¸à¸\nเปื้à¸à¸™\nเปื่à¸à¸¢\nà¹à¸›\nà¹à¸›à¹‰à¸‡\nà¹à¸›à¹‹à¸‡\nà¹à¸›à¸”\nà¹à¸›à¹Šà¸”\nà¹à¸›à¸—ู\nà¹à¸›à¹‰à¸™\nà¹à¸›à¹Šà¸™\nà¹à¸›à¸š\nà¹à¸›à¹Šà¸š\nà¹à¸›à¸¡\nà¹à¸›à¸£\nà¹à¸›à¸£à¹‹\nà¹à¸›à¸£à¸\nà¹à¸›à¸£à¸‡\nà¹à¸›à¸£à¹ˆà¸‡\nà¹à¸›à¸£à¹Šà¸”\nà¹à¸›à¸£à¹‰à¸™\nà¹à¸›à¸£à¹‹à¸™\nà¹à¸›à¸£à¸›à¸£à¸§à¸™\nà¹à¸›à¸£à¸°\nà¹à¸›à¸¥\nà¹à¸›à¸¥à¹‰\nà¹à¸›à¸¥à¸\nà¹à¸›à¸¥à¸‡\nà¹à¸›à¸¥à¸™\nà¹à¸›à¸¥à¸š\nà¹à¸›à¸¥à¹Šà¸š\nà¹à¸›à¹‰à¸§\nà¹à¸›à¹Šà¸§\nà¹à¸›à¸°\nà¹à¸›à¹Šà¸°\nà¹à¸›à¹Šà¸°à¸‹à¸°\nโป\nโป่\nโป้\nโป๊\nโปà¸\nโป๊à¸\nโป๊à¸à¹€à¸à¸à¸£à¹Œ\nโปà¸à¸‚รณี\nโปà¸à¸‚รพรรษ\nโปเà¸\nโปง\nโป่ง\nโป้ง\nโป่งข่าม\nโปงลาง\nโป่งวิด\nโปà¸à¸šà¸—\nโปà¸à¸›à¸—มาส\nโปดà¸\nโปตถà¸à¸°\nโปน\nโป๊ป\nโป๊ยเซียน\nโปรà¹à¸à¸£à¸¡\nโปรง\nโปร่ง\nโปรด\nโปรตà¸à¸™\nโปรตีน\nโปรเตสà¹à¸•à¸™à¸•à¹Œ\nโปรà¹à¸—รà¸à¹€à¸•à¸à¸£à¹Œ\nโปรย\nโปล่ง\nโปลิโà¸\nโปโล\nโปสà¸\nโปสต์à¸à¸²à¸£à¹Œà¸”\nโปะ\nโป๊ะ\nโป๊ะจ้าย\nไป\nไป่\nไป๋\nไปยาล\nไปรษณีย์\nไปรษณียบัตร\nไปรษณียภัณฑ์\nไปรษณียาà¸à¸£\nไปล่\nไปศาจ\nผà¸\nผà¸à¸²\nผà¸à¸²à¸¢\nผคม\nผง\nผงà¸\nผงม\nผงะ\nผงาด\nผง่าน\nผจง\nผจà¸\nผจัà¸\nผจาน\nผชุม\nผณิน\nผณินทร\nผณิศวร\nผด\nผดุง\nผเดิน\nผทม\nผนวà¸\nผนวช\nผนัง\nผนิด\nผนึà¸\nผม\nผยà¸à¸‡\nผรณาปีติ\nผรสุ\nผริต\nผรุสวาท\nผล\nผลคุน\nผลคุนี\nผล็à¸à¸¢\nผละ\nผลัà¸\nผลัด\nผลับ\nผลัวะ\nผลา\nผลาà¸\nผลานิสงส์\nผลาผล\nผลาหาร\nผลิ\nผลิà¸à¸°\nผลิต\nผลิน\nผลี\nผลีผลาม\nผลึà¸\nผลึ่ง\nผลืà¸\nผลุ\nผลุง\nผลุด\nผลุน\nผลุนผลัน\nผลุบ\nผลุบผลับ\nผลุย\nผลู\nผวน\nผวย\nผวา\nผสม\nผสาน\nผà¸à¸‡\nผ่à¸à¸‡\nผ่à¸à¸™\nผà¸à¸š\nผà¸à¸¡\nผ็à¸à¸¢\nผà¸à¸¹à¸™\nผะ\nผะดา\nผะสา\nผัà¸\nผัคคุณ\nผัคคุณี\nผัง\nผัด\nผัน\nผับ\nผัว\nผัวะ\nผัสสะ\nผัสสาหาร\nผา\nผ่า\nผ้า\nผาà¸\nผาง\nผ่าง\nผาณิต\nผาด\nผาติ\nผ่าน\nผาม\nผาย\nผ่ายผà¸à¸¡\nผาล\nผาลคุน\nผาลา\nผ่าว\nผาสุà¸\nผ้าฮาด\nผำ\nผ้ำ\nผิ\nผิง\nผิด\nผิตะ\nผิน\nผิว\nผี\nผี้ว์\nผึง\nผึ่ง\nผึ้ง\nผึ้งรวง\nผืน\nผื่น\nผุ\nผุด\nผุยผง\nผุสราคา\nผู้\nผูà¸\nเผ\nเผง\nเผชิà¸\nเผ็ด\nเผด็จ\nเผดิม\nเผดียง\nเผ่น\nเผนิà¸\nเผย\nเผยà¸\nเผยิบ\nเผยิบผยาบ\nเผล\nเผล่\nเผล็ด\nเผลà¸\nเผลà¸à¹„ผล\nเผละ\nเผลาะ\nเผลาะà¹à¸œà¸¥à¸°\nเผลียง\nเผà¸à¹€à¸£à¸\nเผà¸à¸´à¸\nเผà¸à¸´à¸¥\nเผะ\nเผา\nเผ่า\nเผ้า\nเผาะ\nเผิ้ง\nเผิน\nเผียน\nเผืà¸\nเผื่à¸\nเผืà¸à¸\nเผืà¸à¸”\nเผืà¸à¸™\nเผื่à¸à¸™\nà¹à¸œà¹ˆ\nà¹à¸œà¸\nà¹à¸œà¸‡\nà¹à¸œà¸”\nà¹à¸œà¸™\nà¹à¸œà¹ˆà¸™\nà¹à¸œà¸™à¸\nà¹à¸œà¸¥\nà¹à¸œà¸¥à¸‡\nà¹à¸œà¸¥à¹‡à¸š\nà¹à¸œà¸¥à¹‡à¸§\nà¹à¸œà¸¥à¸°\nà¹à¸œà¹ˆà¸§\nà¹à¸œà¹‰à¸§\nโผ\nโผง\nโผà¸à¸à¸±à¸žà¸žà¸°\nโผน\nโผเผ\nโผย\nโผล่\nโผลà¸à¹€à¸œà¸¥à¸\nโผละ\nโผà¸à¸™\nโผะ\nไผ\nไผ่\nไผท\nà¸à¸™\nà¸à¸£à¸±à¹ˆà¸‡\nà¸à¸£à¸±à¹ˆà¸‡à¹€à¸¨à¸ª\nà¸à¹ˆà¸\nà¸à¸à¸¢\nà¸à¸±à¸\nà¸à¸±à¸‡\nà¸à¸±à¹ˆà¸‡\nà¸à¸±à¸”\nà¸à¸±à¸™\nà¸à¸²\nà¸à¹ˆà¸²\nà¸à¹‰à¸²\nà¸à¸²à¸\nà¸à¸²à¸‡\nà¸à¸²à¸”\nà¸à¸²à¸™\nà¸à¸²à¸¢\nà¸à¹ˆà¸²à¸¢\nà¸à¹‰à¸²à¸¢\nà¸à¸´à¹ˆà¸™\nà¸à¸µ\nà¸à¸µà¹ˆ\nà¸à¸µà¸\nà¸à¸¶à¸\nà¸à¸·à¸”\nà¸à¸·à¸™\nà¸à¸¸à¹ˆà¸™\nà¸à¸¹à¸‡\nเà¸à¹‰à¸²\nเà¸à¸·à¸\nเà¸à¸·à¸à¸\nเà¸à¸·à¸à¸‡\nเà¸à¸·à¹ˆà¸à¸™\nà¹à¸à¸\nà¹à¸à¸‡\nà¹à¸à¸”\nใà¸à¹ˆ\nไà¸\nพà¸\nพà¸à¸¸à¸¥\nพง\nพงศ์\nพงศà¸à¸£\nพงศธร\nพงศา\nพงศาวดาร\nพจน์\nพจนา\nพจนานุà¸à¸£à¸¡\nพจนารถ\nพจนีย์\nพจมาน\nพจี\nพชระ\nพà¸à¸²\nพà¸à¸²à¸¥à¸\nพณิช\nพณิชย์\nพดด้วง\nพธู\nพนันดร\nพนาดร\nพนาดà¸à¸™\nพนาราม\nพนาลัย\nพนาลี\nพนาวาส\nพนาเวศ\nพนาศรม\nพนาสณฑ์\nพนาสัณฑ์\nพเนจร\nพ่น\nพ้น\nพนม\nพนà¸à¸‡\nพนà¸à¸¡\nพนัà¸\nพนัà¸à¸‡à¸²à¸™\nพนัง\nพนัน\nพนัส\nพนา\nพนาย\nพนิดา\nพนิต\nพบ\nพม่า\nพยนต์\nพยศ\nพยัà¸\nพยัà¸à¸žà¹€à¸¢à¸´à¸”\nพยัคฆ์\nพยัคฆา\nพยัคฆิน\nพยัคฆี\nพยัชน์\nพยัà¸à¸Šà¸™à¸°\nพยัต\nพยับ\nพยาà¸à¸£à¸“์\nพยาฆร์\nพยางค์\nพยาธิ\nพยาน\nพยาบาท\nพยาบาล\nพยาม\nพยามะ\nพยายาม\nพยุ\nพยุง\nพยุหยาตรา\nพยุหโยธา\nพยุหเสนา\nพยุหะ\nพยู่ห์\nพเยีย\nพร\nพรต\nพรม\nพรรค\nพรรค์\nพรรคานต์\nพรรณ\nพรรณนา\nพรรดึà¸\nพรรลาย\nพรรษ\nพรรษา\nพรรเà¸à¸´à¸\nพรวด\nพรวน\nพรหม\nพรหมจรรย์\nพรหมจาริณี\nพรหมจารี\nพรหมา\nพรหมาสตร์\nพรหมินทร์\nพรà¸à¸\nพร่à¸à¸‡\nพร้à¸à¸‡\nพรà¸à¸”\nพร้à¸à¸¡\nพร้à¸à¸¡à¸žà¸£à¸±à¸\nพร่à¸à¸¢\nพร้à¸à¸¢\nพระ\nพระนà¸à¸¡\nพระนาด\nพระฮาม\nพรัà¸à¸žà¸£à¹‰à¸à¸¡\nพรั่ง\nพรัด\nพรั่น\nพรับ\nพร่า\nพร้า\nพราà¸\nพราง\nพร่าง\nพราด\nพราน\nพราย\nพราว\nพราหมณ์\nพราหมณะ\nพราหมณี\nพราหมี\nพรำ\nพร่ำ\nพริà¸\nพริ้ง\nพริบ\nพริ้ม\nพรึง\nพรึน\nพรึบ\nพรึ่บ\nพรืด\nพรุ\nพรุ่ง\nพรุน\nพรู\nพรูด\nพฤà¸à¸©à¹Œ\nพฤà¸à¸©à¸Šà¸²à¸•à¸´\nพฤà¸à¸©à¹€à¸—วดา\nพฤà¸à¸©à¸£à¸²à¸Š\nพฤà¸à¸©à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nพฤà¸à¸©à¸²\nพฤฒ\nพฤฒา\nพฤฒาจารย์\nพฤฒิ\nพฤต\nพฤติ\nพฤทธ์\nพฤทธิ์\nพฤนต์\nพฤนท์\nพฤศจิà¸\nพฤศจิà¸à¸²à¸¢à¸™\nพฤษภ\nพฤษภาคม\nพฤหัสบดี\nพล\nพละ\nพลาà¸à¸£\nพลาดิศัย\nพลาธิà¸à¸²à¸£\nพลานามัย\nพลบ\nพลวà¸\nพลวง\nพลวัต\nพลศาสตร์\nพลà¸\nพล้à¸\nพลà¸à¸‡\nพลà¸à¸”\nพลà¸à¸™\nพลà¸à¸¡à¹à¸žà¸¥à¸¡\nพลà¸à¸¢\nพล่à¸à¸¢\nพลั่à¸\nพลัง\nพลั่ง\nพลั้ง\nพลัด\nพลัน\nพลับ\nพลับพลา\nพลับพลึง\nพลั่ว\nพล่า\nพลาง\nพลาà¸\nพลาด\nพล่าน\nพลาม\nพล่าม\nพลาย\nพลาสติà¸\nพลาสมา\nพลาหà¸\nพลำ\nพล้ำ\nพลำภัง\nพลิà¸\nพลิพัท\nพลิ้ว\nพลี\nพลุ\nพลุà¸\nพลุ่à¸\nพลุà¸à¸žà¸¥à¹ˆà¸²à¸™\nพลุ่ง\nพลุ้ย\nพลู\nพลูโต\nพลูโทเนียม\nพวà¸\nพวง\nพ่วง\nพวน\nพวย\nพสà¸\nพสุ\nพสุธา\nพสุสงà¸à¸£à¸²à¸™à¸•à¹Œ\nพหล\nพหุ\nพหุล\nพหู\nพà¸\nพ่à¸\nพ้à¸\nพà¸à¸\nพà¸à¸‡\nพ้à¸à¸‡\nพà¸à¸™\nพ้à¸à¸¡\nพà¸à¹‚ลเนียม\nพะ\nพะงา\nพะงาบ\nพะจง\nพะทำมะรง\nพะนà¸\nพะเน้าพะนà¸\nพะเนิน\nพะเนียง\nพะà¹à¸™à¸‡\nพะพาน\nพะพิง\nพะเพิง\nพะยà¸à¸¡\nพ่ะย่ะค่ะ\nพะยูง\nพะยูน\nพะเยิบ\nพะเยิบพะยาบ\nพะรุงพะรัง\nพะโล้\nพะไล\nพะวง\nพะวัà¸à¸žà¸°à¸§à¸™\nพะวา\nพะว้าพะวัง\nพะà¸à¸‡\nพะà¸à¸²à¸à¸žà¸°à¸à¸³\nพะà¸à¸·à¸”พะà¸à¸¡\nพัà¸\nพัà¸à¸•à¸£à¹Œ\nพัà¸à¸•à¸£à¸²\nพัà¸à¸£\nพัง\nพังà¸à¸²\nพังงา\nพังผืด\nพังพวย\nพังพà¸à¸™\nพังพาน\nพังพาบ\nพังเพย\nพัช\nพัชนี\nพัชระ\nพัà¸à¸ˆà¸™à¹Œ\nพัฒนะ\nพัฒนา\nพัฒนาà¸à¸£\nพัฒนาà¸à¸²à¸£\nพัด\nพัดชา\nพัดดึงส์\nพัตร\nพัทธ์\nพัทธยา\nพัทธสีมา\nพัทร\nพัน\nพันตู\nพันทาง\nพันธ์\nพันธะ\nพันธà¸à¸£à¸“ี\nพันธบัตร\nพันธมิตร\nพันธนะ\nพันธนาคาร\nพันธนาà¸à¸²à¸£\nพันธุ์\nพันธุà¸à¸£à¸£à¸¡\nพันลึà¸\nพันลืà¸\nพันเลิศ\nพันเà¸à¸´à¸\nพับ\nพัลลภ\nพัลวัน\nพัว\nพัวะ\nพัศดี\nพัสดุ\nพัสตร์\nพัสถาน\nพา\nพาà¸\nพาà¸à¹€à¸žà¸µà¸¢à¸£\nพาà¸à¸¢à¹Œ\nพาง\nพ่าง\nพาชี\nพาณิช\nพาณิชย์\nพาณิชยà¸à¸£à¸£à¸¡\nพาณิชยà¸à¸²à¸£\nพาณิชยศาสตร์\nพาณิชยศิลป์\nพาณินี\nพาณี\nพาณีนี\nพาด\nพาท\nพาทย์\nพาธ\nพาธา\nพาน\nพ่าน\nพานร\nพานรินทร์\nพาม\nพาย\nพ่าย\nพายม้า\nพายัพ\nพายุ\nพาร์เซà¸\nพารณ\nพารา\nพาราฟิน\nพาล\nพาลา\nพาลี\nพาลุà¸\nพาโล\nพาไล\nพาส\nพาสน์\nพาสนา\nพาสุà¸à¸£à¸µ\nพ่าห์\nพาหนะ\nพาหะ\nพาหา\nพาหิรà¸à¸°\nพาหิระ\nพาหุ\nพาหุรัด\nพาหุสัจจะ\nพาเหียร\nพาฬ\nพำ\nพำนัà¸\nพำพึม\nพำลา\nพิà¸à¸¥\nพิà¸à¸ªà¸´à¸•\nพิà¸à¸±à¸”\nพิà¸à¸±à¸•à¸´\nพิà¸à¸±à¸™\nพิà¸à¸²à¸£\nพิà¸à¸¸à¸¥\nพิเคราะห์\nพิฆน์\nพิฆเนศ\nพิฆเนศวร\nพิฆาต\nพิง\nพิจัย\nพิจาร\nพิจารณ์\nพิจารณา\nพิจิà¸\nพิจิต\nพิจิตร\nพิชà¸à¹Œ\nพิชัย\nพิชาน\nพิชิต\nพิเชà¸\nพิเชียร\nพิฑูรย์\nพิณ\nพิดทูล\nพิดาน\nพิโดร\nพิตร\nพิถี\nพิถีพิถัน\nพิทย\nพิทย์\nพิทยา\nพิทยาคม\nพิทยาคาร\nพิทยาธร\nพิทยาลัย\nพิทัà¸à¸©à¹Œ\nพิทูร\nพิเทศ\nพิธาน\nพิธี\nพิธุ\nพินทุ\nพินà¸à¸šà¸žà¸´à¹€à¸—า\nพินัย\nพินาศ\nพินิจ\nพินิต\nพินิศ\nพินิศจัย\nพิเนต\nพิบัติ\nพิบุล\nพิบูล\nพิปริต\nพิปลาส\nพิพรรธ\nพิพรรธน์\nพิพัà¸à¸žà¸´à¸žà¹ˆà¸§à¸™\nพิพัฒ\nพิพัฒน์\nพิพาà¸à¸©à¹Œ\nพิพาà¸à¸©à¸²\nพิพาท\nพิพิธ\nพิพิธภัณฑ์\nพิพิธภัณฑสถาน\nพิภพ\nพิภัช\nพิภาค\nพิภูษณะ\nพิเภà¸\nพิมปะà¸à¸²à¸£à¸±à¸‡\nพิมพ์\nพิมพà¸à¸²à¸£à¸±à¸‡\nพิมพา\nพิมพาภรณ์\nพิมล\nพิมเสน\nพิมาน\nพิมุข\nพิโมà¸à¸‚์\nพิโมà¸à¸©à¹Œ\nพิโยà¸à¸žà¸´à¹€à¸à¸™\nพิโยค\nพิรà¸à¸”\nพิระ\nพิราà¸à¸¥\nพิราบ\nพิราม\nพิราลัย\nพิริยะ\nพิรี้พิไร\nพิรุณ\nพิรุธ\nพิรุฬห์\nพิเรนทร์\nพิเราะ\nพิโรธ\nพิไร\nพิลังà¸à¸²à¸ªà¸²\nพิลาป\nพิลาส\nพิลิปดา\nพิลึà¸\nพิลึà¸à¸à¸¶à¸à¸à¸·à¸\nพิลึà¸à¸žà¸´à¸¥à¸±à¹ˆà¸™\nพิโลน\nพิไล\nพิศ\nพิศวง\nพิศวาส\nพิศาล\nพิศุทธ์\nพิศุทธิ์\nพิเศษ\nพิษ\nพิษà¸à¸²à¸™\nพิษนาศน์\nพิสดาร\nพิสมร\nพิสมัย\nพิสัง\nพิสัช\nพิสัย\nพิสิà¸\nพิสุทธิ์\nพิสูจน์\nพิหค\nพิหาร\nพิฬาร\nพี\nพี่\nพี้\nพีชคณิต\nพีระมิด\nพึง\nพึ่ง\nพึ่บ\nพึ่บพั่บ\nพึม\nพึมพำ\nพืช\nพืด\nพื้น\nพุ\nพุà¸\nพุà¸à¸²à¸¡\nพุง\nพุ่ง\nพุงดà¸\nพุฒ\nพุฒิ\nพุด\nพุดตาน\nพุทธ\nพุทธะ\nพุทธังà¸à¸¹à¸£\nพุทธางà¸à¸¹à¸£\nพุทธันดร\nพุทธาภิเษà¸\nพุทธาวาส\nพุทธิ\nพุทโธ่\nพุทรา\nพุธ\nพุ่ม\nพุมเรียง\nพุ้ย\nพู\nพูพà¸à¸™\nพู่\nพูด\nพูน\nพู้น\nพู่ระหง\nเพ\nเพ็à¸\nเพà¸à¸²\nเพคะ\nเพ็ง\nเพ่ง\nเพ็จ\nเพชฉลูà¸à¸£à¸£à¸¡\nเพชฌฆาต\nเพชร\nเพชรดา\nเพชรปาณี\nเพชรฤà¸à¸©à¹Œ\nเพชรายุธ\nเพชรà¸à¸¥à¸±à¸š\nเพชรสังฆาต\nเพชรหลีà¸\nเพชรหึง\nเพ็à¸\nเพฑูริย์\nเพณี\nเพ็ดทูล\nเพดาน\nเพท\nเพทนา\nเพทาย\nเพทุบาย\nเพโทบาย\nเพ่นพ่าน\nเพนียด\nเพไนย\nเพ้ย\nเพรง\nเพรซีโà¸à¸”ิเมียม\nเพรา\nเพราะ\nเพริด\nเพริศ\nเพรียà¸\nเพรียง\nเพรียบ\nเพรี้ยม\nเพรียว\nเพรื่à¸\nเพรืà¸à¸‡\nเพล\nเพลง\nเพล็ด\nเพล้โพล้\nเพลา\nเพลาะ\nเพลิง\nเพลิดเพลิน\nเพลิน\nเพลีย\nเพลี้ย\nเพลี่ยง\nเพศ\nเพส\nเพสลาด\nเพ่à¸\nเพ้à¸\nเพ้à¸à¹€à¸ˆà¹‰à¸\nเพà¸à¸´à¸\nเพะ\nเพา\nเพาะ\nเพิà¸\nเพิง\nเพิ่ง\nเพิดเพ้ย\nเพิ่ม\nเพี้ย\nเพียง\nเพี้ยง\nเพียงà¸à¸\nเพี้ยน\nเพียบ\nเพียร\nเพื่à¸\nเพื่à¸à¸™\nà¹à¸ž\nà¹à¸žà¹‰\nà¹à¸žà¸‡\nà¹à¸žà¹ˆà¸‡\nà¹à¸žà¸‡à¸žà¸§à¸¢\nà¹à¸žà¸—ย์\nà¹à¸žà¸—ยศาสตร์\nà¹à¸žà¸™\nà¹à¸žà¹ˆà¸™\nà¹à¸žà¸™à¸\nà¹à¸žà¸™à¸‡à¹€à¸Šà¸´à¸‡\nà¹à¸žà¸£\nà¹à¸žà¸£à¹ˆ\nà¹à¸žà¸£à¸\nà¹à¸žà¸£à¹ˆà¸‡\nà¹à¸žà¸£à¸§\nà¹à¸žà¸£à¹‰à¸§\nà¹à¸žà¸¥à¸‡\nà¹à¸žà¸¥à¸—ินัม\nà¹à¸žà¸¥à¹‡à¸š\nà¹à¸žà¸¥à¸¡\nà¹à¸žà¸¥à¹€à¸¥à¹€à¸”ียม\nà¹à¸žà¸¥à¸°\nà¹à¸žà¸¥à¸°à¹‚ลม\nà¹à¸žà¸§\nà¹à¸žà¹‰à¸§\nà¹à¸žà¸¨à¸¢à¹Œ\nà¹à¸žà¸¨à¸¢à¸²\nà¹à¸žà¸°\nโพ\nโพà¸\nโพà¸à¸žà¸²à¸¢\nโพง\nโพงพาง\nโพชฌงค์\nโพซิตรà¸à¸™\nโพด\nโพทะเล\nโพà¹à¸—สเซียม\nโพธ\nโพธิ\nโพธิ์\nโพน\nโพ้น\nโพนทะนา\nโพบาย\nโพย\nโพยà¸à¹Šà¸§à¸™\nโพยม\nโพรà¸\nโพรง\nโพรโทà¹à¸à¸à¸—ิเนียม\nโพรมีเทียม\nโพระดà¸\nโพล่\nโพลง\nโพล่ง\nโพล้ง\nโพลน\nโพล้เพล้\nโพละ\nโพสพ\nไพ\nไพ่\nไพจิตร\nไพชน\nไพชยนต์\nไพฑูรย์\nไพที\nไพบูลย์\nไพพรรณ\nไพร\nไพร่\nไพรจิตร\nไพรชน\nไพรชยนต์\nไพรฑูรย์\nไพรที\nไพรบูลย์\nไพรเราะ\nไพรัช\nไพรำ\nไพริน\nไพรินทร์\nไพรี\nไพเราะ\nไพโรจน์\nไพล\nไพล่\nไพศาขะ\nไพศาล\nไพเศษ\nไพสพ\nไพสิà¸\nไพหาร\nฟà¸\nฟ้ง\nฟรัà¸à¹‚ทส\nฟรี\nฟลูà¸à¸à¸£à¸µà¸™\nฟ่à¸\nฟ้à¸\nฟà¸à¸\nฟà¸à¸‡\nฟ่à¸à¸‡\nฟ้à¸à¸‡\nฟà¸à¸”\nฟà¸à¸™\nฟ่à¸à¸™\nฟ้à¸à¸™\nฟ้à¸à¹à¸Ÿà¹‰\nฟà¸à¸£à¹Œà¸¡à¸²à¸¥à¸”ีไฮด์\nฟà¸à¸£à¹Œà¸¡à¸²à¸¥à¸´à¸™\nฟà¸à¸ªà¸Ÿà¸à¸£à¸±à¸ª\nฟà¸à¸ªà¹€à¸Ÿà¸•\nฟัà¸\nฟัà¸à¸Ÿà¸¸à¹‰à¸™\nฟัง\nฟังà¸à¹Œà¸Šà¸±à¸™\nฟัด\nฟัน\nฟั่น\nฟั้น\nฟ้า\nฟาà¸\nฟาง\nฟ่าง\nฟาด\nฟาทà¸à¸¡\nฟาน\nฟ่าม\nฟาย\nฟาร์ม\nฟาสซิสต์\nฟิด\nฟิต\nฟิบ\nฟิล์ม\nฟิวส์\nฟิสิà¸à¸ªà¹Œ\nฟี่\nฟี้\nฟืดฟาด\nฟืน\nฟื้น\nฟืม\nฟุ\nฟุ้ง\nฟุต\nฟุน\nฟุบ\nฟุ่บ\nฟุ่มเฟืà¸à¸¢\nฟุลสà¹à¸à¹Šà¸›\nฟู\nฟู่\nฟูà¸\nฟูด\nฟูม\nเฟ็ด\nเฟ้น\nเฟลด์สปาร์\nเฟ้à¸\nเฟà¸à¸£à¹Œà¹€à¸¡à¸µà¸¢à¸¡\nเฟà¸à¸°\nเฟà¸à¸°à¸Ÿà¸°\nเฟะ\nเฟะฟะ\nเฟิน\nเฟี้ยม\nเฟี้ยว\nเฟืà¸\nเฟื้à¸\nเฟืà¸à¸‡\nเฟื่à¸à¸‡\nเฟื้à¸à¸‡\nเฟืà¸à¸™\nเฟืà¸à¸¢\nเฟื้à¸à¸¢\nà¹à¸Ÿà¹ˆ\nà¹à¸Ÿà¸‡\nà¹à¸Ÿà¸Šà¸±à¹ˆà¸™\nà¹à¸Ÿà¸™\nà¹à¸Ÿà¸š\nà¹à¸Ÿà¹‰à¸¡\nà¹à¸Ÿà¸£à¸™à¹€à¸‹à¸µà¸¢à¸¡\nà¹à¸Ÿà¸¥à¸à¸‹à¹Œ\nà¹à¸Ÿà¸¥à¸•\nà¹à¸Ÿà¸°\nโฟà¸à¸±à¸ª\nไฟ\nภควดี\nภควัต\nภควันต์\nภควัม\nภควา\nภควาน\nภคะ\nภคันทลา\nภคินี\nภณะ\nภณิดา\nภพ\nภมร\nภมริน\nภมรี\nภมุà¸à¸²\nภยันตราย\nภยาคติ\nภระ\nภรณี\nภรต\nภรรดร\nภรรดา\nภรรยา\nภระมร\nภระมรี\nภราดร\nภราดรภาพ\nภราดา\nภริยา\nภฤศ\nภวะ\nภวตัณหา\nภวนะ\nภวังค์\nภวังคจิต\nภัà¸à¸”ี\nภัà¸à¸•à¸°\nภัà¸à¸•à¸´\nภัà¸à¸©à¹Œ\nภัà¸à¸©à¸²\nภัà¸à¸©à¸²à¸«à¸²à¸£\nภัค\nภัคน์\nภังคะ\nภังคี\nภัจ\nภัณฑ์\nภัณฑาคาร\nภัณฑาคาริà¸\nภัณฑารัà¸à¸©à¹Œ\nภัณฑนะ\nภัณฑู\nภัต\nภัตตาคาร\nภัตตาหาร\nภัตร\nภัทระ\nภัทรà¸à¸±à¸›\nภัพ\nภัย\nภัสดา\nภัสตรา\nภัสมะ\nภัสสร\nภา\nภาค\nภาคย์\nภาคยานุวัติ\nภาคินี\nภาคิไนย\nภาคี\nภาคียะ\nภาชนะ\nภาชี\nภาณ\nภาณวาร\nภาณà¸à¸°\nภาณี\nภาณุ\nภาดร\nภาดา\nภาตระ\nภาตา\nภาตุ\nภาติà¸à¸°\nภาติยะ\nภาพ\nภาพย์\nภาม\nภาย\nภาร\nภาระ\nภารดี\nภารต\nภารตี\nภารยทรัพย์\nภารยา\nภารา\nภาวนา\nภาวะ\nภาษ\nภาษณ์\nภาษา\nภาษิต\nภาษี\nภาส\nภาสน์\nภาสวร\nภาสา\nภาสุระ\nภิà¸à¸‚า\nภิà¸à¸‚าจาร\nภิà¸à¸‚ุ\nภิà¸à¸‚ุนี\nภิà¸à¸©à¸²\nภิà¸à¸©à¸²à¸ˆà¸²à¸£\nภิà¸à¸©à¸²à¸«à¸²à¸£\nภิà¸à¸©à¸¸\nภิà¸à¸©à¸¸à¸“ี\nภิงคาร\nภิà¸à¹‚à¸\nภิตติ\nภินท์\nภินทนาà¸à¸²à¸£\nภิยโย\nภิรมย์\nภิรมย์สุรางค์\nภิษัช\nภิสัà¸\nภีตะ\nภีมะ\nภีรุ\nภุà¸à¸•à¹Œ\nภุขัน\nภุช\nภุชงค์\nภุต\nภุมมะ\nภุมรัตน์\nภุมวาร\nภุมรา\nภุมริน\nภุมรี\nภุมเรศ\nภู\nภู่\nภูต\nภูติ\nภูม\nภูมิ\nภูมี\nภูริ\nภูรี\nภูวดล\nภูวนาถ\nภูวเนตร\nภูวไนย\nภูษา\nภูษิต\nเภà¸à¸°\nเภตรา\nเภท\nเภทุบาย\nเภรี\nเภสัช\nโภค\nโภคะ\nโภคิน\nโภคี\nโภไคย\nโภไคศวรรย์\nโภช\nโภชย์\nโภชà¸\nโภชนะ\nโภชนา\nโภชนาหาร\nโภชนียะ\nไภริน\nไภรี\nไภษัชคุรุ\nไภษัชย์\nมà¸à¸£\nมà¸à¸£à¸²à¸„ม\nมà¸à¸¸à¸Ž\nมคธ\nมฆวัน\nมฆะ\nมฆา\nม่ง\nมงà¸à¸¸à¸Ž\nมงโà¸à¸£à¸¢\nมงคล\nมงคลวาร\nมณฑ์\nมณฑà¸\nมณฑนะ\nมณฑป\nมณฑล\nมณฑา\nมณฑารพ\nมณฑิระ\nมณเฑียร\nมณี\nมด\nมตะ\nมตà¸à¸ ัต\nมติ\nมทนะ\nมทะ\nมธุ\nมธุà¸à¸£\nมธุà¸à¸²à¸£à¸µ\nมธุลีห์\nมธุระ\nมธุรพจน์\nมน\nมนินทรีย์\nม่น\nมนต์\nมนตร์\nมนตรี\nมนท์\nมนทิราลัย\nมนเทียร\nมนสิà¸à¸²à¸£\nมนัส\nมนัสวี\nมนินทรีย์\nมนิมนา\nมนิลา\nมนุà¸\nมนุษย์\nมนุษยชาติ\nมนุษยธรรม\nมนุษย์มนา\nมนุษยโลà¸\nมนุษยศาสตร์\nมนุษยสัมพันธ์\nมนุสาร\nมนู\nมนูสาร\nมโน\nมโนช\nมโนชà¸à¹Œ\nมโนราห์\nมโนสาเร่\nมโนห์รา\nมมังà¸à¸²à¸£\nมยุรฉัตร\nมยุระ\nมยุรา\nมยุรี\nมยุเรศ\nมยูร\nมรà¸à¸•\nมรคา\nมรฑป\nมรณ์\nมรณะ\nมรณà¸à¸£à¸£à¸¡\nมรณบัตร\nมรณภัย\nมรณภาพ\nมรดà¸\nมรรค\nมรรคา\nมรรตัย\nมรรยาท\nมรรษ\nมรสุม\nมริจ\nมริยาท\nมรีจิ\nมรุต\nมฤค\nมฤคย์\nมฤคศิระ\nมฤคศิรมาส\nมฤคเศียร\nมฤคินทร์\nมฤเคนทร์\nมฤดà¸\nมฤต\nมฤตยู\nมฤทุ\nมล\nมละ\nมลัà¸\nมลังเมลืà¸à¸‡\nมล้าง\nมลาย\nมลายู\nมวà¸\nม่วง\nมวน\nม่วน\nม้วน\nม้วนต้วน\nมวย\nม้วย\nมวล\nมหà¸à¸£à¸£à¸¡\nมหรณพ\nมหรรณพ\nมหรสพ\nมหัจฉริยะ\nมหัต\nมหัทธนะ\nมหันต์\nมหันตโทษ\nมหัพภาค\nมหัศจรรย์\nมหา\nมหาà¸à¸à¸´à¸™\nมหาà¸à¸²à¸¬\nมหาขันธà¸à¸°\nมหาจัà¸à¸£\nมหาชน\nมหาชัย\nมหาชาติ\nมหาโชตรัต\nมหาดไทย\nมหาดเล็à¸\nมหาตมะ\nมหาไถ่\nมหาเทพ\nมหาเทพี\nมหาเทวี\nมหาธาตุ\nมหานิà¸à¸²à¸¢\nมหานิล\nมหาบพิตร\nมหาบัณฑิต\nมหาพน\nมหาพรหม\nมหาภารตะ\nมหาภิเนษà¸à¸£à¸¡à¸“์\nมหาภูต\nมหาเมฆ\nมหายาน\nมหายุค\nมหาราช\nมหาฤà¸à¸©à¹Œ\nมหาละลวย\nมหาละลาย\nมหาวงศ์\nมหาวรรค\nมหาวิทยาลัย\nมหาศัà¸à¸£à¸²à¸Š\nมหาศาล\nมหาสงà¸à¸£à¸²à¸™à¸•à¹Œ\nมหาสดมภ์\nมหาสดำ\nมหาสมุทร\nมหาสาวà¸\nมหาหงส์\nมหาหิงคุ์\nมหาà¸à¸³à¸™à¸²à¸ˆ\nมหาà¸à¸¸à¸ˆ\nมหาà¸à¸¸à¸”\nมหาà¸à¸¸à¸›à¸£à¸²à¸à¸£\nมหาà¸à¸¸à¸›à¸£à¸²à¸Š\nมหิ\nมหิดล\nมหิธร\nมหิป\nมหิงส์\nมหิทธิ\nมหินท์\nมหิมา\nมหิศร\nมหิศวร\nมหิษ\nมหิษี\nมหึมา\nมเหยงค์\nมเหศ\nมเหศวร\nมเหศัà¸à¸”ิ์\nมเหสัà¸à¸‚์\nมเหสิ\nมเหสี\nมเหาฬาร\nมโหรสพ\nมโหระทึà¸\nมโหรี\nมโหฬาร\nมไหศวรรย์\nมà¸\nมà¸à¸‡\nมà¸à¸‡à¹‚à¸à¸¥à¸à¸¢à¸”์\nมà¸à¸‡à¹‚à¸à¹€à¸¥à¸µà¸¢\nมà¸à¸‡à¸„ร่à¸\nมà¸à¸\nมà¸à¸”\nม่à¸à¸•à¹‰à¸\nมà¸à¹€à¸•à¸à¸£à¹Œ\nมà¸à¹€à¸•à¸à¸£à¹Œà¹„ซค์\nมà¸à¸™\nม่à¸à¸™\nมà¸à¸š\nมà¸à¸¡\nมà¸à¸¡à¹à¸¡à¸¡\nม่à¸à¸¢\nมà¸à¸£à¹Œà¸Ÿà¸µà¸™\nมà¸à¸£à¸°à¸à¸¹à¹ˆ\nมà¸à¸¥à¹‚ทส\nม่à¸à¸¥à¸à¸à¸¡à¹ˆà¸à¹à¸¥à¸\nม่à¸à¸«à¹‰à¸à¸¡\nม่à¸à¸®à¹ˆà¸à¸¡\nมะ\nมะà¸à¸£à¸¹à¸”\nมะà¸à¸¥à¹ˆà¸³\nมะà¸à¸à¸\nมะà¸à¹ˆà¸à¸‡\nมะà¸à¸°à¹‚รนี\nมะà¸à¸²\nมะเà¸à¸¥à¸·à¸\nมะเà¸à¸µà¹‹à¸¢à¸‡\nมะข่วง\nมะขวิด\nมะขาม\nมะเขืà¸\nมะà¹à¸‚่น\nมะคังà¹à¸”ง\nมะค่า\nมะคำไà¸à¹ˆ\nมะคำดีควาย\nมะงั่ว\nมะงุมมะงาหรา\nมะซัà¸\nมะซาง\nมะดัน\nมะดีหวี\nมะดูà¸\nมะเดหวี\nมะเดื่à¸\nมะต้à¸à¸‡\nมะตะบะ\nมะตาด\nมะตาหะรี\nมะตึ่ง\nมะตื๋น\nมะตูม\nมะà¹à¸•à¸\nมะโต\nมะนาว\nมะปราง\nมะปริง\nมะà¸à¹ˆà¸\nมะพร้าว\nมะพลับ\nมะพูด\nมะà¹à¸žà¸™\nมะà¹à¸žà¸£à¹‰à¸§\nมะเฟืà¸à¸‡\nมะà¹à¸Ÿà¸™\nมะไฟ\nมะม่วง\nมะม่าว\nมะมี่\nมะมื่น\nมะมุด\nมะเมà¸\nมะเมีย\nมะเมื่à¸à¸¢\nมะà¹à¸¡\nมะยง\nมะยม\nมะระ\nมะริด\nมะรืน\nมะรุม\nมะรุมมะตุ้ม\nมะเร็ง\nมะเรื่à¸à¸‡\nมะโรง\nมะลà¸à¸à¸¡à¸°à¹à¸¥à¸\nมะละà¸à¸\nมะลิ\nมะลื่น\nมะลืมดำ\nมะลุลี\nมะà¹à¸§à¹‰à¸‡\nมะสัง\nมะเส็ง\nมะหวด\nมะหะหมัด\nมะหาด\nมะหิ่ง\nมะเหงà¸\nมะà¸à¸¶à¸\nมะฮà¸à¸à¸à¸²à¸™à¸µ\nมัà¸\nมัà¸à¸à¸°à¹‚รนี\nมัà¸à¸à¸°à¸¥à¸µà¸œà¸¥\nมัà¸à¸à¸°à¸ªà¸±à¸™\nมัà¸à¸‚ะ\nมั่à¸à¸‚ั้à¸\nมัà¸à¸‚ิà¸à¸²\nมัค\nมัคคะ\nมัคคุเทศà¸à¹Œ\nมัคนายà¸\nมัฆวาน\nมั่ง\nมังà¸à¸‡\nมังà¸à¸£\nมังà¸à¸¸\nมังคละ\nมังค่า\nมังคุด\nมังตาน\nมังสวิรัติ\nมังสะ\nมังสี\nมัจจะ\nมัจจุ\nมัจฉริยะ\nมัจฉรี\nมัจฉะ\nมัจฉา\nมัชชะ\nมัชวิรัติ\nมัชชาระ\nมัชฌันติà¸à¸ªà¸¡à¸±à¸¢\nมัชฌิม\nมัชฌิมา\nมัà¸à¸ˆà¸²\nมัà¸à¸Šà¸´à¸©à¸à¸²\nมัà¸à¸Šà¸¸\nมัà¸à¸Šà¸¸à¸ªà¸²\nมัà¸à¸Šà¸¹à¸ªà¸²\nมัà¸à¹€à¸Šà¸à¸à¸°\nมัà¸à¸à¸°\nมัณฑนศิลป์\nมัณฑนา\nมัด\nมัตตะ\nมัตตัà¸à¸à¸¹\nมัตตา\nมัตติà¸à¸²\nมัตถà¸à¸°\nมัตถลุงค์\nมัตสยะ\nมัตสยา\nมัตสระ\nมัตสริน\nมัททวะ\nมัทนะ\nมัทยะ\nมัธยà¸à¸²à¸™\nมัธยม\nมัธยันห์\nมัธยัสถ์\nมัน\nมั่น\nมันตา\nมันถะ\nมันทิระ\nมันทิราลัย\nมับ\nมั้ม\nมัมมี่\nมัย\nมัลละ\nมัลลิà¸à¸²\nมัว\nมัวซัว\nมั่ว\nมัศยา\nมัสตุ\nมัสตาร์ด\nมัสมั่น\nมัสยิด\nมัสรู่\nมัสลิน\nมัสสุ\nมา\nม้า\nมาà¸\nมาคสิระ\nมาฆบูชา\nมาฆะ\nม้าง\nมางสะ\nมาณพ\nมาณวิà¸à¸²\nมาด\nมาดา\nมาตงค์\nมาตร\nมาตรา\nมาตฤ\nมาตังคะ\nมาตา\nมาตามหัยà¸à¸°\nมาตามหัยà¸à¸²\nมาตามหัยยิà¸à¸²\nมาติà¸à¸°\nมาติà¸à¸²\nมาตุ\nมาตุจฉา\nมาตุรงค์\nมาตุเรศ\nมาตุละ\nมาตุลา\nมาตุลานี\nมาทะ\nมาธยมิà¸\nมาธยมิà¸à¸°\nมาธุระ\nมาธุสร\nมาธูระ\nมาน\nม่าน\nม้าน\nมานพ\nมานะ\nมานัต\nมานัส\nมานิต\nมานี\nมานุษ\nมานุษยวิทยา\nมาโนชà¸à¹Œ\nมาบ\nมาภา\nม้าม\nม่าย\nมายา\nมาร\nมาราธิราช\nมารค\nมารดร\nมารดา\nมารยา\nมารยาท\nมารศรี\nมารษา\nมาริต\nมารุต\nมาลย์\nมาลัย\nมาลา\nมาลาตี\nมาลาเรีย\nมาลินี\nมาลี\nมาลุต\nมาศ\nมาส\nมาสà¸\nมาห์\nม่าห์\nมาหิส\nม่าเหมี่ยว\nมาฬà¸\nมิ\nมิค\nมิคสัà¸à¸à¸µ\nมิ่ง\nมิจฉา\nมิด\nมิตร\nมิติ\nมิเตà¸à¸£à¹Œ\nมิถยา\nมิถุน\nมิถุนายน\nมิทธะ\nมินตรา\nมินตา\nมินหม้à¸\nมิ่ม\nมิ้ม\nมิไย\nมิรันตี\nมิลลิà¸à¸£à¸±à¸¡\nมิลลิบาร์\nมิลลิเมตร\nมิลลิลิตร\nมิลัà¸à¸‚ะ\nมิลัà¸à¸‚ู\nมิส\nมิสà¸à¸£à¸µ\nมิสà¸à¸§à¸±à¸™\nมิสซา\nมี\nมี่\nมีด\nมีเทน\nมีน\nมีนาคม\nมี่สั้ว\nมึง\nมึน\nมืด\nมืน\nมื่น\nมืà¸\nมื้à¸\nมุ\nมุà¸\nมุà¸à¸”า\nมุà¸à¸”าหาร\nมุà¸à¸¸à¸£à¸°\nมุข\nมุขเด็จ\nมุขยประโยค\nมุโขโลà¸à¸™à¸°\nมุคคะ\nมุง\nมุ่ง\nมุ้ง\nมุจฉา\nมุจนะ\nมุจลินท์\nมุà¸à¸ˆà¸™à¸°\nมุà¸à¸Šà¸°\nมุà¸à¸´\nมุณฑà¸à¸°\nมุณฑะ\nมุด\nมุตà¸à¸´à¸”\nมุตฆาต\nมุตตะ\nมุตตา\nมุตติ\nมุตะ\nมุติ\nมุททา\nมุทธชะ\nมุทธา\nมุทธาภิเษà¸\nมุทรา\nมุทริà¸à¸²\nมุทะลุ\nมุทา\nมุทิà¸à¸²\nมุทิงค์\nมุทิตา\nมุทุ\nมุทุตา\nมุ่น\nมุนิ\nมุนินทร์\nมุนี\nมุบ\nมุบมิบ\nมุม\nมุ้ม\nมุ่ย\nมุรธา\nมุรธาภิเษà¸\nมุสละ\nมุสลิม\nมุสา\nมุสิà¸\nมุหงิด\nมุหน่าย\nมุหุต\nมุฮัมมัด\nมูà¸\nมูเซà¸\nมูตร\nมู่ทู่\nมูน\nมูมมาม\nมูรติ\nมูรธา\nมูรธาภิเษà¸\nมูล\nมูละ\nมูลา\nมูลิà¸à¸²à¸à¸£\nมู่ลี่\nมู่เล่\nมูสัง\nมูสิà¸\nมูสิà¸à¸°\nมูสิà¸à¸—ันต์\nเม\nเม็à¸\nเมà¸à¸°à¹€à¸®à¸´à¸£à¸•à¸‹à¹Œ\nเมขลา\nเมฆ\nเมฆา\nเมฆินทร์\nเมฆี\nเม็ง\nเม็ด\nเมตตา\nเมตไตรย\nเมตร\nเมตริà¸\nเมตริà¸à¸•à¸±à¸™\nเมถุน\nเมท\nเมโท\nเมทนี\nเมทินี\nเมทนีดล\nเมทานà¸à¸¥\nเมทิลà¹à¸à¸¥à¸à¸à¸®à¸à¸¥à¹Œ\nเมธ\nเมธา\nเมธาวี\nเมธี\nเมน\nเม่น\nเม้น\nเมนเดลีเวียม\nเมนทà¸à¸¥\nเม้ม\nเมรัย\nเมริเดียน\nเมรุ\nเมล์\nเมล็ด\nเมลืà¸à¸‡\nเมษ\nเมษายน\nเมห์\nเมหนะ\nเมหะ\nเมะ\nเมา\nเม่า\nเม้า\nเมารี\nเมาลี\nเมาฬี\nเมาะ\nเมิง\nเมิน\nเมิล\nเมีย\nเมียง\nเมี่ยง\nเมี้ยน\nเมืà¸\nเมื้à¸\nเมื่à¸\nเมืà¸à¸\nเมืà¸à¸‡\nเมืà¸à¸š\nเมื่à¸à¸¢\nà¹à¸¡à¹ˆ\nà¹à¸¡à¹‰\nà¹à¸¡à¸\nà¹à¸¡à¸à¸™à¸µà¹€à¸‹à¸µà¸¢à¸¡\nà¹à¸¡à¸‡\nà¹à¸¡à¸‡à¸à¸°à¸žà¸£à¸¸à¸™\nà¹à¸¡à¸‡à¸à¸²à¸™à¸´à¸™\nà¹à¸¡à¸‡à¸à¸²à¸™à¸µà¸ª\nà¹à¸¡à¸‡à¸„า\nà¹à¸¡à¸‡à¸„าเรืà¸à¸‡\nà¹à¸¡à¸‡à¸Šà¹‰à¸²à¸‡\nà¹à¸¡à¸‡à¸”า\nà¹à¸¡à¸‡à¸¥à¸±à¸\nà¹à¸¡à¹ˆà¸•à¸°à¸‡à¸²à¸§\nà¹à¸¡à¸™\nà¹à¸¡à¹ˆà¸™\nà¹à¸¡à¹‰à¸™\nà¹à¸¡à¸¥à¸‡\nà¹à¸¡à¸¥à¸š\nà¹à¸¡à¸§\nà¹à¸¡à¹‰à¸§\nà¹à¸¡à¸°\nโม\nโม่\nโม้\nโมà¸\nโมà¸à¸‚์\nโมà¸à¸©à¸°\nโมฆà¸à¸£à¸£à¸¡\nโมฆสัà¸à¸à¸²\nโมฆะ\nโมฆียà¸à¸£à¸£à¸¡\nโมฆียะ\nโมง\nโม่ง\nโมงครุ่ม\nโมทนา\nโมโนà¹à¸‹à¹‡à¸à¸„าไรด์\nโมไนย\nโมเม\nโมเมนต์\nโมเย\nโมรา\nโมรี\nโมเรส\nโมลิบดีนัม\nโมลี\nโมเลà¸à¸¸à¸¥\nโมเสà¸\nโมเสส\nโม่ห์\nโมหะ\nโมหันธ์\nโมหาคติ\nโมโห\nไม่\nไม้\nไมà¸à¸²\nไมครà¸à¸™\nไมโครà¸à¸£à¸±à¸¡\nไมโครฟิล์ม\nไมโครโฟน\nไมโครมิเตà¸à¸£à¹Œ\nไมโครเมตร\nไมโครลิตร\nไมโครเวฟ\nไมตรี\nไมยราบ\nไมล์\nยà¸\nยà¸à¸à¸£à¸°à¸šà¸±à¸•à¸£\nยà¸à¸™à¸°\nยง\nยงโย่\nยชุรเวท\nยติ\nยติภังค์\nยถาà¸à¸£à¸£à¸¡\nยถาภูตà¸à¸²à¸“\nย่น\nยนต์\nยนตร์\nยม\nยมà¸\nยมโดย\nยมนา\nยมล\nยมะ\nยรรยง\nยล\nยวง\nยวด\nยวน\nยวบ\nย้วย\nยวรยาตร\nยศ\nยโส\nยà¸\nย่à¸\nยà¸à¸\nย็à¸à¸à¹à¸¢à¹‡à¸\nยà¸à¸‡\nย่à¸à¸‡\nย้à¸à¸‡\nยà¸à¸”\nยà¸à¸™\nย้à¸à¸™\nยà¸à¸š\nยà¸à¸¡\nย่à¸à¸¡\nย้à¸à¸¡\nย่à¸à¸¢\nย้à¸à¸¢\nย้à¸à¹à¸¢à¹‰\nยะ\nย่ะ\nยะยà¸à¸š\nยะยับ\nยัà¸\nยัà¸à¸‚์\nยัà¸à¸‚ินี\nยัà¸à¸©à¹Œ\nยัà¸à¸©à¸²\nยัà¸à¸©à¸´à¸“ี\nยัà¸à¸©à¸µ\nยัง\nยั้ง\nยั่งยืน\nยัชโà¸à¸›à¸§à¸µà¸•\nยัà¸\nยัà¸à¸à¸°\nยัด\nยัติภังค์\nยัน\nยั่น\nยันต์\nยันตร\nยันตร์\nยันตรà¸à¸£à¸£à¸¡\nยั่นตะนี\nยับ\nยั่ว\nยั้ว\nยั้วเยี้ย\nยัวรยาตร\nยัวะ\nยัษà¸à¸´\nยา\nย่า\nยาà¸\nยาคุ\nยาคู\nยาง\nย่าง\nยางพารา\nยาจà¸\nยาจนา\nยาไฉน\nยาด\nยาดา\nยาตร\nยาตรา\nยาน\nย่าน\nย่านพาโหม\nยานมาศ\nยานุมาศ\nยานี\nยาม\nย่าม\nยามะ\nยามัà¸à¸à¸²à¸£\nยามา\nยาย\nย้าย\nยายี\nยาว\nย้าว\nยาวà¸à¸²à¸¥à¸´à¸\nยาวชีวิà¸\nยาสูบ\nย่าหยา\nยาหยี\nยำ\nย่ำ\nย้ำ\nยำเยีย\nยิà¸\nยิง\nยิ่ง\nยิà¸à¸à¸°\nยิน\nยิบ\nยิบหยี\nยิปซัม\nยิปซี\nยิ้ม\nยิมนาสติà¸\nยิหวา\nยี\nยี่\nยี้\nยี่à¸à¹ˆà¸²\nยี่เà¸\nยี่เข่ง\nยี่โถ\nยีน\nยี่โป้\nยี่ภู่\nยีราฟ\nยี่สà¸\nยี่สง\nยี่สน\nยี่สาน\nยี่สุ่น\nยี่หระ\nยี่หร่า\nยี่ห้à¸\nยี่หุบ\nยึà¸à¸¢à¸±à¸\nยึà¸à¸¢à¸·à¸\nยึด\nยืด\nยืน\nยื่น\nยืม\nยื้à¸\nยุ\nยุà¸à¸à¸£à¸°à¸šà¸±à¸•à¸£\nยุà¸à¸”ิ\nยุà¸à¸•à¸´\nยุà¸à¸•à¸´à¸˜à¸£à¸£à¸¡\nยุà¸à¸•à¹Œ\nยุค\nยุคนธร\nยุคล\nยุคันต์\nยุคันธร\nยุคุนธร\nยุง\nยุ่ง\nยุ้ง\nยุด\nยุต\nยุติ\nยุทธ\nยุทธ์\nยุทธนา\nยุทโธปà¸à¸£à¸“์\nยุบ\nยุ่บ\nยุ่บยั่บ\nยุบล\nยุพดี\nยุพเรศ\nยุพา\nยุพาน\nยุพาพาล\nยุพาพิน\nยุ่มย่าม\nยุ่ย\nยุ้ย\nยุรยาตร\nยูรยาตร\nยุวชน\nยุวดี\nยุวราช\nยุวา\nยุวาน\nยู\nยู่\nยูง\nยูโด\nยูถะ\nยูถิà¸à¸²\nยูริà¸\nยูเรนัส\nยูเรเนียม\nยูโรเพียม\nเย\nเย้\nเยง\nเยซู\nเย็ด\nเย็น\nเย็นตาโฟ\nเย็นเตาโฟ\nเย็บ\nเย้ย\nเยà¸\nเย่à¸\nเยà¸à¸£à¸¡à¸±à¸™\nเยà¸à¸§\nเย่à¸à¸«à¸¢à¸´à¹ˆà¸‡\nเยà¸à¸°\nเยà¸à¸°à¹à¸¢à¸°\nเยา\nเย้า\nเยาว์\nเยาวชน\nเยาวมาลย์\nเยาวยà¸à¸”\nเยาวราช\nเยาวเรศ\nเยาวลัà¸à¸©à¸“์\nเยาวพา\nเยาวพาณี\nเยาวพาน\nเยาะ\nเยิง\nเยิน\nเยิ่น\nเยิ่นเย้à¸\nเยินยà¸\nเยิบ\nเยิบยาบ\nเยิ้ม\nเยีย\nเยี่ยง\nเยี่ยงà¸à¸¢à¹ˆà¸²à¸‡\nเยียงผา\nเยียดยัด\nเยียน\nเยียบ\nเยี่ยม\nเยียรบับ\nเยียรยง\nเยียว\nเยี่ยว\nเยียวยา\nเยืà¸\nเยื่à¸\nเยื้à¸\nเยืà¸à¸\nเยืà¸à¸‡\nเยื่à¸à¸‡\nเยื้à¸à¸‡\nเยืà¸à¸™\nเยื้à¸à¸™\nà¹à¸¢à¹ˆ\nà¹à¸¢à¹‰\nà¹à¸¢à¸\nà¹à¸¢à¸‡\nà¹à¸¢à¹ˆà¸‡\nà¹à¸¢à¹‰à¸‡\nà¹à¸¢à¸‡à¹à¸¢à¹ˆ\nà¹à¸¢à¸‡à¹à¸¢à¹‰\nà¹à¸¢à¸š\nà¹à¸¢à¹‡à¸š\nà¹à¸¢à¸¡\nà¹à¸¢à¹‰à¸¡\nà¹à¸¢à¹à¸ª\nà¹à¸¢à¸°\nโย\nโย้\nโยà¸\nโยà¸à¹€à¸¢à¸\nโยคาพจร\nโยคาวจร\nโยคเà¸à¸“ฑ์\nโยคยะ\nโยคะ\nโยคิน\nโยคี\nโยง\nโย่ง\nโย่งเย่ง\nโยงโย่\nโยชน์\nโยชนา\nโยถิà¸à¸°\nโยทะà¸à¸²\nโยธวาทิต\nโยธา\nโยธิน\nโยน\nโยนà¸\nโยนิโส\nโยนี\nโยม\nโยโส\nใย\nไย\nไย่\nไยดี\nไยไพ\nรà¸\nรง\nรงค์\nรงควัตถุ\nรงรà¸à¸‡\nรจนา\nรจเรข\nรจเลข\nรจิต\nรชตะ\nรชนิ\nรชนี\nรชะ\nรณรงค์\nรด\nรดี\nรตนะ\nรตะ\nรติ\nรถ\nรน\nร่น\nรบ\nรบาà¸\nรพี\nรม\nร่ม\nรมณี\nรมณีย์\nรมณียสถาน\nรมย์\nรมเยศ\nรยางค์\nรวà¸\nรวง\nร่วง\nรวด\nรวน\nรวนเร\nร่วน\nรวบ\nรวม\nร่วม\nรวย\nรวิ\nรวิวาร\nรวี\nรศนา\nรส\nรสนา\nรสสุคนธ์\nรสายนเวท\nรสิà¸\nรหัท\nรหัส\nรโห\nรโหà¸à¸²à¸™\nรà¸\nร่à¸\nรà¸à¸\nรà¸à¸‡\nร่à¸à¸‡\nร้à¸à¸‡\nรà¸à¸‡à¹€à¸‡à¹‡à¸‡\nร่à¸à¸‡à¹à¸£à¹ˆà¸‡\nรà¸à¸”\nรà¸à¸™\nร่à¸à¸™\nร้à¸à¸™\nรà¸à¸š\nรà¸à¸šà¸„à¸à¸š\nรà¸à¸¡\nรà¸à¸¡à¸Šà¸à¸¡\nรà¸à¸¡à¸£à¹ˆà¸\nรà¸à¸¢\nร่à¸à¸¢\nร้à¸à¸¢\nร่à¸à¹à¸£à¹ˆ\nระ\nระà¸à¸°\nระà¸à¸²\nระà¸à¸³\nระเà¸à¸°à¸£à¸°à¸à¸°\nระคน\nระคาง\nระคาย\nระà¹à¸„ะ\nระฆัง\nระงม\nระงับ\nระà¹à¸‡à¹‰\nระโงà¸à¸«à¸´à¸™\nระชวย\nระดม\nระดะ\nระดับ\nระดา\nระด่าว\nระดู\nระเด่น\nระเดียง\nระà¹à¸”\nระตู\nระทà¸\nระทด\nระทม\nระทวย\nระทา\nระทึà¸\nระà¹à¸—ะ\nระนาด\nระนาบ\nระนาม\nระนาว\nระเนน\nระเนระนาด\nระเนียด\nระà¹à¸™à¸‡\nระà¹à¸™à¸°\nระบบ\nระบม\nระบà¸à¸š\nระบัด\nระบับ\nระบาด\nระบาย\nระบำ\nระบิล\nระบืà¸\nระบุ\nระเบง\nระเบ็ง\nระเบิด\nระเบียง\nระเบียน\nระเบียบ\nระà¹à¸šà¸š\nระมัดระวัง\nระมาด\nระเมียร\nระย่à¸\nระย่à¸à¸¡\nระยะ\nระยั้ง\nระยับ\nระย้า\nระยาบ\nระยำ\nระยิบระยับ\nระโยง\nระโยงระยาง\nระรวย\nระรà¸à¸‡\nระร่à¸à¸™\nระรัว\nระราน\nระร่าย\nระริà¸\nระรี่\nระรึง\nระรื่น\nระรื้น\nระเร้ง\nระเริง\nระเรียง\nระเรื่à¸à¸¢\nระà¹à¸£à¸‡\nระลวง\nระลà¸à¸\nระลึà¸\nระวัง\nระวาง\nระวาย\nระวิง\nระà¹à¸§à¸‡\nระà¹à¸§à¸”ระวัง\nระไว\nระส่ำระสาย\nระหà¸à¸£à¸°à¹€à¸«à¸´à¸™\nระหง\nระหวย\nระหว่าง\nระหà¸à¸‡à¸£à¸°à¹à¸«à¸‡\nระหัด\nระหาย\nระเห็จ\nระเหย\nระเหระหน\nระเหหน\nระเหิด\nระเหินระหà¸\nระà¹à¸«à¸‡\nระโหย\nระà¸à¸²\nระà¸à¸´à¸”ระà¸à¸²\nระà¸à¸¸\nรัà¸\nรัà¸à¸‚์\nรัà¸à¸‚ิต\nรัà¸à¸•à¸°\nรัà¸à¸šà¸µà¹‰\nรัà¸à¹€à¸£à¹ˆ\nรัà¸à¹à¸£à¹‰\nรัà¸à¸©à¹Œ\nรัà¸à¸©à¸²\nรัง\nรั้ง\nรังเà¸à¸µà¸¢à¸ˆ\nรังà¹à¸\nรังค์\nรังควาน\nรังà¹à¸„\nรังรà¸à¸‡\nรังวัด\nรังสิ\nรังสี\nรังสิมันตุ์\nรังสิมา\nรัจฉา\nรัช\nรัชชูปà¸à¸²à¸£\nรัชมังคลาภิเษà¸\nรัชชุ\nรัชฎาภิเษà¸\nรัชดาภิเษà¸\nรัชนะ\nรัชนี\nรัà¸à¸ˆà¸§à¸™\nรัà¸à¸à¸²à¸ ิปาลโนบาย\nรัà¸\nรัà¸à¸›à¸£à¸°à¸¨à¸²à¸ªà¹‚นบาย\nรัà¸à¸›à¸£à¸°à¸¨à¸²à¸ªà¸™à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nรัด\nรัต\nรัตà¸à¸±à¸¡à¸žà¸¥\nรัตมณี\nรัตคน\nรัตจันทน์\nรัตตัà¸à¸à¸¹\nรัตติ\nรัตน์\nรัตนะ\nรัตนโà¸à¸ªà¸´à¸™à¸—ร์\nรัตนโà¸à¸ªà¸´à¸™à¸—รศà¸\nรัตนชาติ\nรัตนตรัย\nรัตนบัลลังà¸à¹Œ\nรัตนวราภรณ์\nรัตนสิงหาสน์\nรัตนา\nรัตนาà¸à¸£\nรัตนาภรณ์\nรัตนาวลี\nรัตมา\nรัถ\nรัถยา\nรัทเทà¸à¸£à¹Œà¸Ÿà¸à¸£à¹Œà¹€à¸”ียม\nรัน\nรั้น\nรันทด\nรันทวย\nรับ\nรัมณียสถาน\nรัมภา\nรัมมี่\nรัมย์\nรัย\nรัว\nรั่ว\nรั้ว\nรัศมิมัต\nรัศมิมาน\nรัศมี\nรัษฎาà¸à¸£\nรัสเซีย\nรัสสะ\nรัสสระ\nรา\nร่า\nร้า\nราà¸\nราà¸à¸©à¸ª\nราà¸à¸ªà¸²à¸”\nราคะ\nราคจริต\nราคา\nราคิน\nราคี\nราง\nร่าง\nร้าง\nรางจืด\nรางชาง\nรางวัล\nราช\nราชà¸à¸´à¸ˆà¸ˆà¸²à¸™à¸¸à¹€à¸šà¸à¸©à¸²\nราชนิà¸à¸¸à¸¥\nราชวโรงà¸à¸²à¸£\nราชà¸à¸µ\nราชดัด\nราชพฤà¸à¸©à¹Œ\nราชมาณพ\nราชมาษ\nราชมาส\nราชย์\nราชสีห์\nราชะ\nราชัน\nราชันย์\nราชัย\nราชา\nราชาธิปไตย\nราชาธิราช\nราชาภิเษà¸\nราชายตนะ\nราชาวดี\nราชี\nราชินิà¸à¸¸à¸¥\nราชินีà¸à¸¸à¸¥\nราชินี\nราชินูปถัมภ์\nราชูปถัมภ์\nราชูปโภค\nราเชน\nราเชนทร์\nราเชนทรยาน\nราโชวาท\nราไชศวรรย์\nราà¸\nราà¸à¸£à¸à¸™\nราด\nราต\nราตร\nราตรี\nราน\nร่าน\nร้าน\nราบ\nราพณ์\nราพณาสูร\nราม\nรามเà¸à¸µà¸¢à¸£à¸•à¸´à¹Œ\nรามสูร\nรามัà¸\nรามา\nราย\nร่าย\nร้าย\nราว\nร้าว\nราวี\nราศี\nราษฎร\nราษฎร์\nราษตรี\nราษราตรี\nราหุ\nราหู\nรำ\nร่ำ\nรำคาà¸\nรำงับ\nรำจวน\nรำบาà¸\nรำพัน\nรำพาย\nรำพึง\nรำเพย\nรำไพ\nรำมะนา\nรำมะนาด\nรำมะร่à¸\nร่ำรวย\nร่ำร่ำ\nรำไร\nรำลึà¸\nรำหัด\nรำหัส\nริ\nริà¸\nริดสีดวง\nริน\nริ้น\nริบ\nริบบิ้น\nริบรี่\nริบหรี่\nริปุ\nริปู\nริม\nริ้ว\nริษยา\nรี\nรี่\nรี้พล\nรีด\nรีดัà¸à¸Šà¸±à¸™\nรีต\nรีเนียม\nรีบ\nรีม\nรีรà¸\nรี้ริà¸\nรึง\nรึ้ง\nรื่น\nรื้น\nรื้à¸\nรุ\nรุà¸\nรุà¸à¸‚์\nรุà¸à¸‚ชาติ\nรุà¸à¸‚เทวดา\nรุà¸à¸‚มูล\nรุà¸à¸‚า\nรุà¸à¸£à¸¸à¸¢\nรุ่ง\nรุ้ง\nรุงรัง\nรุ่งริ่ง\nรุจ\nรุจา\nรุจนะ\nรุจิ\nรุจี\nรุจิระ\nรุจิรา\nรุด\nรุต\nรุทธ์\nรุทระ\nรุธิร\nรุธิระ\nรุเธียร\nรุน\nรุ่น\nรุบรู่\nรุม\nรุ่ม\nรุ่มร่าม\nรุย\nรุ่ย\nรุรุ\nรุหะ\nรู\nรู่\nรู้\nรูจี\nรูด\nรูทีเนียม\nรูบิเดียม\nรูป\nรูปิยะ\nรูปี\nรูเล็ตต์\nเร่\nเรข\nเรขา\nเรขาคณิต\nเร็ง\nเร่ง\nเร้ง\nเรณุ\nเรณู\nเรดà¸à¸™\nเรดาร์\nเรเดียม\nเร้น\nเรรวน\nเรไร\nเร็ว\nเร่ว\nเรวดี\nเรà¸\nเร่à¸\nเรา\nเร่า\nเร้า\nเราะ\nเริง\nเริด\nเริม\nเริ่ม\nเริ้ม\nเริศร้าง\nเรี่ย\nเรี้ย\nเรียà¸\nเรียง\nเรียด\nเรียน\nเรียบ\nเรียม\nเรี่ยม\nเรียว\nเรี่ยว\nเรี้ยวรà¸\nเรืà¸\nเรื่à¸\nเรื้à¸\nเรืà¸à¸\nเรืà¸à¸‡\nเรื่à¸à¸‡\nเรื้à¸à¸‡\nเรืà¸à¸‡à¸£à¸à¸‡\nเรืà¸à¸”\nเรืà¸à¸™\nเรื้à¸à¸™\nเรื่à¸à¸¢\nà¹à¸£\nà¹à¸£à¹ˆ\nà¹à¸£à¸\nà¹à¸£à¹‡à¸à¹€à¸à¸•\nà¹à¸£à¸‡\nà¹à¸£à¹ˆà¸‡\nà¹à¸£à¹‰à¸‡\nà¹à¸£à¸”\nà¹à¸£à¹‰à¸™à¹à¸„้น\nà¹à¸£à¸¡\nà¹à¸£à¹‰à¸§\nà¹à¸£à¸°\nโร\nโร่\nโรค\nโรคา\nโรคาพาธ\nโรง\nโรจ\nโรจน์\nโรเดียม\nโรตี\nโรท\nโรธ\nโรม\nโรมัน\nโรเมà¸à¸£à¹Œ\nโรย\nโรเร\nโรหิณี\nโรหิต\nไร\nไร่\nไร้\nไรย์\nฤà¸à¸©à¹Œ\nฤà¸à¸©à¸“ะ\nฤคเวท\nฤชา\nฤชุ\nฤณ\nฤดี\nฤดียา\nฤดู\nฤต\nฤติยา\nฤตุ\nฤทธา\nฤทธิ์\nฤทัย\nฤษภ\nฤษยา\nฤษี\nฤๅ\nฤๅดี\nฤๅทัย\nฤๅษี\nฤๅสาย\nลà¸\nล่à¸\nลฆุ\nลง\nล่ง\nลงà¸à¸²\nล้งเล้ง\nลด\nลดา\nลดาวัลย์\nลน\nล้น\nลบ\nลบà¸à¸‡\nลพ\nลพุช\nลม\nล่ม\nล้ม\nลมาด\nลรรลุง\nลลนา\nลลิต\nลวà¸\nลวง\nล่วง\nล้วง\nลวณะ\nลวด\nล้วน\nลวนลาม\nลวนะ\nล่วม\nลวะ\nลวิตร\nลหุ\nลหุà¸à¸²à¸šà¸±à¸•à¸´\nล่à¸\nล้à¸\nลà¸à¸\nล็à¸à¸\nล็à¸à¸à¹€à¸à¸•\nลà¸à¸à¹à¸¥à¸\nลà¸à¸à¸²à¸£à¸´à¸—ึม\nลà¸à¸‡\nล่à¸à¸‡\nลà¸à¸‡à¸à¸à¸‡\nลà¸à¸‡à¸ˆà¸´à¸ˆà¸¹à¸”\nลà¸à¸‡à¹„น\nลà¸à¸”\nลà¸à¸•à¹€à¸•à¸à¸£à¸µà¹ˆ\nลà¸à¸™\nล่à¸à¸™\nลà¸à¸š\nลà¸à¸¡\nล้à¸à¸¡\nลà¸à¸¡à¸Šà¸à¸¡\nลà¸à¸¡à¸žà¸à¸\nลà¸à¸¢\nล่à¸à¸¢\nล่à¸à¹à¸¥à¹ˆ\nลà¸à¸§à¹Œà¹€à¸£à¸™à¹€à¸‹à¸µà¸¢à¸¡\nลà¸à¸\nละ\nล่ะ\nละคร\nละติจูด\nละบม\nละบà¸à¸‡\nละบืà¸\nละเบ็ง\nละโบม\nละม่à¸à¸¡\nละมั่ง\nละมาน\nละม้าย\nละมุ\nละมุด\nละมุน\nละเมà¸\nละเมาะ\nละเมิด\nละเมียด\nละà¹à¸¡à¸°\nละโมà¸\nละโมบ\nละไม\nละลวย\nละลà¸à¸\nละล้า\nละล้าละลัง\nละลาน\nละลาบละล้วง\nละลาย\nละล้าว\nละล่ำละลัà¸\nละลิบ\nละลุม\nละเลง\nละเล้า\nละเลาะ\nละเลิง\nละเลียด\nละเลียบ\nละไล้\nละว้า\nละวาด\nละเวง\nละà¹à¸§à¸\nละโว้\nละหมาด\nละห้à¸à¸¢\nละหาน\nละหาร\nละหุ่ง\nละเหย\nละเหี่ย\nละà¸à¸‡\nละà¸à¸à¸‡\nละà¸à¸²à¸¢\nละเà¸à¸µà¸¢à¸”\nละà¹à¸à¸™\nลัà¸\nลัà¸à¸‚ณะ\nลัà¸à¸‚ณา\nลัà¸à¸‚ะ\nลัà¸à¸‚ี\nลัà¸à¸ˆà¸±à¹ˆà¸™\nลัà¸à¸›à¸´à¸”ลัà¸à¹€à¸›à¸´à¸”\nลัà¸à¸©à¸“์\nลัà¸à¸©à¸“นาม\nลัà¸à¸©à¸“ะ\nลัà¸à¸©à¸“าà¸à¸²à¸£\nลัà¸à¸©à¸¡à¸“์\nลัà¸à¸©à¸¡à¸²à¸“า\nลัà¸à¸©à¸¡à¸µ\nลัà¸à¸©à¸°\nลัคคะ\nลัคน์\nลัคนา\nลัง\nลั่ง\nลังà¸à¸²\nลังคี\nลังถึง\nลังลà¸à¸‡\nลังเล\nลังสาด\nลัชชา\nลัชชี\nลัà¸à¸ˆà¹Œ\nลัà¸à¸ˆà¸à¸£\nลัà¸à¸‰à¸à¸£\nลัà¸à¸‰à¸™à¹Œ\nลัà¸à¸´\nลัà¸à¸´à¸à¸²\nลัด\nลัดา\nลัทธ์\nลัทธิ\nลัน\nลั่น\nลันเต\nลันเตา\nลันไต\nลั่นทม\nลันโทม\nลับ\nลัพธ์\nลัพธิ\nลัภ\nลัภนะ\nลัภย์\nลัมพ์\nลัย\nลา\nล่า\nล้า\nลาà¸\nลาง\nล่าง\nล้าง\nลางลิง\nลางสาด\nลาช\nลาชะ\nลาชา\nลาà¸\nลาด\nลาดเลา\nล้าต้า\nล่าเตียง\nลาน\nล่าน\nล้าน\nลาบ\nลาพà¸à¸™\nลาภ\nลาม\nล่าม\nลามà¸\nลาย\nล้าย\nลายสืà¸\nลาลา\nลาว\nลาวัณย์\nลาวา\nลำ\nล่ำ\nล้ำ\nลำเข็à¸\nลำà¹à¸‚\nลำเค็à¸\nลำเจียà¸\nลำดวน\nลำดับ\nลำเนา\nลำบà¸à¸‡\nลำบาà¸\nลำปำ\nลำพวน\nลำพà¸à¸‡\nลำพัง\nลำพู\nลำเพ็à¸\nลำเพา\nลำà¹à¸žà¸™\nลำโพง\nลำไพ่\nลำภุขัน\nลำมะลà¸à¸\nลำยà¸à¸‡\nลำไย\nลำลà¸à¸‡\nล่ำลา\nลำลาบ\nลำลึà¸\nลำเลาะ\nลำเลิà¸\nลำเลียง\nลำเวียง\nลำเà¸à¸µà¸¢à¸\nลำเà¸à¸µà¸¢à¸‡\nลิ\nลิà¸à¸‚า\nลิà¸à¹„นต์\nลิà¸à¸¹\nลิเà¸\nลิขนะ\nลิขสิทธิ์\nลิขิต\nลิง\nลิงค์\nลิด\nลิต\nลิตมัส\nลิตร\nลิเทียม\nลิ่น\nลิ้น\nลินจง\nลิ้นจี่\nลินลา\nลินสีด\nลิ่นฮื้à¸\nลินิน\nลิบ\nลิปดา\nลิปสติà¸\nลิปิ\nลิฟต์\nลิเภา\nลิ่ม\nลิ้ม\nลิมป์\nลิมปนะ\nลิลิต\nลิว\nลิ่ว\nลิสง\nลี\nลี่\nลี้\nลีซà¸\nลีบ\nลีลา\nลีลาศ\nลีฬหา\nลึà¸\nลึงค์\nลืด\nลื่น\nลื้น\nลืบ\nลืม\nลืà¸\nลื่à¸\nลื้à¸\nลุ\nลุà¸\nลุง\nลุ้ง\nลุ่น\nลุ้น\nลุพธ์\nลุ่ม\nลุมพี\nลุมพู\nลุย\nลุ่ย\nลุ้ย\nลู่\nลูà¸\nลูà¸à¸£à¸°à¸¡à¸²à¸¨\nลูà¸à¹€à¸à¹‡à¸™\nลูขะ\nลูทีเชียม\nลูบ\nเลà¸\nเล็à¸\nเลข\nเลขา\nเลขาธิà¸à¸²à¸£\nเลขานุà¸à¸²à¸£\nเล็ง\nเล้ง\nเล่งฮื้à¸\nเลเซà¸à¸£à¹Œ\nเลฑฑุ\nเลณฑุ\nเลณะ\nเล็ด\nเลน\nเล็น\nเล่น\nเลนส์\nเล็บ\nเลบง\nเลปà¸à¸£\nเลปน์\nเลเป\nเลเพ\nเล็ม\nเล่ม\nเลย\nเลว\nเลวง\nเลวูโลส\nเลศ\nเลษà¸à¸¸\nเล่ห์\nเล่ห์à¸à¸£à¸°à¹€à¸—่ห์\nเลหลัง\nเลหะ\nเลà¸\nเล่à¸\nเลà¸à¸°\nเลà¸à¸°à¹€à¸—à¸à¸°\nเละ\nเละเทะ\nเลา\nเล่า\nเล้า\nเลาà¸à¸±à¸¢\nเล้าโลม\nเลาะ\nเลิà¸\nเลิ่à¸à¸¥à¸±à¹ˆà¸\nเลิง\nเลิ้ง\nเลินเล่à¸\nเลิศ\nเลีย\nเลียง\nเลี่ยง\nเลี้ยง\nเลียงผา\nเลียงà¸à¹‰à¸²à¸¢\nเลียงมัน\nเลียน\nเลี่ยน\nเลียนไฟ\nเลียบ\nเลี่ยม\nเลียว\nเลี้ยว\nเลืà¸à¸\nเลืà¸à¸‡\nเลื่à¸à¸‡\nเลืà¸à¸”\nเลืà¸à¸™\nเลื่à¸à¸™\nเลื่à¸à¸¡\nเลื่à¸à¸¢\nเลื้à¸à¸¢\nเลื่à¸à¸¢à¸¥à¹‰à¸²\nà¹à¸¥\nà¹à¸¥à¹ˆ\nà¹à¸¥à¹‰\nà¹à¸¥à¸\nà¹à¸¥à¹‡à¸à¹€à¸à¸à¸£à¹Œ\nà¹à¸¥à¹‡à¸à¹‚ทส\nà¹à¸¥à¸‡\nà¹à¸¥à¹ˆà¸‡\nà¹à¸¥à¹‰à¸‡\nà¹à¸¥à¸™\nà¹à¸¥à¹ˆà¸™\nà¹à¸¥à¸™à¸—านัม\nà¹à¸¥à¸š\nà¹à¸¥à¹‰à¸§\nà¹à¸¥à¸°\nโล่\nโล้\nโลà¸\nโลà¸à¹€à¸Šà¸©à¸à¹Œ\nโลà¸à¸˜à¸£à¸£à¸¡\nโลà¸à¸˜à¸²à¸•à¸¸\nโลà¸à¸™à¸²à¸–\nโลà¸à¸šà¸²à¸¥\nโลà¸à¸¢à¹Œ\nโลà¸à¸±à¸¢\nโลà¸à¸§à¸±à¸Šà¸Šà¸°\nโลà¸à¸§à¸´à¸—ู\nโลà¸à¸±à¸•à¸–จริยา\nโลà¸à¸±à¸™à¸•à¸£à¹Œ\nโลà¸à¸²\nโลà¸à¸²à¸˜à¸´à¸šà¸”ี\nโลà¸à¸²à¸˜à¸´à¸›à¹„ตย\nโลà¸à¸²à¸™à¸¸à¸§à¸±à¸•à¸£\nโลà¸à¸²à¸ ิวัตน์\nโลà¸à¸²à¸¡à¸´à¸ª\nโลà¸à¸²à¸¢à¸±à¸•\nโลà¸à¸²à¸§à¸´à¸™à¸²à¸¨\nโลà¸à¸´à¸¢à¸°\nโลà¸à¸µà¸¢à¹Œ\nโลà¸à¸µà¸¢à¸§à¸±à¸•à¸£\nโลà¸à¸µà¸¢à¸§à¸´à¸ªà¸±à¸¢\nโลà¸à¸µà¸¢à¸ªà¸¸à¸‚\nโลà¸à¸¸à¸•à¸£à¸°\nโลà¸à¸¸à¸•à¸£à¸˜à¸£à¸£à¸¡\nโลà¸à¸¸à¸•à¸£à¸ ูมิ\nโลง\nโล่ง\nโล้ง\nโล่งโจ้ง\nโล่งโต้ง\nโล้งโต้ง\nโลจนะ\nโลณะ\nโลด\nโล่ติ๊น\nโลโต\nโลท\nโลน\nโล้น\nโลภ\nโลม\nโลมเล้า\nโลมะ\nโลมา\nโลลุป\nโลเล\nโลโล\nโลโล้\nโลหะ\nโลหà¸à¸¸à¸¡à¸ ี\nโลหัช\nโลหิต\nไล่\nไล้\nไลย\nไลลา\nไล่เลี่ย\nฦๅ\nฦๅชา\nฦๅสาย\nวà¸\nวง\nวงà¸à¹Œ\nวงà¸à¸•\nวงศ์\nวงศà¸à¸£\nวงศา\nวงษ์\nวจนะ\nวจี\nวชิระ\nวชิรปาณี\nวชิรหัตถ์\nวชิราวุธ\nวà¸à¸°\nวà¸à¸²à¸à¸²à¸£\nวณิช\nวณิชชา\nวณิชย์\nวณิชยา\nวณิพà¸\nวดี\nวทนะ\nวทัà¸à¸à¸¸à¸•à¸²\nวทัà¸à¸à¸¹\nวธุà¸à¸²\nวธู\nวน\nวนศาสตร์\nวนสณฑ์\nวนสัณฑ์\nวนà¸à¸¸à¸—ยาน\nวนัส\nวนัสบดี\nวนา\nวนาดร\nวนาดà¸à¸™\nวนานต์\nวนาลัย\nวนาลี\nวนาวาส\nวนาศรม\nวนาสณฑ์\nวนาสัณฑ์\nวนิดา\nวนิพà¸\nวเนจร\nวโนทยาน\nวยัคฆ์\nวยาà¸à¸£à¸“์\nวรดนู\nวรทาน\nวรมหาวิหาร\nวรงค์\nวรณะ\nวรรค\nวรรคย์\nวรรช\nวรรชย์\nวรรณะ\nวรรณà¸à¸£à¸£à¸¡\nวรรณคดี\nวรรณยุà¸à¸•à¹Œ\nวรรณยุต\nวรรณศิลป์\nวรรณนา\nวรรณพฤติ\nวรรณึà¸\nวรรธà¸à¸°\nวรรธนะ\nวรรษ\nวรรษา\nวรวิหาร\nวรัà¸à¸à¸¹\nวรางคณา\nวรางคนา\nวราห์\nวราหะ\nวรุณ\nวโรดม\nวฤà¸\nวลัช\nวลัà¸à¸Šà¹Œ\nวลัà¸à¸Šà¸™à¹Œ\nวลัย\nวลาหà¸\nวลี\nวศค\nวศะ\nวศิน\nวสนะ\nวสภะ\nวสละ\nวสวัดดี\nวสวัตตี\nวสะ\nวสันต์\nวสันตดิลà¸\nวสันตฤดู\nวสันตวิษุวัต\nวสา\nวสี\nวสุ\nวสุธา\nวสุนธรา\nวสุมดี\nวหะ\nวà¸\nวà¸à¸\nวà¸à¸à¹à¸§à¸\nว่à¸à¸‡à¹„ว\nวà¸à¸”\nวà¸à¸™\nว่à¸à¸™\nว็à¸à¸š\nวà¸à¸¡à¹à¸§à¸¡\nวà¸à¸¥à¹€à¸¥à¸¢à¹Œà¸šà¸à¸¥\nวà¸à¹à¸§\nวะ\nวัà¸\nวัà¸à¸à¸°\nวัคคีย์\nวัคคุ\nวัคซีน\nวัง\nวังà¸à¹Œ\nวังชา\nวังเวง\nวังศะ\nวังสะ\nวัจจะ\nวัจà¸à¸¸à¸Žà¸µ\nวัจฉละ\nวัจน์\nวัช\nวัชชะ\nวัชพืช\nวัชฌ์\nวัชระ\nวัชรปาณี\nวัชรยาน\nวัชรà¸à¸²à¸ªà¸™à¹Œ\nวัชราสน์\nวัชรินทร์\nวัชรี\nวัชเรนทร์\nวัà¸\nวัà¸à¸à¸°\nวัà¸à¸ˆà¸±à¸à¸£\nวัà¸à¸—ุà¸à¸‚์\nวัà¸à¸ªà¸‡à¸ªà¸²à¸£\nวัà¸à¸à¸°\nวัà¸à¸à¸´\nวัฒà¸à¸°\nวัฒà¸à¸µ\nวัฒนธรรม\nวัฒนะ\nวัฒนา\nวัณ\nวัณโรค\nวัณà¸à¹Œ\nวัณณะ\nวัณนา\nวัด\nวัต\nวัตต์\nวัตตา\nวัตถ์\nวัตถาภรณ์\nวัตถาลังà¸à¸²à¸£\nวัตถุ\nวัตนะ\nวัตร\nวัตสดร\nวัตสะ\nวัติ\nวัทน์\nวัน\nวันต์\nวันทนา\nวันทนาà¸à¸²à¸£\nวันทนีย์\nวันทยหัตถ์\nวันทยาวุธ\nวันทา\nวันทิ\nวับ\nวับวาบ\nวับวาม\nวับà¹à¸§à¸š\nวับà¹à¸§à¸¡\nวัปปะ\nวัมมิà¸à¸°\nวัย\nวัลà¸à¹Œ\nวัลคุ\nวัลย์\nวัลลภ\nวัลลี\nวัว\nวัสสะ\nวัสโสทà¸\nวัสดุ\nวัสตร์\nวัสน์\nวัสนะ\nวัสสานะ\nวัสสานฤดู\nวา\nว่า\nว้า\nว้าเหว่\nวาà¸\nว้าà¸\nวาà¸à¸¢à¸ªà¸±à¸¡à¸žà¸±à¸™à¸˜à¹Œ\nวาà¸à¸¢à¸°\nวาง\nว่าง\nว้าง\nวาจà¸\nวาจา\nวาจาไปยะ\nวาจาล\nวาชเปยะ\nวาณิช\nวาณิชà¸à¸°\nวาณิชย์\nวาณี\nวาด\nวาต\nวาตะ\nวาตภัย\nวาท\nวาทศาสตร์\nวาทศิลป์\nวาทà¸à¸°\nวาทนะ\nวาทย์\nวาทยà¸à¸£\nวาทิต\nวาทิน\nวาที\nวาน\nวานซืน\nว่าน\nวานร\nวานรินทร์\nวาเนเดียม\nวาบ\nวาปี\nวาม\nวามน\nวามนาวตาร\nวามะ\nวาย\nว่าย\nว้าย\nวายะ\nวาโย\nวายามะ\nวายุ\nวายุà¸à¸¹à¸¥\nวาร\nวาระ\nวารสาร\nวารสารศาสตร์\nวาริ\nวารี\nวาริช\nวารีช\nวาริท\nวาริธร\nวารุณ\nวารุณี\nวาล\nวาลวีชนี\nวาล์ว\nวาลิà¸à¸²\nวาลุà¸à¸²\nวาว\nว่าว\nว้าว่à¸à¸™\nว้าวุ่น\nวาสนะ\nวาสนา\nวาสพ\nวาสะ\nวาสิน\nวาสี\nวาสุà¸à¸£à¸µ\nวาสุà¸à¸µ\nวาสุเทพ\nวาหนะ\nวาหะ\nวาหินี\nวาฬ\nวิà¸à¸‚ัมภ์\nวิà¸à¸‚ัมภนะ\nวิà¸à¹€à¸‚ป\nวิà¸à¸£à¸¡\nวิà¸à¸£à¸±à¸¢\nวิà¸à¸£à¸²à¸™à¸•à¹Œ\nวิà¸à¸¤à¸•\nวิà¸à¸¤à¸•à¸´\nวิà¸à¸¥\nวิà¸à¸ªà¸´à¸•\nวิà¸à¸±à¸•\nวิà¸à¸±à¸•à¸´\nวิà¸à¸±à¸•à¸´à¸à¸²à¸£à¸\nวิà¸à¸±à¸›\nวิà¸à¸±à¸¢\nวิà¸à¸²à¸£\nวิà¸à¸²à¸¥\nวิà¸à¸²à¸¥à¹‚ภชน์\nวิคหะ\nวิเคราะห์\nวิฆเนศ\nวิฆเนศวร\nวิฆาต\nวิง\nวิ่ง\nวิ่งเปี้ยว\nวิงวà¸à¸™\nวิจฉิà¸à¸°\nวิจล\nวิจัà¸à¸‚ณ์\nวิจัà¸à¸©à¹Œ\nวิจัà¸à¸©à¸“์\nวิจัย\nวิจาร\nวิจารณ์\nวิจารณà¸à¸²à¸“\nวิจิ\nวิจิà¸à¸´à¸ˆà¸‰à¸²\nวิจิต\nวิจิตร\nวิจิน\nวิจุณ\nวิจุรณ\nวิชชา\nวิชชุ\nวิชชุดา\nวิชชุตา\nวิชชุลดา\nวิชà¸à¸°\nวิชน\nวิชนี\nวิชย\nวิชัย\nวิชา\nวิชานนะ\nวิชิต\nวิเชียร\nวิà¸à¸à¸±à¸•à¸•à¸´\nวิà¸à¸à¸²à¸“\nวิà¸à¸à¸²à¸“à¸à¸—รัพย์\nวิà¸à¸à¸¹\nวิฑูรย์\nวิด\nวิตà¸\nวิตถาร\nวิตามิน\nวิถี\nวิทธะ\nวิทยà¸à¸²à¸™à¸°\nวิทยา\nวิทยาคม\nวิทยาคาร\nวิทยาลัย\nวิทยุ\nวิทยุต\nวิทวัส\nวิทัตถิ\nวิทัศน์\nวิทารณ์\nวิทิต\nวิทู\nวิทูร\nวิเทศ\nวิเทโศบาย\nวิธ\nวิธวา\nวิธาน\nวิธี\nวิธุระ\nวิธู\nวิธูปนะ\nวิ่น\nวินตà¸à¸°\nวินัย\nวินาที\nวินายà¸\nวินาศ\nวินิจ\nวินิจฉัย\nวินิต\nวินิบาต\nวินิปาติà¸\nวิเนต\nวิบัติ\nวิบาà¸\nวิบุล\nวิบุลย์\nวิบูล\nวิบูลย์\nวิปà¸à¸²à¸£\nวิปà¸à¸´à¸ªà¸²à¸£\nวิปโยค\nวิประโยค\nวิปริต\nวิปลาส\nวิปวาส\nวิปัà¸à¸©à¹Œ\nวิปัสสà¸\nวิปัสสนา\nวิปัสสนายานิà¸\nวิพาà¸à¸©à¹Œ\nวิพิธทัศนา\nวิพุธ\nวิภว\nวิภวตัณหา\nวิภังค์\nวิภัช\nวิภัตติ\nวิภา\nวิภาค\nวิภาช\nวิภาดา\nวิภาวี\nวิภาษ\nวิภาส\nวิภู\nวิภูษณะ\nวิภูษา\nวิภูษิต\nวิมน\nวิมล\nวิมลัà¸\nวิมังสา\nวิมัติ\nวิมาน\nวิมุข\nวิมุต\nวิมุตติ\nวิเมลืà¸à¸‡\nวิโมà¸à¸‚์\nวิโยค\nวิระ\nวิรงรà¸à¸‡\nวิรังรà¸à¸‡\nวิรัช\nวิรัต\nวิรัติ\nวิราคะ\nวิราม\nวิริยภาพ\nวิริยะ\nวิรุธ\nวิรุฬห์\nวิรุฬหà¸\nวิรูป\nวิรูปัà¸à¸©à¹Œ\nวิเรนทร์\nวิโรจ\nวิโรจน์\nวิโรฒ\nวิโรธ\nวิลันดา\nวิลัย\nวิลาด\nวิลาศ\nวิลาป\nวิลาวัณย์\nวิลาส\nวิลาสินี\nวิลิปดา\nวิลิศมาหรา\nวิเลป\nวิเลปนะ\nวิโลà¸à¸™à¸°\nวิโลม\nวิไล\nวิไลวรรณ\nวิวรณ์\nวิวรรธน์\nวิวัà¸\nวิวัฒน์\nวิวัฒนาà¸à¸²à¸£\nวิวัน\nวิวาท\nวิวาห์\nวิวาหมงคล\nวิวาหะ\nวิวิต\nวิวิธ\nวิเวà¸\nวิศรุต\nวิศว\nวิศวà¸à¸£\nวิศวà¸à¸£à¸£à¸¡\nวิศวà¸à¸£à¸£à¸¡à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nวิศัลย์\nวิศาขบูชา\nวิศาขา\nวิศาล\nวิศิษà¸à¹Œ\nวิศุทธ์\nวิศุทธิ์\nวิเศษ\nวิเศษณ์\nวิษณุ\nวิษณุà¸à¸£à¸£à¸¡\nวิษธร\nวิษัย\nวิษาณ\nวิษุวัต\nวิสà¸à¸µà¹‰\nวิสรรชนีย์\nวิสฤต\nวิสสุà¸à¸£à¸£à¸¡\nวิสัชนา\nวิสัà¸à¸à¸µ\nวิสัย\nวิสัยทัศน์\nวิสาขบูชา\nวิสาขะ\nวิสาขา\nวิสามัà¸\nวิสามานยนาม\nวิสาร\nวิสารทะ\nวิสาล\nวิสาสะ\nวิสาหà¸à¸´à¸ˆ\nวิสิà¸\nวิสุงคามสีมา\nวิสุทธ์\nวิสุทธิ์\nวิสูตร\nวิเสท\nวิหค\nวิหลั่น\nวิหาร\nวิหิงสา\nวิเหสา\nวิฬาร\nวิฬาร์\nวี\nวีจิ\nวีชนี\nวีณา\nวี้ด\nวีรà¸à¸£à¸£à¸¡\nวีรชน\nวีรบุรุษ\nวีรสตรี\nวี่วัน\nวี่à¹à¸§à¸§\nวีสะ\nวุ้ง\nวุà¸à¸´\nวุฒ\nวุฒิ\nวุด\nวุ่น\nวุ้น\nวุบ\nวุ้ย\nวุลà¹à¸Ÿà¸£à¸¡\nวู้\nวูดวาด\nวูบ\nวู่วาม\nเว้\nเวค\nเวคิน\nเวคี\nเวจ\nเวช\nเวชยันต์\nเวà¸à¸™à¹Œ\nเวณิ\nเวณิà¸\nเวณุ\nเวตน์\nเวตร\nเวตาล\nเวท\nเวทคู\nเวทนา\nเวทย์\nเวทัลละ\nเวทางค์\nเวทางคศาสตร์\nเวทานต์\nเวทานตะ\nเวทิ\nเวที\nเวธะ\nเวน\nเว้น\nเวนไตย\nเวไนย\nเวมัต\nเว้ย\nเวยยาà¸à¸£à¸“ะ\nเวร\nเวรมณี\nเวรี\nเวโรจน์\nเวลา\nเวเลนซี\nเวศม์\nเวศย์\nเวศยา\nเวสน์\nเวสภู\nเวสม์\nเวสวัณ\nเวสสะ\nเวสสันดร\nเวสสุà¸à¸£à¸£à¸¡\nเวสสุวัณ\nเวสารัช\nเวสิยา\nเวหน\nเวหะ\nเวหา\nเวหาส\nเวฬุ\nเวฬุริยะ\nเว่à¸\nเว้า\nเวิà¸\nเวิ้ง\nเวี่ย\nเวียง\nเวียด\nเวียดนาม\nเวียน\nเวียร\nเวี่ยว\nà¹à¸§à¹‰\nà¹à¸§à¸‡\nà¹à¸§à¹‰à¸‡\nà¹à¸§à¸”\nà¹à¸§à¹‰à¸”\nà¹à¸§à¸™\nà¹à¸§à¹ˆà¸™\nà¹à¸§à¸™à¸”า\nà¹à¸§à¸š\nà¹à¸§à¹‡à¸š\nà¹à¸§à¸¡\nà¹à¸§à¹‡à¸¡\nà¹à¸§à¸§\nà¹à¸§à¹ˆà¸§\nà¹à¸§à¸°\nโว\nโว่\nโวà¸à¸²à¸£\nโว่ง\nโวทาน\nโวย\nโว้ย\nโว้เว้\nโวหาร\nไว\nไว้\nไวà¸à¸¹à¸“à¸à¹Œ\nไวฑูรย์\nไวทย์\nไวน์\nไวพจน์\nไวยาà¸à¸£à¸“์\nไวยาวัจà¸à¸£\nไวยาวัจมัย\nไวรัส\nไววรรณ\nไวษณพ\nไวโà¸à¸¥à¸´à¸™\nศà¸\nศà¸à¸¸à¸™\nศà¸à¸¸à¸™à¸•à¹Œ\nศà¸à¸¸à¸™à¸´\nศà¸à¸¸à¸™à¸µ\nศจี\nศตะ\nศตภิษัช\nศตวรรษ\nศตพรรษ\nศตà¸à¸°\nศนิ\nศพ\nศมนะ\nศมะ\nศยาม\nศยามล\nศร\nศรายุธ\nศราวรณ์\nศรรà¸à¸£à¸²\nศรวณะ\nศรวณีย์\nศรวิษà¸à¸²\nศรัณย์\nศรัณยู\nศรัท\nศรัทธา\nศรัย\nศราทธ์\nศราทธพรต\nศราพà¸\nศราวà¸\nศราวณะ\nศรี\nศรีตรัง\nศรุติ\nศฤคาล\nศฤงค์\nศฤงคาร\nศฤงคาริน\nศฤงคารี\nศลิษà¸à¹Œ\nศลิษา\nศวะ\nศวัส\nศวา\nศวาน\nศศะ\nศศธร\nศศพินทุ์\nศศลัà¸à¸©à¸“์\nศศิ\nศศิน\nศศี\nศศิขัณฑ์\nศศิธร\nศศิมณฑล\nศศิวิมล\nศà¸\nศà¸à¸\nศัà¸à¸”า\nศัà¸à¸”ิ\nศัà¸à¸”ิ์\nศัà¸à¸”ินา\nศัà¸à¸•à¸´\nศัà¸à¸¢\nศัà¸à¸¢à¸ าพ\nศัà¸à¸¢à¹Œ\nศัà¸à¸¢à¸°\nศัà¸à¸£\nศัà¸à¸£à¸´à¸™à¸—ร์\nศัà¸à¹€à¸£à¸™à¸—ร์\nศัà¸à¸£à¸²à¸Š\nศังà¸à¸£\nศัตรู\nศันสนะ\nศันสนีย์\nศัพท์\nศัยยา\nศัล\nศัลย์\nศัลยà¸à¸£à¸£à¸¡\nศัลยà¹à¸žà¸—ย์\nศัลยศาสตร์\nศัสดร\nศัสตร\nศัสตรศาสตร์\nศัสตรา\nศัสตราวุธ\nศาà¸à¸•à¸°\nศาà¸à¸¢\nศาà¸à¸¢à¸°\nศาà¸à¸¢à¸žà¸¸à¸—ธ\nศาà¸à¸¢à¸¡à¸¸à¸™à¸µ\nศาฎà¸\nศาณ\nศานต์\nศานติ\nศาป\nศารท\nศารทูล\nศาริà¸à¸²\nศาล\nศาลา\nศาศวัต\nศาสดา\nศาสตร์\nศาสตรา\nศาสตราจารย์\nศาสนา\nศาสนà¸à¸´à¸ˆ\nศาสนจัà¸à¸£\nศาสนธรรม\nศาสนบุคคล\nศาสนพิธี\nศาสนวัตถุ\nศาสนศาสตร์\nศาสนสถาน\nศาสนสมบัติ\nศาสนิà¸à¸Šà¸™\nศาสนีย์\nศาสนูปถัมภà¸\nศาสน์\nศิà¸à¸©à¸\nศิà¸à¸²à¸£\nศิขร\nศิขริน\nศิขรี\nศิขัณฑ์\nศิคาล\nศิงขร\nศิงขริน\nศิตะ\nศิถี\nศิพิระ\nศิระ\nศิรประภา\nศิราภรณ์\nศิโรรัตน์\nศิโรเวà¸à¸™à¹Œ\nศิรา\nศิรามพุช\nศิโรราบ\nศิลป\nศิลป์\nศิลปะ\nศิลปà¸à¸£\nศิลปà¸à¸£à¸£à¸¡\nศิลปà¸à¸´à¸ˆ\nศิลปวัตถุ\nศิลปวิทยา\nศิลปศาสตร์\nศิลปศึà¸à¸©à¸²\nศิลปหัตถà¸à¸£à¸£à¸¡\nศิลปิน\nศิลปี\nศิลา\nศิวะ\nศิวโมà¸à¸‚์\nศิวลึงค์\nศิวเวท\nศิวาลัย\nศิศีระ\nศิษฎิ\nศิษà¸à¹Œ\nศิษย์\nศิษยานุศิษย์\nศีขร\nศีต\nศีตà¸à¸²à¸¥\nศีรษะ\nศีล\nศึà¸\nศึà¸à¸©à¸²\nศึà¸à¸©à¸²à¸˜à¸´à¸à¸²à¸£\nศึà¸à¸©à¸²à¸™à¸´à¹€à¸—ศà¸à¹Œ\nศุà¸à¸£à¹Œ\nศุà¸à¸£à¸§à¸£à¸£à¸“\nศุà¸à¸£à¸§à¸²à¸£\nศุà¸à¸£à¸°\nศุà¸à¸¥\nศุà¸à¸¥à¸›à¸±à¸à¸©à¹Œ\nศุจิ\nศุทธะ\nศุทธิ\nศุนะ\nศุนิ\nศุภà¸à¸£\nศุภเคราะห์\nศุภนิมิต\nศุภมัสดุ\nศุภมาตรา\nศุภมาส\nศุภà¸à¸±à¸à¸©à¸£\nศุภางค์\nศูà¸à¸£\nศุลà¸à¸²à¸à¸£\nศุลà¸à¸²à¸£à¸±à¸à¸©à¹Œ\nศุลี\nศุษิร\nศูทร\nศูนย์\nศูนยวาท\nศูละ\nศูลิน\nเศรณี\nเศรษà¸\nเศรษà¸à¹Œ\nเศรษà¸à¸à¸´à¸ˆ\nเศรษà¸à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nเศรษà¸à¸µ\nเศร้า\nเศลษ\nเศวต\nเศวตร\nเศวตัมพร\nเศษ\nเศาจ\nเศาร์\nเศารยะ\nเศิà¸\nเศียร\nโศà¸\nโศà¸à¸²\nโศà¸à¸²à¸”ูร\nโศà¸à¸²à¸¥à¸±à¸¢\nโศà¸à¸µ\nโศจิ\nโศธนะ\nโศภน\nโศภะ\nโศภา\nโศภิต\nโศภิน\nโศภิษà¸à¹Œ\nโศภี\nโศรดา\nโศรตร\nโศลà¸\nไศล\nไศวะ\nษมา\nษัà¸\nษัฑ\nษัณ\nษัษ\nษัษà¸à¸°\nษัษà¸à¸µ\nโษฑศัน\nสà¸\nสà¸à¸§à¸²à¸—ี\nสà¸à¸à¸°\nสà¸à¸—าคามิผล\nสà¸à¸´à¸—าคามิผล\nสà¸à¸—าคามิมรรค\nสà¸à¸´à¸—าคามิมรรค\nสà¸à¸—าคามี\nสà¸à¸´à¸—าคามี\nสà¸à¸™à¸˜à¹Œ\nสà¸à¸›à¸£à¸\nสà¸à¸£à¸“ีย์\nสà¸à¸£à¸£à¸ˆà¹Œ\nสà¸à¸£à¸£à¸¡à¸à¸£à¸´à¸¢à¸²\nสà¸à¸¥\nสà¸à¸¥à¸¡à¸«à¸²à¸ªà¸±à¸‡à¸†à¸›à¸£à¸´à¸“ายà¸\nสà¸à¸±à¸”\nสà¸à¸²\nสà¸à¸²à¸§\nสà¸à¸µ\nสà¸à¸¸à¸“\nสà¸à¸¸à¸“า\nสà¸à¸¸à¸“ี\nสà¸à¸¸à¸™\nสà¸à¸¸à¸™à¸•à¹Œ\nสà¸à¸¸à¸¥\nสเà¸à¸•\nสà¹à¸à¸™à¹€à¸”ียม\nสขะ\nสง\nส่ง\nสงà¸à¸£\nสงà¸à¸£à¸²à¸™à¸•à¹Œ\nสงà¸à¸²\nสงค์\nสงคร\nสงคราม\nสงเคราะห์\nสงฆ์\nสงบ\nสงวน\nส่งสà¸à¸²à¸£\nสงสัย\nสงสาร\nสงสารวัà¸\nสงัด\nสง่า\nสà¸à¸°\nสณฑ์\nสด\nสดมภ์\nสดับ\nสดับปà¸à¸£à¸“์\nสดำ\nสดุดี\nสตะ\nสตน\nสตภิสชะ\nสตรà¸à¸™à¹€à¸Šà¸µà¸¢à¸¡\nสตริà¸à¸™à¸´à¸™\nสตรี\nสตัฟฟ์\nสตัมภ์\nสตางค์\nสติ\nสติปัà¸à¸à¸²à¸™\nสตี\nสตู\nสตูป\nสเต๊à¸\nสถบดี\nสถล\nสถวีระ\nสถาน\nสถานะ\nสถานี\nสถาบัน\nสถาปนา\nสถาปนิà¸\nสถาปัตยà¸à¸£à¸£à¸¡\nสถาปัตยà¸à¸£à¸£à¸¡à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nสถาปัตยเรขา\nสถาปัตยเวท\nสถาพร\nสถาวร\nสถิต\nสถิตยศาสตร์\nสถิติ\nสถิร\nสถีรวาท\nสถุล\nสถูป\nสทิง\nสทึง\nสทุม\nสธนะ\nสาธุสะ\nสน\nส้น\nสนทนา\nสนทรรศ\nสนทรรศน์\nสนเทศ\nสนเท่ห์\nสนธยา\nสนธิ\nสนน\nสนม\nสนวน\nสนà¸à¸‡\nสนà¸à¸š\nสนà¸à¸¡\nสนะ\nสนัด\nสนั่น\nสนับ\nสนับทึบ\nสนับสนุน\nสนาน\nสนาม\nสนายุ\nสนิà¸à¸°\nสนิท\nสนิธ\nสนิม\nสนุà¸\nสนุà¸à¹€à¸à¸à¸£à¹Œ\nสนุข\nสนุต\nสนุ่น\nสบ\nสบง\nสบถ\nสบัน\nสบาย\nสบู่\nสไบ\nสปริง\nสปà¸à¸£à¹Œ\nสปาเà¸à¸•à¸•à¸µ\nสเปà¸à¸•à¸£à¸±à¸¡\nสเปà¸à¹‚ทรสโà¸à¸›\nสไปริลลัม\nสพาบ\nสภา\nสภาพ\nสภาวà¸à¸²à¸£à¸“์\nสภาวะ\nสม\nสมà¸à¸²à¸£\nสมจารี\nสมดุล\nสมมูล\nส้ม\nสมà¸à¸²\nสมณะ\nสมณบริขาร\nสมณศัà¸à¸”ิ์\nสมณสารูป\nสมเด็จ\nสมถะ\nสมถยานิà¸\nสมถวิปัสสนา\nสมนาคุณ\nสมบัติ\nสมบุà¸à¸ªà¸¡à¸šà¸±à¸™\nสมบูรณ์\nสมบูรณาà¸à¸²à¸ªà¸´à¸—ธิราชย์\nสมประดี\nสมปฤดี\nสมปฤๅดี\nส้มป่à¸à¸¢\nสมปัà¸\nสมผุส\nสมพง\nสมพงศ์\nสมพล\nสมพัตสร\nสมพาส\nสมเพช\nสมโพธน์\nสมโพธิ\nสมภพ\nสมภาร\nสมโภค\nสมโภช\nสมมต\nสมมติ\nสมมุติ\nสมมาตร\nส้มมืà¸\nสมโมท\nสมโยค\nสมร\nสมรด\nสมรรถ\nสมรรถนะ\nสมรรถภาพ\nสมรส\nสมฤดี\nสมฤติ\nสมวายะ\nสมเสร็จ\nสมà¸\nสมà¸à¸‡\nสมะ\nสมัคร\nสมังคี\nสมัช\nสมัชชา\nสมัà¸à¸à¸²\nสมัต\nสมัน\nสมันต์\nสมัย\nสมา\nสมาคม\nสมาจาร\nสมาชิà¸\nสมาทาน\nสมาธิ\nสมาน\nสมานฉันท์\nสมาบัติ\nสมาพันธรัà¸\nสมาส\nสม่ำเสมà¸\nสมิง\nสมิต\nสมิติ\nสมิทธ์\nสมิทธิ\nสมี\nสมุà¸\nสมุจจัย\nสมุจเฉท\nสมุà¸à¸à¸²à¸™\nสมุด\nสมุทร\nสมุทรโคดม\nสมุทัย\nสมุน\nสมุนไพร\nสมุลà¹à¸§à¹‰à¸‡\nสมุห\nสมุห์\nสมุหà¸à¸¥à¸²à¹‚หม\nสมุหเทศาภิบาล\nสมุหนาม\nสมุหนายà¸\nสโมธาน\nสโมสร\nสยด\nสยนะ\nสยบ\nสยมพร\nสยมภู\nสยà¸à¸‡\nสยà¸à¸™\nสยัมวรา\nสยาม\nสยามานุสติ\nสยามินทร์\nสยาย\nสยิว\nสยิ้ว\nสยุมพร\nสยุมภู\nสร\nสรง\nสร่ง\nสรณะ\nสรณคมน์\nสรณาคมน์\nสรณตรัย\nสรตะ\nสรทะ\nสรนุà¸\nสรเนาะ\nสรไน\nสรเพชà¸\nสรภะ\nสรภัà¸à¸à¸°\nสรภู\nสรม\nสรร\nสรรค์\nสรรพ\nสรรพคุณ\nสรรพนาม\nสรรพสามิต\nสรรพัชà¸\nสรรพาà¸à¸£\nสรรพางค์\nสรรเพชà¸\nสรรเพชุดา\nสรรเสริà¸\nสรลà¸à¸™\nสรเลข\nสรวง\nสรวม\nสรวล\nสรเสริà¸\nสร้à¸à¸¢\nสระ\nสระà¸à¸\nสระท้à¸à¸™\nสระพรั่ง\nสระà¸à¸²à¸”\nสรั่ง\nสรัสวดี\nสร่าง\nสร้าง\nสราà¸\nสรี้\nสรีระ\nสรีรà¸à¸´à¸ˆ\nสรีรธาตุ\nสรีรวิทยา\nสรีรศาสตร์\nสรีรังคาร\nสรีรางคาร\nสรุป\nสโรช\nสโรชะ\nสฤà¸\nสฤต\nสฤษฎิ\nสฤษฎี\nสฤษà¸à¹Œ\nสฤษดิ์\nสลด\nสลบ\nสลวน\nสลวย\nสลà¸à¸”\nสลà¸à¸™\nสลà¸à¸¢\nสละ\nสลัà¸\nสลัด\nสลัดได\nสลับ\nสลัว\nสลา\nสลาà¸\nสลาง\nสล้าง\nสลาด\nสลาตัน\nสลาบ\nสลาย\nสลิด\nสลิล\nสลึà¸\nสลึง\nสลุต\nสลุบ\nสลุมพร\nสà¹à¸¥à¸‡\nสวà¸à¸²à¸£à¸¢à¹Œ\nสวภาพ\nสวราชย์\nสวà¸\nส้วง\nสวด\nสวน\nสวนะ\nสวนาà¸à¸²à¸£\nส่วน\nสวนิต\nสวบ\nสวม\nส้วม\nสวย\nส่วย\nส้วย\nสวยม\nสวรรค\nสวรรค์\nสวรรคต\nสวรรคาลัย\nสวรรยา\nสวระ\nสวะ\nสวัสดิ\nสวัสดิ์\nสวัสดิà¸à¸²à¸£\nสวัสดิภาพ\nสวัสดิมงคล\nสวัสดี\nสวัสติ\nสวาตี\nสวัสติà¸à¸°\nสวา\nสวาปาม\nสวาคตะ\nสวาง\nสว่าง\nสวาด\nสวาดิ\nสวาท\nสว่าน\nสว้าน\nสวาบ\nสวามิ\nสวามี\nสวามินี\nสวาย\nสวาสดิ์\nสวาหะ\nสวิง\nสวิà¸à¸à¸²à¸“à¸à¸—รัพย์\nสวิตช์\nสสาร\nสสุระ\nสสุรี\nสหà¸à¸£à¸“์\nสหà¸à¸²à¸£\nสหจร\nสหชาต\nสหชาติ\nสหธรรม\nสหธรรมิà¸\nสหประชาชาติ\nสหพันธ์\nสหพันธรัà¸\nสหภาพ\nสหศึà¸à¸©à¸²\nสหัช\nสหัมบดี\nสหัส\nสหัสสะ\nสหัสธารา\nสหัสนัยน์\nสหัสเนตร\nสหัสรังสี\nสหัสา\nสหาย\nสà¸\nส่à¸\nสà¸à¸‡\nส่à¸à¸‡\nส้à¸à¸‡\nสà¸à¸”\nสà¸à¸™\nส่à¸à¸™\nสà¸à¸š\nสà¸à¸žà¸¥à¸\nส้à¸à¸¡\nสà¸à¸¢\nสะ\nสะà¸à¸”\nสะà¸à¸\nสะà¸à¸²à¸‡\nสะà¸à¸²à¸£à¸°\nสะà¸à¸´à¸”\nสะà¸à¸´à¸”สะเà¸à¸²\nสะเà¸à¹‡à¸”\nสะà¹à¸\nสะคร้à¸\nสะคราà¸\nสะค้าน\nสะเงาะสะà¹à¸‡à¸°\nสะดม\nสะดวà¸\nสะดิ้ง\nสะดึง\nสะดืà¸\nสะดุ้ง\nสะดุด\nสะเด็ด\nสะเดา\nสะเดาะ\nสะตà¸\nสะตาหมัน\nสะตึ\nสะตืà¸\nสะตุ\nสะเต๊ะ\nสะโตà¸\nสะทà¸\nสะท้à¸à¸™\nสะท้าน\nสะทึà¸\nสะเทิน\nสะเทิ้น\nสะเทืà¸à¸™\nสะเทื้à¸à¸™\nสะบะ\nสะบัà¸\nสะบัà¸à¸ªà¸°à¸šà¸à¸¡\nสะบัด\nสะบัดสะบิ้ง\nสะบั้น\nสะบันงา\nสะบ้า\nสะบู\nสะà¹à¸šà¸‡\nสะเปะสะปะ\nสะพรั่ง\nสะพรึงà¸à¸¥à¸±à¸§\nสะพรึบ\nสะพรึ่บ\nสะพัà¸\nสะพัง\nสะพัด\nสะพั้น\nสะพาน\nสะพาย\nสะเพร่า\nสะโพà¸\nสะเภา\nสะใภ้\nสะโมง\nสะระตะ\nสะระà¹à¸«à¸™à¹ˆ\nสะลาง\nสะลาบ\nสะลึมสะลืà¸\nสะวี้ดสะว้าด\nสะสม\nสะสวย\nสะสาง\nสะเหล่à¸\nสะà¸à¸²à¸‡\nสะà¸à¸²à¸”\nสะà¸à¹‰à¸²à¸™\nสะà¸à¸´à¹‰à¸‡\nสะà¸à¸´à¸”สะเà¸à¸µà¸¢à¸™\nสะà¸à¸¶à¸\nสะà¸à¸·à¹‰à¸™\nสะเà¸à¹‰à¸‡\nสะเà¸à¸§\nสะเà¸à¸à¸°\nสะโà¸à¸”สะà¸à¸‡\nสะไà¸\nสัà¸\nสัà¸à¸à¸°\nสัà¸à¸¢à¸°\nสัà¸à¸à¸±à¸ˆà¸ˆà¸°\nสัà¸à¸à¸²à¸¢à¸—ิà¸à¸´\nสัà¸à¸à¸²à¸£\nสัà¸à¸à¸²à¸£à¸°\nสัà¸à¸‚ี\nสัà¸à¸§à¸²\nสัà¸à¸«à¸¥à¸²à¸”\nสัค\nสัคคะ\nสั่ง\nสังà¸à¸£\nสังà¸à¸£à¸“ี\nสังà¸à¸£à¸›à¸£à¸°à¹‚ยค\nสังà¸à¸°à¸•à¸±à¸‡\nสังà¸à¸°à¸§à¸±à¸‡\nสังà¸à¸°à¸§à¸²à¸”\nสังà¸à¸°à¸ªà¸µ\nสังà¸à¸±à¸”\nสังà¸à¸±à¸›à¸›à¸°\nสังà¸à¸²\nสังà¸à¸²à¸£\nสังà¸à¸²à¸¨\nสังà¸à¸´à¹€à¸¥à¸ª\nสังเà¸à¸•\nสังข์\nสังขà¸à¸£\nสังขตธรรม\nสังขตะ\nสังขยา\nสังขลิà¸\nสังขลิà¸à¸²\nสังขาร\nสังขารา\nสังเขป\nสังค์\nสังคà¸à¸²à¸•à¸´\nสังคม\nสังคหะ\nสังคัง\nสังคายนา\nสังคายนาย\nสังคีต\nสังคีติ\nสังเค็ด\nสังเคราะห์\nสังฆà¸à¸£à¸£à¸¡\nสังฆà¸à¸²à¸£à¸µ\nสังฆเถระ\nสังฆทาน\nสังฆนายà¸\nสังฆปาโมà¸à¸‚์\nสังฆภัต\nสังฆเภท\nสังฆมณฑล\nสังฆมนตรี\nสังฆราช\nสังฆสภา\nสังฆาณัติ\nสังฆาà¸à¸´\nสังฆาทิเสส\nสังฆาธิà¸à¸²à¸£\nสังฆานุสติ\nสังฆาวาส\nสังยุตนิà¸à¸²à¸¢\nสังโยค\nสังโยชน์\nสังวร\nสังวัจฉระ\nสังวัธยาย\nสังวาล\nสังวาส\nสังเวคะ\nสังเวช\nสังเวชนียสถาน\nสังเวย\nสังเวียน\nสังสà¸à¸¤à¸•\nสังสà¸à¸²à¸£\nสังสนทนา\nสั่งสนทนา\nสังสรรค์\nสังสารวัà¸\nสังสิทธิ\nสังสุทธ์\nสังสุทธิ\nสังหร\nสังหรณ์\nสังหาร\nสังหาริมทรัพย์\nสังหาริมะ\nสังหิต\nสัจ\nสัจà¸à¸´à¸£à¸´à¸¢à¸²\nสัจจะ\nสัจà¸à¸²à¸“\nสัจธรรม\nสัจนิยม\nสัจพจน์\nสัชฌะ\nสัชฌุ\nสัà¸à¸ˆà¸£\nสัà¸à¹€à¸ˆà¸•à¸™à¸²\nสัà¸à¸Šà¸²à¸•à¸à¸²à¸“\nสัà¸à¸Šà¸²à¸•à¸´\nสัà¸à¸Œà¸²\nสัà¸à¸à¸²\nสัà¸à¸à¸²à¸“\nสัà¸à¸à¸µ\nสัà¸à¹‚à¸à¸Šà¸™à¹Œ\nสัà¸à¸™à¸´à¸¢à¸¡\nสัà¸à¸›à¸£à¸°à¸à¸²à¸¨\nสัà¸à¸¥à¸±à¸à¸©à¸“์\nสัà¸à¸´\nสัณà¸à¸²à¸™\nสัณà¸à¸´à¸•à¸´\nสัณฑ์\nสัณห์\nสัด\nสัดจà¸à¸‡\nสัต\nสัตตะ\nสัตตาหà¸à¸£à¸“ียะ\nสัตตาหà¸à¸²à¸¥à¸´à¸\nสัตมวาร\nสัตสดà¸\nสัตตบงà¸à¸Š\nสัตตบรรณ\nสัตตบุษย์\nสัตตู\nสัตถันดร\nสัตถา\nสัตถิ\nสัตถุ\nสัตถุศาสนา\nสัตบรรณ\nสัตย์\nสัตยพรต\nสัตยวาที\nสัตยาเคราะห์\nสัตยาธิษà¸à¸²à¸™\nสัตยาบัน\nสัตว์\nสัตวชาติ\nสัตวบาล\nสัตวà¹à¸žà¸—ย์\nสัตววิทยา\nสัตวา\nสัทธรรม\nสัทธา\nสัทธาจริต\nสัทธาธิà¸à¸°\nสัทธินทรีย์\nสัทธิงวิหาริà¸\nสัทธิวิหาริà¸\nสัทวิทยา\nสัทศาสตร์\nสัทà¸à¸±à¸à¸©à¸£\nสัน\nสั่น\nสั้น\nสันดาน\nสันดาป\nสันโดษ\nสันต์\nสันตติ\nสันตะปาปา\nสันตะวา\nสันติ\nสันตุà¸à¸à¸µ\nสันถวไมตรี\nสันถวะ\nสันถัต\nสันถาร\nสันทนะ\nสันทะ\nสันทัด\nสันทัสนะ\nสันทาน\nสันทิà¸à¸´à¸\nสันทิส\nสันเทหะ\nสันธาน\nสันนิธิ\nสันนิบาต\nสันนิวาส\nสันนิษà¸à¸²à¸™\nสันสà¸à¸¤à¸•\nสับ\nสับปลับ\nสับปลี้\nสับปะรด\nสัปคับ\nสัปดาห์\nสัปดาหะ\nสัปดน\nสัปตศà¸\nสัปทน\nสัปปะ\nสัปปิ\nสัปปุริส\nสัปปุรุษ\nสัประยุทธ์\nสัปหงà¸\nสัปเหร่à¸\nสัพ\nสัพพะ\nสัพพัà¸à¸à¸¹\nสัพเพเหระ\nสัพยà¸à¸\nสัมบูรณ์\nสัมปชัà¸à¸à¸°\nสัมปทา\nสัมปทาน\nสัมปยุต\nสัมปโยค\nสัมประสิทธิ์\nสัมประหาร\nสัมปรายภพ\nสัมปรายิà¸à¸ พ\nสัมปัตติ\nสัมผัปลาป\nสัมผัปลาปะ\nสัมผัส\nสัมพล\nสัมพหุลา\nสัมพัจฉรฉินท์\nสัมพัตสร\nสัมพัทธ์\nสัมพันธ์\nสัมพันธน์\nสัมพันธภาพ\nสัมพันธมิตร\nสัมพันธไมตรี\nสัมพาหะ\nสัมพุทธ\nสัมพุทธะ\nสัมโพธิ\nสัมภวะ\nสัมภเวสี\nสัมภัต\nสัมภัตตะ\nสัมภาระ\nสัมภาษณ์\nสัมโภคà¸à¸²à¸¢\nสัมมนา\nสัมมัปธาน\nสัมมา\nสัมโมทนียà¸à¸–า\nสัมฤทธิ\nสัมฤทธิ์\nสัมฤทธิศà¸\nสัยน์\nสัลเลข\nสัสดี\nสัสตทิà¸à¸´\nสัสสะ\nสัสสุ\nสัสสู\nสา\nส่า\nสาà¸\nสาà¸à¸£à¸£à¸ˆà¹Œ\nสาà¸à¸¥\nสาà¸à¸±à¸ˆà¸‰à¸²\nสาà¸à¸±à¸¥à¸¢à¹Œ\nสาà¸à¸´à¸¢à¸°\nสาเà¸\nสาขา\nสาคร\nสาคเรศ\nสาคู\nสาง\nส้าง\nสาชล\nสาฎà¸\nสาà¸à¸´à¸\nสาณี\nสาด\nสาไถย\nสาทร\nสาทิส\nสาทุ\nสาโท\nสาธà¸\nสาธยะ\nสาธยาย\nสาธารณะ\nสาธารณชน\nสาธารณประโยชน์\nสาธารณภัย\nสาธารณรัà¸\nสาธารณสถาน\nสาธารณสมบัติ\nสาธารณสุข\nสาธารณูปà¸à¸²à¸£\nสาธารณูปโภค\nสาธารณ์\nสาธิต\nสาธุ\nสาน\nส่าน\nสานุ\nสานู\nสานุศิษย์\nสาบ\nสาบสูà¸\nสาบาน\nสาป\nสาปไตย\nสาม\nสามชุà¸\nสามเณร\nสามเณรี\nสามนต์\nสามนตราช\nสามยทรัพย์\nสามล\nสามหาว\nสามะ\nสามัคคี\nสามัà¸\nสามัตถิยะ\nสามานย์\nสามานยนาม\nสามารถ\nสามิต\nสามินี\nสามิภัà¸à¸”ิ์\nสามี\nสามีจิà¸à¸£à¸£à¸¡\nสาย\nส่าย\nส้าย\nสายชู\nสายัณห์\nสายาห์\nสาร\nสารคดี\nสารธรรม\nสารนิเทศ\nสารบบ\nสารบรรณ\nสารบัà¸\nสารบาà¸\nสารบาà¸à¸Šà¸µ\nสารประโยชน์\nสารสนเทศ\nสารทุà¸à¸‚์\nสารถี\nสารท\nสารพัด\nสารพัน\nสารพางค์\nสารภาพ\nสารภี\nสารวัตร\nสาระ\nสาระà¹à¸™\nสาระพา\nสาระยำ\nสาระวารี\nสาระสะมา\nสารัตถประโยชน์\nสารัตถศึà¸à¸©à¸²\nสารัตถะ\nสารัทธ์\nสารัมภ์\nสาราณียà¸à¸£\nสาราณียธรรม\nสาราณียะ\nสารานุà¸à¸£à¸¡\nสารีริà¸à¸˜à¸²à¸•à¸¸\nสารูป\nสาโรช\nสาละ\nสาละวน\nสาลิ\nสาลิà¸à¸²\nสาลินี\nสาลี\nสาลี่\nสาลู\nสาโลหิต\nสาว\nสาวà¸\nสาวิà¸à¸²\nสาวิตร\nสาวิตรี\nสาสน\nสาสน์\nสาส์น\nสาสนา\nสาสม\nสาหร่าย\nสาหรี\nส่าหรี\nสาหัส\nสาเหตุ\nสาà¹à¸«à¸£à¸\nสำ\nสำส่à¸à¸™\nส่ำ\nสำคัà¸\nสำซ่าง\nสำà¹à¸”ง\nสำทับ\nสำนวน\nสำนà¸à¸‡\nสำนัà¸\nสำนาน\nสำนึà¸\nสำนึง\nสำเนา\nสำเนียง\nสำบัด\nสำปะลà¸\nสำปะหลัง\nสำปั้น\nสำปันนี\nสำเภา\nสำมะงา\nสำมะโน\nสำมะลà¸\nสำมะเลเทเมา\nสำมะหา\nสำรด\nสำรวจ\nสำรวม\nสำรวย\nสำรวล\nสำรà¸à¸\nสำรà¸à¸‡\nสำรับ\nสำราà¸\nสำราà¸\nสำริด\nสำเร็จ\nสำเรา\nสำเริง\nสำโรง\nสำลัà¸\nสำลาน\nสำลี\nสำà¹à¸¥à¸‡\nสำหรวด\nสำหรับ\nสำหา\nสำเหนียà¸\nสำเหร่\nสำà¸à¸à¸¢\nสำà¸à¸²à¸‡\nสิ\nสิà¸à¸‚์\nสิข\nสิà¸à¸‚มานา\nสิà¸à¸‚า\nสิขร\nสิขรี\nสิขเรศ\nสิขา\nสิขานล\nสิขี\nสิคาล\nสิง\nสิ่ง\nสิงขร\nสิงค์\nสิงคลิ้ง\nสิงคลี\nสิงคาร\nสิงคาล\nสิงคี\nสิงโต\nสิงห์\nสิงหนาท\nสิงหบัà¸à¸Šà¸£\nสิงหรา\nสิงหราช\nสิงหาคม\nสิงหาสน์\nสิงหล\nสิà¸à¸ˆà¸™à¹Œ\nสิตะ\nสิตางศุ์\nสิถิล\nสิทธ์\nสิทธัตถะ\nสิทธา\nสิทธาจารย์\nสิทธารถ\nสิทธิ\nสิทธิ์\nสิทธิà¸à¸²à¸£à¸´à¸¢à¸°\nสิธยะ\nสิน\nสิ้น\nสินเทา\nสินธพ\nสินธุ\nสินธุ์\nสินธุระ\nสินธู\nสินเธาว์\nสินาด\nสินิทธ์\nสินี\nสิเนรุ\nสิเนหà¸\nสิเนหะ\nสิเนหา\nสิเน่หา\nสิบ\nสิปปะ\nสิมพลี\nสิระ\nสิโรดม\nสิโรตม์\nสิริ\nสิรี\nสิลา\nสิว\nสิ่ว\nสิวะ\nสิวาลัย\nสิวิà¸à¸²\nสี\nสี่\nสี้\nสีà¸à¸²\nสีà¸à¸¸à¸™\nสีข้าง\nสีด\nสีดà¸\nสีดา\nสีตลรัศมี\nสีตโลทà¸\nสีโตทà¸\nสีทันดร\nสีมันต์\nสีมา\nสีละมัน\nสีวิà¸à¸²\nสีสà¸\nสีสะ\nสีสา\nสีสุà¸\nสีเสียด\nสีห์\nสีหนาท\nสีหบัà¸à¸Šà¸£\nสีหราช\nสีหไสยา\nสีหไสยาสน์\nสีหะ\nสึà¸\nสึง\nสืบ\nสื่à¸\nสุ\nสุà¸\nสุà¸à¸‚์\nสุà¸à¸£\nสุà¸à¸£à¸¡\nสุà¸à¸³à¸¨à¸ž\nสุà¸à¸µà¸¢à¸²à¸à¸µà¹‰\nสุข\nสุขา\nสุขาภิบาล\nสุขารมณ์\nสุขาวดี\nสุขิน\nสุขี\nสุขุม\nสุขุมาล\nสุโข\nสุคต\nสุคติ\nสุคนธ\nสุคนธ์\nสุคนธชาติ\nสุคนธรส\nสุคันธ์\nสุคันธรส\nสุงà¸à¸°\nสุงà¸à¸²à¸à¸£\nสุงสิง\nสุงสุมาร\nสุจริต\nสุจหนี่\nสุจิ\nสุจิต\nสุจิตร\nสุชน\nสุชัมบดี\nสุชา\nสุชาดา\nสุà¸\nสุà¸à¸à¸²à¸à¸²à¸¨\nสุà¸à¸•à¸²\nสุà¸à¸™à¸´à¸¢à¸¡\nสุณ\nสุณิสา\nสุด\nสุดา\nสุต\nสุตตนิบาต\nสุตตะ\nสุตตันตปิฎà¸\nสุตตันตะ\nสุติ\nสุทธ\nสุทธ์\nสุทธาวาส\nสุทธิ\nสุทรรศน์\nสุทัศน์\nสุธา\nสุธาโภชน์\nสุธารส\nสุธาสินี\nสุธาสี\nสุธี\nสุนทร\nสุนทรี\nสุนทรียภาพ\nสุนทรียศาสตร์\nสุนทรียะ\nสุนัข\nสุนันท์\nสุโนà¸\nสุบดี\nสุบรรณ\nสุบิน\nสุปรีดิ์\nสุปรีย์\nสุปาณี\nสุพพัต\nสุพรรณ\nสุพรรณบัà¸\nสุพรรณภาชน์\nสุพรรณราช\nสุพรรณศรี\nสุพรรณถัน\nสุพรรณิà¸à¸²à¸£à¹Œ\nสุภร\nสุภัค\nสุภา\nสุภาพ\nสุภาษิต\nสุม\nสุ่ม\nสุมทุม\nสุมน\nสุมนะ\nสุมนัส\nสุมนา\nสุ้มเสียง\nสุมะ\nสุมาลี\nสุเมธ\nสุเมรุ\nสุรคต\nสุรเชษà¸à¹Œ\nสุรบดี\nสุรภาพ\nสุรโลà¸\nสุรสีหนาท\nสุรเสียง\nสุรงค์\nสุรังค์\nสุรภี\nสุรัติ\nสุรัสวดี\nสุรา\nสุรางค์จำเรียง\nสุรางคนา\nสุรางคนางค์\nสุรารัà¸à¸©à¹Œ\nสุราลัย\nสุรินทร์\nสุรินทราหู\nสุริยะ\nสุริยà¸à¸±à¸™à¸•à¹Œ\nสุริยà¸à¸²à¸™à¸•à¹Œ\nสุริยà¸à¸²à¸£\nสุริยà¸à¸²à¸¥\nสุริยคติ\nสุริยคราส\nสุริยมณฑล\nสุริยวงศ์\nสุริยง\nสุริยา\nสุริเยนทร์\nสุริเยศ\nสุริโย\nสุริยน\nสุริยัน\nสุริยุปราคา\nสุรีย์\nสุรุ่ยสุร่าย\nสุลต่าน\nสุวคนธ์\nสุวภาพ\nสุวรรณ\nสุวรรณภูมิ\nสุวะ\nสุวาน\nสุวินัย\nสุวิมล\nสุษิระ\nสุสาน\nสุหนัต\nสุหร่ง\nสุหร่าย\nสุหฤท\nสุหัท\nสุเหร่า\nสู\nสู่\nสู้\nสูง\nสูจิ\nสูจิบัตร\nสูà¸\nสูด\nสูต\nสูตร\nสูติ\nสูติà¸à¸£à¸£à¸¡\nสูตินรีเวช\nสูติบัตร\nสูติà¹à¸žà¸—ย์\nสูติศาสตร์\nสูท\nสูทà¸à¸£à¸£à¸¡\nสูทศาสตร์\nสูบ\nสูปะ\nสูร\nสูรย์\nสูรยà¸à¸²à¸™à¸•à¹Œ\nสูริ\nสูสี\nเส\nเสà¸\nเสà¸à¸‚บุคคล\nเสà¸à¸‚ะ\nเสขบุคคล\nเสขะ\nเส็ง\nเส้ง\nเส็งเคร็ง\nเสงี่ยม\nเสà¸à¸à¸µ\nเสณี\nเสด\nเสด็จ\nเสตุ\nเสถียร\nเสทะ\nเสโท\nเสน\nเส้น\nเสนง\nเสน่ง\nเสน่ห์\nเสนหา\nเสน่หา\nเสนà¸\nเสนะ\nเสนา\nเสนาธิà¸à¸²à¸£\nเสนาบดี\nเสน่า\nเสนาà¸à¸¸à¸Ž\nเสนางค์\nเสนางคนิà¸à¸£\nเสนานี\nเสนาสนะ\nเสนาะ\nเสนี\nเสนีย์\nเสนียะ\nเสนียด\nเสบย\nเสบียง\nเสพ\nเสพย์\nเสเพล\nเสภา\nเสม็ด\nเสมหะ\nเสมà¸\nเสมา\nเสมียน\nเสมืà¸à¸™\nเสย\nเสร็จ\nเสริด\nเสริม\nเสรี\nเสลด\nเสลบรรพต\nเสลา\nเสลี่ยง\nเสลืà¸à¸à¸ªà¸¥à¸™\nเสโล\nเสวà¸\nเสวà¸à¸²à¸¡à¸²à¸•à¸¢à¹Œ\nเสวนะ\nเสวนา\nเสวย\nเสวียน\nเสสรวง\nเสสรวล\nเสา\nเส้า\nเสาร์\nเสารภย์\nเสารี\nเสาวคนธ์\nเสาวธาร\nเสาวภา\nเสาวภาคย์\nเสาวภาพ\nเสาวรภย์\nเสาวรส\nเสาวลัà¸à¸©à¸“์\nเสาวณิต\nเสาวนะ\nเสาวนา\nเสาวนีย์\nเสาหฤท\nเสาะ\nเสาะà¹à¸ªà¸°\nเสิร์จ\nเสิร์ฟ\nเสีย\nเสียง\nเสี่ยง\nเสียด\nเสี้ยน\nเสียบ\nเสียม\nเสี่ยม\nเสี้ยม\nเสียว\nเสี่ยว\nเสี้ยว\nเสืà¸\nเสื่à¸\nเสื้à¸\nเสืà¸à¸\nเสื่à¸à¸¡\nà¹à¸ª\nà¹à¸ªà¹ˆ\nà¹à¸ªà¹‰\nà¹à¸ªà¸\nà¹à¸ªà¸‡\nà¹à¸ªà¸”\nà¹à¸ªà¸”ง\nà¹à¸ªà¸•à¸¡à¸›à¹Œ\nà¹à¸ªà¸™\nà¹à¸ªà¸™à¸¢à¹Œ\nà¹à¸ªà¸™à¸¢à¸²à¸à¸£\nà¹à¸ªà¸™à¸¢à¸²à¸™à¸¸à¸ าพ\nà¹à¸ªà¸š\nà¹à¸ªà¸¡\nà¹à¸ªà¸¢à¸\nà¹à¸ªà¸¢à¸‡\nà¹à¸ªà¸¢à¸°\nà¹à¸ªà¸£à¸\nà¹à¸ªà¸£à¹‰à¸‡\nà¹à¸ªà¸¥à¸‡\nà¹à¸ªà¸¥à¹‰à¸¡\nà¹à¸ªà¸§à¸‡\nà¹à¸ªà¸°\nโสà¸\nโสà¸à¹‚ดà¸\nโสà¸à¸±à¸™à¸•à¹Œ\nโสโครà¸\nโสณฑ์\nโสณิ\nโสณี\nโสด\nโสดà¸\nโสดม\nโสดา\nโสดาบัน\nโสดาปัตติผล\nโสดาปัตติมรรค\nโสต\nโสตทัศนวัสดุ\nโสตทัศนà¸à¸¸à¸›à¸à¸£à¸“์\nโสตทัศนูปà¸à¸£à¸“์\nโสตินทรีย์\nโสตถิ\nโสทà¸\nโสทร\nโสธà¸\nโสธนะ\nโสน\nโสภณ\nโสภา\nโสภี\nโสภิณี\nโสเภณี\nโสม\nโสมนัส\nโสมม\nโสมย์\nโสร่ง\nโสรจ\nโสรวาร\nโสโร\nโสวรรณ\nโสหุ้ย\nโสฬส\nใส\nใส่\nไส\nไส้\nไสย\nไสยา\nไสยาสน์\nไสร้\nไสว\nหà¸\nหà¸à¸„ะเมน\nหง\nหงà¸\nหงส์\nหงสบาท\nหงสรถ\nหงà¸\nหงà¸à¸\nหง่à¸à¸‡\nหงà¸à¸‡à¹à¸«à¸‡à¸‡\nหงà¸à¸”\nหงà¸à¸™\nหง่à¸à¸¡\nหงà¸à¸¢\nหง่à¸à¸¢\nหงัà¸\nหงับ\nหง่าง\nหงาย\nหง่าว\nหงำ\nหงิà¸\nหงิง\nหงิม\nหงึà¸\nหงุงหงิง\nหงุดหงิด\nหงุบ\nหงุ่ย\nหà¸à¹‰à¸²\nหà¸à¹‰à¸²à¸à¸£à¸±à¹ˆà¸™\nหà¸à¹‰à¸²à¸¢à¸²à¸¢à¹€à¸ า\nหà¸à¸´à¸‡\nหà¸à¸´à¸š\nหด\nหตะ\nหทัย\nหน\nหนวà¸\nหน่วง\nหนวด\nหน่วย\nหน่วยà¸à¸´à¸•\nหนà¸\nหน่à¸\nหนà¸à¸\nหนà¸à¸‡\nหนà¸à¸™\nหนà¸à¸™à¸•à¸²à¸¢à¸«à¸¢à¸²à¸\nหน่à¸à¸¢\nหน็à¸à¸¢à¹à¸™à¹ˆ\nหนัà¸\nหนัง\nหนังสติ๊à¸\nหนังสืà¸\nหนั่น\nหนับ\nหนา\nหน้า\nหน่าง\nหนาด\nหนาน\nหนาม\nหน่าย\nหนาว\nหนำ\nหนำเลี้ยบ\nหนี\nหนี้\nหนีบ\nหนึà¸\nหนึ่ง\nหนึบ\nหนืด\nหนุ\nหนุน\nหนุบ\nหนุ่ม\nหนุ่ย\nหนู\nห่ม\nหมà¸\nหมด\nหม่น\nหมวà¸\nหมวด\nหมวน\nหมà¸\nหม่à¸\nหม้à¸\nหมà¸à¸\nหมà¸à¸‡\nหม่à¸à¸‡\nหมà¸à¸™\nหม่à¸à¸™\nหมà¸à¸š\nหม่à¸à¸¡\nหมà¸à¸¢\nหม้à¸à¸«à¹‰à¸à¸¡\nหมัà¸\nหมัà¸à¸«à¸¡à¸¡\nหมัด\nหมัน\nหมั่น\nหมั้น\nหมับ\nหมา\nหม่า\nหมาà¸\nหมาà¸à¸®à¸à¸ª\nหมาง\nหมาด\nหมามุ่ย\nหมามุ้ย\nหมาย\nหม้าย\nหมาร่า\nหม่ำ\nหม้ำ\nหมิ่น\nหมี\nหมี่\nหมึà¸\nหมืน\nหมื่น\nหมุด\nหมุน\nหมุบ\nหมุบหมับ\nหมุบหมิบ\nหมุ่ย\nหมุยขาว\nหมู\nหมู่\nหมูหริ่ง\nหยà¸\nหย่ง\nหยด\nหยวà¸\nหยวบ\nหยà¸à¸\nหยà¸à¸à¹€à¸à¸´à¸™\nหย็à¸à¸à¸«à¸¢à¹‡à¸à¸¢\nหยà¸à¸‡\nหย็à¸à¸‡\nหย่à¸à¸‡\nหย็à¸à¸‡à¸à¸£à¸à¸”\nหย็à¸à¸‡à¹à¸«à¸¢à¹‡à¸‡\nหยà¸à¸”\nหยà¸à¸™\nหย่à¸à¸™\nหย่à¸à¸¡\nหย็à¸à¸¡à¹à¸«à¸¢à¹‡à¸¡\nหย็à¸à¸¢\nหย่à¸à¸¢\nหยัà¸\nหยัà¸à¹„ย่\nหยัà¸à¹€à¸«à¸¢à¸²\nหยัง\nหยั่ง\nหยังหยัง\nหยัด\nหยัน\nหยับ\nหยั่วเมืà¸à¸‡\nหย่า\nหยาà¸à¹€à¸¢à¸·à¹ˆà¸\nหยาà¸à¹„ย่\nหยาด\nหยาบ\nหยาม\nหยาว\nหย้าว\nหยำเป\nหยำเหยà¸à¸°\nหยำà¹à¸«à¸¢à¸°\nหยิà¸\nหยิ่ง\nหยิบ\nหยิม\nหยี\nหยี่\nหยุà¸à¸«à¸¢à¸´à¸\nหยุด\nหยุ่น\nหยุบ\nหยุมหยิม\nหยูà¸à¸¢à¸²\nหโยดม\nหรคุณ\nหรณะ\nหรดาล\nหรดี\nหรรษ์\nหรรษา\nหรà¸\nหรà¸à¸\nหร็à¸à¸¡à¹à¸«à¸£à¹‡à¸¡\nหรà¸à¸¢\nหระ\nหรับ\nหรา\nหริ\nหริ่ง\nหริณะ\nหริต\nหริตà¸à¸µ\nหรีตà¸à¸µ\nหรี่\nหรีด\nหรืà¸\nหรุบ\nหรุบรู่\nหรุบหรู่\nหรุ่ม\nหรู\nหรูหรา\nหฤทัย\nหฤทย์\nหฤษฎ์\nหฤษฎี\nหฤหรรษ์\nหฤโหด\nหลง\nหลงใหล\nหลงจู๊\nหลด\nหลน\nหล่น\nหลบ\nหล่ม\nหลวง\nหลวม\nหลà¸\nหล่à¸\nหลà¸à¸\nหลà¸à¸”\nหลà¸à¸™\nหล็à¸à¸™\nหล่à¸à¸™\nหลà¸à¸¡\nหละ\nหละหลวม\nหลัà¸\nหลัง\nหลั่ง\nหลัด\nหลั่น\nหลับ\nหลัว\nหลา\nหล้า\nหลาà¸\nหลาน\nหลาบ\nหลาม\nหลาย\nหลาว\nหลิ่ง\nหลิท\nหลิน\nหลิม\nหลิว\nหลิ่ว\nหลี\nหลีà¸\nหลีโà¸\nหลีบ\nหลีฮื้à¸\nหลืบ\nหลุà¸à¸«à¸¥à¸´à¸\nหลุด\nหลุน\nหลุบ\nหลุม\nหลุมพà¸\nหลุมพี\nหลู่\nหวง\nห่วง\nห้วง\nหวด\nหวน\nห้วน\nหวย\nห้วย\nหวà¸\nหวà¸à¸”\nหวะ\nหวัง\nหวัด\nหวั่น\nหวันยิหวา\nหวัว\nหวัวร่à¸\nหวัวเราะ\nหวา\nหว่า\nหว้า\nหวาà¸\nหว่าง\nหวาด\nหวาน\nหว่าน\nหวาม\nหวาย\nหวำ\nหวิด\nหวิว\nหวี\nหวี่\nหวีด\nหวืà¸\nหวุดหวิด\nหวูด\nหà¸\nห่à¸\nห้à¸\nหà¸à¸\nหà¸à¸‡\nห้à¸à¸‡\nหà¸à¸™\nห่à¸à¸™\nหà¸à¸š\nหà¸à¸¡\nห้à¸à¸¡\nหà¸à¸¢\nห้à¸à¸¢\nหะ\nหะยี\nหะหาย\nหัà¸\nหัจà¸à¹Œ\nหัจà¸à¸µ\nหัช\nหัà¸à¸à¸°\nหัด\nหัต\nหัตถ์\nหัตถà¸à¸£à¸£à¸¡\nหัตถà¸à¸²à¸£\nหัตถà¸à¸´à¸ˆ\nหัตถบาส\nหัตถพันธ์\nหัตถาภรณ์\nหัตถศาสตร์\nหัตถศิลป์\nหัตถศึà¸à¸©à¸²\nหัตถาจารย์\nหัตถินี\nหัตถี\nหัน\nหั่น\nหั้น\nหันตรา\nหับ\nหัย\nหัว\nหัวร่à¸\nหัวเราะ\nหัส\nหัสดิน\nหัสดี\nหัสต์\nหัสตะ\nหา\nห่า\nห้า\nหาà¸\nหาง\nห่าง\nห้าง\nหาà¸\nหาด\nห่าน\nหาบ\nหาม\nห่าม\nห้าม\nหาย\nหายใจ\nหายนะ\nหาร\nหารืà¸\nหาว\nห้าว\nหาสะ\nหำ\nห้ำ\nหิ้ง\nหิงคุ\nหิงสา\nหิงห้à¸à¸¢\nหิ่งห้à¸à¸¢\nหิ่งหาย\nหิด\nหิต\nหิตานุหิตประโยชน์\nหิน\nหิมพาน\nหิมพานต์\nหิมวัต\nหิมวันต์\nหิมวา\nหิมะ\nหิมาลัย\nหิรัà¸\nหิรัà¸à¸à¸´à¸à¸²à¸£à¹Œ\nหิรัà¸à¸šà¸±à¸\nหิรัณย์\nหิรัณยรัศมี\nหิริ\nหิว\nหิ้ว\nหี\nหีด\nหีนยาน\nหีบ\nหึ\nหึง\nหึ่ง\nหึงสา\nหืด\nหืน\nหื่น\nหืà¸\nหื้à¸\nหุง\nหุน\nหุ่น\nหุ้น\nหุนหัน\nหุบ\nหุ้ม\nหุยฮา\nหู\nหู่\nหูà¸\nหูด\nเห\nเห่\nเหง\nเหง่ง\nเหงา\nเหง้า\nเหงื่à¸\nเหงืà¸à¸\nเห็จ\nเห็ด\nเหติ\nเหตุ\nเห็น\nเหน่ง\nเหนงนายพราน\nเหน็ดเหนื่à¸à¸¢\nเหน็บ\nเหน่à¸\nเห็นà¸à¹‰à¸¡\nเหนà¸à¸°\nเหนà¸à¸°à¸«à¸™à¸°\nเหน้า\nเหนาะ\nเหนียง\nเหนี่ยง\nเหนี่ยน\nเหนียม\nเหนียว\nเหนี่ยว\nเหนืà¸\nเหนื่à¸à¸¢\nเห็บ\nเหม\nเหม่\nเหม็ง\nเหม่ง\nเหม็น\nเหมวดี\nเหม่à¸\nเหมันต์\nเหมันตฤดู\nเหมา\nเหมายัน\nเหมาะ\nเหมียว\nเหมี่ยว\nเหมืà¸à¸‡\nเหมืà¸à¸”\nเหมืà¸à¸™\nเหมื่à¸à¸¢\nเหย\nเหยง\nเหย่à¸à¸¢\nเหยา\nเหย่า\nเหย้า\nเหยาะ\nเหยาะà¹à¸«à¸¢à¸°\nเหยิง\nเหยิบ\nเหยียด\nเหยียบ\nเหยี่ยว\nเหยื่à¸\nเหยืà¸à¸\nเหรà¸\nเหรà¸à¸°\nเหรัà¸à¸à¸´à¸\nเหรา\nเหราะ\nเหรียà¸\nเหล่\nเหล็à¸\nเหลน\nเหลว\nเหลà¸\nเหลา\nเหล่า\nเหล้า\nเหลาะà¹à¸«à¸¥à¸°\nเหลิง\nเหลิงเจิ้ง\nเหลียน\nเหลี่ยม\nเหลียว\nเหลืà¸\nเหลืà¸à¸\nเหลืà¸à¸‡\nเหลืà¸à¸š\nเหลืà¸à¸¡\nเหลื่à¸à¸¡\nเหว\nเหว่\nเหวง\nเหวย\nเหวà¸à¸°\nเหวà¸à¸°à¸«à¸§à¸°\nเหวี่ยง\nเห่à¸\nเหà¸à¸°\nเหะ\nเหะหะ\nเหา\nเห่า\nเหาะ\nเหิน\nเหิม\nเหี้ย\nเหียง\nเหียน\nเหี้ยน\nเหี้ยม\nเหี่ยว\nเหื่à¸\nเหืà¸à¸”\nà¹à¸«\nà¹à¸«à¹ˆ\nà¹à¸«à¹‰\nà¹à¸«à¸\nà¹à¸«à¸‡\nà¹à¸«à¸‡à¹ˆ\nà¹à¸«à¹ˆà¸‡\nà¹à¸«à¹‰à¸‡\nà¹à¸«à¸‡à¹à¸à¹‹\nà¹à¸«à¸‡à¹ˆà¸‡\nà¹à¸«à¸‡à¸™\nà¹à¸«à¸™\nà¹à¸«à¹‰à¸™\nà¹à¸«à¸™à¸‡\nà¹à¸«à¸™à¸š\nà¹à¸«à¸™à¸¡\nà¹à¸«à¸š\nà¹à¸«à¸¡\nà¹à¸«à¸¡à¹ˆ\nà¹à¸«à¸¡à¹ˆà¸¡\nà¹à¸«à¸¡à¸°\nà¹à¸«à¸¢\nà¹à¸«à¸¢à¹ˆ\nà¹à¸«à¸¢à¸‡\nà¹à¸«à¸¢à¹ˆà¸‡\nà¹à¸«à¸¢à¸¡\nà¹à¸«à¸¢à¹‡à¸¡\nà¹à¸«à¸¢à¸°\nà¹à¸«à¸¥à¹ˆ\nà¹à¸«à¸¥à¸\nà¹à¸«à¸¥à¹ˆà¸‡\nà¹à¸«à¸¥à¸™\nà¹à¸«à¸¥à¸¡\nà¹à¸«à¸¥à¸°\nà¹à¸«à¸§\nà¹à¸«à¹‰à¸§\nà¹à¸«à¸§à¸\nà¹à¸«à¸§à¹ˆà¸‡\nà¹à¸«à¸§à¸”\nà¹à¸«à¸§à¸™\nà¹à¸«à¸§à¸°\nà¹à¸«à¸°\nโห่\nโหง\nโหด\nโหน\nโหนà¸\nโหน่ง\nโหม\nโหม่ง\nโหมด\nโหย\nโหยà¸à¹€à¸«à¸¢à¸\nโหยง\nโหย่ง\nโหร\nโหรง\nโหรงเหรง\nโหรดาจารย์\nโหระพา\nโหรา\nโหราจารย์\nโหราศาสตร์\nโหล\nโหล่\nโหลงโจ้ง\nโหว\nโหว่\nโหว้\nโหวà¸à¹€à¸«à¸§à¸\nโหวง\nโหวด\nโหวต\nให้\nใหà¸à¹ˆ\nใหม่\nไห\nไห่\nไห้\nไหน\nไหม\nไหม้\nไหรณย์\nไหล\nไหล่\nไหว\nไหว้\nไหหลำ\nà¸à¸\nà¸à¸à¸•à¹€à¸§à¸—ิตา\nà¸à¸à¸•à¹€à¸§à¸—ี\nà¸à¸à¸•à¸±à¸à¸à¸¸à¸•à¸²\nà¸à¸à¸•à¸±à¸à¸à¸¹\nà¸à¸à¸™à¸´à¸©à¸à¹Œ\nà¸à¸à¸£à¸“ีย์\nà¸à¸à¸£à¸£à¸¡à¸à¸£à¸´à¸¢à¸²\nà¸à¸à¸±à¸›à¸›à¸´à¸¢à¸§à¸±à¸•à¸–ุ\nà¸à¸à¸±à¸›à¸›à¸´à¸¢à¸°\nà¸à¸à¸¸à¸¨à¸¥\nà¸à¸„ติ\nà¸à¸„าธ\nà¸à¹‚ฆษะ\nà¸à¸‡à¸à¹Œ\nà¸à¸‡à¸„์\nà¸à¸‡à¸„ชาต\nà¸à¸‡à¸„มนตรี\nà¸à¸‡à¸„รัà¸à¸©à¹Œ\nà¸à¸‡à¸„าพยพ\nà¸à¸‡à¸„ุลี\nà¸à¸‡à¸¨à¹Œ\nà¸à¸‡à¸¨à¸²\nà¸à¸‡à¸à¸²à¸ˆ\nà¸à¸‡à¸¸à¹ˆà¸™\nà¸à¸ˆà¸¥à¸²\nà¸à¸ˆà¸´à¸™à¸•à¸²\nà¸à¸ˆà¸´à¸™à¹„ตย\nà¸à¸ˆà¸´à¸£à¸°\nà¸à¹€à¸ˆà¸¥à¸\nà¸à¹€à¸ˆà¸¥à¸°\nà¸à¸Šà¸°\nà¸à¸Šà¸´à¸™\nà¸à¸Šà¸´à¸™à¸µ\nà¸à¸Šà¸´à¸£à¸°\nà¸à¸à¸§à¸µ\nà¸à¸“ิ\nà¸à¸“ู\nà¸à¹‚ณทัย\nà¸à¸”\nà¸à¸”ิถี\nà¸à¸”ิเทพ\nà¸à¸”ิเรà¸\nà¸à¸”ิศร\nà¸à¸”ิศวร\nà¸à¸”ิศัย\nà¸à¸”ีต\nà¸à¸”ุล\nà¸à¸”ุลย์\nà¸à¸•à¸´\nà¸à¸•à¸´à¸Šà¸²à¸•\nà¸à¸•à¸´à¸¡à¸²à¸™à¸°\nà¸à¸•à¸´à¸£à¸²à¸Š\nà¸à¸•à¸´à¹€à¸£à¸\nà¸à¸•à¸´à¸ªà¸²à¸£\nà¸à¸–รรพเวท\nà¸à¸²à¸–รรพเวท\nà¸à¸—ระ\nà¸à¸—ินนาทาน\nà¸à¸˜à¸£à¸£à¸¡\nà¸à¸˜à¸´\nà¸à¸˜à¸´à¸à¸¡à¸²à¸ª\nà¸à¸˜à¸´à¸à¸£à¸“์\nà¸à¸˜à¸´à¸à¸§à¸²à¸£\nà¸à¸˜à¸´à¸à¸ªà¸¸à¸£à¸—ิน\nà¸à¸˜à¸´à¸à¸²à¸£\nà¸à¸˜à¸´à¸„ม\nà¸à¸˜à¸´à¸à¸à¸²à¸™\nà¸à¸˜à¸´à¸šà¸”ี\nà¸à¸˜à¸´à¸šà¸²à¸¢\nà¸à¸˜à¸´à¸›\nà¸à¸˜à¸´à¸›à¹„ตย\nà¸à¸˜à¸´à¸¡à¸²à¸•à¸£\nà¸à¸˜à¸´à¸¡à¸¸à¸•à¸•à¸´\nà¸à¸˜à¸´à¹‚มà¸à¸‚์\nà¸à¸˜à¸´à¸£à¸²à¸Š\nà¸à¸˜à¸´à¸§à¸²à¸ª\nà¸à¸˜à¸´à¸§à¸²à¸ªà¸™à¸°\nà¸à¸˜à¸´à¸¨à¸µà¸¥\nà¸à¸˜à¸´à¸©à¸à¸²à¸™\nà¸à¸˜à¸¶à¸\nà¸à¹‰à¸™\nà¸à¸™à¸‡à¸„์\nà¸à¸™à¸‡à¸„ณะ\nà¸à¸™à¸‡à¸„เลขา\nà¸à¸™à¸˜à¸à¸²à¸£\nà¸à¸™à¸™à¸•à¹Œ\nà¸à¸™à¸¢à¸°\nà¸à¸™à¸£à¸£à¸†\nà¸à¸™à¸£à¸£à¸–\nà¸à¸™à¸¥\nà¸à¸™à¸§à¸±à¸Š\nà¸à¸™à¸±à¸\nà¸à¸™à¸±à¸•à¸•à¸²\nà¸à¸™à¸±à¸™à¸•à¹Œ\nà¸à¸™à¸±à¸™à¸•à¸£à¸´à¸¢à¸à¸£à¸£à¸¡\nà¸à¸™à¸±à¸¡\nà¸à¸™à¸²à¸„ต\nà¸à¸™à¸²à¸„ามิผล\nà¸à¸™à¸²à¸„ามิมรรค\nà¸à¸™à¸²à¸„ามี\nà¸à¸™à¸²à¸ˆà¸²à¸£\nà¸à¸™à¸²à¸–\nà¸à¸™à¸²à¸–า\nà¸à¸™à¸²à¸—ร\nà¸à¸™à¸²à¸˜à¸´à¸›à¹„ตย\nà¸à¸™à¸²à¸¡à¸±à¸¢\nà¸à¸™à¸²à¸¡à¸´à¸à¸²\nà¸à¸™à¸²à¸£à¸¢à¸Šà¸™\nà¸à¸™à¸²à¸£à¸¢à¸˜à¸£à¸£à¸¡\nà¸à¸™à¸²à¸£à¸¢à¸°\nà¸à¸™à¸²à¸¥à¸±à¸¢\nà¸à¸™à¸³\nà¸à¸™à¸´à¸ˆ\nà¸à¸™à¸´à¸ˆà¸ˆà¸±à¸‡\nà¸à¸™à¸´à¸ˆà¸ˆà¸²\nà¸à¸™à¸´à¸à¸à¸²à¸£à¸¡à¸“์\nà¸à¸™à¸´à¸¢à¸•\nà¸à¸™à¸´à¸¢à¸¡\nà¸à¸™à¸´à¸¥\nà¸à¸™à¸´à¸§à¸£à¸£à¸•\nà¸à¸™à¸´à¸§à¸£à¸£à¸•à¸™à¹Œ\nà¸à¸™à¸µà¸à¸°\nà¸à¸™à¸µà¸ˆà¸°\nà¸à¸™à¸¶à¸\nà¸à¸™à¸¶à¹ˆà¸‡\nà¸à¸™à¸¸\nà¸à¸™à¸¸à¸à¸£\nà¸à¸™à¸¸à¸à¸£à¸¡\nà¸à¸™à¸¸à¸à¸£à¸£à¸¡à¸à¸²à¸£\nà¸à¸™à¸¸à¸à¸£à¸°à¹€à¸šà¸µà¸¢à¸”\nà¸à¸™à¸¸à¸à¸²à¸Šà¸²à¸”\nà¸à¸™à¸¸à¸à¸²à¸£\nà¸à¸™à¸¸à¸à¸¹à¸¥\nà¸à¸™à¸¸à¸„ามิà¸\nà¸à¸™à¸¸à¹€à¸„ราะห์\nà¸à¸™à¸¸à¸ˆà¸£\nà¸à¸™à¸¸à¸Š\nà¸à¸™à¸¸à¸Šà¸™\nà¸à¸™à¸¸à¸Šà¸²\nà¸à¸™à¸¸à¸Šà¸²à¸•\nà¸à¸™à¸¸à¸Šà¸´à¸•\nà¸à¸™à¸¸à¸à¸²à¸•\nà¸à¸™à¸¸à¸à¸²à¹‚ตตุลาà¸à¸²à¸£\nà¸à¸™à¸¸à¸•à¸£\nà¸à¸™à¸¸à¹€à¸–ระ\nà¸à¸™à¸¸à¸—ิน\nà¸à¸™à¸¸à¸šà¸—\nà¸à¸™à¸¸à¸šà¸²à¸¥\nà¸à¸™à¸¸à¸›à¸£à¸°à¹‚ยค\nà¸à¸™à¸¸à¸›à¸£à¸´à¸à¸à¸²\nà¸à¸™à¸¸à¸›à¸ªà¸±à¸¡à¸šà¸±à¸™\nà¸à¸™à¸¸à¸›à¸±à¸ªà¸™à¸²\nà¸à¸™à¸¸à¸žà¸‡à¸¨à¹Œ\nà¸à¸™à¸¸à¸žà¸±à¸—ธ์\nà¸à¸™à¸¸à¸žà¸±à¸™à¸˜à¹Œ\nà¸à¸™à¸¸à¹‚พธ\nà¸à¸™à¸¸à¸ รรยา\nà¸à¸™à¸¸à¸ ริยา\nà¸à¸™à¸¸à¸ าค\nà¸à¸™à¸¸à¸ าษ\nà¸à¸™à¸¸à¸¡à¸±à¸•à¸´\nà¸à¸™à¸¸à¸¡à¸²à¸•à¸£à¸²\nà¸à¸™à¸¸à¸¡à¸²à¸™\nà¸à¸™à¸¸à¸¡à¸¹à¸¥\nà¸à¸™à¸¸à¹‚มทนา\nà¸à¸™à¸¸à¹‚ยค\nà¸à¸™à¸¸à¸£à¸±à¸à¸©à¹Œ\nà¸à¸™à¸¸à¸£à¸±à¸à¸©à¸™à¸´à¸¢à¸¡\nà¸à¸™à¸¸à¸£à¸²à¸Š\nà¸à¸™à¸¸à¸£à¸²à¸˜\nà¸à¸™à¸¸à¸£à¸²à¸˜à¸°\nà¸à¸™à¸¸à¸£à¸²à¸˜à¸²\nà¸à¸™à¸¸à¸£à¸¹à¸›\nà¸à¸™à¸¸à¹‚ลม\nà¸à¸™à¸¸à¸§à¸‡à¸¨à¹Œ\nà¸à¸™à¸¸à¸§à¸£à¸£à¸•à¸™à¹Œ\nà¸à¸™à¸¸à¸§à¸±à¸•\nà¸à¸™à¸¸à¸§à¸±à¸•à¸™à¹Œ\nà¸à¸™à¸¸à¸§à¸±à¸•à¸£\nà¸à¸™à¸¸à¸§à¸±à¸•à¸´\nà¸à¸™à¸¸à¸§à¸²à¸•\nà¸à¸™à¸¸à¸¨à¸²à¸ªà¸\nà¸à¸™à¸¸à¸¨à¸²à¸ªà¸™à¹Œ\nà¸à¸™à¸¸à¸¨à¸²à¸ªà¸™à¸²à¸ˆà¸²à¸£à¸¢à¹Œ\nà¸à¸™à¸¸à¸¨à¸´à¸©à¸à¹Œ\nà¸à¸™à¸¸à¸ªà¸•à¸´\nà¸à¸™à¸¸à¸ªà¸™à¸˜à¸´\nà¸à¸™à¸¸à¸ªà¸£\nà¸à¸™à¸¸à¸ªà¸£à¸“์\nà¸à¸™à¸¸à¸ªà¸±à¸à¸à¸²\nà¸à¸™à¸¸à¸ªà¸±à¸¢\nà¸à¸™à¸¸à¸ªà¸²à¸§à¸£à¸µà¸¢à¹Œ\nà¸à¸™à¸¸à¸ªà¸²à¸ªà¸™à¸µ\nà¸à¹€à¸™à¸\nà¸à¹€à¸™à¸à¸„ุณ\nà¸à¹€à¸™à¸à¸£à¸£à¸–ประโยค\nà¸à¹€à¸™à¸ˆà¸à¸™à¸²à¸–\nà¸à¹‚นชา\nà¸à¹‚นดาต\nà¸à¸š\nà¸à¸šà¹€à¸Šà¸¢\nà¸à¸šà¸²à¸¢\nà¸à¸›à¸ˆà¸²à¸¢à¸™à¸˜à¸£à¸£à¸¡\nà¸à¸›à¸ˆà¸²à¸¢à¸™à¸¡à¸±à¸¢\nà¸à¸›à¸¡à¸‡à¸„ล\nà¸à¸›à¸¢à¸¨\nà¸à¸›à¸£à¸°à¹„มย\nà¸à¸›à¸£à¸±à¸“ณชาติ\nà¸à¸›à¸£à¸²\nà¸à¸›à¸£à¸²à¸Šà¸±à¸¢\nà¸à¸›à¸£à¸²à¸Šà¸´à¸•\nà¸à¸›à¸£à¸´à¸¡à¸²à¸“\nà¸à¸›à¸¥à¸±à¸à¸©à¸“์\nà¸à¸›à¹‚ลà¸à¸™à¹Œ\nà¸à¸›à¸§à¸²à¸—\nà¸à¹€à¸›à¸«à¸´\nà¸à¸žà¸žà¸°\nà¸à¸žà¸¢à¸ž\nà¸à¸ ัพ\nà¸à¸ ัย\nà¸à¸ ิ\nà¸à¸ ิฆาต\nà¸à¸ ิชฌา\nà¸à¸ ิชน\nà¸à¸ ิชนาธิปไตย\nà¸à¸ ิชัย\nà¸à¸ ิชาต\nà¸à¸ ิชิต\nà¸à¸ ิà¸à¸à¸²\nà¸à¸ ิà¸à¸à¸²à¸“\nà¸à¸ ิธรรม\nà¸à¸ ิธาน\nà¸à¸ ิไธย\nà¸à¸ ินันท์\nà¸à¸ ินันทนาà¸à¸²à¸£\nà¸à¸ ินัย\nà¸à¸ ินิหาร\nà¸à¸ ิเนษà¸à¸£à¸¡à¸“์\nà¸à¸ ิบาล\nà¸à¸ ิปรัชà¸à¸²\nà¸à¸ ิปราย\nà¸à¸ ิมหาà¸à¸³à¸™à¸²à¸ˆ\nà¸à¸ ิมานะ\nà¸à¸ ิมุข\nà¸à¸ ิรดี\nà¸à¸ ิรติ\nà¸à¸ ิรมย์\nà¸à¸ ิรัà¸à¸©à¹Œ\nà¸à¸ ิราม\nà¸à¸ ิรุต\nà¸à¸ ิรุม\nà¸à¸ ิรูป\nà¸à¸ ิลัà¸à¸‚ิต\nà¸à¸ ิลัà¸à¸‚ิตสมัย\nà¸à¸ ิเลปน์\nà¸à¸ ิวันท์\nà¸à¸ ิวาท\nà¸à¸ ิวาทน์\nà¸à¸ ิเษà¸\nà¸à¸ ิสมโพธิ\nà¸à¸ ิสมัย\nà¸à¸ ิสมาจาร\nà¸à¸ ิสัมโพธิ\nà¸à¸ ิสัมโพธิà¸à¸²à¸“\nà¸à¸ ิสิต\nà¸à¸ ิสิทธิ์\nà¸à¸ ูตะ\nà¸à¸¡\nà¸à¸¡à¸žà¸°à¸™à¸³\nà¸à¹‰à¸¡\nà¸à¸¡à¸•à¸˜à¸£à¸£à¸¡\nà¸à¸¡à¸•à¸šà¸—\nà¸à¸¡à¸•à¸°\nà¸à¸¡à¸™à¸¸à¸©à¸¢à¹Œ\nà¸à¸¡à¸£\nà¸à¸¡à¸£à¸²\nà¸à¸¡à¸£à¸²à¸§à¸”ี\nà¸à¸¡à¸£à¸´à¸™à¸—ร์\nà¸à¸¡à¹€à¸£à¸™à¸—ร์\nà¸à¸¡à¹€à¸£à¸¨\nà¸à¸¡à¸¤à¸•\nà¸à¸¡à¸±à¸•à¸£\nà¸à¸¡à¸²à¸•à¸¢à¹Œ\nà¸à¸¡à¸²à¸§à¸ªà¸µ\nà¸à¸¡à¸²à¸§à¸ªà¸¸\nà¸à¸¡à¸²à¸§à¸²à¸ªà¸µ\nà¸à¸¡à¸´à¸•à¸£\nà¸à¹€à¸¡à¸£à¸´à¸à¸±à¸™\nà¸à¸¢à¹ˆà¸²\nà¸à¸¢à¸²à¸\nà¸à¸¢à¹ˆà¸²à¸‡\nà¸à¸¢à¸¸à¸—ธ์\nà¸à¸¢à¸¹à¹ˆ\nà¸à¸£\nà¸à¸£à¸Šà¸£\nà¸à¸£à¸Šà¸¸à¸™\nà¸à¸£à¸”ี\nà¸à¸£à¸•à¸´\nà¸à¸£à¸—ัย\nà¸à¸£à¹„ท\nà¸à¸£à¸™à¸¸à¸Š\nà¸à¸£à¸žà¸´à¸™à¸—์\nà¸à¸£à¸žà¸´à¸¡\nà¸à¸£à¸£à¸„\nà¸à¸£à¸£à¸†\nà¸à¸£à¸£à¸†à¸¢à¹Œ\nà¸à¸£à¸£à¸ˆà¸™à¹Œ\nà¸à¸£à¸£à¸“พ\nà¸à¸£à¸£à¸–\nà¸à¸£à¸£à¸–à¸à¸–า\nà¸à¸£à¸£à¸–à¸à¸–าจารย์\nà¸à¸£à¸£à¸–าธิบาย\nà¸à¸£à¸£à¸˜\nà¸à¸£à¸ªà¸¸à¸¡\nà¸à¸£à¸«à¸°\nà¸à¸£à¸«à¸±à¸‡\nà¸à¸£à¸«à¸±à¸•\nà¸à¸£à¸«à¸±à¸•à¸œà¸¥\nà¸à¸£à¸«à¸±à¸•à¸¡à¸£à¸£à¸„\nà¸à¸£à¸«à¸±à¸™\nà¸à¸£à¸«à¸±à¸™à¸•à¹Œ\nà¸à¸£à¸«à¸±à¸™à¸•à¸†à¸²à¸•\nà¸à¸£à¹ˆà¸à¸¢\nà¸à¸£à¸±à¸\nà¸à¸£à¸±à¸à¸à¸´à¸\nà¸à¸£à¸±à¸à¸§à¸²à¸ª\nà¸à¸£à¸±à¸à¸§à¸²à¸ªà¸µ\nà¸à¸£à¸±à¸“ย์\nà¸à¸£à¸²à¸”ี\nà¸à¸£à¹ˆà¸²à¸¡\nà¸à¸£à¸´\nà¸à¸£à¸´à¸™à¸—ร์\nà¸à¸£à¸´à¸™\nà¸à¸£à¸´à¸¢à¸à¸°\nà¸à¸£à¸´à¸¢à¸—รัพย์\nà¸à¸£à¸´à¸¢à¸šà¸¸à¸„คล\nà¸à¸£à¸´à¸¢à¸œà¸¥\nà¸à¸£à¸´à¸¢à¸¡à¸£à¸£à¸„\nà¸à¸£à¸´à¸¢à¸ªà¸±à¸ˆ\nà¸à¸£à¸´à¸¢à¸°\nà¸à¸£à¸¸à¸“\nà¸à¸£à¸¸à¹‚ณทัย\nà¸à¸£à¸¸à¹ˆà¸¡\nà¸à¸£à¸¹à¸›\nà¸à¸¥à¸‡à¸à¸•\nà¸à¸¥à¸‡à¸à¸£à¸“์\nà¸à¸¥à¸‡à¸à¸²à¸£\nà¸à¸¥à¸§à¸™\nà¸à¸¥à¹€à¸§à¸‡\nà¸à¸¥à¸«à¸¡à¹ˆà¸²à¸™\nà¸à¸¥à¹ˆà¸à¸‡à¸‰à¹ˆà¸à¸‡\nà¸à¸¥à¸±à¸à¹€à¸à¸¥à¸·à¹ˆà¸\nà¸à¸¥à¸±à¸‡à¸à¸²à¸£\nà¸à¸¥à¸±à¸Šà¸Šà¸µ\nà¸à¸¥à¹ˆà¸²à¸‡à¸‰à¹ˆà¸²à¸‡\nà¸à¸¥à¸´à¸‡à¸„์\nà¸à¸¥à¸¶à¸‡à¸„์\nà¸à¸¥à¸¶à¹ˆà¸‡à¸‰à¸¶à¹ˆà¸‡\nà¸à¹‚ลหะ\nà¸à¹‰à¸§à¸\nà¸à¸§à¸à¸²à¸¨\nà¸à¸§à¸ˆà¸£\nà¸à¸§à¸Šà¸±à¸¢\nà¸à¸§à¸Šà¸²à¸•\nà¸à¸§à¸”\nà¸à¸§à¸•à¸²à¸£\nà¸à¸§à¸™\nà¸à¹‰à¸§à¸™\nà¸à¸§à¸š\nà¸à¸§à¸¡à¸‡à¸„ล\nà¸à¸§à¸¢\nà¸à¸§à¸¢à¸§à¸°\nà¸à¸§à¸£à¸£à¸„\nà¸à¸§à¸£à¸¸à¸—ธ์\nà¸à¸§à¸£à¸¸à¸—ธà¸\nà¸à¸§à¸¥\nà¸à¸§à¸ªà¸²à¸™\nà¸à¸§à¸«à¸²à¸£\nà¸à¸§à¸±à¸¢à¸§à¸°\nà¸à¸§à¸±à¸ªà¸”า\nà¸à¸§à¸²à¸ˆà¸µ\nà¸à¸§à¸´à¸ˆà¸µ\nà¸à¸§à¸´à¸Šà¸Šà¸²\nà¸à¸§à¸´à¸à¸à¸²à¸“à¸à¸—รัพย์\nà¸à¸§à¸´à¸à¸à¸¹\nà¸à¸§à¸´à¸£à¸¸à¸—ธ์\nà¸à¸§à¸´à¹‚รธน์\nà¸à¸§à¸´à¹‚รธนะ\nà¸à¸§à¸´à¸«à¸´à¸‡à¸ªà¸²\nà¸à¸§à¸µà¸ˆà¸´\nà¸à¹€à¸§à¸ˆà¸µ\nà¸à¹‚ศà¸\nà¸à¸ªà¸‡à¹„ขย\nà¸à¸ªà¸™à¸µ\nà¸à¸±à¸ªà¸™à¸µ\nà¸à¸ªà¸™à¸µà¸šà¸²à¸•\nà¸à¸ªà¸ ะ\nà¸à¸ªà¸¡à¸à¸²à¸£\nà¸à¸ªà¸¡à¸¡à¸²à¸•à¸£\nà¸à¸ªà¸£à¸žà¸´à¸©\nà¸à¸ªà¸±à¸‡à¸«à¸²à¸£à¸´à¸¡à¸—รัพย์\nà¸à¸ªà¸±à¸‡à¸«à¸²à¸£à¸´à¸¡à¸°\nà¸à¸ªà¸±à¸à¸à¸£à¸£à¸¡\nà¸à¸ªà¸±à¸à¸à¸µ\nà¸à¸ªà¸±à¸à¹à¸”หวา\nà¸à¸ªà¸±à¸•à¸–พฤà¸à¸©à¹Œ\nà¸à¸±à¸ªà¸ªà¸±à¸•à¸–พฤà¸à¸©à¹Œ\nà¸à¸ªà¸±à¸•à¸¢à¹Œ\nà¸à¸ªà¸±à¸¡à¸ ิน\nà¸à¸ªà¸±à¸¡à¸ ินพงศ์\nà¸à¸ªà¸±à¸¡à¸ ินวงศ์\nà¸à¸ªà¸´\nà¸à¸ªà¸´à¸˜à¸²à¸£à¸²\nà¸à¸ªà¸´à¸•\nà¸à¸ªà¸´à¹€à¸¥à¸ªà¸°\nà¸à¸ªà¸µà¸•à¸¢à¸²à¸™à¸¸à¸žà¸¢à¸±à¸à¸Šà¸™à¸°\nà¸à¸ªà¸µà¸•à¸´\nà¸à¸ªà¸¸\nà¸à¸ªà¸¸à¸ˆà¸´\nà¸à¸ªà¸¸à¸™à¸µà¸šà¸²à¸•\nà¸à¸ªà¸¸à¸ \nà¸à¸ªà¸¸à¸£à¸à¸²à¸¢\nà¸à¸ªà¸¸à¸£à¸²\nà¸à¸ªà¸¸à¸£à¸µ\nà¸à¸ªà¸¸à¹€à¸£à¸¨\nà¸à¸ªà¸¹à¸£\nà¸à¹€à¸ªà¸à¸‚บุคคล\nà¸à¹€à¸ªà¸à¸‚ะ\nà¸à¹€à¸ªà¸‚บุคคล\nà¸à¹€à¸ªà¸‚ะ\nà¸à¸«à¸±à¸‡à¸à¸²à¸£\nà¸à¸«à¸´\nà¸à¸«à¸´à¸‡à¸ªà¸²\nà¸à¸«à¸´à¸§à¸²à¸•à¹Œ\nà¸à¸«à¸´à¸§à¸²à¸•à¸à¹‚รค\nà¸à¸«à¸¶à¸‡à¸ªà¸²\nà¸à¹€à¸«à¸•à¸¸à¸à¸—ิà¸à¸´\nà¸à¹‚หสิ\nà¸à¸\nà¸à¹‰à¸\nà¸à¹‹à¸\nà¸à¸à¸\nà¸à¸à¸à¸‹à¸´à¹€à¸ˆà¸™\nà¸à¸à¸à¸‹à¸´à¹€à¸”ชัน\nà¸à¸à¸à¹„ซด์\nà¸à¸à¸à¸à¸²\nà¸à¹ˆà¸à¸‡\nà¸à¹‹à¸à¸‡\nà¸à¹‰à¸à¸‡à¹à¸à¹‰à¸‡\nà¸à¸à¹€à¸‹à¸²à¸°\nà¸à¸à¸”\nà¸à¹Šà¸à¸”\nà¸à¹Šà¸à¸”à¹à¸à¹Šà¸”\nà¸à¹ˆà¸à¸™\nà¸à¹‰à¸à¸™\nà¸à¸à¸™à¸‹à¹Œ\nà¸à¸à¸™à¸‹à¸à¸™\nà¸à¹‰à¸à¸™à¹à¸à¹‰à¸™\nà¸à¸à¸Ÿà¸Ÿà¸´à¸¨\nà¸à¸à¸¡\nà¸à¹ˆà¸à¸¡\nà¸à¹‰à¸à¸¡\nà¸à¸à¸¡à¸Šà¸à¸¡\nà¸à¸à¸¡à¸‹à¸à¸¡\nà¸à¹‰à¸à¸¡à¹à¸à¹‰à¸¡\nà¸à¹ˆà¸à¸¢\nà¸à¹‰à¸à¸¢\nà¸à¹‹à¸à¸¢\nà¸à¹‰à¸à¸¢à¸ªà¹‰à¸à¸¢\nà¸à¹‰à¸à¸¢à¸à¸´à¹ˆà¸‡\nà¸à¸à¸ªà¹€à¸¡à¸µà¸¢à¸¡\nà¸à¹‰à¸à¹à¸à¹‰\nà¸à¹Šà¸°\nà¸à¸°à¸„ร้าว\nà¸à¸°à¹€à¸„ื้à¸\nà¸à¸°à¹à¸ˆ\nà¸à¸°à¹€à¸‹à¸—ิลีน\nà¸à¸°à¸”รีนาลิน\nà¸à¸°à¸”ุง\nà¸à¸°à¸•à¸à¸¡\nà¸à¸°à¸¡à¸µà¸šà¸²\nà¸à¸°à¹€à¸¡à¸£à¸´à¹€à¸‹à¸µà¸¢à¸¡\nà¸à¸°à¸£à¹‰à¸²à¸à¸£à¹ˆà¸²à¸¡\nà¸à¸°à¹„ร\nà¸à¸°à¸¥à¸¸à¹ˆà¸¡à¸à¸¥à¹ˆà¸§à¸¢\nà¸à¸°à¸¥à¸¸à¹‰à¸¡à¸à¸¥à¹ˆà¸§à¸¢\nà¸à¸°à¸¥à¸¹à¸¡à¸´à¹€à¸™à¸µà¸¢à¸¡\nà¸à¸°à¸«à¸¡\nà¸à¸°à¹„หล่\nà¸à¸±à¸\nà¸à¸±à¹‰à¸\nà¸à¸±à¹Šà¸\nà¸à¸±à¸à¸à¸°\nà¸à¸±à¸à¹‚à¸à¸˜à¸°\nà¸à¸±à¸à¸‚รวิธี\nà¸à¸±à¸à¸‚รวิบัติ\nà¸à¸±à¸à¸‚รสมัย\nà¸à¸±à¸à¸‚ระ\nà¸à¸±à¸à¸‚รานุà¸à¸£à¸¡\nà¸à¸±à¸à¸‚ะ\nà¸à¸±à¸à¹‚ข\nà¸à¸±à¸à¹‚ขภิณี\nà¸à¸±à¸à¹‚ขเภณี\nà¸à¸±à¸à¸©à¸£\nà¸à¸±à¸à¸©à¸°\nà¸à¸±à¸à¹€à¸©à¸²à¸«à¸´à¸“ี\nà¸à¸±à¸à¹€à¸ªà¸š\nà¸à¸±à¸à¸à¹ˆà¸§à¸™\nà¸à¸±à¸„คะ\nà¸à¸±à¸„คิ\nà¸à¸±à¸„คี\nà¸à¸±à¸„นิ\nà¸à¸±à¸„นี\nà¸à¸±à¸„ร\nà¸à¸±à¸„รชายา\nà¸à¸±à¸„รมเหสี\nà¸à¸±à¸„รราชทูต\nà¸à¸±à¸„รสมณทูต\nà¸à¸±à¸‡\nà¸à¸±à¸‡à¸à¹Œ\nà¸à¸±à¸‡à¸à¸™à¸°\nà¸à¸±à¸‡à¸à¸¤à¸©\nà¸à¸±à¸‡à¸à¸°à¸¥à¸¸à¸‡\nà¸à¸±à¸‡à¸à¸²\nà¸à¸±à¸‡à¸à¸²à¸š\nà¸à¸±à¸‡à¸à¸¸à¸£à¸°\nà¸à¸±à¸‡à¸à¸¸à¸¨\nà¸à¸±à¸‡à¸à¸¹à¸£\nà¸à¸±à¸‡à¸„ณะ\nà¸à¸±à¸‡à¸„ณา\nà¸à¸±à¸‡à¸„าร\nà¸à¸±à¸‡à¸„าส\nà¸à¸±à¸‡à¸„ีรส\nà¸à¸±à¸‡à¸„ุà¸\nà¸à¸±à¸‡à¸„ุตรนิà¸à¸²à¸¢\nà¸à¸±à¸‡à¸†à¸²à¸•\nà¸à¸±à¸‡à¹à¸žà¸¥à¸¡\nà¸à¸±à¹‰à¸‡à¸¢à¸µà¹ˆ\nà¸à¸±à¹‰à¸‡à¹‚ล่\nà¸à¸±à¸‡à¸¨à¸¸\nà¸à¸±à¸‡à¸¨à¸¸à¸\nà¸à¸±à¸‡à¸¨à¸¸à¸˜à¸£\nà¸à¸±à¸‡à¸¨à¸¸à¸¡à¸²à¸¥à¸µ\nà¸à¸±à¸‡à¸ªà¸à¸¸à¸\nà¸à¸±à¸‡à¸ªà¸•à¸£à¸à¸¡\nà¸à¸±à¸‡à¸ªà¸™à¸²\nà¸à¸±à¸‡à¸ªà¸ าระ\nà¸à¸±à¸‡à¸ªà¸°\nà¸à¸±à¸‡à¸ªà¸²\nà¸à¸±à¸ˆà¸à¸¥à¸±à¸š\nà¸à¸±à¸ˆà¸ˆà¸´\nà¸à¸±à¸ˆà¸ˆà¸´à¸¡à¸²\nà¸à¸±à¸ˆà¸ˆà¸¸à¸•à¸°\nà¸à¸±à¸ˆà¸‰à¸£à¸²\nà¸à¸±à¸ˆà¸‰à¸£à¸´à¸¢à¸šà¸¸à¸„คล\nà¸à¸±à¸ˆà¸‰à¸£à¸´à¸¢à¸ าพ\nà¸à¸±à¸ˆà¸‰à¸£à¸´à¸¢à¸¥à¸±à¸à¸©à¸“์\nà¸à¸±à¸ˆà¸‰à¸£à¸´à¸¢à¸¥à¸±à¸à¸©à¸“ะ\nà¸à¸±à¸ˆà¸‰à¸£à¸´à¸¢à¸°\nà¸à¸±à¸ˆà¸™à¸²\nà¸à¸±à¸Šà¸Œà¸±à¸•à¸•à¸´à¸\nà¸à¸±à¸Šà¸Œà¸²\nà¸à¸±à¸Šà¸Œà¸²à¸ˆà¸²à¸£\nà¸à¸±à¸Šà¸Œà¸²à¸¨à¸±à¸¢\nà¸à¸±à¸Šà¸Œà¸²à¸ªà¸±à¸¢\nà¸à¸±à¸à¹€à¸”ียรถีย์\nà¸à¸±à¸à¸¡à¸“ี\nà¸à¸±à¸à¸‚ยม\nà¸à¸±à¸à¸Šà¸™à¸°\nà¸à¸±à¸à¸Šà¸¥à¸µ\nà¸à¸±à¸à¸Šà¸±à¸™\nà¸à¸±à¸à¸Šà¸¸à¸¥à¸µ\nà¸à¸±à¸à¹€à¸Šà¸´à¸\nà¸à¸±à¸à¸à¸°\nà¸à¸±à¸à¸”ิตถีย์\nà¸à¸±à¸à¹€à¸”ียรถีย์\nà¸à¸±à¸à¸›à¸£à¸°à¸à¸²à¸¨\nà¸à¸±à¸à¸£à¸¹à¸›\nà¸à¸±à¸\nà¸à¸±à¸à¸à¸šà¸²à¸™\nà¸à¸±à¸à¸à¸°\nà¸à¸±à¸à¸à¸±à¸‡à¸„ิà¸à¸¡à¸£à¸£à¸„\nà¸à¸±à¸à¸™à¸²\nà¸à¸±à¸\nà¸à¸±à¸à¸¬à¸ª\nà¸à¸±à¸à¹€à¸„ราะห์\nà¸à¸±à¸à¸—ิศ\nà¸à¸±à¸à¸šà¸£à¸´à¸‚าร\nà¸à¸±à¸à¸šà¸²à¸™\nà¸à¸±à¸à¸¡\nà¸à¸±à¸à¸¡à¸µ\nà¸à¸±à¸à¸¨à¸\nà¸à¸±à¸à¸´\nà¸à¸±à¸’จันทร์\nà¸à¸±à¸’ภาค\nà¸à¸±à¸’มาส\nà¸à¸±à¸’รัตติ\nà¸à¸±à¸“ฑโà¸à¸ª\nà¸à¸±à¸“ฑชะ\nà¸à¸±à¸“ฑะ\nà¸à¸±à¸“ณพ\nà¸à¸±à¸”\nà¸à¸±à¸”à¹à¸ˆ\nà¸à¸±à¸•\nà¸à¸±à¸•à¸Šà¸µà¸§à¸›à¸£à¸°à¸§à¸±à¸•à¸´\nà¸à¸±à¸•à¸™à¸±à¸¢\nà¸à¸±à¸•à¸ าพ\nà¸à¸±à¸•à¸§à¸´à¸™à¸´à¸šà¸²à¸•à¸à¸£à¸£à¸¡\nà¸à¸±à¸•à¸„ัด\nà¸à¸±à¸•à¸•à¹‚นบท\nà¸à¸±à¸•à¸•à¸²\nà¸à¸±à¸•à¸•à¸²à¸˜à¸´à¸›à¹„ตย\nà¸à¸±à¸•à¸–์\nà¸à¸±à¸•à¸–ะ\nà¸à¸±à¸•à¹‚นมัติ\nà¸à¸±à¸•à¸£à¸Šà¸°\nà¸à¸±à¸•à¸£à¸²\nà¸à¸±à¸•à¸¥à¸±à¸”\nà¸à¸±à¸—ทา\nà¸à¸±à¸—ธ์\nà¸à¸±à¸—ธา\nà¸à¸±à¸—ธาน\nà¸à¸±à¸—ธายุ\nà¸à¸±à¸˜à¸¢à¸²à¸•à¸¡à¸§à¸´à¸—ยา\nà¸à¸±à¸˜à¸¢à¸²à¸¢\nà¸à¸±à¸˜à¸¢à¸²à¸¨à¸±à¸¢\nà¸à¸±à¸™\nà¸à¸±à¹‰à¸™\nà¸à¸±à¹‹à¸™\nà¸à¸±à¸™à¸”ร\nà¸à¸±à¸™à¸”ับ\nà¸à¸±à¸™à¸•à¸à¸°\nà¸à¸±à¸™à¸•à¸à¸²à¸¥\nà¸à¸±à¸™à¸•à¸°\nà¸à¸±à¸™à¸•à¸„ุณ\nà¸à¸±à¸™à¸•à¸£à¸ าค\nà¸à¸±à¸™à¸•à¸£à¸§à¸²à¸ªà¸\nà¸à¸±à¸™à¸•à¸£à¸˜à¸²à¸™\nà¸à¸±à¸™à¸•à¸£à¸²\nà¸à¸±à¸™à¸•à¸£à¸²à¸¢\nà¸à¸±à¸™à¸•à¸£à¸²à¸¢à¸´à¸à¸˜à¸£à¸£à¸¡\nà¸à¸±à¸™à¸•à¸´à¸à¸°\nà¸à¸±à¸™à¸•à¸´à¸¡à¸ªà¸±à¸ˆ\nà¸à¸±à¸™à¸•à¸´à¸¡à¸°\nà¸à¸±à¸™à¹€à¸•\nà¸à¸±à¸™à¹‚ต\nà¸à¸±à¸™à¹€à¸•à¸›à¸¸à¸£à¸´à¸\nà¸à¸±à¸™à¹€à¸•à¸§à¸²à¸ªà¸´à¸\nà¸à¸±à¸™à¹à¸–้ง\nà¸à¸±à¸™à¹‚ทล\nà¸à¸±à¸™à¸˜à¸à¸²à¸£\nà¸à¸±à¸™à¸˜à¸žà¸²à¸¥\nà¸à¸±à¸™à¸˜à¸´à¸à¸²\nà¸à¸±à¸™à¹€à¸§à¸ª\nà¸à¸±à¸š\nà¸à¸±à¸šà¸›à¸²à¸‡\nà¸à¸±à¸›à¸›à¸°\nà¸à¸±à¸›à¹€à¸›à¸«à¸´\nà¸à¸±à¸›à¸ าคย์\nà¸à¸±à¸›à¸¡à¸‡à¸„ล\nà¸à¸±à¸›à¸¢à¸¨\nà¸à¸±à¸›à¸£à¸°à¸¡à¸²à¸“\nà¸à¸±à¸›à¸£à¸°à¹„มย\nà¸à¸±à¸›à¸£à¸²à¸Šà¸±à¸¢\nà¸à¸±à¸›à¸£à¸µà¸¢à¹Œ\nà¸à¸±à¸›à¸¥à¸±à¸à¸©à¸“์\nà¸à¸±à¸›à¸ªà¸£\nà¸à¸±à¸žà¸žà¸¸à¸—\nà¸à¸±à¸žà¹‚พหาริà¸\nà¸à¸±à¸žà¸ ันดร\nà¸à¸±à¸žà¸ าน\nà¸à¸±à¸žà¸ าส\nà¸à¸±à¸žà¸ ูตธรรม\nà¸à¸±à¸žà¸¢à¸²à¸à¸¤à¸•\nà¸à¸±à¸¡à¸žà¸¤à¸à¸©à¹Œ\nà¸à¸±à¸¡à¸žà¸²à¸•\nà¸à¸±à¸¡à¸žà¸§à¸±à¸™\nà¸à¸±à¸¡à¸žà¸§à¸²\nà¸à¸±à¸¡à¸žà¸£\nà¸à¸±à¸¡à¸žà¸²\nà¸à¸±à¸¡à¸žà¸´à¸¥à¸°\nà¸à¸±à¸¡à¸žà¸¸\nà¸à¸±à¸¡à¸žà¸¸à¸Š\nà¸à¸±à¸¡à¸žà¸¸à¸Šà¸´à¸™à¸µ\nà¸à¸±à¸¡à¸žà¸¸à¸—\nà¸à¸±à¸¢à¸à¸²\nà¸à¸±à¸¢à¸à¸²à¸£\nà¸à¸±à¸¢à¸à¸µ\nà¸à¸±à¸¢à¸¢à¸°\nà¸à¸±à¸¢à¸¢à¸´à¸à¸²\nà¸à¸±à¸¥à¸à¸¸à¸£à¸à¸²à¸™\nà¸à¸±à¸¥à¸•à¸£à¸²à¹„วโà¸à¹€à¸¥à¸•\nà¸à¸±à¹ˆà¸§\nà¸à¸±à¸¨à¸ˆà¸£à¸£à¸¢à¹Œ\nà¸à¸±à¸¨à¹€à¸ˆà¸£à¸µà¸¢à¹Œ\nà¸à¸±à¸¨à¸§\nà¸à¸±à¸¨à¸§à¹€à¸¡à¸˜\nà¸à¸±à¸¨à¸§à¸¢à¸¸à¸Š\nà¸à¸±à¸¨à¸§à¸²à¸™à¸¶à¸\nà¸à¸±à¸¨à¸§à¸´à¸™\nà¸à¸±à¸¨à¸§à¸´à¸™à¸µ\nà¸à¸±à¸©à¸Žà¸¡à¸‡à¸„ล\nà¸à¸±à¸©à¸à¸¡à¸‡à¸„ล\nà¸à¸±à¸©à¸Žà¸²à¸‡à¸„ิà¸à¸¡à¸£à¸£à¸„\nà¸à¸±à¸©à¸Žà¸²à¸¢à¸¸à¸˜\nà¸à¸±à¸©à¸Žà¸²à¸§à¸¸à¸˜\nà¸à¸±à¸ªà¸ªà¸°\nà¸à¸±à¸ªà¸”ร\nà¸à¸±à¸ªà¸à¸±à¸“\nà¸à¸±à¸ªà¸”ง\nà¸à¸±à¸ªà¸”งคต\nà¸à¸±à¸ªà¸¡à¸´à¸¡à¸²à¸™à¸°\nà¸à¸±à¸ªà¸ªà¸™à¸µ\nà¸à¸±à¸ªà¸ªà¸²à¸™à¸¶à¸\nà¸à¸±à¸ªà¸ªà¸²à¸ªà¸°\nà¸à¸±à¸ªà¸ªà¸¸\nà¸à¸²\nà¸à¹ˆà¸²\nà¸à¹‰à¸²\nà¸à¹‹à¸²\nà¸à¸²à¸à¸£\nà¸à¸²à¸à¸±à¸‡à¸‚า\nà¸à¸²à¸à¸±à¸›\nà¸à¸²à¸à¸²à¸£\nà¸à¸²à¸à¸²à¸¨\nà¸à¸²à¸à¸¹à¸¥\nà¸à¸²à¹€à¸à¸µà¸¢à¸£à¸“์\nà¸à¸²à¸‚ยาต\nà¸à¸²à¸‚ยาน\nà¸à¸²à¸„เนย์\nà¸à¸²à¸„ม\nà¸à¸²à¸„รหายณี\nà¸à¸²à¸„ันตุà¸à¸°\nà¸à¸²à¸„ันตุà¸à¸ ัต\nà¸à¸²à¸„ันตุà¸à¸§à¸±à¸•à¸£\nà¸à¸²à¸„าร\nà¸à¸²à¸†à¸²à¸•\nà¸à¹ˆà¸²à¸‡\nà¸à¹‰à¸²à¸‡\nà¸à¸²à¸‡à¸‚นาง\nà¸à¹‰à¸²à¸‡à¸§à¹‰à¸²à¸‡\nà¸à¸²à¸ˆ\nà¸à¸²à¸ˆà¸¡\nà¸à¸²à¸ˆà¸£à¸´à¸¢à¸§à¸±à¸•à¸£\nà¸à¸²à¸ˆà¸£à¸´à¸¢à¸§à¸²à¸—\nà¸à¸²à¸ˆà¸²à¸”\nà¸à¸²à¸ˆà¸²à¸£\nà¸à¸²à¸ˆà¸²à¸£à¸¢à¹Œ\nà¸à¸²à¸ˆà¸²à¸£à¸µ\nà¸à¸²à¸ˆà¸´à¸“\nà¸à¸²à¹€à¸ˆà¸µà¸¢à¸™\nà¸à¸²à¸Šà¸à¸²\nà¸à¸²à¸Šà¸§à¸°\nà¸à¸²à¸Šà¸²\nà¸à¸²à¸Šà¸²à¹„นย\nà¸à¸²à¸Šà¸µà¸ž\nà¸à¸²à¸Šà¸µà¸§à¸¨à¸¶à¸à¸©à¸²\nà¸à¸²à¸Šà¸µà¸§à¸°\nà¸à¸²à¸Šà¸µà¸§à¸\nà¸à¸²à¸à¸²\nà¸à¸²à¸à¸²à¸™à¸²\nà¸à¸²à¸“ัติ\nà¸à¸²à¸“า\nà¸à¸²à¸”\nà¸à¸²à¸”ูร\nà¸à¸²à¸”ุลย์\nà¸à¸²à¸”ูลย์\nà¸à¸²à¹€à¸”๊ะ\nà¸à¸²à¸•à¸¡à¸ าพ\nà¸à¸²à¸•à¸¡à¸±à¸™\nà¸à¸²à¸•à¸¡à¸²\nà¸à¸²à¸–รรพ์\nà¸à¸²à¸–รรพณ์\nà¸à¸²à¸—ร\nà¸à¸²à¸—ิ\nà¸à¸²à¸—ิจจวาร\nà¸à¸²à¸—ิตย์\nà¸à¸²à¸—ิตยมณฑล\nà¸à¸²à¸—ิตยวาร\nà¸à¸²à¸—ีนพ\nà¸à¸²à¸—ีนวะ\nà¸à¸²à¸—ึà¸\nà¸à¸²à¹€à¸—ศ\nà¸à¸²à¹€à¸—สนา\nà¸à¸²à¸˜à¸£à¸£à¸¡\nà¸à¸²à¸˜à¸£à¸£à¸¡à¹Œ\nà¸à¸²à¸˜à¸²à¸™\nà¸à¸²à¸˜à¸²à¸£\nà¸à¸²à¸™\nà¸à¹ˆà¸²à¸™\nà¸à¸²à¸™à¸™\nà¸à¸²à¸™à¸™à¸—์\nà¸à¸²à¸™à¸±à¸™à¸—์\nà¸à¸²à¸™à¸±à¸™à¸—นะ\nà¸à¸²à¸™à¸±à¸¡\nà¸à¸²à¸™à¸²à¸›à¸²à¸™à¸°\nà¸à¸²à¸™à¸²à¸›à¸²à¸™à¸±à¸ªà¸ªà¸•à¸´\nà¸à¸²à¸™à¸´à¸ªà¸‡à¸ªà¹Œ\nà¸à¸²à¸™à¸¸à¸ าพ\nà¸à¸²à¸™à¸¸à¸ าวะ\nà¸à¸²à¸š\nà¸à¸²à¸šà¸±à¸•à¸´\nà¸à¸²à¸šà¸±à¸™\nà¸à¸²à¸›à¸“à¸à¸°\nà¸à¸²à¸›à¸“ะ\nà¸à¸²à¸›à¸°\nà¸à¸²à¹‚ป\nà¸à¸²à¸›à¸²à¸™à¸°\nà¸à¸²à¸žà¸±à¸—ธ์\nà¸à¸²à¸žà¸±à¸™à¸˜à¹Œ\nà¸à¸²à¸žà¸±à¸™à¸˜à¸™à¸°\nà¸à¸²à¸žà¸²à¸˜\nà¸à¸²à¹€à¸žà¸¨\nà¸à¸²à¸ รณ์\nà¸à¸²à¸ ัพ\nà¸à¸²à¸ ัสระ\nà¸à¸²à¸ า\nà¸à¸²à¸ าส\nà¸à¸²à¸¡à¸¥à¸à¸°\nà¸à¸²à¸¡à¸±à¸¢\nà¸à¸²à¸¡à¸´à¸©\nà¸à¸²à¸¡à¸´à¸ª\nà¸à¸²à¸¢\nà¸à¹‰à¸²à¸¢\nà¸à¸²à¸¢à¸•à¸™à¸°\nà¸à¸²à¸¢à¸•à¸°\nà¸à¸²à¸¢à¸™\nà¸à¸²à¸¢à¸±à¸”\nà¸à¸²à¸¢à¸±à¸•\nà¸à¸²à¸¢à¸±à¸™\nà¸à¸²à¸¢à¸²à¸ˆà¸™à¸°\nà¸à¸²à¸¢à¸²à¸™à¸°\nà¸à¸²à¸¢à¸¸\nà¸à¸²à¸¢à¸¸à¸•à¸à¸°\nà¸à¸²à¸¢à¸¸à¸˜\nà¸à¸²à¸¢à¸¸à¸£à¸à¸£à¸£à¸¡\nà¸à¸²à¸¢à¸¸à¸£à¹à¸žà¸—ย์\nà¸à¸²à¸¢à¸¸à¸£à¹€à¸§à¸Š\nà¸à¸²à¸¢à¸¸à¸£à¹€à¸§à¸—\nà¸à¸²à¸¢à¸¸à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nà¸à¸²à¸¢à¸¸à¸©\nà¸à¸²à¸£à¹Œà¸à¸à¸™\nà¸à¸²à¸£à¸”ี\nà¸à¸²à¸£à¸•à¸´\nà¸à¸²à¸£à¹Œà¸•\nà¸à¸²à¸£à¸—รา\nà¸à¸²à¸£à¹Œà¸¡\nà¸à¸²à¸£à¸¡à¸“์\nà¸à¸²à¸£à¸¢à¸Šà¸™\nà¸à¸²à¸£à¸¢à¸Šà¸²à¸•à¸´\nà¸à¸²à¸£à¸¢à¸˜à¸£à¸£à¸¡\nà¸à¸²à¸£à¸¢à¸›à¸£à¸°à¹€à¸—ศ\nà¸à¸²à¸£à¸¢à¸°\nà¸à¸²à¸£à¸¢à¸±à¸™\nà¸à¸²à¸£à¸°\nà¸à¸²à¸£à¸±à¸à¸‚า\nà¸à¸²à¸£à¸±à¸à¸©à¹Œ\nà¸à¸²à¸£à¸±à¸\nà¸à¸²à¸£à¸±à¸“ย์\nà¸à¸²à¸£à¸±à¸à¸à¸´à¸\nà¸à¸²à¸£à¸±à¸“ยà¸à¸°\nà¸à¸²à¸£à¸±à¸•à¸´\nà¸à¸²à¸£à¸±à¸¡à¸ ์\nà¸à¸²à¸£à¸±à¸¡à¸ à¸à¸–า\nà¸à¸²à¸£à¸±à¸¡à¸ บท\nà¸à¸²à¸£à¸±à¸¡à¸ ะ\nà¸à¸²à¸£à¸²à¸˜à¸™à¹Œ\nà¸à¸²à¸£à¸²à¸˜à¸™à¸²\nà¸à¸²à¸£à¸²à¸¡\nà¸à¸²à¸£à¸²à¸¡à¸´à¸\nà¸à¸²à¸£à¸µ\nà¸à¸²à¸£à¸¸à¸¡\nà¸à¸²à¸¥à¸›à¸™à¸°\nà¸à¸²à¸¥à¸°à¸§à¸²à¸”\nà¸à¸²à¸¥à¸±à¸à¸©à¸“์\nà¸à¸²à¸¥à¸±à¸¢\nà¸à¸²à¸¥à¸±à¸§\nà¸à¸²à¸¥à¸µ\nà¸à¸²à¹‚ลà¸\nà¸à¸²à¸§\nà¸à¹ˆà¸²à¸§\nà¸à¹‰à¸²à¸§\nà¸à¸²à¸§à¸£à¸“์\nà¸à¸²à¸§à¸±à¸Šà¸™à¸²à¸à¸²à¸£\nà¸à¸²à¸§à¸±à¸¥\nà¸à¸²à¸§à¸²à¸ª\nà¸à¸²à¸§à¸²à¸ªà¸´à¸\nà¸à¸²à¸§à¸²à¸«à¸¡à¸‡à¸„ล\nà¸à¸²à¸§à¸²à¸«à¸°\nà¸à¸²à¸§à¸¸à¸•\nà¸à¸²à¸§à¸¸à¸˜\nà¸à¸²à¸§à¸¸à¹‚ส\nà¸à¸²à¹€à¸§à¸„\nà¸à¸²à¸¨à¸£à¸¡\nà¸à¸²à¸¨à¸£à¸¡à¸šà¸—\nà¸à¸²à¸¨à¹€à¸¥à¸©à¸²\nà¸à¸²à¸¨à¸±à¸¢\nà¸à¸²à¸¨à¸´à¸£à¸žà¸ˆà¸™à¹Œ\nà¸à¸²à¸¨à¸´à¸£à¸žà¸²à¸—\nà¸à¸²à¸¨à¸´à¸£à¸§à¸²à¸—\nà¸à¸²à¸¨à¸¸\nà¸à¸²à¹€à¸¨à¸µà¸¢à¸£à¸žà¸ˆà¸™à¹Œ\nà¸à¸²à¹€à¸¨à¸µà¸¢à¸£à¸žà¸²à¸—\nà¸à¸²à¹€à¸¨à¸µà¸¢à¸£à¸§à¸²à¸—\nà¸à¸²à¸©à¸²à¸’\nà¸à¸²à¸ªà¸™\nà¸à¸²à¸ªà¸™à¹Œ\nà¸à¸²à¸ªà¸™à¸°\nà¸à¸²à¸ªà¸™à¸¨à¸²à¸¥à¸²\nà¸à¸²à¸ªà¸±à¸\nà¸à¸²à¸ªà¸±à¸•à¸¢à¹Œ\nà¸à¸²à¸ªà¸²\nà¸à¸²à¸ªà¸²à¸¬à¸«à¹Œ\nà¸à¸²à¸ªà¸²à¸¬à¸«à¸šà¸¹à¸Šà¸²\nà¸à¸²à¸ªà¸²à¸¬à¸«à¸°\nà¸à¸²à¸ªà¸´à¸à¸ˆà¹Œ\nà¸à¸²à¸ªà¸´à¸™\nà¸à¸²à¸«à¸¡\nà¸à¸²à¸«à¸£à¸±à¸š\nà¸à¸²à¸«à¸²à¸£\nà¸à¸²à¸¬à¸«à¸\nà¸à¸³\nà¸à¹ˆà¸³\nà¸à¹‰à¸³\nà¸à¸³à¹à¸”ง\nà¸à¸³à¸™à¸™à¸•à¹Œ\nà¸à¸³à¸™à¸£à¸£à¸†\nà¸à¸³à¸™à¸§à¸¢\nà¸à¸³à¸™à¸²à¸ˆ\nà¸à¸³à¸™à¸²à¸–\nà¸à¸³à¸™à¸´à¸\nà¸à¸³à¸™à¸´à¸©à¸à¹Œ\nà¸à¸³à¸›à¸¥à¸±à¸‡\nà¸à¸³à¸žà¸™\nà¸à¸³à¸žà¸¥\nà¸à¸³à¸žà¸°à¸™à¸³\nà¸à¸³à¸žà¸±à¸™\nà¸à¸³à¹„พ\nà¸à¸³à¹€à¸ à¸\nà¸à¸³à¸¡à¸£\nà¸à¸³à¸¡à¸¤à¸„โชค\nà¸à¸³à¸¡à¸¤à¸•\nà¸à¸³à¸¡à¸«à¸´à¸•\nà¸à¸³à¸¡à¸²à¸•à¸¢à¹Œ\nà¸à¸³à¸¡à¸²à¸•à¸¢à¸²à¸˜à¸´à¸›à¹„ตย\nà¸à¸³à¸¢à¸§à¸™\nà¸à¸³à¸£à¸¸à¸‡\nà¸à¸³à¸¥à¸²\nà¸à¸³à¸à¸§à¸¡\nà¸à¹‰à¸³à¸à¸¶à¹‰à¸‡\nà¸à¸´à¸\nà¸à¸´à¸‡\nà¸à¸´à¸‡à¸„์\nà¸à¸´à¸‡à¸à¸£\nà¸à¸´à¸ˆà¸‰à¸²\nà¸à¸´à¸‰à¸±à¸™\nà¸à¸´à¸Šà¸¢à¸²\nà¸à¸´à¸à¸à¸²à¸£à¸¡à¸“์\nà¸à¸´à¸\nà¸à¸´à¸à¸œà¸¥\nà¸à¸´à¸”\nà¸à¸´à¸•à¸–ี\nà¸à¸´à¸•à¹€à¸—รียม\nà¸à¸´à¸•à¹€à¸—à¸à¸£à¹Œà¹€à¸šà¸µà¸¢à¸¡\nà¸à¸´à¸•à¸´à¸§à¸¸à¸•à¸•à¸à¸°\nà¸à¸´à¸—ธิ\nà¸à¸´à¸™\nà¸à¸´à¸™à¸‹à¸¹à¸¥à¸´à¸™\nà¸à¸´à¸™à¹€à¸”ีย\nà¸à¸´à¸™à¹€à¸”ียนà¹à¸”ง\nà¸à¸´à¸™à¹€à¸”ียม\nà¸à¸´à¸™à¸—์\nà¸à¸´à¸™à¸—ขีล\nà¸à¸´à¸™à¸—นิล\nà¸à¸´à¸™à¸—ผลัม\nà¸à¸´à¸™à¸—ร์\nà¸à¸´à¸™à¸—รธนู\nà¸à¸´à¸™à¸—รวงศ์\nà¸à¸´à¸™à¸—รวิเชียร\nà¸à¸´à¸™à¸—รศัà¸à¸”ิ์\nà¸à¸´à¸™à¸—ราณี\nà¸à¸´à¸™à¸—ราภิเษà¸\nà¸à¸´à¸™à¸—รายุธ\nà¸à¸´à¸™à¸—รี\nà¸à¸´à¸™à¸—รีย์\nà¸à¸´à¸™à¸—รียสังวร\nà¸à¸´à¸™à¸—ีวร\nà¸à¸´à¸™à¸—ุ\nà¸à¸´à¸™à¸Ÿà¸£à¸²à¹€à¸£à¸”\nà¸à¸´à¸™à¸±à¸‡\nà¸à¸´à¹ˆà¸¡\nà¸à¸´à¸¡à¸±à¸¥à¸Šà¸±à¸™\nà¸à¸´à¸£à¸´à¹€à¸”ียม\nà¸à¸´à¸£à¸´à¸¢à¸²\nà¸à¸´à¸£à¸´à¸¢à¸²à¸šà¸–\nà¸à¸´à¸£à¸¸à¸žà¹€à¸žà¸—\nà¸à¸´à¹€à¸¥à¹‡à¸à¸•à¸£à¸à¸™\nà¸à¸´à¹€à¸¥à¹‡à¸à¸—รà¸à¸™à¸´à¸à¸ªà¹Œ\nà¸à¸´à¹€à¸¥à¹‡à¸à¹‚ทน\nà¸à¸´à¸¨à¸£\nà¸à¸´à¸¨à¸§à¸£\nà¸à¸´à¸©à¸à¹Œ\nà¸à¸´à¸©à¸à¸µ\nà¸à¸´à¸ª\nà¸à¸´à¸ªà¸•à¸£à¸µ\nà¸à¸´à¸ªà¸±à¸•à¸£à¸µ\nà¸à¸´à¸ªà¸£à¸ าพ\nà¸à¸´à¸ªà¸£à¸°\nà¸à¸´à¸ªà¸£à¸´à¸¢à¸¢à¸¨\nà¸à¸´à¸ªà¸£à¸´à¸¢à¸°\nà¸à¸´à¸ªà¸£à¸´à¸¢à¸²à¸ รณ์\nà¸à¸´à¸ªà¸¥à¸²à¸¡\nà¸à¸´à¸ªà¸ªà¸²\nà¸à¸´à¸ªà¸´\nà¸à¸´à¸ªà¸µ\nà¸à¸´à¸«à¸¡à¹ˆà¸²à¸¡\nà¸à¸´à¸«à¸¥à¸±à¸à¸à¸´à¹€à¸«à¸¥à¸·à¹ˆà¸\nà¸à¸µ\nà¸à¸µà¹ˆ\nà¸à¸µà¹‰\nà¸à¸µà¹Š\nà¸à¸µà¹‹\nà¸à¸µà¹‹à¸à¹‹à¸\nà¸à¸µà¸\nà¸à¸µà¸à¹‰à¸\nà¸à¸µà¸à¹‹à¸à¸¢\nà¸à¸µà¹‚à¸à¹‰à¸‡\nà¸à¸µà¸ˆà¸¹à¹‰\nà¸à¸µà¹Šà¸”\nà¸à¸µà¹€à¸•à¹‰à¸\nà¸à¸µà¹‚ต้\nà¸à¸µà¸—ุบ\nà¸à¸µà¹€à¸—à¸à¸£à¹Œ\nà¸à¸µà¸™à¸¸à¸‡à¸•à¸¸à¸‡à¸™à¸±à¸‡\nà¸à¸µà¸™à¸¹à¸™\nà¸à¸µà¹‚น\nà¸à¸µà¹à¸›à¸°\nà¸à¸µà¹‚ปง\nà¸à¸µà¹€à¸žà¸²\nà¸à¸µà¸¡à¸¹\nà¸à¸µà¸£à¸¡\nà¸à¸µà¸¥à¸¸à¹‰à¸¡\nà¸à¸µà¸¥à¸¸à¹ˆà¸¢à¸‰à¸¸à¸¢à¹à¸‰à¸\nà¸à¸µà¹€à¸¥à¸´à¹‰à¸‡\nà¸à¸µà¸¨\nà¸à¸µà¸¨à¸§à¸£\nà¸à¸µà¸ª\nà¸à¸µà¸ªà¸²à¸™\nà¸à¸µà¸ªà¸¸à¸à¸à¸µà¹ƒà¸ª\nà¸à¸µà¸«à¸£à¸à¸š\nà¸à¸µà¸«à¸¥à¸±à¸à¸à¸µà¹€à¸«à¸¥à¸·à¹ˆà¸\nà¸à¸µà¸«à¸¥à¸µ\nà¸à¸µà¸«à¸¥à¸¸à¸à¸‚ลุà¸à¸‚ลัà¸\nà¸à¸µà¸«à¸¥à¸¸à¸à¸‚ลุà¸à¸‚ลุ่ย\nà¸à¸µà¹€à¸«à¹‡à¸™\nà¸à¸µà¹€à¸«à¸™à¹‡à¸š\nà¸à¸µà¹€à¸«à¸™à¸µà¸¢à¸§\nà¸à¸µà¹€à¸«à¸¥à¸°à¹€à¸‚ละขละ\nà¸à¸µà¹€à¸«à¸¥à¸°à¹€à¸‚ะขะ\nà¸à¸µà¹‚หน่à¸à¸µà¹€à¸«à¸™à¹ˆ\nà¸à¸µà¹‚หลà¸à¹‚ขลà¸à¹€à¸‚ลà¸\nà¸à¸µà¹à¸à¹ˆà¸™\nà¸à¸¶\nà¸à¸¶à¸\nà¸à¸¶à¹‰à¸\nà¸à¸¶à¹Šà¸\nà¸à¸¶à¸à¸—ึà¸\nà¸à¸¶à¸à¸à¸±à¸\nà¸à¸¶à¸‡\nà¸à¸¶à¹ˆà¸‡\nà¸à¸¶à¹‰à¸‡\nà¸à¸¶à¸”\nà¸à¸¶à¸”ตะปืà¸\nà¸à¸¶à¹‰à¸”ทึ่ด\nà¸à¸¶à¸™\nà¸à¸·à¸”\nà¸à¸·à¹ˆà¸™\nà¸à¸·à¹‰à¸™\nà¸à¸·à¸\nà¸à¸·à¹‰à¸\nà¸à¸·à¹‰à¸à¸®à¸·à¸\nà¸à¸¸\nà¸à¸¸à¸\nà¸à¸¸à¸à¸à¸²\nà¸à¸¸à¸à¸à¸²à¸šà¸²à¸•\nà¸à¸¸à¸à¸¤à¸©à¸à¹Œ\nà¸à¸¸à¸à¸¥à¸²à¸šà¸²à¸•\nà¸à¸¸à¸„\nà¸à¸¸à¸„ระ\nà¸à¸¸à¸„หนิมิต\nà¸à¸¸à¹‚ฆษ\nà¸à¸¸à¹‰à¸‡\nà¸à¸¸à¸ˆ\nà¸à¸¸à¸ˆà¸ˆà¸²à¸£à¸°\nà¸à¸¸à¸ˆà¸‰à¸¸\nà¸à¸¸à¸ˆà¹€à¸‰à¸—\nà¸à¸¸à¸ˆà¹€à¸‰à¸—ทิà¸à¸´\nà¸à¸¸à¸ˆà¸²à¸”\nà¸à¸¸à¸Šà¸¸\nà¸à¸¸à¸à¸à¸²à¸à¸²à¸£\nà¸à¸¸à¸“หภูมิ\nà¸à¸¸à¸“หะ\nà¸à¸¸à¸“หาหาร\nà¸à¸¸à¸“หิส\nà¸à¸¸à¸“า\nà¸à¸¸à¸“าโลม\nà¸à¸¸à¸”\nà¸à¸¸à¸”เตา\nà¸à¸¸à¸”ม\nà¸à¸¸à¸”มà¸à¸²à¸£à¸“์\nà¸à¸¸à¸”มคติ\nà¸à¸¸à¸”มศึà¸à¸©à¸²\nà¸à¸¸à¸”ร\nà¸à¸¸à¸”หนุน\nà¸à¸¸à¸•à¸”ม\nà¸à¸¸à¸•à¸•à¸¡à¸°\nà¸à¸¸à¸•à¸¡à¸ าพ\nà¸à¸¸à¸•à¸¡à¸²à¸‡à¸„์\nà¸à¸¸à¸•à¸”ร\nà¸à¸¸à¸•à¸£à¸à¸¸à¸£à¸¸à¸—วีป\nà¸à¸¸à¸•à¸•à¸£à¸²à¸¢à¸±à¸™\nà¸à¸¸à¸•à¸£à¸™à¸´à¸à¸²à¸¢\nà¸à¸¸à¸•à¸£à¸œà¸¥à¸„ุนี\nà¸à¸¸à¸•à¸•à¸£à¸œà¸¥à¸„ุนี\nà¸à¸¸à¸•à¸£à¸ ัทรบท\nà¸à¸¸à¸•à¸•à¸£à¸ ัทรบท\nà¸à¸¸à¸•à¸•à¸£à¸ ัททะ\nà¸à¸¸à¸•à¸£à¸²à¸ ิมุข\nà¸à¸¸à¸•à¸£à¸²à¸§à¸£à¸£à¸•\nà¸à¸¸à¸•à¸£à¸²à¸§à¸±à¸\nà¸à¸¸à¸•à¸£à¸²à¸©à¸²à¸’\nà¸à¸¸à¸•à¸•à¸£à¸²à¸ªà¸²à¸¬à¸«à¸°\nà¸à¸¸à¸•à¸£à¸²à¸ªà¸‡à¸„์\nà¸à¸¸à¸•à¸•à¸²à¸™à¸ าพ\nà¸à¸¸à¸•à¸žà¸´à¸”\nà¸à¸¸à¸•à¸£à¸²\nà¸à¸¸à¸•à¸£à¸´\nà¸à¸¸à¸•à¸£à¸´à¸¡à¸™à¸¸à¸ªà¸˜à¸£à¸£à¸¡\nà¸à¸¸à¸•à¸¥à¸¸à¸”\nà¸à¸¸à¸•à¸ªà¹ˆà¸²à¸«à¹Œ\nà¸à¸¸à¸•à¸ªà¸²à¸«à¸à¸£à¸£à¸¡\nà¸à¸¸à¸•à¸ªà¸²à¸«à¸°\nà¸à¸¸à¸•à¸¸\nà¸à¸¸à¸•à¸¸à¸™à¸´à¸¢à¸¡\nà¸à¸¸à¸•à¸¸à¸™à¸´à¸¢à¸¡à¸§à¸´à¸—ยา\nà¸à¸¸à¸—à¸\nà¸à¸¸à¸—à¸à¸˜à¸²à¸£\nà¸à¸¸à¸—à¸à¸˜à¸²à¸£à¸²\nà¸à¸¸à¸—à¸à¸ ัย\nà¸à¸¸à¸—à¸à¸§à¸´à¸—ยา\nà¸à¸¸à¸—à¸à¸¨à¸²à¸ªà¸•à¸£à¹Œ\nà¸à¸¸à¸—ธรณ์\nà¸à¸¸à¸—ธัจ\nà¸à¸¸à¸—ยาน\nà¸à¸¸à¸—ร\nà¸à¸¸à¸—ริยะ\nà¸à¸¸à¸—ลุม\nà¸à¸¸à¸—ัช\nà¸à¸¸à¸—ัย\nà¸à¸¸à¸—าน\nà¸à¸¸à¸—าร\nà¸à¸¸à¸—าหรณ์\nà¸à¸¸à¸—ิศ\nà¸à¸¸à¸—ุมพร\nà¸à¸¸à¹€à¸—ศ\nà¸à¸¸à¹€à¸—สิà¸à¹€à¸ˆà¸”ีย์\nà¸à¸¸à¸˜à¸±à¸ˆ\nà¸à¸¸à¹ˆà¸™\nà¸à¸¸à¸š\nà¸à¸¸à¸šà¸¥\nà¸à¸¸à¸šà¸°\nà¸à¸¸à¸šà¹Šà¸°\nà¸à¸¸à¸šà¸±à¸•à¸´\nà¸à¸¸à¸šà¸²à¸—\nà¸à¸¸à¸šà¸²à¸—ว์\nà¸à¸¸à¸šà¸²à¸¢\nà¸à¸¸à¸šà¸²à¸ªà¸\nà¸à¸¸à¸šà¸²à¸ªà¸´à¸à¸²\nà¸à¸¸à¹€à¸šà¸à¸‚า\nà¸à¸¸à¹‚บสถ\nà¸à¸¸à¸›à¸à¸£à¸“์\nà¸à¸¸à¸›à¸à¸£à¸¡\nà¸à¸¸à¸›à¸à¸²à¸£\nà¸à¸¸à¸›à¸à¸²à¸£à¸°\nà¸à¸¸à¸›à¸à¸²à¸£à¸µ\nà¸à¸¸à¸›à¸à¸´à¹€à¸¥à¸ª\nà¸à¸¸à¸›à¸ˆà¸²à¸£\nà¸à¸¸à¸›à¸–ัมภ์\nà¸à¸¸à¸›à¸–ัมภà¸\nà¸à¸¸à¸›à¸—ม\nà¸à¸¸à¸›à¸—ูต\nà¸à¸¸à¸›à¹€à¸—ศ\nà¸à¸¸à¸›à¹€à¸—่ห์\nà¸à¸¸à¸›à¸˜à¸´\nà¸à¸¸à¸›à¸™à¸±à¸¢\nà¸à¸¸à¸›à¸™à¸´à¸à¸‚ิต\nà¸à¸¸à¸›à¸™à¸´à¸©à¸±à¸—\nà¸à¸¸à¸›à¸™à¸´à¸ªà¸±à¸¢\nà¸à¸¸à¸›à¸šà¸±à¸•à¸´\nà¸à¸¸à¸›à¸›à¸²à¸•à¸´à¸à¸°\nà¸à¸¸à¸›à¸žà¸±à¸—ธ์\nà¸à¸¸à¸›à¸žà¸±à¸™à¸˜à¹Œ\nà¸à¸¸à¸›à¹‚ภค\nà¸à¸¸à¸›à¸¡à¸²\nà¸à¸¸à¸›à¸¡à¸²à¸™\nà¸à¸¸à¸›à¹„มย\nà¸à¸¸à¸›à¸¢à¸¸à¸§à¸£à¸²à¸Š\nà¸à¸¸à¸›à¸£à¸²à¸à¸£\nà¸à¸¸à¸›à¸£à¸²à¸„า\nà¸à¸¸à¸›à¸£à¸²à¸Š\nà¸à¸¸à¸›à¸£à¸´\nà¸à¸¸à¸›à¸£à¸´à¸¡à¸›à¸£à¸´à¸¢à¸²à¸¢\nà¸à¸¸à¸›à¹‚ลà¸à¸™à¹Œ\nà¸à¸¸à¸›à¹€à¸§à¸—\nà¸à¸¸à¸›à¸ªà¸¡à¸šà¸—\nà¸à¸¸à¸›à¸ªà¸¡à¸šà¸±à¸™\nà¸à¸¸à¸›à¸ªà¸±à¸¡à¸šà¸±à¸™\nà¸à¸¸à¸›à¸ªà¸£à¸£à¸„\nà¸à¸¸à¸›à¸ªà¸±à¸¡à¸›à¸—า\nà¸à¸¸à¸›à¸®à¸²à¸”\nà¸à¸¸à¸›à¸±à¸Šà¸Œà¸²à¸¢à¹Œ\nà¸à¸¸à¸›à¸±à¸Šà¸Œà¸²à¸¢à¸§à¸±à¸•à¸£\nà¸à¸¸à¸›à¸±à¸Šà¸Œà¸²à¸¢à¸°\nà¸à¸¸à¸›à¸±à¸à¸à¸²à¸\nà¸à¸¸à¸›à¸±à¸à¸à¸²à¸™à¸°\nà¸à¸¸à¸›à¸±à¸—วะ\nà¸à¸¸à¸›à¸±à¸—วันตราย\nà¸à¸¸à¸›à¸²à¸—าน\nà¸à¸¸à¸›à¸²à¸«à¸™à¸²\nà¸à¸¸à¸ ัย\nà¸à¸¸à¹‰à¸¡\nà¸à¸¸à¸¡à¸‡à¸„์\nà¸à¸¸à¹‚มงค์\nà¸à¸¸à¸¢\nà¸à¸¸à¹ˆà¸¢\nà¸à¸¸à¹‰à¸¢\nà¸à¸¸à¹Šà¸¢\nà¸à¸¸à¸¢à¸¢à¸²à¸™\nà¸à¸¸à¸¢à¸¢à¸²à¸¡\nà¸à¸¸à¸£à¸“ะ\nà¸à¸¸à¸£à¸žà¸µ\nà¸à¸¸à¸£à¸°\nà¸à¸¸à¸£à¸±à¸‡à¸à¸¸à¸•à¸±à¸‡\nà¸à¸¸à¸£à¸±à¸ˆà¸‰à¸±à¸—\nà¸à¸¸à¸£à¸±à¸ˆà¸‰à¸—ะ\nà¸à¸¸à¸£à¸²\nà¸à¸¸à¸£à¸¸\nà¸à¸¸à¹„ร\nà¸à¸¸à¸¥à¸à¸¡à¸“ี\nà¸à¸¸à¸¥à¹‚ลจ\nà¸à¸¸à¸¥à¸²à¸¡à¸\nà¸à¸¸à¸¥à¸´à¸”\nà¸à¸¸à¹‚ลà¸\nà¸à¸¸à¹à¸§à¹‰\nà¸à¸¸à¸©à¸“à¸à¸£\nà¸à¸¸à¸©à¸“à¸à¸²à¸¥\nà¸à¸¸à¸©à¸“รัศมี\nà¸à¸¸à¸©à¸“รุจี\nà¸à¸¸à¸©à¸“าà¸à¸²à¸£\nà¸à¸¸à¸©à¸“ีษ์\nà¸à¸¸à¸©à¸¡à¸°\nà¸à¸¸à¸©à¸¡à¸±à¸™\nà¸à¸¸à¸©à¸²\nà¸à¸¸à¸©à¸²à¹‚ยค\nà¸à¸¸à¸ªà¸ \nà¸à¸¸à¸ªà¸ªà¹ˆà¸²à¸«à¹Œ\nà¸à¸¸à¸ªà¸ªà¸²à¸«à¸°\nà¸à¸¸à¸ªà¸²\nà¸à¸¸à¸ªà¸¸\nà¸à¸¸à¸ªà¸¸à¸ \nà¸à¸¸à¸ªà¸¸à¸ ราช\nà¸à¸¸à¸ªà¸¸à¸¡\nà¸à¸¸à¸«à¸£à¸±à¸š\nà¸à¸¸à¸«à¸¥à¸š\nà¸à¸¸à¹€à¸«à¸¡à¹ˆ\nà¸à¸¸à¸¬à¸²à¸£\nà¸à¸¹\nà¸à¸¹à¹ˆ\nà¸à¸¹à¹‰\nà¸à¸¹à¸\nà¸à¸¹à¸”\nà¸à¸¹à¸¡\nà¸à¸¹à¸¢\nà¸à¸¹à¸£à¸¸\nà¸à¸¹à¹‹à¸à¸µà¹‹\nเà¸\nเà¸à¹‰\nเà¸à¹Š\nเà¸à¸\nเà¸à¸à¹€à¸‚นà¸\nเà¸à¸à¸‹à¹€à¸£à¸¢à¹Œ\nเà¸à¸à¸£à¸£à¸–ประโยค\nเà¸à¸à¸±à¸„ตา\nเà¸à¸à¸±à¸‡à¸ªà¸žà¸¢à¸²à¸à¸£à¸“์\nเà¸à¸à¸±à¸‡à¸ªà¸§à¸²à¸—ี\nเà¸à¸à¸²\nเà¸à¹‰à¸à¸²\nเà¸à¸à¸²à¸˜à¸´à¸›à¹„ตย\nเà¸à¹€à¸„à¸à¸£à¹Œ\nเà¸à¸‡\nเà¸à¹‡à¸‡\nเà¸à¹‹à¸‡\nเà¸à¹‡à¸”\nเà¸à¹‡à¸”ตะโร\nเà¸à¸”ส์\nเà¸à¸•à¸—ัคคะ\nเà¸à¹‰à¹€à¸•\nเà¸à¸—ิล\nเà¸à¸™\nเà¸à¹‡à¸™\nเà¸à¸™à¹„ซม์\nเà¸à¹‡à¸™à¸”ู\nเà¸à¹‡à¸™à¸à¹ˆà¸à¸™\nเà¸à¸¡\nเà¸à¹‡à¸¡à¸šà¸£à¸´à¹‚à¸\nเà¸à¸¢\nเà¸à¹ˆà¸¢\nเà¸à¹Šà¸¢\nเà¸à¹‹à¸¢\nเà¸à¸£à¹‡à¸”à¸à¸£à¹ˆà¸à¸¢\nเà¸à¸£à¸²à¸§à¸±à¸“\nเà¸à¸§\nเà¸à¹Šà¸§\nเà¸à¸§à¸±à¸‡\nเà¸à¸¬à¸à¸°\nเà¸à¸¬à¸²\nเà¸à¸\nเà¸à¹ˆà¸\nเà¸à¸à¸£à¹Œà¹€à¸šà¸µà¸¢à¸¡\nเà¸à¹‰à¸à¸£à¸°à¹€à¸«à¸¢\nเà¸à¹‰à¸à¹€à¸£à¹‰à¸\nเà¸à¹‰à¸à¹€à¸®à¸\nเà¸à¹Šà¸°\nเà¸à¸°à¹ƒà¸ˆ\nเà¸à¸°à¸à¸°\nเà¸à¸°à¸à¸°à¸¡à¸°à¹€à¸—ิ่ง\nเà¸à¸²\nเà¸à¸²à¸—าร\nเà¸à¸²à¸—ารย์\nเà¸à¸²à¸£à¸ª\nเà¸à¸²à¸¬à¸²à¸£\nเà¸à¸²à¸°à¸¥à¸²à¸¢\nเà¸à¸´à¸\nเà¸à¸´à¸à¹€à¸à¸£à¸´à¸\nเà¸à¸´à¹‰à¸™\nเà¸à¸´à¸š\nเà¸à¸µà¸¢à¸‡\nเà¸à¸µà¹‰à¸¢à¸‡\nเà¸à¸µà¸¢à¸”\nเà¸à¸µà¹Šà¸¢à¸”\nเà¸à¸µà¸¢à¸™\nเà¸à¸µà¹ˆà¸¢à¸™\nเà¸à¸µà¹ˆà¸¢à¸¡\nเà¸à¸µà¹Šà¸¢à¸¡\nเà¸à¸µà¹‰à¸¢à¸¡à¸ˆà¸¸à¹Šà¸™\nเà¸à¸µà¹‰à¸¢à¸¡à¹€à¸Ÿà¸µà¹‰à¸¢à¸¡\nเà¸à¸µà¹ˆà¸¢à¸§\nเà¸à¸µà¹‰à¸¢à¸§\nเà¸à¸·à¹‰à¸\nเà¸à¸·à¹Šà¸à¸\nเà¸à¸·à¹‰à¸à¸‡\nเà¸à¸·à¸à¸”\nเà¸à¸·à¸à¸™\nเà¸à¸·à¹‰à¸à¸™\nเà¸à¸·à¸à¸¡\nเà¸à¸·à¹‰à¸à¸¡\nเà¸à¸·à¹ˆà¸à¸¢\nเà¸à¸·à¹‰à¸à¸¢\nà¹à¸\nà¹à¸à¹‰\nà¹à¸à¹‹\nà¹à¸à¸\nà¹à¸à¸à¸—ิเนียม\nà¹à¸à¹ˆà¸‡\nà¹à¸à¹‰à¸‡à¹à¸¡à¹‰à¸‡\nà¹à¸à¸”\nà¹à¸à¹‰à¸”\nà¹à¸à¹Šà¸”\nà¹à¸à¹ˆà¸™\nà¹à¸à¸™à¸•à¸´à¹€à¸ˆà¸™\nà¹à¸à¸™à¸•à¸´à¸šà¸à¸”ี\nà¹à¸à¸™à¸•à¸´à¸à¸´à¹€à¸¥à¹‡à¸à¸•à¸£à¸à¸™\nà¹à¸à¹‚นด\nà¹à¸à¸š\nà¹à¸à¸¡\nà¹à¸à¹‰à¸¡\nà¹à¸à¸¡à¹à¸›à¸£à¹Œ\nà¹à¸à¸¡à¸¡à¸´à¹€à¸•à¸à¸£à¹Œ\nà¹à¸à¸¡à¹‚มเนีย\nà¹à¸à¸£à¹ˆà¸¡\nà¹à¸à¸¥à¸à¸à¸®à¸à¸¥à¹Œ\nà¹à¸à¸¥à¸Ÿà¸²\nà¹à¸à¸§\nà¹à¸à¹ˆà¸§\nà¹à¸à¹‰à¸§à¹à¸‹à¹ˆà¸§\nà¹à¸à¸ªà¸—าทีน\nà¹à¸à¸ªà¹„พริน\nà¹à¸à¸ªà¸Ÿà¸±à¸¥à¸•à¹Œ\nà¹à¸à¸«à¸™à¸±à¸‡\nà¹à¸à¸à¸±à¸”\nโà¸\nโà¸à¹ˆ\nโà¸à¹‰\nโà¸à¹‹\nโà¸à¸\nโà¸à¹‰à¸\nโà¸à¹‰à¸à¸à¹‰à¸²à¸\nโà¸à¹Šà¸\nโà¸à¸à¸²à¸ª\nโà¸à¸†à¸Šà¸¥\nโà¸à¸†à¸ªà¸‡à¸ªà¸²à¸£\nโà¸à¸†à¸°\nโà¸à¹ˆà¸‡\nโà¸à¸‡à¸à¸²à¸£\nโà¸à¸‡à¹‚ขดง\nโà¸à¸Šà¸°\nโà¸à¸Šà¸²\nโà¸à¹‚ซน\nโà¸à¸\nโà¸à¸”\nโà¸à¹Šà¸•\nโà¸à¸•à¸•à¸±à¸›à¸›à¸°\nโà¸à¸—นะ\nโà¸à¸™\nโà¸à¸š\nโà¸à¸›à¸›à¸²à¸•à¸´à¸à¸°\nโà¸à¸ า\nโà¸à¸ าส\nโà¸à¸¡\nโà¸à¸¢\nโà¸à¹Šà¸¢\nโà¸à¸£à¸ª\nโà¸à¸¥à¸°à¸žà¹ˆà¸\nโà¸à¸¥à¸´à¸¡à¸›à¸´à¸\nโà¸à¸§à¸²à¸—\nโà¸à¸©à¸à¹Œ\nโà¸à¸©à¸à¸Šà¸°\nโà¸à¸©à¸à¸ ัย\nโà¸à¸ªà¸–\nโà¸à¸«à¹Œà¸¡\nโà¸à¸«à¸±à¸‡\nโà¸à¸¬à¸²à¸£\nโà¸à¸¬à¸²à¸£à¸´à¸\nโà¸à¸¬à¸²à¸£à¸¶à¸\nโà¸à¹‰à¹€à¸à¹‰\nโà¸à¹€à¸à¸‹à¸´à¸ª\nโà¸à¹‰à¹‚ฮ\nไà¸\nไà¸à¹‰\nไà¸à¹‚ซโทป\nไà¸à¸™à¹Œà¸ªà¹„ตเนียม\nไà¸à¸¢à¸£à¸²\nไà¸à¸¢à¹€à¸£à¸¨\nไà¸à¸£à¸²à¸žà¸•\nไà¸à¸£à¸²à¸§à¸±à¸“\nไà¸à¸£à¸²à¸§à¸±à¸•\nไà¸à¸¨à¸à¸£à¸µà¸¡\nไà¸à¸¨à¸§à¸£à¸£à¸¢à¹Œ\nไà¸à¸¨à¸¸à¸£à¸´à¸¢à¸ªà¸¡à¸šà¸±à¸•à¸´\nไà¸à¸¨à¸¹à¸£à¸¢à¹Œ\nไà¸à¸à¸à¸™\nไà¸à¹‚à¸à¸”ีน\nฮà¸à¹€à¸à¸µà¹‰à¸¢à¸™\nฮด\nฮวงซุ้ย\nฮวน\nฮ้วนหมู\nฮวบ\nฮ่à¸\nฮ้à¸\nฮà¸à¸à¸à¸µà¹‰\nฮà¸à¸”\nฮ่à¸à¸¡\nฮ่à¸à¸¢à¸ˆà¹Šà¸\nฮà¸à¸£à¹Œà¹‚มน\nฮà¸à¸¥à¹à¸¥à¸™à¸”์\nฮà¸à¸¥à¸±à¸™à¸”า\nฮะ\nฮะเบส\nฮะเรีย\nฮัà¸\nฮังเล\nฮัจà¸à¹Œ\nฮัจà¸à¸°à¸®à¹Œ\nฮัจà¸à¸µ\nฮั่น\nฮั้ว\nฮา\nฮ้า\nฮ่างหลวง\nฮาจà¸à¹Œ\nฮาม\nฮาเร็ม\nฮาห์เนียม\nฮิจเราะห์\nฮินดู\nฮิปโปโปเตมัส\nฮิสทีเรีย\nฮีเลียม\nฮึ\nฮึà¸\nฮึด\nฮึดฮัด\nฮึ่ม\nฮึย\nฮึ่ย\nฮืดฮาด\nฮืà¸\nฮื่à¸\nฮื้à¸\nฮื้à¸à¸‰à¸µà¹ˆ\nฮุด\nฮุบ\nฮุยเลฮุย\nฮู้\nฮูà¸\nฮูม\nเฮ\nเฮฮา\nเฮà¸à¸•à¸²à¸£à¹Œ\nเฮà¸à¹‚ตà¸à¸£à¸±à¸¡\nเฮà¸à¹‚ตเมตร\nเฮà¸à¹‚ตลิตร\nเฮง\nเฮ็ด\nเฮโมโà¸à¸¥à¸šà¸´à¸™\nเฮย\nเฮ่ย\nเฮ้ย\nเฮโรà¸à¸µà¸™\nเฮลิคà¸à¸›à¹€à¸•à¸à¸£à¹Œ\nเฮโล\nเฮละโล\nเฮ้ว\nเฮà¸\nเฮ่à¸\nเฮ้à¸\nเฮà¸à¸£à¸´à¹€à¸„น\nเฮิรตซ์\nเฮี้ยน\nเฮี้ยบ\nเฮี้ยว\nเฮืà¸à¸\nเฮืà¸à¸™\nà¹à¸®\nà¹à¸®à¹ˆ\nà¹à¸®à¸\nà¹à¸®à¹ˆà¸à¸¶à¹Šà¸™\nà¹à¸®à¸™à¸”์บà¸à¸¥\nà¹à¸®à¸Ÿà¹€à¸™à¸µà¸¢à¸¡\nà¹à¸®à¸¡\nà¹à¸®à¸°\nโฮ\nโฮà¸\nโฮ่ง\nโฮ้ง\nโฮเต็ล\nโฮลเมียม\nโฮะ\nไฮ้\nไฮโà¸à¸£à¸¡à¸´à¹€à¸•à¸à¸£à¹Œ\nไฮดรา\nไฮโดร\nไฮโดรคาร์บà¸à¸™\nไฮโดรเจน\nไฮโดรมิเตà¸à¸£à¹Œ\nไฮไฟ\nไฮโล\nไฮฮี\n".split(/[\r\n]+/).filter(function(n){return 1<n.length}),this.addWords(words,!1);t&&this.finalizeDict()},dictSeek:function(n,t,e,r,i){for(var o=null;n<=t;){var s=Math.floor((n+t)/2),a=this.dict[s];if(a.length<=r)n=s+1;else{var c=a[r];c<e?n=s+1:e<c?t=s-1:(o=s,0==i?t=s-1:n=s+1)}}return o},isFinal:function(n){return this.dict[n.l].length==n.strOffset},createAcceptor:function(){return{l:0,r:this.dict.length-1,strOffset:0,isFinal:!1,dict:this,transit:function(n){return this.dict.transit(this,n)},isError:!1,tag:"DICT",w:1,type:"DICT"}},transit:function(n,t){var e=this.dictSeek(n.l,n.r,t,n.strOffset,0);if(null!==e){var r=this.dictSeek(e,n.r,t,n.strOffset,1);n.l=e,n.r=r,n.strOffset++,n.isFinal=this.isFinal(n)}else n.isError=!0;return n},sortuniq:function(n){return n.sort().filter(function(n,t,e){return!t||n!=e[t-1]})},flatten:function(n){return[].concat.apply([],n)}});e.exports=n}).call(this,"/dist/tmp")},{glob:16,path:22}],3:[function(n,t,e){var r={tag:"SPACE_RULE",createAcceptor:function(n){return n.SPACE_RULE?null:{strOffset:0,isFinal:!1,transit:function(n){return" "==n||"\t"==n||"\r"==n||"\n"==n||" "==n||" "==n?(this.isFinal=!0,this.strOffset++):this.isError=!0,this},isError:!1,tag:r.tag,w:1,type:"SPACE_RULE"}}},i=[{createAcceptor:function(n){return n.WORD_RULE?null:{strOffset:0,isFinal:!1,transit:function(n){var t=n.toLowerCase();return"a"<=t&&t<="z"?(this.isFinal=!0,this.strOffset++):this.isError=!0,this},isError:!1,tag:"WORD_RULE",type:"WORD_RULE",w:1}}},r,{tag:"SINSYM",createAcceptor:function(n){return{strOffset:0,isFinal:!1,transit:function(n){return 0==this.strOffset&&n.match(/^[\@\(\)\/\,\-\."`]$/)?(this.isFinal=!0,this.strOffset++):this.isError=!0,this},isError:!1,tag:"SINSYM",w:1,type:"SINSYM"}}},{createAcceptor:function(n){return n.NUMBER_RULE?null:{strOffset:0,isFinal:!1,transit:function(n){return"0"<=n&&n<="9"?(this.isFinal=!0,this.strOffset++):this.isError=!0,this},isError:!1,tag:"NUMBER_RULE",type:"NUMBER_RULE",w:1}}}];t.exports=i},{}],4:[function(n,t,e){var r=n("underscore"),i=(n("./wordcut_core"),{buildByAcceptors:function(o,n,s){return n.map(function(n){var t=s-n.strOffset+1,e=o[t],r={p:t,mw:e.mw+(void 0===n.mw?0:n.mw),w:n.w+e.w,unk:(n.unk?n.unk:0)+e.unk,type:n.type};if("PART"==n.type){for(var i=t+1;i<=s;i++)o[i].merge=t;r.merge=t}return r}).filter(function(n){return n})},fallback:function(n,t,e,r){var i=n[t];return e[r].match(/[\u0E48-\u0E4E]/)?(0!=t&&(t=n[t].p),{p:t,mw:0,w:1+i.w,unk:1+i.unk,type:"UNK"}):{p:t,mw:i.mw,w:1+i.w,unk:1+i.unk,type:"UNK"}},build:function(n,t,e,r,i){var o=this.buildByAcceptors(n,t,e);return 0<o.length?o:[this.fallback(n,r,i,e)]}});t.exports=function(){return r.clone(i)}},{"./wordcut_core":8,underscore:25}],5:[function(n,t,e){var r=n("underscore"),i={selectPath:function(n){return n.reduce(function(n,t){if(null==n)return t;if(t.unk<n.unk)return t;if(t.unk==n.unk){if(t.mw<n.mw)return t;if(t.mw==n.mw&&t.w<n.w)return t}return n},null)},createPath:function(){return[{p:null,w:0,unk:0,type:"INIT",mw:0}]}};t.exports=function(){return r.clone(i)}},{underscore:25}],6:[function(n,t,e){function i(n,t,e){if(n.length<=t)return!1;var r=n[t];return r==e||r.match(/[à¸à¸‚]/)&&e.match(/[à¸-ฮ]/)||r.match(/[มบ]/)&&e.match(/[à¸-ฮ]/)||r.match(/\u0E49/)&&e.match(/[\u0E48-\u0E4B]/)}var r={pat:"เหà¸à¹‡à¸¡",createAcceptor:function(n){return{strOffset:0,isFinal:!1,transit:function(n){return i(r.pat,this.strOffset,n)?(this.isFinal=this.strOffset+1==r.pat.length,this.strOffset++):this.isError=!0,this},isError:!1,tag:"THAI_RULE",type:"THAI_RULE",w:1}}},o=[r,{createAcceptor:function(n){return{strOffset:0,patterns:["à¹à¸","เà¸","à¸à¹‰","à¸à¸à¹Œ","à¸à¸²","à¸à¸µ","à¸à¸´","à¸à¸·à¸"],isFinal:!1,transit:function(t){var e=this.strOffset;if(this.patterns=this.patterns.filter(function(n){return i(n,e,t)}),0<this.patterns.length){var r=1+e;this.isFinal=this.patterns.some(function(n){return n.length==r}),this.strOffset++}else this.isError=!0;return this},isError:!1,tag:"PART",type:"PART",unk:1,w:1}}}];t.exports=o},{}],7:[function(n,t,e){n("sys");var r=n("./dict"),i=n("./wordcut_core"),o=n("./path_info_builder"),s=n("./path_selector"),a=n("./acceptors"),c=n("./latin_rules"),u=n("./thai_rules"),l=n("underscore"),f=Object.create(i);f.defaultPathInfoBuilder=o,f.defaultPathSelector=s,f.defaultAcceptors=a,f.defaultLatinRules=c,f.defaultThaiRules=u,f.defaultDict=r,f.initNoDict=function(n){var t=this;t.pathInfoBuilder=new t.defaultPathInfoBuilder,t.pathSelector=new t.defaultPathSelector,t.acceptors=new t.defaultAcceptors,t.defaultLatinRules.forEach(function(n){t.acceptors.creators.push(n)}),t.defaultThaiRules.forEach(function(n){t.acceptors.creators.push(n)})},f.init=function(n,t,e){t=t||!1,this.initNoDict();var r=l.clone(this.defaultDict);r.init(n,t,e),this.acceptors.creators.push(r)},t.exports=f},{"./acceptors":1,"./dict":2,"./latin_rules":3,"./path_info_builder":4,"./path_selector":5,"./thai_rules":6,"./wordcut_core":8,sys:28,underscore:25}],8:[function(n,t,e){var r={buildPath:function(n){var t=this,e=t.pathSelector.createPath(),r=0;t.acceptors.reset();for(var i=0;i<n.length;i++){var o=n[i];t.acceptors.transit(o);var s=t.pathInfoBuilder.build(e,t.acceptors.getFinalAcceptors(),i,r,n),a=t.pathSelector.selectPath(s);e.push(a),"UNK"!==a.type&&(r=i)}return e},pathToRanges:function(n){for(var t=n.length-1,e=[];0<t;){var r=n[t],i=r.p;if(void 0!==r.merge&&0<e.length){var o=e[e.length-1];o.s=r.merge,i=o.s}else e.push({s:i,e:t});t=i}return e.reverse()},rangesToText:function(t,n,e){return n.map(function(n){return t.substring(n.s,n.e)}).join(e)},cut:function(n,t){var e=this.buildPath(n),r=this.pathToRanges(e);return this.rangesToText(n,r,void 0===t?"|":t)},cutIntoRanges:function(t,n){var e=this.buildPath(t),r=this.pathToRanges(e);return n||r.forEach(function(n){n.text=t.substring(n.s,n.e)}),r},cutIntoArray:function(t){var n=this.buildPath(t);return this.pathToRanges(n).map(function(n){return t.substring(n.s,n.e)})}};t.exports=r},{}],9:[function(n,t,e){var c=n("util/"),u=Array.prototype.slice,r=Object.prototype.hasOwnProperty,o=t.exports=i;function l(n,t){return c.isUndefined(t)?""+t:c.isNumber(t)&&!isFinite(t)?t.toString():c.isFunction(t)||c.isRegExp(t)?t.toString():t}function f(n,t){return c.isString(n)?n.length<t?n:n.slice(0,t):n}function h(n,t,e,r,i){throw new o.AssertionError({message:e,actual:n,expected:t,operator:r,stackStartFunction:i})}function i(n,t){n||h(n,!0,t,"==",o.ok)}function p(n,t){if(n===t)return!0;if(c.isBuffer(n)&&c.isBuffer(t)){if(n.length!=t.length)return!1;for(var e=0;e<n.length;e++)if(n[e]!==t[e])return!1;return!0}return c.isDate(n)&&c.isDate(t)?n.getTime()===t.getTime():c.isRegExp(n)&&c.isRegExp(t)?n.source===t.source&&n.global===t.global&&n.multiline===t.multiline&&n.lastIndex===t.lastIndex&&n.ignoreCase===t.ignoreCase:c.isObject(n)||c.isObject(t)?function(n,t){if(c.isNullOrUndefined(n)||c.isNullOrUndefined(t))return!1;if(n.prototype!==t.prototype)return!1;if(c.isPrimitive(n)||c.isPrimitive(t))return n===t;var e=d(n),r=d(t);if(e&&!r||!e&&r)return!1;if(e)return n=u.call(n),t=u.call(t),p(n,t);var i,o,s=v(n),a=v(t);if(s.length!=a.length)return!1;for(s.sort(),a.sort(),o=s.length-1;0<=o;o--)if(s[o]!=a[o])return!1;for(o=s.length-1;0<=o;o--)if(i=s[o],!p(n[i],t[i]))return!1;return!0}(n,t):n==t}function d(n){return"[object Arguments]"==Object.prototype.toString.call(n)}function s(n,t){return!(!n||!t)&&("[object RegExp]"==Object.prototype.toString.call(t)?t.test(n):n instanceof t||!0===t.call({},n))}function a(n,t,e,r){var i;c.isString(e)&&(r=e,e=null);try{t()}catch(n){i=n}if(r=(e&&e.name?" ("+e.name+").":".")+(r?" "+r:"."),n&&!i&&h(i,e,"Missing expected exception"+r),!n&&s(i,e)&&h(i,e,"Got unwanted exception"+r),n&&i&&e&&!s(i,e)||!n&&i)throw i}o.AssertionError=function(n){var t;this.name="AssertionError",this.actual=n.actual,this.expected=n.expected,this.operator=n.operator,n.message?(this.message=n.message,this.generatedMessage=!1):(this.message=(t=this,f(JSON.stringify(t.actual,l),128)+" "+t.operator+" "+f(JSON.stringify(t.expected,l),128)),this.generatedMessage=!0);var e=n.stackStartFunction||h;if(Error.captureStackTrace)Error.captureStackTrace(this,e);else{var r=new Error;if(r.stack){var i=r.stack,o=e.name,s=i.indexOf("\n"+o);if(0<=s){var a=i.indexOf("\n",s+1);i=i.substring(a+1)}this.stack=i}}},c.inherits(o.AssertionError,Error),o.fail=h,o.ok=i,o.equal=function(n,t,e){n!=t&&h(n,t,e,"==",o.equal)},o.notEqual=function(n,t,e){n==t&&h(n,t,e,"!=",o.notEqual)},o.deepEqual=function(n,t,e){p(n,t)||h(n,t,e,"deepEqual",o.deepEqual)},o.notDeepEqual=function(n,t,e){p(n,t)&&h(n,t,e,"notDeepEqual",o.notDeepEqual)},o.strictEqual=function(n,t,e){n!==t&&h(n,t,e,"===",o.strictEqual)},o.notStrictEqual=function(n,t,e){n===t&&h(n,t,e,"!==",o.notStrictEqual)},o.throws=function(n,t,e){a.apply(this,[!0].concat(u.call(arguments)))},o.doesNotThrow=function(n,t){a.apply(this,[!1].concat(u.call(arguments)))},o.ifError=function(n){if(n)throw n};var v=Object.keys||function(n){var t=[];for(var e in n)r.call(n,e)&&t.push(e);return t}},{"util/":28}],10:[function(n,t,e){"use strict";function r(n,t,e){n instanceof RegExp&&(n=i(n,e)),t instanceof RegExp&&(t=i(t,e));var r=o(n,t,e);return r&&{start:r[0],end:r[1],pre:e.slice(0,r[0]),body:e.slice(r[0]+n.length,r[1]),post:e.slice(r[1]+t.length)}}function i(n,t){var e=t.match(n);return e?e[0]:null}function o(n,t,e){var r,i,o,s,a,c=e.indexOf(n),u=e.indexOf(t,c+1),l=c;if(0<=c&&0<u){for(r=[],o=e.length;0<=l&&!a;)l==c?(r.push(l),c=e.indexOf(n,l+1)):1==r.length?a=[r.pop(),u]:((i=r.pop())<o&&(o=i,s=u),u=e.indexOf(t,l+1)),l=c<u&&0<=c?c:u;r.length&&(a=[o,s])}return a}(t.exports=r).range=o},{}],11:[function(n,t,e){var k=n("concat-map"),S=n("balanced-match");t.exports=function(n){if(!n)return[];"{}"===n.substr(0,2)&&(n="\\{\\}"+n.substr(2));return function t(n,e){var r=[];var i=S("{","}",n);if(!i||/\$$/.test(i.pre))return[n];var o=/^-?\d+\.\.-?\d+(?:\.\.-?\d+)?$/.test(i.body);var s=/^[a-zA-Z]\.\.[a-zA-Z](?:\.\.-?\d+)?$/.test(i.body);var a=o||s;var c=0<=i.body.indexOf(",");if(!a&&!c)return i.post.match(/,.*\}/)?(n=i.pre+"{"+i.body+R+i.post,t(n)):[n];var u;if(a)u=i.body.split(/\.\./);else if(1===(u=T(i.body)).length&&1===(u=t(u[0],!1).map(I)).length){var l=i.post.length?t(i.post,!1):[""];return l.map(function(n){return i.pre+u[0]+n})}var f=i.pre;var l=i.post.length?t(i.post,!1):[""];var h;if(a){var p=L(u[0]),d=L(u[1]),v=Math.max(u[0].length,u[1].length),g=3==u.length?Math.abs(L(u[2])):1,m=D,y=d<p;y&&(g*=-1,m=F);var b=u.some(N);h=[];for(var _=p;m(_,d);_+=g){var w;if(s)"\\"===(w=String.fromCharCode(_))&&(w="");else if(w=String(_),b){var E=v-w.length;if(0<E){var O=new Array(E+1).join("0");w=_<0?"-"+O+w.slice(1):O+w}}h.push(w)}}else h=k(u,function(n){return t(n,!1)});for(var A=0;A<h.length;A++)for(var x=0;x<l.length;x++){var j=f+h[A]+l[x];(!e||a||j)&&r.push(j)}return r}((t=n,t.split("\\\\").join(r).split("\\{").join(i).split("\\}").join(R).split("\\,").join(o).split("\\.").join(s)),!0).map(a);var t};var r="\0SLASH"+Math.random()+"\0",i="\0OPEN"+Math.random()+"\0",R="\0CLOSE"+Math.random()+"\0",o="\0COMMA"+Math.random()+"\0",s="\0PERIOD"+Math.random()+"\0";function L(n){return parseInt(n,10)==n?parseInt(n,10):n.charCodeAt(0)}function a(n){return n.split(r).join("\\").split(i).join("{").split(R).join("}").split(o).join(",").split(s).join(".")}function T(n){if(!n)return[""];var t=[],e=S("{","}",n);if(!e)return n.split(",");var r=e.pre,i=e.body,o=e.post,s=r.split(",");s[s.length-1]+="{"+i+"}";var a=T(o);return o.length&&(s[s.length-1]+=a.shift(),s.push.apply(s,a)),t.push.apply(t,s),t}function I(n){return"{"+n+"}"}function N(n){return/^-?0\d/.test(n)}function D(n,t){return n<=t}function F(n,t){return t<=n}},{"balanced-match":10,"concat-map":13}],12:[function(n,t,e){},{}],13:[function(n,t,e){t.exports=function(n,t){for(var e=[],r=0;r<n.length;r++){var i=t(n[r],r);o(i)?e.push.apply(e,i):e.push(i)}return e};var o=Array.isArray||function(n){return"[object Array]"===Object.prototype.toString.call(n)}},{}],14:[function(n,t,e){function r(){this._events=this._events||{},this._maxListeners=this._maxListeners||void 0}function a(n){return"function"==typeof n}function c(n){return"object"==typeof n&&null!==n}function u(n){return void 0===n}((t.exports=r).EventEmitter=r).prototype._events=void 0,r.prototype._maxListeners=void 0,r.defaultMaxListeners=10,r.prototype.setMaxListeners=function(n){if("number"!=typeof n||n<0||isNaN(n))throw TypeError("n must be a positive number");return this._maxListeners=n,this},r.prototype.emit=function(n){var t,e,r,i,o,s;if(this._events||(this._events={}),"error"===n&&(!this._events.error||c(this._events.error)&&!this._events.error.length)){if((t=arguments[1])instanceof Error)throw t;throw TypeError('Uncaught, unspecified "error" event.')}if(u(e=this._events[n]))return!1;if(a(e))switch(arguments.length){case 1:e.call(this);break;case 2:e.call(this,arguments[1]);break;case 3:e.call(this,arguments[1],arguments[2]);break;default:for(r=arguments.length,i=new Array(r-1),o=1;o<r;o++)i[o-1]=arguments[o];e.apply(this,i)}else if(c(e)){for(r=arguments.length,i=new Array(r-1),o=1;o<r;o++)i[o-1]=arguments[o];for(r=(s=e.slice()).length,o=0;o<r;o++)s[o].apply(this,i)}return!0},r.prototype.on=r.prototype.addListener=function(n,t){var e;if(!a(t))throw TypeError("listener must be a function");(this._events||(this._events={}),this._events.newListener&&this.emit("newListener",n,a(t.listener)?t.listener:t),this._events[n]?c(this._events[n])?this._events[n].push(t):this._events[n]=[this._events[n],t]:this._events[n]=t,c(this._events[n])&&!this._events[n].warned)&&((e=u(this._maxListeners)?r.defaultMaxListeners:this._maxListeners)&&0<e&&this._events[n].length>e&&(this._events[n].warned=!0,console.error("(node) warning: possible EventEmitter memory leak detected. %d listeners added. Use emitter.setMaxListeners() to increase limit.",this._events[n].length),"function"==typeof console.trace&&console.trace()));return this},r.prototype.once=function(n,t){if(!a(t))throw TypeError("listener must be a function");var e=!1;function r(){this.removeListener(n,r),e||(e=!0,t.apply(this,arguments))}return r.listener=t,this.on(n,r),this},r.prototype.removeListener=function(n,t){var e,r,i,o;if(!a(t))throw TypeError("listener must be a function");if(!this._events||!this._events[n])return this;if(i=(e=this._events[n]).length,r=-1,e===t||a(e.listener)&&e.listener===t)delete this._events[n],this._events.removeListener&&this.emit("removeListener",n,t);else if(c(e)){for(o=i;0<o--;)if(e[o]===t||e[o].listener&&e[o].listener===t){r=o;break}if(r<0)return this;1===e.length?(e.length=0,delete this._events[n]):e.splice(r,1),this._events.removeListener&&this.emit("removeListener",n,t)}return this},r.prototype.removeAllListeners=function(n){var t,e;if(!this._events)return this;if(!this._events.removeListener)return 0===arguments.length?this._events={}:this._events[n]&&delete this._events[n],this;if(0===arguments.length){for(t in this._events)"removeListener"!==t&&this.removeAllListeners(t);return this.removeAllListeners("removeListener"),this._events={},this}if(a(e=this._events[n]))this.removeListener(n,e);else for(;e.length;)this.removeListener(n,e[e.length-1]);return delete this._events[n],this},r.prototype.listeners=function(n){return this._events&&this._events[n]?a(this._events[n])?[this._events[n]]:this._events[n].slice():[]},r.listenerCount=function(n,t){return n._events&&n._events[t]?a(n._events[t])?1:n._events[t].length:0}},{}],15:[function(t,n,p){(function(i){function o(n,t){return Object.prototype.hasOwnProperty.call(n,t)}p.alphasort=u,p.alphasorti=c,p.setopts=function(n,t,e){e||(e={});if(e.matchBase&&-1===t.indexOf("/")){if(e.noglobstar)throw new Error("base matching requires globstar");t="**/"+t}n.silent=!!e.silent,n.pattern=t,n.strict=!1!==e.strict,n.realpath=!!e.realpath,n.realpathCache=e.realpathCache||Object.create(null),n.follow=!!e.follow,n.dot=!!e.dot,n.mark=!!e.mark,n.nodir=!!e.nodir,n.nodir&&(n.mark=!0);n.sync=!!e.sync,n.nounique=!!e.nounique,n.nonull=!!e.nonull,n.nosort=!!e.nosort,n.nocase=!!e.nocase,n.stat=!!e.stat,n.noprocess=!!e.noprocess,n.maxLength=e.maxLength||1/0,n.cache=e.cache||Object.create(null),n.statCache=e.statCache||Object.create(null),n.symlinks=e.symlinks||Object.create(null),function(n,t){n.ignore=t.ignore||[],Array.isArray(n.ignore)||(n.ignore=[n.ignore]);n.ignore.length&&(n.ignore=n.ignore.map(l))}(n,e),n.changedCwd=!1;var r=i.cwd();o(e,"cwd")?(n.cwd=e.cwd,n.changedCwd=s.resolve(e.cwd)!==r):n.cwd=r;n.root=e.root||s.resolve(n.cwd,"/"),n.root=s.resolve(n.root),"win32"===i.platform&&(n.root=n.root.replace(/\\/g,"/"));n.nomount=!!e.nomount,e.nonegate=!1!==e.nonegate,e.nocomment=!1!==e.nocomment,function(n){if(!(n.nonegate&&n.nocomment||!0===i.noDeprecation||p.deprecationWarned)){var t="glob WARNING: comments and negation will be disabled in v6";if(i.throwDeprecation)throw new Error(t);i.traceDeprecation?console.trace(t):console.error(t),p.deprecationWarned=!0}}(e),n.minimatch=new a(t,e),n.options=n.minimatch.options},p.ownProp=o,p.makeAbs=f,p.finish=function(t){for(var n=t.nounique,e=n?[]:Object.create(null),r=0,i=t.matches.length;r<i;r++){var o=t.matches[r];if(o&&0!==Object.keys(o).length){var s=Object.keys(o);n?e.push.apply(e,s):s.forEach(function(n){e[n]=!0})}else if(t.nonull){var a=t.minimatch.globSet[r];n?e.push(a):e[a]=!0}}n||(e=Object.keys(e));t.nosort||(e=e.sort(t.nocase?c:u));if(t.mark){for(var r=0;r<e.length;r++)e[r]=t._mark(e[r]);t.nodir&&(e=e.filter(function(n){return!/\/$/.test(n)}))}t.ignore.length&&(e=e.filter(function(n){return!h(t,n)}));t.found=e},p.mark=function(n,t){var e=f(n,t),r=n.cache[e],i=t;if(r){var o="DIR"===r||Array.isArray(r),s="/"===t.slice(-1);if(o&&!s?i+="/":!o&&s&&(i=i.slice(0,-1)),i!==t){var a=f(n,i);n.statCache[a]=n.statCache[e],n.cache[a]=n.cache[e]}}return i},p.isIgnored=h,p.childrenIgnored=function(n,t){return!!n.ignore.length&&n.ignore.some(function(n){return!(!n.gmatcher||!n.gmatcher.match(t))})};var s=t("path"),n=t("minimatch"),e=t("path-is-absolute"),a=n.Minimatch;function c(n,t){return n.toLowerCase().localeCompare(t.toLowerCase())}function u(n,t){return n.localeCompare(t)}function l(n){var t=null;if("/**"===n.slice(-3)){var e=n.replace(/(\/\*\*)+$/,"");t=new a(e)}return{matcher:new a(n),gmatcher:t}}function f(n,t){return"/"===t.charAt(0)?s.join(n.root,t):e(t)||""===t?t:n.changedCwd?s.resolve(n.cwd,t):s.resolve(t)}function h(n,t){return!!n.ignore.length&&n.ignore.some(function(n){return n.matcher.match(t)||!(!n.gmatcher||!n.gmatcher.match(t))})}p.deprecationWarned}).call(this,t("_process"))},{_process:24,minimatch:20,path:22,"path-is-absolute":23}],16:[function(_,w,n){(function(s){w.exports=i;var u=_("fs"),l=_("minimatch"),n=(l.Minimatch,_("inherits")),t=_("events").EventEmitter,g=_("path"),f=_("assert"),h=_("path-is-absolute"),r=_("./sync.js"),e=_("./common.js"),a=(e.alphasort,e.alphasorti,e.setopts),p=e.ownProp,d=_("inflight"),o=_("util"),v=e.childrenIgnored,c=e.isIgnored,m=_("once");function i(n,t,e){if("function"==typeof t&&(e=t,t={}),t||(t={}),t.sync){if(e)throw new TypeError("callback provided to sync glob");return r(n,t)}return new b(n,t,e)}i.sync=r;var y=i.GlobSync=r.GlobSync;function b(n,t,e){if("function"==typeof t&&(e=t,t=null),t&&t.sync){if(e)throw new TypeError("callback provided to sync glob");return new y(n,t)}if(!(this instanceof b))return new b(n,t,e);a(this,n,t),this._didRealPath=!1;var r=this.minimatch.set.length;this.matches=new Array(r),"function"==typeof e&&(e=m(e),this.on("error",e),this.on("end",function(n){e(null,n)}));var i=this;r=this.minimatch.set.length;if(this._processing=0,this.matches=new Array(r),this._emitQueue=[],this._processQueue=[],this.paused=!1,this.noprocess)return this;if(0===r)return s();for(var o=0;o<r;o++)this._process(this.minimatch.set[o],o,!1,s);function s(){--i._processing,i._processing<=0&&i._finish()}}(i.glob=i).hasMagic=function(n,t){var e=o._extend({},t);e.noprocess=!0;var r=new b(n,e).minimatch.set;if(1<r.length)return!0;for(var i=0;i<r[0].length;i++)if("string"!=typeof r[0][i])return!0;return!1},n(i.Glob=b,t),b.prototype._finish=function(){if(f(this instanceof b),!this.aborted){if(this.realpath&&!this._didRealpath)return this._realpath();e.finish(this),this.emit("end",this.found)}},b.prototype._realpath=function(){if(!this._didRealpath){this._didRealpath=!0;var n=this.matches.length;if(0===n)return this._finish();for(var t=this,e=0;e<this.matches.length;e++)this._realpathSet(e,r)}function r(){0==--n&&t._finish()}},b.prototype._realpathSet=function(r,i){var n=this.matches[r];if(!n)return i();var t=Object.keys(n),o=this,s=t.length;if(0===s)return i();var a=this.matches[r]=Object.create(null);t.forEach(function(e,n){e=o._makeAbs(e),u.realpath(e,o.realpathCache,function(n,t){n?"stat"===n.syscall?a[e]=!0:o.emit("error",n):a[t]=!0,0==--s&&(o.matches[r]=a,i())})})},b.prototype._mark=function(n){return e.mark(this,n)},b.prototype._makeAbs=function(n){return e.makeAbs(this,n)},b.prototype.abort=function(){this.aborted=!0,this.emit("abort")},b.prototype.pause=function(){this.paused||(this.paused=!0,this.emit("pause"))},b.prototype.resume=function(){if(this.paused){if(this.emit("resume"),this.paused=!1,this._emitQueue.length)for(var n=this._emitQueue.slice(0),t=this._emitQueue.length=0;t<n.length;t++){var e=n[t];this._emitMatch(e[0],e[1])}if(this._processQueue.length){var r=this._processQueue.slice(0);for(t=this._processQueue.length=0;t<r.length;t++){var i=r[t];this._processing--,this._process(i[0],i[1],i[2],i[3])}}}},b.prototype._process=function(n,t,e,r){if(f(this instanceof b),f("function"==typeof r),!this.aborted)if(this._processing++,this.paused)this._processQueue.push([n,t,e,r]);else{for(var i,o=0;"string"==typeof n[o];)o++;switch(o){case n.length:return void this._processSimple(n.join("/"),t,r);case 0:i=null;break;default:i=n.slice(0,o).join("/")}var s,a=n.slice(o);s=null===i?".":((h(i)||h(n.join("/")))&&(i&&h(i)||(i="/"+i)),i);var c=this._makeAbs(s);if(v(this,s))return r();a[0]===l.GLOBSTAR?this._processGlobStar(i,s,c,a,t,e,r):this._processReaddir(i,s,c,a,t,e,r)}},b.prototype._processReaddir=function(e,r,i,o,s,a,c){var u=this;this._readdir(i,a,function(n,t){return u._processReaddir2(e,r,i,o,s,a,t,c)})},b.prototype._processReaddir2=function(n,t,e,r,i,o,s,a){if(!s)return a();for(var c=r[0],u=!!this.minimatch.negate,l=c._glob,f=this.dot||"."===l.charAt(0),h=[],p=0;p<s.length;p++){if("."!==(v=s[p]).charAt(0)||f)(u&&!n?!v.match(c):v.match(c))&&h.push(v)}var d=h.length;if(0===d)return a();if(1===r.length&&!this.mark&&!this.stat){this.matches[i]||(this.matches[i]=Object.create(null));for(p=0;p<d;p++){var v=h[p];n&&(v="/"!==n?n+"/"+v:n+v),"/"!==v.charAt(0)||this.nomount||(v=g.join(this.root,v)),this._emitMatch(i,v)}return a()}r.shift();for(p=0;p<d;p++){v=h[p];n&&(v="/"!==n?n+"/"+v:n+v),this._process([v].concat(r),i,o,a)}a()},b.prototype._emitMatch=function(n,t){if(!this.aborted&&!this.matches[n][t]&&!c(this,t))if(this.paused)this._emitQueue.push([n,t]);else{var e=this._makeAbs(t);if(this.nodir){var r=this.cache[e];if("DIR"===r||Array.isArray(r))return}this.mark&&(t=this._mark(t)),this.matches[n][t]=!0;var i=this.statCache[e];i&&this.emit("stat",t,i),this.emit("match",t)}},b.prototype._readdirInGlobStar=function(r,i){if(!this.aborted){if(this.follow)return this._readdir(r,!1,i);var o=this,n=d("lstat\0"+r,function(n,t){if(n)return i();var e=t.isSymbolicLink();(o.symlinks[r]=e)||t.isDirectory()?o._readdir(r,!1,i):(o.cache[r]="FILE",i())});n&&u.lstat(r,n)}},b.prototype._readdir=function(n,t,e){if(!this.aborted&&(e=d("readdir\0"+n+"\0"+t,e))){if(t&&!p(this.symlinks,n))return this._readdirInGlobStar(n,e);if(p(this.cache,n)){var r=this.cache[n];if(!r||"FILE"===r)return e();if(Array.isArray(r))return e(null,r)}var i,o,s;u.readdir(n,(i=this,o=n,s=e,function(n,t){n?i._readdirError(o,n,s):i._readdirEntries(o,t,s)}))}},b.prototype._readdirEntries=function(n,t,e){if(!this.aborted){if(!this.mark&&!this.stat)for(var r=0;r<t.length;r++){var i=t[r];i="/"===n?n+i:n+"/"+i,this.cache[i]=!0}return e(null,this.cache[n]=t)}},b.prototype._readdirError=function(n,t,e){if(!this.aborted){switch(t.code){case"ENOTSUP":case"ENOTDIR":this.cache[this._makeAbs(n)]="FILE";break;case"ENOENT":case"ELOOP":case"ENAMETOOLONG":case"UNKNOWN":this.cache[this._makeAbs(n)]=!1;break;default:this.cache[this._makeAbs(n)]=!1,this.strict&&(this.emit("error",t),this.abort()),this.silent||console.error("glob error",t)}return e()}},b.prototype._processGlobStar=function(e,r,i,o,s,a,c){var u=this;this._readdir(i,a,function(n,t){u._processGlobStar2(e,r,i,o,s,a,t,c)})},b.prototype._processGlobStar2=function(n,t,e,r,i,o,s,a){if(!s)return a();var c=r.slice(1),u=n?[n]:[],l=u.concat(c);this._process(l,i,!1,a);var f=this.symlinks[e],h=s.length;if(f&&o)return a();for(var p=0;p<h;p++){if("."!==s[p].charAt(0)||this.dot){var d=u.concat(s[p],c);this._process(d,i,!0,a);var v=u.concat(s[p],r);this._process(v,i,!0,a)}}a()},b.prototype._processSimple=function(e,r,i){var o=this;this._stat(e,function(n,t){o._processSimple2(e,r,n,t,i)})},b.prototype._processSimple2=function(n,t,e,r,i){if(this.matches[t]||(this.matches[t]=Object.create(null)),!r)return i();if(n&&h(n)&&!this.nomount){var o=/[\/\\]$/.test(n);"/"===n.charAt(0)?n=g.join(this.root,n):(n=g.resolve(this.root,n),o&&(n+="/"))}"win32"===s.platform&&(n=n.replace(/\\/g,"/")),this._emitMatch(t,n),i()},b.prototype._stat=function(r,i){var o=this._makeAbs(r),n="/"===r.slice(-1);if(r.length>this.maxLength)return i();if(!this.stat&&p(this.cache,o)){var t=this.cache[o];if(Array.isArray(t)&&(t="DIR"),!n||"DIR"===t)return i(null,t);if(n&&"FILE"===t)return i()}var e=this.statCache[o];if(void 0!==e){if(!1===e)return i(null,e);var s=e.isDirectory()?"DIR":"FILE";return n&&"FILE"===s?i():i(null,s,e)}var a=this,c=d("stat\0"+o,function(n,e){{if(e&&e.isSymbolicLink())return u.stat(o,function(n,t){n?a._stat2(r,o,null,e,i):a._stat2(r,o,n,t,i)});a._stat2(r,o,n,e,i)}});c&&u.lstat(o,c)},b.prototype._stat2=function(n,t,e,r,i){if(e)return this.statCache[t]=!1,i();var o="/"===n.slice(-1);if(this.statCache[t]=r,"/"===t.slice(-1)&&!r.isDirectory())return i(null,!1,r);var s=r.isDirectory()?"DIR":"FILE";return this.cache[t]=this.cache[t]||s,o&&"DIR"!==s?i():i(null,s,r)}}).call(this,_("_process"))},{"./common.js":15,"./sync.js":17,_process:24,assert:9,events:14,fs:12,inflight:18,inherits:19,minimatch:20,once:21,path:22,"path-is-absolute":23,util:28}],17:[function(e,r,n){(function(i){(r.exports=n).GlobSync=h;var s=e("fs"),c=e("minimatch"),g=(c.Minimatch,e("./glob.js").Glob,e("util"),e("path")),u=e("assert"),l=e("path-is-absolute"),t=e("./common.js"),o=(t.alphasort,t.alphasorti,t.setopts),a=t.ownProp,f=t.childrenIgnored;function n(n,t){if("function"==typeof t||3===arguments.length)throw new TypeError("callback provided to sync glob\nSee: https://github.com/isaacs/node-glob/issues/167");return new h(n,t).found}function h(n,t){if(!n)throw new Error("must provide pattern");if("function"==typeof t||3===arguments.length)throw new TypeError("callback provided to sync glob\nSee: https://github.com/isaacs/node-glob/issues/167");if(!(this instanceof h))return new h(n,t);if(o(this,n,t),this.noprocess)return this;var e=this.minimatch.set.length;this.matches=new Array(e);for(var r=0;r<e;r++)this._process(this.minimatch.set[r],r,!1);this._finish()}h.prototype._finish=function(){if(u(this instanceof h),this.realpath){var i=this;this.matches.forEach(function(n,t){var e=i.matches[t]=Object.create(null);for(var r in n)try{r=i._makeAbs(r),e[s.realpathSync(r,i.realpathCache)]=!0}catch(n){if("stat"!==n.syscall)throw n;e[i._makeAbs(r)]=!0}})}t.finish(this)},h.prototype._process=function(n,t,e){u(this instanceof h);for(var r,i=0;"string"==typeof n[i];)i++;switch(i){case n.length:return void this._processSimple(n.join("/"),t);case 0:r=null;break;default:r=n.slice(0,i).join("/")}var o,s=n.slice(i);o=null===r?".":((l(r)||l(n.join("/")))&&(r&&l(r)||(r="/"+r)),r);var a=this._makeAbs(o);f(this,o)||(s[0]===c.GLOBSTAR?this._processGlobStar(r,o,a,s,t,e):this._processReaddir(r,o,a,s,t,e))},h.prototype._processReaddir=function(n,t,e,r,i,o){var s=this._readdir(e,o);if(s){for(var a=r[0],c=!!this.minimatch.negate,u=a._glob,l=this.dot||"."===u.charAt(0),f=[],h=0;h<s.length;h++){if("."!==(v=s[h]).charAt(0)||l)(c&&!n?!v.match(a):v.match(a))&&f.push(v)}var p=f.length;if(0!==p)if(1!==r.length||this.mark||this.stat){r.shift();for(h=0;h<p;h++){var d;v=f[h];d=n?[n,v]:[v],this._process(d.concat(r),i,o)}}else{this.matches[i]||(this.matches[i]=Object.create(null));for(var h=0;h<p;h++){var v=f[h];n&&(v="/"!==n.slice(-1)?n+"/"+v:n+v),"/"!==v.charAt(0)||this.nomount||(v=g.join(this.root,v)),this.matches[i][v]=!0}}}},h.prototype._emitMatch=function(n,t){this._makeAbs(t);if(this.mark&&(t=this._mark(t)),!this.matches[n][t]){if(this.nodir){var e=this.cache[this._makeAbs(t)];if("DIR"===e||Array.isArray(e))return}this.matches[n][t]=!0,this.stat&&this._stat(t)}},h.prototype._readdirInGlobStar=function(n){if(this.follow)return this._readdir(n,!1);var t,e;try{e=s.lstatSync(n)}catch(n){return null}var r=e.isSymbolicLink();return(this.symlinks[n]=r)||e.isDirectory()?t=this._readdir(n,!1):this.cache[n]="FILE",t},h.prototype._readdir=function(t,n){if(n&&!a(this.symlinks,t))return this._readdirInGlobStar(t);if(a(this.cache,t)){var e=this.cache[t];if(!e||"FILE"===e)return null;if(Array.isArray(e))return e}try{return this._readdirEntries(t,s.readdirSync(t))}catch(n){return this._readdirError(t,n),null}},h.prototype._readdirEntries=function(n,t){if(!this.mark&&!this.stat)for(var e=0;e<t.length;e++){var r=t[e];r="/"===n?n+r:n+"/"+r,this.cache[r]=!0}return this.cache[n]=t},h.prototype._readdirError=function(n,t){switch(t.code){case"ENOTSUP":case"ENOTDIR":this.cache[this._makeAbs(n)]="FILE";break;case"ENOENT":case"ELOOP":case"ENAMETOOLONG":case"UNKNOWN":this.cache[this._makeAbs(n)]=!1;break;default:if(this.cache[this._makeAbs(n)]=!1,this.strict)throw t;this.silent||console.error("glob error",t)}},h.prototype._processGlobStar=function(n,t,e,r,i,o){var s=this._readdir(e,o);if(s){var a=r.slice(1),c=n?[n]:[],u=c.concat(a);this._process(u,i,!1);var l=s.length;if(!this.symlinks[e]||!o)for(var f=0;f<l;f++){if("."!==s[f].charAt(0)||this.dot){var h=c.concat(s[f],a);this._process(h,i,!0);var p=c.concat(s[f],r);this._process(p,i,!0)}}}},h.prototype._processSimple=function(n,t){var e=this._stat(n);if(this.matches[t]||(this.matches[t]=Object.create(null)),e){if(n&&l(n)&&!this.nomount){var r=/[\/\\]$/.test(n);"/"===n.charAt(0)?n=g.join(this.root,n):(n=g.resolve(this.root,n),r&&(n+="/"))}"win32"===i.platform&&(n=n.replace(/\\/g,"/")),this.matches[t][n]=!0}},h.prototype._stat=function(n){var t=this._makeAbs(n),e="/"===n.slice(-1);if(n.length>this.maxLength)return!1;if(!this.stat&&a(this.cache,t)){var r=this.cache[t];if(Array.isArray(r)&&(r="DIR"),!e||"DIR"===r)return r;if(e&&"FILE"===r)return!1}var i=this.statCache[t];if(!i){var o;try{o=s.lstatSync(t)}catch(n){return!1}if(o.isSymbolicLink())try{i=s.statSync(t)}catch(n){i=o}else i=o}r=(this.statCache[t]=i).isDirectory()?"DIR":"FILE";return this.cache[t]=this.cache[t]||r,(!e||"DIR"===r)&&r},h.prototype._mark=function(n){return t.mark(this,n)},h.prototype._makeAbs=function(n){return t.makeAbs(this,n)}}).call(this,e("_process"))},{"./common.js":15,"./glob.js":16,_process:24,assert:9,fs:12,minimatch:20,path:22,"path-is-absolute":23,util:28}],18:[function(t,r,n){(function(s){var n=t("wrappy"),a=Object.create(null),e=t("once");r.exports=n(function(n,t){return a[n]?(a[n].push(t),null):(a[n]=[t],o=n,e(function n(){var t=a[o],e=t.length,r=function(n){for(var t=n.length,e=[],r=0;r<t;r++)e[r]=n[r];return e}(arguments);try{for(var i=0;i<e;i++)t[i].apply(null,r)}finally{t.length>e?(t.splice(0,e),s.nextTick(function(){n.apply(null,r)})):delete a[o]}}));var o})}).call(this,t("_process"))},{_process:24,once:21,wrappy:29}],19:[function(n,t,e){"function"==typeof Object.create?t.exports=function(n,t){n.super_=t,n.prototype=Object.create(t.prototype,{constructor:{value:n,enumerable:!1,writable:!0,configurable:!0}})}:t.exports=function(n,t){n.super_=t;var e=function(){};e.prototype=t.prototype,n.prototype=new e,n.prototype.constructor=n}},{}],20:[function(n,t,e){(t.exports=s).Minimatch=i;var u={sep:"/"};try{u=n("path")}catch(n){}var M=s.GLOBSTAR=i.GLOBSTAR={},r=n("brace-expansion"),C={"!":{open:"(?:(?!(?:",close:"))[^/]*?)"},"?":{open:"(?:",close:")?"},"+":{open:"(?:",close:")+"},"*":{open:"(?:",close:")*"},"@":{open:"(?:",close:")"}},P="[^/]",z=P+"*?",B="().*{}+?[]^$\\!".split("").reduce(function(n,t){return n[t]=!0,n},{});var l=/\/+/;function o(t,e){t=t||{},e=e||{};var r={};return Object.keys(e).forEach(function(n){r[n]=e[n]}),Object.keys(t).forEach(function(n){r[n]=t[n]}),r}function s(n,t,e){if("string"!=typeof t)throw new TypeError("glob pattern string required");return e||(e={}),!(!e.nocomment&&"#"===t.charAt(0))&&(""===t.trim()?""===n:new i(t,e).match(n))}function i(n,t){if(!(this instanceof i))return new i(n,t);if("string"!=typeof n)throw new TypeError("glob pattern string required");t||(t={}),n=n.trim(),"/"!==u.sep&&(n=n.split(u.sep).join("/")),this.options=t,this.set=[],this.pattern=n,this.regexp=null,this.negate=!1,this.comment=!1,this.empty=!1,this.make()}function a(n,t){if(t||(t=this instanceof i?this.options:{}),void 0===(n=void 0===n?this.pattern:n))throw new TypeError("undefined pattern");return t.nobrace||!n.match(/\{.*\}/)?[n]:r(n)}s.filter=function(r,i){return i=i||{},function(n,t,e){return s(n,r,i)}},s.defaults=function(r){if(!r||!Object.keys(r).length)return s;var i=s,n=function(n,t,e){return i.minimatch(n,t,o(r,e))};return n.Minimatch=function(n,t){return new i.Minimatch(n,o(r,t))},n},i.defaults=function(n){return n&&Object.keys(n).length?s.defaults(n).Minimatch:i},i.prototype.debug=function(){},i.prototype.make=function(){if(this._made)return;var n=this.pattern,t=this.options;if(!t.nocomment&&"#"===n.charAt(0))return void(this.comment=!0);if(!n)return void(this.empty=!0);this.parseNegate();var e=this.globSet=this.braceExpand();t.debug&&(this.debug=console.error);this.debug(this.pattern,e),e=this.globParts=e.map(function(n){return n.split(l)}),this.debug(this.pattern,e),e=e.map(function(n,t,e){return n.map(this.parse,this)},this),this.debug(this.pattern,e),e=e.filter(function(n){return-1===n.indexOf(!1)}),this.debug(this.pattern,e),this.set=e},i.prototype.parseNegate=function(){var n=this.pattern,t=!1,e=this.options,r=0;if(e.nonegate)return;for(var i=0,o=n.length;i<o&&"!"===n.charAt(i);i++)t=!t,r++;r&&(this.pattern=n.substr(r));this.negate=t},s.braceExpand=function(n,t){return a(n,t)},i.prototype.braceExpand=a,i.prototype.parse=function(n,t){if(65536<n.length)throw new TypeError("pattern is too long");var e=this.options;if(!e.noglobstar&&"**"===n)return M;if(""===n)return"";var r,i="",o=!!e.nocase,s=!1,a=[],c=[],u=!1,l=-1,f=-1,h="."===n.charAt(0)?"":e.dot?"(?!(?:^|\\/)\\.{1,2}(?:$|\\/))":"(?!\\.)",p=this;function d(){if(r){switch(r){case"*":i+=z,o=!0;break;case"?":i+=P,o=!0;break;default:i+="\\"+r}p.debug("clearStateChar %j %j",r,i),r=!1}}for(var v,g=0,m=n.length;g<m&&(v=n.charAt(g));g++)if(this.debug("%s\t%s %s %j",n,g,i,v),s&&B[v])i+="\\"+v,s=!1;else switch(v){case"/":return!1;case"\\":d(),s=!0;continue;case"?":case"*":case"+":case"@":case"!":if(this.debug("%s\t%s %s %j <-- stateChar",n,g,i,v),u){this.debug(" in class"),"!"===v&&g===f+1&&(v="^"),i+=v;continue}p.debug("call clearStateChar %j",r),d(),r=v,e.noext&&d();continue;case"(":if(u){i+="(";continue}if(!r){i+="\\(";continue}a.push({type:r,start:g-1,reStart:i.length,open:C[r].open,close:C[r].close}),i+="!"===r?"(?:(?!(?:":"(?:",this.debug("plType %j %j",r,i),r=!1;continue;case")":if(u||!a.length){i+="\\)";continue}d(),o=!0;var y=a.pop();i+=y.close,"!"===y.type&&c.push(y),y.reEnd=i.length;continue;case"|":if(u||!a.length||s){i+="\\|",s=!1;continue}d(),i+="|";continue;case"[":if(d(),u){i+="\\"+v;continue}u=!0,f=g,l=i.length,i+=v;continue;case"]":if(g===f+1||!u){i+="\\"+v,s=!1;continue}if(u){var b=n.substring(f+1,g);try{RegExp("["+b+"]")}catch(n){var _=this.parse(b,U);i=i.substr(0,l)+"\\["+_[0]+"\\]",o=o||_[1],u=!1;continue}}u=!(o=!0),i+=v;continue;default:d(),s?s=!1:!B[v]||"^"===v&&u||(i+="\\"),i+=v}u&&(b=n.substr(f+1),_=this.parse(b,U),i=i.substr(0,l)+"\\["+_[0],o=o||_[1]);for(y=a.pop();y;y=a.pop()){var w=i.slice(y.reStart+y.open.length);this.debug("setting tail",i,y),w=w.replace(/((?:\\{2}){0,64})(\\?)\|/g,function(n,t,e){return e||(e="\\"),t+t+e+"|"}),this.debug("tail=%j\n %s",w,w,y,i);var E="*"===y.type?z:"?"===y.type?P:"\\"+y.type;o=!0,i=i.slice(0,y.reStart)+E+"\\("+w}d(),s&&(i+="\\\\");var O=!1;switch(i.charAt(0)){case".":case"[":case"(":O=!0}for(var A=c.length-1;-1<A;A--){var x=c[A],j=i.slice(0,x.reStart),k=i.slice(x.reStart,x.reEnd-8),S=i.slice(x.reEnd-8,x.reEnd),R=i.slice(x.reEnd);S+=R;var L=j.split("(").length-1,T=R;for(g=0;g<L;g++)T=T.replace(/\)[+*?]?/,"");var I="";""===(R=T)&&t!==U&&(I="$");var N=j+k+R+I+S;i=N}""!==i&&o&&(i="(?=.)"+i);O&&(i=h+i);if(t===U)return[i,o];if(!o)return n.replace(/\\(.)/g,"$1");var D=e.nocase?"i":"";try{var F=new RegExp("^"+i+"$",D)}catch(n){return new RegExp("$.")}return F._glob=n,F._src=i,F};var U={};s.makeRe=function(n,t){return new i(n,t||{}).makeRe()},i.prototype.makeRe=function(){if(this.regexp||!1===this.regexp)return this.regexp;var n=this.set;if(!n.length)return this.regexp=!1,this.regexp;var t=this.options,e=t.noglobstar?z:t.dot?"(?:(?!(?:\\/|^)(?:\\.{1,2})($|\\/)).)*?":"(?:(?!(?:\\/|^)\\.).)*?",r=t.nocase?"i":"",i=n.map(function(n){return n.map(function(n){return n===M?e:"string"==typeof n?n.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"):n._src}).join("\\/")}).join("|");i="^(?:"+i+")$",this.negate&&(i="^(?!"+i+").*$");try{this.regexp=new RegExp(i,r)}catch(n){this.regexp=!1}return this.regexp},s.match=function(n,t,e){var r=new i(t,e=e||{});return n=n.filter(function(n){return r.match(n)}),r.options.nonull&&!n.length&&n.push(t),n},i.prototype.match=function(n,t){if(this.debug("match",n,this.pattern),this.comment)return!1;if(this.empty)return""===n;if("/"===n&&t)return!0;var e=this.options;"/"!==u.sep&&(n=n.split(u.sep).join("/"));n=n.split(l),this.debug(this.pattern,"split",n);var r,i,o=this.set;for(this.debug(this.pattern,"set",o),i=n.length-1;0<=i&&!(r=n[i]);i--);for(i=0;i<o.length;i++){var s=o[i],a=n;e.matchBase&&1===s.length&&(a=[r]);var c=this.matchOne(a,s,t);if(c)return!!e.flipNegate||!this.negate}return!e.flipNegate&&this.negate},i.prototype.matchOne=function(n,t,e){var r=this.options;this.debug("matchOne",{this:this,file:n,pattern:t}),this.debug("matchOne",n.length,t.length);for(var i=0,o=0,s=n.length,a=t.length;i<s&&o<a;i++,o++){this.debug("matchOne loop");var c,u=t[o],l=n[i];if(this.debug(t,u,l),!1===u)return!1;if(u===M){this.debug("GLOBSTAR",[t,u,l]);var f=i,h=o+1;if(h===a){for(this.debug("** at the end");i<s;i++)if("."===n[i]||".."===n[i]||!r.dot&&"."===n[i].charAt(0))return!1;return!0}for(;f<s;){var p=n[f];if(this.debug("\nglobstar while",n,f,t,h,p),this.matchOne(n.slice(f),t.slice(h),e))return this.debug("globstar found match!",f,s,p),!0;if("."===p||".."===p||!r.dot&&"."===p.charAt(0)){this.debug("dot detected!",n,f,t,h);break}this.debug("globstar swallow a segment, and continue"),f++}return!(!e||(this.debug("\n>>> no match, partial?",n,f,t,h),f!==s))}if("string"==typeof u?(c=r.nocase?l.toLowerCase()===u.toLowerCase():l===u,this.debug("string match",u,l,c)):(c=l.match(u),this.debug("pattern match",u,l,c)),!c)return!1}if(i===s&&o===a)return!0;if(i===s)return e;if(o===a)return i===s-1&&""===n[i];throw new Error("wtf?")}},{"brace-expansion":11,path:22}],21:[function(n,t,e){var r=n("wrappy");function i(n){var t=function(){return t.called?t.value:(t.called=!0,t.value=n.apply(this,arguments))};return t.called=!1,t}function o(n){var t=function(){if(t.called)throw new Error(t.onceError);return t.called=!0,t.value=n.apply(this,arguments)},e=n.name||"Function wrapped with `once`";return t.onceError=e+" shouldn't be called more than once",t.called=!1,t}t.exports=r(i),t.exports.strict=r(o),i.proto=i(function(){Object.defineProperty(Function.prototype,"once",{value:function(){return i(this)},configurable:!0}),Object.defineProperty(Function.prototype,"onceStrict",{value:function(){return o(this)},configurable:!0})})},{wrappy:29}],22:[function(n,t,u){(function(i){function o(n,t){for(var e=0,r=n.length-1;0<=r;r--){var i=n[r];"."===i?n.splice(r,1):".."===i?(n.splice(r,1),e++):e&&(n.splice(r,1),e--)}if(t)for(;e--;e)n.unshift("..");return n}var t=/^(\/?|)([\s\S]*?)((?:\.{1,2}|[^\/]+?|)(\.[^.\/]*|))(?:[\/]*)$/,s=function(n){return t.exec(n).slice(1)};function a(n,t){if(n.filter)return n.filter(t);for(var e=[],r=0;r<n.length;r++)t(n[r],r,n)&&e.push(n[r]);return e}u.resolve=function(){for(var n="",t=!1,e=arguments.length-1;-1<=e&&!t;e--){var r=0<=e?arguments[e]:i.cwd();if("string"!=typeof r)throw new TypeError("Arguments to path.resolve must be strings");r&&(n=r+"/"+n,t="/"===r.charAt(0))}return(t?"/":"")+(n=o(a(n.split("/"),function(n){return!!n}),!t).join("/"))||"."},u.normalize=function(n){var t=u.isAbsolute(n),e="/"===r(n,-1);return(n=o(a(n.split("/"),function(n){return!!n}),!t).join("/"))||t||(n="."),n&&e&&(n+="/"),(t?"/":"")+n},u.isAbsolute=function(n){return"/"===n.charAt(0)},u.join=function(){var n=Array.prototype.slice.call(arguments,0);return u.normalize(a(n,function(n,t){if("string"!=typeof n)throw new TypeError("Arguments to path.join must be strings");return n}).join("/"))},u.relative=function(n,t){function e(n){for(var t=0;t<n.length&&""===n[t];t++);for(var e=n.length-1;0<=e&&""===n[e];e--);return e<t?[]:n.slice(t,e-t+1)}n=u.resolve(n).substr(1),t=u.resolve(t).substr(1);for(var r=e(n.split("/")),i=e(t.split("/")),o=Math.min(r.length,i.length),s=o,a=0;a<o;a++)if(r[a]!==i[a]){s=a;break}var c=[];for(a=s;a<r.length;a++)c.push("..");return(c=c.concat(i.slice(s))).join("/")},u.sep="/",u.delimiter=":",u.dirname=function(n){var t=s(n),e=t[0],r=t[1];return e||r?(r&&(r=r.substr(0,r.length-1)),e+r):"."},u.basename=function(n,t){var e=s(n)[2];return t&&e.substr(-1*t.length)===t&&(e=e.substr(0,e.length-t.length)),e},u.extname=function(n){return s(n)[3]};var r="b"==="ab".substr(-1)?function(n,t,e){return n.substr(t,e)}:function(n,t,e){return t<0&&(t=n.length+t),n.substr(t,e)}}).call(this,n("_process"))},{_process:24}],23:[function(n,r,t){(function(n){"use strict";function t(n){return"/"===n.charAt(0)}function e(n){var t=/^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/.exec(n),e=t[1]||"",r=Boolean(e&&":"!==e.charAt(1));return Boolean(t[2]||r)}r.exports="win32"===n.platform?e:t,r.exports.posix=t,r.exports.win32=e}).call(this,n("_process"))},{_process:24}],24:[function(n,t,e){var r,i,o=t.exports={};function s(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function c(t){if(r===setTimeout)return setTimeout(t,0);if((r===s||!r)&&setTimeout)return r=setTimeout,setTimeout(t,0);try{return r(t,0)}catch(n){try{return r.call(null,t,0)}catch(n){return r.call(this,t,0)}}}!function(){try{r="function"==typeof setTimeout?setTimeout:s}catch(n){r=s}try{i="function"==typeof clearTimeout?clearTimeout:a}catch(n){i=a}}();var u,l=[],f=!1,h=-1;function p(){f&&u&&(f=!1,u.length?l=u.concat(l):h=-1,l.length&&d())}function d(){if(!f){var n=c(p);f=!0;for(var t=l.length;t;){for(u=l,l=[];++h<t;)u&&u[h].run();h=-1,t=l.length}u=null,f=!1,function(t){if(i===clearTimeout)return clearTimeout(t);if((i===a||!i)&&clearTimeout)return i=clearTimeout,clearTimeout(t);try{i(t)}catch(n){try{return i.call(null,t)}catch(n){return i.call(this,t)}}}(n)}}function v(n,t){this.fun=n,this.array=t}function g(){}o.nextTick=function(n){var t=new Array(arguments.length-1);if(1<arguments.length)for(var e=1;e<arguments.length;e++)t[e-1]=arguments[e];l.push(new v(n,t)),1!==l.length||f||c(d)},v.prototype.run=function(){this.fun.apply(null,this.array)},o.title="browser",o.browser=!0,o.env={},o.argv=[],o.version="",o.versions={},o.on=g,o.addListener=g,o.once=g,o.off=g,o.removeListener=g,o.removeAllListeners=g,o.emit=g,o.prependListener=g,o.prependOnceListener=g,o.listeners=function(n){return[]},o.binding=function(n){throw new Error("process.binding is not supported")},o.cwd=function(){return"/"},o.chdir=function(n){throw new Error("process.chdir is not supported")},o.umask=function(){return 0}},{}],25:[function(n,q,$){(function(){var n=this,t=n._,r=Array.prototype,s=Object.prototype,e=Function.prototype,i=r.push,c=r.slice,f=s.toString,o=s.hasOwnProperty,a=Array.isArray,u=Object.keys,l=e.bind,h=Object.create,p=function(){},d=function(n){return n instanceof d?n:this instanceof d?void(this._wrapped=n):new d(n)};void 0!==$?(void 0!==q&&q.exports&&($=q.exports=d),$._=d):n._=d,d.VERSION="1.8.3";var v=function(i,o,n){if(void 0===o)return i;switch(null==n?3:n){case 1:return function(n){return i.call(o,n)};case 2:return function(n,t){return i.call(o,n,t)};case 3:return function(n,t,e){return i.call(o,n,t,e)};case 4:return function(n,t,e,r){return i.call(o,n,t,e,r)}}return function(){return i.apply(o,arguments)}},g=function(n,t,e){return null==n?d.identity:d.isFunction(n)?v(n,t,e):d.isObject(n)?d.matcher(n):d.property(n)};d.iteratee=function(n,t){return g(n,t,1/0)};var m=function(c,u){return function(n){var t=arguments.length;if(t<2||null==n)return n;for(var e=1;e<t;e++)for(var r=arguments[e],i=c(r),o=i.length,s=0;s<o;s++){var a=i[s];u&&void 0!==n[a]||(n[a]=r[a])}return n}},y=function(n){if(!d.isObject(n))return{};if(h)return h(n);p.prototype=n;var t=new p;return p.prototype=null,t},b=function(t){return function(n){return null==n?void 0:n[t]}},_=Math.pow(2,53)-1,w=b("length"),E=function(n){var t=w(n);return"number"==typeof t&&0<=t&&t<=_};function O(a){return function(n,t,e,r){t=v(t,r,4);var i=!E(n)&&d.keys(n),o=(i||n).length,s=0<a?0:o-1;return arguments.length<3&&(e=n[i?i[s]:s],s+=a),function(n,t,e,r,i,o){for(;0<=i&&i<o;i+=a){var s=r?r[i]:i;e=t(e,n[s],s,n)}return e}(n,t,e,i,s,o)}}d.each=d.forEach=function(n,t,e){var r,i;if(t=v(t,e),E(n))for(r=0,i=n.length;r<i;r++)t(n[r],r,n);else{var o=d.keys(n);for(r=0,i=o.length;r<i;r++)t(n[o[r]],o[r],n)}return n},d.map=d.collect=function(n,t,e){t=g(t,e);for(var r=!E(n)&&d.keys(n),i=(r||n).length,o=Array(i),s=0;s<i;s++){var a=r?r[s]:s;o[s]=t(n[a],a,n)}return o},d.reduce=d.foldl=d.inject=O(1),d.reduceRight=d.foldr=O(-1),d.find=d.detect=function(n,t,e){var r;if(void 0!==(r=E(n)?d.findIndex(n,t,e):d.findKey(n,t,e))&&-1!==r)return n[r]},d.filter=d.select=function(n,r,t){var i=[];return r=g(r,t),d.each(n,function(n,t,e){r(n,t,e)&&i.push(n)}),i},d.reject=function(n,t,e){return d.filter(n,d.negate(g(t)),e)},d.every=d.all=function(n,t,e){t=g(t,e);for(var r=!E(n)&&d.keys(n),i=(r||n).length,o=0;o<i;o++){var s=r?r[o]:o;if(!t(n[s],s,n))return!1}return!0},d.some=d.any=function(n,t,e){t=g(t,e);for(var r=!E(n)&&d.keys(n),i=(r||n).length,o=0;o<i;o++){var s=r?r[o]:o;if(t(n[s],s,n))return!0}return!1},d.contains=d.includes=d.include=function(n,t,e,r){return E(n)||(n=d.values(n)),("number"!=typeof e||r)&&(e=0),0<=d.indexOf(n,t,e)},d.invoke=function(n,e){var r=c.call(arguments,2),i=d.isFunction(e);return d.map(n,function(n){var t=i?e:n[e];return null==t?t:t.apply(n,r)})},d.pluck=function(n,t){return d.map(n,d.property(t))},d.where=function(n,t){return d.filter(n,d.matcher(t))},d.findWhere=function(n,t){return d.find(n,d.matcher(t))},d.max=function(n,r,t){var e,i,o=-1/0,s=-1/0;if(null==r&&null!=n)for(var a=0,c=(n=E(n)?n:d.values(n)).length;a<c;a++)e=n[a],o<e&&(o=e);else r=g(r,t),d.each(n,function(n,t,e){i=r(n,t,e),(s<i||i===-1/0&&o===-1/0)&&(o=n,s=i)});return o},d.min=function(n,r,t){var e,i,o=1/0,s=1/0;if(null==r&&null!=n)for(var a=0,c=(n=E(n)?n:d.values(n)).length;a<c;a++)(e=n[a])<o&&(o=e);else r=g(r,t),d.each(n,function(n,t,e){((i=r(n,t,e))<s||i===1/0&&o===1/0)&&(o=n,s=i)});return o},d.shuffle=function(n){for(var t,e=E(n)?n:d.values(n),r=e.length,i=Array(r),o=0;o<r;o++)(t=d.random(0,o))!==o&&(i[o]=i[t]),i[t]=e[o];return i},d.sample=function(n,t,e){return null==t||e?(E(n)||(n=d.values(n)),n[d.random(n.length-1)]):d.shuffle(n).slice(0,Math.max(0,t))},d.sortBy=function(n,r,t){return r=g(r,t),d.pluck(d.map(n,function(n,t,e){return{value:n,index:t,criteria:r(n,t,e)}}).sort(function(n,t){var e=n.criteria,r=t.criteria;if(e!==r){if(r<e||void 0===e)return 1;if(e<r||void 0===r)return-1}return n.index-t.index}),"value")};var A=function(s){return function(r,i,n){var o={};return i=g(i,n),d.each(r,function(n,t){var e=i(n,t,r);s(o,n,e)}),o}};d.groupBy=A(function(n,t,e){d.has(n,e)?n[e].push(t):n[e]=[t]}),d.indexBy=A(function(n,t,e){n[e]=t}),d.countBy=A(function(n,t,e){d.has(n,e)?n[e]++:n[e]=1}),d.toArray=function(n){return n?d.isArray(n)?c.call(n):E(n)?d.map(n,d.identity):d.values(n):[]},d.size=function(n){return null==n?0:E(n)?n.length:d.keys(n).length},d.partition=function(n,r,t){r=g(r,t);var i=[],o=[];return d.each(n,function(n,t,e){(r(n,t,e)?i:o).push(n)}),[i,o]},d.first=d.head=d.take=function(n,t,e){if(null!=n)return null==t||e?n[0]:d.initial(n,n.length-t)},d.initial=function(n,t,e){return c.call(n,0,Math.max(0,n.length-(null==t||e?1:t)))},d.last=function(n,t,e){if(null!=n)return null==t||e?n[n.length-1]:d.rest(n,Math.max(0,n.length-t))},d.rest=d.tail=d.drop=function(n,t,e){return c.call(n,null==t||e?1:t)},d.compact=function(n){return d.filter(n,d.identity)};var x=function(n,t,e,r){for(var i=[],o=0,s=r||0,a=w(n);s<a;s++){var c=n[s];if(E(c)&&(d.isArray(c)||d.isArguments(c))){t||(c=x(c,t,e));var u=0,l=c.length;for(i.length+=l;u<l;)i[o++]=c[u++]}else e||(i[o++]=c)}return i};function j(o){return function(n,t,e){t=g(t,e);for(var r=w(n),i=0<o?0:r-1;0<=i&&i<r;i+=o)if(t(n[i],i,n))return i;return-1}}function k(o,s,a){return function(n,t,e){var r=0,i=w(n);if("number"==typeof e)0<o?r=0<=e?e:Math.max(e+i,r):i=0<=e?Math.min(e+1,i):e+i+1;else if(a&&e&&i)return n[e=a(n,t)]===t?e:-1;if(t!=t)return 0<=(e=s(c.call(n,r,i),d.isNaN))?e+r:-1;for(e=0<o?r:i-1;0<=e&&e<i;e+=o)if(n[e]===t)return e;return-1}}d.flatten=function(n,t){return x(n,t,!1)},d.without=function(n){return d.difference(n,c.call(arguments,1))},d.uniq=d.unique=function(n,t,e,r){d.isBoolean(t)||(r=e,e=t,t=!1),null!=e&&(e=g(e,r));for(var i=[],o=[],s=0,a=w(n);s<a;s++){var c=n[s],u=e?e(c,s,n):c;t?(s&&o===u||i.push(c),o=u):e?d.contains(o,u)||(o.push(u),i.push(c)):d.contains(i,c)||i.push(c)}return i},d.union=function(){return d.uniq(x(arguments,!0,!0))},d.intersection=function(n){for(var t=[],e=arguments.length,r=0,i=w(n);r<i;r++){var o=n[r];if(!d.contains(t,o)){for(var s=1;s<e&&d.contains(arguments[s],o);s++);s===e&&t.push(o)}}return t},d.difference=function(n){var t=x(arguments,!0,!0,1);return d.filter(n,function(n){return!d.contains(t,n)})},d.zip=function(){return d.unzip(arguments)},d.unzip=function(n){for(var t=n&&d.max(n,w).length||0,e=Array(t),r=0;r<t;r++)e[r]=d.pluck(n,r);return e},d.object=function(n,t){for(var e={},r=0,i=w(n);r<i;r++)t?e[n[r]]=t[r]:e[n[r][0]]=n[r][1];return e},d.findIndex=j(1),d.findLastIndex=j(-1),d.sortedIndex=function(n,t,e,r){for(var i=(e=g(e,r,1))(t),o=0,s=w(n);o<s;){var a=Math.floor((o+s)/2);e(n[a])<i?o=a+1:s=a}return o},d.indexOf=k(1,d.findIndex,d.sortedIndex),d.lastIndexOf=k(-1,d.findLastIndex),d.range=function(n,t,e){null==t&&(t=n||0,n=0),e=e||1;for(var r=Math.max(Math.ceil((t-n)/e),0),i=Array(r),o=0;o<r;o++,n+=e)i[o]=n;return i};var S=function(n,t,e,r,i){if(!(r instanceof t))return n.apply(e,i);var o=y(n.prototype),s=n.apply(o,i);return d.isObject(s)?s:o};d.bind=function(n,t){if(l&&n.bind===l)return l.apply(n,c.call(arguments,1));if(!d.isFunction(n))throw new TypeError("Bind must be called on a function");var e=c.call(arguments,2),r=function(){return S(n,r,t,this,e.concat(c.call(arguments)))};return r},d.partial=function(i){var o=c.call(arguments,1),s=function(){for(var n=0,t=o.length,e=Array(t),r=0;r<t;r++)e[r]=o[r]===d?arguments[n++]:o[r];for(;n<arguments.length;)e.push(arguments[n++]);return S(i,s,this,this,e)};return s},d.bindAll=function(n){var t,e,r=arguments.length;if(r<=1)throw new Error("bindAll must be passed function names");for(t=1;t<r;t++)n[e=arguments[t]]=d.bind(n[e],n);return n},d.memoize=function(r,i){var o=function(n){var t=o.cache,e=""+(i?i.apply(this,arguments):n);return d.has(t,e)||(t[e]=r.apply(this,arguments)),t[e]};return o.cache={},o},d.delay=function(n,t){var e=c.call(arguments,2);return setTimeout(function(){return n.apply(null,e)},t)},d.defer=d.partial(d.delay,d,1),d.throttle=function(e,r,i){var o,s,a,c=null,u=0;i||(i={});var l=function(){u=!1===i.leading?0:d.now(),c=null,a=e.apply(o,s),c||(o=s=null)};return function(){var n=d.now();u||!1!==i.leading||(u=n);var t=r-(n-u);return o=this,s=arguments,t<=0||r<t?(c&&(clearTimeout(c),c=null),u=n,a=e.apply(o,s),c||(o=s=null)):c||!1===i.trailing||(c=setTimeout(l,t)),a}},d.debounce=function(t,e,r){var i,o,s,a,c,u=function(){var n=d.now()-a;n<e&&0<=n?i=setTimeout(u,e-n):(i=null,r||(c=t.apply(s,o),i||(s=o=null)))};return function(){s=this,o=arguments,a=d.now();var n=r&&!i;return i||(i=setTimeout(u,e)),n&&(c=t.apply(s,o),s=o=null),c}},d.wrap=function(n,t){return d.partial(t,n)},d.negate=function(n){return function(){return!n.apply(this,arguments)}},d.compose=function(){var e=arguments,r=e.length-1;return function(){for(var n=r,t=e[r].apply(this,arguments);n--;)t=e[n].call(this,t);return t}},d.after=function(n,t){return function(){if(--n<1)return t.apply(this,arguments)}},d.before=function(n,t){var e;return function(){return 0<--n&&(e=t.apply(this,arguments)),n<=1&&(t=null),e}},d.once=d.partial(d.before,2);var R=!{toString:null}.propertyIsEnumerable("toString"),L=["valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"];function T(n,t){var e=L.length,r=n.constructor,i=d.isFunction(r)&&r.prototype||s,o="constructor";for(d.has(n,o)&&!d.contains(t,o)&&t.push(o);e--;)(o=L[e])in n&&n[o]!==i[o]&&!d.contains(t,o)&&t.push(o)}d.keys=function(n){if(!d.isObject(n))return[];if(u)return u(n);var t=[];for(var e in n)d.has(n,e)&&t.push(e);return R&&T(n,t),t},d.allKeys=function(n){if(!d.isObject(n))return[];var t=[];for(var e in n)t.push(e);return R&&T(n,t),t},d.values=function(n){for(var t=d.keys(n),e=t.length,r=Array(e),i=0;i<e;i++)r[i]=n[t[i]];return r},d.mapObject=function(n,t,e){t=g(t,e);for(var r,i=d.keys(n),o=i.length,s={},a=0;a<o;a++)s[r=i[a]]=t(n[r],r,n);return s},d.pairs=function(n){for(var t=d.keys(n),e=t.length,r=Array(e),i=0;i<e;i++)r[i]=[t[i],n[t[i]]];return r},d.invert=function(n){for(var t={},e=d.keys(n),r=0,i=e.length;r<i;r++)t[n[e[r]]]=e[r];return t},d.functions=d.methods=function(n){var t=[];for(var e in n)d.isFunction(n[e])&&t.push(e);return t.sort()},d.extend=m(d.allKeys),d.extendOwn=d.assign=m(d.keys),d.findKey=function(n,t,e){t=g(t,e);for(var r,i=d.keys(n),o=0,s=i.length;o<s;o++)if(t(n[r=i[o]],r,n))return r},d.pick=function(n,t,e){var r,i,o={},s=n;if(null==s)return o;d.isFunction(t)?(i=d.allKeys(s),r=v(t,e)):(i=x(arguments,!1,!1,1),r=function(n,t,e){return t in e},s=Object(s));for(var a=0,c=i.length;a<c;a++){var u=i[a],l=s[u];r(l,u,s)&&(o[u]=l)}return o},d.omit=function(n,t,e){if(d.isFunction(t))t=d.negate(t);else{var r=d.map(x(arguments,!1,!1,1),String);t=function(n,t){return!d.contains(r,t)}}return d.pick(n,t,e)},d.defaults=m(d.allKeys,!0),d.create=function(n,t){var e=y(n);return t&&d.extendOwn(e,t),e},d.clone=function(n){return d.isObject(n)?d.isArray(n)?n.slice():d.extend({},n):n},d.tap=function(n,t){return t(n),n},d.isMatch=function(n,t){var e=d.keys(t),r=e.length;if(null==n)return!r;for(var i=Object(n),o=0;o<r;o++){var s=e[o];if(t[s]!==i[s]||!(s in i))return!1}return!0};var I=function(n,t,e,r){if(n===t)return 0!==n||1/n==1/t;if(null==n||null==t)return n===t;n instanceof d&&(n=n._wrapped),t instanceof d&&(t=t._wrapped);var i=f.call(n);if(i!==f.call(t))return!1;switch(i){case"[object RegExp]":case"[object String]":return""+n==""+t;case"[object Number]":return+n!=+n?+t!=+t:0==+n?1/+n==1/t:+n==+t;case"[object Date]":case"[object Boolean]":return+n==+t}var o="[object Array]"===i;if(!o){if("object"!=typeof n||"object"!=typeof t)return!1;var s=n.constructor,a=t.constructor;if(s!==a&&!(d.isFunction(s)&&s instanceof s&&d.isFunction(a)&&a instanceof a)&&"constructor"in n&&"constructor"in t)return!1}r=r||[];for(var c=(e=e||[]).length;c--;)if(e[c]===n)return r[c]===t;if(e.push(n),r.push(t),o){if((c=n.length)!==t.length)return!1;for(;c--;)if(!I(n[c],t[c],e,r))return!1}else{var u,l=d.keys(n);if(c=l.length,d.keys(t).length!==c)return!1;for(;c--;)if(u=l[c],!d.has(t,u)||!I(n[u],t[u],e,r))return!1}return e.pop(),r.pop(),!0};d.isEqual=function(n,t){return I(n,t)},d.isEmpty=function(n){return null==n||(E(n)&&(d.isArray(n)||d.isString(n)||d.isArguments(n))?0===n.length:0===d.keys(n).length)},d.isElement=function(n){return!(!n||1!==n.nodeType)},d.isArray=a||function(n){return"[object Array]"===f.call(n)},d.isObject=function(n){var t=typeof n;return"function"===t||"object"===t&&!!n},d.each(["Arguments","Function","String","Number","Date","RegExp","Error"],function(t){d["is"+t]=function(n){return f.call(n)==="[object "+t+"]"}}),d.isArguments(arguments)||(d.isArguments=function(n){return d.has(n,"callee")}),"function"!=typeof/./&&"object"!=typeof Int8Array&&(d.isFunction=function(n){return"function"==typeof n||!1}),d.isFinite=function(n){return isFinite(n)&&!isNaN(parseFloat(n))},d.isNaN=function(n){return d.isNumber(n)&&n!==+n},d.isBoolean=function(n){return!0===n||!1===n||"[object Boolean]"===f.call(n)},d.isNull=function(n){return null===n},d.isUndefined=function(n){return void 0===n},d.has=function(n,t){return null!=n&&o.call(n,t)},d.noConflict=function(){return n._=t,this},d.identity=function(n){return n},d.constant=function(n){return function(){return n}},d.noop=function(){},d.property=b,d.propertyOf=function(t){return null==t?function(){}:function(n){return t[n]}},d.matcher=d.matches=function(t){return t=d.extendOwn({},t),function(n){return d.isMatch(n,t)}},d.times=function(n,t,e){var r=Array(Math.max(0,n));t=v(t,e,1);for(var i=0;i<n;i++)r[i]=t(i);return r},d.random=function(n,t){return null==t&&(t=n,n=0),n+Math.floor(Math.random()*(t-n+1))},d.now=Date.now||function(){return(new Date).getTime()};var N={"&":"&","<":"<",">":">",'"':""","'":"'","`":"`"},D=d.invert(N),F=function(t){var e=function(n){return t[n]},n="(?:"+d.keys(t).join("|")+")",r=RegExp(n),i=RegExp(n,"g");return function(n){return n=null==n?"":""+n,r.test(n)?n.replace(i,e):n}};d.escape=F(N),d.unescape=F(D),d.result=function(n,t,e){var r=null==n?void 0:n[t];return void 0===r&&(r=e),d.isFunction(r)?r.call(n):r};var M=0;d.uniqueId=function(n){var t=++M+"";return n?n+t:t},d.templateSettings={evaluate:/<%([\s\S]+?)%>/g,interpolate:/<%=([\s\S]+?)%>/g,escape:/<%-([\s\S]+?)%>/g};var C=/(.)^/,P={"'":"'","\\":"\\","\r":"r","\n":"n","\u2028":"u2028","\u2029":"u2029"},z=/\\|'|\r|\n|\u2028|\u2029/g,B=function(n){return"\\"+P[n]};d.template=function(o,n,t){!n&&t&&(n=t),n=d.defaults({},n,d.templateSettings);var e=RegExp([(n.escape||C).source,(n.interpolate||C).source,(n.evaluate||C).source].join("|")+"|$","g"),s=0,a="__p+='";o.replace(e,function(n,t,e,r,i){return a+=o.slice(s,i).replace(z,B),s=i+n.length,t?a+="'+\n((__t=("+t+"))==null?'':_.escape(__t))+\n'":e?a+="'+\n((__t=("+e+"))==null?'':__t)+\n'":r&&(a+="';\n"+r+"\n__p+='"),n}),a+="';\n",n.variable||(a="with(obj||{}){\n"+a+"}\n"),a="var __t,__p='',__j=Array.prototype.join,print=function(){__p+=__j.call(arguments,'');};\n"+a+"return __p;\n";try{var r=new Function(n.variable||"obj","_",a)}catch(n){throw n.source=a,n}var i=function(n){return r.call(this,n,d)},c=n.variable||"obj";return i.source="function("+c+"){\n"+a+"}",i},d.chain=function(n){var t=d(n);return t._chain=!0,t};var U=function(n,t){return n._chain?d(t).chain():t};d.mixin=function(e){d.each(d.functions(e),function(n){var t=d[n]=e[n];d.prototype[n]=function(){var n=[this._wrapped];return i.apply(n,arguments),U(this,t.apply(d,n))}})},d.mixin(d),d.each(["pop","push","reverse","shift","sort","splice","unshift"],function(t){var e=r[t];d.prototype[t]=function(){var n=this._wrapped;return e.apply(n,arguments),"shift"!==t&&"splice"!==t||0!==n.length||delete n[0],U(this,n)}}),d.each(["concat","join","slice"],function(n){var t=r[n];d.prototype[n]=function(){return U(this,t.apply(this._wrapped,arguments))}}),d.prototype.value=function(){return this._wrapped},d.prototype.valueOf=d.prototype.toJSON=d.prototype.value,d.prototype.toString=function(){return""+this._wrapped}}).call(this)},{}],26:[function(n,t,e){arguments[4][19][0].apply(e,arguments)},{dup:19}],27:[function(n,t,e){t.exports=function(n){return n&&"object"==typeof n&&"function"==typeof n.copy&&"function"==typeof n.fill&&"function"==typeof n.readUInt8}},{}],28:[function(h,n,k){(function(r,i){var a=/%[sdj%]/g;k.format=function(n){if(!_(n)){for(var t=[],e=0;e<arguments.length;e++)t.push(c(arguments[e]));return t.join(" ")}e=1;for(var r=arguments,i=r.length,o=String(n).replace(a,function(n){if("%%"===n)return"%";if(i<=e)return n;switch(n){case"%s":return String(r[e++]);case"%d":return Number(r[e++]);case"%j":try{return JSON.stringify(r[e++])}catch(n){return"[Circular]"}default:return n}}),s=r[e];e<i;s=r[++e])y(s)||!l(s)?o+=" "+s:o+=" "+c(s);return o},k.deprecate=function(n,t){if(w(i.process))return function(){return k.deprecate(n,t).apply(this,arguments)};if(!0===r.noDeprecation)return n;var e=!1;return function(){if(!e){if(r.throwDeprecation)throw new Error(t);r.traceDeprecation?console.trace(t):console.error(t),e=!0}return n.apply(this,arguments)}};var n,o={};function c(n,t){var e={seen:[],stylize:u};return 3<=arguments.length&&(e.depth=arguments[2]),4<=arguments.length&&(e.colors=arguments[3]),m(t)?e.showHidden=t:t&&k._extend(e,t),w(e.showHidden)&&(e.showHidden=!1),w(e.depth)&&(e.depth=2),w(e.colors)&&(e.colors=!1),w(e.customInspect)&&(e.customInspect=!0),e.colors&&(e.stylize=s),p(e,n,e.depth)}function s(n,t){var e=c.styles[t];return e?"["+c.colors[e][0]+"m"+n+"["+c.colors[e][1]+"m":n}function u(n,t){return n}function p(t,e,r){if(t.customInspect&&e&&x(e.inspect)&&e.inspect!==k.inspect&&(!e.constructor||e.constructor.prototype!==e)){var n=e.inspect(r,t);return _(n)||(n=p(t,n,r)),n}var i=function(n,t){if(w(t))return n.stylize("undefined","undefined");if(_(t)){var e="'"+JSON.stringify(t).replace(/^"|"$/g,"").replace(/'/g,"\\'").replace(/\\"/g,'"')+"'";return n.stylize(e,"string")}if(b(t))return n.stylize(""+t,"number");if(m(t))return n.stylize(""+t,"boolean");if(y(t))return n.stylize("null","null")}(t,e);if(i)return i;var o,s=Object.keys(e),a=(o={},s.forEach(function(n,t){o[n]=!0}),o);if(t.showHidden&&(s=Object.getOwnPropertyNames(e)),A(e)&&(0<=s.indexOf("message")||0<=s.indexOf("description")))return d(e);if(0===s.length){if(x(e)){var c=e.name?": "+e.name:"";return t.stylize("[Function"+c+"]","special")}if(E(e))return t.stylize(RegExp.prototype.toString.call(e),"regexp");if(O(e))return t.stylize(Date.prototype.toString.call(e),"date");if(A(e))return d(e)}var u,l="",f=!1,h=["{","}"];(g(e)&&(f=!0,h=["[","]"]),x(e))&&(l=" [Function"+(e.name?": "+e.name:"")+"]");return E(e)&&(l=" "+RegExp.prototype.toString.call(e)),O(e)&&(l=" "+Date.prototype.toUTCString.call(e)),A(e)&&(l=" "+d(e)),0!==s.length||f&&0!=e.length?r<0?E(e)?t.stylize(RegExp.prototype.toString.call(e),"regexp"):t.stylize("[Object]","special"):(t.seen.push(e),u=f?function(t,e,r,i,n){for(var o=[],s=0,a=e.length;s<a;++s)j(e,String(s))?o.push(v(t,e,r,i,String(s),!0)):o.push("");return n.forEach(function(n){n.match(/^\d+$/)||o.push(v(t,e,r,i,n,!0))}),o}(t,e,r,a,s):s.map(function(n){return v(t,e,r,a,n,f)}),t.seen.pop(),function(n,t,e){if(60<n.reduce(function(n,t){return 0,0<=t.indexOf("\n")&&0,n+t.replace(/\u001b\[\d\d?m/g,"").length+1},0))return e[0]+(""===t?"":t+"\n ")+" "+n.join(",\n ")+" "+e[1];return e[0]+t+" "+n.join(", ")+" "+e[1]}(u,l,h)):h[0]+l+h[1]}function d(n){return"["+Error.prototype.toString.call(n)+"]"}function v(n,t,e,r,i,o){var s,a,c;if((c=Object.getOwnPropertyDescriptor(t,i)||{value:t[i]}).get?a=c.set?n.stylize("[Getter/Setter]","special"):n.stylize("[Getter]","special"):c.set&&(a=n.stylize("[Setter]","special")),j(r,i)||(s="["+i+"]"),a||(n.seen.indexOf(c.value)<0?-1<(a=y(e)?p(n,c.value,null):p(n,c.value,e-1)).indexOf("\n")&&(a=o?a.split("\n").map(function(n){return" "+n}).join("\n").substr(2):"\n"+a.split("\n").map(function(n){return" "+n}).join("\n")):a=n.stylize("[Circular]","special")),w(s)){if(o&&i.match(/^\d+$/))return a;s=(s=JSON.stringify(""+i)).match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)?(s=s.substr(1,s.length-2),n.stylize(s,"name")):(s=s.replace(/'/g,"\\'").replace(/\\"/g,'"').replace(/(^"|"$)/g,"'"),n.stylize(s,"string"))}return s+": "+a}function g(n){return Array.isArray(n)}function m(n){return"boolean"==typeof n}function y(n){return null===n}function b(n){return"number"==typeof n}function _(n){return"string"==typeof n}function w(n){return void 0===n}function E(n){return l(n)&&"[object RegExp]"===t(n)}function l(n){return"object"==typeof n&&null!==n}function O(n){return l(n)&&"[object Date]"===t(n)}function A(n){return l(n)&&("[object Error]"===t(n)||n instanceof Error)}function x(n){return"function"==typeof n}function t(n){return Object.prototype.toString.call(n)}function e(n){return n<10?"0"+n.toString(10):n.toString(10)}k.debuglog=function(t){if(w(n)&&(n=r.env.NODE_DEBUG||""),t=t.toUpperCase(),!o[t])if(new RegExp("\\b"+t+"\\b","i").test(n)){var e=r.pid;o[t]=function(){var n=k.format.apply(k,arguments);console.error("%s %d: %s",t,e,n)}}else o[t]=function(){};return o[t]},(k.inspect=c).colors={bold:[1,22],italic:[3,23],underline:[4,24],inverse:[7,27],white:[37,39],grey:[90,39],black:[30,39],blue:[34,39],cyan:[36,39],green:[32,39],magenta:[35,39],red:[31,39],yellow:[33,39]},c.styles={special:"cyan",number:"yellow",boolean:"yellow",undefined:"grey",null:"bold",string:"green",date:"magenta",regexp:"red"},k.isArray=g,k.isBoolean=m,k.isNull=y,k.isNullOrUndefined=function(n){return null==n},k.isNumber=b,k.isString=_,k.isSymbol=function(n){return"symbol"==typeof n},k.isUndefined=w,k.isRegExp=E,k.isObject=l,k.isDate=O,k.isError=A,k.isFunction=x,k.isPrimitive=function(n){return null===n||"boolean"==typeof n||"number"==typeof n||"string"==typeof n||"symbol"==typeof n||void 0===n},k.isBuffer=h("./support/isBuffer");var f=["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"];function j(n,t){return Object.prototype.hasOwnProperty.call(n,t)}k.log=function(){var n,t;console.log("%s - %s",(n=new Date,t=[e(n.getHours()),e(n.getMinutes()),e(n.getSeconds())].join(":"),[n.getDate(),f[n.getMonth()],t].join(" ")),k.format.apply(k,arguments))},k.inherits=h("inherits"),k._extend=function(n,t){if(!t||!l(t))return n;for(var e=Object.keys(t),r=e.length;r--;)n[e[r]]=t[e[r]];return n}}).call(this,h("_process"),"undefined"!=typeof global?global:"undefined"!=typeof self?self:"undefined"!=typeof window?window:{})},{"./support/isBuffer":27,_process:24,inherits:26}],29:[function(n,t,e){t.exports=function n(i,t){if(i&&t)return n(i)(t);if("function"!=typeof i)throw new TypeError("need wrapper function");Object.keys(i).forEach(function(n){e[n]=i[n]});return e;function e(){for(var n=new Array(arguments.length),t=0;t<n.length;t++)n[t]=arguments[t];var e=i.apply(this,n),r=n[n.length-1];return"function"==typeof e&&e!==r&&Object.keys(r).forEach(function(n){e[n]=r[n]}),e}}},{}]},{},[7])(7)}); \ No newline at end of file diff --git a/site/assets/javascripts/modernizr.86422ebf.js b/site/assets/javascripts/modernizr.86422ebf.js deleted file mode 100644 index 4ab44d72cf989de4cb250d55f4dff9abc0b065f1..0000000000000000000000000000000000000000 --- a/site/assets/javascripts/modernizr.86422ebf.js +++ /dev/null @@ -1 +0,0 @@ -!function(e,t){for(var n in t)e[n]=t[n]}(window,function(n){var r={};function o(e){if(r[e])return r[e].exports;var t=r[e]={i:e,l:!1,exports:{}};return n[e].call(t.exports,t,t.exports,o),t.l=!0,t.exports}return o.m=n,o.c=r,o.d=function(e,t,n){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:n})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(t,e){if(1&e&&(t=o(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(o.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var r in t)o.d(n,r,function(e){return t[e]}.bind(null,r));return n},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=11)}({11:function(e,t,n){"use strict";n.r(t);n(12)},12:function(e,t){var n;(function(i,d,p){function y(e,t){return typeof e===t}function s(e){var t=S.className,n=c._config.classPrefix||"";if(b&&(t=t.baseVal),c._config.enableJSClass){var r=new RegExp("(^|\\s)"+n+"no-js(\\s|$)");t=t.replace(r,"$1"+n+"js$2")}c._config.enableClasses&&(0<e.length&&(t+=" "+n+e.join(" "+n)),b?S.className.baseVal=t:S.className=t)}function a(e,t){if("object"==typeof e)for(var n in e)v(e,n)&&a(n,e[n]);else{var r=(e=e.toLowerCase()).split("."),o=c[r[0]];if(2===r.length&&(o=o[r[1]]),void 0!==o)return c;t="function"==typeof t?t():t,1===r.length?c[r[0]]=t:(!c[r[0]]||c[r[0]]instanceof Boolean||(c[r[0]]=new Boolean(c[r[0]])),c[r[0]][r[1]]=t),s([(t&&!1!==t?"":"no-")+r.join("-")]),c._trigger(e,t)}return c}function m(){return"function"!=typeof d.createElement?d.createElement(arguments[0]):b?d.createElementNS.call(d,"http://www.w3.org/2000/svg",arguments[0]):d.createElement.apply(d,arguments)}function o(e,t,n,r){var o,i,s,a,l,u="modernizr",f=m("div"),c=((l=d.body)||((l=m(b?"svg":"body")).fake=!0),l);if(parseInt(n,10))for(;n--;)(s=m("div")).id=r?r[n]:u+(n+1),f.appendChild(s);return(o=m("style")).type="text/css",o.id="s"+u,(c.fake?c:f).appendChild(o),c.appendChild(f),o.styleSheet?o.styleSheet.cssText=e:o.appendChild(d.createTextNode(e)),f.id=u,c.fake&&(c.style.background="",c.style.overflow="hidden",a=S.style.overflow,S.style.overflow="hidden",S.appendChild(c)),i=t(f,e),c.fake?(c.parentNode.removeChild(c),S.style.overflow=a,S.offsetHeight):f.parentNode.removeChild(f),!!i}function l(e){return e.replace(/([A-Z])/g,function(e,t){return"-"+t.toLowerCase()}).replace(/^ms-/,"-ms-")}function h(e,t){var n=e.length;if("CSS"in i&&"supports"in i.CSS){for(;n--;)if(i.CSS.supports(l(e[n]),t))return!0;return!1}if("CSSSupportsRule"in i){for(var r=[];n--;)r.push("("+l(e[n])+":"+t+")");return o("@supports ("+(r=r.join(" or "))+") { #modernizr { position: absolute; } }",function(e){return"absolute"===function(e,t,n){var r;if("getComputedStyle"in i){r=getComputedStyle.call(i,e,t);var o=i.console;null!==r?n&&(r=r.getPropertyValue(n)):o&&o[o.error?"error":"log"].call(o,"getComputedStyle returning null, its possible modernizr test results are inaccurate")}else r=!t&&e.currentStyle&&e.currentStyle[n];return r}(e,null,"position")})}return p}function u(e,t){return function(){return e.apply(t,arguments)}}function r(e,t,n,r,o){var i=e.charAt(0).toUpperCase()+e.slice(1),s=(e+" "+w.join(i+" ")+i).split(" ");return y(t,"string")||y(t,"undefined")?function(e,t,n,r){function o(){s&&(delete T.style,delete T.modElem)}if(r=!y(r,"undefined")&&r,!y(n,"undefined")){var i=h(e,n);if(!y(i,"undefined"))return i}for(var s,a,l,u,f,c=["modernizr","tspan","samp"];!T.style&&c.length;)s=!0,T.modElem=m(c.shift()),T.style=T.modElem.style;for(l=e.length,a=0;a<l;a++)if(u=e[a],f=T.style[u],!!~(""+u).indexOf("-")&&(u=u.replace(/([a-z])-([a-z])/g,function(e,t,n){return t+n.toUpperCase()}).replace(/^-/,"")),T.style[u]!==p){if(r||y(n,"undefined"))return o(),"pfx"!==t||u;try{T.style[u]=n}catch(e){}if(T.style[u]!==f)return o(),"pfx"!==t||u}return o(),!1}(s,t,r,o):function(e,t,n){var r;for(var o in e)if(e[o]in t)return!1===n?e[o]:y(r=t[e[o]],"function")?u(r,n||t):r;return!1}(s=(e+" "+P.join(i+" ")+i).split(" "),t,n)}function e(e,t,n){return r(e,p,p,t,n)}var f=[],t={_version:"3.8.0",_config:{classPrefix:"",enableClasses:!0,enableJSClass:!0,usePrefixes:!0},_q:[],on:function(e,t){var n=this;setTimeout(function(){t(n[e])},0)},addTest:function(e,t,n){f.push({name:e,fn:t,options:n})},addAsyncTest:function(e){f.push({name:null,fn:e})}},c=function(){};c.prototype=t,c=new c;var v,n,g=[],S=d.documentElement,b="svg"===S.nodeName.toLowerCase();v=y(n={}.hasOwnProperty,"undefined")||y(n.call,"undefined")?function(e,t){return t in e&&y(e.constructor.prototype[t],"undefined")}:function(e,t){return n.call(e,t)},t._l={},t.on=function(e,t){this._l[e]||(this._l[e]=[]),this._l[e].push(t),c.hasOwnProperty(e)&&setTimeout(function(){c._trigger(e,c[e])},0)},t._trigger=function(e,t){if(this._l[e]){var n=this._l[e];setTimeout(function(){var e;for(e=0;e<n.length;e++)(0,n[e])(t)},0),delete this._l[e]}},c._q.push(function(){t.addTest=a}),c.addTest("json","JSON"in i&&"parse"in JSON&&"stringify"in JSON),c.addTest("svg",!!d.createElementNS&&!!d.createElementNS("http://www.w3.org/2000/svg","svg").createSVGRect);var C=t.testStyles=o;c.addTest("checked",function(){return C("#modernizr {position:absolute} #modernizr input {margin-left:10px} #modernizr :checked {margin-left:20px;display:block}",function(e){var t=m("input");return t.setAttribute("type","checkbox"),t.setAttribute("checked","checked"),e.appendChild(t),20===t.offsetLeft})}),c.addTest("target",function(){var e=i.document;if(!("querySelectorAll"in e))return!1;try{return e.querySelectorAll(":target"),!0}catch(e){return!1}}),c.addTest("dataset",function(){var e=m("div");return e.setAttribute("data-a-b","c"),!(!e.dataset||"c"!==e.dataset.aB)}),c.addTest("details",function(){var t,n=m("details");return"open"in n&&(C("#modernizr details{display:block}",function(e){e.appendChild(n),n.innerHTML="<summary>a</summary>b",t=n.offsetHeight,n.open=!0,t=t!==n.offsetHeight}),t)}),c.addTest("fetch","fetch"in i);var _="Moz O ms Webkit",w=t._config.usePrefixes?_.split(" "):[];t._cssomPrefixes=w;var x={elem:m("modernizr")};c._q.push(function(){delete x.elem});var T={style:x.elem.style};c._q.unshift(function(){delete T.style});var P=t._config.usePrefixes?_.toLowerCase().split(" "):[];t._domPrefixes=P,t.testAllProps=r,t.testAllProps=e;var j="CSS"in i&&"supports"in i.CSS,O="supportsCSS"in i;c.addTest("supports",j||O),c.addTest("csstransforms3d",function(){return!!e("perspective","1px",!0)}),function(){var e,t,n,r,o,i;for(var s in f)if(f.hasOwnProperty(s)){if(e=[],(t=f[s]).name&&(e.push(t.name.toLowerCase()),t.options&&t.options.aliases&&t.options.aliases.length))for(n=0;n<t.options.aliases.length;n++)e.push(t.options.aliases[n].toLowerCase());for(r=y(t.fn,"function")?t.fn():t.fn,o=0;o<e.length;o++)1===(i=e[o].split(".")).length?c[i[0]]=r:(c[i[0]]&&(!c[i[0]]||c[i[0]]instanceof Boolean)||(c[i[0]]=new Boolean(c[i[0]])),c[i[0]][i[1]]=r),g.push((r?"":"no-")+i.join("-"))}}(),s(g),delete t.addTest,delete t.addAsyncTest;for(var z=0;z<c._q.length;z++)c._q[z]();i.Modernizr=c})(n=window,document),e.exports=n.Modernizr}})); \ No newline at end of file diff --git a/site/assets/stylesheets/application-palette.a8b3c06d.css b/site/assets/stylesheets/application-palette.a8b3c06d.css deleted file mode 100644 index e07df0581a2f090b09de683d44a2a368d672be85..0000000000000000000000000000000000000000 --- a/site/assets/stylesheets/application-palette.a8b3c06d.css +++ /dev/null @@ -1 +0,0 @@ -button[data-md-color-accent],button[data-md-color-primary]{width:6.5rem;margin-bottom:.2rem;padding:1.2rem .4rem .2rem;-webkit-transition:background-color .25s,opacity .25s;transition:background-color .25s,opacity .25s;border-radius:.1rem;color:#fff;font-size:.64rem;text-align:left;cursor:pointer}button[data-md-color-accent]:hover,button[data-md-color-primary]:hover{opacity:.75}button[data-md-color-primary=red]{background-color:#ef5350}[data-md-color-primary=red] .md-typeset a{color:#ef5350}[data-md-color-primary=red] .md-header,[data-md-color-primary=red] .md-hero{background-color:#ef5350}[data-md-color-primary=red] .md-nav__link--active,[data-md-color-primary=red] .md-nav__link:active{color:#ef5350}[data-md-color-primary=red] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=pink]{background-color:#e91e63}[data-md-color-primary=pink] .md-typeset a{color:#e91e63}[data-md-color-primary=pink] .md-header,[data-md-color-primary=pink] .md-hero{background-color:#e91e63}[data-md-color-primary=pink] .md-nav__link--active,[data-md-color-primary=pink] .md-nav__link:active{color:#e91e63}[data-md-color-primary=pink] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=purple]{background-color:#ab47bc}[data-md-color-primary=purple] .md-typeset a{color:#ab47bc}[data-md-color-primary=purple] .md-header,[data-md-color-primary=purple] .md-hero{background-color:#ab47bc}[data-md-color-primary=purple] .md-nav__link--active,[data-md-color-primary=purple] .md-nav__link:active{color:#ab47bc}[data-md-color-primary=purple] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=deep-purple]{background-color:#7e57c2}[data-md-color-primary=deep-purple] .md-typeset a{color:#7e57c2}[data-md-color-primary=deep-purple] .md-header,[data-md-color-primary=deep-purple] .md-hero{background-color:#7e57c2}[data-md-color-primary=deep-purple] .md-nav__link--active,[data-md-color-primary=deep-purple] .md-nav__link:active{color:#7e57c2}[data-md-color-primary=deep-purple] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=indigo]{background-color:#3f51b5}[data-md-color-primary=indigo] .md-typeset a{color:#3f51b5}[data-md-color-primary=indigo] .md-header,[data-md-color-primary=indigo] .md-hero{background-color:#3f51b5}[data-md-color-primary=indigo] .md-nav__link--active,[data-md-color-primary=indigo] .md-nav__link:active{color:#3f51b5}[data-md-color-primary=indigo] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=blue]{background-color:#2196f3}[data-md-color-primary=blue] .md-typeset a{color:#2196f3}[data-md-color-primary=blue] .md-header,[data-md-color-primary=blue] .md-hero{background-color:#2196f3}[data-md-color-primary=blue] .md-nav__link--active,[data-md-color-primary=blue] .md-nav__link:active{color:#2196f3}[data-md-color-primary=blue] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=light-blue]{background-color:#03a9f4}[data-md-color-primary=light-blue] .md-typeset a{color:#03a9f4}[data-md-color-primary=light-blue] .md-header,[data-md-color-primary=light-blue] .md-hero{background-color:#03a9f4}[data-md-color-primary=light-blue] .md-nav__link--active,[data-md-color-primary=light-blue] .md-nav__link:active{color:#03a9f4}[data-md-color-primary=light-blue] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=cyan]{background-color:#00bcd4}[data-md-color-primary=cyan] .md-typeset a{color:#00bcd4}[data-md-color-primary=cyan] .md-header,[data-md-color-primary=cyan] .md-hero{background-color:#00bcd4}[data-md-color-primary=cyan] .md-nav__link--active,[data-md-color-primary=cyan] .md-nav__link:active{color:#00bcd4}[data-md-color-primary=cyan] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=teal]{background-color:#009688}[data-md-color-primary=teal] .md-typeset a{color:#009688}[data-md-color-primary=teal] .md-header,[data-md-color-primary=teal] .md-hero{background-color:#009688}[data-md-color-primary=teal] .md-nav__link--active,[data-md-color-primary=teal] .md-nav__link:active{color:#009688}[data-md-color-primary=teal] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=green]{background-color:#4caf50}[data-md-color-primary=green] .md-typeset a{color:#4caf50}[data-md-color-primary=green] .md-header,[data-md-color-primary=green] .md-hero{background-color:#4caf50}[data-md-color-primary=green] .md-nav__link--active,[data-md-color-primary=green] .md-nav__link:active{color:#4caf50}[data-md-color-primary=green] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=light-green]{background-color:#7cb342}[data-md-color-primary=light-green] .md-typeset a{color:#7cb342}[data-md-color-primary=light-green] .md-header,[data-md-color-primary=light-green] .md-hero{background-color:#7cb342}[data-md-color-primary=light-green] .md-nav__link--active,[data-md-color-primary=light-green] .md-nav__link:active{color:#7cb342}[data-md-color-primary=light-green] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=lime]{background-color:#c0ca33}[data-md-color-primary=lime] .md-typeset a{color:#c0ca33}[data-md-color-primary=lime] .md-header,[data-md-color-primary=lime] .md-hero{background-color:#c0ca33}[data-md-color-primary=lime] .md-nav__link--active,[data-md-color-primary=lime] .md-nav__link:active{color:#c0ca33}[data-md-color-primary=lime] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=yellow]{background-color:#f9a825}[data-md-color-primary=yellow] .md-typeset a{color:#f9a825}[data-md-color-primary=yellow] .md-header,[data-md-color-primary=yellow] .md-hero{background-color:#f9a825}[data-md-color-primary=yellow] .md-nav__link--active,[data-md-color-primary=yellow] .md-nav__link:active{color:#f9a825}[data-md-color-primary=yellow] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=amber]{background-color:#ffa000}[data-md-color-primary=amber] .md-typeset a{color:#ffa000}[data-md-color-primary=amber] .md-header,[data-md-color-primary=amber] .md-hero{background-color:#ffa000}[data-md-color-primary=amber] .md-nav__link--active,[data-md-color-primary=amber] .md-nav__link:active{color:#ffa000}[data-md-color-primary=amber] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=orange]{background-color:#fb8c00}[data-md-color-primary=orange] .md-typeset a{color:#fb8c00}[data-md-color-primary=orange] .md-header,[data-md-color-primary=orange] .md-hero{background-color:#fb8c00}[data-md-color-primary=orange] .md-nav__link--active,[data-md-color-primary=orange] .md-nav__link:active{color:#fb8c00}[data-md-color-primary=orange] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=deep-orange]{background-color:#ff7043}[data-md-color-primary=deep-orange] .md-typeset a{color:#ff7043}[data-md-color-primary=deep-orange] .md-header,[data-md-color-primary=deep-orange] .md-hero{background-color:#ff7043}[data-md-color-primary=deep-orange] .md-nav__link--active,[data-md-color-primary=deep-orange] .md-nav__link:active{color:#ff7043}[data-md-color-primary=deep-orange] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=brown]{background-color:#795548}[data-md-color-primary=brown] .md-typeset a{color:#795548}[data-md-color-primary=brown] .md-header,[data-md-color-primary=brown] .md-hero{background-color:#795548}[data-md-color-primary=brown] .md-nav__link--active,[data-md-color-primary=brown] .md-nav__link:active{color:#795548}[data-md-color-primary=brown] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=grey]{background-color:#757575}[data-md-color-primary=grey] .md-typeset a{color:#757575}[data-md-color-primary=grey] .md-header,[data-md-color-primary=grey] .md-hero{background-color:#757575}[data-md-color-primary=grey] .md-nav__link--active,[data-md-color-primary=grey] .md-nav__link:active{color:#757575}[data-md-color-primary=grey] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=blue-grey]{background-color:#546e7a}[data-md-color-primary=blue-grey] .md-typeset a{color:#546e7a}[data-md-color-primary=blue-grey] .md-header,[data-md-color-primary=blue-grey] .md-hero{background-color:#546e7a}[data-md-color-primary=blue-grey] .md-nav__link--active,[data-md-color-primary=blue-grey] .md-nav__link:active{color:#546e7a}[data-md-color-primary=blue-grey] .md-nav__item--nested>.md-nav__link{color:inherit}button[data-md-color-primary=white]{box-shadow:inset 0 0 .05rem rgba(0,0,0,.54)}[data-md-color-primary=white] .md-header,[data-md-color-primary=white] .md-hero,button[data-md-color-primary=white]{background-color:#fff;color:rgba(0,0,0,.87)}[data-md-color-primary=white] .md-hero--expand{border-bottom:.05rem solid rgba(0,0,0,.07)}[data-md-color-primary=black] .md-header,[data-md-color-primary=black] .md-hero,button[data-md-color-primary=black]{background-color:#000}button[data-md-color-accent=red]{background-color:#ff1744}[data-md-color-accent=red] .md-typeset a:active,[data-md-color-accent=red] .md-typeset a:hover{color:#ff1744}[data-md-color-accent=red] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=red] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#ff1744}[data-md-color-accent=red] .md-nav__link:focus,[data-md-color-accent=red] .md-nav__link:hover,[data-md-color-accent=red] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=red] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=red] .md-typeset .md-clipboard:active:before,[data-md-color-accent=red] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=red] .md-typeset [id] .headerlink:focus,[data-md-color-accent=red] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=red] .md-typeset [id]:target .headerlink{color:#ff1744}[data-md-color-accent=red] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff1744}[data-md-color-accent=red] .md-search-result__link:hover,[data-md-color-accent=red] .md-search-result__link[data-md-state=active]{background-color:rgba(255,23,68,.1)}[data-md-color-accent=red] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff1744}[data-md-color-accent=red] .md-source-file:hover:before{background-color:#ff1744}button[data-md-color-accent=pink]{background-color:#f50057}[data-md-color-accent=pink] .md-typeset a:active,[data-md-color-accent=pink] .md-typeset a:hover{color:#f50057}[data-md-color-accent=pink] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=pink] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#f50057}[data-md-color-accent=pink] .md-nav__link:focus,[data-md-color-accent=pink] .md-nav__link:hover,[data-md-color-accent=pink] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=pink] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=pink] .md-typeset .md-clipboard:active:before,[data-md-color-accent=pink] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=pink] .md-typeset [id] .headerlink:focus,[data-md-color-accent=pink] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=pink] .md-typeset [id]:target .headerlink{color:#f50057}[data-md-color-accent=pink] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#f50057}[data-md-color-accent=pink] .md-search-result__link:hover,[data-md-color-accent=pink] .md-search-result__link[data-md-state=active]{background-color:rgba(245,0,87,.1)}[data-md-color-accent=pink] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#f50057}[data-md-color-accent=pink] .md-source-file:hover:before{background-color:#f50057}button[data-md-color-accent=purple]{background-color:#e040fb}[data-md-color-accent=purple] .md-typeset a:active,[data-md-color-accent=purple] .md-typeset a:hover{color:#e040fb}[data-md-color-accent=purple] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=purple] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#e040fb}[data-md-color-accent=purple] .md-nav__link:focus,[data-md-color-accent=purple] .md-nav__link:hover,[data-md-color-accent=purple] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=purple] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=purple] .md-typeset .md-clipboard:active:before,[data-md-color-accent=purple] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=purple] .md-typeset [id] .headerlink:focus,[data-md-color-accent=purple] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=purple] .md-typeset [id]:target .headerlink{color:#e040fb}[data-md-color-accent=purple] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#e040fb}[data-md-color-accent=purple] .md-search-result__link:hover,[data-md-color-accent=purple] .md-search-result__link[data-md-state=active]{background-color:rgba(224,64,251,.1)}[data-md-color-accent=purple] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#e040fb}[data-md-color-accent=purple] .md-source-file:hover:before{background-color:#e040fb}button[data-md-color-accent=deep-purple]{background-color:#7c4dff}[data-md-color-accent=deep-purple] .md-typeset a:active,[data-md-color-accent=deep-purple] .md-typeset a:hover{color:#7c4dff}[data-md-color-accent=deep-purple] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=deep-purple] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#7c4dff}[data-md-color-accent=deep-purple] .md-nav__link:focus,[data-md-color-accent=deep-purple] .md-nav__link:hover,[data-md-color-accent=deep-purple] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=deep-purple] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=deep-purple] .md-typeset .md-clipboard:active:before,[data-md-color-accent=deep-purple] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=deep-purple] .md-typeset [id] .headerlink:focus,[data-md-color-accent=deep-purple] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=deep-purple] .md-typeset [id]:target .headerlink{color:#7c4dff}[data-md-color-accent=deep-purple] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#7c4dff}[data-md-color-accent=deep-purple] .md-search-result__link:hover,[data-md-color-accent=deep-purple] .md-search-result__link[data-md-state=active]{background-color:rgba(124,77,255,.1)}[data-md-color-accent=deep-purple] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#7c4dff}[data-md-color-accent=deep-purple] .md-source-file:hover:before{background-color:#7c4dff}button[data-md-color-accent=indigo]{background-color:#536dfe}[data-md-color-accent=indigo] .md-typeset a:active,[data-md-color-accent=indigo] .md-typeset a:hover{color:#536dfe}[data-md-color-accent=indigo] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=indigo] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#536dfe}[data-md-color-accent=indigo] .md-nav__link:focus,[data-md-color-accent=indigo] .md-nav__link:hover,[data-md-color-accent=indigo] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=indigo] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=indigo] .md-typeset .md-clipboard:active:before,[data-md-color-accent=indigo] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=indigo] .md-typeset [id] .headerlink:focus,[data-md-color-accent=indigo] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=indigo] .md-typeset [id]:target .headerlink{color:#536dfe}[data-md-color-accent=indigo] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#536dfe}[data-md-color-accent=indigo] .md-search-result__link:hover,[data-md-color-accent=indigo] .md-search-result__link[data-md-state=active]{background-color:rgba(83,109,254,.1)}[data-md-color-accent=indigo] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#536dfe}[data-md-color-accent=indigo] .md-source-file:hover:before{background-color:#536dfe}button[data-md-color-accent=blue]{background-color:#448aff}[data-md-color-accent=blue] .md-typeset a:active,[data-md-color-accent=blue] .md-typeset a:hover{color:#448aff}[data-md-color-accent=blue] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=blue] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#448aff}[data-md-color-accent=blue] .md-nav__link:focus,[data-md-color-accent=blue] .md-nav__link:hover,[data-md-color-accent=blue] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=blue] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=blue] .md-typeset .md-clipboard:active:before,[data-md-color-accent=blue] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=blue] .md-typeset [id] .headerlink:focus,[data-md-color-accent=blue] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=blue] .md-typeset [id]:target .headerlink{color:#448aff}[data-md-color-accent=blue] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#448aff}[data-md-color-accent=blue] .md-search-result__link:hover,[data-md-color-accent=blue] .md-search-result__link[data-md-state=active]{background-color:rgba(68,138,255,.1)}[data-md-color-accent=blue] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#448aff}[data-md-color-accent=blue] .md-source-file:hover:before{background-color:#448aff}button[data-md-color-accent=light-blue]{background-color:#0091ea}[data-md-color-accent=light-blue] .md-typeset a:active,[data-md-color-accent=light-blue] .md-typeset a:hover{color:#0091ea}[data-md-color-accent=light-blue] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=light-blue] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#0091ea}[data-md-color-accent=light-blue] .md-nav__link:focus,[data-md-color-accent=light-blue] .md-nav__link:hover,[data-md-color-accent=light-blue] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=light-blue] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=light-blue] .md-typeset .md-clipboard:active:before,[data-md-color-accent=light-blue] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=light-blue] .md-typeset [id] .headerlink:focus,[data-md-color-accent=light-blue] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=light-blue] .md-typeset [id]:target .headerlink{color:#0091ea}[data-md-color-accent=light-blue] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#0091ea}[data-md-color-accent=light-blue] .md-search-result__link:hover,[data-md-color-accent=light-blue] .md-search-result__link[data-md-state=active]{background-color:rgba(0,145,234,.1)}[data-md-color-accent=light-blue] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#0091ea}[data-md-color-accent=light-blue] .md-source-file:hover:before{background-color:#0091ea}button[data-md-color-accent=cyan]{background-color:#00b8d4}[data-md-color-accent=cyan] .md-typeset a:active,[data-md-color-accent=cyan] .md-typeset a:hover{color:#00b8d4}[data-md-color-accent=cyan] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=cyan] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#00b8d4}[data-md-color-accent=cyan] .md-nav__link:focus,[data-md-color-accent=cyan] .md-nav__link:hover,[data-md-color-accent=cyan] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=cyan] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=cyan] .md-typeset .md-clipboard:active:before,[data-md-color-accent=cyan] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=cyan] .md-typeset [id] .headerlink:focus,[data-md-color-accent=cyan] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=cyan] .md-typeset [id]:target .headerlink{color:#00b8d4}[data-md-color-accent=cyan] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00b8d4}[data-md-color-accent=cyan] .md-search-result__link:hover,[data-md-color-accent=cyan] .md-search-result__link[data-md-state=active]{background-color:rgba(0,184,212,.1)}[data-md-color-accent=cyan] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00b8d4}[data-md-color-accent=cyan] .md-source-file:hover:before{background-color:#00b8d4}button[data-md-color-accent=teal]{background-color:#00bfa5}[data-md-color-accent=teal] .md-typeset a:active,[data-md-color-accent=teal] .md-typeset a:hover{color:#00bfa5}[data-md-color-accent=teal] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=teal] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#00bfa5}[data-md-color-accent=teal] .md-nav__link:focus,[data-md-color-accent=teal] .md-nav__link:hover,[data-md-color-accent=teal] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=teal] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=teal] .md-typeset .md-clipboard:active:before,[data-md-color-accent=teal] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=teal] .md-typeset [id] .headerlink:focus,[data-md-color-accent=teal] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=teal] .md-typeset [id]:target .headerlink{color:#00bfa5}[data-md-color-accent=teal] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00bfa5}[data-md-color-accent=teal] .md-search-result__link:hover,[data-md-color-accent=teal] .md-search-result__link[data-md-state=active]{background-color:rgba(0,191,165,.1)}[data-md-color-accent=teal] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00bfa5}[data-md-color-accent=teal] .md-source-file:hover:before{background-color:#00bfa5}button[data-md-color-accent=green]{background-color:#00c853}[data-md-color-accent=green] .md-typeset a:active,[data-md-color-accent=green] .md-typeset a:hover{color:#00c853}[data-md-color-accent=green] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=green] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#00c853}[data-md-color-accent=green] .md-nav__link:focus,[data-md-color-accent=green] .md-nav__link:hover,[data-md-color-accent=green] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=green] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=green] .md-typeset .md-clipboard:active:before,[data-md-color-accent=green] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=green] .md-typeset [id] .headerlink:focus,[data-md-color-accent=green] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=green] .md-typeset [id]:target .headerlink{color:#00c853}[data-md-color-accent=green] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00c853}[data-md-color-accent=green] .md-search-result__link:hover,[data-md-color-accent=green] .md-search-result__link[data-md-state=active]{background-color:rgba(0,200,83,.1)}[data-md-color-accent=green] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#00c853}[data-md-color-accent=green] .md-source-file:hover:before{background-color:#00c853}button[data-md-color-accent=light-green]{background-color:#64dd17}[data-md-color-accent=light-green] .md-typeset a:active,[data-md-color-accent=light-green] .md-typeset a:hover{color:#64dd17}[data-md-color-accent=light-green] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=light-green] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#64dd17}[data-md-color-accent=light-green] .md-nav__link:focus,[data-md-color-accent=light-green] .md-nav__link:hover,[data-md-color-accent=light-green] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=light-green] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=light-green] .md-typeset .md-clipboard:active:before,[data-md-color-accent=light-green] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=light-green] .md-typeset [id] .headerlink:focus,[data-md-color-accent=light-green] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=light-green] .md-typeset [id]:target .headerlink{color:#64dd17}[data-md-color-accent=light-green] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#64dd17}[data-md-color-accent=light-green] .md-search-result__link:hover,[data-md-color-accent=light-green] .md-search-result__link[data-md-state=active]{background-color:rgba(100,221,23,.1)}[data-md-color-accent=light-green] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#64dd17}[data-md-color-accent=light-green] .md-source-file:hover:before{background-color:#64dd17}button[data-md-color-accent=lime]{background-color:#aeea00}[data-md-color-accent=lime] .md-typeset a:active,[data-md-color-accent=lime] .md-typeset a:hover{color:#aeea00}[data-md-color-accent=lime] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=lime] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#aeea00}[data-md-color-accent=lime] .md-nav__link:focus,[data-md-color-accent=lime] .md-nav__link:hover,[data-md-color-accent=lime] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=lime] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=lime] .md-typeset .md-clipboard:active:before,[data-md-color-accent=lime] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=lime] .md-typeset [id] .headerlink:focus,[data-md-color-accent=lime] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=lime] .md-typeset [id]:target .headerlink{color:#aeea00}[data-md-color-accent=lime] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#aeea00}[data-md-color-accent=lime] .md-search-result__link:hover,[data-md-color-accent=lime] .md-search-result__link[data-md-state=active]{background-color:rgba(174,234,0,.1)}[data-md-color-accent=lime] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#aeea00}[data-md-color-accent=lime] .md-source-file:hover:before{background-color:#aeea00}button[data-md-color-accent=yellow]{background-color:#ffd600}[data-md-color-accent=yellow] .md-typeset a:active,[data-md-color-accent=yellow] .md-typeset a:hover{color:#ffd600}[data-md-color-accent=yellow] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=yellow] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#ffd600}[data-md-color-accent=yellow] .md-nav__link:focus,[data-md-color-accent=yellow] .md-nav__link:hover,[data-md-color-accent=yellow] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=yellow] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=yellow] .md-typeset .md-clipboard:active:before,[data-md-color-accent=yellow] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=yellow] .md-typeset [id] .headerlink:focus,[data-md-color-accent=yellow] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=yellow] .md-typeset [id]:target .headerlink{color:#ffd600}[data-md-color-accent=yellow] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ffd600}[data-md-color-accent=yellow] .md-search-result__link:hover,[data-md-color-accent=yellow] .md-search-result__link[data-md-state=active]{background-color:rgba(255,214,0,.1)}[data-md-color-accent=yellow] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ffd600}[data-md-color-accent=yellow] .md-source-file:hover:before{background-color:#ffd600}button[data-md-color-accent=amber]{background-color:#ffab00}[data-md-color-accent=amber] .md-typeset a:active,[data-md-color-accent=amber] .md-typeset a:hover{color:#ffab00}[data-md-color-accent=amber] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=amber] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#ffab00}[data-md-color-accent=amber] .md-nav__link:focus,[data-md-color-accent=amber] .md-nav__link:hover,[data-md-color-accent=amber] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=amber] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=amber] .md-typeset .md-clipboard:active:before,[data-md-color-accent=amber] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=amber] .md-typeset [id] .headerlink:focus,[data-md-color-accent=amber] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=amber] .md-typeset [id]:target .headerlink{color:#ffab00}[data-md-color-accent=amber] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ffab00}[data-md-color-accent=amber] .md-search-result__link:hover,[data-md-color-accent=amber] .md-search-result__link[data-md-state=active]{background-color:rgba(255,171,0,.1)}[data-md-color-accent=amber] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ffab00}[data-md-color-accent=amber] .md-source-file:hover:before{background-color:#ffab00}button[data-md-color-accent=orange]{background-color:#ff9100}[data-md-color-accent=orange] .md-typeset a:active,[data-md-color-accent=orange] .md-typeset a:hover{color:#ff9100}[data-md-color-accent=orange] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=orange] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#ff9100}[data-md-color-accent=orange] .md-nav__link:focus,[data-md-color-accent=orange] .md-nav__link:hover,[data-md-color-accent=orange] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=orange] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=orange] .md-typeset .md-clipboard:active:before,[data-md-color-accent=orange] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=orange] .md-typeset [id] .headerlink:focus,[data-md-color-accent=orange] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=orange] .md-typeset [id]:target .headerlink{color:#ff9100}[data-md-color-accent=orange] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff9100}[data-md-color-accent=orange] .md-search-result__link:hover,[data-md-color-accent=orange] .md-search-result__link[data-md-state=active]{background-color:rgba(255,145,0,.1)}[data-md-color-accent=orange] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff9100}[data-md-color-accent=orange] .md-source-file:hover:before{background-color:#ff9100}button[data-md-color-accent=deep-orange]{background-color:#ff6e40}[data-md-color-accent=deep-orange] .md-typeset a:active,[data-md-color-accent=deep-orange] .md-typeset a:hover{color:#ff6e40}[data-md-color-accent=deep-orange] .md-typeset .codehilite pre::-webkit-scrollbar-thumb:hover,[data-md-color-accent=deep-orange] .md-typeset pre code::-webkit-scrollbar-thumb:hover{background-color:#ff6e40}[data-md-color-accent=deep-orange] .md-nav__link:focus,[data-md-color-accent=deep-orange] .md-nav__link:hover,[data-md-color-accent=deep-orange] .md-typeset .footnote li:hover .footnote-backref:hover,[data-md-color-accent=deep-orange] .md-typeset .footnote li:target .footnote-backref,[data-md-color-accent=deep-orange] .md-typeset .md-clipboard:active:before,[data-md-color-accent=deep-orange] .md-typeset .md-clipboard:hover:before,[data-md-color-accent=deep-orange] .md-typeset [id] .headerlink:focus,[data-md-color-accent=deep-orange] .md-typeset [id]:hover .headerlink:hover,[data-md-color-accent=deep-orange] .md-typeset [id]:target .headerlink{color:#ff6e40}[data-md-color-accent=deep-orange] .md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff6e40}[data-md-color-accent=deep-orange] .md-search-result__link:hover,[data-md-color-accent=deep-orange] .md-search-result__link[data-md-state=active]{background-color:rgba(255,110,64,.1)}[data-md-color-accent=deep-orange] .md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#ff6e40}[data-md-color-accent=deep-orange] .md-source-file:hover:before{background-color:#ff6e40}@media only screen and (max-width:59.9375em){[data-md-color-primary=red] .md-nav__source{background-color:rgba(190,66,64,.9675)}[data-md-color-primary=pink] .md-nav__source{background-color:rgba(185,24,79,.9675)}[data-md-color-primary=purple] .md-nav__source{background-color:rgba(136,57,150,.9675)}[data-md-color-primary=deep-purple] .md-nav__source{background-color:rgba(100,69,154,.9675)}[data-md-color-primary=indigo] .md-nav__source{background-color:rgba(50,64,144,.9675)}[data-md-color-primary=blue] .md-nav__source{background-color:rgba(26,119,193,.9675)}[data-md-color-primary=light-blue] .md-nav__source{background-color:rgba(2,134,194,.9675)}[data-md-color-primary=cyan] .md-nav__source{background-color:rgba(0,150,169,.9675)}[data-md-color-primary=teal] .md-nav__source{background-color:rgba(0,119,108,.9675)}[data-md-color-primary=green] .md-nav__source{background-color:rgba(60,139,64,.9675)}[data-md-color-primary=light-green] .md-nav__source{background-color:rgba(99,142,53,.9675)}[data-md-color-primary=lime] .md-nav__source{background-color:rgba(153,161,41,.9675)}[data-md-color-primary=yellow] .md-nav__source{background-color:rgba(198,134,29,.9675)}[data-md-color-primary=amber] .md-nav__source{background-color:rgba(203,127,0,.9675)}[data-md-color-primary=orange] .md-nav__source{background-color:rgba(200,111,0,.9675)}[data-md-color-primary=deep-orange] .md-nav__source{background-color:rgba(203,89,53,.9675)}[data-md-color-primary=brown] .md-nav__source{background-color:rgba(96,68,57,.9675)}[data-md-color-primary=grey] .md-nav__source{background-color:rgba(93,93,93,.9675)}[data-md-color-primary=blue-grey] .md-nav__source{background-color:rgba(67,88,97,.9675)}[data-md-color-primary=white] .md-nav__source{background-color:rgba(0,0,0,.07);color:rgba(0,0,0,.87)}[data-md-color-primary=black] .md-nav__source{background-color:#404040}}@media only screen and (max-width:76.1875em){html [data-md-color-primary=red] .md-nav--primary .md-nav__title--site{background-color:#ef5350}html [data-md-color-primary=pink] .md-nav--primary .md-nav__title--site{background-color:#e91e63}html [data-md-color-primary=purple] .md-nav--primary .md-nav__title--site{background-color:#ab47bc}html [data-md-color-primary=deep-purple] .md-nav--primary .md-nav__title--site{background-color:#7e57c2}html [data-md-color-primary=indigo] .md-nav--primary .md-nav__title--site{background-color:#3f51b5}html [data-md-color-primary=blue] .md-nav--primary .md-nav__title--site{background-color:#2196f3}html [data-md-color-primary=light-blue] .md-nav--primary .md-nav__title--site{background-color:#03a9f4}html [data-md-color-primary=cyan] .md-nav--primary .md-nav__title--site{background-color:#00bcd4}html [data-md-color-primary=teal] .md-nav--primary .md-nav__title--site{background-color:#009688}html [data-md-color-primary=green] .md-nav--primary .md-nav__title--site{background-color:#4caf50}html [data-md-color-primary=light-green] .md-nav--primary .md-nav__title--site{background-color:#7cb342}html [data-md-color-primary=lime] .md-nav--primary .md-nav__title--site{background-color:#c0ca33}html [data-md-color-primary=yellow] .md-nav--primary .md-nav__title--site{background-color:#f9a825}html [data-md-color-primary=amber] .md-nav--primary .md-nav__title--site{background-color:#ffa000}html [data-md-color-primary=orange] .md-nav--primary .md-nav__title--site{background-color:#fb8c00}html [data-md-color-primary=deep-orange] .md-nav--primary .md-nav__title--site{background-color:#ff7043}html [data-md-color-primary=brown] .md-nav--primary .md-nav__title--site{background-color:#795548}html [data-md-color-primary=grey] .md-nav--primary .md-nav__title--site{background-color:#757575}html [data-md-color-primary=blue-grey] .md-nav--primary .md-nav__title--site{background-color:#546e7a}html [data-md-color-primary=white] .md-nav--primary .md-nav__title--site{background-color:#fff;color:rgba(0,0,0,.87)}[data-md-color-primary=white] .md-hero{border-bottom:.05rem solid rgba(0,0,0,.07)}html [data-md-color-primary=black] .md-nav--primary .md-nav__title--site{background-color:#000}}@media only screen and (min-width:76.25em){[data-md-color-primary=red] .md-tabs{background-color:#ef5350}[data-md-color-primary=pink] .md-tabs{background-color:#e91e63}[data-md-color-primary=purple] .md-tabs{background-color:#ab47bc}[data-md-color-primary=deep-purple] .md-tabs{background-color:#7e57c2}[data-md-color-primary=indigo] .md-tabs{background-color:#3f51b5}[data-md-color-primary=blue] .md-tabs{background-color:#2196f3}[data-md-color-primary=light-blue] .md-tabs{background-color:#03a9f4}[data-md-color-primary=cyan] .md-tabs{background-color:#00bcd4}[data-md-color-primary=teal] .md-tabs{background-color:#009688}[data-md-color-primary=green] .md-tabs{background-color:#4caf50}[data-md-color-primary=light-green] .md-tabs{background-color:#7cb342}[data-md-color-primary=lime] .md-tabs{background-color:#c0ca33}[data-md-color-primary=yellow] .md-tabs{background-color:#f9a825}[data-md-color-primary=amber] .md-tabs{background-color:#ffa000}[data-md-color-primary=orange] .md-tabs{background-color:#fb8c00}[data-md-color-primary=deep-orange] .md-tabs{background-color:#ff7043}[data-md-color-primary=brown] .md-tabs{background-color:#795548}[data-md-color-primary=grey] .md-tabs{background-color:#757575}[data-md-color-primary=blue-grey] .md-tabs{background-color:#546e7a}[data-md-color-primary=white] .md-tabs{border-bottom:.05rem solid rgba(0,0,0,.07);background-color:#fff;color:rgba(0,0,0,.87)}[data-md-color-primary=black] .md-tabs{background-color:#000}}@media only screen and (min-width:60em){[data-md-color-primary=white] .md-search__input{background-color:rgba(0,0,0,.07)}[data-md-color-primary=white] .md-search__input::-webkit-input-placeholder{color:rgba(0,0,0,.54)}[data-md-color-primary=white] .md-search__input::-moz-placeholder{color:rgba(0,0,0,.54)}[data-md-color-primary=white] .md-search__input:-ms-input-placeholder{color:rgba(0,0,0,.54)}[data-md-color-primary=white] .md-search__input::-ms-input-placeholder{color:rgba(0,0,0,.54)}[data-md-color-primary=white] .md-search__input::placeholder{color:rgba(0,0,0,.54)}[data-md-color-primary=black] .md-search__input{background-color:hsla(0,0%,100%,.3)}} \ No newline at end of file diff --git a/site/assets/stylesheets/application.adb8469c.css b/site/assets/stylesheets/application.adb8469c.css deleted file mode 100644 index 93b3dabadf9f5cbc6d40cdc6d3f33f1884d06c7f..0000000000000000000000000000000000000000 --- a/site/assets/stylesheets/application.adb8469c.css +++ /dev/null @@ -1 +0,0 @@ -html{box-sizing:border-box}*,:after,:before{box-sizing:inherit}html{-webkit-text-size-adjust:none;-moz-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}body{margin:0}hr{overflow:visible;box-sizing:content-box}a{-webkit-text-decoration-skip:objects}a,button,input,label{-webkit-tap-highlight-color:transparent}a{color:inherit;text-decoration:none}small,sub,sup{font-size:80%}sub,sup{position:relative;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}table{border-collapse:separate;border-spacing:0}td,th{font-weight:400;vertical-align:top}button{margin:0;padding:0;border:0;outline-style:none;background:transparent;font-size:inherit}input{border:0;outline:0}.md-clipboard:before,.md-icon,.md-nav__button,.md-nav__link:after,.md-nav__title:before,.md-search-result__article--document:before,.md-source-file:before,.md-typeset .admonition>.admonition-title:before,.md-typeset .admonition>summary:before,.md-typeset .critic.comment:before,.md-typeset .footnote-backref,.md-typeset .task-list-control .task-list-indicator:before,.md-typeset details>.admonition-title:before,.md-typeset details>summary:before,.md-typeset summary:after{font-family:Material Icons;font-style:normal;font-variant:normal;font-weight:400;line-height:1;text-transform:none;white-space:nowrap;word-wrap:normal;direction:ltr}.md-content__icon,.md-footer-nav__button,.md-header-nav__button,.md-nav__button,.md-nav__title:before,.md-search-result__article--document:before{display:inline-block;margin:.2rem;padding:.4rem;font-size:1.2rem;cursor:pointer}.md-icon--arrow-back:before{content:"î—„"}.md-icon--arrow-forward:before{content:"î—ˆ"}.md-icon--menu:before{content:"î—’"}.md-icon--search:before{content:""}[dir=rtl] .md-icon--arrow-back:before{content:"î—ˆ"}[dir=rtl] .md-icon--arrow-forward:before{content:"î—„"}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body,input{color:rgba(0,0,0,.87);font-feature-settings:"kern","liga";font-family:Helvetica Neue,Helvetica,Arial,sans-serif}code,kbd,pre{color:rgba(0,0,0,.87);font-feature-settings:"kern";font-family:Courier New,Courier,monospace}.md-typeset{font-size:.8rem;line-height:1.6;-webkit-print-color-adjust:exact}.md-typeset blockquote,.md-typeset ol,.md-typeset p,.md-typeset ul{margin:1em 0}.md-typeset h1{margin:0 0 2rem;color:rgba(0,0,0,.54);font-size:1.5625rem;line-height:1.3}.md-typeset h1,.md-typeset h2{font-weight:300;letter-spacing:-.01em}.md-typeset h2{margin:2rem 0 .8rem;font-size:1.25rem;line-height:1.4}.md-typeset h3{margin:1.6rem 0 .8rem;font-size:1rem;font-weight:400;letter-spacing:-.01em;line-height:1.5}.md-typeset h2+h3{margin-top:.8rem}.md-typeset h4{font-size:.8rem}.md-typeset h4,.md-typeset h5,.md-typeset h6{margin:.8rem 0;font-weight:700;letter-spacing:-.01em}.md-typeset h5,.md-typeset h6{color:rgba(0,0,0,.54);font-size:.64rem}.md-typeset h5{text-transform:uppercase}.md-typeset hr{margin:1.5em 0;border-bottom:.05rem dotted rgba(0,0,0,.26)}.md-typeset a{color:#3f51b5;word-break:break-word}.md-typeset a,.md-typeset a:before{-webkit-transition:color .125s;transition:color .125s}.md-typeset a:active,.md-typeset a:hover{color:#536dfe}.md-typeset code,.md-typeset pre{background-color:hsla(0,0%,92.5%,.5);color:#37474f;font-size:85%;direction:ltr}.md-typeset code{margin:0 .29412em;padding:.07353em 0;border-radius:.1rem;box-shadow:.29412em 0 0 hsla(0,0%,92.5%,.5),-.29412em 0 0 hsla(0,0%,92.5%,.5);word-break:break-word;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset h1 code,.md-typeset h2 code,.md-typeset h3 code,.md-typeset h4 code,.md-typeset h5 code,.md-typeset h6 code{margin:0;background-color:transparent;box-shadow:none}.md-typeset a>code{margin:inherit;padding:inherit;border-radius:initial;background-color:inherit;color:inherit;box-shadow:none}.md-typeset pre{position:relative;margin:1em 0;border-radius:.1rem;line-height:1.4;-webkit-overflow-scrolling:touch}.md-typeset pre>code{display:block;margin:0;padding:.525rem .6rem;background-color:transparent;font-size:inherit;box-shadow:none;-webkit-box-decoration-break:slice;box-decoration-break:slice;overflow:auto}.md-typeset pre>code::-webkit-scrollbar{width:.2rem;height:.2rem}.md-typeset pre>code::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.26)}.md-typeset pre>code::-webkit-scrollbar-thumb:hover{background-color:#536dfe}.md-typeset kbd{padding:0 .29412em;border-radius:.15rem;border:.05rem solid #c9c9c9;border-bottom-color:#bcbcbc;background-color:#fcfcfc;color:#555;font-size:85%;box-shadow:0 .05rem 0 #b0b0b0;word-break:break-word}.md-typeset mark{margin:0 .25em;padding:.0625em 0;border-radius:.1rem;background-color:rgba(255,235,59,.5);box-shadow:.25em 0 0 rgba(255,235,59,.5),-.25em 0 0 rgba(255,235,59,.5);word-break:break-word;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset abbr{border-bottom:.05rem dotted rgba(0,0,0,.54);text-decoration:none;cursor:help}.md-typeset small{opacity:.75}.md-typeset sub,.md-typeset sup{margin-left:.07812em}[dir=rtl] .md-typeset sub,[dir=rtl] .md-typeset sup{margin-right:.07812em;margin-left:0}.md-typeset blockquote{padding-left:.6rem;border-left:.2rem solid rgba(0,0,0,.26);color:rgba(0,0,0,.54)}[dir=rtl] .md-typeset blockquote{padding-right:.6rem;padding-left:0;border-right:.2rem solid rgba(0,0,0,.26);border-left:initial}.md-typeset ul{list-style-type:disc}.md-typeset ol,.md-typeset ul{margin-left:.625em;padding:0}[dir=rtl] .md-typeset ol,[dir=rtl] .md-typeset ul{margin-right:.625em;margin-left:0}.md-typeset ol ol,.md-typeset ul ol{list-style-type:lower-alpha}.md-typeset ol ol ol,.md-typeset ul ol ol{list-style-type:lower-roman}.md-typeset ol li,.md-typeset ul li{margin-bottom:.5em;margin-left:1.25em}[dir=rtl] .md-typeset ol li,[dir=rtl] .md-typeset ul li{margin-right:1.25em;margin-left:0}.md-typeset ol li blockquote,.md-typeset ol li p,.md-typeset ul li blockquote,.md-typeset ul li p{margin:.5em 0}.md-typeset ol li:last-child,.md-typeset ul li:last-child{margin-bottom:0}.md-typeset ol li ol,.md-typeset ol li ul,.md-typeset ul li ol,.md-typeset ul li ul{margin:.5em 0 .5em .625em}[dir=rtl] .md-typeset ol li ol,[dir=rtl] .md-typeset ol li ul,[dir=rtl] .md-typeset ul li ol,[dir=rtl] .md-typeset ul li ul{margin-right:.625em;margin-left:0}.md-typeset dd{margin:1em 0 1em 1.875em}[dir=rtl] .md-typeset dd{margin-right:1.875em;margin-left:0}.md-typeset iframe,.md-typeset img,.md-typeset svg{max-width:100%}.md-typeset table:not([class]){box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);display:inline-block;max-width:100%;border-radius:.1rem;font-size:.64rem;overflow:auto;-webkit-overflow-scrolling:touch}.md-typeset table:not([class])+*{margin-top:1.5em}.md-typeset table:not([class]) td:not([align]),.md-typeset table:not([class]) th:not([align]){text-align:left}[dir=rtl] .md-typeset table:not([class]) td:not([align]),[dir=rtl] .md-typeset table:not([class]) th:not([align]){text-align:right}.md-typeset table:not([class]) th{min-width:5rem;padding:.6rem .8rem;background-color:rgba(0,0,0,.54);color:#fff;vertical-align:top}.md-typeset table:not([class]) td{padding:.6rem .8rem;border-top:.05rem solid rgba(0,0,0,.07);vertical-align:top}.md-typeset table:not([class]) tr{-webkit-transition:background-color .125s;transition:background-color .125s}.md-typeset table:not([class]) tr:hover{background-color:rgba(0,0,0,.035);box-shadow:inset 0 .05rem 0 #fff}.md-typeset table:not([class]) tr:first-child td{border-top:0}.md-typeset table:not([class]) a{word-break:normal}.md-typeset__scrollwrap{margin:1em -.8rem;overflow-x:auto;-webkit-overflow-scrolling:touch}.md-typeset .md-typeset__table{display:inline-block;margin-bottom:.5em;padding:0 .8rem}.md-typeset .md-typeset__table table{display:table;width:100%;margin:0;overflow:hidden}html{font-size:125%;overflow-x:hidden}body,html{height:100%}body{position:relative;font-size:.5rem}hr{display:block;height:.05rem;padding:0;border:0}.md-svg{display:none}.md-grid{max-width:61rem;margin-right:auto;margin-left:auto}.md-container,.md-main{overflow:auto}.md-container{display:table;width:100%;height:100%;padding-top:2.4rem;table-layout:fixed}.md-main{display:table-row;height:100%}.md-main__inner{height:100%;padding-top:1.5rem;padding-bottom:.05rem}.md-toggle{display:none}.md-overlay{position:fixed;top:0;width:0;height:0;-webkit-transition:width 0s .25s,height 0s .25s,opacity .25s;transition:width 0s .25s,height 0s .25s,opacity .25s;background-color:rgba(0,0,0,.54);opacity:0;z-index:3}.md-flex{display:table}.md-flex__cell{display:table-cell;position:relative;vertical-align:top}.md-flex__cell--shrink{width:0}.md-flex__cell--stretch{display:table;width:100%;table-layout:fixed}.md-flex__ellipsis{display:table-cell;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.md-skip{position:fixed;width:.05rem;height:.05rem;margin:.5rem;padding:.3rem .5rem;-webkit-transform:translateY(.4rem);transform:translateY(.4rem);border-radius:.1rem;background-color:rgba(0,0,0,.87);color:#fff;font-size:.64rem;opacity:0;overflow:hidden}.md-skip:focus{width:auto;height:auto;clip:auto;-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:opacity .175s 75ms,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:opacity .175s 75ms,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1),opacity .175s 75ms;transition:transform .25s cubic-bezier(.4,0,.2,1),opacity .175s 75ms,-webkit-transform .25s cubic-bezier(.4,0,.2,1);opacity:1;z-index:10}@page{margin:25mm}.md-clipboard{position:absolute;top:.3rem;right:.3rem;width:1.4rem;height:1.4rem;border-radius:.1rem;font-size:.8rem;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;backface-visibility:hidden}.md-clipboard:before{-webkit-transition:color .25s,opacity .25s;transition:color .25s,opacity .25s;color:rgba(0,0,0,.07);content:"\E14D"}.codehilite:hover .md-clipboard:before,.md-typeset .highlight:hover .md-clipboard:before,pre:hover .md-clipboard:before{color:rgba(0,0,0,.54)}.md-clipboard:focus:before,.md-clipboard:hover:before{color:#536dfe}.md-clipboard__message{display:block;position:absolute;top:0;right:1.7rem;padding:.3rem .5rem;-webkit-transform:translateX(.4rem);transform:translateX(.4rem);-webkit-transition:opacity .175s,-webkit-transform .25s cubic-bezier(.9,.1,.9,0);transition:opacity .175s,-webkit-transform .25s cubic-bezier(.9,.1,.9,0);transition:transform .25s cubic-bezier(.9,.1,.9,0),opacity .175s;transition:transform .25s cubic-bezier(.9,.1,.9,0),opacity .175s,-webkit-transform .25s cubic-bezier(.9,.1,.9,0);border-radius:.1rem;background-color:rgba(0,0,0,.54);color:#fff;font-size:.64rem;white-space:nowrap;opacity:0;pointer-events:none}.md-clipboard__message--active{-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:opacity .175s 75ms,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:opacity .175s 75ms,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1),opacity .175s 75ms;transition:transform .25s cubic-bezier(.4,0,.2,1),opacity .175s 75ms,-webkit-transform .25s cubic-bezier(.4,0,.2,1);opacity:1;pointer-events:auto}.md-clipboard__message:before{content:attr(aria-label)}.md-clipboard__message:after{display:block;position:absolute;top:50%;right:-.2rem;width:0;margin-top:-.2rem;border-color:transparent rgba(0,0,0,.54);border-style:solid;border-width:.2rem 0 .2rem .2rem;content:""}.md-content__inner{margin:0 .8rem 1.2rem;padding-top:.6rem}.md-content__inner:before{display:block;height:.4rem;content:""}.md-content__inner>:last-child{margin-bottom:0}.md-content__icon{position:relative;margin:.4rem 0;padding:0;float:right}.md-typeset .md-content__icon{color:rgba(0,0,0,.26)}.md-header{position:fixed;top:0;right:0;left:0;height:2.4rem;-webkit-transition:background-color .25s,color .25s;transition:background-color .25s,color .25s;background-color:#3f51b5;color:#fff;box-shadow:none;z-index:2;-webkit-backface-visibility:hidden;backface-visibility:hidden}.no-js .md-header{-webkit-transition:none;transition:none;box-shadow:none}.md-header[data-md-state=shadow]{-webkit-transition:background-color .25s,color .25s,box-shadow .25s;transition:background-color .25s,color .25s,box-shadow .25s;box-shadow:0 0 .2rem rgba(0,0,0,.1),0 .2rem .4rem rgba(0,0,0,.2)}.md-header-nav{padding:0 .2rem}.md-header-nav__button{position:relative;-webkit-transition:opacity .25s;transition:opacity .25s;z-index:1}.md-header-nav__button:hover{opacity:.7}.md-header-nav__button.md-logo *{display:block}.no-js .md-header-nav__button.md-icon--search{display:none}.md-header-nav__topic{display:block;position:absolute;-webkit-transition:opacity .15s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .15s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .15s;transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .15s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.md-header-nav__topic+.md-header-nav__topic{-webkit-transform:translateX(1.25rem);transform:translateX(1.25rem);-webkit-transition:opacity .15s,-webkit-transform .4s cubic-bezier(1,.7,.1,.1);transition:opacity .15s,-webkit-transform .4s cubic-bezier(1,.7,.1,.1);transition:transform .4s cubic-bezier(1,.7,.1,.1),opacity .15s;transition:transform .4s cubic-bezier(1,.7,.1,.1),opacity .15s,-webkit-transform .4s cubic-bezier(1,.7,.1,.1);opacity:0;z-index:-1;pointer-events:none}[dir=rtl] .md-header-nav__topic+.md-header-nav__topic{-webkit-transform:translateX(-1.25rem);transform:translateX(-1.25rem)}.no-js .md-header-nav__topic{position:static}.no-js .md-header-nav__topic+.md-header-nav__topic{display:none}.md-header-nav__title{padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-header-nav__title[data-md-state=active] .md-header-nav__topic{-webkit-transform:translateX(-1.25rem);transform:translateX(-1.25rem);-webkit-transition:opacity .15s,-webkit-transform .4s cubic-bezier(1,.7,.1,.1);transition:opacity .15s,-webkit-transform .4s cubic-bezier(1,.7,.1,.1);transition:transform .4s cubic-bezier(1,.7,.1,.1),opacity .15s;transition:transform .4s cubic-bezier(1,.7,.1,.1),opacity .15s,-webkit-transform .4s cubic-bezier(1,.7,.1,.1);opacity:0;z-index:-1;pointer-events:none}[dir=rtl] .md-header-nav__title[data-md-state=active] .md-header-nav__topic{-webkit-transform:translateX(1.25rem);transform:translateX(1.25rem)}.md-header-nav__title[data-md-state=active] .md-header-nav__topic+.md-header-nav__topic{-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:opacity .15s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .15s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .15s;transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .15s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);opacity:1;z-index:0;pointer-events:auto}.md-header-nav__source{display:none}.md-hero{-webkit-transition:background .25s;transition:background .25s;background-color:#3f51b5;color:#fff;font-size:1rem;overflow:hidden}.md-hero__inner{margin-top:1rem;padding:.8rem .8rem .4rem;-webkit-transition:opacity .25s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .25s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .25s;transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .25s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);-webkit-transition-delay:.1s;transition-delay:.1s}[data-md-state=hidden] .md-hero__inner{pointer-events:none;-webkit-transform:translateY(.625rem);transform:translateY(.625rem);-webkit-transition:opacity .1s 0s,-webkit-transform 0s .4s;transition:opacity .1s 0s,-webkit-transform 0s .4s;transition:transform 0s .4s,opacity .1s 0s;transition:transform 0s .4s,opacity .1s 0s,-webkit-transform 0s .4s;opacity:0}.md-hero--expand .md-hero__inner{margin-bottom:1.2rem}.md-footer-nav{background-color:rgba(0,0,0,.87);color:#fff}.md-footer-nav__inner{padding:.2rem;overflow:auto}.md-footer-nav__link{padding-top:1.4rem;padding-bottom:.4rem;-webkit-transition:opacity .25s;transition:opacity .25s}.md-footer-nav__link:hover{opacity:.7}.md-footer-nav__link--prev{width:25%;float:left}[dir=rtl] .md-footer-nav__link--prev{float:right}.md-footer-nav__link--next{width:75%;float:right;text-align:right}[dir=rtl] .md-footer-nav__link--next{float:left;text-align:left}.md-footer-nav__button{-webkit-transition:background .25s;transition:background .25s}.md-footer-nav__title{position:relative;padding:0 1rem;font-size:.9rem;line-height:2.4rem}.md-footer-nav__direction{position:absolute;right:0;left:0;margin-top:-1rem;padding:0 1rem;color:hsla(0,0%,100%,.7);font-size:.75rem}.md-footer-meta{background-color:rgba(0,0,0,.895)}.md-footer-meta__inner{padding:.2rem;overflow:auto}html .md-footer-meta.md-typeset a{color:hsla(0,0%,100%,.7)}html .md-footer-meta.md-typeset a:focus,html .md-footer-meta.md-typeset a:hover{color:#fff}.md-footer-copyright{margin:0 .6rem;padding:.4rem 0;color:hsla(0,0%,100%,.3);font-size:.64rem}.md-footer-copyright__highlight{color:hsla(0,0%,100%,.7)}.md-footer-social{margin:0 .4rem;padding:.2rem 0 .6rem}.md-footer-social__link{display:inline-block;width:1.6rem;height:1.6rem;font-size:.8rem;text-align:center}.md-footer-social__link:before{line-height:1.9}.md-nav{font-size:.7rem;line-height:1.3}.md-nav__title{display:block;padding:0 .6rem;font-weight:700;text-overflow:ellipsis;overflow:hidden}.md-nav__title:before{display:none;content:"\E5C4"}[dir=rtl] .md-nav__title:before{content:"\E5C8"}.md-nav__title .md-nav__button{display:none}.md-nav__list{margin:0;padding:0;list-style:none}.md-nav__item{padding:0 .6rem}.md-nav__item:last-child{padding-bottom:.6rem}.md-nav__item .md-nav__item{padding-right:0}[dir=rtl] .md-nav__item .md-nav__item{padding-right:.6rem;padding-left:0}.md-nav__item .md-nav__item:last-child{padding-bottom:0}.md-nav__button img{width:100%;height:auto}.md-nav__link{display:block;margin-top:.625em;-webkit-transition:color .125s;transition:color .125s;text-overflow:ellipsis;cursor:pointer;overflow:hidden}.md-nav__item--nested>.md-nav__link:after{content:"\E313"}html .md-nav__link[for=__toc],html .md-nav__link[for=__toc]+.md-nav__link:after,html .md-nav__link[for=__toc]~.md-nav{display:none}.md-nav__link[data-md-state=blur]{color:rgba(0,0,0,.54)}.md-nav__link--active,.md-nav__link:active{color:#3f51b5}.md-nav__item--nested>.md-nav__link{color:inherit}.md-nav__link:focus,.md-nav__link:hover{color:#536dfe}.md-nav__source,.no-js .md-search{display:none}.md-search__overlay{opacity:0;z-index:1}.md-search__form{position:relative}.md-search__input{position:relative;padding:0 2.2rem 0 3.6rem;text-overflow:ellipsis;z-index:2}[dir=rtl] .md-search__input{padding:0 3.6rem 0 2.2rem}.md-search__input::-webkit-input-placeholder{-webkit-transition:color .25s cubic-bezier(.1,.7,.1,1);transition:color .25s cubic-bezier(.1,.7,.1,1)}.md-search__input::-moz-placeholder{-moz-transition:color .25s cubic-bezier(.1,.7,.1,1);transition:color .25s cubic-bezier(.1,.7,.1,1)}.md-search__input:-ms-input-placeholder{-ms-transition:color .25s cubic-bezier(.1,.7,.1,1);transition:color .25s cubic-bezier(.1,.7,.1,1)}.md-search__input::-ms-input-placeholder{-ms-transition:color .25s cubic-bezier(.1,.7,.1,1);transition:color .25s cubic-bezier(.1,.7,.1,1)}.md-search__input::placeholder{-webkit-transition:color .25s cubic-bezier(.1,.7,.1,1);transition:color .25s cubic-bezier(.1,.7,.1,1)}.md-search__input::-webkit-input-placeholder{color:rgba(0,0,0,.54)}.md-search__input::-moz-placeholder{color:rgba(0,0,0,.54)}.md-search__input:-ms-input-placeholder{color:rgba(0,0,0,.54)}.md-search__input::-ms-input-placeholder{color:rgba(0,0,0,.54)}.md-search__input::placeholder,.md-search__input~.md-search__icon{color:rgba(0,0,0,.54)}.md-search__input::-ms-clear{display:none}.md-search__icon{position:absolute;-webkit-transition:color .25s cubic-bezier(.1,.7,.1,1),opacity .25s;transition:color .25s cubic-bezier(.1,.7,.1,1),opacity .25s;font-size:1.2rem;cursor:pointer;z-index:2}.md-search__icon:hover{opacity:.7}.md-search__icon[for=__search]{top:.3rem;left:.5rem}[dir=rtl] .md-search__icon[for=__search]{right:.5rem;left:auto}.md-search__icon[for=__search]:before{content:"\E8B6"}.md-search__icon[type=reset]{top:.3rem;right:.5rem;-webkit-transform:scale(.125);transform:scale(.125);-webkit-transition:opacity .15s,-webkit-transform .15s cubic-bezier(.1,.7,.1,1);transition:opacity .15s,-webkit-transform .15s cubic-bezier(.1,.7,.1,1);transition:transform .15s cubic-bezier(.1,.7,.1,1),opacity .15s;transition:transform .15s cubic-bezier(.1,.7,.1,1),opacity .15s,-webkit-transform .15s cubic-bezier(.1,.7,.1,1);opacity:0}[dir=rtl] .md-search__icon[type=reset]{right:auto;left:.5rem}[data-md-toggle=search]:checked~.md-header .md-search__input:valid~.md-search__icon[type=reset]{-webkit-transform:scale(1);transform:scale(1);opacity:1}[data-md-toggle=search]:checked~.md-header .md-search__input:valid~.md-search__icon[type=reset]:hover{opacity:.7}.md-search__output{position:absolute;width:100%;border-radius:0 0 .1rem .1rem;overflow:hidden;z-index:1}.md-search__scrollwrap{height:100%;background-color:#fff;box-shadow:inset 0 .05rem 0 rgba(0,0,0,.07);overflow-y:auto;-webkit-overflow-scrolling:touch}.md-search-result{color:rgba(0,0,0,.87);word-break:break-word}.md-search-result__meta{padding:0 .8rem;background-color:rgba(0,0,0,.07);color:rgba(0,0,0,.54);font-size:.64rem;line-height:1.8rem}.md-search-result__list{margin:0;padding:0;border-top:.05rem solid rgba(0,0,0,.07);list-style:none}.md-search-result__item{box-shadow:0 -.05rem 0 rgba(0,0,0,.07)}.md-search-result__link{display:block;-webkit-transition:background .25s;transition:background .25s;outline:0;overflow:hidden}.md-search-result__link:hover,.md-search-result__link[data-md-state=active]{background-color:rgba(83,109,254,.1)}.md-search-result__link:hover .md-search-result__article:before,.md-search-result__link[data-md-state=active] .md-search-result__article:before{opacity:.7}.md-search-result__link:last-child .md-search-result__teaser{margin-bottom:.6rem}.md-search-result__article{position:relative;padding:0 .8rem;overflow:auto}.md-search-result__article--document:before{position:absolute;left:0;margin:.1rem;-webkit-transition:opacity .25s;transition:opacity .25s;color:rgba(0,0,0,.54);content:"\E880"}[dir=rtl] .md-search-result__article--document:before{right:0;left:auto}.md-search-result__article--document .md-search-result__title{margin:.55rem 0;font-size:.8rem;font-weight:400;line-height:1.4}.md-search-result__title{margin:.5em 0;font-size:.64rem;font-weight:700;line-height:1.4}.md-search-result__teaser{display:-webkit-box;max-height:1.65rem;margin:.5em 0;color:rgba(0,0,0,.54);font-size:.64rem;line-height:1.4;text-overflow:ellipsis;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:2}.md-search-result em{font-style:normal;font-weight:700;text-decoration:underline}.md-sidebar{position:absolute;width:12.1rem;padding:1.2rem 0;overflow:hidden}.md-sidebar[data-md-state=lock]{position:fixed;top:2.4rem}.md-sidebar--secondary{display:none}.md-sidebar__scrollwrap{max-height:100%;margin:0 .2rem;overflow-y:auto;-webkit-backface-visibility:hidden;backface-visibility:hidden}.md-sidebar__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.26)}.md-sidebar__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#536dfe}@-webkit-keyframes md-source__facts--done{0%{height:0}to{height:.65rem}}@keyframes md-source__facts--done{0%{height:0}to{height:.65rem}}@-webkit-keyframes md-source__fact--done{0%{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}50%{opacity:0}to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes md-source__fact--done{0%{-webkit-transform:translateY(100%);transform:translateY(100%);opacity:0}50%{opacity:0}to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.md-source{display:block;padding-right:.6rem;-webkit-transition:opacity .25s;transition:opacity .25s;font-size:.65rem;line-height:1.2;white-space:nowrap}[dir=rtl] .md-source{padding-right:0;padding-left:.6rem}.md-source:hover{opacity:.7}.md-source:after,.md-source__icon{display:inline-block;height:2.4rem;content:"";vertical-align:middle}.md-source__icon{width:2.4rem}.md-source__icon svg{width:1.2rem;height:1.2rem;margin-top:.6rem;margin-left:.6rem}[dir=rtl] .md-source__icon svg{margin-right:.6rem;margin-left:0}.md-source__icon+.md-source__repository{margin-left:-2rem;padding-left:2rem}[dir=rtl] .md-source__icon+.md-source__repository{margin-right:-2rem;margin-left:0;padding-right:2rem;padding-left:0}.md-source__repository{display:inline-block;max-width:100%;margin-left:.6rem;font-weight:700;text-overflow:ellipsis;overflow:hidden;vertical-align:middle}.md-source__facts{margin:0;padding:0;font-size:.55rem;font-weight:700;list-style-type:none;opacity:.75;overflow:hidden}[data-md-state=done] .md-source__facts{-webkit-animation:md-source__facts--done .25s ease-in;animation:md-source__facts--done .25s ease-in}.md-source__fact{float:left}[dir=rtl] .md-source__fact{float:right}[data-md-state=done] .md-source__fact{-webkit-animation:md-source__fact--done .4s ease-out;animation:md-source__fact--done .4s ease-out}.md-source__fact:before{margin:0 .1rem;content:"\00B7"}.md-source__fact:first-child:before{display:none}.md-source-file{display:inline-block;margin:1em .5em 1em 0;padding-right:.25rem;border-radius:.1rem;background-color:rgba(0,0,0,.07);font-size:.64rem;list-style-type:none;cursor:pointer;overflow:hidden}.md-source-file:before{display:inline-block;margin-right:.25rem;padding:.25rem;background-color:rgba(0,0,0,.26);color:#fff;font-size:.8rem;content:"\E86F";vertical-align:middle}html .md-source-file{-webkit-transition:background .4s,color .4s,box-shadow .4s cubic-bezier(.4,0,.2,1);transition:background .4s,color .4s,box-shadow .4s cubic-bezier(.4,0,.2,1)}html .md-source-file:before{-webkit-transition:inherit;transition:inherit}html body .md-typeset .md-source-file{color:rgba(0,0,0,.54)}.md-source-file:hover{box-shadow:0 0 8px rgba(0,0,0,.18),0 8px 16px rgba(0,0,0,.36)}.md-source-file:hover:before{background-color:#536dfe}.md-tabs{width:100%;-webkit-transition:background .25s;transition:background .25s;background-color:#3f51b5;color:#fff;overflow:auto}.md-tabs__list{margin:0 0 0 .2rem;padding:0;list-style:none;white-space:nowrap}.md-tabs__item{display:inline-block;height:2.4rem;padding-right:.6rem;padding-left:.6rem}.md-tabs__link{display:block;margin-top:.8rem;-webkit-transition:opacity .25s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:opacity .25s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .25s;transition:transform .4s cubic-bezier(.1,.7,.1,1),opacity .25s,-webkit-transform .4s cubic-bezier(.1,.7,.1,1);font-size:.7rem;opacity:.7}.md-tabs__link--active,.md-tabs__link:hover{color:inherit;opacity:1}.md-tabs__item:nth-child(2) .md-tabs__link{-webkit-transition-delay:.02s;transition-delay:.02s}.md-tabs__item:nth-child(3) .md-tabs__link{-webkit-transition-delay:.04s;transition-delay:.04s}.md-tabs__item:nth-child(4) .md-tabs__link{-webkit-transition-delay:.06s;transition-delay:.06s}.md-tabs__item:nth-child(5) .md-tabs__link{-webkit-transition-delay:.08s;transition-delay:.08s}.md-tabs__item:nth-child(6) .md-tabs__link{-webkit-transition-delay:.1s;transition-delay:.1s}.md-tabs__item:nth-child(7) .md-tabs__link{-webkit-transition-delay:.12s;transition-delay:.12s}.md-tabs__item:nth-child(8) .md-tabs__link{-webkit-transition-delay:.14s;transition-delay:.14s}.md-tabs__item:nth-child(9) .md-tabs__link{-webkit-transition-delay:.16s;transition-delay:.16s}.md-tabs__item:nth-child(10) .md-tabs__link{-webkit-transition-delay:.18s;transition-delay:.18s}.md-tabs__item:nth-child(11) .md-tabs__link{-webkit-transition-delay:.2s;transition-delay:.2s}.md-tabs__item:nth-child(12) .md-tabs__link{-webkit-transition-delay:.22s;transition-delay:.22s}.md-tabs__item:nth-child(13) .md-tabs__link{-webkit-transition-delay:.24s;transition-delay:.24s}.md-tabs__item:nth-child(14) .md-tabs__link{-webkit-transition-delay:.26s;transition-delay:.26s}.md-tabs__item:nth-child(15) .md-tabs__link{-webkit-transition-delay:.28s;transition-delay:.28s}.md-tabs__item:nth-child(16) .md-tabs__link{-webkit-transition-delay:.3s;transition-delay:.3s}.md-tabs[data-md-state=hidden]{pointer-events:none}.md-tabs[data-md-state=hidden] .md-tabs__link{-webkit-transform:translateY(50%);transform:translateY(50%);-webkit-transition:color .25s,opacity .1s,-webkit-transform 0s .4s;transition:color .25s,opacity .1s,-webkit-transform 0s .4s;transition:color .25s,transform 0s .4s,opacity .1s;transition:color .25s,transform 0s .4s,opacity .1s,-webkit-transform 0s .4s;opacity:0}.md-typeset .admonition,.md-typeset details{box-shadow:0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12),0 3px 1px -2px rgba(0,0,0,.2);position:relative;margin:1.5625em 0;padding:0 .6rem;border-left:.2rem solid #448aff;border-radius:.1rem;font-size:.64rem;overflow:auto}[dir=rtl] .md-typeset .admonition,[dir=rtl] .md-typeset details{border-right:.2rem solid #448aff;border-left:none}html .md-typeset .admonition>:last-child,html .md-typeset details>:last-child{margin-bottom:.6rem}.md-typeset .admonition .admonition,.md-typeset .admonition details,.md-typeset details .admonition,.md-typeset details details{margin:1em 0}.md-typeset .admonition>.admonition-title,.md-typeset .admonition>summary,.md-typeset details>.admonition-title,.md-typeset details>summary{margin:0 -.6rem;padding:.4rem .6rem .4rem 2rem;border-bottom:.05rem solid rgba(68,138,255,.1);background-color:rgba(68,138,255,.1);font-weight:700}[dir=rtl] .md-typeset .admonition>.admonition-title,[dir=rtl] .md-typeset .admonition>summary,[dir=rtl] .md-typeset details>.admonition-title,[dir=rtl] .md-typeset details>summary{padding:.4rem 2rem .4rem .6rem}.md-typeset .admonition>.admonition-title:last-child,.md-typeset .admonition>summary:last-child,.md-typeset details>.admonition-title:last-child,.md-typeset details>summary:last-child{margin-bottom:0}.md-typeset .admonition>.admonition-title:before,.md-typeset .admonition>summary:before,.md-typeset details>.admonition-title:before,.md-typeset details>summary:before{position:absolute;left:.6rem;color:#448aff;font-size:1rem;content:"\E3C9"}[dir=rtl] .md-typeset .admonition>.admonition-title:before,[dir=rtl] .md-typeset .admonition>summary:before,[dir=rtl] .md-typeset details>.admonition-title:before,[dir=rtl] .md-typeset details>summary:before{right:.6rem;left:auto}.md-typeset .admonition.abstract,.md-typeset .admonition.summary,.md-typeset .admonition.tldr,.md-typeset details.abstract,.md-typeset details.summary,.md-typeset details.tldr{border-left-color:#00b0ff}[dir=rtl] .md-typeset .admonition.abstract,[dir=rtl] .md-typeset .admonition.summary,[dir=rtl] .md-typeset .admonition.tldr,[dir=rtl] .md-typeset details.abstract,[dir=rtl] .md-typeset details.summary,[dir=rtl] .md-typeset details.tldr{border-right-color:#00b0ff}.md-typeset .admonition.abstract>.admonition-title,.md-typeset .admonition.abstract>summary,.md-typeset .admonition.summary>.admonition-title,.md-typeset .admonition.summary>summary,.md-typeset .admonition.tldr>.admonition-title,.md-typeset .admonition.tldr>summary,.md-typeset details.abstract>.admonition-title,.md-typeset details.abstract>summary,.md-typeset details.summary>.admonition-title,.md-typeset details.summary>summary,.md-typeset details.tldr>.admonition-title,.md-typeset details.tldr>summary{border-bottom-color:rgba(0,176,255,.1);background-color:rgba(0,176,255,.1)}.md-typeset .admonition.abstract>.admonition-title:before,.md-typeset .admonition.abstract>summary:before,.md-typeset .admonition.summary>.admonition-title:before,.md-typeset .admonition.summary>summary:before,.md-typeset .admonition.tldr>.admonition-title:before,.md-typeset .admonition.tldr>summary:before,.md-typeset details.abstract>.admonition-title:before,.md-typeset details.abstract>summary:before,.md-typeset details.summary>.admonition-title:before,.md-typeset details.summary>summary:before,.md-typeset details.tldr>.admonition-title:before,.md-typeset details.tldr>summary:before{color:#00b0ff;content:""}.md-typeset .admonition.info,.md-typeset .admonition.todo,.md-typeset details.info,.md-typeset details.todo{border-left-color:#00b8d4}[dir=rtl] .md-typeset .admonition.info,[dir=rtl] .md-typeset .admonition.todo,[dir=rtl] .md-typeset details.info,[dir=rtl] .md-typeset details.todo{border-right-color:#00b8d4}.md-typeset .admonition.info>.admonition-title,.md-typeset .admonition.info>summary,.md-typeset .admonition.todo>.admonition-title,.md-typeset .admonition.todo>summary,.md-typeset details.info>.admonition-title,.md-typeset details.info>summary,.md-typeset details.todo>.admonition-title,.md-typeset details.todo>summary{border-bottom-color:rgba(0,184,212,.1);background-color:rgba(0,184,212,.1)}.md-typeset .admonition.info>.admonition-title:before,.md-typeset .admonition.info>summary:before,.md-typeset .admonition.todo>.admonition-title:before,.md-typeset .admonition.todo>summary:before,.md-typeset details.info>.admonition-title:before,.md-typeset details.info>summary:before,.md-typeset details.todo>.admonition-title:before,.md-typeset details.todo>summary:before{color:#00b8d4;content:""}.md-typeset .admonition.hint,.md-typeset .admonition.important,.md-typeset .admonition.tip,.md-typeset details.hint,.md-typeset details.important,.md-typeset details.tip{border-left-color:#00bfa5}[dir=rtl] .md-typeset .admonition.hint,[dir=rtl] .md-typeset .admonition.important,[dir=rtl] .md-typeset .admonition.tip,[dir=rtl] .md-typeset details.hint,[dir=rtl] .md-typeset details.important,[dir=rtl] .md-typeset details.tip{border-right-color:#00bfa5}.md-typeset .admonition.hint>.admonition-title,.md-typeset .admonition.hint>summary,.md-typeset .admonition.important>.admonition-title,.md-typeset .admonition.important>summary,.md-typeset .admonition.tip>.admonition-title,.md-typeset .admonition.tip>summary,.md-typeset details.hint>.admonition-title,.md-typeset details.hint>summary,.md-typeset details.important>.admonition-title,.md-typeset details.important>summary,.md-typeset details.tip>.admonition-title,.md-typeset details.tip>summary{border-bottom-color:rgba(0,191,165,.1);background-color:rgba(0,191,165,.1)}.md-typeset .admonition.hint>.admonition-title:before,.md-typeset .admonition.hint>summary:before,.md-typeset .admonition.important>.admonition-title:before,.md-typeset .admonition.important>summary:before,.md-typeset .admonition.tip>.admonition-title:before,.md-typeset .admonition.tip>summary:before,.md-typeset details.hint>.admonition-title:before,.md-typeset details.hint>summary:before,.md-typeset details.important>.admonition-title:before,.md-typeset details.important>summary:before,.md-typeset details.tip>.admonition-title:before,.md-typeset details.tip>summary:before{color:#00bfa5;content:"î Ž"}.md-typeset .admonition.check,.md-typeset .admonition.done,.md-typeset .admonition.success,.md-typeset details.check,.md-typeset details.done,.md-typeset details.success{border-left-color:#00c853}[dir=rtl] .md-typeset .admonition.check,[dir=rtl] .md-typeset .admonition.done,[dir=rtl] .md-typeset .admonition.success,[dir=rtl] .md-typeset details.check,[dir=rtl] .md-typeset details.done,[dir=rtl] .md-typeset details.success{border-right-color:#00c853}.md-typeset .admonition.check>.admonition-title,.md-typeset .admonition.check>summary,.md-typeset .admonition.done>.admonition-title,.md-typeset .admonition.done>summary,.md-typeset .admonition.success>.admonition-title,.md-typeset .admonition.success>summary,.md-typeset details.check>.admonition-title,.md-typeset details.check>summary,.md-typeset details.done>.admonition-title,.md-typeset details.done>summary,.md-typeset details.success>.admonition-title,.md-typeset details.success>summary{border-bottom-color:rgba(0,200,83,.1);background-color:rgba(0,200,83,.1)}.md-typeset .admonition.check>.admonition-title:before,.md-typeset .admonition.check>summary:before,.md-typeset .admonition.done>.admonition-title:before,.md-typeset .admonition.done>summary:before,.md-typeset .admonition.success>.admonition-title:before,.md-typeset .admonition.success>summary:before,.md-typeset details.check>.admonition-title:before,.md-typeset details.check>summary:before,.md-typeset details.done>.admonition-title:before,.md-typeset details.done>summary:before,.md-typeset details.success>.admonition-title:before,.md-typeset details.success>summary:before{color:#00c853;content:""}.md-typeset .admonition.faq,.md-typeset .admonition.help,.md-typeset .admonition.question,.md-typeset details.faq,.md-typeset details.help,.md-typeset details.question{border-left-color:#64dd17}[dir=rtl] .md-typeset .admonition.faq,[dir=rtl] .md-typeset .admonition.help,[dir=rtl] .md-typeset .admonition.question,[dir=rtl] .md-typeset details.faq,[dir=rtl] .md-typeset details.help,[dir=rtl] .md-typeset details.question{border-right-color:#64dd17}.md-typeset .admonition.faq>.admonition-title,.md-typeset .admonition.faq>summary,.md-typeset .admonition.help>.admonition-title,.md-typeset .admonition.help>summary,.md-typeset .admonition.question>.admonition-title,.md-typeset .admonition.question>summary,.md-typeset details.faq>.admonition-title,.md-typeset details.faq>summary,.md-typeset details.help>.admonition-title,.md-typeset details.help>summary,.md-typeset details.question>.admonition-title,.md-typeset details.question>summary{border-bottom-color:rgba(100,221,23,.1);background-color:rgba(100,221,23,.1)}.md-typeset .admonition.faq>.admonition-title:before,.md-typeset .admonition.faq>summary:before,.md-typeset .admonition.help>.admonition-title:before,.md-typeset .admonition.help>summary:before,.md-typeset .admonition.question>.admonition-title:before,.md-typeset .admonition.question>summary:before,.md-typeset details.faq>.admonition-title:before,.md-typeset details.faq>summary:before,.md-typeset details.help>.admonition-title:before,.md-typeset details.help>summary:before,.md-typeset details.question>.admonition-title:before,.md-typeset details.question>summary:before{color:#64dd17;content:""}.md-typeset .admonition.attention,.md-typeset .admonition.caution,.md-typeset .admonition.warning,.md-typeset details.attention,.md-typeset details.caution,.md-typeset details.warning{border-left-color:#ff9100}[dir=rtl] .md-typeset .admonition.attention,[dir=rtl] .md-typeset .admonition.caution,[dir=rtl] .md-typeset .admonition.warning,[dir=rtl] .md-typeset details.attention,[dir=rtl] .md-typeset details.caution,[dir=rtl] .md-typeset details.warning{border-right-color:#ff9100}.md-typeset .admonition.attention>.admonition-title,.md-typeset .admonition.attention>summary,.md-typeset .admonition.caution>.admonition-title,.md-typeset .admonition.caution>summary,.md-typeset .admonition.warning>.admonition-title,.md-typeset .admonition.warning>summary,.md-typeset details.attention>.admonition-title,.md-typeset details.attention>summary,.md-typeset details.caution>.admonition-title,.md-typeset details.caution>summary,.md-typeset details.warning>.admonition-title,.md-typeset details.warning>summary{border-bottom-color:rgba(255,145,0,.1);background-color:rgba(255,145,0,.1)}.md-typeset .admonition.attention>.admonition-title:before,.md-typeset .admonition.attention>summary:before,.md-typeset .admonition.caution>.admonition-title:before,.md-typeset .admonition.caution>summary:before,.md-typeset .admonition.warning>.admonition-title:before,.md-typeset .admonition.warning>summary:before,.md-typeset details.attention>.admonition-title:before,.md-typeset details.attention>summary:before,.md-typeset details.caution>.admonition-title:before,.md-typeset details.caution>summary:before,.md-typeset details.warning>.admonition-title:before,.md-typeset details.warning>summary:before{color:#ff9100;content:""}.md-typeset .admonition.fail,.md-typeset .admonition.failure,.md-typeset .admonition.missing,.md-typeset details.fail,.md-typeset details.failure,.md-typeset details.missing{border-left-color:#ff5252}[dir=rtl] .md-typeset .admonition.fail,[dir=rtl] .md-typeset .admonition.failure,[dir=rtl] .md-typeset .admonition.missing,[dir=rtl] .md-typeset details.fail,[dir=rtl] .md-typeset details.failure,[dir=rtl] .md-typeset details.missing{border-right-color:#ff5252}.md-typeset .admonition.fail>.admonition-title,.md-typeset .admonition.fail>summary,.md-typeset .admonition.failure>.admonition-title,.md-typeset .admonition.failure>summary,.md-typeset .admonition.missing>.admonition-title,.md-typeset .admonition.missing>summary,.md-typeset details.fail>.admonition-title,.md-typeset details.fail>summary,.md-typeset details.failure>.admonition-title,.md-typeset details.failure>summary,.md-typeset details.missing>.admonition-title,.md-typeset details.missing>summary{border-bottom-color:rgba(255,82,82,.1);background-color:rgba(255,82,82,.1)}.md-typeset .admonition.fail>.admonition-title:before,.md-typeset .admonition.fail>summary:before,.md-typeset .admonition.failure>.admonition-title:before,.md-typeset .admonition.failure>summary:before,.md-typeset .admonition.missing>.admonition-title:before,.md-typeset .admonition.missing>summary:before,.md-typeset details.fail>.admonition-title:before,.md-typeset details.fail>summary:before,.md-typeset details.failure>.admonition-title:before,.md-typeset details.failure>summary:before,.md-typeset details.missing>.admonition-title:before,.md-typeset details.missing>summary:before{color:#ff5252;content:"î…Œ"}.md-typeset .admonition.danger,.md-typeset .admonition.error,.md-typeset details.danger,.md-typeset details.error{border-left-color:#ff1744}[dir=rtl] .md-typeset .admonition.danger,[dir=rtl] .md-typeset .admonition.error,[dir=rtl] .md-typeset details.danger,[dir=rtl] .md-typeset details.error{border-right-color:#ff1744}.md-typeset .admonition.danger>.admonition-title,.md-typeset .admonition.danger>summary,.md-typeset .admonition.error>.admonition-title,.md-typeset .admonition.error>summary,.md-typeset details.danger>.admonition-title,.md-typeset details.danger>summary,.md-typeset details.error>.admonition-title,.md-typeset details.error>summary{border-bottom-color:rgba(255,23,68,.1);background-color:rgba(255,23,68,.1)}.md-typeset .admonition.danger>.admonition-title:before,.md-typeset .admonition.danger>summary:before,.md-typeset .admonition.error>.admonition-title:before,.md-typeset .admonition.error>summary:before,.md-typeset details.danger>.admonition-title:before,.md-typeset details.danger>summary:before,.md-typeset details.error>.admonition-title:before,.md-typeset details.error>summary:before{color:#ff1744;content:"î§"}.md-typeset .admonition.bug,.md-typeset details.bug{border-left-color:#f50057}[dir=rtl] .md-typeset .admonition.bug,[dir=rtl] .md-typeset details.bug{border-right-color:#f50057}.md-typeset .admonition.bug>.admonition-title,.md-typeset .admonition.bug>summary,.md-typeset details.bug>.admonition-title,.md-typeset details.bug>summary{border-bottom-color:rgba(245,0,87,.1);background-color:rgba(245,0,87,.1)}.md-typeset .admonition.bug>.admonition-title:before,.md-typeset .admonition.bug>summary:before,.md-typeset details.bug>.admonition-title:before,.md-typeset details.bug>summary:before{color:#f50057;content:""}.md-typeset .admonition.example,.md-typeset details.example{border-left-color:#651fff}[dir=rtl] .md-typeset .admonition.example,[dir=rtl] .md-typeset details.example{border-right-color:#651fff}.md-typeset .admonition.example>.admonition-title,.md-typeset .admonition.example>summary,.md-typeset details.example>.admonition-title,.md-typeset details.example>summary{border-bottom-color:rgba(101,31,255,.1);background-color:rgba(101,31,255,.1)}.md-typeset .admonition.example>.admonition-title:before,.md-typeset .admonition.example>summary:before,.md-typeset details.example>.admonition-title:before,.md-typeset details.example>summary:before{color:#651fff;content:""}.md-typeset .admonition.cite,.md-typeset .admonition.quote,.md-typeset details.cite,.md-typeset details.quote{border-left-color:#9e9e9e}[dir=rtl] .md-typeset .admonition.cite,[dir=rtl] .md-typeset .admonition.quote,[dir=rtl] .md-typeset details.cite,[dir=rtl] .md-typeset details.quote{border-right-color:#9e9e9e}.md-typeset .admonition.cite>.admonition-title,.md-typeset .admonition.cite>summary,.md-typeset .admonition.quote>.admonition-title,.md-typeset .admonition.quote>summary,.md-typeset details.cite>.admonition-title,.md-typeset details.cite>summary,.md-typeset details.quote>.admonition-title,.md-typeset details.quote>summary{border-bottom-color:hsla(0,0%,62%,.1);background-color:hsla(0,0%,62%,.1)}.md-typeset .admonition.cite>.admonition-title:before,.md-typeset .admonition.cite>summary:before,.md-typeset .admonition.quote>.admonition-title:before,.md-typeset .admonition.quote>summary:before,.md-typeset details.cite>.admonition-title:before,.md-typeset details.cite>summary:before,.md-typeset details.quote>.admonition-title:before,.md-typeset details.quote>summary:before{color:#9e9e9e;content:""}.codehilite .o,.codehilite .ow,.md-typeset .highlight .o,.md-typeset .highlight .ow{color:inherit}.codehilite .ge,.md-typeset .highlight .ge{color:#000}.codehilite .gr,.md-typeset .highlight .gr{color:#a00}.codehilite .gh,.md-typeset .highlight .gh{color:#999}.codehilite .go,.md-typeset .highlight .go{color:#888}.codehilite .gp,.md-typeset .highlight .gp{color:#555}.codehilite .gs,.md-typeset .highlight .gs{color:inherit}.codehilite .gu,.md-typeset .highlight .gu{color:#aaa}.codehilite .gt,.md-typeset .highlight .gt{color:#a00}.codehilite .gd,.md-typeset .highlight .gd{background-color:#fdd}.codehilite .gi,.md-typeset .highlight .gi{background-color:#dfd}.codehilite .k,.md-typeset .highlight .k{color:#3b78e7}.codehilite .kc,.md-typeset .highlight .kc{color:#a71d5d}.codehilite .kd,.codehilite .kn,.md-typeset .highlight .kd,.md-typeset .highlight .kn{color:#3b78e7}.codehilite .kp,.md-typeset .highlight .kp{color:#a71d5d}.codehilite .kr,.codehilite .kt,.md-typeset .highlight .kr,.md-typeset .highlight .kt{color:#3e61a2}.codehilite .c,.codehilite .cm,.md-typeset .highlight .c,.md-typeset .highlight .cm{color:#999}.codehilite .cp,.md-typeset .highlight .cp{color:#666}.codehilite .c1,.codehilite .ch,.codehilite .cs,.md-typeset .highlight .c1,.md-typeset .highlight .ch,.md-typeset .highlight .cs{color:#999}.codehilite .na,.codehilite .nb,.md-typeset .highlight .na,.md-typeset .highlight .nb{color:#c2185b}.codehilite .bp,.md-typeset .highlight .bp{color:#3e61a2}.codehilite .nc,.md-typeset .highlight .nc{color:#c2185b}.codehilite .no,.md-typeset .highlight .no{color:#3e61a2}.codehilite .nd,.codehilite .ni,.md-typeset .highlight .nd,.md-typeset .highlight .ni{color:#666}.codehilite .ne,.codehilite .nf,.md-typeset .highlight .ne,.md-typeset .highlight .nf{color:#c2185b}.codehilite .nl,.md-typeset .highlight .nl{color:#3b5179}.codehilite .nn,.md-typeset .highlight .nn{color:#ec407a}.codehilite .nt,.md-typeset .highlight .nt{color:#3b78e7}.codehilite .nv,.codehilite .vc,.codehilite .vg,.codehilite .vi,.md-typeset .highlight .nv,.md-typeset .highlight .vc,.md-typeset .highlight .vg,.md-typeset .highlight .vi{color:#3e61a2}.codehilite .nx,.md-typeset .highlight .nx{color:#ec407a}.codehilite .il,.codehilite .m,.codehilite .mf,.codehilite .mh,.codehilite .mi,.codehilite .mo,.md-typeset .highlight .il,.md-typeset .highlight .m,.md-typeset .highlight .mf,.md-typeset .highlight .mh,.md-typeset .highlight .mi,.md-typeset .highlight .mo{color:#e74c3c}.codehilite .s,.codehilite .sb,.codehilite .sc,.md-typeset .highlight .s,.md-typeset .highlight .sb,.md-typeset .highlight .sc{color:#0d904f}.codehilite .sd,.md-typeset .highlight .sd{color:#999}.codehilite .s2,.md-typeset .highlight .s2{color:#0d904f}.codehilite .se,.codehilite .sh,.codehilite .si,.codehilite .sx,.md-typeset .highlight .se,.md-typeset .highlight .sh,.md-typeset .highlight .si,.md-typeset .highlight .sx{color:#183691}.codehilite .sr,.md-typeset .highlight .sr{color:#009926}.codehilite .s1,.codehilite .ss,.md-typeset .highlight .s1,.md-typeset .highlight .ss{color:#0d904f}.codehilite .err,.md-typeset .highlight .err{color:#a61717}.codehilite .w,.md-typeset .highlight .w{color:transparent}.codehilite .hll,.md-typeset .highlight .hll{display:block;margin:0 -.6rem;padding:0 .6rem;background-color:rgba(255,235,59,.5)}.md-typeset .codehilitetable,.md-typeset .highlighttable{display:block;overflow:hidden}.md-typeset .codehilitetable tbody,.md-typeset .codehilitetable td,.md-typeset .highlighttable tbody,.md-typeset .highlighttable td{display:block;padding:0}.md-typeset .codehilitetable tr,.md-typeset .highlighttable tr{display:-webkit-box;display:flex}.md-typeset .codehilitetable .linenodiv,.md-typeset .codehilitetable pre,.md-typeset .highlighttable .linenodiv,.md-typeset .highlighttable pre{margin:0;border-radius:0}.md-typeset .codehilitetable .linenodiv,.md-typeset .highlighttable .linenodiv{padding:.525rem .6rem}.md-typeset .codehilitetable .linenos,.md-typeset .highlighttable .linenos{background-color:rgba(0,0,0,.07);color:rgba(0,0,0,.26);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.md-typeset .codehilitetable .linenos pre,.md-typeset .highlighttable .linenos pre{background-color:transparent;color:inherit;text-align:right}.md-typeset .codehilitetable .code,.md-typeset .highlighttable .code{-webkit-box-flex:1;flex:1;overflow:hidden}.md-typeset>.codehilitetable,.md-typeset>.highlighttable{margin:1em 0;border-radius:.2em}.md-typeset [id^="fnref:"]{display:inline-block}.md-typeset [id^="fnref:"]:target{margin-top:-3.8rem;padding-top:3.8rem;pointer-events:none}.md-typeset [id^="fn:"]:before{display:none;height:0;content:""}.md-typeset [id^="fn:"]:target:before{display:block;margin-top:-3.5rem;padding-top:3.5rem;pointer-events:none}.md-typeset .footnote{color:rgba(0,0,0,.54);font-size:.64rem}.md-typeset .footnote ol{margin-left:0}.md-typeset .footnote li{-webkit-transition:color .25s;transition:color .25s}.md-typeset .footnote li:target{color:rgba(0,0,0,.87)}.md-typeset .footnote li :first-child{margin-top:0}.md-typeset .footnote li:hover .footnote-backref,.md-typeset .footnote li:target .footnote-backref{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}.md-typeset .footnote li:hover .footnote-backref:hover,.md-typeset .footnote li:target .footnote-backref{color:#536dfe}.md-typeset .footnote-ref{display:inline-block;pointer-events:auto}.md-typeset .footnote-ref:before{display:inline;margin:0 .2em;border-left:.05rem solid rgba(0,0,0,.26);font-size:1.25em;content:"";vertical-align:-.25rem}.md-typeset .footnote-backref{display:inline-block;-webkit-transform:translateX(.25rem);transform:translateX(.25rem);-webkit-transition:color .25s,opacity .125s .125s,-webkit-transform .25s .125s;transition:color .25s,opacity .125s .125s,-webkit-transform .25s .125s;transition:transform .25s .125s,color .25s,opacity .125s .125s;transition:transform .25s .125s,color .25s,opacity .125s .125s,-webkit-transform .25s .125s;color:rgba(0,0,0,.26);font-size:0;opacity:0;vertical-align:text-bottom}[dir=rtl] .md-typeset .footnote-backref{-webkit-transform:translateX(-.25rem);transform:translateX(-.25rem)}.md-typeset .footnote-backref:before{display:inline-block;font-size:.8rem;content:"\E31B"}[dir=rtl] .md-typeset .footnote-backref:before{-webkit-transform:scaleX(-1);transform:scaleX(-1)}.md-typeset .headerlink{display:inline-block;margin-left:.5rem;-webkit-transform:translateY(.25rem);transform:translateY(.25rem);-webkit-transition:color .25s,opacity .125s .25s,-webkit-transform .25s .25s;transition:color .25s,opacity .125s .25s,-webkit-transform .25s .25s;transition:transform .25s .25s,color .25s,opacity .125s .25s;transition:transform .25s .25s,color .25s,opacity .125s .25s,-webkit-transform .25s .25s;opacity:0}[dir=rtl] .md-typeset .headerlink{margin-right:.5rem;margin-left:0}html body .md-typeset .headerlink{color:rgba(0,0,0,.26)}.md-typeset h1[id]:before{display:block;margin-top:-9px;padding-top:9px;content:""}.md-typeset h1[id]:target:before{margin-top:-3.45rem;padding-top:3.45rem}.md-typeset h1[id] .headerlink:focus,.md-typeset h1[id]:hover .headerlink,.md-typeset h1[id]:target .headerlink{-webkit-transform:translate(0);transform:translate(0);opacity:1}.md-typeset h1[id] .headerlink:focus,.md-typeset h1[id]:hover .headerlink:hover,.md-typeset h1[id]:target .headerlink{color:#536dfe}.md-typeset h2[id]:before{display:block;margin-top:-8px;padding-top:8px;content:""}.md-typeset h2[id]:target:before{margin-top:-3.4rem;padding-top:3.4rem}.md-typeset h2[id] .headerlink:focus,.md-typeset h2[id]:hover .headerlink,.md-typeset h2[id]:target .headerlink{-webkit-transform:translate(0);transform:translate(0);opacity:1}.md-typeset h2[id] .headerlink:focus,.md-typeset h2[id]:hover .headerlink:hover,.md-typeset h2[id]:target .headerlink{color:#536dfe}.md-typeset h3[id]:before{display:block;margin-top:-9px;padding-top:9px;content:""}.md-typeset h3[id]:target:before{margin-top:-3.45rem;padding-top:3.45rem}.md-typeset h3[id] .headerlink:focus,.md-typeset h3[id]:hover .headerlink,.md-typeset h3[id]:target .headerlink{-webkit-transform:translate(0);transform:translate(0);opacity:1}.md-typeset h3[id] .headerlink:focus,.md-typeset h3[id]:hover .headerlink:hover,.md-typeset h3[id]:target .headerlink{color:#536dfe}.md-typeset h4[id]:before{display:block;margin-top:-9px;padding-top:9px;content:""}.md-typeset h4[id]:target:before{margin-top:-3.45rem;padding-top:3.45rem}.md-typeset h4[id] .headerlink:focus,.md-typeset h4[id]:hover .headerlink,.md-typeset h4[id]:target .headerlink{-webkit-transform:translate(0);transform:translate(0);opacity:1}.md-typeset h4[id] .headerlink:focus,.md-typeset h4[id]:hover .headerlink:hover,.md-typeset h4[id]:target .headerlink{color:#536dfe}.md-typeset h5[id]:before{display:block;margin-top:-11px;padding-top:11px;content:""}.md-typeset h5[id]:target:before{margin-top:-3.55rem;padding-top:3.55rem}.md-typeset h5[id] .headerlink:focus,.md-typeset h5[id]:hover .headerlink,.md-typeset h5[id]:target .headerlink{-webkit-transform:translate(0);transform:translate(0);opacity:1}.md-typeset h5[id] .headerlink:focus,.md-typeset h5[id]:hover .headerlink:hover,.md-typeset h5[id]:target .headerlink{color:#536dfe}.md-typeset h6[id]:before{display:block;margin-top:-11px;padding-top:11px;content:""}.md-typeset h6[id]:target:before{margin-top:-3.55rem;padding-top:3.55rem}.md-typeset h6[id] .headerlink:focus,.md-typeset h6[id]:hover .headerlink,.md-typeset h6[id]:target .headerlink{-webkit-transform:translate(0);transform:translate(0);opacity:1}.md-typeset h6[id] .headerlink:focus,.md-typeset h6[id]:hover .headerlink:hover,.md-typeset h6[id]:target .headerlink{color:#536dfe}.md-typeset .MJXc-display{margin:.75em 0;padding:.75em 0;overflow:auto;-webkit-overflow-scrolling:touch}.md-typeset .MathJax_CHTML{outline:0}.md-typeset .critic.comment,.md-typeset del.critic,.md-typeset ins.critic{margin:0 .25em;padding:.0625em 0;border-radius:.1rem;-webkit-box-decoration-break:clone;box-decoration-break:clone}.md-typeset del.critic{background-color:#fdd;box-shadow:.25em 0 0 #fdd,-.25em 0 0 #fdd}.md-typeset ins.critic{background-color:#dfd;box-shadow:.25em 0 0 #dfd,-.25em 0 0 #dfd}.md-typeset .critic.comment{background-color:hsla(0,0%,92.5%,.5);color:#37474f;box-shadow:.25em 0 0 hsla(0,0%,92.5%,.5),-.25em 0 0 hsla(0,0%,92.5%,.5)}.md-typeset .critic.comment:before{padding-right:.125em;color:rgba(0,0,0,.26);content:"\E0B7";vertical-align:-.125em}.md-typeset .critic.block{display:block;margin:1em 0;padding-right:.8rem;padding-left:.8rem;box-shadow:none}.md-typeset .critic.block :first-child{margin-top:.5em}.md-typeset .critic.block :last-child{margin-bottom:.5em}.md-typeset details{display:block;padding-top:0}.md-typeset details[open]>summary:after{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.md-typeset details:not([open]){padding-bottom:0}.md-typeset details:not([open])>summary{border-bottom:none}.md-typeset details summary{padding-right:2rem}[dir=rtl] .md-typeset details summary{padding-left:2rem}.no-details .md-typeset details:not([open])>*{display:none}.no-details .md-typeset details:not([open]) summary{display:block}.md-typeset summary{display:block;outline:none;cursor:pointer}.md-typeset summary::-webkit-details-marker{display:none}.md-typeset summary:after{position:absolute;top:.4rem;right:.6rem;color:rgba(0,0,0,.26);font-size:1rem;content:"\E313"}[dir=rtl] .md-typeset summary:after{right:auto;left:.6rem}.md-typeset .emojione,.md-typeset .gemoji,.md-typeset .twemoji{width:1rem;vertical-align:text-top}.md-typeset code.codehilite,.md-typeset code.highlight{margin:0 .29412em;padding:.07353em 0}.md-typeset .superfences-content{display:none;-webkit-box-ordinal-group:100;order:99;width:100%;background-color:#fff}.md-typeset .superfences-content pre{margin:0;border-radius:0}.md-typeset .superfences-tabs{display:-webkit-box;display:flex;position:relative;flex-wrap:wrap;margin:1em 0;border:.05rem solid rgba(0,0,0,.07);border-radius:.2em}.md-typeset .superfences-tabs>input{display:none}.md-typeset .superfences-tabs>input:checked+label{font-weight:700}.md-typeset .superfences-tabs>input:checked+label+.superfences-content{display:block}.md-typeset .superfences-tabs>label{width:auto;padding:.6rem;-webkit-transition:color .125s;transition:color .125s;font-size:.64rem;cursor:pointer}html .md-typeset .superfences-tabs>label:hover{color:#536dfe}.md-typeset .task-list-item{position:relative;list-style-type:none}.md-typeset .task-list-item [type=checkbox]{position:absolute;top:.45em;left:-2em}[dir=rtl] .md-typeset .task-list-item [type=checkbox]{right:-2em;left:auto}.md-typeset .task-list-control .task-list-indicator:before{position:absolute;top:.15em;left:-1.25em;color:rgba(0,0,0,.26);font-size:1.25em;content:"\E835";vertical-align:-.25em}[dir=rtl] .md-typeset .task-list-control .task-list-indicator:before{right:-1.25em;left:auto}.md-typeset .task-list-control [type=checkbox]:checked+.task-list-indicator:before{content:"\E834"}.md-typeset .task-list-control [type=checkbox]{opacity:0;z-index:-1}@media print{.md-typeset a:after{color:rgba(0,0,0,.54);content:" [" attr(href) "]"}.md-typeset code,.md-typeset pre{white-space:pre-wrap}.md-typeset code{box-shadow:none;-webkit-box-decoration-break:initial;box-decoration-break:slice}.md-clipboard,.md-content__icon,.md-footer,.md-header,.md-sidebar,.md-tabs,.md-typeset .headerlink{display:none}}@media only screen and (max-width:44.9375em){.md-typeset>pre{margin:1em -.8rem;border-radius:0}.md-typeset>pre>code{padding:.525rem .8rem}.md-footer-nav__link--prev .md-footer-nav__title{display:none}.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}.codehilite .hll,.md-typeset .highlight .hll{margin:0 -.8rem;padding:0 .8rem}.md-typeset>.codehilite,.md-typeset>.highlight{margin:1em -.8rem}.md-typeset>.codehilite code,.md-typeset>.highlight code{padding:.525rem .8rem}.md-typeset>.codehilitetable,.md-typeset>.highlighttable{margin:1em -.8rem;border-radius:0}.md-typeset>.codehilitetable .linenodiv,.md-typeset>.highlighttable .linenodiv{padding:.5rem .8rem}.md-typeset>p>.MJXc-display{margin:.75em -.8rem;padding:.25em .8rem}.md-typeset>.superfences-tabs{margin:1em -.8rem;border:0;border-top:.05rem solid rgba(0,0,0,.07);border-radius:0}.md-typeset>.superfences-tabs code{padding:.525rem .8rem}.md-typeset>.superfences-tabs input:first-child+label{margin-left:.2rem}}@media only screen and (min-width:100em){html{font-size:137.5%}}@media only screen and (min-width:125em){html{font-size:150%}}@media only screen and (max-width:59.9375em){body[data-md-state=lock]{overflow:hidden}.ios body[data-md-state=lock] .md-container{display:none}html .md-nav__link[for=__toc]{display:block;padding-right:2.4rem}html .md-nav__link[for=__toc]:after{color:inherit;content:"\E8DE"}html .md-nav__link[for=__toc]+.md-nav__link{display:none}html .md-nav__link[for=__toc]~.md-nav{display:-webkit-box;display:flex}html [dir=rtl] .md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav__source{display:block;padding:0 .2rem;background-color:rgba(50,64,144,.9675);color:#fff}.md-search__overlay{position:absolute;top:.2rem;left:.2rem;width:1.8rem;height:1.8rem;-webkit-transform-origin:center;transform-origin:center;-webkit-transition:opacity .2s .2s,-webkit-transform .3s .1s;transition:opacity .2s .2s,-webkit-transform .3s .1s;transition:transform .3s .1s,opacity .2s .2s;transition:transform .3s .1s,opacity .2s .2s,-webkit-transform .3s .1s;border-radius:1rem;background-color:#fff;overflow:hidden;pointer-events:none}[dir=rtl] .md-search__overlay{right:.2rem;left:auto}[data-md-toggle=search]:checked~.md-header .md-search__overlay{-webkit-transition:opacity .1s,-webkit-transform .4s;transition:opacity .1s,-webkit-transform .4s;transition:transform .4s,opacity .1s;transition:transform .4s,opacity .1s,-webkit-transform .4s;opacity:1}.md-search__inner{position:fixed;top:0;left:100%;width:100%;height:100%;-webkit-transform:translateX(5%);transform:translateX(5%);-webkit-transition:right 0s .3s,left 0s .3s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.4,0,.2,1) .15s;transition:right 0s .3s,left 0s .3s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.4,0,.2,1) .15s;transition:right 0s .3s,left 0s .3s,transform .15s cubic-bezier(.4,0,.2,1) .15s,opacity .15s .15s;transition:right 0s .3s,left 0s .3s,transform .15s cubic-bezier(.4,0,.2,1) .15s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.4,0,.2,1) .15s;opacity:0;z-index:2}[data-md-toggle=search]:checked~.md-header .md-search__inner{left:0;-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:right 0s 0s,left 0s 0s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.1,.7,.1,1) .15s;transition:right 0s 0s,left 0s 0s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.1,.7,.1,1) .15s;transition:right 0s 0s,left 0s 0s,transform .15s cubic-bezier(.1,.7,.1,1) .15s,opacity .15s .15s;transition:right 0s 0s,left 0s 0s,transform .15s cubic-bezier(.1,.7,.1,1) .15s,opacity .15s .15s,-webkit-transform .15s cubic-bezier(.1,.7,.1,1) .15s;opacity:1}[dir=rtl] [data-md-toggle=search]:checked~.md-header .md-search__inner{right:0;left:auto}html [dir=rtl] .md-search__inner{right:100%;left:auto;-webkit-transform:translateX(-5%);transform:translateX(-5%)}.md-search__input{width:100%;height:2.4rem;font-size:.9rem}.md-search__icon[for=__search]{top:.6rem;left:.8rem}.md-search__icon[for=__search][for=__search]:before{content:"\E5C4"}[dir=rtl] .md-search__icon[for=__search][for=__search]:before{content:"\E5C8"}.md-search__icon[type=reset]{top:.6rem;right:.8rem}.md-search__output{top:2.4rem;bottom:0}.md-search-result__article--document:before{display:none}}@media only screen and (max-width:76.1875em){[data-md-toggle=drawer]:checked~.md-overlay{width:100%;height:100%;-webkit-transition:width 0s,height 0s,opacity .25s;transition:width 0s,height 0s,opacity .25s;opacity:1}.md-header-nav__button.md-icon--home,.md-header-nav__button.md-logo{display:none}.md-hero__inner{margin-top:2.4rem;margin-bottom:1.2rem}.md-nav{background-color:#fff}.md-nav--primary,.md-nav--primary .md-nav{display:-webkit-box;display:flex;position:absolute;top:0;right:0;left:0;-webkit-box-orient:vertical;-webkit-box-direction:normal;flex-direction:column;height:100%;z-index:1}.md-nav--primary .md-nav__item,.md-nav--primary .md-nav__title{font-size:.8rem;line-height:1.5}html .md-nav--primary .md-nav__title{position:relative;height:5.6rem;padding:3rem .8rem .2rem;background-color:rgba(0,0,0,.07);color:rgba(0,0,0,.54);font-weight:400;line-height:2.4rem;white-space:nowrap;cursor:pointer}html .md-nav--primary .md-nav__title:before{display:block;position:absolute;top:.2rem;left:.2rem;width:2rem;height:2rem;color:rgba(0,0,0,.54)}html .md-nav--primary .md-nav__title~.md-nav__list{background-color:#fff;box-shadow:inset 0 .05rem 0 rgba(0,0,0,.07)}html .md-nav--primary .md-nav__title~.md-nav__list>.md-nav__item:first-child{border-top:0}html .md-nav--primary .md-nav__title--site{position:relative;background-color:#3f51b5;color:#fff}html .md-nav--primary .md-nav__title--site .md-nav__button{display:block;position:absolute;top:.2rem;left:.2rem;width:3.2rem;height:3.2rem;font-size:2.4rem}html .md-nav--primary .md-nav__title--site:before{display:none}html [dir=rtl] .md-nav--primary .md-nav__title--site .md-nav__button,html [dir=rtl] .md-nav--primary .md-nav__title:before{right:.2rem;left:auto}.md-nav--primary .md-nav__list{-webkit-box-flex:1;flex:1;overflow-y:auto}.md-nav--primary .md-nav__item{padding:0;border-top:.05rem solid rgba(0,0,0,.07)}[dir=rtl] .md-nav--primary .md-nav__item{padding:0}.md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:2.4rem}[dir=rtl] .md-nav--primary .md-nav__item--nested>.md-nav__link{padding-right:.8rem;padding-left:2.4rem}.md-nav--primary .md-nav__item--nested>.md-nav__link:after{content:"\E315"}[dir=rtl] .md-nav--primary .md-nav__item--nested>.md-nav__link:after{content:"\E314"}.md-nav--primary .md-nav__link{position:relative;margin-top:0;padding:.6rem .8rem}.md-nav--primary .md-nav__link:after{position:absolute;top:50%;right:.6rem;margin-top:-.6rem;color:inherit;font-size:1.2rem}[dir=rtl] .md-nav--primary .md-nav__link:after{right:auto;left:.6rem}.md-nav--primary .md-nav--secondary .md-nav__link{position:static}.md-nav--primary .md-nav--secondary .md-nav{position:static;background-color:transparent}.md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-left:1.4rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav__link{padding-right:1.4rem;padding-left:0}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-left:2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav__link{padding-right:2rem;padding-left:0}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-left:2.6rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav__link{padding-right:2.6rem;padding-left:0}.md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-left:3.2rem}[dir=rtl] .md-nav--primary .md-nav--secondary .md-nav .md-nav .md-nav .md-nav .md-nav__link{padding-right:3.2rem;padding-left:0}.md-nav__toggle~.md-nav{display:-webkit-box;display:flex;-webkit-transform:translateX(100%);transform:translateX(100%);-webkit-transition:opacity .125s .05s,-webkit-transform .25s cubic-bezier(.8,0,.6,1);transition:opacity .125s .05s,-webkit-transform .25s cubic-bezier(.8,0,.6,1);transition:transform .25s cubic-bezier(.8,0,.6,1),opacity .125s .05s;transition:transform .25s cubic-bezier(.8,0,.6,1),opacity .125s .05s,-webkit-transform .25s cubic-bezier(.8,0,.6,1);opacity:0}[dir=rtl] .md-nav__toggle~.md-nav{-webkit-transform:translateX(-100%);transform:translateX(-100%)}.no-csstransforms3d .md-nav__toggle~.md-nav{display:none}.md-nav__toggle:checked~.md-nav{-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:opacity .125s .125s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:opacity .125s .125s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1),opacity .125s .125s;transition:transform .25s cubic-bezier(.4,0,.2,1),opacity .125s .125s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);opacity:1}.no-csstransforms3d .md-nav__toggle:checked~.md-nav{display:-webkit-box;display:flex}.md-sidebar--primary{position:fixed;top:0;left:-12.1rem;width:12.1rem;height:100%;-webkit-transform:translateX(0);transform:translateX(0);-webkit-transition:box-shadow .25s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:box-shadow .25s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s;transition:transform .25s cubic-bezier(.4,0,.2,1),box-shadow .25s,-webkit-transform .25s cubic-bezier(.4,0,.2,1);background-color:#fff;z-index:3}[dir=rtl] .md-sidebar--primary{right:-12.1rem;left:auto}.no-csstransforms3d .md-sidebar--primary{display:none}[data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{box-shadow:0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12),0 5px 5px -3px rgba(0,0,0,.4);-webkit-transform:translateX(12.1rem);transform:translateX(12.1rem)}[dir=rtl] [data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{-webkit-transform:translateX(-12.1rem);transform:translateX(-12.1rem)}.no-csstransforms3d [data-md-toggle=drawer]:checked~.md-container .md-sidebar--primary{display:block}.md-sidebar--primary .md-sidebar__scrollwrap{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;margin:0}.md-tabs{display:none}}@media only screen and (min-width:60em){.md-content{margin-right:12.1rem}[dir=rtl] .md-content{margin-right:0;margin-left:12.1rem}.md-header-nav__button.md-icon--search{display:none}.md-header-nav__source{display:block;width:11.7rem;max-width:11.7rem;padding-right:.6rem}[dir=rtl] .md-header-nav__source{padding-right:0;padding-left:.6rem}.md-search{padding:.2rem}.md-search__overlay{position:fixed;top:0;left:0;width:0;height:0;-webkit-transition:width 0s .25s,height 0s .25s,opacity .25s;transition:width 0s .25s,height 0s .25s,opacity .25s;background-color:rgba(0,0,0,.54);cursor:pointer}[dir=rtl] .md-search__overlay{right:0;left:auto}[data-md-toggle=search]:checked~.md-header .md-search__overlay{width:100%;height:100%;-webkit-transition:width 0s,height 0s,opacity .25s;transition:width 0s,height 0s,opacity .25s;opacity:1}.md-search__inner{position:relative;width:11.5rem;margin-right:.8rem;padding:.1rem 0;float:right;-webkit-transition:width .25s cubic-bezier(.1,.7,.1,1);transition:width .25s cubic-bezier(.1,.7,.1,1)}[dir=rtl] .md-search__inner{margin-right:0;margin-left:.8rem;float:left}.md-search__form,.md-search__input{border-radius:.1rem}.md-search__input{width:100%;height:1.8rem;padding-left:2.2rem;-webkit-transition:background-color .25s cubic-bezier(.1,.7,.1,1),color .25s cubic-bezier(.1,.7,.1,1);transition:background-color .25s cubic-bezier(.1,.7,.1,1),color .25s cubic-bezier(.1,.7,.1,1);background-color:rgba(0,0,0,.26);color:inherit;font-size:.8rem}[dir=rtl] .md-search__input{padding-right:2.2rem}.md-search__input+.md-search__icon{color:inherit}.md-search__input::-webkit-input-placeholder{color:hsla(0,0%,100%,.7)}.md-search__input::-moz-placeholder{color:hsla(0,0%,100%,.7)}.md-search__input:-ms-input-placeholder{color:hsla(0,0%,100%,.7)}.md-search__input::-ms-input-placeholder{color:hsla(0,0%,100%,.7)}.md-search__input::placeholder{color:hsla(0,0%,100%,.7)}.md-search__input:hover{background-color:hsla(0,0%,100%,.12)}[data-md-toggle=search]:checked~.md-header .md-search__input{border-radius:.1rem .1rem 0 0;background-color:#fff;color:rgba(0,0,0,.87);text-overflow:clip}[data-md-toggle=search]:checked~.md-header .md-search__input::-webkit-input-placeholder{color:rgba(0,0,0,.54)}[data-md-toggle=search]:checked~.md-header .md-search__input::-moz-placeholder{color:rgba(0,0,0,.54)}[data-md-toggle=search]:checked~.md-header .md-search__input:-ms-input-placeholder{color:rgba(0,0,0,.54)}[data-md-toggle=search]:checked~.md-header .md-search__input::-ms-input-placeholder{color:rgba(0,0,0,.54)}[data-md-toggle=search]:checked~.md-header .md-search__input+.md-search__icon,[data-md-toggle=search]:checked~.md-header .md-search__input::placeholder{color:rgba(0,0,0,.54)}.md-search__output{top:1.9rem;-webkit-transition:opacity .4s;transition:opacity .4s;opacity:0}[data-md-toggle=search]:checked~.md-header .md-search__output{box-shadow:0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12),0 3px 5px -1px rgba(0,0,0,.4);opacity:1}.md-search__scrollwrap{max-height:0}[data-md-toggle=search]:checked~.md-header .md-search__scrollwrap{max-height:75vh}.md-search__scrollwrap::-webkit-scrollbar{width:.2rem;height:.2rem}.md-search__scrollwrap::-webkit-scrollbar-thumb{background-color:rgba(0,0,0,.26)}.md-search__scrollwrap::-webkit-scrollbar-thumb:hover{background-color:#536dfe}.md-search-result__meta{padding-left:2.2rem}[dir=rtl] .md-search-result__meta{padding-right:2.2rem;padding-left:0}.md-search-result__article{padding-left:2.2rem}[dir=rtl] .md-search-result__article{padding-right:2.2rem;padding-left:.8rem}.md-sidebar--secondary{display:block;margin-left:100%;-webkit-transform:translate(-100%);transform:translate(-100%)}[dir=rtl] .md-sidebar--secondary{margin-right:100%;margin-left:0;-webkit-transform:translate(100%);transform:translate(100%)}}@media only screen and (min-width:76.25em){.md-content{margin-left:12.1rem}[dir=rtl] .md-content{margin-right:12.1rem}.md-content__inner{margin-right:1.2rem;margin-left:1.2rem}.md-header-nav__button.md-icon--menu{display:none}.md-nav[data-md-state=animate]{-webkit-transition:max-height .25s cubic-bezier(.86,0,.07,1);transition:max-height .25s cubic-bezier(.86,0,.07,1)}.md-nav__toggle~.md-nav{max-height:0;overflow:hidden}.no-js .md-nav__toggle~.md-nav{display:none}.md-nav[data-md-state=expand],.md-nav__toggle:checked~.md-nav{max-height:100%}.no-js .md-nav[data-md-state=expand],.no-js .md-nav__toggle:checked~.md-nav{display:block}.md-nav__item--nested>.md-nav>.md-nav__title{display:none}.md-nav__item--nested>.md-nav__link:after{display:inline-block;-webkit-transform-origin:.45em .45em;transform-origin:.45em .45em;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;vertical-align:-.125em}.js .md-nav__item--nested>.md-nav__link:after{-webkit-transition:-webkit-transform .4s;transition:-webkit-transform .4s;transition:transform .4s;transition:transform .4s,-webkit-transform .4s}.md-nav__item--nested .md-nav__toggle:checked~.md-nav__link:after{-webkit-transform:rotateX(180deg);transform:rotateX(180deg)}.md-search__inner{margin-right:1.2rem}[dir=rtl] .md-search__inner{margin-left:1.2rem}.md-search__scrollwrap,[data-md-toggle=search]:checked~.md-header .md-search__inner{width:34.4rem}.md-sidebar--secondary{margin-left:61rem}[dir=rtl] .md-sidebar--secondary{margin-right:61rem;margin-left:0}.md-tabs~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--nested{font-size:0;visibility:hidden}.md-tabs--active~.md-main .md-nav--primary .md-nav__title{display:block;padding:0}.md-tabs--active~.md-main .md-nav--primary .md-nav__title--site{display:none}.no-js .md-tabs--active~.md-main .md-nav--primary .md-nav{display:block}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item{font-size:0;visibility:hidden}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--nested{display:none;font-size:.7rem;overflow:auto;visibility:visible}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--nested>.md-nav__link{display:none}.md-tabs--active~.md-main .md-nav--primary>.md-nav__list>.md-nav__item--active{display:block}.md-tabs--active~.md-main .md-nav[data-md-level="1"]{max-height:none;overflow:visible}.md-tabs--active~.md-main .md-nav[data-md-level="1"]>.md-nav__list>.md-nav__item{padding-left:0}.md-tabs--active~.md-main .md-nav[data-md-level="1"] .md-nav .md-nav__title{display:none}}@media only screen and (min-width:45em){.md-footer-nav__link{width:50%}.md-footer-copyright{max-width:75%;float:left}[dir=rtl] .md-footer-copyright{float:right}.md-footer-social{padding:.6rem 0;float:right}[dir=rtl] .md-footer-social{float:left}}@media only screen and (max-width:29.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{-webkit-transform:scale(45);transform:scale(45)}}@media only screen and (min-width:30em) and (max-width:44.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{-webkit-transform:scale(60);transform:scale(60)}}@media only screen and (min-width:45em) and (max-width:59.9375em){[data-md-toggle=search]:checked~.md-header .md-search__overlay{-webkit-transform:scale(75);transform:scale(75)}}@media only screen and (min-width:60em) and (max-width:76.1875em){.md-search__scrollwrap,[data-md-toggle=search]:checked~.md-header .md-search__inner{width:23.4rem}.md-search-result__teaser{max-height:2.5rem;-webkit-line-clamp:3}} \ No newline at end of file diff --git a/site/index.html b/site/index.html index a9a0d65b686177fd41b30f139fa4692e6f9dbc49..d42277970bb80018491dfeb1b297328fafb56466 100644 --- a/site/index.html +++ b/site/index.html @@ -1,581 +1,794 @@ -<!DOCTYPE html> + +<!doctype html> <html lang="en" class="no-js"> <head> - <meta charset="utf-8" /> - <meta name="viewport" content="width=device-width,initial-scale=1" /> - <meta http-equiv="x-ua-compatible" content="ie=edge" /> + + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width,initial-scale=1"> + + <meta name="description" content="Self Data Grand Lyon Project Documentation with Markdown."> + + + + <meta name="author" content="Métropole de Lyon"> + + + <link rel="shortcut icon" href="img/self_data_grdlyon.png"> + <meta name="generator" content="mkdocs-1.1.2, mkdocs-material-6.2.3"> + + + + <title>Self Data Grand Lyon - Technical Docs</title> + + + + <link rel="stylesheet" href="assets/stylesheets/main.3b61ea93.min.css"> + + + <link rel="stylesheet" href="assets/stylesheets/palette.39b8e14a.min.css"> + + + + <meta name="theme-color" content="#ffffff"> + + + + + + + + <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> + <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> + <style>body,input{font-family:"Roboto",-apple-system,BlinkMacSystemFont,Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono",SFMono-Regular,Consolas,Menlo,monospace}</style> + + + + + <link rel="stylesheet" href="stylesheets/extra.css"> + + + + + + </head> + + + + + + + + <body dir="ltr" data-md-color-scheme="" data-md-color-primary="white" data-md-color-accent="red"> + + + + <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> + <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> + <label class="md-overlay" for="__drawer"></label> + <div data-md-component="skip"> + + </div> + <div data-md-component="announce"> + + </div> + + + +<header class="md-header" data-md-component="header"> + <nav class="md-header-nav md-grid" aria-label="Header"> + <a href="." title="Self Data Grand Lyon - Technical Docs" class="md-header-nav__button md-logo" aria-label="Self Data Grand Lyon - Technical Docs"> + + + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 003-3 3 3 0 00-3-3 3 3 0 00-3 3 3 3 0 003 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54z"/></svg> + + </a> + <label class="md-header-nav__button md-icon" for="__drawer"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M3 6h18v2H3V6m0 5h18v2H3v-2m0 5h18v2H3v-2z"/></svg> + </label> + <div class="md-header-nav__title" data-md-component="header-title"> + <div class="md-header-nav__ellipsis"> + <div class="md-header-nav__topic"> + <span class="md-ellipsis"> + Self Data Grand Lyon - Technical Docs + </span> + </div> + <div class="md-header-nav__topic"> + <span class="md-ellipsis"> + + Home + + </span> + </div> + </div> + </div> + + <label class="md-header-nav__button md-icon" for="__search"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0116 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 019.5 16 6.5 6.5 0 013 9.5 6.5 6.5 0 019.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg> + </label> + +<div class="md-search" data-md-component="search" role="dialog"> + <label class="md-search__overlay" for="__search"></label> + <div class="md-search__inner" role="search"> + <form class="md-search__form" name="search"> + <input type="text" class="md-search__input" name="query" aria-label="Search" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="search-query" data-md-state="active" required> + <label class="md-search__icon md-icon" for="__search"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9.5 3A6.5 6.5 0 0116 9.5c0 1.61-.59 3.09-1.56 4.23l.27.27h.79l5 5-1.5 1.5-5-5v-.79l-.27-.27A6.516 6.516 0 019.5 16 6.5 6.5 0 013 9.5 6.5 6.5 0 019.5 3m0 2C7 5 5 7 5 9.5S7 14 9.5 14 14 12 14 9.5 12 5 9.5 5z"/></svg> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20 11v2H8l5.5 5.5-1.42 1.42L4.16 12l7.92-7.92L13.5 5.5 8 11h12z"/></svg> + </label> + <button type="reset" class="md-search__icon md-icon" aria-label="Clear" data-md-component="search-reset" tabindex="-1"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z"/></svg> + </button> + </form> + <div class="md-search__output"> + <div class="md-search__scrollwrap" data-md-scrollfix> + <div class="md-search-result" data-md-component="search-result"> + <div class="md-search-result__meta"> + Initializing search + </div> + <ol class="md-search-result__list"></ol> + </div> + </div> + </div> + </div> +</div> + + + <div class="md-header-nav__source"> + +<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/self-data-technical-doc" title="Go to repository" class="md-source"> + <div class="md-source__icon md-icon"> + + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05L244 40.45a28.87 28.87 0 00-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 01-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 000 40.81l195.61 195.6a28.86 28.86 0 0040.8 0l194.69-194.69a28.86 28.86 0 000-40.81z"/></svg> + </div> + <div class="md-source__repository"> + Clone the Project + </div> +</a> + </div> + + </nav> +</header> + + <div class="md-container" data-md-component="container"> + + + + + <main class="md-main" data-md-component="main"> + <div class="md-main__inner md-grid"> + + + + <div class="md-sidebar md-sidebar--primary" data-md-component="navigation" > + <div class="md-sidebar__scrollwrap"> + <div class="md-sidebar__inner"> + + + + + +<nav class="md-nav md-nav--primary" aria-label="Navigation" data-md-level="0"> + <label class="md-nav__title" for="__drawer"> + <a href="." title="Self Data Grand Lyon - Technical Docs" class="md-nav__button md-logo" aria-label="Self Data Grand Lyon - Technical Docs"> + + + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 8a3 3 0 003-3 3 3 0 00-3-3 3 3 0 00-3 3 3 3 0 003 3m0 3.54C9.64 9.35 6.5 8 3 8v11c3.5 0 6.64 1.35 9 3.54 2.36-2.19 5.5-3.54 9-3.54V8c-3.5 0-6.64 1.35-9 3.54z"/></svg> - <meta - name="description" - content="LLLE Project Documentation with Markdown." - /> + </a> + Self Data Grand Lyon - Technical Docs + </label> + + <div class="md-nav__source"> + +<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/self-data-technical-doc" title="Go to repository" class="md-source"> + <div class="md-source__icon md-icon"> + + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M439.55 236.05L244 40.45a28.87 28.87 0 00-40.81 0l-40.66 40.63 51.52 51.52c27.06-9.14 52.68 16.77 43.39 43.68l49.66 49.66c34.23-11.8 61.18 31 35.47 56.69-26.49 26.49-70.21-2.87-56-37.34L240.22 199v121.85c25.3 12.54 22.26 41.85 9.08 55a34.34 34.34 0 01-48.55 0c-17.57-17.6-11.07-46.91 11.25-56v-123c-20.8-8.51-24.6-30.74-18.64-45L142.57 101 8.45 235.14a28.86 28.86 0 000 40.81l195.61 195.6a28.86 28.86 0 0040.8 0l194.69-194.69a28.86 28.86 0 000-40.81z"/></svg> + </div> + <div class="md-source__repository"> + Clone the Project + </div> +</a> + </div> + + <ul class="md-nav__list" data-md-scrollfix> + + + + - <meta name="author" content="LLLE Team" /> - <meta name="lang:clipboard.copy" content="Copy to clipboard" /> + - <meta name="lang:clipboard.copied" content="Copied to clipboard" /> - <meta name="lang:search.language" content="en" /> + <li class="md-nav__item md-nav__item--active"> + + <input class="md-nav__toggle md-toggle" data-md-toggle="toc" type="checkbox" id="__toc"> + + + <a href="." class="md-nav__link md-nav__link--active"> + Home + </a> + + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2" > + + <label class="md-nav__link" for="nav-2"> + Pilote + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Pilote" data-md-level="1"> + <label class="md-nav__title" for="nav-2"> + <span class="md-nav__icon md-icon"></span> + Pilote + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="pilote/index.md" class="md-nav__link"> + Introduction + </a> + </li> + + + </ul> + </nav> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3" > + + <label class="md-nav__link" for="nav-3"> + Ecolyo + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Ecolyo" data-md-level="1"> + <label class="md-nav__title" for="nav-3"> + <span class="md-nav__icon md-icon"></span> + Ecolyo + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/" class="md-nav__link"> + Introduction + </a> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3-2" type="checkbox" id="nav-3-2" > + + <label class="md-nav__link" for="nav-3-2"> + Getting started + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Getting started" data-md-level="2"> + <label class="md-nav__title" for="nav-3-2"> + <span class="md-nav__icon md-icon"></span> + Getting started + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/getting_started/setup_your_environment/" class="md-nav__link"> + Setup your environment + </a> + </li> - <meta name="lang:search.pipeline.stopwords" content="True" /> + + + + - <meta name="lang:search.pipeline.trimmer" content="True" /> - <meta name="lang:search.result.none" content="No matching documents" /> - <meta name="lang:search.result.one" content="1 matching document" /> + <li class="md-nav__item"> + <a href="ecolyo/getting_started/launch_local_application/" class="md-nav__link"> + Launch the application on local + </a> + </li> - <meta name="lang:search.result.other" content="# matching documents" /> + + + + - <meta name="lang:search.tokenizer" content="[\s\-]+" /> - <link rel="shortcut icon" href="assets/images/favicon.png" /> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3" /> - <title>LLLE-Ecolyo Technical Docs</title> + <li class="md-nav__item"> + <a href="ecolyo/getting_started/launch_local_konnector/" class="md-nav__link"> + Launch a konnector on local + </a> + </li> + + + </ul> + </nav> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3-3" type="checkbox" id="nav-3-3" > + + <label class="md-nav__link" for="nav-3-3"> + Project Architecture + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Project Architecture" data-md-level="2"> + <label class="md-nav__title" for="nav-3-3"> + <span class="md-nav__icon md-icon"></span> + Project Architecture + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/project_architecture/architecture/" class="md-nav__link"> + Architecture + </a> + </li> + + + + + - <link rel="stylesheet" href="assets/stylesheets/application.adb8469c.css" /> - <link - rel="stylesheet" - href="assets/stylesheets/application-palette.a8b3c06d.css" - /> - <meta name="theme-color" content="#757575" /> + <li class="md-nav__item"> + <a href="ecolyo/project_architecture/cozy/" class="md-nav__link"> + Cozy + </a> + </li> - <script src="assets/javascripts/modernizr.86422ebf.js"></script> + + + + - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin /> - <link - rel="stylesheet" - href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback" - /> - <style> - body, - input { - font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif; - } - code, - kbd, - pre { - font-family: "Roboto Mono", "Courier New", Courier, monospace; - } - </style> - <link rel="stylesheet" href="assets/fonts/material-icons.css" /> - </head> - <body - dir="ltr" - data-md-color-primary="grey" - data-md-color-accent="deep-orange" - > - <svg class="md-svg"> - <defs></defs> - </svg> - <input - class="md-toggle" - data-md-toggle="drawer" - type="checkbox" - id="__drawer" - autocomplete="off" - /> - <input - class="md-toggle" - data-md-toggle="search" - type="checkbox" - id="__search" - autocomplete="off" - /> - <label - class="md-overlay" - data-md-component="overlay" - for="__drawer" - ></label> - - <a href="#description" tabindex="0" class="md-skip"> - Skip to content + <li class="md-nav__item"> + <a href="ecolyo/project_architecture/environments/" class="md-nav__link"> + Environments </a> + </li> - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a - href="." - title="LLLE-Ecolyo Technical Docs" - aria-label="LLLE-Ecolyo Technical Docs" - class="md-header-nav__button md-logo" - > - <i class="md-icon">î Œ</i> - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label - class="md-icon md-icon--menu md-header-nav__button" - for="__drawer" - ></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div - class="md-flex__ellipsis md-header-nav__title" - data-md-component="title" - > - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - Home - </span> - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label - class="md-icon md-icon--search md-header-nav__button" - for="__search" - ></label> - - <div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input - type="text" - class="md-search__input" - aria-label="search" - name="query" - placeholder="Search" - autocapitalize="off" - autocorrect="off" - autocomplete="off" - spellcheck="false" - data-md-component="query" - data-md-state="active" - /> - <label class="md-icon md-search__icon" for="__search"></label> - <button - type="reset" - class="md-icon md-search__icon" - data-md-component="reset" - tabindex="-1" - > -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> - </div> - </div> + + + + - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - <a - href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" - title="Go to repository" - class="md-source" - data-md-source="" - > - <div class="md-source__repository"> - llle_docs - </div> - </a> - </div> - </div> - </div> - </nav> - </header> - - <div class="md-container"> - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - <div - class="md-sidebar md-sidebar--primary" - data-md-component="navigation" - > - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label - class="md-nav__title md-nav__title--site" - for="__drawer" - > - <a - href="." - title="LLLE-Ecolyo Technical Docs" - class="md-nav__button md-logo" - > - <i class="md-icon">î Œ</i> - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - <a - href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" - title="Go to repository" - class="md-source" - data-md-source="" - > - <div class="md-source__repository"> - llle_docs - </div> - </a> - </div> - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item md-nav__item--active"> - <input - class="md-toggle md-nav__toggle" - data-md-toggle="toc" - type="checkbox" - id="__toc" - /> - - <label - class="md-nav__link md-nav__link--active" - for="__toc" - > - Home - </label> - - <a - href="." - title="Home" - class="md-nav__link md-nav__link--active" - > - Home - </a> - - <nav class="md-nav md-nav--secondary"> - <label class="md-nav__title" for="__toc" - >Table of contents</label - > - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item"> - <a href="#description" class="md-nav__link"> - Description - </a> - </li> - - <li class="md-nav__item"> - <a href="#contact" class="md-nav__link"> - Contact - </a> - </li> - </ul> - </nav> - </li> - - <li class="md-nav__item md-nav__item--nested"> - <input - class="md-toggle md-nav__toggle" - data-md-toggle="nav-2" - type="checkbox" - id="nav-2" - /> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav - class="md-nav" - data-md-component="collapsible" - data-md-level="1" - > - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item"> - <a - href="architecture/architecture-home/" - title="Introduction" - class="md-nav__link" - > - Introduction - </a> - </li> - - <li class="md-nav__item"> - <a - href="architecture/client/client.md" - title="Client" - class="md-nav__link" - > - Client - </a> - </li> - - <li class="md-nav__item"> - <a - href="architecture/cozy/cozy.md" - title="Cozy" - class="md-nav__link" - > - Cozy - </a> - </li> - - <li class="md-nav__item md-nav__item--nested"> - <input - class="md-toggle md-nav__toggle" - data-md-toggle="nav-2-4" - type="checkbox" - id="nav-2-4" - /> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav - class="md-nav" - data-md-component="collapsible" - data-md-level="2" - > - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item"> - <a - href="architecture/konnectors/konnectors-intro/" - title="Introduction" - class="md-nav__link" - > - Introduction - </a> - </li> - - <li class="md-nav__item"> - <a - href="architecture/konnectors/enedis/" - title="Enedis" - class="md-nav__link" - > - Enedis - </a> - </li> - - <li class="md-nav__item"> - <a - href="architecture/konnectors/egl/" - title="EGL" - class="md-nav__link" - > - EGL - </a> - </li> - - <li class="md-nav__item"> - <a - href="architecture/konnectors/gdrf.md" - title="GDRF - Celery" - class="md-nav__link" - > - GDRF - Celery - </a> - </li> - </ul> - </nav> - </li> - </ul> - </nav> - </li> - - <li class="md-nav__item md-nav__item--nested"> - <input - class="md-toggle md-nav__toggle" - data-md-toggle="nav-3" - type="checkbox" - id="nav-3" - /> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav - class="md-nav" - data-md-component="collapsible" - data-md-level="1" - > - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item"> - <a - href="miscellaneous/gitflow/" - title="Gitflow" - class="md-nav__link" - > - Gitflow - </a> - </li> - - <li class="md-nav__item"> - <a - href="miscellaneous/glossary/" - title="Glossary" - class="md-nav__link" - > - Glossary - </a> - </li> - - <li class="md-nav__item"> - <a - href="miscellaneous/tools/" - title="Tools" - class="md-nav__link" - > - Tools - </a> - </li> - - <li class="md-nav__item"> - <a - href="miscellaneous/devenv/" - title="Environment" - class="md-nav__link" - > - Environment - </a> - </li> - - <li class="md-nav__item"> - <a - href="miscellaneous/vscode-settings/" - title="VSCode" - class="md-nav__link" - > - VSCode - </a> - </li> - </ul> - </nav> - </li> - </ul> - </nav> - </div> - </div> - </div> - <div class="md-sidebar md-sidebar--secondary" data-md-component="toc"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--secondary"> - <label class="md-nav__title" for="__toc" - >Table of contents</label - > - <ul class="md-nav__list" data-md-scrollfix> - <li class="md-nav__item"> - <a href="#description" class="md-nav__link"> - Description - </a> - </li> - - <li class="md-nav__item"> - <a href="#contact" class="md-nav__link"> - Contact - </a> - </li> - </ul> - </nav> - </div> - </div> - </div> + <li class="md-nav__item"> + <a href="ecolyo/project_architecture/doctypes/" class="md-nav__link"> + DocTypes + </a> + </li> + + + </ul> + </nav> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3-4" type="checkbox" id="nav-3-4" > + + <label class="md-nav__link" for="nav-3-4"> + Application + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Application" data-md-level="2"> + <label class="md-nav__title" for="nav-3-4"> + <span class="md-nav__icon md-icon"></span> + Application + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/application/description/" class="md-nav__link"> + Description + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/application/scaffolding/" class="md-nav__link"> + Scaffolding + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/application/services/" class="md-nav__link"> + Services + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/application/gitflow/" class="md-nav__link"> + Gitflow + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/application/deploy/" class="md-nav__link"> + Deploy + </a> + </li> + + + </ul> + </nav> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-3-5" type="checkbox" id="nav-3-5" > + + <label class="md-nav__link" for="nav-3-5"> + Konnectors + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Konnectors" data-md-level="2"> + <label class="md-nav__title" for="nav-3-5"> + <span class="md-nav__icon md-icon"></span> + Konnectors + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/konnectors/enedis/" class="md-nav__link"> + Enedis + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/konnectors/grdf/" class="md-nav__link"> + GRDF + </a> + </li> + + + + + + + + + <li class="md-nav__item"> + <a href="ecolyo/konnectors/egl/" class="md-nav__link"> + Eau du Grand Lyon + </a> + </li> + + + </ul> + </nav> + </li> + + + </ul> + </nav> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-4" type="checkbox" id="nav-4" > + + <label class="md-nav__link" for="nav-4"> + Proxy + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Proxy" data-md-level="1"> + <label class="md-nav__title" for="nav-4"> + <span class="md-nav__icon md-icon"></span> + Proxy + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="proxy/description/" class="md-nav__link"> + Description + </a> + </li> + + + + + + + + + + <li class="md-nav__item md-nav__item--nested"> + + + <input class="md-nav__toggle md-toggle" data-md-toggle="nav-4-2" type="checkbox" id="nav-4-2" > + + <label class="md-nav__link" for="nav-4-2"> + Use cases + <span class="md-nav__icon md-icon"></span> + </label> + <nav class="md-nav" aria-label="Use cases" data-md-level="2"> + <label class="md-nav__title" for="nav-4-2"> + <span class="md-nav__icon md-icon"></span> + Use cases + </label> + <ul class="md-nav__list" data-md-scrollfix> + + + + + + + + + <li class="md-nav__item"> + <a href="proxy/use_cases/enedis/" class="md-nav__link"> + Enedis + </a> + </li> + + + + + + + + <li class="md-nav__item"> + <a href="proxy/use_cases/grdfadict/" class="md-nav__link"> + Grdf Adict + </a> + </li> + + + </ul> + </nav> + </li> + + + </ul> + </nav> + </li> + + + </ul> +</nav> + </div> + </div> + </div> + + + <div class="md-content"> <article class="md-content__inner md-typeset"> - <h1>Home</h1> - - <h2 id="description">Description</h2> - <p> - LLLE - Ecolyo is a multi-fluid application solution towards - users of grand lyon metropolis to monitor and optimize the - energy consumption of their home. It is a multi-device - application with a mobile first approach. - </p> - <div class="admonition info"> - <p> - If you are a new developper tasked to work on this project, - check the - <a href="miscellaneous/tools/">recommended tools</a> and setup - your <a href="miscellaneous/devenv/">environment</a>. Then we - also suggest you to get familiar with the - <a href="miscellaneous/glossary/">vocabulary</a> used to build - this app. - </p> - </div> - <h2 id="contact">Contact</h2> + + + + <h1>Home</h1> + + <p><img alt="selfdata" class="center" src="/img/self_data_grdlyon.png" /></p> +<p>The Self-Data Grand Lyon technical doc covers projects developped by the Grandlyon Metropolis in cooperation with <a href="https://cozy.io/fr/">Cozy Cloud</a>.</p> +<p><img alt="europe" class="inline-center-left" src="/img/partners/europe.png" /> +<img alt="auvergne" src="/img/partners/auvergne.png" /></p> + + + + + + + </article> </div> </div> </main> - - <footer class="md-footer"> - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - <a - href="architecture/architecture-home/" - title="Introduction" - class="md-flex md-footer-nav__link md-footer-nav__link--next" - rel="next" - > - <div - class="md-flex__cell md-flex__cell--stretch md-footer-nav__title" - > - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Next - </span> - Introduction + + +<footer class="md-footer"> + + <div class="md-footer-nav"> + <nav class="md-footer-nav__inner md-grid" aria-label="Footer"> + + + <a href="ecolyo/" class="md-footer-nav__link md-footer-nav__link--next" rel="next"> + <div class="md-footer-nav__title"> + <div class="md-ellipsis"> + <span class="md-footer-nav__direction"> + Next </span> + Introduction </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i - class="md-icon md-icon--arrow-forward md-footer-nav__button" - ></i> - </div> - </a> - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener" - >MkDocs</a - > - and - <a - href="https://squidfunk.github.io/mkdocs-material/" - target="_blank" - rel="noopener" - > - Material for MkDocs</a - > </div> - </div> - </div> - </footer> + <div class="md-footer-nav__button md-icon"> + <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M4 11v2h12l-5.5 5.5 1.42 1.42L19.84 12l-7.92-7.92L10.5 5.5 16 11H4z"/></svg> + </div> + </a> + + </nav> </div> - - <script src="assets/javascripts/application.c33a9706.js"></script> - - <script> - app.initialize({ version: "1.1", url: { base: "." } }); - </script> + + <div class="md-footer-meta md-typeset"> + <div class="md-footer-meta__inner md-grid"> + <div class="md-footer-copyright"> + + Made with + <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> + Material for MkDocs + </a> + </div> + + </div> + </div> +</footer> + + </div> + + <script src="assets/javascripts/vendor.08c56446.min.js"></script> + <script src="assets/javascripts/bundle.6ced434e.min.js"></script><script id="__lang" type="application/json">{"clipboard.copy": "Copy to clipboard", "clipboard.copied": "Copied to clipboard", "search.config.lang": "en", "search.config.pipeline": "trimmer, stopWordFilter", "search.config.separator": "[\\s\\-]+", "search.placeholder": "Search", "search.result.placeholder": "Type to start searching", "search.result.none": "No matching documents", "search.result.one": "1 matching document", "search.result.other": "# matching documents", "search.result.more.one": "1 more on this page", "search.result.more.other": "# more on this page", "search.result.term.missing": "Missing"}</script> + + <script> + app = initialize({ + base: ".", + features: [], + search: Object.assign({ + worker: "assets/javascripts/worker/search.8c7e0a7e.min.js" + }, typeof search !== "undefined" && search) + }) + </script> + + </body> -</html> +</html> \ No newline at end of file diff --git a/site/miscellaneous/devenv/index.html b/site/miscellaneous/devenv/index.html deleted file mode 100644 index ff487df033f9f361ee2af327ad82843626f7f45a..0000000000000000000000000000000000000000 --- a/site/miscellaneous/devenv/index.html +++ /dev/null @@ -1,534 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Environment - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Environment - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2"> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4"> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3" checked> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> - - - <a href="./" title="Environment" class="md-nav__link md-nav__link--active"> - Environment - </a> - - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Environment</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - - <a href="../tools/" title="Tools" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> - </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Previous - </span> - Tools - </span> - </div> - </a> - - - <a href="../vscode-settings/" title="VSCode" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Next - </span> - VSCode - </span> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> - </div> - </a> - - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/miscellaneous/gitflow/index.html b/site/miscellaneous/gitflow/index.html deleted file mode 100644 index 789ca6610c27b9e53a557757a4d975912a204aec..0000000000000000000000000000000000000000 --- a/site/miscellaneous/gitflow/index.html +++ /dev/null @@ -1,534 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Gitflow - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Gitflow - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2"> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4"> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3" checked> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - - - <li class="md-nav__item md-nav__item--active"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> - - - <a href="./" title="Gitflow" class="md-nav__link md-nav__link--active"> - Gitflow - </a> - - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Gitflow</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - - <a href="../../architecture/konnectors/egl/" title="EGL" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> - </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Previous - </span> - EGL - </span> - </div> - </a> - - - <a href="../glossary/" title="Glossary" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Next - </span> - Glossary - </span> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> - </div> - </a> - - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/miscellaneous/glossary/index.html b/site/miscellaneous/glossary/index.html deleted file mode 100644 index 1261fa0584abca5dc7b3c7805657d22f8056960b..0000000000000000000000000000000000000000 --- a/site/miscellaneous/glossary/index.html +++ /dev/null @@ -1,534 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Glossary - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Glossary - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2"> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4"> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3" checked> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> - - - <a href="./" title="Glossary" class="md-nav__link md-nav__link--active"> - Glossary - </a> - - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Glossary</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - - <a href="../gitflow/" title="Gitflow" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> - </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Previous - </span> - Gitflow - </span> - </div> - </a> - - - <a href="../tools/" title="Tools" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Next - </span> - Tools - </span> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> - </div> - </a> - - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/miscellaneous/tools/index.html b/site/miscellaneous/tools/index.html deleted file mode 100644 index 0de2bf1b2b152000241f6fbf824775a689b9f7fa..0000000000000000000000000000000000000000 --- a/site/miscellaneous/tools/index.html +++ /dev/null @@ -1,534 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>Tools - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - Tools - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2"> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4"> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3" checked> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> - - - <a href="./" title="Tools" class="md-nav__link md-nav__link--active"> - Tools - </a> - - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../vscode-settings/" title="VSCode" class="md-nav__link"> - VSCode - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>Tools</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - - <a href="../glossary/" title="Glossary" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> - </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Previous - </span> - Glossary - </span> - </div> - </a> - - - <a href="../devenv/" title="Environment" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Next - </span> - Environment - </span> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> - </div> - </a> - - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/miscellaneous/vscode-settings/index.html b/site/miscellaneous/vscode-settings/index.html deleted file mode 100644 index db446e7a57be6057dc9b06ddd89863bc42cc2053..0000000000000000000000000000000000000000 --- a/site/miscellaneous/vscode-settings/index.html +++ /dev/null @@ -1,520 +0,0 @@ - - - - -<!doctype html> -<html lang="en" class="no-js"> - <head> - - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width,initial-scale=1"> - <meta http-equiv="x-ua-compatible" content="ie=edge"> - - <meta name="description" content="LLLE Project Documentation with Markdown."> - - - - <meta name="author" content="LLLE Team"> - - - <meta name="lang:clipboard.copy" content="Copy to clipboard"> - - <meta name="lang:clipboard.copied" content="Copied to clipboard"> - - <meta name="lang:search.language" content="en"> - - <meta name="lang:search.pipeline.stopwords" content="True"> - - <meta name="lang:search.pipeline.trimmer" content="True"> - - <meta name="lang:search.result.none" content="No matching documents"> - - <meta name="lang:search.result.one" content="1 matching document"> - - <meta name="lang:search.result.other" content="# matching documents"> - - <meta name="lang:search.tokenizer" content="[\s\-]+"> - - <link rel="shortcut icon" href="../../assets/images/favicon.png"> - <meta name="generator" content="mkdocs-1.1, mkdocs-material-4.6.3"> - - - - <title>VSCode - LLLE-Ecolyo Technical Docs</title> - - - - <link rel="stylesheet" href="../../assets/stylesheets/application.adb8469c.css"> - - <link rel="stylesheet" href="../../assets/stylesheets/application-palette.a8b3c06d.css"> - - - - - <meta name="theme-color" content="#757575"> - - - - <script src="../../assets/javascripts/modernizr.86422ebf.js"></script> - - - - <link href="https://fonts.gstatic.com" rel="preconnect" crossorigin> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,400i,700%7CRoboto+Mono&display=fallback"> - <style>body,input{font-family:"Roboto","Helvetica Neue",Helvetica,Arial,sans-serif}code,kbd,pre{font-family:"Roboto Mono","Courier New",Courier,monospace}</style> - - - <link rel="stylesheet" href="../../assets/fonts/material-icons.css"> - - - - - - - </head> - - - - <body dir="ltr" data-md-color-primary="grey" data-md-color-accent="deep-orange"> - - <svg class="md-svg"> - <defs> - - - </defs> - </svg> - <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off"> - <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off"> - <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> - - - <header class="md-header" data-md-component="header"> - <nav class="md-header-nav md-grid"> - <div class="md-flex"> - <div class="md-flex__cell md-flex__cell--shrink"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" aria-label="LLLE-Ecolyo Technical Docs" class="md-header-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> - </div> - <div class="md-flex__cell md-flex__cell--stretch"> - <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> - - <span class="md-header-nav__topic"> - LLLE-Ecolyo Technical Docs - </span> - <span class="md-header-nav__topic"> - - VSCode - - </span> - - </div> - </div> - <div class="md-flex__cell md-flex__cell--shrink"> - - <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> - -<div class="md-search" data-md-component="search" role="dialog"> - <label class="md-search__overlay" for="__search"></label> - <div class="md-search__inner" role="search"> - <form class="md-search__form" name="search"> - <input type="text" class="md-search__input" aria-label="search" name="query" placeholder="Search" autocapitalize="off" autocorrect="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> - <label class="md-icon md-search__icon" for="__search"></label> - <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> -  - </button> - </form> - <div class="md-search__output"> - <div class="md-search__scrollwrap" data-md-scrollfix> - <div class="md-search-result" data-md-component="result"> - <div class="md-search-result__meta"> - Type to start searching - </div> - <ol class="md-search-result__list"></ol> - </div> - </div> - </div> - </div> -</div> - - </div> - - <div class="md-flex__cell md-flex__cell--shrink"> - <div class="md-header-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - </div> - - </div> - </nav> -</header> - - <div class="md-container"> - - - - - <main class="md-main" role="main"> - <div class="md-main__inner md-grid" data-md-component="container"> - - - <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> - <div class="md-sidebar__scrollwrap"> - <div class="md-sidebar__inner"> - <nav class="md-nav md-nav--primary" data-md-level="0"> - <label class="md-nav__title md-nav__title--site" for="__drawer"> - <a href="../.." title="LLLE-Ecolyo Technical Docs" class="md-nav__button md-logo"> - - <i class="md-icon">î Œ</i> - - </a> - LLLE-Ecolyo Technical Docs - </label> - - <div class="md-nav__source"> - - - - - -<a href="https://forge.grandlyon.com/web-et-numerique/llle_project/llle_docs" title="Go to repository" class="md-source" data-md-source=""> - - <div class="md-source__repository"> - llle_docs - </div> -</a> - </div> - - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - <li class="md-nav__item"> - <a href="../.." title="Home" class="md-nav__link"> - Home - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2" type="checkbox" id="nav-2"> - - <label class="md-nav__link" for="nav-2"> - Project Architecture - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-2"> - Project Architecture - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/architecture-home/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/client/client.md" title="Client" class="md-nav__link"> - Client - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/cozy/cozy.md" title="Cozy" class="md-nav__link"> - Cozy - </a> - </li> - - - - - - - - <li class="md-nav__item md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-2-4" type="checkbox" id="nav-2-4"> - - <label class="md-nav__link" for="nav-2-4"> - Konnectors - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="2"> - <label class="md-nav__title" for="nav-2-4"> - Konnectors - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/konnectors-intro/" title="Introduction" class="md-nav__link"> - Introduction - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/enedis/" title="Enedis" class="md-nav__link"> - Enedis - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/egl/" title="EGL" class="md-nav__link"> - EGL - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../../architecture/konnectors/gdrf.md" title="GDRF - Celery" class="md-nav__link"> - GDRF - Celery - </a> - </li> - - - </ul> - </nav> - </li> - - - </ul> - </nav> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active md-nav__item--nested"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="nav-3" type="checkbox" id="nav-3" checked> - - <label class="md-nav__link" for="nav-3"> - About - </label> - <nav class="md-nav" data-md-component="collapsible" data-md-level="1"> - <label class="md-nav__title" for="nav-3"> - About - </label> - <ul class="md-nav__list" data-md-scrollfix> - - - - - - - - <li class="md-nav__item"> - <a href="../gitflow/" title="Gitflow" class="md-nav__link"> - Gitflow - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../glossary/" title="Glossary" class="md-nav__link"> - Glossary - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../tools/" title="Tools" class="md-nav__link"> - Tools - </a> - </li> - - - - - - - - <li class="md-nav__item"> - <a href="../devenv/" title="Environment" class="md-nav__link"> - Environment - </a> - </li> - - - - - - - - - - <li class="md-nav__item md-nav__item--active"> - - <input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc"> - - - <a href="./" title="VSCode" class="md-nav__link md-nav__link--active"> - VSCode - </a> - - </li> - - - </ul> - </nav> - </li> - - - </ul> -</nav> - </div> - </div> - </div> - - - - <div class="md-content"> - <article class="md-content__inner md-typeset"> - - - - <h1>VSCode</h1> - - - - - - - - - - - - - </article> - </div> - </div> - </main> - - -<footer class="md-footer"> - - <div class="md-footer-nav"> - <nav class="md-footer-nav__inner md-grid"> - - <a href="../devenv/" title="Environment" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> - <div class="md-flex__cell md-flex__cell--shrink"> - <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> - </div> - <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> - <span class="md-flex__ellipsis"> - <span class="md-footer-nav__direction"> - Previous - </span> - Environment - </span> - </div> - </a> - - - </nav> - </div> - - <div class="md-footer-meta md-typeset"> - <div class="md-footer-meta__inner md-grid"> - <div class="md-footer-copyright"> - - powered by - <a href="https://www.mkdocs.org" target="_blank" rel="noopener">MkDocs</a> - and - <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener"> - Material for MkDocs</a> - </div> - - </div> - </div> -</footer> - - </div> - - <script src="../../assets/javascripts/application.c33a9706.js"></script> - - <script>app.initialize({version:"1.1",url:{base:"../.."}})</script> - - - </body> -</html> \ No newline at end of file diff --git a/site/search/search_index.json b/site/search/search_index.json index 3bb6bc3a4dda0df639749aba25b439eb796e957b..44a97fd46b161ecbdee15aa072176705bfcf427c 100644 --- a/site/search/search_index.json +++ b/site/search/search_index.json @@ -1 +1 @@ -{"config":{"lang":["en"],"prebuild_index":false,"separator":"[\\s\\-]+"},"docs":[{"location":"","text":"Description LLLE - Ecolyo is a multi-fluid application solution towards users of grand lyon metropolis to monitor and optimize the energy consumption of their home. It is a multi-device application with a mobile first approach. If you are a new developper tasked to work on this project, check the recommended tools and setup your environment . Then we also suggest you to get familiar with the vocabulary used to build this app. Contact","title":"Home"},{"location":"#description","text":"LLLE - Ecolyo is a multi-fluid application solution towards users of grand lyon metropolis to monitor and optimize the energy consumption of their home. It is a multi-device application with a mobile first approach. If you are a new developper tasked to work on this project, check the recommended tools and setup your environment . Then we also suggest you to get familiar with the vocabulary used to build this app.","title":"Description"},{"location":"#contact","text":"","title":"Contact"},{"location":"architecture/architecture-home/","text":"","title":"Introduction"},{"location":"architecture/client/","text":"","title":"Client"},{"location":"architecture/cozy/","text":"","title":"Cozy"},{"location":"architecture/konnectors/egl/","text":"","title":"EGL"},{"location":"architecture/konnectors/enedis/","text":"","title":"Enedis"},{"location":"architecture/konnectors/grdf/","text":"","title":"Grdf"},{"location":"architecture/konnectors/konnectors-intro/","text":"","title":"Introduction"},{"location":"miscellaneous/devenv/","text":"","title":"Environment"},{"location":"miscellaneous/gitflow/","text":"","title":"Gitflow"},{"location":"miscellaneous/glossary/","text":"","title":"Glossary"},{"location":"miscellaneous/tools/","text":"","title":"Tools"},{"location":"miscellaneous/vscode-settings/","text":"","title":"VSCode"}]} \ No newline at end of file +{"config":{"lang":["en"],"min_search_length":3,"prebuild_index":false,"separator":"[\\s\\-]+"},"docs":[{"location":"","text":"The Self-Data Grand Lyon technical doc covers projects developped by the Grandlyon Metropolis in cooperation with Cozy Cloud .","title":"Home"},{"location":"ecolyo/","text":"LLLE - Ecolyo is a multi-fluid application solution towards users of the grand lyon metropolis to monitor and optimize their energy consumption. If you are a new developper tasked to work on this project, check the setup your environment and launch the application on local to start the application. Repository Ecolyo gitlab repository","title":"Introduction"},{"location":"ecolyo/#repository","text":"Ecolyo gitlab repository","title":"Repository"},{"location":"ecolyo/application/deploy/","text":"Section under Construction This section will show you how to deploy your project on different environments. Setup First of all you'll need to install MobaXterm in order to connect to the server. Then, if your're on Linux you can skip the following section, otherwise if you are on Windows you'll have to install Windows Subsystem for Linux (WSL) since the deployment of the app is not working with windows commands. Install WSL First open Powershell as administrator and launch the following command : dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart This command will install WSL on your computer. After this, you'll need to reboot . Install your Linux distribution After reboot, open the microsoft store and install the distribution of your choice (for example : Ubuntu 20.04 LTS). Once it's done, open it and after a few minutes you'll be prompted for the creation of a user account. To make sure it's correctly installed and working, you can open Powershell and paste the following command : wsl.exe --list --running Now you should see the name of your distribution in the list. Setup your distribution Start Up Updating the packages list by typing : sudo apt update Install the nodejs using the apt package manager sudo apt install To verify the Installation execute the following command : nodejs --version To be able to download npm package, you need to install the npm, the Node.js package manager. To do so type : sudo apt install npm To verify the npm Install check using the command : npm --version To Downlaod and Setup Yarn sudo apt install yarn To check the Installed version of Yarn : yarn --version Now you'll probably be in version 0.23+git, if so you'll have to upgrade to 1.22 to make everything work properly. In order to achieve this, you'll have to launch several commands : sudo apt-get remove cmdtest sudo apt autoremove sudo apt-get update sudo apt install curl -y curl -o- -L https://yarnpkg.com/install.sh | bash source ~/.bashrc Now you should be at least in version ^1.22 and ready to go on. Configuration of MobaXterm First open a new session and connect to the distant host 192.168.62.31 . Don't forget to add the path to the private key in the advanced SSH settings. Deploy Ecolyo Deploy on Alpha Windows First open your Ubuntu terminal, and clone the project in the repertory of your choice. Once you've selected the branch of you want to deploy, write the following command : yarn build After this, you can launch the deployment. In order to deploy on ecolyo-dev-build (development environment) use the command : yarn deploy-dev If you want to deploy on the ecolyo-build environment, use : yarn deploy To deploy on the llle-build environment, you'll have to drag and drop your build folder directly in llle-build using MobaXterm. Linux From your current branch, run yarn build then sudo yarn deploy_dev to instantly deploy your working branch on the latest tagged Ecolyo container registry.","title":"Deploy"},{"location":"ecolyo/application/deploy/#setup","text":"First of all you'll need to install MobaXterm in order to connect to the server. Then, if your're on Linux you can skip the following section, otherwise if you are on Windows you'll have to install Windows Subsystem for Linux (WSL) since the deployment of the app is not working with windows commands.","title":"Setup"},{"location":"ecolyo/application/deploy/#install-wsl","text":"First open Powershell as administrator and launch the following command : dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart This command will install WSL on your computer. After this, you'll need to reboot .","title":"Install WSL"},{"location":"ecolyo/application/deploy/#install-your-linux-distribution","text":"After reboot, open the microsoft store and install the distribution of your choice (for example : Ubuntu 20.04 LTS). Once it's done, open it and after a few minutes you'll be prompted for the creation of a user account. To make sure it's correctly installed and working, you can open Powershell and paste the following command : wsl.exe --list --running Now you should see the name of your distribution in the list.","title":"Install your Linux distribution"},{"location":"ecolyo/application/deploy/#setup-your-distribution","text":"Start Up Updating the packages list by typing : sudo apt update Install the nodejs using the apt package manager sudo apt install To verify the Installation execute the following command : nodejs --version To be able to download npm package, you need to install the npm, the Node.js package manager. To do so type : sudo apt install npm To verify the npm Install check using the command : npm --version To Downlaod and Setup Yarn sudo apt install yarn To check the Installed version of Yarn : yarn --version Now you'll probably be in version 0.23+git, if so you'll have to upgrade to 1.22 to make everything work properly. In order to achieve this, you'll have to launch several commands : sudo apt-get remove cmdtest sudo apt autoremove sudo apt-get update sudo apt install curl -y curl -o- -L https://yarnpkg.com/install.sh | bash source ~/.bashrc Now you should be at least in version ^1.22 and ready to go on.","title":"Setup your distribution"},{"location":"ecolyo/application/deploy/#configuration-of-mobaxterm","text":"First open a new session and connect to the distant host 192.168.62.31 . Don't forget to add the path to the private key in the advanced SSH settings.","title":"Configuration of MobaXterm"},{"location":"ecolyo/application/deploy/#deploy-ecolyo","text":"","title":"Deploy Ecolyo"},{"location":"ecolyo/application/deploy/#deploy-on-alpha","text":"","title":"Deploy on Alpha"},{"location":"ecolyo/application/deploy/#windows","text":"First open your Ubuntu terminal, and clone the project in the repertory of your choice. Once you've selected the branch of you want to deploy, write the following command : yarn build After this, you can launch the deployment. In order to deploy on ecolyo-dev-build (development environment) use the command : yarn deploy-dev If you want to deploy on the ecolyo-build environment, use : yarn deploy To deploy on the llle-build environment, you'll have to drag and drop your build folder directly in llle-build using MobaXterm.","title":"Windows"},{"location":"ecolyo/application/deploy/#linux","text":"From your current branch, run yarn build then sudo yarn deploy_dev to instantly deploy your working branch on the latest tagged Ecolyo container registry.","title":"Linux"},{"location":"ecolyo/application/description/","text":"Section under Construction Ecolyo is a Cozy application that allows users to connect their energy accounts such as EGL , ENEDIS and GRDF , using cozy konnectors","title":"Description"},{"location":"ecolyo/application/gitflow/","text":"Section under Construction Initialize Create a new projet in gitlab and take note of its url Protecting Master Branch On the gitlab page of your project go to Settings/Repository in the Protected Branches section. Select the Master branch and set allow to merge to Master and allow to push to No one This will prevent anyone to push on the master branch, the only way to add code to the branch will be using merge requests. Setting Development Branch Retrieve the project on your computer, open a command line and execute. git clone https://forge.grandlyon.com/web-et-numerique/llle.git Create the development branch git checkout -b dev Init your project and then type any time you want to commit changes: git add . git commit -m \"Commit changes\" git push origin dev Start Developing For any other development you should create a branch from the development branch. First make sure to be on the dev branch, type: git branch to see your current branch Conventional Commits The commit contains the following structural types : - fix - feature In our team organisation we are using IceScrum to keep track of our User Stories (US). Each US is identified by a number. In order to easily identify the commit that refers to the US, a feature branch name should follow this structure: features/<number of the User Story>-<title_of_the_user_story> You can create the branch by typing: git checkout -b features/<number of the User Story>-<title_of_the_user_story> Note that the feature type is the only one with a dedicated folder (features/-US). Each fix branch should be named as the following fix-\\<title_of_the_fix> . You can create the branch by typing: git checkout -b fix-<title_of_the_fix> Breaking Change Appends a ! before the title of the commit to notify that a breaking change has happened. Give a solid description of the changes as well. Types other than fix and feature are allowed, for example build , chore , ci , docs , style , refactor , perf , test and others. add tag git tag -a 1.0.0 -m \"complementary message\" Gitflow Scheme","title":"Gitflow"},{"location":"ecolyo/application/gitflow/#initialize","text":"Create a new projet in gitlab and take note of its url","title":"Initialize"},{"location":"ecolyo/application/gitflow/#protecting-master-branch","text":"On the gitlab page of your project go to Settings/Repository in the Protected Branches section. Select the Master branch and set allow to merge to Master and allow to push to No one This will prevent anyone to push on the master branch, the only way to add code to the branch will be using merge requests.","title":"Protecting Master Branch"},{"location":"ecolyo/application/gitflow/#setting-development-branch","text":"Retrieve the project on your computer, open a command line and execute. git clone https://forge.grandlyon.com/web-et-numerique/llle.git Create the development branch git checkout -b dev Init your project and then type any time you want to commit changes: git add . git commit -m \"Commit changes\" git push origin dev","title":"Setting Development Branch"},{"location":"ecolyo/application/gitflow/#start-developing","text":"For any other development you should create a branch from the development branch. First make sure to be on the dev branch, type: git branch to see your current branch","title":"Start Developing"},{"location":"ecolyo/application/gitflow/#conventional-commits","text":"The commit contains the following structural types : - fix - feature In our team organisation we are using IceScrum to keep track of our User Stories (US). Each US is identified by a number. In order to easily identify the commit that refers to the US, a feature branch name should follow this structure: features/<number of the User Story>-<title_of_the_user_story> You can create the branch by typing: git checkout -b features/<number of the User Story>-<title_of_the_user_story> Note that the feature type is the only one with a dedicated folder (features/-US). Each fix branch should be named as the following fix-\\<title_of_the_fix> . You can create the branch by typing: git checkout -b fix-<title_of_the_fix> Breaking Change Appends a ! before the title of the commit to notify that a breaking change has happened. Give a solid description of the changes as well. Types other than fix and feature are allowed, for example build , chore , ci , docs , style , refactor , perf , test and others. add tag git tag -a 1.0.0 -m \"complementary message\"","title":"Conventional Commits"},{"location":"ecolyo/application/gitflow/#gitflow-scheme","text":"","title":"Gitflow Scheme"},{"location":"ecolyo/application/scaffolding/","text":"In this section, you will find information about the project file structure and the purpose of the main folders. Source Files Folder/File Purpose assets The application's assets, contains fonts, svg and png files components/CommonKit In this folder you'll find global components such as Buttons, Cards, Icons, etc... Many of these components are overrided material-ui components components/ContainerComponents In this folder you'll find parent components which calls chlidren Content Components components/ContentComponents In this folder you'll find every content component that are called by Container Components components/Contexts This folder contains the component used to set the context of the application components/Hooks This folder contains the hooks of the application App.jsx The root component, it calls the Container component ' ViewContainer ' which is our main component db In this folder, you'll find JSON data used for challenges, ecogestures, and the FAQ. doctypes This folder contains the cozy doctypes, you can see more on Cozy Documentation enum This folder contains enums for Fluid types, Screen types, and Timesteps. locales This folder contains JSON data used by the translation system i18n provided by Cozy-ui services Here you'll find all the services styles The styles folder you'll find a base folder that contains our variables and a components folder that contains components styles targets utils In this folder you'll find utilitaries methods Configuration Files Folder/File Purpose .eslintrc.js Config file for ESLint gitlab-ci.yml Config file used for Gitlab continuous integration .prettierrc Config file for Prettier extension config.json Config file for fluid types jest.config.js Config file used by Jest for testing the application manifest.webapp Manifest of the application, used by cozy for the managment of permissions, you can add permissions for doctypes there tsconfig.json Config file for TypeScript","title":"Scaffolding"},{"location":"ecolyo/application/scaffolding/#source-files","text":"Folder/File Purpose assets The application's assets, contains fonts, svg and png files components/CommonKit In this folder you'll find global components such as Buttons, Cards, Icons, etc... Many of these components are overrided material-ui components components/ContainerComponents In this folder you'll find parent components which calls chlidren Content Components components/ContentComponents In this folder you'll find every content component that are called by Container Components components/Contexts This folder contains the component used to set the context of the application components/Hooks This folder contains the hooks of the application App.jsx The root component, it calls the Container component ' ViewContainer ' which is our main component db In this folder, you'll find JSON data used for challenges, ecogestures, and the FAQ. doctypes This folder contains the cozy doctypes, you can see more on Cozy Documentation enum This folder contains enums for Fluid types, Screen types, and Timesteps. locales This folder contains JSON data used by the translation system i18n provided by Cozy-ui services Here you'll find all the services styles The styles folder you'll find a base folder that contains our variables and a components folder that contains components styles targets utils In this folder you'll find utilitaries methods","title":"Source Files"},{"location":"ecolyo/application/scaffolding/#configuration-files","text":"Folder/File Purpose .eslintrc.js Config file for ESLint gitlab-ci.yml Config file used for Gitlab continuous integration .prettierrc Config file for Prettier extension config.json Config file for fluid types jest.config.js Config file used by Jest for testing the application manifest.webapp Manifest of the application, used by cozy for the managment of permissions, you can add permissions for doctypes there tsconfig.json Config file for TypeScript","title":"Configuration Files"},{"location":"ecolyo/application/services/","text":"Section under Construction Cron Services - Monthly Report In order to build an automated task within our cozy-stack, we can create services which are javascript files called from a trigger job. On Ecolyo, we add a trigger that is launched every month with a cron attribute. On that trigger we link a .js script then we instanciate this script with cozy-client. Service.js Manifest Config Cron Definition cozy-stack Testing","title":"Services"},{"location":"ecolyo/application/services/#cron-services-monthly-report","text":"In order to build an automated task within our cozy-stack, we can create services which are javascript files called from a trigger job. On Ecolyo, we add a trigger that is launched every month with a cron attribute. On that trigger we link a .js script then we instanciate this script with cozy-client.","title":"Cron Services - Monthly Report"},{"location":"ecolyo/application/services/#servicejs","text":"","title":"Service.js"},{"location":"ecolyo/application/services/#manifest-config","text":"Cron Definition cozy-stack","title":"Manifest Config"},{"location":"ecolyo/application/services/#testing","text":"","title":"Testing"},{"location":"ecolyo/functionalities/challenge/","text":"Section under Construction","title":"Challenge"},{"location":"ecolyo/getting_started/launch_local_application/","text":"Section under Construction This section will allow you to launch a proper local environment of the Ecolyo application Initialisation of the project Clone the project repository Use following command in your favorite terminal to clone the projet: git clone https://forge.grandlyon.com/web-et-numerique/llle_project/ecolyo.git User settings Open the project with VSCode and add the following code into .vscode/settings.json: { \"workbench.colorCustomizations\": { /* Put anything you like here */ }, \"editor.snippetSuggestions\": \"top\", \"editor.tabSize\": 2, \"editor.formatOnSave\": true, \"diffEditor.ignoreTrimWhitespace\": false, \"window.zoomLevel\": 0, \"gitlens.advanced.messages\": { \"suppressShowKeyBindingsNotice\": true }, \"breadcrumbs.enabled\": true, \"workbench.settings.editor\": \"json\", \"editor.tabSize\": 2, \"editor.formatOnSave\": true, \"editor.formatOnPaste\": true } If this file is not empty, you can simply add the follwing lines to it: \"gitlens.advanced.messages\": { \"suppressShowKeyBindingsNotice\": true }, \"breadcrumbs.enabled\": true, \"workbench.settings.editor\": \"json\", \"editor.formatOnSave\": true, \"diffEditor.ignoreTrimWhitespace\": false, \"window.zoomLevel\": 0, Installation of the projet Installation of node modules To install required node module, open a terminal on the root folder of the projet and type the following command: yarn install Start Ecolyo application To start ecolyo application just launch the command: yarn start If the application starts successfully you should obtain the following message: App successfully compiled! Dev assets:http://localhost:8888 Once the application is started, run the easy-cozy stack with docker. Fix webpack error on cozy script Deprecated Updated cozy-script lib To fix it launch the following command in node_modules/cozy-script folder: yarn add webpack Run easy-cozy dev stack The dev stack will contain the cozy-stack with some default applications and konnectors and allow you to run this stack locally. First login to the forge registry: docker login registry.forge.grandlyon.com You will need to enter for credentials. Next pull the last image of the dev stack: docker pull registry.forge.grandlyon.com/web-et-numerique/llle_project/ecolyo/cozy-env:latest On windows Launch the stack will following command: yarn winstack A Powershell window will open. Wait until the success message: TO BE COMPLETED Once successfull you can launch your local cozy with following url: Cozy local url Local database can also be consulted at the following url: Cozy local DB On Linux From the project folder, launch following command: yarn linuxstack Wait until the success message: TO BE COMPLETED Once successfull you can launch your local cozy with following url Cozy local url and connect with the password ' cozy '. Local database can also be consulted at the following url: Cozy local DB Import moke data Requirement Your dev stack should be running to import the moke data First install ACH using yarn : yarn global add cozy-ach Next launch the script createDayDataFiles.js available into test folder cd test node createDayDataFiles.js You can change the period of data generated by changing the following lines: ``` const startingdate = DateTime.local() .plus({ days: -120 }) .startOf('day') const endingDate = DateTime.local() .plus({ days: -1 }) .startOf('day') ``` Just replace -120 by the value needed Json files with data will be created into test/data folder. ACH script \"importData.bat\" will load the content of the file into your couchDB (database of your dev stack). Launch it using following commands: cd test ./importData.bat You'll be prompted for a cozysessid, you can get it in the web console ; in the 'application' tab, look for the cookies and just copy the cozysessid value. A new browser windows will open and asking you approval to import data. Just click on Approve Finally your data is loaded and ready to be displayed in the Ecolyo Application !","title":"Launch the application on local"},{"location":"ecolyo/getting_started/launch_local_application/#initialisation-of-the-project","text":"","title":"Initialisation of the project"},{"location":"ecolyo/getting_started/launch_local_application/#clone-the-project-repository","text":"Use following command in your favorite terminal to clone the projet: git clone https://forge.grandlyon.com/web-et-numerique/llle_project/ecolyo.git","title":"Clone the project repository"},{"location":"ecolyo/getting_started/launch_local_application/#user-settings","text":"Open the project with VSCode and add the following code into .vscode/settings.json: { \"workbench.colorCustomizations\": { /* Put anything you like here */ }, \"editor.snippetSuggestions\": \"top\", \"editor.tabSize\": 2, \"editor.formatOnSave\": true, \"diffEditor.ignoreTrimWhitespace\": false, \"window.zoomLevel\": 0, \"gitlens.advanced.messages\": { \"suppressShowKeyBindingsNotice\": true }, \"breadcrumbs.enabled\": true, \"workbench.settings.editor\": \"json\", \"editor.tabSize\": 2, \"editor.formatOnSave\": true, \"editor.formatOnPaste\": true } If this file is not empty, you can simply add the follwing lines to it: \"gitlens.advanced.messages\": { \"suppressShowKeyBindingsNotice\": true }, \"breadcrumbs.enabled\": true, \"workbench.settings.editor\": \"json\", \"editor.formatOnSave\": true, \"diffEditor.ignoreTrimWhitespace\": false, \"window.zoomLevel\": 0,","title":"User settings"},{"location":"ecolyo/getting_started/launch_local_application/#installation-of-the-projet","text":"","title":"Installation of the projet"},{"location":"ecolyo/getting_started/launch_local_application/#installation-of-node-modules","text":"To install required node module, open a terminal on the root folder of the projet and type the following command: yarn install","title":"Installation of node modules"},{"location":"ecolyo/getting_started/launch_local_application/#start-ecolyo-application","text":"To start ecolyo application just launch the command: yarn start If the application starts successfully you should obtain the following message: App successfully compiled! Dev assets:http://localhost:8888 Once the application is started, run the easy-cozy stack with docker. Fix webpack error on cozy script Deprecated Updated cozy-script lib To fix it launch the following command in node_modules/cozy-script folder: yarn add webpack","title":"Start Ecolyo application"},{"location":"ecolyo/getting_started/launch_local_application/#run-easy-cozy-dev-stack","text":"The dev stack will contain the cozy-stack with some default applications and konnectors and allow you to run this stack locally. First login to the forge registry: docker login registry.forge.grandlyon.com You will need to enter for credentials. Next pull the last image of the dev stack: docker pull registry.forge.grandlyon.com/web-et-numerique/llle_project/ecolyo/cozy-env:latest","title":"Run easy-cozy dev stack"},{"location":"ecolyo/getting_started/launch_local_application/#on-windows","text":"Launch the stack will following command: yarn winstack A Powershell window will open. Wait until the success message: TO BE COMPLETED Once successfull you can launch your local cozy with following url: Cozy local url Local database can also be consulted at the following url: Cozy local DB","title":"On windows"},{"location":"ecolyo/getting_started/launch_local_application/#on-linux","text":"From the project folder, launch following command: yarn linuxstack Wait until the success message: TO BE COMPLETED Once successfull you can launch your local cozy with following url Cozy local url and connect with the password ' cozy '. Local database can also be consulted at the following url: Cozy local DB","title":"On Linux"},{"location":"ecolyo/getting_started/launch_local_application/#import-moke-data","text":"Requirement Your dev stack should be running to import the moke data First install ACH using yarn : yarn global add cozy-ach Next launch the script createDayDataFiles.js available into test folder cd test node createDayDataFiles.js You can change the period of data generated by changing the following lines: ``` const startingdate = DateTime.local() .plus({ days: -120 }) .startOf('day') const endingDate = DateTime.local() .plus({ days: -1 }) .startOf('day') ``` Just replace -120 by the value needed Json files with data will be created into test/data folder. ACH script \"importData.bat\" will load the content of the file into your couchDB (database of your dev stack). Launch it using following commands: cd test ./importData.bat You'll be prompted for a cozysessid, you can get it in the web console ; in the 'application' tab, look for the cookies and just copy the cozysessid value. A new browser windows will open and asking you approval to import data. Just click on Approve Finally your data is loaded and ready to be displayed in the Ecolyo Application !","title":"Import moke data"},{"location":"ecolyo/getting_started/launch_local_konnector/","text":"Section under Construction","title":"Launch a konnector on local"},{"location":"ecolyo/getting_started/setup_your_environment/","text":"This section will allow you to install a proper local environment step by step for Ecolyo application using VSCode IDE. VSCode Install VSCode Installation for VSCode can be found here: Installation of VSCode . Extensions Installation of Extention is explained here: Installation of Extensions . Here are the list of important extensions to install: Prettier - Code formatter ES7 React/Redux/GraphQL/React-Native snippets GitLens - Git supercharged Markdown Preview Optional extensions: Bracket Pair Colorizer 2 CSS Peek Auto Rename Tag indent-rainbow TabOut Liveshare (pair programming extension) User settings User settings for Ecolyo are described in this section: LINK TO SECTION TO ADD Git The project is using GitLab, you will need to install Git to checkout the projet. Installation for Git can be found here: Installation of Git . Node Version 12 For now please install node v12, any later version will cause side effects on sass modules! Download node-v12 Node.js\u00ae is a JavaScript runtime built on Chrome's V8 JavaScript engine. Yarn Yarn is used as package manager for this projet. Feel free to use the one you prefere but we advice to install yarn as all the documentation is described with this package manager. Installation for yarn can be found here: Installation of Yarn . Docker Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the parts it needs, such as libraries and other dependencies, and ship it all out as one package. By doing so, thanks to the container, the developer can rest assured that the application will run on any other Linux machine regardless of any customized settings that machine might have that could differ from the machine used for writing and testing the code. Install Docker Installation of Docker can be found here: Installation of Docker . Install Docker-Compose Installation of Docker-Compose (according to your OS) is explained here: Installation of Docker-Compose .","title":"Setup your environment"},{"location":"ecolyo/getting_started/setup_your_environment/#vscode","text":"","title":"VSCode"},{"location":"ecolyo/getting_started/setup_your_environment/#install-vscode","text":"Installation for VSCode can be found here: Installation of VSCode .","title":"Install VSCode"},{"location":"ecolyo/getting_started/setup_your_environment/#extensions","text":"Installation of Extention is explained here: Installation of Extensions . Here are the list of important extensions to install: Prettier - Code formatter ES7 React/Redux/GraphQL/React-Native snippets GitLens - Git supercharged Markdown Preview Optional extensions: Bracket Pair Colorizer 2 CSS Peek Auto Rename Tag indent-rainbow TabOut Liveshare (pair programming extension)","title":"Extensions"},{"location":"ecolyo/getting_started/setup_your_environment/#user-settings","text":"User settings for Ecolyo are described in this section: LINK TO SECTION TO ADD","title":"User settings"},{"location":"ecolyo/getting_started/setup_your_environment/#git","text":"The project is using GitLab, you will need to install Git to checkout the projet. Installation for Git can be found here: Installation of Git .","title":"Git"},{"location":"ecolyo/getting_started/setup_your_environment/#node","text":"Version 12 For now please install node v12, any later version will cause side effects on sass modules! Download node-v12 Node.js\u00ae is a JavaScript runtime built on Chrome's V8 JavaScript engine.","title":"Node"},{"location":"ecolyo/getting_started/setup_your_environment/#yarn","text":"Yarn is used as package manager for this projet. Feel free to use the one you prefere but we advice to install yarn as all the documentation is described with this package manager. Installation for yarn can be found here: Installation of Yarn .","title":"Yarn"},{"location":"ecolyo/getting_started/setup_your_environment/#docker","text":"Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the parts it needs, such as libraries and other dependencies, and ship it all out as one package. By doing so, thanks to the container, the developer can rest assured that the application will run on any other Linux machine regardless of any customized settings that machine might have that could differ from the machine used for writing and testing the code.","title":"Docker"},{"location":"ecolyo/getting_started/setup_your_environment/#install-docker","text":"Installation of Docker can be found here: Installation of Docker .","title":"Install Docker"},{"location":"ecolyo/getting_started/setup_your_environment/#install-docker-compose","text":"Installation of Docker-Compose (according to your OS) is explained here: Installation of Docker-Compose .","title":"Install Docker-Compose"},{"location":"ecolyo/konnectors/egl/","text":"Section under Construction","title":"Eau du Grand Lyon"},{"location":"ecolyo/konnectors/enedis/","text":"Section under Construction","title":"Enedis"},{"location":"ecolyo/konnectors/grdf/","text":"Section under Construction This konnector fetches consumptions measures from Grdf Adict API. This is an Oauth Konnector, meaning the authentification performed to access all data is made following an Oauth2 protocol. You can clone the project here . You should also check Cozy's official documentations for konnectors : https://docs.cozy.io/en/tutorials/konnector/getting-started/ https://docs.cozy.io/en/tutorials/konnector/oauth/ Grdf Adict Konnector The Oauth protocol does not take place in the konnector code, therefore it is also important to take a look at the proxy to fully understand all the interactions that will be told below. All the actions performed by the stack are targetted from pre-registered paramaters, here is the list of all parameters needed by the stack to perform the Oauth protocol and allow the konnector to fetch data. On its first launch, following the Oauth Client Connect authentification. The cozy stack calls the authentification_endpoint and start the oauth protocol, see proxy doc . The account has now an access_token and an id_token from the oauth call id_token is only given when requesting the token endpoint in authorization_code grant_type. This token holds several meta datas, including the pce_id (id of user's meter) that will be needed further to fetch user's datas. Konnector starts, fails to find a pce_id in database on first launch therefore decodes the id_token to store the pce_id in db (see addData ). Konnector restarts, this time knowing a pce_id, it fails to fetch datas because the access_token from oauth call has a reduced scope (only scoping for meta data requests). Konnector launches a refresh call, the proxy knows to answer it with a client_credentials grant_type call to grdf /access_token. Konnector restarts with everyting needed in database to fetch datas and store them in couchdb. Further jobs will not need to change scope again and will only ask for refresh tokens. Flow summarized to do Request PCE's frequency Grdf owns different type of meters, some are read twice a year (every six months therefore called 6M), others are 1M or 1D Launch on standalone In the project repository type yarn standalone to launch the konnector without a cozy stack running. Installation Build the konnector with yarn build . Install on easy-cozy (development purposes) sudo docker cp /home/easy-cozy/fun/grdf-konnector/build/ $container_id:/tmp/grdf-oauth sudo docker-compose exec cozy ./cozy konnectors install grdf-oauth --domain \"$alphaDomain\" file:///tmp/grdf-oauth $container_id Install on production Type yarn deploy to build on a dedicated branch. Build branch is stored as a docker image in a registry : Container Registry .","title":"GRDF"},{"location":"ecolyo/konnectors/grdf/#grdf-adict-konnector","text":"The Oauth protocol does not take place in the konnector code, therefore it is also important to take a look at the proxy to fully understand all the interactions that will be told below. All the actions performed by the stack are targetted from pre-registered paramaters, here is the list of all parameters needed by the stack to perform the Oauth protocol and allow the konnector to fetch data. On its first launch, following the Oauth Client Connect authentification. The cozy stack calls the authentification_endpoint and start the oauth protocol, see proxy doc . The account has now an access_token and an id_token from the oauth call id_token is only given when requesting the token endpoint in authorization_code grant_type. This token holds several meta datas, including the pce_id (id of user's meter) that will be needed further to fetch user's datas. Konnector starts, fails to find a pce_id in database on first launch therefore decodes the id_token to store the pce_id in db (see addData ). Konnector restarts, this time knowing a pce_id, it fails to fetch datas because the access_token from oauth call has a reduced scope (only scoping for meta data requests). Konnector launches a refresh call, the proxy knows to answer it with a client_credentials grant_type call to grdf /access_token. Konnector restarts with everyting needed in database to fetch datas and store them in couchdb. Further jobs will not need to change scope again and will only ask for refresh tokens.","title":"Grdf Adict Konnector"},{"location":"ecolyo/konnectors/grdf/#flow-summarized","text":"to do Request PCE's frequency Grdf owns different type of meters, some are read twice a year (every six months therefore called 6M), others are 1M or 1D","title":"Flow summarized"},{"location":"ecolyo/konnectors/grdf/#launch-on-standalone","text":"In the project repository type yarn standalone to launch the konnector without a cozy stack running.","title":"Launch on standalone"},{"location":"ecolyo/konnectors/grdf/#installation","text":"Build the konnector with yarn build .","title":"Installation"},{"location":"ecolyo/konnectors/grdf/#install-on-easy-cozy-development-purposes","text":"sudo docker cp /home/easy-cozy/fun/grdf-konnector/build/ $container_id:/tmp/grdf-oauth sudo docker-compose exec cozy ./cozy konnectors install grdf-oauth --domain \"$alphaDomain\" file:///tmp/grdf-oauth $container_id","title":"Install on easy-cozy (development purposes)"},{"location":"ecolyo/konnectors/grdf/#install-on-production","text":"Type yarn deploy to build on a dedicated branch. Build branch is stored as a docker image in a registry : Container Registry .","title":"Install on production"},{"location":"ecolyo/project_architecture/architecture/","text":"Section under Construction","title":"Architecture"},{"location":"ecolyo/project_architecture/cozy/","text":"Section under Construction","title":"Cozy"},{"location":"ecolyo/project_architecture/doctypes/","text":"Timeseries doctypes Description Each fluid has its own doctype wildcard and one doctype per time step. Each available time step for a fluid depends of the available data from the energy provider. Here are the different time step: * minute * hour * day * month * year Doctype Here are the available doctypes: Fluid type Doctype wildcard Doctypes electricity fluid / enedis com.grandlyon.enedis.* com.grandlyon.enedis.minute com.grandlyon.enedis.hour com.grandlyon.enedis.day com.grandlyon.enedis.month com.grandlyon.enedis.year gaz fluid / grdf com.grandlyon.grdf.* com.grandlyon.grdf.hour com.grandlyon.grdf.day com.grandlyon.grdf.month com.grandlyon.grdf.year water fluid / eau du grand lyon com.grandlyon.egl.* com.grandlyon.egl.day com.grandlyon.egl.month com.grandlyon.egl.year Structure Field Type Description load number load (in kWh or L) minute number minute of the date set to 0 except for minute serie hour number hour of the date set to 0 except for minute and hour series day number day of the date set to 1 for month and year series month number month of the date set to 1 for year series year number year of the date Example { \"load\": 770.18, \"minute\": 0, \"hour\": 0, \"day\": 1, \"month\": 1, \"year\": 2020 } User profile Description This doctype is used to store all information about the user. Doctype com.grandlyon.ecolyo.userprofile Structure Field Type Description level number challenge level of the user challengeTypeHash string Hash used to verify the content of challenge type ecogestureHash string Hash used to verify the content of ecogesture haveSeenWelcomeModal boolean flag to inform is the user have seen the welcome modal Example { \"challengeTypeHash\": \"c10bbfec554e735d58a5d7009c9964e4a6bc4c65\", \"ecogestureHash\": \"71d475cead14a465d697de596ad21e9aebf3def2\", \"haveSeenWelcomeModal\": true, \"level\": 2 } Ecogesture Description This doctype is used to store ecogestures. Doctype com.grandlyon.ecolyo.ecogesture Structure Field Type Description shortName string short name of the ecogesture longName string long name of the ecogesture shortDescription string short description of the ecogesture longDescription string long description of the ecogesture usage string usage of the ecogesture fluidTypes FluidType[] Array of fluid type on which ecogesture can have an impact FluidType enum: - ELECTRICITY = 0 - WATER = 1 - GAS = 2 - MULTIFLUID = 3 nwh number negawattheure - impact of the ecogesture from 0 to 10 pack number pack number of the ecogesture (1 pack contain 2 ecogestures) iconName string icon name for ecogesture unlocked boolean (Optional) state for unlocked ecogesture Example { \"shortName\": \"Contr\u00f4le du nuage\", \"longName\": \"Je r\u00e8gle la temp\u00e9rature de mon eau chaude entre 55 et 60 \u00b0C.\", \"shortDescription\": \"\", \"longDescription\": \"Bien souvent les chauffe-eau sont r\u00e9gl\u00e9s pour une temp\u00e9rature de 70 \u00b0C dans le ballon, ce qui n\u2019est pas \u00e9conomique et peut m\u00eame \u00eatre dangereux !\", \"usage\": \"Eau chaude sanitaire\", \"fluidTypes\": [ 0 ], \"nwh\": 6, \"pack\": 8 } Challenge type Description This doctype is used to store all available challenges. Doctype com.grandlyon.ecolyo.challengetype Structure Field Type Description type TypeChallenge type of challenge TypeChallenge enum: - CHALLENGE = 0 - ACHIEVEMENT = 1 title string title of the challenge description string description of the challenge level number level needed to unlock the challenge duration Duration duration. (Duration from luxon) fluidTypes FluidType[] Array of fluid type associated to the challenge FluidType enum: - ELECTRICITY = 0 - WATER = 1 - GAS = 2 - MULTIFLUID = 3 relationships any relation to available ecogestures for the challenge \"availableEcogestures\": { \"data\": Ecogesture[] } Example { \"type\": 1, \"title\": \"Ecolyo Royal\", \"description\": \"Connecter l'application Ecolyo \u00e0 votre distributeur d'\u00e9nergie\", \"level\": 1, \"duration\": { \"days\": 0 }, \"fluidTypes\": [ 0, 1, 2 ], \"relationships\": { \"availableEcogestures\": { \"data\": [ { \"_id\": \"0085\", \"_type\": \"com.grandlyon.ecolyo.ecogesture\" }, { \"_id\": \"0092\", \"_type\": \"com.grandlyon.ecolyo.ecogesture\" } ] } } } User challenge Description This doctype is used to store all additionnal information about a challenge started or ended by the user. Doctype com.grandlyon.ecolyo.userchallenge Structure Field Type Description startingDate string starting date of the the challenge endingDate string ending date of the challenge state ChallengeState state of the challenge maxEnergy number currentEnergy number badge BadgeState state of the badge BadgeState enum - FAILED = 0 - SUCCESS = 1 fluidTypes FluidType[] fluid types set when user launch the challenge FluidType enum: - ELECTRICITY = 0 - WATER = 1 - GAS = 2 - MULTIFLUID = 3 relationships any relation to the challenge type and selected ecogestures for the challenge \"challengeType\": { \"data\": ChallengeType[] } \"selectedEcogestures\": { \"data\": Ecogesture[] } Example { \"state\": 1 \"badge\": 1, \"currentEnergy\": -1, \"startingDate\": \"0001-01-01T00:00:00.000Z\", \"endingDate\": \"2020-06-16T00:00:00.000+02:00\", \"maxEnergy\": -1, \"relationships\": { \"challengeType\": { \"data\": { \"_id\": \"CHA00000001\", \"_type\": \"com.grandlyon.ecolyo.challengetype\" } }, \"selectedEcogestures\": { \"data\": [ { \"_id\": \"0085\", \"_type\": \"com.grandlyon.ecolyo.ecogesture\" }, { \"_id\": \"0092\", \"_type\": \"com.grandlyon.ecolyo.ecogesture\" } ] } }, }","title":"DocTypes"},{"location":"ecolyo/project_architecture/doctypes/#timeseries-doctypes","text":"","title":"Timeseries doctypes"},{"location":"ecolyo/project_architecture/doctypes/#description","text":"Each fluid has its own doctype wildcard and one doctype per time step. Each available time step for a fluid depends of the available data from the energy provider. Here are the different time step: * minute * hour * day * month * year","title":"Description"},{"location":"ecolyo/project_architecture/doctypes/#doctype","text":"Here are the available doctypes: Fluid type Doctype wildcard Doctypes electricity fluid / enedis com.grandlyon.enedis.* com.grandlyon.enedis.minute com.grandlyon.enedis.hour com.grandlyon.enedis.day com.grandlyon.enedis.month com.grandlyon.enedis.year gaz fluid / grdf com.grandlyon.grdf.* com.grandlyon.grdf.hour com.grandlyon.grdf.day com.grandlyon.grdf.month com.grandlyon.grdf.year water fluid / eau du grand lyon com.grandlyon.egl.* com.grandlyon.egl.day com.grandlyon.egl.month com.grandlyon.egl.year","title":"Doctype"},{"location":"ecolyo/project_architecture/doctypes/#structure","text":"Field Type Description load number load (in kWh or L) minute number minute of the date set to 0 except for minute serie hour number hour of the date set to 0 except for minute and hour series day number day of the date set to 1 for month and year series month number month of the date set to 1 for year series year number year of the date","title":"Structure"},{"location":"ecolyo/project_architecture/doctypes/#example","text":"{ \"load\": 770.18, \"minute\": 0, \"hour\": 0, \"day\": 1, \"month\": 1, \"year\": 2020 }","title":"Example"},{"location":"ecolyo/project_architecture/doctypes/#user-profile","text":"","title":"User profile"},{"location":"ecolyo/project_architecture/doctypes/#description_1","text":"This doctype is used to store all information about the user.","title":"Description"},{"location":"ecolyo/project_architecture/doctypes/#doctype_1","text":"com.grandlyon.ecolyo.userprofile","title":"Doctype"},{"location":"ecolyo/project_architecture/doctypes/#structure_1","text":"Field Type Description level number challenge level of the user challengeTypeHash string Hash used to verify the content of challenge type ecogestureHash string Hash used to verify the content of ecogesture haveSeenWelcomeModal boolean flag to inform is the user have seen the welcome modal","title":"Structure"},{"location":"ecolyo/project_architecture/doctypes/#example_1","text":"{ \"challengeTypeHash\": \"c10bbfec554e735d58a5d7009c9964e4a6bc4c65\", \"ecogestureHash\": \"71d475cead14a465d697de596ad21e9aebf3def2\", \"haveSeenWelcomeModal\": true, \"level\": 2 }","title":"Example"},{"location":"ecolyo/project_architecture/doctypes/#ecogesture","text":"","title":"Ecogesture"},{"location":"ecolyo/project_architecture/doctypes/#description_2","text":"This doctype is used to store ecogestures.","title":"Description"},{"location":"ecolyo/project_architecture/doctypes/#doctype_2","text":"com.grandlyon.ecolyo.ecogesture","title":"Doctype"},{"location":"ecolyo/project_architecture/doctypes/#structure_2","text":"Field Type Description shortName string short name of the ecogesture longName string long name of the ecogesture shortDescription string short description of the ecogesture longDescription string long description of the ecogesture usage string usage of the ecogesture fluidTypes FluidType[] Array of fluid type on which ecogesture can have an impact FluidType enum: - ELECTRICITY = 0 - WATER = 1 - GAS = 2 - MULTIFLUID = 3 nwh number negawattheure - impact of the ecogesture from 0 to 10 pack number pack number of the ecogesture (1 pack contain 2 ecogestures) iconName string icon name for ecogesture unlocked boolean (Optional) state for unlocked ecogesture","title":"Structure"},{"location":"ecolyo/project_architecture/doctypes/#example_2","text":"{ \"shortName\": \"Contr\u00f4le du nuage\", \"longName\": \"Je r\u00e8gle la temp\u00e9rature de mon eau chaude entre 55 et 60 \u00b0C.\", \"shortDescription\": \"\", \"longDescription\": \"Bien souvent les chauffe-eau sont r\u00e9gl\u00e9s pour une temp\u00e9rature de 70 \u00b0C dans le ballon, ce qui n\u2019est pas \u00e9conomique et peut m\u00eame \u00eatre dangereux !\", \"usage\": \"Eau chaude sanitaire\", \"fluidTypes\": [ 0 ], \"nwh\": 6, \"pack\": 8 }","title":"Example"},{"location":"ecolyo/project_architecture/doctypes/#challenge-type","text":"","title":"Challenge type"},{"location":"ecolyo/project_architecture/doctypes/#description_3","text":"This doctype is used to store all available challenges.","title":"Description"},{"location":"ecolyo/project_architecture/doctypes/#doctype_3","text":"com.grandlyon.ecolyo.challengetype","title":"Doctype"},{"location":"ecolyo/project_architecture/doctypes/#structure_3","text":"Field Type Description type TypeChallenge type of challenge TypeChallenge enum: - CHALLENGE = 0 - ACHIEVEMENT = 1 title string title of the challenge description string description of the challenge level number level needed to unlock the challenge duration Duration duration. (Duration from luxon) fluidTypes FluidType[] Array of fluid type associated to the challenge FluidType enum: - ELECTRICITY = 0 - WATER = 1 - GAS = 2 - MULTIFLUID = 3 relationships any relation to available ecogestures for the challenge \"availableEcogestures\": { \"data\": Ecogesture[] }","title":"Structure"},{"location":"ecolyo/project_architecture/doctypes/#example_3","text":"{ \"type\": 1, \"title\": \"Ecolyo Royal\", \"description\": \"Connecter l'application Ecolyo \u00e0 votre distributeur d'\u00e9nergie\", \"level\": 1, \"duration\": { \"days\": 0 }, \"fluidTypes\": [ 0, 1, 2 ], \"relationships\": { \"availableEcogestures\": { \"data\": [ { \"_id\": \"0085\", \"_type\": \"com.grandlyon.ecolyo.ecogesture\" }, { \"_id\": \"0092\", \"_type\": \"com.grandlyon.ecolyo.ecogesture\" } ] } } }","title":"Example"},{"location":"ecolyo/project_architecture/doctypes/#user-challenge","text":"","title":"User challenge"},{"location":"ecolyo/project_architecture/doctypes/#description_4","text":"This doctype is used to store all additionnal information about a challenge started or ended by the user.","title":"Description"},{"location":"ecolyo/project_architecture/doctypes/#doctype_4","text":"com.grandlyon.ecolyo.userchallenge","title":"Doctype"},{"location":"ecolyo/project_architecture/doctypes/#structure_4","text":"Field Type Description startingDate string starting date of the the challenge endingDate string ending date of the challenge state ChallengeState state of the challenge maxEnergy number currentEnergy number badge BadgeState state of the badge BadgeState enum - FAILED = 0 - SUCCESS = 1 fluidTypes FluidType[] fluid types set when user launch the challenge FluidType enum: - ELECTRICITY = 0 - WATER = 1 - GAS = 2 - MULTIFLUID = 3 relationships any relation to the challenge type and selected ecogestures for the challenge \"challengeType\": { \"data\": ChallengeType[] } \"selectedEcogestures\": { \"data\": Ecogesture[] }","title":"Structure"},{"location":"ecolyo/project_architecture/doctypes/#example_4","text":"{ \"state\": 1 \"badge\": 1, \"currentEnergy\": -1, \"startingDate\": \"0001-01-01T00:00:00.000Z\", \"endingDate\": \"2020-06-16T00:00:00.000+02:00\", \"maxEnergy\": -1, \"relationships\": { \"challengeType\": { \"data\": { \"_id\": \"CHA00000001\", \"_type\": \"com.grandlyon.ecolyo.challengetype\" } }, \"selectedEcogestures\": { \"data\": [ { \"_id\": \"0085\", \"_type\": \"com.grandlyon.ecolyo.ecogesture\" }, { \"_id\": \"0092\", \"_type\": \"com.grandlyon.ecolyo.ecogesture\" } ] } }, }","title":"Example"},{"location":"ecolyo/project_architecture/environments/","text":"Section under Construction","title":"Environments"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/","text":"Pilote is a social application. Section under Construction Repository Global Pilote gitlab repository Repository dedicated project Pilote TS backend - gitlab repository Acces to the application deployed DEV : https://pilote-agent-dev.grandlyon.com/ REC : https://pilote-agent-rec.grandlyon.com/","title":"Index"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/#repository-global","text":"Pilote gitlab repository","title":"Repository Global"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/#repository-dedicated-project","text":"Pilote TS backend - gitlab repository","title":"Repository dedicated project"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/#acces-to-the-application-deployed","text":"DEV : https://pilote-agent-dev.grandlyon.com/ REC : https://pilote-agent-rec.grandlyon.com/","title":"Acces to the application deployed"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/application/deploy/","text":"Section under Construction This section will show you how to deploy your project on different environments. Deployment For each environment, the CI-CD is implemented. Once, you commit on 'dev' branch or 'rec' branch, the pipeline linked is running.","title":"Deploy"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/application/deploy/#deployment","text":"For each environment, the CI-CD is implemented. Once, you commit on 'dev' branch or 'rec' branch, the pipeline linked is running.","title":"Deployment"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/launch_local_application/","text":"Section under Construction This section will allow you to launch a proper local environment of the Pilote TS back application Initialisation of the project Clone the project repository Use following command in your favorite terminal to clone the projet: git clone https://forge.grandlyon.com/solidarite/monparcourssocial/mps-travailleursocial-back.git Installation of the projet Start Pilote application To start Pilote application just launch the command in a PowerShell or Windows Powershell tool: yarn docker:dev If the application starts successfully you should obtain two containers running: mps-travailleursocial-back_mps_1 mps-travailleursocial-back_postgres_1 You can access by: http://localhost:3020/api It will be redirect to the Swagger UI. It allow to test the different API defined. Run Jest test To start test defined just run the command in a PowerShell or Windows Powershell tool: yarn test:watch","title":"Launch local application"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/launch_local_application/#initialisation-of-the-project","text":"","title":"Initialisation of the project"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/launch_local_application/#clone-the-project-repository","text":"Use following command in your favorite terminal to clone the projet: git clone https://forge.grandlyon.com/solidarite/monparcourssocial/mps-travailleursocial-back.git","title":"Clone the project repository"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/launch_local_application/#installation-of-the-projet","text":"","title":"Installation of the projet"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/launch_local_application/#start-pilote-application","text":"To start Pilote application just launch the command in a PowerShell or Windows Powershell tool: yarn docker:dev If the application starts successfully you should obtain two containers running: mps-travailleursocial-back_mps_1 mps-travailleursocial-back_postgres_1 You can access by: http://localhost:3020/api It will be redirect to the Swagger UI. It allow to test the different API defined.","title":"Start Pilote application"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/launch_local_application/#run-jest-test","text":"To start test defined just run the command in a PowerShell or Windows Powershell tool: yarn test:watch","title":"Run Jest test"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/","text":"This section will allow you to install a proper local environment step by step for Pilote application using VSCode IDE. VSCode Install VSCode Installation for VSCode can be found here: Installation of VSCode . Extensions Installation of Extention is explained here: Installation of Extensions . Here are the list of important extensions to install: Prettier - Code formatter ES7 React/Redux/GraphQL/React-Native snippets GitLens - Git supercharged Markdown Preview Optional extensions: Bracket Pair Colorizer 2 CSS Peek Auto Rename Tag indent-rainbow TabOut Liveshare (pair programming extension) User settings User settings for Ecolyo are described in this section: LINK TO SECTION TO ADD Git The project is using GitLab, you will need to install Git to checkout the projet. Installation for Git can be found here: Installation of Git . Node Version 12 For now please install node v12, any later version will cause side effects on sass modules! Download node-v12 Node.js\u00ae is a JavaScript runtime built on Chrome's V8 JavaScript engine. Yarn Yarn is used as package manager for this projet. Feel free to use the one you prefere but we advice to install yarn as all the documentation is described with this package manager. Installation for yarn can be found here: Installation of Yarn . Docker Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the parts it needs, such as libraries and other dependencies, and ship it all out as one package. By doing so, thanks to the container, the developer can rest assured that the application will run on any other Linux machine regardless of any customized settings that machine might have that could differ from the machine used for writing and testing the code. Install Docker Installation of Docker can be found here: Installation of Docker . Install Docker-Compose Installation of Docker-Compose (according to your OS) is explained here: Installation of Docker-Compose .","title":"Setup your environment"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#vscode","text":"","title":"VSCode"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#install-vscode","text":"Installation for VSCode can be found here: Installation of VSCode .","title":"Install VSCode"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#extensions","text":"Installation of Extention is explained here: Installation of Extensions . Here are the list of important extensions to install: Prettier - Code formatter ES7 React/Redux/GraphQL/React-Native snippets GitLens - Git supercharged Markdown Preview Optional extensions: Bracket Pair Colorizer 2 CSS Peek Auto Rename Tag indent-rainbow TabOut Liveshare (pair programming extension)","title":"Extensions"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#user-settings","text":"User settings for Ecolyo are described in this section: LINK TO SECTION TO ADD","title":"User settings"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#git","text":"The project is using GitLab, you will need to install Git to checkout the projet. Installation for Git can be found here: Installation of Git .","title":"Git"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#node","text":"Version 12 For now please install node v12, any later version will cause side effects on sass modules! Download node-v12 Node.js\u00ae is a JavaScript runtime built on Chrome's V8 JavaScript engine.","title":"Node"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#yarn","text":"Yarn is used as package manager for this projet. Feel free to use the one you prefere but we advice to install yarn as all the documentation is described with this package manager. Installation for yarn can be found here: Installation of Yarn .","title":"Yarn"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#docker","text":"Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the parts it needs, such as libraries and other dependencies, and ship it all out as one package. By doing so, thanks to the container, the developer can rest assured that the application will run on any other Linux machine regardless of any customized settings that machine might have that could differ from the machine used for writing and testing the code.","title":"Docker"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#install-docker","text":"Installation of Docker can be found here: Installation of Docker .","title":"Install Docker"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/getting_started/setup_your_environment/#install-docker-compose","text":"Installation of Docker-Compose (according to your OS) is explained here: Installation of Docker-Compose .","title":"Install Docker-Compose"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/project_architecture/architecture/","text":"Section under Construction Techno used NestJS Jest for th tests Docker PostgreSQL","title":"Architecture"},{"location":"pilote/Pilote%20-%20TS%20-%20Back/project_architecture/architecture/#techno-used","text":"NestJS Jest for th tests Docker PostgreSQL","title":"Techno used"},{"location":"pilote/Pilote%20-%20TS%20-%20Front/","text":"Pilote is a social application. Repository Pilote gitlab repository Pilote TS front - gitlab repository","title":"Index"},{"location":"pilote/Pilote%20-%20TS%20-%20Front/#repository","text":"Pilote gitlab repository Pilote TS front - gitlab repository","title":"Repository"},{"location":"pilote/Pilote%20-%20TS%20-%20Front/application/deploy/","text":"Section under Construction This section will show you how to deploy your project on different environments. Deployment For each environment, the CI-CD is implemented. Once, you commit on 'dev' branch or 'rec' branch, the pipeline liked is running.","title":"Deploy"},{"location":"pilote/Pilote%20-%20TS%20-%20Front/application/deploy/#deployment","text":"For each environment, the CI-CD is implemented. Once, you commit on 'dev' branch or 'rec' branch, the pipeline liked is running.","title":"Deployment"},{"location":"pilote/Pilote%20-%20TS%20-%20Front/getting_started/launch_local_application/","text":"Section under Construction This section will allow you to launch a proper local environment of the Pilote TS front application Initialisation of the project Clone the project repository Use following command in your favorite terminal to clone the projet: git clone https://forge.grandlyon.com/solidarite/monparcourssocial/mps-travailleursocial.git Installation of the projet Start Pilote application Before to start Pilote application, you need to run this command in order to install dependencies: yarn install To start Pilote application just launch the command in a PowerShell or Windows Powershell tool: yarn start If the application starts successfully you should access to: http://localhost:3001/","title":"Launch local application"},{"location":"pilote/Pilote%20-%20TS%20-%20Front/getting_started/launch_local_application/#initialisation-of-the-project","text":"","title":"Initialisation of the project"},{"location":"pilote/Pilote%20-%20TS%20-%20Front/getting_started/launch_local_application/#clone-the-project-repository","text":"Use following command in your favorite terminal to clone the projet: git clone https://forge.grandlyon.com/solidarite/monparcourssocial/mps-travailleursocial.git","title":"Clone the project repository"},{"location":"pilote/Pilote%20-%20TS%20-%20Front/getting_started/launch_local_application/#installation-of-the-projet","text":"","title":"Installation of the projet"},{"location":"pilote/Pilote%20-%20TS%20-%20Front/getting_started/launch_local_application/#start-pilote-application","text":"Before to start Pilote application, you need to run this command in order to install dependencies: yarn install To start Pilote application just launch the command in a PowerShell or Windows Powershell tool: yarn start If the application starts successfully you should access to: http://localhost:3001/","title":"Start Pilote application"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/","text":"Section under Construction This section will show you how to deploy your project on different environments. Setup First of all you'll need to install MobaXterm in order to connect to the server. Then, if your're on Linux you can skip the following section, otherwise if you are on Windows you'll have to install Windows Subsystem for Linux (WSL) since the deployment of the app is not working with windows commands. Install WSL First open Powershell as administrator and launch the following command : dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart This command will install WSL on your computer. After this, you'll need to reboot . Install your Linux distribution After reboot, open the microsoft store and install the distribution of your choice (for example : Ubuntu 20.04 LTS). Once it's done, open it and after a few minutes you'll be prompted for the creation of a user account. To make sure it's correctly installed and working, you can open Powershell and paste the following command : wsl.exe --list --running Now you should see the name of your distribution in the list. Setup your distribution Start Up Updating the packages list by typing : sudo apt update Install the nodejs using the apt package manager sudo apt install To verify the Installation execute the following command : nodejs --version To be able to download npm package, you need to install the npm, the Node.js package manager. To do so type : sudo apt install npm To verify the npm Install check using the command : npm --version To Downlaod and Setup Yarn sudo apt install yarn To check the Installed version of Yarn : yarn --version Now you'll probably be in version 0.23+git, if so you'll have to upgrade to 1.22 to make everything work properly. In order to achieve this, you'll have to launch several commands : sudo apt-get remove cmdtest sudo apt autoremove sudo apt-get update sudo apt install curl -y curl -o- -L https://yarnpkg.com/install.sh | bash source ~/.bashrc Now you should be at least in version ^1.22 and ready to go on. Configuration of MobaXterm First open a new session and connect to the distant host 192.168.62.31 . Don't forget to add the path to the private key in the advanced SSH settings. Deploy Pilote Deploy on Alpha Windows First open your Ubuntu terminal, and clone the project in the repertory of your choice. Once you've selected the branch of you want to deploy, write the following command : yarn build After this, you can launch the deployment. In order to deploy on pilote-dev-build (development environment) use the command : yarn deploy-dev If you want to deploy on the pilote-build environment, use : yarn deploy To deploy on the llle-build environment, you'll have to drag and drop your build folder directly in llle-build using MobaXterm. Linux From your current branch, run yarn build then sudo yarn deploy_dev to instantly deploy your working branch on the latest tagged Pilote container registry.","title":"Deploy"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/#setup","text":"First of all you'll need to install MobaXterm in order to connect to the server. Then, if your're on Linux you can skip the following section, otherwise if you are on Windows you'll have to install Windows Subsystem for Linux (WSL) since the deployment of the app is not working with windows commands.","title":"Setup"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/#install-wsl","text":"First open Powershell as administrator and launch the following command : dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart This command will install WSL on your computer. After this, you'll need to reboot .","title":"Install WSL"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/#install-your-linux-distribution","text":"After reboot, open the microsoft store and install the distribution of your choice (for example : Ubuntu 20.04 LTS). Once it's done, open it and after a few minutes you'll be prompted for the creation of a user account. To make sure it's correctly installed and working, you can open Powershell and paste the following command : wsl.exe --list --running Now you should see the name of your distribution in the list.","title":"Install your Linux distribution"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/#setup-your-distribution","text":"Start Up Updating the packages list by typing : sudo apt update Install the nodejs using the apt package manager sudo apt install To verify the Installation execute the following command : nodejs --version To be able to download npm package, you need to install the npm, the Node.js package manager. To do so type : sudo apt install npm To verify the npm Install check using the command : npm --version To Downlaod and Setup Yarn sudo apt install yarn To check the Installed version of Yarn : yarn --version Now you'll probably be in version 0.23+git, if so you'll have to upgrade to 1.22 to make everything work properly. In order to achieve this, you'll have to launch several commands : sudo apt-get remove cmdtest sudo apt autoremove sudo apt-get update sudo apt install curl -y curl -o- -L https://yarnpkg.com/install.sh | bash source ~/.bashrc Now you should be at least in version ^1.22 and ready to go on.","title":"Setup your distribution"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/#configuration-of-mobaxterm","text":"First open a new session and connect to the distant host 192.168.62.31 . Don't forget to add the path to the private key in the advanced SSH settings.","title":"Configuration of MobaXterm"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/#deploy-pilote","text":"","title":"Deploy Pilote"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/#deploy-on-alpha","text":"","title":"Deploy on Alpha"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/#windows","text":"First open your Ubuntu terminal, and clone the project in the repertory of your choice. Once you've selected the branch of you want to deploy, write the following command : yarn build After this, you can launch the deployment. In order to deploy on pilote-dev-build (development environment) use the command : yarn deploy-dev If you want to deploy on the pilote-build environment, use : yarn deploy To deploy on the llle-build environment, you'll have to drag and drop your build folder directly in llle-build using MobaXterm.","title":"Windows"},{"location":"pilote/Pilote%20-%20Usager/application/deploy/#linux","text":"From your current branch, run yarn build then sudo yarn deploy_dev to instantly deploy your working branch on the latest tagged Pilote container registry.","title":"Linux"},{"location":"pilote/Pilote%20-%20Usager/application/doctypes/","text":"Section under Construction Doctypes Doctypes represent different types of data. Their primary use is for permissions: an app or konnector will request permissions for one or several doctypes and will not be able to access other doctypes. See Doctypes documentation for more information. The following is a full description of the doctypes we use and their fields. Cozy doctypes won't be fully described. Instead, for every used one, we'll include a link to its official documentation. Used Cozy doctypes io.cozy.accounts : Konnector accounts io.cozy.contacts : Contacts io.cozy.contacts.groups : Contacts groups io.cozy.files : Files io.cozy.konnectors : Connectors installed in the cozy io.cozy.permissions : Permissions of the instance io.cozy.todos.item : Todos item io.cozy.todos.list : Todos list io.cozy.triggers : Job triggers Custom doctypes com.grandlyon.mps.notes Represents ... com.grandlyon.mps.notes attributes are: title : {string} The title of the note. content : {string} The content of the note. #### Example json { title: '...', content: '...', } com.grandlyon.mps.profile Represents the tutorial and notifications state. com.grandlyon.mps.profile attributes are: tutorial : {object} contains home , contacts , documents , actions , and notes which are all of type boolean . Each one represents the state of its tutorial. For example, home: true means the home tutorial hasn't been seen yet and will be visible to the user the next time he visits the Home component. notification : {} ... #### Example json { tutorial: { home: true, contacts: false, documents: true, actions: false, notes: true }, notification: ... } } com.grandlyon.mps.appointments ... com.grandlyon.mps.docrules Represents ... com.grandlyon.mps.docrules attributes are: description : {string} Description of the docrule. doctype : {string} ... rule : {object} Contains limit of type number and selector which is an object with the following attributes: 'cozyMetadata.classification' : {string} Classification ... 'cozyMetadata.createdAt' : {object} Creation date. #### Example json { description: '...', doctype: 'io.cozy.files', rule: { limit: 10, selector: { 'cozyMetadata.classification': '...', 'cozyMetadata.createdAt': 'December 23, 2020 03:24:00', } } }","title":"Doctypes"},{"location":"pilote/Pilote%20-%20Usager/application/doctypes/#doctypes","text":"Doctypes represent different types of data. Their primary use is for permissions: an app or konnector will request permissions for one or several doctypes and will not be able to access other doctypes. See Doctypes documentation for more information. The following is a full description of the doctypes we use and their fields. Cozy doctypes won't be fully described. Instead, for every used one, we'll include a link to its official documentation.","title":"Doctypes"},{"location":"pilote/Pilote%20-%20Usager/application/doctypes/#used-cozy-doctypes","text":"io.cozy.accounts : Konnector accounts io.cozy.contacts : Contacts io.cozy.contacts.groups : Contacts groups io.cozy.files : Files io.cozy.konnectors : Connectors installed in the cozy io.cozy.permissions : Permissions of the instance io.cozy.todos.item : Todos item io.cozy.todos.list : Todos list io.cozy.triggers : Job triggers","title":"Used Cozy doctypes"},{"location":"pilote/Pilote%20-%20Usager/application/doctypes/#custom-doctypes","text":"com.grandlyon.mps.notes Represents ... com.grandlyon.mps.notes attributes are: title : {string} The title of the note. content : {string} The content of the note. #### Example json { title: '...', content: '...', } com.grandlyon.mps.profile Represents the tutorial and notifications state. com.grandlyon.mps.profile attributes are: tutorial : {object} contains home , contacts , documents , actions , and notes which are all of type boolean . Each one represents the state of its tutorial. For example, home: true means the home tutorial hasn't been seen yet and will be visible to the user the next time he visits the Home component. notification : {} ... #### Example json { tutorial: { home: true, contacts: false, documents: true, actions: false, notes: true }, notification: ... } } com.grandlyon.mps.appointments ... com.grandlyon.mps.docrules Represents ... com.grandlyon.mps.docrules attributes are: description : {string} Description of the docrule. doctype : {string} ... rule : {object} Contains limit of type number and selector which is an object with the following attributes: 'cozyMetadata.classification' : {string} Classification ... 'cozyMetadata.createdAt' : {object} Creation date. #### Example json { description: '...', doctype: 'io.cozy.files', rule: { limit: 10, selector: { 'cozyMetadata.classification': '...', 'cozyMetadata.createdAt': 'December 23, 2020 03:24:00', } } }","title":"Custom doctypes"},{"location":"pilote/Pilote%20-%20Usager/application/gitflow/","text":"Section under Construction Initialize Create a new project in GitLab and take note of its URL Protecting Master Branch On the GitLab page of your project go to Settings/Repository in the Protected Branches section. Select the Master branch and set allow to merge to Master and allow to push to No one This will prevent anyone to push on the master branch, the only way to add code to the branch will be merge requests. Setting Development Branch Retrieve the project on your computer, open a command line and execute. git clone https://forge.grandlyon.com/web-et-numerique/llle.git git clone https://forge.grandlyon.com/solidarite/monparcourssocial/mps-usager.git Create the development branch git checkout -b dev Init your project and then type any time you want to commit changes: git add . git commit -m \"Commit changes\" git push origin dev Start Developing For any other development you should create a branch from the development branch. First make sure to be on the dev branch, type: git branch to see your current branch Conventional Commits A feature branch name should follow this structure: feat/<title_of_the_user_story> You can create the branch by typing: git checkout -b feat/<title_of_the_user_story> Each fix branch should be named as the following fix-\\<title_of_the_fix> . Breaking Change Appends a ! before the title of the commit to notify that a breaking change has happened. Give a solid description of the changes as well. add tag git tag -a 1.0.0 -m \"complementary message\" Gitflow Scheme","title":"Gitflow"},{"location":"pilote/Pilote%20-%20Usager/application/gitflow/#initialize","text":"Create a new project in GitLab and take note of its URL","title":"Initialize"},{"location":"pilote/Pilote%20-%20Usager/application/gitflow/#protecting-master-branch","text":"On the GitLab page of your project go to Settings/Repository in the Protected Branches section. Select the Master branch and set allow to merge to Master and allow to push to No one This will prevent anyone to push on the master branch, the only way to add code to the branch will be merge requests.","title":"Protecting Master Branch"},{"location":"pilote/Pilote%20-%20Usager/application/gitflow/#setting-development-branch","text":"Retrieve the project on your computer, open a command line and execute. git clone https://forge.grandlyon.com/web-et-numerique/llle.git git clone https://forge.grandlyon.com/solidarite/monparcourssocial/mps-usager.git Create the development branch git checkout -b dev Init your project and then type any time you want to commit changes: git add . git commit -m \"Commit changes\" git push origin dev","title":"Setting Development Branch"},{"location":"pilote/Pilote%20-%20Usager/application/gitflow/#start-developing","text":"For any other development you should create a branch from the development branch. First make sure to be on the dev branch, type: git branch to see your current branch","title":"Start Developing"},{"location":"pilote/Pilote%20-%20Usager/application/gitflow/#conventional-commits","text":"A feature branch name should follow this structure: feat/<title_of_the_user_story> You can create the branch by typing: git checkout -b feat/<title_of_the_user_story> Each fix branch should be named as the following fix-\\<title_of_the_fix> . Breaking Change Appends a ! before the title of the commit to notify that a breaking change has happened. Give a solid description of the changes as well. add tag git tag -a 1.0.0 -m \"complementary message\"","title":"Conventional Commits"},{"location":"pilote/Pilote%20-%20Usager/application/gitflow/#gitflow-scheme","text":"","title":"Gitflow Scheme"},{"location":"pilote/Pilote%20-%20Usager/application/scaffolding/","text":"Section under Construction In this section, you will find information about the project file structure and the purpose of the main folders. Source Files Folder/File Purpose assets The application's assets, contains fonts, svg and png files. docrules doctypes Contains the cozy doctypes, you can see more on Cozy Documentation . helpers Contains helper functions that are used by services. It contains also a test file for each helper file. locales Contains JSON data used by the translation system i18n provided by Cozy-ui . models Contains all our models' Interfaces services Here you'll find all the services. It contains also a test file for each service file. store Redux store. Contains actions, reducers, and store types. styles Styles folder. The base folder under it contains our variables, fonts, breakpoints, animations, and mixins. Whenever you add a style file elsewhere, don't forget to import it in index.scss . targets Contains mobile and browser targets. It also contains a Public target for social workers . types utils In this folder you'll find utilities methods. tests components/App.tsx The root component. Configuration Files Folder/File Purpose .eslintrc.js Config file for ESLint. gitlab-ci.yml Config file used for Gitlab continuous integration. .prettierrc Config file for Prettier extension. jest.config.js Config file used by Jest for testing the application. manifest.webapp Manifest of the application, used by cozy for permissions' management, you can add permissions for doctypes here. tsconfig.json Config file for TypeScript. ...","title":"Scaffolding"},{"location":"pilote/Pilote%20-%20Usager/application/scaffolding/#source-files","text":"Folder/File Purpose assets The application's assets, contains fonts, svg and png files. docrules doctypes Contains the cozy doctypes, you can see more on Cozy Documentation . helpers Contains helper functions that are used by services. It contains also a test file for each helper file. locales Contains JSON data used by the translation system i18n provided by Cozy-ui . models Contains all our models' Interfaces services Here you'll find all the services. It contains also a test file for each service file. store Redux store. Contains actions, reducers, and store types. styles Styles folder. The base folder under it contains our variables, fonts, breakpoints, animations, and mixins. Whenever you add a style file elsewhere, don't forget to import it in index.scss . targets Contains mobile and browser targets. It also contains a Public target for social workers . types utils In this folder you'll find utilities methods. tests components/App.tsx The root component.","title":"Source Files"},{"location":"pilote/Pilote%20-%20Usager/application/scaffolding/#configuration-files","text":"Folder/File Purpose .eslintrc.js Config file for ESLint. gitlab-ci.yml Config file used for Gitlab continuous integration. .prettierrc Config file for Prettier extension. jest.config.js Config file used by Jest for testing the application. manifest.webapp Manifest of the application, used by cozy for permissions' management, you can add permissions for doctypes here. tsconfig.json Config file for TypeScript. ...","title":"Configuration Files"},{"location":"pilote/Pilote%20-%20Usager/application/services/","text":"Section under Construction Profile Service Functions getProfile : Tries fetching the profile if it exists. If not, it creates a new one and returns it. updateProfile : Updates the profile. Note Service Functions findNoteCurrentAppointement : Returns a note from an appointment id. findNoteById : Returns a note by its id. getAllNotes : Returns all notes. findLastNote : Returns the last note by date. createNote : Creates a new note and returns it. updateNote : Updates a note. deleteNoteById : Deletes a note by its id. DocRule Service Functions createDocRule : Creates a new docRule. getDocRuleById : Returns a docRule by its id. getDocRulesByIds : Returns a list of docRules by their ids. getAllDocRules : Returns all docRules. createAllDocRules : Fetches all docRules and creates the missing ones. Document Service Functions getAllDocuments : Returns the list of all documents. getDocumentsByQualification : Returns a document by the 'metadata.qualification.label' . getDocumentsByQualifications : Uses getDocumentsByQualification to return a list of documents by the 'metadata.qualification.label' . getDocumentByID : Returns a document by its id. saveDocument : Creates a new file. editDocumentName : Edits a document's name by its id. deleteDocumentById : Deletes the document by its id. downloadDocument : Downloads a file from its id. viewDocument : Takes a document's id, opens its download link and returns it. Contact Service Functions getCurrentUser : Returns the contact with an existing me field, which represents the current user. getAllContacts : Returns a list of all contacts. findContactById : Returns a contact by its id. createContact : Creates a new contact. updateContact : Updates an existing contact. deleteContactById : Deletes a contact by its id. Group Service Function createMetroGroup : Creates a new group and returns it. getMetroGroup : Returns the group if it exists or creates it if it doesn't. ...","title":"Services"},{"location":"pilote/Pilote%20-%20Usager/application/services/#profile-service","text":"","title":"Profile Service"},{"location":"pilote/Pilote%20-%20Usager/application/services/#functions","text":"getProfile : Tries fetching the profile if it exists. If not, it creates a new one and returns it. updateProfile : Updates the profile.","title":"Functions"},{"location":"pilote/Pilote%20-%20Usager/application/services/#note-service","text":"","title":"Note Service"},{"location":"pilote/Pilote%20-%20Usager/application/services/#functions_1","text":"findNoteCurrentAppointement : Returns a note from an appointment id. findNoteById : Returns a note by its id. getAllNotes : Returns all notes. findLastNote : Returns the last note by date. createNote : Creates a new note and returns it. updateNote : Updates a note. deleteNoteById : Deletes a note by its id.","title":"Functions"},{"location":"pilote/Pilote%20-%20Usager/application/services/#docrule-service","text":"","title":"DocRule Service"},{"location":"pilote/Pilote%20-%20Usager/application/services/#functions_2","text":"createDocRule : Creates a new docRule. getDocRuleById : Returns a docRule by its id. getDocRulesByIds : Returns a list of docRules by their ids. getAllDocRules : Returns all docRules. createAllDocRules : Fetches all docRules and creates the missing ones.","title":"Functions"},{"location":"pilote/Pilote%20-%20Usager/application/services/#document-service","text":"","title":"Document Service"},{"location":"pilote/Pilote%20-%20Usager/application/services/#functions_3","text":"getAllDocuments : Returns the list of all documents. getDocumentsByQualification : Returns a document by the 'metadata.qualification.label' . getDocumentsByQualifications : Uses getDocumentsByQualification to return a list of documents by the 'metadata.qualification.label' . getDocumentByID : Returns a document by its id. saveDocument : Creates a new file. editDocumentName : Edits a document's name by its id. deleteDocumentById : Deletes the document by its id. downloadDocument : Downloads a file from its id. viewDocument : Takes a document's id, opens its download link and returns it.","title":"Functions"},{"location":"pilote/Pilote%20-%20Usager/application/services/#contact-service","text":"","title":"Contact Service"},{"location":"pilote/Pilote%20-%20Usager/application/services/#functions_4","text":"getCurrentUser : Returns the contact with an existing me field, which represents the current user. getAllContacts : Returns a list of all contacts. findContactById : Returns a contact by its id. createContact : Creates a new contact. updateContact : Updates an existing contact. deleteContactById : Deletes a contact by its id.","title":"Functions"},{"location":"pilote/Pilote%20-%20Usager/application/services/#group-service","text":"","title":"Group Service"},{"location":"pilote/Pilote%20-%20Usager/application/services/#function","text":"createMetroGroup : Creates a new group and returns it. getMetroGroup : Returns the group if it exists or creates it if it doesn't.","title":"Function"},{"location":"pilote/Pilote%20-%20Usager/application/services/#_1","text":"","title":"..."},{"location":"pilote/Pilote%20-%20Usager/application/store/","text":"Redux We are using Redux for our application state management. it maintains the state of the entire application in a single immutable state tree (object), which can't be changed directly. When something changes, a new object is created (using actions and reducers). For more information about Redux, visit The [official documentation][https://redux.js.org/]. Store The following are the existing store entities used by our application: Global : Preserves the global state, which includes isPublic and screenType (Mobile/Tablet/Desktop). UploadDocument : Manages the state of uploaded documents. Profile : Preserves the state of tutorials and notifications. For each reducer file, a test file is associated testing the reducer. All the actions are tested in a separate file with the same actions file name. Used packages react-redux : Official React bindings for Redux . redux-devtools-extension : For debugging application's state changes. @types/react-redux : This package contains type definitions for react-redux.","title":"Redux"},{"location":"pilote/Pilote%20-%20Usager/application/store/#redux","text":"We are using Redux for our application state management. it maintains the state of the entire application in a single immutable state tree (object), which can't be changed directly. When something changes, a new object is created (using actions and reducers). For more information about Redux, visit The [official documentation][https://redux.js.org/].","title":"Redux"},{"location":"pilote/Pilote%20-%20Usager/application/store/#store","text":"The following are the existing store entities used by our application: Global : Preserves the global state, which includes isPublic and screenType (Mobile/Tablet/Desktop). UploadDocument : Manages the state of uploaded documents. Profile : Preserves the state of tutorials and notifications. For each reducer file, a test file is associated testing the reducer. All the actions are tested in a separate file with the same actions file name.","title":"Store"},{"location":"pilote/Pilote%20-%20Usager/application/store/#used-packages","text":"react-redux : Official React bindings for Redux . redux-devtools-extension : For debugging application's state changes. @types/react-redux : This package contains type definitions for react-redux.","title":"Used packages"},{"location":"pilote/Pilote%20-%20Usager/getting_started/launch_local_doctypes/","text":"Section under Construction Use cozy-doctype in local In order to be able to use our own cozy-doctype, especialy remote doctype here, we need to use them in local. 1/ clone cozy-doctype repository into your system. Then, push it into your root project. 2/ After that, add your own remote doctype into cozy-doctype folder: - create a new folder ex: org.mps.share - push into this folder request file: request You must declare this doctype into your manifest.webapp file like that : \"share\": { \"description\": \"Required for searching on back-endTS\", \"type\": \"org.mps.share\", \"verbs\": [\"GET\", \"POST\"] }, 3/ In cozy-app-dev-with-app.sh, you need to add another option when you serve the cozy-stack: - cozy-stack serve --allow-root (...) --doctypes /path/to/the/doctype => in this project : - cozy-stack serve (...) --doctypes /data/cozy-doctypes !! Warning !! : You need to build and push the newlest image on the forge registry when the step 3 is done !! Warning !! : You must have all files, into your docker folder, in LF mode of \"End of Line Sequence\" ! For this project: - cd docker - docker build . - docker tag registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes - docker push registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes:latest 4/ The path \"/data/cozy-doctypes\" is link to the volume of the cozy-app-dev image. - in order to mount this volume, you need to add it when you run the 'docker run' command : -v $PWD/cozy-doctypes:/data/cozy-doctypes => for this project : docker run --rm -it -p 8080:8080 -p 5984:5984 -p 8025:8025 -v $PWD/build:/data/cozy-app/mps -v $PWD/data:/usr/local/couchdb/data -v $PWD/docker/disableCSP.yaml:/etc/cozy/cozy.yaml -v $PWD/cozy-doctypes:/data/cozy-doctypes registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes How to test your remote doctype ? GET 1/ In the request file created. Specify the methode and the route to your target URL : GET https://pilote-agent-dev.grandlyon.com/api/cozy or with value in query : GET https://pilote-agent-dev.grandlyon.com/api/auth/token/check?token={{token}} 2/ Then, you can test it by : - await client.getStackClient().fetchJSON('GET','/remote/org.mps.share') or with value in query : await client.getStackClient().fetchJSON('GET','/remote/org.mps.share?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImNvenlBcGlDaGVjayIsInVzZXJJZCI6IjEiLCJpYXQiOjE2MDU2OTI0NjYsImV4cCI6MTYwNTY5MjUyNn0.HbQh5H-TcVIASUpbjZAD0MY9slRAJOVw-VMKSBu_sQ0' ) POST 1/ In the request file created. Specify the methode and the route to your target URL : POST https://pilote-agent-dev.grandlyon.com/api/auth/token/check Content-Type: application/json {{data}} 2/ Then, you can test it by : const parameters = { data: JSON.stringify({ token: \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImNvenlBcGlDaGVjayIsInVzZXJJZCI6IjEiLCJpYXQiOjE2MDU2MjYxNzAsImV4cCI6MTYwNTYyNjIzMH0.8m-rEAZkuqb4upAPKY7j8DhvFi8mVbmiCFDitgNYt6Y\" } ) } console.log('call remote ==> ', await client.getStackClient().fetchJSON('POST','/remote/org.mps.share', parameters ))","title":"Launch local doctypes"},{"location":"pilote/Pilote%20-%20Usager/getting_started/launch_local_doctypes/#use-cozy-doctype-in-local","text":"In order to be able to use our own cozy-doctype, especialy remote doctype here, we need to use them in local. 1/ clone cozy-doctype repository into your system. Then, push it into your root project. 2/ After that, add your own remote doctype into cozy-doctype folder: - create a new folder ex: org.mps.share - push into this folder request file: request You must declare this doctype into your manifest.webapp file like that : \"share\": { \"description\": \"Required for searching on back-endTS\", \"type\": \"org.mps.share\", \"verbs\": [\"GET\", \"POST\"] }, 3/ In cozy-app-dev-with-app.sh, you need to add another option when you serve the cozy-stack: - cozy-stack serve --allow-root (...) --doctypes /path/to/the/doctype => in this project : - cozy-stack serve (...) --doctypes /data/cozy-doctypes !! Warning !! : You need to build and push the newlest image on the forge registry when the step 3 is done !! Warning !! : You must have all files, into your docker folder, in LF mode of \"End of Line Sequence\" ! For this project: - cd docker - docker build . - docker tag registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes - docker push registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes:latest 4/ The path \"/data/cozy-doctypes\" is link to the volume of the cozy-app-dev image. - in order to mount this volume, you need to add it when you run the 'docker run' command : -v $PWD/cozy-doctypes:/data/cozy-doctypes => for this project : docker run --rm -it -p 8080:8080 -p 5984:5984 -p 8025:8025 -v $PWD/build:/data/cozy-app/mps -v $PWD/data:/usr/local/couchdb/data -v $PWD/docker/disableCSP.yaml:/etc/cozy/cozy.yaml -v $PWD/cozy-doctypes:/data/cozy-doctypes registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes","title":"Use cozy-doctype in local"},{"location":"pilote/Pilote%20-%20Usager/getting_started/launch_local_doctypes/#how-to-test-your-remote-doctype","text":"","title":"How to test your remote doctype ?"},{"location":"pilote/Pilote%20-%20Usager/getting_started/launch_local_doctypes/#get","text":"1/ In the request file created. Specify the methode and the route to your target URL : GET https://pilote-agent-dev.grandlyon.com/api/cozy or with value in query : GET https://pilote-agent-dev.grandlyon.com/api/auth/token/check?token={{token}} 2/ Then, you can test it by : - await client.getStackClient().fetchJSON('GET','/remote/org.mps.share') or with value in query : await client.getStackClient().fetchJSON('GET','/remote/org.mps.share?token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImNvenlBcGlDaGVjayIsInVzZXJJZCI6IjEiLCJpYXQiOjE2MDU2OTI0NjYsImV4cCI6MTYwNTY5MjUyNn0.HbQh5H-TcVIASUpbjZAD0MY9slRAJOVw-VMKSBu_sQ0' )","title":"GET"},{"location":"pilote/Pilote%20-%20Usager/getting_started/launch_local_doctypes/#post","text":"1/ In the request file created. Specify the methode and the route to your target URL : POST https://pilote-agent-dev.grandlyon.com/api/auth/token/check Content-Type: application/json {{data}} 2/ Then, you can test it by : const parameters = { data: JSON.stringify({ token: \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImNvenlBcGlDaGVjayIsInVzZXJJZCI6IjEiLCJpYXQiOjE2MDU2MjYxNzAsImV4cCI6MTYwNTYyNjIzMH0.8m-rEAZkuqb4upAPKY7j8DhvFi8mVbmiCFDitgNYt6Y\" } ) } console.log('call remote ==> ', await client.getStackClient().fetchJSON('POST','/remote/org.mps.share', parameters ))","title":"POST"},{"location":"pilote/Pilote%20-%20Usager/getting_started/launch_local_services/","text":"Section under Construction Use services in local Configure the cozy-stack on local In order to be able to use your sercice, follow these steps: 1/ clone cozy-doctype repository into your system. Then, push it into your root project. 2/ After that, add your own remote doctype into cozy-doctype folder: - create a new folder ex: org.mps.share - push into this folder request file: request You must declare this doctype into your manifest.webapp file like that : \"share\": { \"description\": \"Required for searching on back-endTS\", \"type\": \"org.mps.share\", \"verbs\": [\"GET\", \"POST\"] }, 3/ In cozy-app-dev-with-app.sh, you need to add another option when you serve the cozy-stack: - cozy-stack serve --allow-root (...) --doctypes /path/to/the/doctype => in this project : - cozy-stack serve (...) --doctypes /data/cozy-doctypes 4/ You need to add another option when you install apps in the cozy-stack (go to: docker\\cozy-app-dev-with-app.sh) In do_install_app(): #add symbolic link to mps for sms service ln -s /data/cozy-app/mps /data/cozy-storage/cozy.tools\\:8080/.cozy_apps/mps if [ -d \"data/cozy-app/mps/0.1.1\" ]; then echo \"data/cozy-app/mps/0.1.1 already here!\"; else mkdir /data/cozy-app/mps/0.1.1 cp -a /data/cozy-app/mps/services/ /data/cozy-app/mps/0.1.1/ echo \"data/cozy-app/mps/0.1.1 just create!\"; fi # mkdir /data/cozy-app/mps/0.1.1 # cp -a /data/cozy-app/mps/services/ /data/cozy-app/mps/0.1.1/ echo \"service added\" 5/ Then, add konnector-node-run.sh in docker folder. This file is a script to store the service logs. It should contain: #!/bin/bash rundir=\"${1}\" cd $rundir node index.js | tee /data/cozy-app/mps/services.log Then, add this following row into the Dockerfile: COPY konnector-node-run.sh /etc/cozy/konnector-node-run.sh 6/ Into the disableCSP.yml, you need to add one more configuration: konnectors: cmd: /etc/cozy/konnector-node-run.sh # run connectors with node !! Warning !! : You need to build and push the newlest image on the forge registry when the step 6 is done !! Warning !! : You must have all files, into your docker folder, in LF mode of \"End of Line Sequence\" ! Finaly, you should rebuild the docker image of the cozy-stack: - cd docker - docker build . - docker tag registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes - docker push registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes:latest 7/ The path \"/data/cozy-doctypes\" is link to the volume of the cozy-app-dev image. - in order to mount this volume, you need to add it when you run the 'docker run' command : -v $PWD/cozy-doctypes:/data/cozy-doctypes => for this project : docker run --rm -it -p 8080:8080 -p 5984:5984 -p 8025:8025 -v $PWD/build:/data/cozy-app/mps -v $PWD/data:/usr/local/couchdb/data -v $PWD/docker/disableCSP.yaml:/etc/cozy/cozy.yaml -v $PWD/cozy-doctypes:/data/cozy-doctypes registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes How to test your service ? In the manifest.webapp, you need to declare the service: \"services\": { \"smsProcess\": { \"type\": \"node\", \"file\": \"services/smsProcess/pilote.js\" } }, Then, in src\\targets\\services, you can add your service. For this project, we have created a button in Home.component.tsx in order to generate trigger url to run the service: const getTrigger = async () => { const attrs = { type: '@webhook', worker: 'service', message: { name: 'smsProcess', slug: 'pilotedemo', }, } const trigger = await client.getStackClient() .collection('io.cozy.triggers') .create(attrs) console.log('trigger', trigger) } It generate an trigger URL that we can call with our backend application : URL_COZY/job/webhook/{{trigger_id}} URL_COZY represent the cozy-stack url of your environment and not your application URL.","title":"Launch local services"},{"location":"pilote/Pilote%20-%20Usager/getting_started/launch_local_services/#use-services-in-local","text":"","title":"Use services in local"},{"location":"pilote/Pilote%20-%20Usager/getting_started/launch_local_services/#configure-the-cozy-stack-on-local","text":"In order to be able to use your sercice, follow these steps: 1/ clone cozy-doctype repository into your system. Then, push it into your root project. 2/ After that, add your own remote doctype into cozy-doctype folder: - create a new folder ex: org.mps.share - push into this folder request file: request You must declare this doctype into your manifest.webapp file like that : \"share\": { \"description\": \"Required for searching on back-endTS\", \"type\": \"org.mps.share\", \"verbs\": [\"GET\", \"POST\"] }, 3/ In cozy-app-dev-with-app.sh, you need to add another option when you serve the cozy-stack: - cozy-stack serve --allow-root (...) --doctypes /path/to/the/doctype => in this project : - cozy-stack serve (...) --doctypes /data/cozy-doctypes 4/ You need to add another option when you install apps in the cozy-stack (go to: docker\\cozy-app-dev-with-app.sh) In do_install_app(): #add symbolic link to mps for sms service ln -s /data/cozy-app/mps /data/cozy-storage/cozy.tools\\:8080/.cozy_apps/mps if [ -d \"data/cozy-app/mps/0.1.1\" ]; then echo \"data/cozy-app/mps/0.1.1 already here!\"; else mkdir /data/cozy-app/mps/0.1.1 cp -a /data/cozy-app/mps/services/ /data/cozy-app/mps/0.1.1/ echo \"data/cozy-app/mps/0.1.1 just create!\"; fi # mkdir /data/cozy-app/mps/0.1.1 # cp -a /data/cozy-app/mps/services/ /data/cozy-app/mps/0.1.1/ echo \"service added\" 5/ Then, add konnector-node-run.sh in docker folder. This file is a script to store the service logs. It should contain: #!/bin/bash rundir=\"${1}\" cd $rundir node index.js | tee /data/cozy-app/mps/services.log Then, add this following row into the Dockerfile: COPY konnector-node-run.sh /etc/cozy/konnector-node-run.sh 6/ Into the disableCSP.yml, you need to add one more configuration: konnectors: cmd: /etc/cozy/konnector-node-run.sh # run connectors with node !! Warning !! : You need to build and push the newlest image on the forge registry when the step 6 is done !! Warning !! : You must have all files, into your docker folder, in LF mode of \"End of Line Sequence\" ! Finaly, you should rebuild the docker image of the cozy-stack: - cd docker - docker build . - docker tag registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes - docker push registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes:latest 7/ The path \"/data/cozy-doctypes\" is link to the volume of the cozy-app-dev image. - in order to mount this volume, you need to add it when you run the 'docker run' command : -v $PWD/cozy-doctypes:/data/cozy-doctypes => for this project : docker run --rm -it -p 8080:8080 -p 5984:5984 -p 8025:8025 -v $PWD/build:/data/cozy-app/mps -v $PWD/data:/usr/local/couchdb/data -v $PWD/docker/disableCSP.yaml:/etc/cozy/cozy.yaml -v $PWD/cozy-doctypes:/data/cozy-doctypes registry.forge.grandlyon.com/solidarite/monparcourssocial/mps-usager/cozy-env-doctypes","title":"Configure the cozy-stack on local"},{"location":"pilote/Pilote%20-%20Usager/getting_started/launch_local_services/#how-to-test-your-service","text":"In the manifest.webapp, you need to declare the service: \"services\": { \"smsProcess\": { \"type\": \"node\", \"file\": \"services/smsProcess/pilote.js\" } }, Then, in src\\targets\\services, you can add your service. For this project, we have created a button in Home.component.tsx in order to generate trigger url to run the service: const getTrigger = async () => { const attrs = { type: '@webhook', worker: 'service', message: { name: 'smsProcess', slug: 'pilotedemo', }, } const trigger = await client.getStackClient() .collection('io.cozy.triggers') .create(attrs) console.log('trigger', trigger) } It generate an trigger URL that we can call with our backend application : URL_COZY/job/webhook/{{trigger_id}} URL_COZY represent the cozy-stack url of your environment and not your application URL.","title":"How to test your service ?"},{"location":"proxy/description/","text":"Section under Construction This section of documentation refers to the Oauth protocols working hand in hand with our custom proxy and the cozy-stack. To fully understand its whereabouts, you should also look at the enedis konnector and grdf konnector documentation. proxy code source Feel free to check the proxy code at all time when reading this documentation. Oauth Dance To access customer data, one must first obtain customer authorization. This authorization is materialized by an access token and it must be obtained by the APIs exposed by each energy providers. These APIs implement Oauth 2.0 protocol, it requires authentication from the customer along with its given consent. Enedis Data Connect enedis documentation Create an account on https://datahub-enedis.fr/ to explore all the services exposed by Enedis. Authorize API swagger Regarding Enedis, two endpoints are exposed: /dataconnect/v1/oauth2/authorize Paramater Description client_id Unique identifier of the Application response_type Authorization scenario requested. It will always be \"code\" as Enedis implemented a code grant authorization state Security parameter allowing to maintain the state between the request and the redirection. ** Maximum length of 100 characters ! ** duration Duration of the consent requested by the application, ISO 8601 format. It cannot exceed 3 years Important The response targets the redirect-uri registered with Enedis (the redirect-uri is our proxy and the response will be explained in details further below when explaining the proxy endpoints mechanics). /v1/oauth2/token Paramater Description redirect_uri URI defined when the application was created. Must be secured in https content-type application/json grant_type Authorization type to get an access token. This must be set to \u201cauthorization_code\u201d when using an authorization code, and to \u201crefresh_token\u201d when using a refresh token client_id Unique identifier of the Application client_secret Secret of the client application, associated with its client_id refresh_token Refresh token returned to the previous POST request to the /token endpoint code Authorization code returned to the GET request of /authorize endpoint On success, response will contain access_token or refresh_token , usage_point_id among other things. All informations will be stored by the cozy-stack in a cozy-accounts database. Grdf Adict grdf documentation Visit https://site.grdf.fr/web/grdf-adict/technique to explore all the services exposed by Grdf. Prod endpoints are: https://sofit-sso-oidc.grdf.fr/openam/ Regarding Grdf Adict Oauth connexion, two endpoints are exposed: Oauth connexion still in Beta Grdf Adict Oauth service is called Client Connect and is still in early beta. It is currently lacking a state parameter in the Oauth dance. /oauth2/realms/externeGrdf/authorize /oauth2/realms/externeGrdf/access_token The /access_token endpoint can be called with two different grant_type parameter. authorization_code gives an access token and will also retrieve the consents list given by the user in session. client_credentials gives only the access token allowing us to request the data service. The grdf Konnector would only need to call the client_credentials to get a refresh token. Optional: Revoke Consent It is possible to cancel a consent that was given from the user to our service (for test or development purpose for instance). api.grdf.fr/adict/v1/droit_acces/{id_accreditation} Cozy Oauth Protocol cozy oauth flow documentation https://docs.cozy.io/en/cozy-stack/konnectors-workflow/#reminder-oauth-flow Couchdb The couchdb database must hold all informations needed for the konnector authentication to work properly. Auth informations are stored in the secrets/io-cozy-account_types database. You can create manually the document by entering these parameters for each konnector: Name Description _id Name of your konnector, for instance: enedisgrandlyon grant_mode authorization_code client_id Application id given by the API provider client_secret Secret also given by the API provider auth_endpoint Authorize endpoint to request when starting the oauth protocol token_endpoint Token endpoint to request, will be called when the auth endpoint response reaches the stack token_mode get Once the document is created, when launching the konnector from the cozy-home or inside the running application. The oauth flow will start. The cozy-stack will request the authorize endpoint, then call the token endpoint with the code received from the auth step. If the token request is a success. An account/service-name database will be added in couchdb containing all informations needed for authentication and the konnector will be free to work on all endpoints within its scope. Why we Need a Proxy The Oauth dance could be easily wrapped up with the two requests seen above. But since all cozy applications are hosted on different personnal clouds, following this guideline would mean that we need a client_id and a client_secret for each one of all the applications running. To answer this issue, two solutions are possible depending on what the energy supplier is willing to do. Providers could allow wildcard subdomains when registering the callback URI, it would parse the subdomain and adapt its redirection when answering /auth call. Exemple: https//*.cozygrandlyon.cloud/account/redirect -> parse subdomain before .cozy xyz.cozygrandlyon.cloud/account/redirect -> redirect to xyz toto.cozygrandlyon.cloud/account/redirect -> redirect to toto If the provider (Enedis for instance) is not accepting wildcards, then we put a proxy as a middleware to provide a generic endpoint to cater for all Oauth2 redirections. Result With that in mind, the proxy is now the one calling the auth and token provider endpoints. The instance name will be contained in redirect_uri, the stack will insert this parameters by itself in the /auth call. 3 endpoints are created in the proxy for each energy supplier : One for the auth One for the token One for the redirect uri Proxy flow stack -> proxy/auth -> provider/auth -> proxy/redirect -> stack -> proxy/token -> provider/token Proxy Code Explained reminder Feel free to check the proxy code at all time when reading this documentation. The proxy is coded in golang. It is composed of six endpoints as seen above. The first endpoint to be called is /auth . auth Originally called from a cozy-stack trying to setup its konnector. The proxy gets these informations from the query: client_id duration redirect_uri (auto inserted by the cozy-stack, except if you specify skip_redirect_uri:true in the couchdb) response_type state (as it was conceived by the cozy-stack) The state will be merged with the instance name, then decomposed again when reaching /redirect. This way the proxy is able to keep track of the cozy instance originally calling. With all these informations, the proxy can contact the provider /auth endpoint to start the oauth dance. Enedis note See that a new composed state is sent to enedis, it is made of the former state conceived by the cozy-stack + the cozyOrigin instance name. This will be usefull when enedis is leading the oauth dance to the next step and we will need the name of the cozy to answer. Once the call is sent, enedis will point to the /redirect endpoint. Grdf To be redacted redirect Retrieve the code , usage_point_id , and state answered by Enedis. Split the customed state that was modified in the /auth process. From this split it creates two variables : state host Finally redirect all these parameters in a query to the cozy-stack (the cozy-stack which is still waiting for an answer from its /auth call). state / instance The state must be recovered without the instance name, otherwise the cozy-stack won't recognized it and the handshake will fail. token Gathering from query or parameters all params. Sends a post request to the provider /token endpoint. The stack will store the response params in a accounts couchdb database. What Happens Next","title":"Description"},{"location":"proxy/description/#oauth-dance","text":"To access customer data, one must first obtain customer authorization. This authorization is materialized by an access token and it must be obtained by the APIs exposed by each energy providers. These APIs implement Oauth 2.0 protocol, it requires authentication from the customer along with its given consent.","title":"Oauth Dance"},{"location":"proxy/description/#enedis-data-connect","text":"enedis documentation Create an account on https://datahub-enedis.fr/ to explore all the services exposed by Enedis. Authorize API swagger Regarding Enedis, two endpoints are exposed:","title":"Enedis Data Connect"},{"location":"proxy/description/#dataconnectv1oauth2authorize","text":"Paramater Description client_id Unique identifier of the Application response_type Authorization scenario requested. It will always be \"code\" as Enedis implemented a code grant authorization state Security parameter allowing to maintain the state between the request and the redirection. ** Maximum length of 100 characters ! ** duration Duration of the consent requested by the application, ISO 8601 format. It cannot exceed 3 years Important The response targets the redirect-uri registered with Enedis (the redirect-uri is our proxy and the response will be explained in details further below when explaining the proxy endpoints mechanics).","title":"/dataconnect/v1/oauth2/authorize"},{"location":"proxy/description/#v1oauth2token","text":"Paramater Description redirect_uri URI defined when the application was created. Must be secured in https content-type application/json grant_type Authorization type to get an access token. This must be set to \u201cauthorization_code\u201d when using an authorization code, and to \u201crefresh_token\u201d when using a refresh token client_id Unique identifier of the Application client_secret Secret of the client application, associated with its client_id refresh_token Refresh token returned to the previous POST request to the /token endpoint code Authorization code returned to the GET request of /authorize endpoint On success, response will contain access_token or refresh_token , usage_point_id among other things. All informations will be stored by the cozy-stack in a cozy-accounts database.","title":"/v1/oauth2/token"},{"location":"proxy/description/#grdf-adict","text":"grdf documentation Visit https://site.grdf.fr/web/grdf-adict/technique to explore all the services exposed by Grdf. Prod endpoints are: https://sofit-sso-oidc.grdf.fr/openam/ Regarding Grdf Adict Oauth connexion, two endpoints are exposed: Oauth connexion still in Beta Grdf Adict Oauth service is called Client Connect and is still in early beta. It is currently lacking a state parameter in the Oauth dance.","title":"Grdf Adict"},{"location":"proxy/description/#oauth2realmsexternegrdfauthorize","text":"","title":"/oauth2/realms/externeGrdf/authorize"},{"location":"proxy/description/#oauth2realmsexternegrdfaccess_token","text":"The /access_token endpoint can be called with two different grant_type parameter. authorization_code gives an access token and will also retrieve the consents list given by the user in session. client_credentials gives only the access token allowing us to request the data service. The grdf Konnector would only need to call the client_credentials to get a refresh token.","title":"/oauth2/realms/externeGrdf/access_token"},{"location":"proxy/description/#optional-revoke-consent","text":"It is possible to cancel a consent that was given from the user to our service (for test or development purpose for instance). api.grdf.fr/adict/v1/droit_acces/{id_accreditation}","title":"Optional: Revoke Consent"},{"location":"proxy/description/#cozy-oauth-protocol","text":"cozy oauth flow documentation https://docs.cozy.io/en/cozy-stack/konnectors-workflow/#reminder-oauth-flow","title":"Cozy Oauth Protocol"},{"location":"proxy/description/#couchdb","text":"The couchdb database must hold all informations needed for the konnector authentication to work properly. Auth informations are stored in the secrets/io-cozy-account_types database. You can create manually the document by entering these parameters for each konnector: Name Description _id Name of your konnector, for instance: enedisgrandlyon grant_mode authorization_code client_id Application id given by the API provider client_secret Secret also given by the API provider auth_endpoint Authorize endpoint to request when starting the oauth protocol token_endpoint Token endpoint to request, will be called when the auth endpoint response reaches the stack token_mode get Once the document is created, when launching the konnector from the cozy-home or inside the running application. The oauth flow will start. The cozy-stack will request the authorize endpoint, then call the token endpoint with the code received from the auth step. If the token request is a success. An account/service-name database will be added in couchdb containing all informations needed for authentication and the konnector will be free to work on all endpoints within its scope.","title":"Couchdb"},{"location":"proxy/description/#why-we-need-a-proxy","text":"The Oauth dance could be easily wrapped up with the two requests seen above. But since all cozy applications are hosted on different personnal clouds, following this guideline would mean that we need a client_id and a client_secret for each one of all the applications running. To answer this issue, two solutions are possible depending on what the energy supplier is willing to do. Providers could allow wildcard subdomains when registering the callback URI, it would parse the subdomain and adapt its redirection when answering /auth call. Exemple: https//*.cozygrandlyon.cloud/account/redirect -> parse subdomain before .cozy xyz.cozygrandlyon.cloud/account/redirect -> redirect to xyz toto.cozygrandlyon.cloud/account/redirect -> redirect to toto If the provider (Enedis for instance) is not accepting wildcards, then we put a proxy as a middleware to provide a generic endpoint to cater for all Oauth2 redirections.","title":"Why we Need a Proxy"},{"location":"proxy/description/#result","text":"With that in mind, the proxy is now the one calling the auth and token provider endpoints. The instance name will be contained in redirect_uri, the stack will insert this parameters by itself in the /auth call. 3 endpoints are created in the proxy for each energy supplier : One for the auth One for the token One for the redirect uri","title":"Result"},{"location":"proxy/description/#proxy-flow","text":"stack -> proxy/auth -> provider/auth -> proxy/redirect -> stack -> proxy/token -> provider/token","title":"Proxy flow"},{"location":"proxy/description/#proxy-code-explained","text":"reminder Feel free to check the proxy code at all time when reading this documentation. The proxy is coded in golang. It is composed of six endpoints as seen above. The first endpoint to be called is /auth .","title":"Proxy Code Explained"},{"location":"proxy/description/#auth","text":"Originally called from a cozy-stack trying to setup its konnector. The proxy gets these informations from the query: client_id duration redirect_uri (auto inserted by the cozy-stack, except if you specify skip_redirect_uri:true in the couchdb) response_type state (as it was conceived by the cozy-stack) The state will be merged with the instance name, then decomposed again when reaching /redirect. This way the proxy is able to keep track of the cozy instance originally calling. With all these informations, the proxy can contact the provider /auth endpoint to start the oauth dance.","title":"auth"},{"location":"proxy/description/#enedis","text":"note See that a new composed state is sent to enedis, it is made of the former state conceived by the cozy-stack + the cozyOrigin instance name. This will be usefull when enedis is leading the oauth dance to the next step and we will need the name of the cozy to answer. Once the call is sent, enedis will point to the /redirect endpoint.","title":"Enedis"},{"location":"proxy/description/#grdf","text":"To be redacted","title":"Grdf"},{"location":"proxy/description/#redirect","text":"Retrieve the code , usage_point_id , and state answered by Enedis. Split the customed state that was modified in the /auth process. From this split it creates two variables : state host Finally redirect all these parameters in a query to the cozy-stack (the cozy-stack which is still waiting for an answer from its /auth call). state / instance The state must be recovered without the instance name, otherwise the cozy-stack won't recognized it and the handshake will fail.","title":"redirect"},{"location":"proxy/description/#token","text":"Gathering from query or parameters all params. Sends a post request to the provider /token endpoint. The stack will store the response params in a accounts couchdb database.","title":"token"},{"location":"proxy/description/#what-happens-next","text":"","title":"What Happens Next"},{"location":"proxy/use_cases/enedis/","text":"","title":"Enedis"},{"location":"proxy/use_cases/grdfadict/","text":"","title":"Grdf Adict"}]} \ No newline at end of file diff --git a/site/sitemap.xml b/site/sitemap.xml index 64047dc0f610e89fdd0286f65149f3e61fd59fda..a67656777e1637fdaf60f30a452df92ecbadde28 100644 --- a/site/sitemap.xml +++ b/site/sitemap.xml @@ -1,43 +1,83 @@ <?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url><url> <loc>None</loc> - <lastmod>2020-03-16</lastmod> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> + <changefreq>daily</changefreq> + </url><url> + <loc>None</loc> + <lastmod>2021-01-04</lastmod> <changefreq>daily</changefreq> </url> </urlset> \ No newline at end of file diff --git a/site/sitemap.xml.gz b/site/sitemap.xml.gz index 9efaaae22a3ea8c3daa1c80577785570710a85df..5e2f9a5698d81db2d7f763ad2b6fa19d08bf695a 100644 Binary files a/site/sitemap.xml.gz and b/site/sitemap.xml.gz differ