Repository: faker-js/faker Branch: next Commit: e02536ee5283 Files: 3260 Total size: 4.7 MB Directory structure: gitextract_3831vy8a/ ├── .devcontainer/ │ └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── .codecov.yml │ ├── CODEOWNERS │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ ├── feature_request.yml │ │ └── freestyle.md │ ├── commit-convention.md │ ├── pull_request_template.md │ ├── renovate.json5 │ └── workflows/ │ ├── check-mergable-by-label.yml │ ├── check-release-pr.yml │ ├── ci.yml │ ├── comment-issue.yml │ ├── draft-release.yml │ ├── integration-test.yml │ ├── pr.yml │ ├── prepare-release-pr.yml │ ├── publish-release.yml │ └── semantic-pull-request.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.d.ts ├── .prettierrc.js ├── .versionrc.json ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── BACKERS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cypress/ │ ├── e2e/ │ │ ├── api.cy.ts │ │ ├── example-refresh.cy.ts │ │ └── guide.cy.ts │ └── tsconfig.json ├── cypress.config.ts ├── docs/ │ ├── .vitepress/ │ │ ├── api-pages.ts │ │ ├── components/ │ │ │ ├── Banner.vue │ │ │ ├── api-docs/ │ │ │ │ ├── format.ts │ │ │ │ ├── method-parameters.vue │ │ │ │ ├── method.ts │ │ │ │ ├── method.vue │ │ │ │ ├── refresh-button.vue │ │ │ │ └── refreshable-code.vue │ │ │ └── shims.d.ts │ │ ├── config.ts │ │ ├── shared/ │ │ │ └── utils/ │ │ │ └── slugify.ts │ │ ├── theme/ │ │ │ ├── index.css │ │ │ └── index.ts │ │ └── versions.ts │ ├── about/ │ │ ├── announcements/ │ │ │ ├── 2022-01-14.md │ │ │ ├── 2022-09-08.md │ │ │ └── 2024-10-26.md │ │ ├── announcements.md │ │ ├── roadmap/ │ │ │ ├── index.md │ │ │ ├── v6.md │ │ │ ├── v7.md │ │ │ ├── v8.md │ │ │ └── v9.md │ │ ├── team/ │ │ │ ├── TeamPage.vue │ │ │ └── members.json │ │ └── team.md │ ├── api/ │ │ ├── ApiIndex.vue │ │ ├── api-types.ts │ │ └── index.md │ ├── contributing/ │ │ ├── code-of-conduct.md │ │ ├── propose-a-feature.md │ │ ├── report-bugs.md │ │ ├── set-up-a-development-environment.md │ │ └── submit-a-pull-request.md │ ├── guide/ │ │ ├── frameworks.md │ │ ├── index.md │ │ ├── localization.md │ │ ├── randomizer.md │ │ ├── unique.md │ │ ├── upgrading.md │ │ └── usage.md │ ├── index.md │ ├── locales/ │ │ └── .gitkeep │ └── public/ │ └── robots.txt ├── eslint.config.ts ├── netlify.toml ├── package.json ├── scripts/ │ ├── apidocs/ │ │ ├── diff.ts │ │ ├── generate.ts │ │ ├── output/ │ │ │ ├── constants.ts │ │ │ ├── diff-index.ts │ │ │ ├── page-index.ts │ │ │ ├── page.ts │ │ │ ├── search-index.ts │ │ │ └── source-base-url.ts │ │ ├── processing/ │ │ │ ├── class.ts │ │ │ ├── error.ts │ │ │ ├── jsdocs.ts │ │ │ ├── method.ts │ │ │ ├── parameter.ts │ │ │ ├── signature.ts │ │ │ ├── source.ts │ │ │ └── type.ts │ │ ├── project.ts │ │ └── utils/ │ │ └── value-checks.ts │ ├── apidocs.ts │ ├── diff.ts │ ├── env.ts │ ├── generate-locales.ts │ ├── locales/ │ │ ├── exports.ts │ │ ├── metadata.ts │ │ └── page.ts │ └── shared/ │ ├── format.ts │ ├── markdown.ts │ ├── paths.ts │ └── refreshable-code.ts ├── src/ │ ├── definitions/ │ │ ├── airline.ts │ │ ├── animal.ts │ │ ├── book.ts │ │ ├── color.ts │ │ ├── commerce.ts │ │ ├── company.ts │ │ ├── database.ts │ │ ├── date.ts │ │ ├── definitions.ts │ │ ├── finance.ts │ │ ├── food.ts │ │ ├── hacker.ts │ │ ├── index.ts │ │ ├── internet.ts │ │ ├── location.ts │ │ ├── lorem.ts │ │ ├── metadata.ts │ │ ├── music.ts │ │ ├── person.ts │ │ ├── phone_number.ts │ │ ├── science.ts │ │ ├── system.ts │ │ ├── vehicle.ts │ │ └── word.ts │ ├── errors/ │ │ └── faker-error.ts │ ├── faker.ts │ ├── index.ts │ ├── internal/ │ │ ├── base32.ts │ │ ├── base64.ts │ │ ├── bind-this-to-member-functions.ts │ │ ├── date.ts │ │ ├── deprecated.ts │ │ ├── group-by.ts │ │ ├── keys.ts │ │ ├── locale-proxy.ts │ │ ├── mersenne.ts │ │ ├── module-base.ts │ │ ├── seed.ts │ │ └── types.ts │ ├── locale/ │ │ ├── af_ZA.ts │ │ ├── ar.ts │ │ ├── az.ts │ │ ├── base.ts │ │ ├── bn_BD.ts │ │ ├── cs_CZ.ts │ │ ├── cy.ts │ │ ├── da.ts │ │ ├── de.ts │ │ ├── de_AT.ts │ │ ├── de_CH.ts │ │ ├── dv.ts │ │ ├── el.ts │ │ ├── en.ts │ │ ├── en_AU.ts │ │ ├── en_AU_ocker.ts │ │ ├── en_BORK.ts │ │ ├── en_CA.ts │ │ ├── en_GB.ts │ │ ├── en_GH.ts │ │ ├── en_HK.ts │ │ ├── en_IE.ts │ │ ├── en_IN.ts │ │ ├── en_NG.ts │ │ ├── en_US.ts │ │ ├── en_ZA.ts │ │ ├── eo.ts │ │ ├── es.ts │ │ ├── es_MX.ts │ │ ├── fa.ts │ │ ├── fi.ts │ │ ├── fr.ts │ │ ├── fr_BE.ts │ │ ├── fr_CA.ts │ │ ├── fr_CH.ts │ │ ├── fr_LU.ts │ │ ├── fr_SN.ts │ │ ├── he.ts │ │ ├── hr.ts │ │ ├── hu.ts │ │ ├── hy.ts │ │ ├── id_ID.ts │ │ ├── index.ts │ │ ├── it.ts │ │ ├── ja.ts │ │ ├── ka_GE.ts │ │ ├── ko.ts │ │ ├── ku_ckb.ts │ │ ├── ku_kmr_latin.ts │ │ ├── lv.ts │ │ ├── mk.ts │ │ ├── nb_NO.ts │ │ ├── ne.ts │ │ ├── nl.ts │ │ ├── nl_BE.ts │ │ ├── pl.ts │ │ ├── pt_BR.ts │ │ ├── pt_PT.ts │ │ ├── ro.ts │ │ ├── ro_MD.ts │ │ ├── ru.ts │ │ ├── sk.ts │ │ ├── sl_SI.ts │ │ ├── sr_RS_latin.ts │ │ ├── sv.ts │ │ ├── ta_IN.ts │ │ ├── th.ts │ │ ├── tr.ts │ │ ├── uk.ts │ │ ├── ur.ts │ │ ├── uz_UZ_latin.ts │ │ ├── vi.ts │ │ ├── yo_NG.ts │ │ ├── zh_CN.ts │ │ ├── zh_TW.ts │ │ └── zu_ZA.ts │ ├── locales/ │ │ ├── af_ZA/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ar/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ ├── team/ │ │ │ │ ├── creature.ts │ │ │ │ ├── index.ts │ │ │ │ └── name.ts │ │ │ └── vehicle/ │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ ├── manufacturer.ts │ │ │ ├── model.ts │ │ │ └── type.ts │ │ ├── az/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── base/ │ │ │ ├── color/ │ │ │ │ ├── index.ts │ │ │ │ └── space.ts │ │ │ ├── database/ │ │ │ │ ├── collation.ts │ │ │ │ ├── engine.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ └── time_zone.ts │ │ │ ├── hacker/ │ │ │ │ ├── abbreviation.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── emoji.ts │ │ │ │ ├── http_status_code.ts │ │ │ │ ├── index.ts │ │ │ │ ├── jwt_algorithm.ts │ │ │ │ └── user_agent_pattern.ts │ │ │ ├── location/ │ │ │ │ ├── country_code.ts │ │ │ │ ├── index.ts │ │ │ │ └── time_zone.ts │ │ │ ├── metadata.ts │ │ │ └── system/ │ │ │ ├── directory_path.ts │ │ │ ├── index.ts │ │ │ └── mime_type.ts │ │ ├── bn_BD/ │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ └── state.ts │ │ │ └── metadata.ts │ │ ├── cs_CZ/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── cy/ │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ └── metadata.ts │ │ ├── da/ │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── company_name.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── middle_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── de/ │ │ │ ├── animal/ │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── database/ │ │ │ │ ├── column.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── nobility_title_prefix.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── de_AT/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── nobility_title_prefix.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ └── index.ts │ │ ├── de_CH/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country_code.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── dv/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── el/ │ │ │ ├── app/ │ │ │ │ ├── author.ts │ │ │ │ ├── index.ts │ │ │ │ ├── name.ts │ │ │ │ └── version.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── credit_card/ │ │ │ │ │ ├── american_express.ts │ │ │ │ │ ├── discover.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mastercard.ts │ │ │ │ │ └── visa.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── hacker/ │ │ │ │ ├── abbreviation.ts │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── noun.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── team/ │ │ │ ├── creature.ts │ │ │ ├── index.ts │ │ │ └── name.ts │ │ ├── en/ │ │ │ ├── airline/ │ │ │ │ ├── airline.ts │ │ │ │ ├── airplane.ts │ │ │ │ ├── airport.ts │ │ │ │ └── index.ts │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── cetacean.ts │ │ │ │ ├── cow.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── horse.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── lion.ts │ │ │ │ ├── pet_name.ts │ │ │ │ ├── rabbit.ts │ │ │ │ ├── rodent.ts │ │ │ │ ├── snake.ts │ │ │ │ └── type.ts │ │ │ ├── app/ │ │ │ │ ├── author.ts │ │ │ │ ├── index.ts │ │ │ │ ├── name.ts │ │ │ │ └── version.ts │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── database/ │ │ │ │ ├── column.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── credit_card/ │ │ │ │ │ ├── american_express.ts │ │ │ │ │ ├── diners_club.ts │ │ │ │ │ ├── discover.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── jcb.ts │ │ │ │ │ ├── mastercard.ts │ │ │ │ │ └── visa.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transaction_description_pattern.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── food/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── description_pattern.ts │ │ │ │ ├── dish.ts │ │ │ │ ├── dish_pattern.ts │ │ │ │ ├── ethnic_category.ts │ │ │ │ ├── fruit.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingredient.ts │ │ │ │ ├── meat.ts │ │ │ │ ├── spice.ts │ │ │ │ └── vegetable.ts │ │ │ ├── hacker/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingverb.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── example_email.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── album.ts │ │ │ │ ├── artist.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ └── song_name.ts │ │ │ ├── person/ │ │ │ │ ├── bio_part.ts │ │ │ │ ├── bio_pattern.ts │ │ │ │ ├── bio_supporter.ts │ │ │ │ ├── first_name.ts │ │ │ │ ├── gender.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_title_pattern.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── middle_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ ├── suffix.ts │ │ │ │ └── western_zodiac_sign.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ ├── team/ │ │ │ │ ├── creature.ts │ │ │ │ ├── index.ts │ │ │ │ └── name.ts │ │ │ ├── vehicle/ │ │ │ │ ├── bicycle_type.ts │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── manufacturer.ts │ │ │ │ ├── model.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── en_AU/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_AU_ocker/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_BORK/ │ │ │ ├── index.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── index.ts │ │ │ └── last_name_pattern.ts │ │ ├── en_CA/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country_code.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── postcode_by_state.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_GB/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_infix.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_GH/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_HK/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── postcode_by_state.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_cantonese_part.ts │ │ │ │ ├── street_english_part.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_IE/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_IN/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_NG/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── en_US/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode_by_state.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── area_code.ts │ │ │ ├── exchange_code.ts │ │ │ └── index.ts │ │ ├── en_ZA/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── area_code.ts │ │ │ ├── exchange_code.ts │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── eo/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── index.ts │ │ │ │ ├── lion.ts │ │ │ │ └── type.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── database/ │ │ │ │ ├── column.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── hacker/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingverb.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── bio_part.ts │ │ │ │ ├── bio_pattern.ts │ │ │ │ ├── first_name.ts │ │ │ │ ├── gender.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ └── western_zodiac_sign.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ └── vehicle/ │ │ │ ├── fuel.ts │ │ │ └── index.ts │ │ ├── es/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_title_pattern.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── es_MX/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── team/ │ │ │ ├── creature.ts │ │ │ ├── index.ts │ │ │ └── name.ts │ │ ├── fa/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── credit_card/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mastercard.ts │ │ │ │ │ └── visa.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── example_email.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ └── index.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── vehicle/ │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── manufacturer.ts │ │ │ │ ├── model.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── fi/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── cetacean.ts │ │ │ │ ├── cow.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── horse.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── lion.ts │ │ │ │ ├── rabbit.ts │ │ │ │ ├── snake.ts │ │ │ │ └── type.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ └── index.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_title_pattern.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── vehicle/ │ │ │ │ ├── bicycle_type.ts │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── fr_BE/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── gender.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr_CA/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country_code.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr_CH/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── country_code.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr_LU/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ └── state.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── index.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── fr_SN/ │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ ├── he/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ └── index.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── hr/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── hu/ │ │ │ ├── animal/ │ │ │ │ ├── cat.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── horse.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ │ ├── hy/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── id_ID/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── cetacean.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── lion.ts │ │ │ │ ├── pet_name.ts │ │ │ │ ├── rabbit.ts │ │ │ │ ├── rodent.ts │ │ │ │ └── type.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── prefix.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── female_title.ts │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── male_title.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── index.ts │ │ ├── it/ │ │ │ ├── company/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── buzz_adjective.ts │ │ │ │ ├── buzz_noun.ts │ │ │ │ ├── buzz_verb.ts │ │ │ │ ├── descriptor.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── noun.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ja/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── cow.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── horse.ts │ │ │ │ └── index.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── category.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transaction_description_pattern.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── food/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── description_pattern.ts │ │ │ │ ├── dish.ts │ │ │ │ ├── dish_pattern.ts │ │ │ │ ├── ethnic_category.ts │ │ │ │ ├── fruit.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingredient.ts │ │ │ │ ├── meat.ts │ │ │ │ ├── spice.ts │ │ │ │ └── vegetable.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_title_pattern.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── sex.ts │ │ │ │ └── suffix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ └── vehicle/ │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ └── type.ts │ │ ├── ka_GE/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── prefix.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ko/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── index.ts │ │ │ │ ├── pet_name.ts │ │ │ │ └── rabbit.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── category.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_name_part.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── index.ts │ │ │ └── noun.ts │ │ ├── ku_ckb/ │ │ │ ├── index.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── middle_name.ts │ │ │ ├── middle_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ ├── ku_kmr_latin/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ ├── lv/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── prefix.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── mk/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── nb_NO/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── common_street_suffix.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ ├── suffix.ts │ │ │ │ └── western_zodiac_sign.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ ├── vehicle/ │ │ │ │ ├── bicycle_type.ts │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ └── interjection.ts │ │ ├── ne/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── last_name_pattern.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── nl/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── hacker/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── nl_BE/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ └── legal_entity_type.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── pl/ │ │ │ ├── animal/ │ │ │ │ ├── horse.ts │ │ │ │ └── index.ts │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ └── song_name.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── gender.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ └── team/ │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ ├── pt_BR/ │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ ├── suffix.ts │ │ │ │ └── western_zodiac_sign.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ │ ├── pt_PT/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ │ ├── ro/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ro_MD/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name_part.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_prefix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ru/ │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── suffix.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── hacker/ │ │ │ │ ├── abbreviation.ts │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingverb.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── middle_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── sk/ │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── sl_SI/ │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── bio_part.ts │ │ │ ├── bio_pattern.ts │ │ │ ├── bio_supporter.ts │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_title.ts │ │ │ ├── job_title_pattern.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ ├── sex.ts │ │ │ ├── suffix.ts │ │ │ └── western_zodiac_sign.ts │ │ ├── sr_RS_latin/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── sv/ │ │ │ ├── cell_phone/ │ │ │ │ ├── common_cell_prefix.ts │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── common_street_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── county.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ └── team/ │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ └── suffix.ts │ │ ├── ta_IN/ │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ └── metadata.ts │ │ ├── th/ │ │ │ ├── animal/ │ │ │ │ ├── cat.ts │ │ │ │ ├── dog.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── tr/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ └── prefix.ts │ │ │ └── phone_number/ │ │ │ ├── area_code.ts │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── uk/ │ │ │ ├── company/ │ │ │ │ ├── category.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ ├── street_prefix.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── job_type.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── middle_name.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── suffix.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── ur/ │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── cow.ts │ │ │ │ ├── crocodilia.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── lion.ts │ │ │ │ └── type.ts │ │ │ ├── app/ │ │ │ │ ├── author.ts │ │ │ │ ├── index.ts │ │ │ │ ├── name.ts │ │ │ │ └── version.ts │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ └── product_name.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ └── index.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── job_area.ts │ │ │ │ ├── job_descriptor.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ ├── sex.ts │ │ │ │ └── suffix.ts │ │ │ ├── team/ │ │ │ │ ├── creature.ts │ │ │ │ ├── index.ts │ │ │ │ └── name.ts │ │ │ └── vehicle/ │ │ │ ├── bicycle_type.ts │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ ├── manufacturer.ts │ │ │ ├── model.ts │ │ │ └── type.ts │ │ ├── uz_UZ_latin/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name_part.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── bio_parts.ts │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_title.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── sex.ts │ │ ├── vi/ │ │ │ ├── cell_phone/ │ │ │ │ ├── formats.ts │ │ │ │ └── index.ts │ │ │ ├── company/ │ │ │ │ ├── index.ts │ │ │ │ ├── name_pattern.ts │ │ │ │ └── prefix.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── domain_suffix.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── country.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ └── street_pattern.ts │ │ │ ├── lorem/ │ │ │ │ ├── index.ts │ │ │ │ └── word.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ └── name.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── yo_NG/ │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ └── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ │ ├── zh_CN/ │ │ │ ├── airline/ │ │ │ │ ├── airline.ts │ │ │ │ ├── airplane.ts │ │ │ │ ├── airport.ts │ │ │ │ └── index.ts │ │ │ ├── animal/ │ │ │ │ ├── bear.ts │ │ │ │ ├── bird.ts │ │ │ │ ├── cat.ts │ │ │ │ ├── dog.ts │ │ │ │ ├── fish.ts │ │ │ │ ├── horse.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insect.ts │ │ │ │ ├── pet_name.ts │ │ │ │ └── type.ts │ │ │ ├── book/ │ │ │ │ ├── author.ts │ │ │ │ ├── format.ts │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ ├── publisher.ts │ │ │ │ ├── series.ts │ │ │ │ └── title.ts │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── commerce/ │ │ │ │ ├── department.ts │ │ │ │ ├── index.ts │ │ │ │ ├── product_description.ts │ │ │ │ └── product_name.ts │ │ │ ├── company/ │ │ │ │ ├── category.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legal_entity_type.ts │ │ │ │ └── name_pattern.ts │ │ │ ├── database/ │ │ │ │ ├── column.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── finance/ │ │ │ │ ├── account_type.ts │ │ │ │ ├── credit_card/ │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── mastercard.ts │ │ │ │ │ ├── unionpay.ts │ │ │ │ │ └── visa.ts │ │ │ │ ├── currency.ts │ │ │ │ ├── index.ts │ │ │ │ └── transaction_type.ts │ │ │ ├── food/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── description_pattern.ts │ │ │ │ ├── dish.ts │ │ │ │ ├── dish_pattern.ts │ │ │ │ ├── ethnic_category.ts │ │ │ │ ├── fruit.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ingredient.ts │ │ │ │ ├── meat.ts │ │ │ │ ├── spice.ts │ │ │ │ └── vegetable.ts │ │ │ ├── hacker/ │ │ │ │ ├── adjective.ts │ │ │ │ ├── index.ts │ │ │ │ ├── noun.ts │ │ │ │ ├── phrase.ts │ │ │ │ └── verb.ts │ │ │ ├── index.ts │ │ │ ├── internet/ │ │ │ │ ├── free_email.ts │ │ │ │ └── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_name.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── continent.ts │ │ │ │ ├── country.ts │ │ │ │ ├── direction.ts │ │ │ │ ├── index.ts │ │ │ │ ├── language.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── secondary_address.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_name.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── music/ │ │ │ │ ├── genre.ts │ │ │ │ ├── index.ts │ │ │ │ └── song_name.ts │ │ │ ├── person/ │ │ │ │ ├── bio_part.ts │ │ │ │ ├── bio_pattern.ts │ │ │ │ ├── bio_supporter.ts │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ ├── phone_number/ │ │ │ │ ├── format/ │ │ │ │ │ ├── human.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── international.ts │ │ │ │ │ └── national.ts │ │ │ │ └── index.ts │ │ │ ├── science/ │ │ │ │ ├── chemical_element.ts │ │ │ │ ├── index.ts │ │ │ │ └── unit.ts │ │ │ ├── vehicle/ │ │ │ │ ├── bicycle_type.ts │ │ │ │ ├── fuel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── manufacturer.ts │ │ │ │ └── type.ts │ │ │ └── word/ │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ │ ├── zh_TW/ │ │ │ ├── color/ │ │ │ │ ├── human.ts │ │ │ │ └── index.ts │ │ │ ├── date/ │ │ │ │ ├── index.ts │ │ │ │ ├── month.ts │ │ │ │ └── weekday.ts │ │ │ ├── index.ts │ │ │ ├── location/ │ │ │ │ ├── building_number.ts │ │ │ │ ├── city_pattern.ts │ │ │ │ ├── city_prefix.ts │ │ │ │ ├── city_suffix.ts │ │ │ │ ├── index.ts │ │ │ │ ├── postcode.ts │ │ │ │ ├── state.ts │ │ │ │ ├── state_abbr.ts │ │ │ │ ├── street_address.ts │ │ │ │ ├── street_pattern.ts │ │ │ │ └── street_suffix.ts │ │ │ ├── metadata.ts │ │ │ ├── person/ │ │ │ │ ├── first_name.ts │ │ │ │ ├── index.ts │ │ │ │ ├── last_name.ts │ │ │ │ ├── last_name_pattern.ts │ │ │ │ ├── name.ts │ │ │ │ ├── prefix.ts │ │ │ │ └── sex.ts │ │ │ └── phone_number/ │ │ │ ├── format/ │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── zu_ZA/ │ │ ├── cell_phone/ │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── company/ │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet/ │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location/ │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person/ │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number/ │ │ ├── format/ │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ └── index.ts │ ├── modules/ │ │ ├── airline/ │ │ │ └── index.ts │ │ ├── animal/ │ │ │ └── index.ts │ │ ├── book/ │ │ │ └── index.ts │ │ ├── color/ │ │ │ └── index.ts │ │ ├── commerce/ │ │ │ ├── index.ts │ │ │ └── upc-check-digit.ts │ │ ├── company/ │ │ │ └── index.ts │ │ ├── database/ │ │ │ └── index.ts │ │ ├── datatype/ │ │ │ └── index.ts │ │ ├── date/ │ │ │ └── index.ts │ │ ├── finance/ │ │ │ ├── bitcoin.ts │ │ │ ├── iban.ts │ │ │ └── index.ts │ │ ├── food/ │ │ │ └── index.ts │ │ ├── git/ │ │ │ └── index.ts │ │ ├── hacker/ │ │ │ └── index.ts │ │ ├── helpers/ │ │ │ ├── eval.ts │ │ │ ├── index.ts │ │ │ └── luhn-check.ts │ │ ├── image/ │ │ │ └── index.ts │ │ ├── internet/ │ │ │ ├── char-mappings.ts │ │ │ └── index.ts │ │ ├── location/ │ │ │ └── index.ts │ │ ├── lorem/ │ │ │ └── index.ts │ │ ├── music/ │ │ │ └── index.ts │ │ ├── number/ │ │ │ └── index.ts │ │ ├── person/ │ │ │ └── index.ts │ │ ├── phone/ │ │ │ └── index.ts │ │ ├── science/ │ │ │ └── index.ts │ │ ├── string/ │ │ │ ├── index.ts │ │ │ └── uuid.ts │ │ ├── system/ │ │ │ └── index.ts │ │ ├── vehicle/ │ │ │ └── index.ts │ │ └── word/ │ │ ├── filter-word-list-by-length.ts │ │ └── index.ts │ ├── randomizer.ts │ ├── simple-faker.ts │ └── utils/ │ ├── merge-locales.ts │ └── mersenne.ts ├── test/ │ ├── __snapshots__/ │ │ └── locale-data.spec.ts.snap │ ├── all-functional.spec.ts │ ├── docs/ │ │ ├── __snapshots__/ │ │ │ └── format.spec.ts.snap │ │ ├── format.spec.ts │ │ └── versions.spec.ts │ ├── faker.spec.ts │ ├── integration/ │ │ └── modules/ │ │ └── image.spec.ts │ ├── internal/ │ │ ├── __snapshots__/ │ │ │ └── base32.spec.ts.snap │ │ ├── base32.spec.ts │ │ ├── base64.spec.ts │ │ ├── bind-this-to-member-functions.spec.ts │ │ ├── date.spec.ts │ │ ├── group-by.spec.ts │ │ ├── locale-proxy.spec.ts │ │ └── seed.spec.ts │ ├── locale-data.spec.ts │ ├── locale-imports.spec.ts │ ├── modules/ │ │ ├── __snapshots__/ │ │ │ ├── airline.spec.ts.snap │ │ │ ├── animal.spec.ts.snap │ │ │ ├── book.spec.ts.snap │ │ │ ├── color.spec.ts.snap │ │ │ ├── commerce.spec.ts.snap │ │ │ ├── company.spec.ts.snap │ │ │ ├── database.spec.ts.snap │ │ │ ├── datatype.spec.ts.snap │ │ │ ├── date.spec.ts.snap │ │ │ ├── finance.spec.ts.snap │ │ │ ├── food.spec.ts.snap │ │ │ ├── git.spec.ts.snap │ │ │ ├── hacker.spec.ts.snap │ │ │ ├── helpers.spec.ts.snap │ │ │ ├── image.spec.ts.snap │ │ │ ├── internet.spec.ts.snap │ │ │ ├── location.spec.ts.snap │ │ │ ├── lorem.spec.ts.snap │ │ │ ├── music.spec.ts.snap │ │ │ ├── number.spec.ts.snap │ │ │ ├── person.spec.ts.snap │ │ │ ├── phone.spec.ts.snap │ │ │ ├── random.spec.ts.snap │ │ │ ├── science.spec.ts.snap │ │ │ ├── string.spec.ts.snap │ │ │ ├── system.spec.ts.snap │ │ │ ├── vehicle.spec.ts.snap │ │ │ └── word.spec.ts.snap │ │ ├── airline.spec.ts │ │ ├── animal.spec.ts │ │ ├── book.spec.ts │ │ ├── color.spec.ts │ │ ├── commerce.spec.ts │ │ ├── company.spec.ts │ │ ├── database.spec.ts │ │ ├── datatype.spec.ts │ │ ├── date.spec.ts │ │ ├── finance-iban.spec.ts │ │ ├── finance.spec.ts │ │ ├── food.spec.ts │ │ ├── git.spec.ts │ │ ├── hacker.spec.ts │ │ ├── helpers-eval.spec.ts │ │ ├── helpers.spec-d.ts │ │ ├── helpers.spec.ts │ │ ├── image.spec.ts │ │ ├── internet.spec.ts │ │ ├── location.spec.ts │ │ ├── lorem.spec.ts │ │ ├── music.spec.ts │ │ ├── number.spec.ts │ │ ├── person.spec.ts │ │ ├── phone.spec.ts │ │ ├── science.spec.ts │ │ ├── string.spec.ts │ │ ├── system.spec.ts │ │ ├── vehicle.spec.ts │ │ └── word.spec.ts │ ├── require.spec.cts │ ├── scripts/ │ │ └── apidocs/ │ │ ├── .gitignore │ │ ├── __snapshots__/ │ │ │ ├── class.spec.ts.snap │ │ │ ├── method.spec.ts.snap │ │ │ ├── page.spec.ts.snap │ │ │ └── verify-jsdoc-tags.spec.ts.snap │ │ ├── class.example.ts │ │ ├── class.spec.ts │ │ ├── method.example.ts │ │ ├── method.spec.ts │ │ ├── page.spec.ts │ │ ├── utils.ts │ │ └── verify-jsdoc-tags.spec.ts │ ├── setup.ts │ ├── simple-faker.spec.ts │ ├── support/ │ │ ├── seeded-runs.ts │ │ └── times.ts │ ├── utils/ │ │ ├── __snapshots__/ │ │ │ └── mersenne.spec.ts.snap │ │ ├── merge-locales.spec.ts │ │ ├── mersenne-test-utils.ts │ │ └── mersenne.spec.ts │ └── vitest-extensions.ts ├── tsconfig.json ├── tsup.config.ts ├── vitest.config.ts └── vitest.it-config.ts ================================================ FILE CONTENTS ================================================ ================================================ FILE: .devcontainer/devcontainer.json ================================================ // For format details, see https://aka.ms/devcontainer.json. For config options, see the // README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node { "name": "FakerJs", "image": "mcr.microsoft.com/devcontainers/typescript-node:24@sha256:7870433befa3e1ed7a131e8360f13c105e52634f6f34dcfabb2cd7d6e3899f6f", // Features to add to the dev container. More info: https://containers.dev/features. // "features": {}, // Use 'forwardPorts' to make a list of ports inside the container available locally. "forwardPorts": [5173], "portsAttributes": { "5173": { "label": "Docs" } }, // Use 'postCreateCommand' to run commands after the container is created. "postCreateCommand": "npm install -g pnpm && pnpm install", // Configure tool-specific properties. "customizations": { "vscode": { "extensions": [ "dbaeumer.vscode-eslint", "editorconfig.editorconfig", "esbenp.prettier-vscode", "redhat.vscode-yaml", "github.vscode-pull-request-github" ] } } // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" } ================================================ FILE: .editorconfig ================================================ root = true [*] indent_style = space indent_size = 2 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false ================================================ FILE: .gitattributes ================================================ * text eol=lf *.png binary ================================================ FILE: .github/.codecov.yml ================================================ comment: layout: 'diff, flags, files' behavior: default require_changes: false require_base: false require_head: true coverage: status: project: default: target: 95% threshold: 2% patch: default: target: 40% threshold: 1% ================================================ FILE: .github/CODEOWNERS ================================================ # These owners will be the default owners for everything in the repo. # Unless a later match takes precedence, @faker-js/maintainers will # be requested for review when someone opens a pull request. * @faker-js/maintainers ================================================ FILE: .github/FUNDING.yml ================================================ # These are supported funding model platforms github: # Replace with the open collective's name https://docs.opencollective.com/help/collectives/osc-verification/github-sponsors patreon: # Replace with a single Patreon username open_collective: fakerjs ko_fi: # Replace with a single Ko-fi username tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry liberapay: # Replace with a single Liberapay username issuehunt: # Replace with a single IssueHunt username otechie: # Replace with a single Otechie username custom: # Replace with a single custom sponsorship URL ================================================ FILE: .github/ISSUE_TEMPLATE/bug_report.yml ================================================ name: "\U0001F41E Bug report" description: Report an issue labels: ['s: pending triage', 'c: bug'] body: - type: markdown attributes: value: | Thanks for taking the time to fill out this bug report! If you are unsure whether your problem is a bug or not, you can check the following: - use our [Discord community](https://chat.fakerjs.dev) - open a new [discussion](https://github.com/faker-js/faker/discussions) and ask your question there - use [StackOverflow using the tag `faker-js`](https://stackoverflow.com/questions/tagged/faker-js) - type: checkboxes id: checkboxes attributes: label: Pre-Checks description: Before submitting the issue, please make sure you do the following options: - label: Follow our [Code of Conduct](https://github.com/faker-js/faker/blob/next/CODE_OF_CONDUCT.md). required: true - label: Read the [Contributing Guidelines](https://github.com/faker-js/faker/blob/next/CONTRIBUTING.md). required: true - label: Read the [docs](https://fakerjs.dev/guide). required: true - label: Check that there isn't [already an issue](https://github.com/faker-js/faker/issues) that reports the same bug to avoid creating a duplicate. required: true - label: Make sure this is a Faker issue and not related to a combination with another package. required: true - label: Check that this is a concrete bug. For Q&A open a [GitHub Discussion](https://github.com/faker-js/faker/discussions) or join our [Discord Chat Server](https://chat.fakerjs.dev). required: true - label: The provided reproduction is a [minimal reproducible example](https://stackoverflow.com/help/minimal-reproducible-example) of the bug. required: true - label: I am willing to provide a PR. - type: textarea id: bug-description attributes: label: Describe the bug description: A clear and concise description of what the bug is. placeholder: I am doing ... What I expect is ... What actually happening is ... validations: required: true - type: textarea id: reproduction attributes: label: Minimal reproduction code description: | An URL to some git repository or gist that reproduces this issue. [Wtf is a minimum reproduction?](https://jmcdo29.github.io/wtf-is-a-minimum-reproduction) You can also provide a [Faker StackBlitz workspace](https://fakerjs.dev/new) with a reproduction. Alternatively you could write the code sample directly here with [markdown support.](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/creating-and-highlighting-code-blocks) placeholder: 'https://github.com/..., https://fakerjs.dev/new or ``` code ```' - type: textarea id: additional-context attributes: label: Additional Context description: | Anything else relevant? Please tell us here if you run Faker in a Web Browser. **Tip:** You can attach images, recordings or log files by clicking this area to highlight it and then dragging files in. - type: textarea id: environment-info attributes: label: Environment Info description: Output of `npx envinfo --system --npmPackages '@faker-js/*' --binaries --browsers` render: shell placeholder: | System: OS: _ CPU: _ Memory: _ / _ Container: Yes/No Shell: _ Binaries: Node: _ - /usr/bin/node Yarn: _ - /usr/bin/yarn npm: _ - /usr/bin/npm npmPackages: @faker-js/faker: _ => _ validations: required: true - type: checkboxes id: module-system attributes: label: Which module system do you use? options: - label: CJS - label: ESM - type: dropdown id: package-manager attributes: label: Used Package Manager description: Select the used package manager options: - npm - yarn - pnpm - other validations: required: true ================================================ FILE: .github/ISSUE_TEMPLATE/config.yml ================================================ blank_issues_enabled: false contact_links: - name: Discord Chat url: https://chat.fakerjs.dev about: Ask questions and discuss with other users in real time. - name: Questions & Discussions url: https://github.com/faker-js/faker.js/discussions about: Use GitHub discussions for message-board style questions and discussions. ================================================ FILE: .github/ISSUE_TEMPLATE/feature_request.yml ================================================ name: "\U0001F680 New feature proposal" description: Propose a new feature labels: ['s: pending triage', 'c: feature', 's: waiting for user interest'] body: - type: markdown attributes: value: Thanks for your interest in the project and taking the time to fill out this feature report! - type: textarea id: feature-description attributes: label: Clear and concise description of the problem description: 'As a developer using faker I want [goal / wish] so that [benefit]. If you intend to submit a PR for this issue, tell us in the description. Thanks!' validations: required: true - type: textarea id: suggested-solution attributes: label: Suggested solution description: 'In module [xy] we could provide following implementation...' validations: required: true - type: textarea id: alternative attributes: label: Alternative description: Clear and concise description of any alternative solutions or features you've considered. - type: textarea id: additional-context attributes: label: Additional context description: Any other context about the feature request here. ================================================ FILE: .github/ISSUE_TEMPLATE/freestyle.md ================================================ --- name: Freestyle Report about: Create a report to help us improve labels: 'pending triage' # This will automatically assign the 'pending triage' label --- ================================================ FILE: .github/commit-convention.md ================================================ ## Git Commit Message Convention > This is adapted from [Angular's commit convention](https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular). #### TL;DR: Messages must be matched by the following [regex](https://github.com/faker-js/faker/blob/ec4efba989c0a997ab55152697cbefbad160f562/scripts/verifyCommit.ts#L12) #### Examples Appears under "Features" header, `dev` subheader: ``` feat(dev): add 'comments' option ``` Appears under "Bug Fixes" header, `dev` subheader, with a link to issue #28: ``` fix(dev): fix dev error close #28 ``` Appears under "Performance Improvements" header, and under "Breaking Changes" with the breaking change explanation: ``` perf(build): remove 'foo' option BREAKING CHANGE: The 'foo' option has been removed. ``` The following commit and commit `667ecc1` do not appear in the changelog if they are under the same release. If not, the revert commit appears under the "Reverts" header. ``` revert: feat(compiler): add 'comments' option This reverts commit 667ecc1654a317a13331b17617d973392f415f02. ``` ### Full Message Format A commit message consists of a **header**, **body** and **footer**. The header has a **type**, **scope** and **subject**: ``` ():