prefix
stringlengths
512
512
suffix
stringlengths
256
256
middle
stringlengths
14
229
meta
dict
ight (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import {render, screen, fireEvent} from '@testing-library/react'; import * as React from 'react'; import {useState} from 'react'; import {ex...
{ const {asFragment} = render(<Counter />); expect(asFragment()).toMatchInlineSnapshot(` <DocumentFragment> <div> <h1> Counter </h1> <span> 0 </span> <button data-testid="button" >
utton data-testid="button" onClick={() => setState(state + 1)}> increment </button> </div> ); } function Title({text}) { log(`rendering: ${text}`); return <h1>{text}</h1>; } test('use-state', async () =>
{ "filepath": "compiler/packages/babel-plugin-react-compiler/src/__tests__/e2e/use-state.e2e.js", "language": "javascript", "file_size": 1277, "cut_index": 524, "middle_length": 229 }
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ const defaultTheme = require('tailwindcss/defaultTheme'); const colors = require('./colors'); module.exports = { content: [ ...
alc(100vh - 93px)', monaco_small: 'calc(100vh - 129px)', }, fontFamily: { sans: [ 'Optimistic Display', '-apple-system', ...defaultTheme.fontFamily.sans, ], }, }, }, plugins: [
, width: { toast: 'min(900px, 100vw - 40px)', 'toast-body': 'calc(100% - 60px)', 'toast-title': 'calc(100% - 40px)', }, height: { content: 'calc(100vh - 45px)', monaco: 'c
{ "filepath": "compiler/apps/playground/tailwind.config.js", "language": "javascript", "file_size": 1003, "cut_index": 512, "middle_length": 229 }
MIT license found in the * LICENSE file in the root directory of this source tree. */ // https://github.com/reactjs/reactjs.org/blob/main/beta/src/components/Logo.tsx export default function Logo(props: JSX.IntrinsicElements['svg']): JSX.Element { return ( <svg viewBox="0 0 410 369" fill="none" ...
535 334.19 22.3878 307.492 6.98883C283.649 -6.77511 250.631 -0.0395641 214.512 25.9753C211.316 28.2692 208.143 30.7097 204.97 33.2477C201.822 30.7097 198.65 28.2692 195.477 25.9753C159.359 -0.0395641 126.34 -6.79951 102.497 6.98883C75.8237 22.3878 66.6721
83.43 146.459 165.948 163.941 165.948 185.506C165.948 207.07 183.43 224.552 204.995 224.552Z" fill="currentColor" /> <path d="M409.99 184.505C409.99 153.707 381.437 126.667 335.996 108.925C343.342 60.6
{ "filepath": "compiler/apps/playground/components/Logo.tsx", "language": "tsx", "file_size": 4972, "cut_index": 614, "middle_length": 229 }
iates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import React, { startTransition, useId, unstable_ViewTransition as ViewTransition, unstable_addTransitionType as addTransitionType, } from 'react'; import clsx from 'clsx';...
addTransitionType(TOGGLE_TAB_TRANSITION); onTabChange(tab); }); }; return ( <div className="flex-1 min-w-[550px] sm:min-w-0"> <div className="flex flex-col h-full max-w-full"> <div className="flex p-2 flex-shrink-0">
b: string; onTabChange: (tab: string) => void; }): React.ReactElement { const id = useId(); const transitionName = `tab-highlight-${id}`; const handleTabChange = (tab: string): void => { startTransition(() => {
{ "filepath": "compiler/apps/playground/components/TabbedWindow.tsx", "language": "tsx", "file_size": 2588, "cut_index": 563, "middle_length": 229 }
Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import {memo} from 'react'; export const IconChevron = memo< JSX.IntrinsicElements['svg'] & { /** * The direction the arrow should point. ...
20 20" {...props}> <g fill="none" fillRule="evenodd" transform="translate(-446 -398)"> <path fill="currentColor" fillRule="nonzero" d="M95.8838835,240.366117 C95.3957281,239.877961 94.6042719,239.877961 94
ate-90'; const classes = className ? `${rotationClass} ${className}` : rotationClass; return ( <svg className={classes} xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0
{ "filepath": "compiler/apps/playground/components/Icons/IconChevron.tsx", "language": "tsx", "file_size": 1547, "cut_index": 537, "middle_length": 229 }
p-simple.js * * Named lambdas (e.g. cb1) may be defined in the top scope of a function and * used in a different lambda (getArrMap1). * * Here, we should try to determine if cb1 is actually called. In this case: * - getArrMap1 is assumed to be called as it's passed to JSX * - cb1 is not assumed to be called sinc...
return ( <Stringify getArrMap1={getArrMap1} getArrMap2={getArrMap2} shouldInvokeFns={true} /> ); } export const FIXTURE_ENTRYPOINT = { fn: useFoo, params: [{arr1: [], arr2: []}], sequentialRenders: [ {arr1: [], arr2:
e.value; const getArrMap2 = () => arr1.map(cb2);
{ "filepath": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/inner-function/nullable-objects/array-map-named-callback-cross-context.js", "language": "javascript", "file_size": 991, "cut_index": 582, "middle_length": 52 }
ort {Stringify, useIdentity} from 'shared-runtime'; /** * Here, the *inferred* dependencies of cb are `a` and `t1 = LoadContext capture x_@1`. * - t1 does not have a scope as it captures `x` after x's mutable range * - `x` is a context variable, which means its mutable range extends to all * references / aliase...
) { let x = useIdentity({val: 3}); if (cond) { x = b; } const cb = useCallback(() => { return [a, x]; }, [a, x]); return <Stringify cb={cb} shouldInvoke={true} />; } export const FIXTURE_ENTRYPOINT = { fn: useBar, params: [{a: 1,
due to a hook call) */ function useBar({a, b}, cond
{ "filepath": "compiler/packages/babel-plugin-react-compiler/src/__tests__/fixtures/compiler/preserve-memo-validation/useCallback-extended-contextvar-scope.tsx", "language": "tsx", "file_size": 932, "cut_index": 606, "middle_length": 52 }
MIT license found in the * LICENSE file in the root directory of this source tree. */ import {Resizable} from 're-resizable'; import React, { useId, unstable_ViewTransition as ViewTransition, unstable_addTransitionType as addTransitionType, startTransition, } from 'react'; import {EXPAND_ACCORDION_TRANSITIO...
{Array.from(props.tabs.keys()).map(name => { return ( <AccordionWindowItem name={name} key={name} tabs={props.tabs} tabsOpen={props.tabsOpen} setTabsOpen={prop
: Set<string>; setTabsOpen: (newTab: Set<string>) => void; changedPasses: Set<string>; }): React.ReactElement { return ( <div className="flex-1 min-w-[550px] sm:min-w-0"> <div className="flex flex-row h-full">
{ "filepath": "compiler/apps/playground/components/AccordionWindow.tsx", "language": "tsx", "file_size": 3717, "cut_index": 614, "middle_length": 229 }
oEditor, {loader, type Monaco} from '@monaco-editor/react'; import type {editor} from 'monaco-editor'; import * as monaco from 'monaco-editor'; import React, { useState, useRef, unstable_ViewTransition as ViewTransition, unstable_addTransitionType as addTransitionType, startTransition, } from 'react'; import ...
const [isExpanded, setIsExpanded] = useState(false); // TODO: Add back <Activity> after upgrading next.js return ( <> <div style={{ display: isExpanded ? 'block' : 'none', }}> {/* <Activity mode={isExpanded
n'; import {CONFIG_PANEL_TRANSITION} from '../../lib/transitionTypes'; loader.config({monaco}); export default function ConfigEditor({ formattedAppliedConfig, }: { formattedAppliedConfig: string; }): React.ReactElement {
{ "filepath": "compiler/apps/playground/components/Editor/ConfigEditor.tsx", "language": "tsx", "file_size": 6345, "cut_index": 716, "middle_length": 229 }
Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import {render} from '@testing-library/react'; import * as React from 'react'; function Button({label}) { const theme = useTheme(); const style = co...
chInlineSnapshot(` <DocumentFragment> <button color="white" > Click me </button> </DocumentFragment> `); // Update the label, but not the theme rerender(<Button label="Click again" />); // `computeStyle` s
tion computeStyle(theme) { styleComputations++; return theme === 'light' ? 'white' : 'black'; } test('update-button', () => { const {asFragment, rerender} = render(<Button label="Click me" />); expect(asFragment()).toMat
{ "filepath": "compiler/packages/babel-plugin-react-compiler/src/__tests__/e2e/update-button.e2e.js", "language": "javascript", "file_size": 1614, "cut_index": 537, "middle_length": 229 }
iates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { CompilerErrorDetail, CompilerDiagnostic, } from 'babel-plugin-react-compiler'; import {useDeferredValue, useMemo, useState} from 'react'; import {useStore} from '../S...
( () => compile(deferredStore.source, 'compiler', deferredStore.config), [deferredStore.source, deferredStore.config], ); const [linterOutput] = useMemo( () => compile(deferredStore.source, 'linter', deferredStore.config), [deferredStor
import prettyFormat from 'pretty-format'; export default function Editor(): JSX.Element { const store = useStore(); const deferredStore = useDeferredValue(store); const [compilerOutput, language, appliedOptions] = useMemo
{ "filepath": "compiler/apps/playground/components/Editor/EditorImpl.tsx", "language": "tsx", "file_size": 2201, "cut_index": 563, "middle_length": 229 }
ight (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin'); const path = require('path'); const nextConfig = { experimental: { ...
languages: ['typescript', 'javascript'], filename: 'static/[name].worker.js', }) ); } config.resolve.alias = { ...config.resolve.alias, 'react-compiler-runtime': path.resolve( __dirname, '
modules/#source-assets. config.module.rules.push({ test: /\.d\.ts/, type: 'asset/source', }); // Monaco Editor if (!options.isServer) { config.plugins.push( new MonacoWebpackPlugin({
{ "filepath": "compiler/apps/playground/next.config.js", "language": "javascript", "file_size": 1255, "cut_index": 524, "middle_length": 229 }
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (!file_exists(__DIR__.'/src')) { exit(0); } $fileHeaderParts = [ <<<'EOF' This file is part of the Symfony package. (c) Fabien Potencier <fabien@symfony.co...
| uniq | sort` '@PHP8x1Migration:risky' => true, '@PHPUnit9x1Migration:risky' => true, // take version from src/Symfony/Bridge/PhpUnit/phpunit.xml.dist#L4 '@Symfony' => true, '@Symfony:risky' => true, 'header_comment
(new PhpCsFixer\Config()) ->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect()) ->setRules([ '@PHP8x1Migration' => true, // take lowest version from `git grep -h '"php"' **/composer.json
{ "filepath": ".php-cs-fixer.dist.php", "language": "php", "file_size": 4998, "cut_index": 614, "middle_length": 229 }
package that have been modified. */ if (3 > $_SERVER['argc']) { echo "Usage: app-packages modified-files\n"; exit(1); } $allPackages = json_decode($_SERVER['argv'][1], true, 512, \JSON_THROW_ON_ERROR); $modifiedFiles = json_decode($_SERVER['argv'][2], true, 512, \JSON_THROW_ON_ERROR); // Sort to get the lo...
geDir) => 'component_bridge', str_contains($packageDir, 'Symfony/Component/') => 'component', str_contains($packageDir, 'Symfony/Contracts/') => 'contract', str_ends_with($packageDir, 'Symfony/Contracts') => 'contracts', def
{ return match (true) { str_contains($packageDir, 'Symfony/Bridge/') => 'bridge', str_contains($packageDir, 'Symfony/Bundle/') => 'bundle', 1 === preg_match('@Symfony/Component/[^/]+/Bridge/@', $packa
{ "filepath": ".github/get-modified-packages.php", "language": "php", "file_size": 2171, "cut_index": 563, "middle_length": 229 }
SAPI) { echo "This script can only be run from the command line.\n"; exit(1); } $mainRepo = 'https://github.com/symfony/symfony'; exec('find src -name composer.json', $packages); foreach ($packages as $package) { $package = dirname($package); $c = file_get_contents($package.'/.gitattributes'); $c ...
is what we call a "subtree split": a read-only subset of that main repository. We're looking forward to your PR there! EOTXT ); @mkdir($package.'/.github/workflows'); file_put_contents($package.'/.github/workflows/close-pull-r
ackage.'/.github/PULL_REQUEST_TEMPLATE.md', <<<EOTXT Please do not submit any Pull Requests here. They will be closed. --- Please submit your PR here instead: {$mainRepo} This repository
{ "filepath": ".github/sync-packages.php", "language": "php", "file_size": 1717, "cut_index": 537, "middle_length": 229 }
TestCase; use Symfony\Component\Translation\TranslatableMessage; use Symfony\Contracts\Translation\TranslatorInterface; use Symfony\Contracts\Translation\TranslatorTrait; /** * Test should cover all languages mentioned on http://translate.sourceforge.net/wiki/l10n/pluralforms * and Plural forms mentioned on http://w...
e is smaller. * * @author Clemens Tolboom clemens@build2be.nl */ class TranslatorTest extends TestCase { private string $defaultLocale; protected function setUp(): void { $this->defaultLocale = \Locale::getDefault(); \Locale
he mozilla code is also interesting to check for. * * As mentioned by chx http://drupal.org/node/1273968 we can cover all by testing number from 0 to 199 * * The goal to cover all languages is too far fetched so this test cas
{ "filepath": "src/Symfony/Contracts/Translation/Test/TranslatorTest.php", "language": "php", "file_size": 16689, "cut_index": 921, "middle_length": 229 }
ge. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Service; use Symfony\Contracts\Service\Attribute\SubscribedService; /** * A ServiceSubscriber exposes ...
any other services not specified by the method. * * It is expected that ServiceSubscriber instances consume PSR-11-based service locators internally. * This interface does not dictate any injection method for these service locators, although constructo
y the service names used internally. Service types that start with an interrogation * mark "?" are optional, while the other ones are mandatory service dependencies. * * The injected service locators SHOULD NOT allow access to
{ "filepath": "src/Symfony/Contracts/Service/ServiceSubscriberInterface.php", "language": "php", "file_size": 2750, "cut_index": 563, "middle_length": 229 }
buted with this source code. */ namespace Symfony\Contracts\HttpClient; use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface; use Symfony\Contracts\HttpClient\Test\HttpClientTestCase; /** * Provides flexible methods for requesting HTTP resources synchronously or asynchronously. * * @see HttpCli...
// string - a token enabling HTTP Bearer authorization (RFC 6750) 'auth_bearer' => null, // string[] - associative array of query string values to merge with the request's URL 'query' => [], // iterable|string[]|string[]
containing the username as first value, and optionally the // password as the second one; or string like username:password - enabling HTTP Basic // authentication (RFC 7617) 'auth_basic' => null,
{ "filepath": "src/Symfony/Contracts/HttpClient/HttpClientInterface.php", "language": "php", "file_size": 6166, "cut_index": 716, "middle_length": 229 }
ge. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Tests\Service; use Psr\Container\ContainerInterface; use Symfony\Contracts\Service\Attribute\Required; u...
LegacyParentTestService implements ServiceSubscriberInterface { use ServiceSubscriberTrait; protected $container; #[SubscribedService] public function aService(): Service2 { return $this->container->get(__METHOD__); }
tService { public function aParentService(): Service1 { } public function setContainer(ContainerInterface $container): ?ContainerInterface { return $container; } } class LegacyTestService extends
{ "filepath": "src/Symfony/Contracts/Tests/Service/LegacyTestService.php", "language": "php", "file_size": 2416, "cut_index": 563, "middle_length": 229 }
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Tests\Cache; use PHPUnit\Framework\TestCase; use Psr\Cache\CacheItemInterface; use Psr\Cache\CacheItemPoolInterface; use Symfony\Contracts\Cache\CacheTrait...
d data'); $cache = $this->getMockBuilder(TestPool::class) ->onlyMethods(['getItem', 'save']) ->getMock(); $cache->expects($this->once()) ->method('getItem') ->with('key') ->willRe
:class); $item->method('set') ->willReturn($item); $item->method('isHit') ->willReturn(false); $item->expects($this->once()) ->method('set') ->with('compute
{ "filepath": "src/Symfony/Contracts/Tests/Cache/CacheTraitTest.php", "language": "php", "file_size": 3835, "cut_index": 614, "middle_length": 229 }
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Cache; use Psr\Cache\InvalidArgumentException; /** ...
* race conditions. * * @param string[] $tags An array of tags to invalidate * * @return bool True on success * * @throws InvalidArgumentException When $tags is not valid */ public function invalidateTags(array $t
s using tags. * * When implemented on a PSR-6 pool, invalidation should not apply * to deferred items. Instead, they should be committed as usual. * This allows replacing old tagged values by new ones without
{ "filepath": "src/Symfony/Contracts/Cache/TagAwareCacheInterface.php", "language": "php", "file_size": 1011, "cut_index": 512, "middle_length": 229 }
معتدل مائل للغامق', '👩🏽‍❤‍💋‍👩🏿' => 'قبلة: سيدة، وسيدة، وبشرة بلون معتدل، وبشرة بلون غامق', '👩🏾‍❤‍💋‍👩🏻' => 'قبلة: سيدة، وسيدة، وبشرة بلون معتدل مائل للغامق، وبشرة بلون فاتح', '👩🏾‍❤‍💋‍👩🏼' => 'قبلة: سيدة، وسيدة، وبشرة بلون معتدل مائل للغامق، وبشرة بلون فاتح ومعتدل', '👩🏾‍❤‍💋‍👩🏽' => 'قبلة...
ن معتدل', '👩🏿‍❤‍💋‍👩🏾' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق، وبشرة بلون معتدل مائل للغامق', '👩🏿‍❤‍💋‍👩🏿' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق', '🧑🏻‍🫯‍🧑🏼' => 'مصارعون: بشرة بلون فاتح وبشرة بلون فاتح ومعتدل', '🧑🏻‍🫯‍🧑🏽' => 'مصارعون: بشرة بلو
ن غامق', '👩🏿‍❤‍💋‍👩🏻' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق، وبشرة بلون فاتح', '👩🏿‍❤‍💋‍👩🏼' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق، وبشرة بلون فاتح ومعتدل', '👩🏿‍❤‍💋‍👩🏽' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق، وبشرة بلو
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-ar.php", "language": "php", "file_size": 273797, "cut_index": 7068, "middle_length": 229 }
'👨🏿‍🦲' => 'gwaz : krocʼhen teñval, moal', '👱🏿‍♀' => 'meleganez : krocʼhen teñval', '👩🏿‍🦰' => 'maouez : krocʼhen teñval, blev ruz', '👩🏿‍🦱' => 'maouez : krocʼhen teñval, blev rodellek', '👩🏿‍🦳' => 'maouez : krocʼhen teñval, blev gwenn', '👩🏿‍🦲' => 'maouez : krocʼhen teñval, moal', ...
en teñval', '👨🏿‍🏭' => 'micherour : krocʼhen teñval', '👩🏿‍🏭' => 'micherourez : krocʼhen teñval', '👨🏿‍💼' => 'implijad : krocʼhen teñval', '👩🏿‍💼' => 'implijadez : krocʼhen teñval', '👨🏿‍🔬' => 'skiantour : krocʼhen teñval', '👩🏿‍🔬' => 'sk
ñval', '👩🏿‍⚖' => 'barnerez : krocʼhen teñval', '👨🏿‍🌾' => 'labourer-douar : krocʼhen teñval', '👩🏿‍🌾' => 'labourerez-douar : krocʼhen teñval', '👨🏿‍🍳' => 'keginer : krocʼhen teñval', '👩🏿‍🍳' => 'keginerez : krocʼh
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-br.php", "language": "php", "file_size": 47485, "cut_index": 2151, "middle_length": 229 }
farbe', '👩🏿‍❤‍💋‍👨🏾' => 'sich küssendes Paar: Frau, Mann, dunkle Hautfarbe und mitteldunkle Hautfarbe', '👩🏿‍❤‍💋‍👨🏿' => 'sich küssendes Paar: Frau, Mann und dunkle Hautfarbe', '👩🏻‍❤‍💋‍👩🏻' => 'sich küssendes Paar: Frau, Frau und helle Hautfarbe', '👩🏻‍❤‍💋‍👩🏼' => 'sich küssendes Paar: Fra...
‍❤‍💋‍👩🏼' => 'sich küssendes Paar: Frau, Frau und mittelhelle Hautfarbe', '👩🏼‍❤‍💋‍👩🏽' => 'sich küssendes Paar: Frau, Frau, mittelhelle Hautfarbe und mittlere Hautfarbe', '👩🏼‍❤‍💋‍👩🏾' => 'sich küssendes Paar: Frau, Frau, mittelhelle Hautfarbe und mitt
rbe und mitteldunkle Hautfarbe', '👩🏻‍❤‍💋‍👩🏿' => 'sich küssendes Paar: Frau, Frau, helle Hautfarbe und dunkle Hautfarbe', '👩🏼‍❤‍💋‍👩🏻' => 'sich küssendes Paar: Frau, Frau, mittelhelle Hautfarbe und helle Hautfarbe', '👩🏼
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-de.php", "language": "php", "file_size": 212737, "cut_index": 7068, "middle_length": 229 }
ns): array { array_reduce($versions, function ($carry, $version) use (&$expandedVersions) { return $expandedVersions[] = array_filter(array_merge($carry, $version), fn ($v) => '__unset' !== $v); }, []); return $expandedVersions ?? []; } if (3 > $_SERVER['argc']) { echo "Usage: branch version d...
]['preferred-install']; foreach ($dirs as $k => $dir) { if (!system("git diff --name-only $mergeBase -- $dir", $exitStatus)) { if ($exitStatus) { exit($exitStatus); } unset($dirs[$k]); continue; } ec
))); $version = array_shift($dirs); $packages = []; $flags = JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE; $preferredInstall = json_decode(file_get_contents(__DIR__.'/composer-config.json'), true)['config'
{ "filepath": ".github/build-packages.php", "language": "php", "file_size": 3437, "cut_index": 614, "middle_length": 229 }
ONS env var when running this script.\n"; exit(1); } require __DIR__.'/../.phpunit/phpunit/vendor/autoload.php'; $loader = require __DIR__.'/../vendor/autoload.php'; Symfony\Component\ErrorHandler\DebugClassLoader::enable(); $missingReturnTypes = []; foreach ($loader->getClassMap() as $class => $file) { $fi...
ony/Bridge/Doctrine/Middleware/Debug/'): case false !== strpos($file, '/src/Symfony/Bridge/Doctrine/Tests/Fixtures/LegacyQueryMock.php'): case false !== strpos($file, '/src/Symfony/Bridge/PhpUnit/'): case false !== strpos($file, '/s
/Traits/Relay'): if (!str_ends_with($file, 'Proxy.php')) { break; } continue 2; case false !== strpos($file, '/vendor/'): case false !== strpos($file, '/src/Symf
{ "filepath": ".github/patch-types.php", "language": "php", "file_size": 5730, "cut_index": 716, "middle_length": 229 }
ubmitted as a PR on the lowest maintained branch, // possibly after using GPT to translate all the targets it contains // (state="needs-review-translation" should then be used on corresponding target tags.) use Symfony\Component\Finder\Finder; use Symfony\Component\Translation\Loader\XliffFileLoader; use Symfony\Compo...
asis:names:tc:xliff:document:1.2'); $xliffFile = $xliff->appendChild($dom->createElement('file')); $xliffFile->setAttribute('source-language', str_replace('_', '-', $defaultLocale)); $xliffFile->setAttribute('target-language', 'no' === $messag
ll) { $dom = new \DOMDocument('1.0', 'utf-8'); $dom->formatOutput = true; $xliff = $dom->appendChild($dom->createElement('xliff')); $xliff->setAttribute('version', '1.2'); $xliff->setAttribute('xmlns', 'urn:o
{ "filepath": ".github/sync-translations.php", "language": "php", "file_size": 5383, "cut_index": 716, "middle_length": 229 }
buted with this source code. */ namespace Symfony\Contracts\Translation; use Symfony\Component\Translation\Exception\InvalidArgumentException; /** * A trait to help implement TranslatorInterface and LocaleAwareInterface. * * @author Fabien Potencier <fabien@symfony.com> */ trait TranslatorTrait { private ?s...
{ if (null === $id || '' === $id) { return ''; } foreach ($parameters as $k => $v) { if ($v instanceof TranslatableInterface) { $parameters[$k] = $v->trans($this, $locale); }
{ return $this->locale ?: (class_exists(\Locale::class) ? \Locale::getDefault() : 'en'); } public function trans(?string $id, array $parameters = [], ?string $domain = null, ?string $locale = null): string
{ "filepath": "src/Symfony/Contracts/Translation/TranslatorTrait.php", "language": "php", "file_size": 7986, "cut_index": 716, "middle_length": 229 }
ge. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Translation; /** * @author Fabien Potencier <fabien@symfony.com> */ interface TranslatorInterface { ...
mber, locale and the pluralization rules in the message * itself. * * The message supports two different types of pluralization rules: * * interval: {0} There are no apples|{1} There is one apple|]1,Inf] There are %count% apples
ording to this number using the following rules: * * Given a message with different plural translations separated by a * pipe (|), this method returns the correct portion of the message based * on the given nu
{ "filepath": "src/Symfony/Contracts/Translation/TranslatorInterface.php", "language": "php", "file_size": 2562, "cut_index": 563, "middle_length": 229 }
?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Service; /** * Provides a way to reset an object to i...
ces, so that they can be used to handle several requests in the same * process loop (note that we advise making your services stateless instead of * implementing this interface when possible.) */ interface ResetInterface { /** * @return void
ll to internal dependencies. All properties of the object should be put * back to the same state it had when it was first ready to use. * * This method could be called, for example, to recycle objects that are used as * servi
{ "filepath": "src/Symfony/Contracts/Service/ResetInterface.php", "language": "php", "file_size": 1035, "cut_index": 513, "middle_length": 229 }
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Service; use Psr\Container\ContainerExceptionInterface; use Psr\Container\NotFoundExceptionInterface; // Help opcache.preload discover always-needed symbo...
public function __construct( private array $factories, ) { } public function has(string $id): bool { return isset($this->factories[$id]); } public function get(string $id): mixed { if (!isset($this-
bin.chalas@gmail.com> * @author Nicolas Grekas <p@tchwork.com> */ trait ServiceLocatorTrait { private array $loading = []; private array $providedTypes; /** * @param array<string, callable> $factories */
{ "filepath": "src/Symfony/Contracts/Service/ServiceLocatorTrait.php", "language": "php", "file_size": 3604, "cut_index": 614, "middle_length": 229 }
This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Service; use Psr\Container\ContainerInterface; /** * A ServiceP...
* Returns an associative array of service types keyed by the identifiers provided by the current container. * * Examples: * * * ['logger' => 'Psr\Log\LoggerInterface'] means the object provides a service named "logger" that implemen
emplate-covariant T of mixed */ interface ServiceProviderInterface extends ContainerInterface { /** * @return T */ public function get(string $id): mixed; public function has(string $id): bool; /**
{ "filepath": "src/Symfony/Contracts/Service/ServiceProviderInterface.php", "language": "php", "file_size": 1382, "cut_index": 524, "middle_length": 229 }
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Service; use Psr\Container\ContainerInterface; use Symfony\Contracts\Service\Attribute\Required; use Symfony\Contracts\Service\Attribute\SubscribedService;...
d ContainerInterface $container; public static function getSubscribedServices(): array { $services = method_exists(get_parent_class(self::class) ?: '', __FUNCTION__) ? parent::getSubscribedServices() : []; $reflectors = [
sName::methodName" so that the implementation * of subscriber methods can be just `return $this->container->get(__METHOD__);`. * * @author Kevin Bond <kevinbond@gmail.com> */ trait ServiceMethodsSubscriberTrait { protecte
{ "filepath": "src/Symfony/Contracts/Service/ServiceMethodsSubscriberTrait.php", "language": "php", "file_size": 4173, "cut_index": 614, "middle_length": 229 }
part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Service\Attribute; use Symfony\Contracts\Service\ServiceMethodsSubscriberTrait...
(\Attribute::TARGET_METHOD | \Attribute::TARGET_PROPERTY)] final class SubscribedService { /** @var object[] */ public array $attributes; /** * @param string|null $key The key to use for the service * @param string|null
lientInterface::class, false, new Target('githubApi')) * * Use with {@see ServiceMethodsSubscriberTrait} to mark a method's return type * as a subscribed service. * * @author Kevin Bond <kevinbond@gmail.com> */ #[\Attribute
{ "filepath": "src/Symfony/Contracts/Service/Attribute/SubscribedService.php", "language": "php", "file_size": 1553, "cut_index": 537, "middle_length": 229 }
ge. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Service\Test; use PHPUnit\Framework\TestCase; use Psr\Container\ContainerExceptionInterface; use Psr\Con...
iceLocatorTrait; }; } public function testHas() { $locator = $this->getServiceLocator([ 'foo' => static fn () => 'bar', 'bar' => static fn () => 'baz', static fn () => 'dummy', ]);
* @param array<string, callable> $factories */ protected function getServiceLocator(array $factories): ContainerInterface { return new class($factories) implements ContainerInterface { use Serv
{ "filepath": "src/Symfony/Contracts/Service/Test/ServiceLocatorTestCase.php", "language": "php", "file_size": 2992, "cut_index": 563, "middle_length": 229 }
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\HttpClient; use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface; use Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface; use...
ortExceptionInterface when a network error occurs */ public function getStatusCode(): int; /** * Gets the HTTP headers of the response. * * @param bool $throw Whether an exception should be thrown on 3/4/5xx status codes *
ExceptionInterface; /** * A (lazily retrieved) HTTP response. * * @author Nicolas Grekas <p@tchwork.com> */ interface ResponseInterface { /** * Gets the HTTP status code of the response. * * @throws Transp
{ "filepath": "src/Symfony/Contracts/HttpClient/ResponseInterface.php", "language": "php", "file_size": 4819, "cut_index": 614, "middle_length": 229 }
ge. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\HttpClient; use Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface; /** * The interfac...
out has been reached. * * @throws TransportExceptionInterface on a network error */ public function isTimeout(): bool; /** * Tells when headers just arrived. * * @throws TransportExceptionInterface on a network error
TransportExceptionInterface * MUST be thrown by the destructor unless one was already thrown by another method. * * @author Nicolas Grekas <p@tchwork.com> */ interface ChunkInterface { /** * Tells when the idle time
{ "filepath": "src/Symfony/Contracts/HttpClient/ChunkInterface.php", "language": "php", "file_size": 2048, "cut_index": 563, "middle_length": 229 }
is->assertSame([], $response->getInfo('response_headers')); $this->assertSame($data, $response->getInfo()['user_data']); $this->assertSame(200, $response->getStatusCode()); $info = $response->getInfo(); $this->assertNull($info['error']); $this->assertSame(0, $info['redirect_coun...
$body = json_decode($response->getContent(), true); $this->assertSame($body, $response->toArray()); $this->assertSame('HTTP/1.1', $body['SERVER_PROTOCOL']); $this->assertSame('/', $body['REQUEST_URI']); $this->assertSa
tp://localhost:8057/', $info['url']); $headers = $response->getHeaders(); $this->assertSame('localhost:8057', $headers['host'][0]); $this->assertSame(['application/json'], $headers['content-type']);
{ "filepath": "src/Symfony/Contracts/HttpClient/Test/HttpClientTestCase.php", "language": "php", "file_size": 40871, "cut_index": 2151, "middle_length": 229 }
part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\HttpClient\Test; use Symfony\Component\Process\PhpExecutableFinder; use Symfon...
} else { $ip = '127.0.0.1'; } if (isset(self::$process[$port])) { self::$process[$port]->stop(); } else { register_shutdown_function(static function () use ($port) { self::$pr
port = 8057/* , ?string $workingDirectory = null */): Process { $workingDirectory = \func_get_args()[1] ?? __DIR__.'/Fixtures/web'; if (0 > $port) { $port = -$port; $ip = '[::1]';
{ "filepath": "src/Symfony/Contracts/HttpClient/Test/TestHttpServer.php", "language": "php", "file_size": 1755, "cut_index": 537, "middle_length": 229 }
f (!$_POST) { $_POST = json_decode(file_get_contents('php://input'), true); $_POST['content-type'] = $_SERVER['HTTP_CONTENT_TYPE'] ?? '?'; } $headers = [ 'SERVER_PROTOCOL', 'SERVER_NAME', 'REQUEST_URI', 'REQUEST_METHOD', 'PHP_AUTH_USER', 'PHP_AUTH_PW', 'REMOTE_ADDR', 'REMOTE_POR...
header('X-Request-Vars: '.json_encode($vars, \JSON_UNESCAPED_SLASHES | \JSON_UNESCAPED_UNICODE)); header('Content-Length: '.strlen($json), true); break; case '/': case '/?a=a&b=b': case 'http://127.0.0.1:8057/': case
ars[$k] = $v; } } $json = json_encode($vars, \JSON_PRETTY_PRINT | \JSON_UNESCAPED_SLASHES | \JSON_UNESCAPED_UNICODE); switch (parse_url($vars['REQUEST_URI'], \PHP_URL_PATH)) { default: exit; case '/head':
{ "filepath": "src/Symfony/Contracts/HttpClient/Test/Fixtures/web/index.php", "language": "php", "file_size": 5622, "cut_index": 716, "middle_length": 229 }
buted with this source code. */ namespace Symfony\Contracts\Tests\Service; use PHPUnit\Framework\Attributes\RequiresPhp; use PHPUnit\Framework\TestCase; use Psr\Container\ContainerInterface; use Symfony\Contracts\Service\Attribute\Required; use Symfony\Contracts\Service\Attribute\SubscribedService; use Symfony\Contr...
class ServiceMethodsSubscriberTraitTest extends TestCase { public function testMethodsOnParentsAndChildrenAreIgnoredInGetSubscribedServices() { $expected = [ TestService::class.'::aService' => Service2::class, Test
tures\HookedPropertyService; use Symfony\Contracts\Tests\Service\Fixtures\MyDependency; use Symfony\Contracts\Tests\Service\Fixtures\NonHookedPropertyService; use Symfony\Contracts\Tests\Service\Fixtures\WriteOnlyPropertyService;
{ "filepath": "src/Symfony/Contracts/Tests/Service/ServiceMethodsSubscriberTraitTest.php", "language": "php", "file_size": 6953, "cut_index": 716, "middle_length": 229 }
This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Tests\Service\Fixtures; use Symfony\Contracts\Service\Attribute\S...
cy $myNullableDependency { get => $this->container->has(__METHOD__) ? $this->container->get(__METHOD__) : null; } #[SubscribedService(nullable: true)] public MyDependency $myTentativeDependency { get => $this->container->has(__
bscriberInterface { use ServiceMethodsSubscriberTrait; #[SubscribedService] public MyDependency $myDependency { get => $this->container->get(__METHOD__); } #[SubscribedService] public ?MyDependen
{ "filepath": "src/Symfony/Contracts/Tests/Service/Fixtures/HookedPropertyService.php", "language": "php", "file_size": 1444, "cut_index": 524, "middle_length": 229 }
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Service; use Psr\Container\ContainerInterface; use Symfony\Contracts\Service\Attribute\Required; use Symfony\Contracts\Service\Attribute\SubscribedService;...
ust `return $this->container->get(__METHOD__);`. * * @property ContainerInterface $container * * @author Kevin Bond <kevinbond@gmail.com> * * @deprecated since symfony/contracts v3.5, use ServiceMethodsSubscriberTrait instead */ trait ServiceSubscri
erInterface that determines subscribed services * from methods that have the #[SubscribedService] attribute. * * Service ids are available as "ClassName::methodName" so that the implementation * of subscriber methods can be j
{ "filepath": "src/Symfony/Contracts/Service/ServiceSubscriberTrait.php", "language": "php", "file_size": 3233, "cut_index": 614, "middle_length": 229 }
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Tests\Service; use PHPUnit\Framework\Attributes\Group; use PHPUnit\Framework\Attributes\IgnoreDeprecations; use PHPUnit\Framework\TestCase; use Psr\Contain...
BeforeClass(): void { class_exists(LegacyTestService::class); } public function testMethodsOnParentsAndChildrenAreIgnoredInGetSubscribedServices() { $expected = [ LegacyTestService::class.'::aService' => Service
ny\Contracts\Service\ServiceSubscriberInterface; use Symfony\Contracts\Service\ServiceSubscriberTrait; #[IgnoreDeprecations] #[Group('legacy')] class ServiceSubscriberTraitTest extends TestCase { public static function setUp
{ "filepath": "src/Symfony/Contracts/Tests/Service/ServiceSubscriberTraitTest.php", "language": "php", "file_size": 3204, "cut_index": 614, "middle_length": 229 }
ge. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Cache; use Psr\Cache\CacheItemPoolInterface; use Psr\Cache\InvalidArgumentException; use Psr\Log\LoggerI...
ey, $callback, $beta, $metadata); } public function delete(string $key): bool { return $this->deleteItem($key); } /** * @param-immediately-invoked-callable $callback */ private function doGet(CacheItemPoolInterfa
asses. * * @author Nicolas Grekas <p@tchwork.com> */ trait CacheTrait { public function get(string $key, callable $callback, ?float $beta = null, ?array &$metadata = null): mixed { return $this->doGet($this, $k
{ "filepath": "src/Symfony/Contracts/Cache/CacheTrait.php", "language": "php", "file_size": 2542, "cut_index": 563, "middle_length": 229 }
part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Cache; use Psr\Cache\CacheException; use Psr\Cache\CacheItemInterface; use Psr...
seconds. */ public const METADATA_CTIME = 'ctime'; /** * References the list of tags that were assigned to the item, as string[]. */ public const METADATA_TAGS = 'tags'; /** * Reserved characters that cannot be used in
s CacheItemInterface { /** * References the Unix timestamp stating when the item will expire. */ public const METADATA_EXPIRY = 'expiry'; /** * References the time the item took to be created, in milli
{ "filepath": "src/Symfony/Contracts/Cache/ItemInterface.php", "language": "php", "file_size": 1790, "cut_index": 537, "middle_length": 229 }
ackage. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Cache; use Psr\Cache\InvalidArgumentException; /** * Enables namespace-based invalidation by prefi...
s <p@tchwork.com> */ interface NamespacedPoolInterface { /** * @throws InvalidArgumentException If the namespace contains characters found in ItemInterface's RESERVED_CHARACTERS */ public function withSubNamespace(string $namespace): sta
T ignore sub-namespaces. * * @author Nicolas Greka
{ "filepath": "src/Symfony/Contracts/Cache/NamespacedPoolInterface.php", "language": "php", "file_size": 874, "cut_index": 559, "middle_length": 52 }
ge. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Cache; use Psr\Cache\CacheItemInterface; use Psr\Cache\InvalidArgumentException; /** * Covers most sim...
ntrol. It could also * be an ItemInterface instance when its additional features are needed. * * @template T * * @param string $key The key of the item to retrieve from the cache * @param (callable(CacheItemInterface,bool):T)|
* On cache misses, a callback is called that should return the missing value. * This callback is given a PSR-6 CacheItemInterface instance corresponding to the * requested key, that could be used e.g. for expiration co
{ "filepath": "src/Symfony/Contracts/Cache/CacheInterface.php", "language": "php", "file_size": 2310, "cut_index": 563, "middle_length": 229 }
* This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\Cache; use Psr\Cache\CacheItemInterface; /** * Computes and re...
ol &$save Should be set to false when the value should not be saved in the pool * * @return T The computed value for the passed item */ public function __invoke(CacheItemInterface $item, bool &$save): mixed; }
The item to compute the value for * @param bo
{ "filepath": "src/Symfony/Contracts/Cache/CallbackInterface.php", "language": "php", "file_size": 832, "cut_index": 523, "middle_length": 52 }
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ if (!function_exists('trigger_deprecation')) { /** * Triggers a silenced ...
*/ function trigger_deprecation(string $package, string $version, string $message, mixed ...$args): void { @trigger_error(($package || $version ? "Since $package $version: " : '').($args ? vsprintf($message, $args) : $message), \E_USER_DEPR
duced the deprecation * @param string $message The message of the deprecation * @param mixed ...$args Values to insert in the message using printf() formatting * * @author Nicolas Grekas <p@tchwork.com>
{ "filepath": "src/Symfony/Contracts/Deprecation/function.php", "language": "php", "file_size": 1014, "cut_index": 512, "middle_length": 229 }
This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\EventDispatcher; use Psr\EventDispatcher\StoppableEventInterface;...
nwage@gmail.com> * @author Roman Borschel <roman@code-factory.org> * @author Bernhard Schussek <bschussek@gmail.com> * @author Nicolas Grekas <p@tchwork.com> */ class Event implements StoppableEventInterface { private bool $propagationStopped = fal
an event is raised. * * You can call the method stopPropagation() to abort the execution of * further listeners in your event listener. * * @author Guilherme Blanco <guilhermeblanco@hotmail.com> * @author Jonathan Wage <jo
{ "filepath": "src/Symfony/Contracts/EventDispatcher/Event.php", "language": "php", "file_size": 1479, "cut_index": 524, "middle_length": 229 }
ge. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Emoji\Util; /** * @internal */ class GzipStreamWrapper { /** @var resource|null */ public $con...
cache_is_script_cached') || !@opcache_is_script_cached($path)) { stream_wrapper_unregister('file'); stream_wrapper_register('file', self::class); } return require $path; } public function stream_open(string
throw new \LogicException(\sprintf('The "zlib" extension is required to load the "%s/%s" map, please enable it in your php.ini file.', basename(\dirname($path)), basename($path))); } if (!\function_exists('op
{ "filepath": "src/Symfony/Component/Emoji/Util/GzipStreamWrapper.php", "language": "php", "file_size": 2226, "cut_index": 563, "middle_length": 229 }
ani a εda so, ne wedeε ani a εda hᴐ kakra', '👩🏻‍❤‍💋‍👩🏾' => 'Mfeano: maame, maame, wedeε ani a εda so, ne wedeε ani tuntum kakra', '👩🏻‍❤‍💋‍👩🏿' => 'Mfeano: maame, maame, wedeε ani a εda so, ne wedeε ani tuntum', '👩🏼‍❤‍💋‍👩🏻' => 'Mfeano: maame, maame, wedeε ani a εda so kakra, ne wedeε ani a εda ...
ε ani a εda so', '👩🏽‍❤‍💋‍👩🏼' => 'Mfeano: maame, maame, wedeε ani a εda hᴐ kakra, ne wedeε ani a εda so kakra', '👩🏽‍❤‍💋‍👩🏽' => 'Mfeano: maame, maame, ne wedeε ani a εda hᴐ kakra', '👩🏽‍❤‍💋‍👩🏾' => 'Mfeano: maame, maame, wedeε ani a εda hᴐ kakra, n
e, maame, wedeε ani a εda so kakra, ne wedeε ani tuntum kakra', '👩🏼‍❤‍💋‍👩🏿' => 'Mfeano: maame, maame, wedeε ani a εda so kakra, ne wedeε ani tuntum', '👩🏽‍❤‍💋‍👩🏻' => 'Mfeano: maame, maame, wedeε ani a εda hᴐ kakra, ne wede
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-ak.php", "language": "php", "file_size": 214618, "cut_index": 7068, "middle_length": 229 }
ትግል: የቆዳ ዓይነት-4 እና መሃከለኛ ቀላ ያለ የቆዳ ቀለም', '🧑🏽‍🫯‍🧑🏾' => 'ነጻ ትግል: የቆዳ ዓይነት-4 እና የቆዳ ዓይነት-5', '🧑🏽‍🫯‍🧑🏿' => 'ነጻ ትግል: የቆዳ ዓይነት-4 እና የቆዳ ዓይነት-6', '🧑🏾‍🫯‍🧑🏻' => 'ነጻ ትግል: የቆዳ ዓይነት-5 እና የቆዳ ዓይነት-1-2', '🧑🏾‍🫯‍🧑🏼' => 'ነጻ ትግል: የቆዳ ዓይነት-5 እና መሃከለኛ ቀላ ያለ የቆዳ ቀለም', '🧑🏾‍🫯‍🧑🏽' => 'ነጻ ትግል: የቆዳ ዓ...
እና የቆዳ ዓይነት-4', '🧑🏻‍❤‍🧑🏾' => 'ልብ በመሃላቸው ያሉ ጥንዶች: ጎልማሳ፣ ጎልማሳ፣ የቆዳ ዓይነት-1-2 እና የቆዳ ዓይነት-5', '🧑🏻‍❤‍🧑🏿' => 'ልብ በመሃላቸው ያሉ ጥንዶች: ጎልማሳ፣ ጎልማሳ፣ የቆዳ ዓይነት-1-2 እና የቆዳ ዓይነት-6', '🧑🏼‍❤‍🧑🏻' => 'ልብ በመሃላቸው ያሉ ጥንዶች: ጎልማሳ፣ ጎልማሳ፣ መሃከለኛ ቀላ ያለ የቆዳ ቀለም እና የቆዳ ዓይነት-1-
የቆዳ ዓይነት-6 እና የቆዳ ዓይነት-4', '🧑🏿‍🫯‍🧑🏾' => 'ነጻ ትግል: የቆዳ ዓይነት-6 እና የቆዳ ዓይነት-5', '🧑🏻‍❤‍🧑🏼' => 'ልብ በመሃላቸው ያሉ ጥንዶች: ጎልማሳ፣ ጎልማሳ፣ የቆዳ ዓይነት-1-2 እና መሃከለኛ ቀላ ያለ የቆዳ ቀለም', '🧑🏻‍❤‍🧑🏽' => 'ልብ በመሃላቸው ያሉ ጥንዶች: ጎልማሳ፣ ጎልማሳ፣ የቆዳ ዓይነት-1-2
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-am.php", "language": "php", "file_size": 278692, "cut_index": 7068, "middle_length": 229 }
?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Contracts\EventDispatcher; use Psr\EventDispatcher\EventDispatch...
ull $eventName The name of the event to dispatch. If not supplied, * the class of $event should be used instead. * * @return T The passed $event MUST be returned */ public function dispatch(object $even
rInterface { /** * Dispatches an event to all registered listeners. * * @template T of object * * @param T $event The event to pass to the event handlers/listeners * @param string|n
{ "filepath": "src/Symfony/Contracts/EventDispatcher/EventDispatcherInterface.php", "language": "php", "file_size": 1039, "cut_index": 513, "middle_length": 229 }
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Emoji; use Symfony\Component\Emoji\Util\GzipStreamWrapper; if (!class_exists(\Transliterator::class)) { throw new \LogicException(\sprintf('You cannot...
text' => 'text-emoji', 'github-emoji' => 'emoji-github', 'gitlab-emoji' => 'emoji-gitlab', 'slack-emoji' => 'emoji-slack', 'text-emoji' => 'emoji-text', ]; public readonly string $id; private array $map; p
private const QUICK_CHECK = "\xA9\xAE\xE2\xE3\xF0"; private const REVERSEABLE_IDS = [ 'emoji-github' => 'github-emoji', 'emoji-gitlab' => 'gitlab-emoji', 'emoji-slack' => 'slack-emoji', 'emoji-
{ "filepath": "src/Symfony/Component/Emoji/EmojiTransliterator.php", "language": "php", "file_size": 4960, "cut_index": 614, "middle_length": 229 }
n: vrou, vrou, medium-donker velkleur, ligte velkleur', '👩🏾‍❤‍💋‍👩🏼' => 'soen: vrou, vrou, medium-donker velkleur, medium-ligte velkleur', '👩🏾‍❤‍💋‍👩🏽' => 'soen: vrou, vrou, medium-donker velkleur, medium velkleur', '👩🏾‍❤‍💋‍👩🏾' => 'soen: vrou, vrou, medium-donker velkleur', '👩🏾‍❤‍💋‍👩🏿'...
'stoeiers: ligte velkleur, medium-ligte velkleur', '🧑🏻‍🫯‍🧑🏽' => 'stoeiers: ligte velkleur, medium velkleur', '🧑🏻‍🫯‍🧑🏾' => 'stoeiers: ligte velkleur, medium-donker velkleur', '🧑🏻‍🫯‍🧑🏿' => 'stoeiers: ligte velkleur, donker velkleur', '🧑🏼‍🫯‍🧑
r', '👩🏿‍❤‍💋‍👩🏽' => 'soen: vrou, vrou, donker velkleur, medium velkleur', '👩🏿‍❤‍💋‍👩🏾' => 'soen: vrou, vrou, donker velkleur, medium-donker velkleur', '👩🏿‍❤‍💋‍👩🏿' => 'soen: vrou, vrou, donker velkleur', '🧑🏻‍🫯‍🧑🏼' =>
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-af.php", "language": "php", "file_size": 204186, "cut_index": 7068, "middle_length": 229 }
معتدل مائل للغامق', '👩🏽‍❤‍💋‍👩🏿' => 'قبلة: سيدة، وسيدة، وبشرة بلون معتدل، وبشرة بلون غامق', '👩🏾‍❤‍💋‍👩🏻' => 'قبلة: سيدة، وسيدة، وبشرة بلون معتدل مائل للغامق، وبشرة بلون فاتح', '👩🏾‍❤‍💋‍👩🏼' => 'قبلة: سيدة، وسيدة، وبشرة بلون معتدل مائل للغامق، وبشرة بلون فاتح ومعتدل', '👩🏾‍❤‍💋‍👩🏽' => 'قبلة...
ن معتدل', '👩🏿‍❤‍💋‍👩🏾' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق، وبشرة بلون معتدل مائل للغامق', '👩🏿‍❤‍💋‍👩🏿' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق', '🧑🏻‍🫯‍🧑🏼' => 'مصارعون: بشرة بلون فاتح وبشرة بلون فاتح ومعتدل', '🧑🏻‍🫯‍🧑🏽' => 'مصارعون: بشرة بلو
ن غامق', '👩🏿‍❤‍💋‍👩🏻' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق، وبشرة بلون فاتح', '👩🏿‍❤‍💋‍👩🏼' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق، وبشرة بلون فاتح ومعتدل', '👩🏿‍❤‍💋‍👩🏽' => 'قبلة: سيدة، وسيدة، وبشرة بلون غامق، وبشرة بلو
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-ar_sa.php", "language": "php", "file_size": 273808, "cut_index": 7068, "middle_length": 229 }
'🇦🇸' => 'bandera: Samoa Americana', '🇦🇹' => 'bandera: Austria', '🇦🇺' => 'bandera: Australia', '🇦🇼' => 'bandera: Aruba', '🇦🇽' => 'bandera: Islles Aland', '🇦🇿' => 'bandera: Azerbaixán', '🇧🇦' => 'bandera: Bosnia y Herzegovina', '🇧🇧' => 'bandera: Barbados', '🇧🇩' => 'ban...
andera: Les Bahames', '🇧🇹' => 'bandera: Bután', '🇧🇻' => 'bandera: Islla Bouvet', '🇧🇼' => 'bandera: Botsuana', '🇧🇾' => 'bandera: Bielorrusia', '🇧🇿' => 'bandera: Belize', '🇨🇦' => 'bandera: Canadá', '🇨🇨' => 'bandera: Islles Cocos (
n', '🇧🇱' => 'bandera: San Bartolomé', '🇧🇲' => 'bandera: Les Bermudes', '🇧🇳' => 'bandera: Brunéi', '🇧🇴' => 'bandera: Bolivia', '🇧🇶' => 'bandera: Caribe neerlandés', '🇧🇷' => 'bandera: Brasil', '🇧🇸' => 'b
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-ast.php", "language": "php", "file_size": 11110, "cut_index": 921, "middle_length": 229 }
‍❤‍💋‍👩🏿' => 'öpüş: qadın, qadın, orta-tünd dəri tonu, tünd dəri tonu', '👩🏿‍❤‍💋‍👩🏻' => 'öpüş: qadın, qadın, tünd dəri tonu, açıq dəri tonu', '👩🏿‍❤‍💋‍👩🏼' => 'öpüş: qadın, qadın, tünd dəri tonu, orta-açıq dəri tonu', '👩🏿‍❤‍💋‍👩🏽' => 'öpüş: qadın, qadın, tünd dəri tonu, orta dəri tonu', '👩...
🏼‍🫯‍🧑🏽' => 'güləş: orta-açıq dəri tonu, orta dəri tonu', '🧑🏼‍🫯‍🧑🏾' => 'güləş: orta-açıq dəri tonu, orta-tünd dəri tonu', '🧑🏼‍🫯‍🧑🏿' => 'güləş: orta-açıq dəri tonu, tünd dəri tonu', '🧑🏽‍🫯‍🧑🏻' => 'güləş: orta dəri tonu, açıq dəri tonu', '🧑🏽‍🫯‍
üləş: açıq dəri tonu, orta dəri tonu', '🧑🏻‍🫯‍🧑🏾' => 'güləş: açıq dəri tonu, orta-tünd dəri tonu', '🧑🏻‍🫯‍🧑🏿' => 'güləş: açıq dəri tonu, tünd dəri tonu', '🧑🏼‍🫯‍🧑🏻' => 'güləş: orta-açıq dəri tonu, açıq dəri tonu', '🧑
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-az.php", "language": "php", "file_size": 212050, "cut_index": 7068, "middle_length": 229 }
'🇦🇸' => 'bendèra: Samoa Amrik', '🇦🇹' => 'bendèra: Ostenrèk', '🇦🇺' => 'bendèra: Ostrali', '🇦🇼' => 'bendèra: Aruba', '🇦🇽' => 'bendèra: Pulo Olan', '🇦🇿' => 'bendèra: Asèrbaijan', '🇧🇦' => 'bendèra: Bosni èn Hèrségowina', '🇧🇧' => 'bendèra: Barbados', '🇧🇩' => 'bendèra: Bengga...
'🇧🇹' => 'bendèra: Butan', '🇧🇻' => 'bendèra: Pulo Buwèt', '🇧🇼' => 'bendèra: Boswana', '🇧🇾' => 'bendèra: Ruslan Puti', '🇧🇿' => 'bendèra: Bélis', '🇨🇦' => 'bendèra: Kanada', '🇨🇨' => 'bendèra: Pulo Kokos (Keeling)', '🇨🇩' => 'bendè
=> 'bendèra: Sint-Bartoloméus', '🇧🇲' => 'bendèra: Bermuda', '🇧🇳' => 'bendèra: Bruné', '🇧🇴' => 'bendèra: Boliwi', '🇧🇶' => 'bendèra: Welanda Karaiben', '🇧🇷' => 'bendèra: Brasil', '🇧🇸' => 'bendèra: Bahama',
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-bew.php", "language": "php", "file_size": 11889, "cut_index": 921, "middle_length": 229 }
ারি-হালকা ত্বকের রঙ, মাঝারি-কালো ত্বকের রঙ', '👩🏼‍❤‍💋‍👩🏿' => 'চুম্বন: মহিলা, মহিলা, মাঝারি-হালকা ত্বকের রঙ, কালো ত্বকের রঙ', '👩🏽‍❤‍💋‍👩🏻' => 'চুম্বন: মহিলা, মহিলা, মাঝারি ত্বকের রঙ, হালকা ত্বকের রঙ', '👩🏽‍❤‍💋‍👩🏼' => 'চুম্বন: মহিলা, মহিলা, মাঝারি ত্বকের রঙ, মাঝারি-হালকা ত্বকের রঙ', '👩🏽‍❤‍💋...
্বকের রঙ, মাঝারি ত্বকের রঙ', '👩🏾‍❤‍💋‍👩🏾' => 'চুম্বন: মহিলা, মহিলা, মাঝারি-কালো ত্বকের রঙ', '👩🏾‍❤‍💋‍👩🏿' => 'চুম্বন: মহিলা, মহিলা, মাঝারি-কালো ত্বকের রঙ, কালো ত্বকের রঙ', '👩🏿‍❤‍💋‍👩🏻' => 'চুম্বন: মহিলা, মহিলা, কালো ত্বকের রঙ, হালকা ত্বকের রঙ',
'👩🏾‍❤‍💋‍👩🏻' => 'চুম্বন: মহিলা, মহিলা, মাঝারি-কালো ত্বকের রঙ, হালকা ত্বকের রঙ', '👩🏾‍❤‍💋‍👩🏼' => 'চুম্বন: মহিলা, মহিলা, মাঝারি-কালো ত্বকের রঙ, মাঝারি-হালকা ত্বকের রঙ', '👩🏾‍❤‍💋‍👩🏽' => 'চুম্বন: মহিলা, মহিলা, মাঝারি-কালো ত
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-bn.php", "language": "php", "file_size": 397350, "cut_index": 7068, "middle_length": 229 }
‍❤‍💋‍👩🏼' => 'চুমা: তিৰোতা, তিৰোতা, মধ্যমীয়া ছালৰ ৰং, মধ্যমীয়া-পাতল ছালৰ ৰং', '👩🏽‍❤‍💋‍👩🏽' => 'চুমা: তিৰোতা, তিৰোতা, মধ্যমীয়া ছালৰ ৰং', '👩🏽‍❤‍💋‍👩🏾' => 'চুমা: তিৰোতা, তিৰোতা, মধ্যমীয়া ছালৰ ৰং, মধ্যমীয়া-ক’লা ছালৰ ৰং', '👩🏽‍❤‍💋‍👩🏿' => 'চুমা: তিৰোতা, তিৰোতা, মধ্যমীয়া ছালৰ ৰং, ক’লা ছালৰ ৰং',...
, তিৰোতা, ক’লা ছালৰ ৰং, পাতল ছালৰ ৰং', '👩🏿‍❤‍💋‍👩🏼' => 'চুমা: তিৰোতা, তিৰোতা, ক’লা ছালৰ ৰং, মধ্যমীয়া-পাতল ছালৰ ৰং', '👩🏿‍❤‍💋‍👩🏽' => 'চুমা: তিৰোতা, তিৰোতা, ক’লা ছালৰ ৰং, মধ্যমীয়া ছালৰ ৰং', '👩🏿‍❤‍💋‍👩🏾' => 'চুমা: তিৰোতা, তিৰোতা, ক’লা ছালৰ ৰং, মধ্য
োতা, মধ্যমীয়া-ক’লা ছালৰ ৰং, মধ্যমীয়া ছালৰ ৰং', '👩🏾‍❤‍💋‍👩🏾' => 'চুমা: তিৰোতা, তিৰোতা, মধ্যমীয়া-ক’লা ছালৰ ৰং', '👩🏾‍❤‍💋‍👩🏿' => 'চুমা: তিৰোতা, তিৰোতা, মধ্যমীয়া-ক’লা ছালৰ ৰং, ক’লা ছালৰ ৰং', '👩🏿‍❤‍💋‍👩🏻' => 'চুমা: তিৰোতা
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-as.php", "language": "php", "file_size": 399109, "cut_index": 7068, "middle_length": 229 }
еү: ҡатын, ҡатын, уртаса ҡара тән төҫө һәм уртаса аҡһыл тән төҫө', '👩🏾‍❤‍💋‍👩🏽' => 'үбеү: ҡатын, ҡатын, уртаса ҡара тән төҫө һәм уртаса тән төҫө', '👩🏾‍❤‍💋‍👩🏾' => 'үбеү: ҡатын, ҡатын һәм уртаса ҡара тән төҫө', '👩🏾‍❤‍💋‍👩🏿' => 'үбеү: ҡатын, ҡатын, уртаса ҡара тән төҫө һәм ҡара тән төҫө', '👩�...
, '🧑🏻‍🫯‍🧑🏽' => 'көрәшселәр: аҡһыл тән төҫө һәм уртаса тән төҫө', '🧑🏻‍🫯‍🧑🏾' => 'көрәшселәр: аҡһыл тән төҫө һәм уртаса ҡара тән төҫө', '🧑🏻‍🫯‍🧑🏿' => 'көрәшселәр: аҡһыл тән төҫө һәм ҡара тән төҫө', '🧑🏼‍🫯‍🧑🏻' => 'көрәшселәр: уртаса аҡһыл тән төҫ
уртаса тән төҫө', '👩🏿‍❤‍💋‍👩🏾' => 'үбеү: ҡатын, ҡатын, ҡара тән төҫө һәм уртаса ҡара тән төҫө', '👩🏿‍❤‍💋‍👩🏿' => 'үбеү: ҡатын, ҡатын һәм ҡара тән төҫө', '🧑🏻‍🫯‍🧑🏼' => 'көрәшселәр: аҡһыл тән төҫө һәм уртаса аҡһыл тән төҫө'
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-ba.php", "language": "php", "file_size": 291938, "cut_index": 7068, "middle_length": 229 }
'🐈‍⬛' => 'ganyaʊ gaɖono', '🐻‍❄' => 'ursifɔnɔ', '🐦‍⬛' => 'gasapɩ́ gaɖono', '🐦‍🔥' => 'gasapɩ́ fenis', '🦵' => 'ʊkei', '👂' => 'gʊtɔ', '👃' => 'gɩŋʊnʊ', '🧠' => 'gʊfaŋa', '🫀' => 'gɩfolu', '🫁' => 'akufɛrɛfɛrɛ', '🦷' => 'gʊnyoo', '🦴' => 'ŋkǝwa', '👀' => 'ɩnyine', '...
nayar agayɛ', '🐅' => 'atabɩyarɩ ɩsǝnayar', '🐆' => 'atabɩyarɩ', '🐴' => 'asuko agayɛ', '🫎' => 'ayʊlʊkpatɩ', '🫏' => 'gakɔŋkɔŋɔ́', '🐎' => 'asuko', '🦄' => 'asuko gʊyʊlʊyar', '🦓' => 'gakɔŋkɔŋɔ́ ɩsǝnayar', '🦌' => 'gajagʊyʊlʊ',
oŋokafɔnɔrɛ', '🐩' => 'asna ɩsana pùùù', '🐺' => 'Asnaŋɔnja abʊmbɔnɔ', '🦊' => 'asnaŋɔnja ajala', '🦝' => 'ursijalɩ', '🐱' => 'ganyaʊ kaayɛ', '🐈' => 'ganyaʊ', '🦁' => 'guuni agayɛ', '🐯' => 'atabɩyarɩ ɩsǝ
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-blo.php", "language": "php", "file_size": 3323, "cut_index": 563, "middle_length": 229 }
тон скуры', '👩🏼‍❤‍💋‍👩🏽' => 'пацалунак: жанчына жанчына сярэднясветлы тон скуры сярэдні тон скуры', '👩🏼‍❤‍💋‍👩🏾' => 'пацалунак: жанчына жанчына сярэднясветлы тон скуры сярэдняцёмны тон скуры', '👩🏼‍❤‍💋‍👩🏿' => 'пацалунак: жанчына жанчына сярэднясветлы тон скуры цёмны тон скуры', '👩🏽‍❤‍💋‍👩...
жанчына сярэдняцёмны тон скуры светлы тон скуры', '👩🏾‍❤‍💋‍👩🏼' => 'пацалунак: жанчына жанчына сярэдняцёмны тон скуры сярэднясветлы тон скуры', '👩🏾‍❤‍💋‍👩🏽' => 'пацалунак: жанчына жанчына сярэдняцёмны тон скуры сярэдні тон скуры', '👩🏾‍❤‍💋‍👩🏾' =>
рэдні тон скуры', '👩🏽‍❤‍💋‍👩🏾' => 'пацалунак: жанчына жанчына сярэдні тон скуры сярэдняцёмны тон скуры', '👩🏽‍❤‍💋‍👩🏿' => 'пацалунак: жанчына жанчына сярэдні тон скуры цёмны тон скуры', '👩🏾‍❤‍💋‍👩🏻' => 'пацалунак: жанчына
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-be.php", "language": "php", "file_size": 306495, "cut_index": 7068, "middle_length": 229 }
‍💋‍👩🏽' => 'целувка: жена, жена, средно тъмна кожа, средна на цвят кожа', '👩🏾‍❤‍💋‍👩🏾' => 'целувка: жена, жена, средно тъмна кожа', '👩🏾‍❤‍💋‍👩🏿' => 'целувка: жена, жена, средно тъмна кожа, тъмна кожа', '👩🏿‍❤‍💋‍👩🏻' => 'целувка: жена, жена, тъмна кожа, светла кожа', '👩🏿‍❤‍💋‍👩🏼' => 'цел...
🏿' => 'борци: светла кожа и тъмна кожа', '🧑🏼‍🫯‍🧑🏻' => 'борци: средно светла кожа и светла кожа', '🧑🏼‍🫯‍🧑🏽' => 'борци: средно светла кожа и средна на цвят кожа', '🧑🏼‍🫯‍🧑🏾' => 'борци: средно светла кожа и средно тъмна кожа', '🧑🏼‍🫯‍🧑🏿' => 'бор
=> 'целувка: жена, жена, тъмна кожа', '🧑🏻‍🫯‍🧑🏼' => 'борци: светла кожа и средно светла кожа', '🧑🏻‍🫯‍🧑🏽' => 'борци: светла кожа и средна на цвят кожа', '🧑🏻‍🫯‍🧑🏾' => 'борци: светла кожа и средно тъмна кожа', '🧑🏻‍🫯‍🧑
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-bg.php", "language": "php", "file_size": 287307, "cut_index": 7068, "middle_length": 229 }
ca i pell morena', '👩🏿‍❤‍💋‍👩🏾' => 'petó: dona, dona, pell molt fosca i pell fosca', '👩🏿‍❤‍💋‍👩🏿' => 'petó: dona, dona i pell molt fosca', '🧑🏻‍🫯‍🧑🏼' => 'persones que lluiten: pell molt clara i pell bastant clara', '🧑🏻‍🫯‍🧑🏽' => 'persones que lluiten: pell molt clara i pell morena', ...
fosca', '🧑🏽‍🫯‍🧑🏻' => 'persones que lluiten: pell morena i pell molt clara', '🧑🏽‍🫯‍🧑🏼' => 'persones que lluiten: pell morena i pell bastant clara', '🧑🏽‍🫯‍🧑🏾' => 'persones que lluiten: pell morena i pell fosca', '🧑🏽‍🫯‍🧑🏿' => 'persones que ll
t clara', '🧑🏼‍🫯‍🧑🏽' => 'persones que lluiten: pell bastant clara i pell morena', '🧑🏼‍🫯‍🧑🏾' => 'persones que lluiten: pell bastant clara i pell fosca', '🧑🏼‍🫯‍🧑🏿' => 'persones que lluiten: pell bastant clara i pell molt
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-ca.php", "language": "php", "file_size": 206985, "cut_index": 7068, "middle_length": 229 }
ca i pell morena', '👩🏿‍❤‍💋‍👩🏾' => 'petó: dona, dona, pell molt fosca i pell fosca', '👩🏿‍❤‍💋‍👩🏿' => 'petó: dona, dona i pell molt fosca', '🧑🏻‍🫯‍🧑🏼' => 'persones que lluiten: pell molt clara i pell bastant clara', '🧑🏻‍🫯‍🧑🏽' => 'persones que lluiten: pell molt clara i pell morena', ...
fosca', '🧑🏽‍🫯‍🧑🏻' => 'persones que lluiten: pell morena i pell molt clara', '🧑🏽‍🫯‍🧑🏼' => 'persones que lluiten: pell morena i pell bastant clara', '🧑🏽‍🫯‍🧑🏾' => 'persones que lluiten: pell morena i pell fosca', '🧑🏽‍🫯‍🧑🏿' => 'persones que ll
t clara', '🧑🏼‍🫯‍🧑🏽' => 'persones que lluiten: pell bastant clara i pell morena', '🧑🏼‍🫯‍🧑🏾' => 'persones que lluiten: pell bastant clara i pell fosca', '🧑🏼‍🫯‍🧑🏿' => 'persones que lluiten: pell bastant clara i pell molt
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-ca_es.php", "language": "php", "file_size": 206985, "cut_index": 7068, "middle_length": 229 }
ᏗᏴᎳᏘ ᎤᏁᎦᎸ ᏄᎿᏍᏛᎢ', '👩🏾‍❤‍💋‍👩🏽' => 'ᎠᏔᏪᏙᎢᏍᏗ: ᎠᎨᏯ, ᎠᎨᏯ, ᎠᏲᏟᎨ-ᎤᎵᏏᎩ ᎣᏁᎦᎸ ᏄᏍᏛᎢ, ᎠᏲᏟᎨ ᎣᏁᎦᎸ ᏄᏍᏛᎢ', '👩🏾‍❤‍💋‍👩🏾' => 'ᎠᏔᏪᏙᎢᏍᏗ: ᎠᎨᏯ, ᎠᎨᏯ, ᎠᏲᏟᎨ-ᎤᎵᏏᎩ ᎣᏁᎦᎸ ᏄᏍᏛᎢ', '👩🏾‍❤‍💋‍👩🏿' => 'ᎠᏔᏪᏙᎢᏍᏗ: ᎠᎨᏯ, ᎠᎨᏯ, ᎠᏲᏟᎨ-ᎤᎵᏏᎩ ᎣᏁᎦᎸ ᏄᏍᏛᎢ, ᎤᎵᏏᎩ ᎣᏁᎦᎸ ᏄᏍᏛᎢ', '👩🏿‍❤‍💋‍👩🏻' => 'ᎠᏔᏪᏙᎢᏍᏗ: ᎠᎨᏯ, ᎠᎨᏯ, ᎤᎵᏏᎩ ᎣᏁᎦᎸ ᏄᏍᏛᎢ, ᎤᏗᏴᎳᏘ ᎤᏁᎦᎵ Ꮔ...
ᎠᏂᏴᏫ ᏓᏁᎯᎲ: ᎤᏗᏴᎳᏘ ᎤᏁᎦᎵ ᏄᏍᏛᎢ, ᎠᏲᏟᎨ-ᎤᎵᏏᎩ ᎣᏁᎦᎸ ᏄᏍᏛᎢ', '🧑🏻‍🫯‍🧑🏿' => 'ᎠᏂᏴᏫ ᏓᏁᎯᎲ: ᎤᏗᏴᎳᏘ ᎤᏁᎦᎵ ᏄᏍᏛᎢ, ᎤᎵᏏᎩ ᎣᏁᎦᎸ ᏄᏍᏛᎢ', '🧑🏼‍🫯‍🧑🏻' => 'ᎠᏂᏴᏫ ᏓᏁᎯᎲ: ᎠᏲᏟᎨ-ᎤᏗᏴᎳᏘ ᎤᏁᎦᎸ ᏄᎿᏍᏛᎢ, ᎤᏗᏴᎳᏘ ᎤᏁᎦᎵ ᏄᏍᏛᎢ', '🧑🏼‍🫯‍🧑🏽' => 'ᎠᏂᏴᏫ ᏓᏁᎯᎲ: ᎠᏲᏟᎨ-ᎤᏗᏴᎳᏘ ᎤᏁᎦᎸ ᏄᎿᏍᏛᎢ, ᎠᏲᏟᎨ ᎣᏁᎦᎸ ᏄᏍᏛᎢ',
ᎠᏲᏟᎨ-ᎤᎵᏏᎩ ᎣᏁᎦᎸ ᏄᏍᏛᎢ', '👩🏿‍❤‍💋‍👩🏿' => 'ᎠᏔᏪᏙᎢᏍᏗ: ᎠᎨᏯ, ᎠᎨᏯ, ᎤᎵᏏᎩ ᎣᏁᎦᎸ ᏄᏍᏛᎢ', '🧑🏻‍🫯‍🧑🏼' => 'ᎠᏂᏴᏫ ᏓᏁᎯᎲ: ᎤᏗᏴᎳᏘ ᎤᏁᎦᎵ ᏄᏍᏛᎢ, ᎠᏲᏟᎨ-ᎤᏗᏴᎳᏘ ᎤᏁᎦᎸ ᏄᎿᏍᏛᎢ', '🧑🏻‍🫯‍🧑🏽' => 'ᎠᏂᏴᏫ ᏓᏁᎯᎲ: ᎤᏗᏴᎳᏘ ᎤᏁᎦᎵ ᏄᏍᏛᎢ, ᎠᏲᏟᎨ ᎣᏁᎦᎸ ᏄᏍᏛᎢ', '🧑🏻‍🫯‍🧑🏾' => '
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-chr.php", "language": "php", "file_size": 340870, "cut_index": 7068, "middle_length": 229 }
там-ҫутӑ тӗсӗ сӑран тӗксӗм тонӗ', '👩🏽‍❤‍💋‍👩🏻' => 'чупту: хӗрарӑм хӗрарӑм сӑран вӑтам тонӗ сӑран ҫутӑ тӗсӗ', '👩🏽‍❤‍💋‍👩🏼' => 'чупту: хӗрарӑм хӗрарӑм сӑран вӑтам тонӗ ӳт-тирӗн вӑтам-ҫутӑ тӗсӗ', '👩🏽‍❤‍💋‍👩🏽' => 'чупту: хӗрарӑм хӗрарӑм сӑран вӑтам тонӗ', '👩🏽‍❤‍💋‍👩🏾' => 'чупту: хӗрарӑм хӗра...
вӑтам тӗксӗм тонӗ', '👩🏾‍❤‍💋‍👩🏿' => 'чупту: хӗрарӑм хӗрарӑм сӑран вӑтам тӗксӗм тонӗ сӑран тӗксӗм тонӗ', '👩🏿‍❤‍💋‍👩🏻' => 'чупту: хӗрарӑм хӗрарӑм сӑран тӗксӗм тонӗ сӑран ҫутӑ тӗсӗ', '👩🏿‍❤‍💋‍👩🏼' => 'чупту: хӗрарӑм хӗрарӑм сӑран тӗксӗм тонӗ ӳт-тирӗн
'👩🏾‍❤‍💋‍👩🏼' => 'чупту: хӗрарӑм хӗрарӑм сӑран вӑтам тӗксӗм тонӗ ӳт-тирӗн вӑтам-ҫутӑ тӗсӗ', '👩🏾‍❤‍💋‍👩🏽' => 'чупту: хӗрарӑм хӗрарӑм сӑран вӑтам тӗксӗм тонӗ сӑран вӑтам тонӗ', '👩🏾‍❤‍💋‍👩🏾' => 'чупту: хӗрарӑм хӗрарӑм сӑран
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-cv.php", "language": "php", "file_size": 302530, "cut_index": 7068, "middle_length": 229 }
k teint', '👩🏿‍❤‍💋‍👩🏻' => 'kys: kvinde, kvinde, mørk teint og lys teint', '👩🏿‍❤‍💋‍👩🏼' => 'kys: kvinde, kvinde, mørk teint og medium til lys teint', '👩🏿‍❤‍💋‍👩🏽' => 'kys: kvinde, kvinde, mørk teint og medium teint', '👩🏿‍❤‍💋‍👩🏾' => 'kys: kvinde, kvinde, mørk teint og medium til mørk tein...
'brydere: medium til lys teint og medium til mørk teint', '🧑🏼‍🫯‍🧑🏿' => 'brydere: medium til lys teint og mørk teint', '🧑🏽‍🫯‍🧑🏻' => 'brydere: medium teint og lys teint', '🧑🏽‍🫯‍🧑🏼' => 'brydere: medium teint og medium til lys teint', '🧑🏽‍🫯‍🧑🏾'
nt og medium til mørk teint', '🧑🏻‍🫯‍🧑🏿' => 'brydere: lys teint og mørk teint', '🧑🏼‍🫯‍🧑🏻' => 'brydere: medium til lys teint og lys teint', '🧑🏼‍🫯‍🧑🏽' => 'brydere: medium til lys teint og medium teint', '🧑🏼‍🫯‍🧑🏾' =>
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-da.php", "language": "php", "file_size": 188094, "cut_index": 7068, "middle_length": 229 }
boja kože i umjerena boja kože', '👩🏻‍❤‍💋‍👩🏾' => 'poljubac: žena, žena, svijetla boja kože i umjereno tamna boja kože', '👩🏻‍❤‍💋‍👩🏿' => 'poljubac: žena, žena, svijetla boja kože i tamna boja kože', '👩🏼‍❤‍💋‍👩🏻' => 'poljubac: žena, žena, umjereno svijetla boja kože i svijetla boja kože', '👩�...
👩🏽‍❤‍💋‍👩🏼' => 'poljubac: žena, žena, umjerena boja kože i umjereno svijetla boja kože', '👩🏽‍❤‍💋‍👩🏽' => 'poljubac: žena, žena i umjerena boja kože', '👩🏽‍❤‍💋‍👩🏾' => 'poljubac: žena, žena, umjerena boja kože i umjereno tamna boja kože', '👩🏽‍❤‍💋‍👩🏿
o svijetla boja kože i umjereno tamna boja kože', '👩🏼‍❤‍💋‍👩🏿' => 'poljubac: žena, žena, umjereno svijetla boja kože i tamna boja kože', '👩🏽‍❤‍💋‍👩🏻' => 'poljubac: žena, žena, umjerena boja kože i svijetla boja kože', '
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-bs.php", "language": "php", "file_size": 216860, "cut_index": 7068, "middle_length": 229 }
ca i pell morena', '👩🏿‍❤‍💋‍👩🏾' => 'petó: dona, dona, pell molt fosca i pell fosca', '👩🏿‍❤‍💋‍👩🏿' => 'petó: dona, dona i pell molt fosca', '🧑🏻‍🫯‍🧑🏼' => 'persones que lluiten: pell molt clara i pell bastant clara', '🧑🏻‍🫯‍🧑🏽' => 'persones que lluiten: pell molt clara i pell morena', ...
fosca', '🧑🏽‍🫯‍🧑🏻' => 'persones que lluiten: pell morena i pell molt clara', '🧑🏽‍🫯‍🧑🏼' => 'persones que lluiten: pell morena i pell bastant clara', '🧑🏽‍🫯‍🧑🏾' => 'persones que lluiten: pell morena i pell fosca', '🧑🏽‍🫯‍🧑🏿' => 'persones que ll
t clara', '🧑🏼‍🫯‍🧑🏽' => 'persones que lluiten: pell bastant clara i pell morena', '🧑🏼‍🫯‍🧑🏾' => 'persones que lluiten: pell bastant clara i pell fosca', '🧑🏼‍🫯‍🧑🏿' => 'persones que lluiten: pell bastant clara i pell molt
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-ca_es_valencia.php", "language": "php", "file_size": 206985, "cut_index": 7068, "middle_length": 229 }
cusan: menyw, menyw, arlliw croen canolig-golau, arlliw croen canolog', '👩🏼‍❤‍💋‍👩🏾' => 'cusan: menyw, menyw, arlliw croen canolig-golau, arlliw croen canolig-tywyll', '👩🏼‍❤‍💋‍👩🏿' => 'cusan: menyw, menyw, arlliw croen canolig-golau, arlliw croen tywyll', '👩🏽‍❤‍💋‍👩🏻' => 'cusan: menyw, menyw, ar...
-tywyll, arlliw croen golau', '👩🏾‍❤‍💋‍👩🏼' => 'cusan: menyw, menyw, arlliw croen canolig-tywyll, arlliw croen canolig-golau', '👩🏾‍❤‍💋‍👩🏽' => 'cusan: menyw, menyw, arlliw croen canolig-tywyll, arlliw croen canolog', '👩🏾‍❤‍💋‍👩🏾' => 'cusan: menyw,
💋‍👩🏾' => 'cusan: menyw, menyw, arlliw croen canolog, arlliw croen canolig-tywyll', '👩🏽‍❤‍💋‍👩🏿' => 'cusan: menyw, menyw, arlliw croen canolog, arlliw croen tywyll', '👩🏾‍❤‍💋‍👩🏻' => 'cusan: menyw, menyw, arlliw croen canolig
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-cy.php", "language": "php", "file_size": 219984, "cut_index": 7068, "middle_length": 229 }
𑄨𑄉𑄧𑄢𑄴', '👨‍🏭' => '𑄜𑄳𑄠𑄇𑄴𑄑𑄮𑄢𑄨𑄖𑄴 𑄇𑄟𑄴 𑄉𑄧𑄢𑄨𑄠𑄬 𑄟𑄧𑄢𑄧𑄘𑄴', '👩‍🏭' => '𑄜𑄳𑄠𑄇𑄴𑄑𑄮𑄢𑄨𑄖𑄴 𑄇𑄟𑄴 𑄉𑄧𑄢𑄨𑄠𑄬 𑄟𑄨𑄣𑄬', '👨‍🔬' => '𑄟𑄧𑄢𑄧𑄘𑄴 𑄝𑄨𑄉𑄳𑄠𑄴𑄚𑄨', '👩‍🔬' => '𑄟𑄨𑄣𑄬 𑄝𑄨𑄉𑄳𑄠𑄴𑄚𑄨', '👨‍✈' => '𑄟𑄧𑄢𑄧𑄘𑄴 𑄝𑄨𑄟𑄚𑄴 𑄌𑄣𑄬𑄠𑄳𑄠', '👩‍✈' => '𑄟...
𑄙𑄧𑄏: 𑄃𑄧𑄌𑄴𑄑𑄳𑄢𑄨𑄠', '🇦🇺' => '𑄙𑄧𑄏: 𑄃𑄌𑄴𑄑𑄳𑄢𑄬𑄣𑄨𑄠', '🇦🇼' => '𑄙𑄧𑄏: 𑄃𑄢𑄪𑄝', '🇦🇽' => '𑄙𑄧𑄏: 𑄃𑄣𑄚𑄴𑄓𑄧 𑄉𑄭 𑄉𑄭 𑄞𑄨𑄘𑄳𑄠', '🇦🇿' => '𑄙𑄧𑄏: 𑄃𑄎𑄢𑄴𑄝𑄭𑄎𑄚𑄴', '🇧🇦' => '𑄙𑄧𑄏: 𑄝𑄧𑄥𑄴𑄚𑄨𑄠 𑄃𑄮 𑄦𑄢𑄴𑄎𑄬𑄉𑄮𑄞𑄨𑄚', '🇧🇧' => '𑄙𑄧𑄏: 𑄝𑄢𑄴𑄝𑄘𑄮𑄌𑄴', ...
'🇦🇮' => '𑄙𑄧𑄏: 𑄄𑄳𑄠𑄋𑄴𑄉𑄪𑄃𑄨𑄣', '🇦🇱' => '𑄙𑄧𑄏: 𑄃𑄣𑄴𑄝𑄬𑄚𑄨𑄠', '🇦🇲' => '𑄙𑄧𑄏: 𑄃𑄢𑄴𑄟𑄬𑄚𑄨𑄠', '🇦🇴' => '𑄙𑄧𑄏: 𑄃𑄳𑄠𑄋𑄴𑄉𑄮𑄣', '🇦🇶' => '𑄙𑄧𑄏: 𑄃𑄳𑄠𑄚𑄴𑄑𑄢𑄴𑄇𑄧𑄑𑄨𑄇', '🇦🇷' => '𑄙𑄧𑄏: 𑄃𑄢𑄴𑄎𑄬𑄚𑄴𑄑𑄨𑄚', '🇦🇸' => '𑄙𑄧𑄏: 𑄃𑄟𑄬𑄢𑄨𑄇𑄚𑄴 𑄥𑄟𑄮𑄠', ...
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-ccp.php", "language": "php", "file_size": 32922, "cut_index": 921, "middle_length": 229 }
olibek: žena, žena, světlý odstín pleti a středně světlý odstín pleti', '👩🏻‍❤‍💋‍👩🏽' => 'polibek: žena, žena, světlý odstín pleti a střední odstín pleti', '👩🏻‍❤‍💋‍👩🏾' => 'polibek: žena, žena, světlý odstín pleti a středně tmavý odstín pleti', '👩🏻‍❤‍💋‍👩🏿' => 'polibek: žena, žena, světlý odstín ...
světlý odstín pleti a tmavý odstín pleti', '👩🏽‍❤‍💋‍👩🏻' => 'polibek: žena, žena, střední odstín pleti a světlý odstín pleti', '👩🏽‍❤‍💋‍👩🏼' => 'polibek: žena, žena, střední odstín pleti a středně světlý odstín pleti', '👩🏽‍❤‍💋‍👩🏽' => 'polibek: žen
🏽' => 'polibek: žena, žena, středně světlý odstín pleti a střední odstín pleti', '👩🏼‍❤‍💋‍👩🏾' => 'polibek: žena, žena, středně světlý odstín pleti a středně tmavý odstín pleti', '👩🏼‍❤‍💋‍👩🏿' => 'polibek: žena, žena, středně
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-cs.php", "language": "php", "file_size": 235649, "cut_index": 7068, "middle_length": 229 }
t peau claire', '👩🏽‍❤‍💋‍👩🏼' => 'bisou : femme, femme, peau légèrement mate et peau modérément claire', '👩🏽‍❤‍💋‍👩🏽' => 'bisou : femme, femme et peau légèrement mate', '👩🏽‍❤‍💋‍👩🏾' => 'bisou : femme, femme, peau légèrement mate et peau modérément foncée', '👩🏽‍❤‍💋‍👩🏿' => 'bisou : femme, ...
cée et peau foncée', '👩🏿‍❤‍💋‍👩🏻' => 'bisou : femme, femme, peau foncée et peau claire', '👩🏿‍❤‍💋‍👩🏼' => 'bisou : femme, femme, peau foncée et peau modérément claire', '👩🏿‍❤‍💋‍👩🏽' => 'bisou : femme, femme, peau foncée et peau légèrement mate',
laire', '👩🏾‍❤‍💋‍👩🏽' => 'bisou : femme, femme, peau modérément foncée et peau légèrement mate', '👩🏾‍❤‍💋‍👩🏾' => 'bisou : femme, femme et peau modérément foncée', '👩🏾‍❤‍💋‍👩🏿' => 'bisou : femme, femme, peau modérément fon
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-fr_ca.php", "language": "php", "file_size": 226296, "cut_index": 7068, "middle_length": 229 }
=> 'चुंबन: महिला, महिला, साँवली त्वचा, हल्की गोरी त्वचा', '👩🏿‍❤‍💋‍👩🏽' => 'चुंबन: महिला, महिला, साँवली त्वचा, गेहुँआ त्वचा', '👩🏿‍❤‍💋‍👩🏾' => 'चुंबन: महिला, महिला, साँवली त्वचा, हल्की साँवली त्वचा', '👩🏿‍❤‍💋‍👩🏿' => 'चुंबन: महिला, महिला, साँवली त्वचा', '🧑🏻‍🫯‍🧑🏼' => 'पहलवान: गोरी त्वचा, हल...
हलवान: गेहुँआ त्वचा, गोरी त्वचा', '🧑🏽‍🫯‍🧑🏼' => 'पहलवान: गेहुँआ त्वचा, हल्की गोरी त्वचा', '🧑🏽‍🫯‍🧑🏾' => 'पहलवान: गेहुँआ त्वचा, हल्की साँवली त्वचा', '🧑🏽‍🫯‍🧑🏿' => 'पहलवान: गेहुँआ त्वचा, साँवली त्वचा', '🧑🏾‍🫯‍🧑🏻' => 'पहलवान: हल्की साँवली त्वचा, ग
ी गोरी त्वचा, गोरी त्वचा', '🧑🏼‍🫯‍🧑🏽' => 'पहलवान: हल्की गोरी त्वचा, गेहुँआ त्वचा', '🧑🏼‍🫯‍🧑🏾' => 'पहलवान: हल्की गोरी त्वचा, हल्की साँवली त्वचा', '🧑🏼‍🫯‍🧑🏿' => 'पहलवान: हल्की गोरी त्वचा, साँवली त्वचा', '🧑🏽‍🫯‍🧑🏻' => 'प
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-hi.php", "language": "php", "file_size": 367983, "cut_index": 7068, "middle_length": 229 }
үресшілер: 4-тері түсі 3-тері түрі', '🧑🏽‍🫯‍🧑🏾' => 'күресшілер: 4-тері түсі 5-тері түсі', '🧑🏽‍🫯‍🧑🏿' => 'күресшілер: 4-тері түсі 6-тері түсі', '🧑🏾‍🫯‍🧑🏻' => 'күресшілер: 5-тері түсі 1–2 тері түсі', '🧑🏾‍🫯‍🧑🏼' => 'күресшілер: 5-тері түсі 3-тері түрі', '🧑🏾‍🫯‍🧑🏽' => 'күресшілер: 5-...
❤‍🧑🏾' => 'махаббат: адам адам 1–2 тері түсі 5-тері түсі', '🧑🏻‍❤‍🧑🏿' => 'махаббат: адам адам 1–2 тері түсі 6-тері түсі', '🧑🏼‍❤‍🧑🏻' => 'махаббат: адам адам 3-тері түрі 1–2 тері түсі', '🧑🏼‍❤‍🧑🏽' => 'махаббат: адам адам 3-тері түрі 4-тері түсі',
шілер: 6-тері түсі 4-тері түсі', '🧑🏿‍🫯‍🧑🏾' => 'күресшілер: 6-тері түсі 5-тері түсі', '🧑🏻‍❤‍🧑🏼' => 'махаббат: адам адам 1–2 тері түсі 3-тері түрі', '🧑🏻‍❤‍🧑🏽' => 'махаббат: адам адам 1–2 тері түсі 4-тері түсі', '🧑🏻‍
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-kk.php", "language": "php", "file_size": 262085, "cut_index": 7068, "middle_length": 229 }
gaišs ādas tonis', '👩🏻‍❤‍💋‍👩🏼' => 'skūpsts: sieviete, sieviete, gaišs ādas tonis un vidēji gaišs ādas tonis', '👩🏻‍❤‍💋‍👩🏽' => 'skūpsts: sieviete, sieviete, gaišs ādas tonis un vidējs ādas tonis', '👩🏻‍❤‍💋‍👩🏾' => 'skūpsts: sieviete, sieviete, gaišs ādas tonis un vidēji tumšs ādas tonis', '�...
šs ādas tonis', '👩🏼‍❤‍💋‍👩🏿' => 'skūpsts: sieviete, sieviete, vidēji gaišs ādas tonis un tumšs ādas tonis', '👩🏽‍❤‍💋‍👩🏻' => 'skūpsts: sieviete, sieviete, vidējs ādas tonis un gaišs ādas tonis', '👩🏽‍❤‍💋‍👩🏼' => 'skūpsts: sieviete, sieviete, vidējs
ieviete, sieviete un vidēji gaišs ādas tonis', '👩🏼‍❤‍💋‍👩🏽' => 'skūpsts: sieviete, sieviete, vidēji gaišs ādas tonis un vidējs ādas tonis', '👩🏼‍❤‍💋‍👩🏾' => 'skūpsts: sieviete, sieviete, vidēji gaišs ādas tonis un vidēji tum
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-lv.php", "language": "php", "file_size": 226368, "cut_index": 7068, "middle_length": 229 }
farbe', '👩🏿‍❤‍💋‍👨🏾' => 'sich küssendes Paar: Frau, Mann, dunkle Hautfarbe und mitteldunkle Hautfarbe', '👩🏿‍❤‍💋‍👨🏿' => 'sich küssendes Paar: Frau, Mann und dunkle Hautfarbe', '👩🏻‍❤‍💋‍👩🏻' => 'sich küssendes Paar: Frau, Frau und helle Hautfarbe', '👩🏻‍❤‍💋‍👩🏼' => 'sich küssendes Paar: Fra...
‍❤‍💋‍👩🏼' => 'sich küssendes Paar: Frau, Frau und mittelhelle Hautfarbe', '👩🏼‍❤‍💋‍👩🏽' => 'sich küssendes Paar: Frau, Frau, mittelhelle Hautfarbe und mittlere Hautfarbe', '👩🏼‍❤‍💋‍👩🏾' => 'sich küssendes Paar: Frau, Frau, mittelhelle Hautfarbe und mitt
rbe und mitteldunkle Hautfarbe', '👩🏻‍❤‍💋‍👩🏿' => 'sich küssendes Paar: Frau, Frau, helle Hautfarbe und dunkle Hautfarbe', '👩🏼‍❤‍💋‍👩🏻' => 'sich küssendes Paar: Frau, Frau, mittelhelle Hautfarbe und helle Hautfarbe', '👩🏼
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-de_ch.php", "language": "php", "file_size": 212737, "cut_index": 7068, "middle_length": 229 }
, σκούρος τόνος δέρματος, ανοιχτόχρωμος τόνος δέρματος', '👩🏿‍❤‍💋‍👨🏼' => 'φιλί: γυναίκα, άντρας, σκούρος τόνος δέρματος, μεσαίος-ανοιχτόχρωμος τόνος δέρματος', '👩🏿‍❤‍💋‍👨🏽' => 'φιλί: γυναίκα, άντρας, σκούρος τόνος δέρματος, μεσαίος τόνος δέρματος', '👩🏿‍❤‍💋‍👨🏾' => 'φιλί: γυναίκα, άντρας, σκούρος...
κα, γυναίκα, ανοιχτόχρωμος τόνος δέρματος, μεσαίος-σκούρος τόνος δέρματος', '👩🏻‍❤‍💋‍👩🏿' => 'φιλί: γυναίκα, γυναίκα, ανοιχτόχρωμος τόνος δέρματος, σκούρος τόνος δέρματος', '👩🏼‍❤‍💋‍👩🏻' => 'φιλί: γυναίκα, γυναίκα, μεσαίος-ανοιχτόχρωμος τόνος δέρματος,
' => 'φιλί: γυναίκα, γυναίκα, ανοιχτόχρωμος τόνος δέρματος, μεσαίος-ανοιχτόχρωμος τόνος δέρματος', '👩🏻‍❤‍💋‍👩🏽' => 'φιλί: γυναίκα, γυναίκα, ανοιχτόχρωμος τόνος δέρματος, μεσαίος τόνος δέρματος', '👩🏻‍❤‍💋‍👩🏾' => 'φιλί: γυναί
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-el.php", "language": "php", "file_size": 359818, "cut_index": 7068, "middle_length": 229 }
🏾‍❤‍💋‍👩🏼' => 'kiss: woman, woman, medium-dark skin tone, medium-light skin tone', '👩🏾‍❤‍💋‍👩🏽' => 'kiss: woman, woman, medium-dark skin tone, medium skin tone', '👩🏾‍❤‍💋‍👩🏾' => 'kiss: woman, woman, medium-dark skin tone', '👩🏾‍❤‍💋‍👩🏿' => 'kiss: woman, woman, medium-dark skin tone, dark skin ...
skin tone', '🧑🏻‍🫯‍🧑🏽' => 'people wrestling: light skin tone, medium skin tone', '🧑🏻‍🫯‍🧑🏾' => 'people wrestling: light skin tone, medium-dark skin tone', '🧑🏻‍🫯‍🧑🏿' => 'people wrestling: light skin tone, dark skin tone', '🧑🏼‍🫯‍🧑🏻' => 'people
tone, medium skin tone', '👩🏿‍❤‍💋‍👩🏾' => 'kiss: woman, woman, dark skin tone, medium-dark skin tone', '👩🏿‍❤‍💋‍👩🏿' => 'kiss: woman, woman, dark skin tone', '🧑🏻‍🫯‍🧑🏼' => 'people wrestling: light skin tone, medium-light
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-en_001.php", "language": "php", "file_size": 202019, "cut_index": 7068, "middle_length": 229 }
🏾‍❤‍💋‍👩🏼' => 'kiss: woman, woman, medium-dark skin tone, medium-light skin tone', '👩🏾‍❤‍💋‍👩🏽' => 'kiss: woman, woman, medium-dark skin tone, medium skin tone', '👩🏾‍❤‍💋‍👩🏾' => 'kiss: woman, woman, medium-dark skin tone', '👩🏾‍❤‍💋‍👩🏿' => 'kiss: woman, woman, medium-dark skin tone, dark skin ...
skin tone', '🧑🏻‍🫯‍🧑🏽' => 'people wrestling: light skin tone, medium skin tone', '🧑🏻‍🫯‍🧑🏾' => 'people wrestling: light skin tone, medium-dark skin tone', '🧑🏻‍🫯‍🧑🏿' => 'people wrestling: light skin tone, dark skin tone', '🧑🏼‍🫯‍🧑🏻' => 'people
tone, medium skin tone', '👩🏿‍❤‍💋‍👩🏾' => 'kiss: woman, woman, dark skin tone, medium-dark skin tone', '👩🏿‍❤‍💋‍👩🏿' => 'kiss: woman, woman, dark skin tone', '🧑🏻‍🫯‍🧑🏼' => 'people wrestling: light skin tone, medium-light
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-en_ca.php", "language": "php", "file_size": 202143, "cut_index": 7068, "middle_length": 229 }
🏾‍❤‍💋‍👩🏼' => 'kiss: woman, woman, medium-dark skin tone, medium-light skin tone', '👩🏾‍❤‍💋‍👩🏽' => 'kiss: woman, woman, medium-dark skin tone, medium skin tone', '👩🏾‍❤‍💋‍👩🏾' => 'kiss: woman, woman, medium-dark skin tone', '👩🏾‍❤‍💋‍👩🏿' => 'kiss: woman, woman, medium-dark skin tone, dark skin ...
skin tone', '🧑🏻‍🫯‍🧑🏽' => 'people wrestling: light skin tone, medium skin tone', '🧑🏻‍🫯‍🧑🏾' => 'people wrestling: light skin tone, medium-dark skin tone', '🧑🏻‍🫯‍🧑🏿' => 'people wrestling: light skin tone, dark skin tone', '🧑🏼‍🫯‍🧑🏻' => 'people
tone, medium skin tone', '👩🏿‍❤‍💋‍👩🏾' => 'kiss: woman, woman, dark skin tone, medium-dark skin tone', '👩🏿‍❤‍💋‍👩🏿' => 'kiss: woman, woman, dark skin tone', '🧑🏻‍🫯‍🧑🏼' => 'people wrestling: light skin tone, medium-light
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-en_in.php", "language": "php", "file_size": 202165, "cut_index": 7068, "middle_length": 229 }
'👩🏾‍❤‍💋‍👨🏿' => 'pareja besándose: mujer, hombre, tono de piel oscuro medio, tono de piel oscuro', '👩🏿‍❤‍💋‍👨🏻' => 'pareja besándose: mujer, hombre, tono de piel oscuro, tono de piel claro', '👩🏿‍❤‍💋‍👨🏼' => 'pareja besándose: mujer, hombre, tono de piel oscuro, tono de piel claro medio', '👩�...
'👩🏻‍❤‍💋‍👩🏽' => 'pareja besándose: mujer, mujer, tono de piel claro, tono de piel medio', '👩🏻‍❤‍💋‍👩🏾' => 'pareja besándose: mujer, mujer, tono de piel claro, tono de piel oscuro medio', '👩🏻‍❤‍💋‍👩🏿' => 'pareja besándose: mujer, mujer, tono de pie
'pareja besándose: mujer, hombre, tono de piel oscuro', '👩🏻‍❤‍💋‍👩🏻' => 'pareja besándose: mujer, mujer, tono de piel claro', '👩🏻‍❤‍💋‍👩🏼' => 'pareja besándose: mujer, mujer, tono de piel claro, tono de piel claro medio',
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-es_419.php", "language": "php", "file_size": 228538, "cut_index": 7068, "middle_length": 229 }
🏾‍❤‍💋‍👩🏼' => 'kiss: woman, woman, medium-dark skin tone, medium-light skin tone', '👩🏾‍❤‍💋‍👩🏽' => 'kiss: woman, woman, medium-dark skin tone, medium skin tone', '👩🏾‍❤‍💋‍👩🏾' => 'kiss: woman, woman, medium-dark skin tone', '👩🏾‍❤‍💋‍👩🏿' => 'kiss: woman, woman, medium-dark skin tone, dark skin ...
skin tone', '🧑🏻‍🫯‍🧑🏽' => 'people wrestling: light skin tone, medium skin tone', '🧑🏻‍🫯‍🧑🏾' => 'people wrestling: light skin tone, medium-dark skin tone', '🧑🏻‍🫯‍🧑🏿' => 'people wrestling: light skin tone, dark skin tone', '🧑🏼‍🫯‍🧑🏻' => 'people
tone, medium skin tone', '👩🏿‍❤‍💋‍👩🏾' => 'kiss: woman, woman, dark skin tone, medium-dark skin tone', '👩🏿‍❤‍💋‍👩🏿' => 'kiss: woman, woman, dark skin tone', '🧑🏻‍🫯‍🧑🏼' => 'people wrestling: light skin tone, medium-light
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-en.php", "language": "php", "file_size": 202165, "cut_index": 7068, "middle_length": 229 }
🏾‍❤‍💋‍👩🏼' => 'kiss: woman, woman, medium-dark skin tone, medium-light skin tone', '👩🏾‍❤‍💋‍👩🏽' => 'kiss: woman, woman, medium-dark skin tone, medium skin tone', '👩🏾‍❤‍💋‍👩🏾' => 'kiss: woman, woman, medium-dark skin tone', '👩🏾‍❤‍💋‍👩🏿' => 'kiss: woman, woman, medium-dark skin tone, dark skin ...
skin tone', '🧑🏻‍🫯‍🧑🏽' => 'people wrestling: light skin tone, medium skin tone', '🧑🏻‍🫯‍🧑🏾' => 'people wrestling: light skin tone, medium-dark skin tone', '🧑🏻‍🫯‍🧑🏿' => 'people wrestling: light skin tone, dark skin tone', '🧑🏼‍🫯‍🧑🏻' => 'people
tone, medium skin tone', '👩🏿‍❤‍💋‍👩🏾' => 'kiss: woman, woman, dark skin tone, medium-dark skin tone', '👩🏿‍❤‍💋‍👩🏿' => 'kiss: woman, woman, dark skin tone', '🧑🏻‍🫯‍🧑🏼' => 'people wrestling: light skin tone, medium-light
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-en_au.php", "language": "php", "file_size": 202305, "cut_index": 7068, "middle_length": 229 }
> 'se póškajucy pórik: žeńska, muski, śamna barwa kóže a swětła barwa kóže', '👩🏿‍❤‍💋‍👨🏼' => 'se póškajucy pórik: žeńska, muski, śamna barwa kóže a srjejźnoswětła barwa kóže', '👩🏿‍❤‍💋‍👨🏽' => 'se póškajucy pórik: žeńska, muski, śamna barwa kóže a wósrědna barwa kóže', '👩🏿‍❤‍💋‍👨🏾' => 'se póškaju...
‍👩🏾' => 'se póškajucy pórik: žeńska, žeńska, swětła barwa kóže a srjejźnośamna barwa kóže', '👩🏻‍❤‍💋‍👩🏿' => 'se póškajucy pórik: žeńska, žeńska, swětła barwa kóže a śamna barwa kóže', '👩🏼‍❤‍💋‍👩🏻' => 'se póškajucy pórik: žeńska, žeńska, srjejźnoswětł
ła barwa kóže', '👩🏻‍❤‍💋‍👩🏼' => 'se póškajucy pórik: žeńska, žeńska, swětła barwa kóže a srjejźnoswětła barwa kóže', '👩🏻‍❤‍💋‍👩🏽' => 'se póškajucy pórik: žeńska, žeńska, swětła barwa kóže a wósrědna barwa kóže', '👩🏻‍❤‍💋
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-dsb.php", "language": "php", "file_size": 236271, "cut_index": 7068, "middle_length": 229 }
no de piel claro, tono de piel oscuro medio', '👩🏻‍❤‍💋‍👩🏿' => 'beso: mujer, mujer, tono de piel claro, tono de piel oscuro', '👩🏼‍❤‍💋‍👩🏻' => 'beso: mujer, mujer, tono de piel claro medio, tono de piel claro', '👩🏼‍❤‍💋‍👩🏼' => 'beso: mujer, mujer, tono de piel claro medio', '👩🏼‍❤‍💋‍👩🏽' =>...
so: mujer, mujer, tono de piel medio', '👩🏽‍❤‍💋‍👩🏾' => 'beso: mujer, mujer, tono de piel medio, tono de piel oscuro medio', '👩🏽‍❤‍💋‍👩🏿' => 'beso: mujer, mujer, tono de piel medio, tono de piel oscuro', '👩🏾‍❤‍💋‍👩🏻' => 'beso: mujer, mujer, tono de
iel claro medio, tono de piel oscuro', '👩🏽‍❤‍💋‍👩🏻' => 'beso: mujer, mujer, tono de piel medio, tono de piel claro', '👩🏽‍❤‍💋‍👩🏼' => 'beso: mujer, mujer, tono de piel medio, tono de piel claro medio', '👩🏽‍❤‍💋‍👩🏽' => 'be
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-es.php", "language": "php", "file_size": 227489, "cut_index": 7068, "middle_length": 229 }
🏾‍❤‍💋‍👩🏼' => 'kiss: woman, woman, medium-dark skin tone, medium-light skin tone', '👩🏾‍❤‍💋‍👩🏽' => 'kiss: woman, woman, medium-dark skin tone, medium skin tone', '👩🏾‍❤‍💋‍👩🏾' => 'kiss: woman, woman, medium-dark skin tone', '👩🏾‍❤‍💋‍👩🏿' => 'kiss: woman, woman, medium-dark skin tone, dark skin ...
skin tone', '🧑🏻‍🫯‍🧑🏽' => 'people wrestling: light skin tone, medium skin tone', '🧑🏻‍🫯‍🧑🏾' => 'people wrestling: light skin tone, medium-dark skin tone', '🧑🏻‍🫯‍🧑🏿' => 'people wrestling: light skin tone, dark skin tone', '🧑🏼‍🫯‍🧑🏻' => 'people
tone, medium skin tone', '👩🏿‍❤‍💋‍👩🏾' => 'kiss: woman, woman, dark skin tone, medium-dark skin tone', '👩🏿‍❤‍💋‍👩🏿' => 'kiss: woman, woman, dark skin tone', '🧑🏻‍🫯‍🧑🏼' => 'people wrestling: light skin tone, medium-light
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-en_gb.php", "language": "php", "file_size": 202168, "cut_index": 7068, "middle_length": 229 }
l claro y tono de piel medio', '👩🏻‍❤‍💋‍👩🏾' => 'beso: mujer, mujer, tono de piel claro y tono de piel oscuro medio', '👩🏻‍❤‍💋‍👩🏿' => 'beso: mujer, mujer, tono de piel claro y tono de piel oscuro', '👩🏼‍❤‍💋‍👩🏻' => 'beso: mujer, mujer, tono de piel claro medio y tono de piel claro', '👩🏼‍❤‍💋...
jer, mujer, tono de piel medio y tono de piel claro medio', '👩🏽‍❤‍💋‍👩🏽' => 'beso: mujer, mujer y tono de piel medio', '👩🏽‍❤‍💋‍👩🏾' => 'beso: mujer, mujer, tono de piel medio y tono de piel oscuro medio', '👩🏽‍❤‍💋‍👩🏿' => 'beso: mujer, mujer, tono
y tono de piel oscuro medio', '👩🏼‍❤‍💋‍👩🏿' => 'beso: mujer, mujer, tono de piel claro medio y tono de piel oscuro', '👩🏽‍❤‍💋‍👩🏻' => 'beso: mujer, mujer, tono de piel medio y tono de piel claro', '👩🏽‍❤‍💋‍👩🏼' => 'beso: mu
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-es_us.php", "language": "php", "file_size": 227841, "cut_index": 7068, "middle_length": 229 }
ine, naine, keskmine nahatoon, keskmiselt hele nahatoon', '👩🏽‍❤‍💋‍👩🏽' => 'musi: naine, naine, keskmine nahatoon', '👩🏽‍❤‍💋‍👩🏾' => 'musi: naine, naine, keskmine nahatoon, keskmiselt tume nahatoon', '👩🏽‍❤‍💋‍👩🏿' => 'musi: naine, naine, keskmine nahatoon, tume nahatoon', '👩🏾‍❤‍💋‍👩🏻' => 'm...
n, hele nahatoon', '👩🏿‍❤‍💋‍👩🏼' => 'musi: naine, naine, tume nahatoon, keskmiselt hele nahatoon', '👩🏿‍❤‍💋‍👩🏽' => 'musi: naine, naine, tume nahatoon, keskmine nahatoon', '👩🏿‍❤‍💋‍👩🏾' => 'musi: naine, naine, tume nahatoon, keskmiselt tume nahatoon'
hatoon, keskmine nahatoon', '👩🏾‍❤‍💋‍👩🏾' => 'musi: naine, naine, keskmiselt tume nahatoon', '👩🏾‍❤‍💋‍👩🏿' => 'musi: naine, naine, keskmiselt tume nahatoon, tume nahatoon', '👩🏿‍❤‍💋‍👩🏻' => 'musi: naine, naine, tume nahatoo
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-et.php", "language": "php", "file_size": 208661, "cut_index": 7068, "middle_length": 229 }
سی', '🧑🏾‍🫯‍🧑🏻' => 'کُشتی‌گیران: پوست گندمی،‏ پوست سفید', '🧑🏾‍🫯‍🧑🏼' => 'کُشتی‌گیران: پوست گندمی،‏ پوست روشن', '🧑🏾‍🫯‍🧑🏽' => 'کُشتی‌گیران: پوست گندمی،‏ پوست طلایی', '🧑🏾‍🫯‍🧑🏿' => 'کُشتی‌گیران: پوست گندمی،‏ پوست آبنوسی', '🧑🏿‍🫯‍🧑🏻' => 'کُشتی‌گیران: پوست آبنوسی،‏ پوست سفید', '�...
> 'زوج عاشق: شخص،‏ شخص،‏ پوست روشن، و پوست سفید', '🧑🏼‍❤‍🧑🏽' => 'زوج عاشق: شخص،‏ شخص،‏ پوست روشن، و پوست طلایی', '🧑🏼‍❤‍🧑🏾' => 'زوج عاشق: شخص،‏ شخص،‏ پوست روشن، و پوست گندمی', '🧑🏼‍❤‍🧑🏿' => 'زوج عاشق: شخص،‏ شخص،‏ پوست روشن، و پوست آبنوسی', '🧑🏽
و پوست روشن', '🧑🏻‍❤‍🧑🏽' => 'زوج عاشق: شخص،‏ شخص،‏ پوست سفید، و پوست طلایی', '🧑🏻‍❤‍🧑🏾' => 'زوج عاشق: شخص،‏ شخص،‏ پوست سفید، و پوست گندمی', '🧑🏻‍❤‍🧑🏿' => 'زوج عاشق: شخص،‏ شخص،‏ پوست سفید، و پوست آبنوسی', '🧑🏼‍❤‍🧑🏻' =
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-fa.php", "language": "php", "file_size": 240545, "cut_index": 7068, "middle_length": 229 }
aghahalikan: babae, lalaki, katamtamang dark na kulay ng balat, katamtamang kulay ng balat', '👩🏾‍❤‍💋‍👨🏾' => 'maghahalikan: babae, lalaki, katamtamang dark na kulay ng balat', '👩🏾‍❤‍💋‍👨🏿' => 'maghahalikan: babae, lalaki, katamtamang dark na kulay ng balat, dark na kulay ng balat', '👩🏿‍❤‍💋‍👨🏻' ...
an: babae, lalaki, dark na kulay ng balat', '👩🏻‍❤‍💋‍👩🏻' => 'maghahalikan: babae, babae, light na kulay ng balat', '👩🏻‍❤‍💋‍👩🏼' => 'maghahalikan: babae, babae, light na kulay ng balat, katamtamang light na kulay ng balat', '👩🏻‍❤‍💋‍👩🏽' => 'maghaha
🏽' => 'maghahalikan: babae, lalaki, dark na kulay ng balat, katamtamang kulay ng balat', '👩🏿‍❤‍💋‍👨🏾' => 'maghahalikan: babae, lalaki, dark na kulay ng balat, katamtamang dark na kulay ng balat', '👩🏿‍❤‍💋‍👨🏿' => 'maghahalik
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-fil.php", "language": "php", "file_size": 242557, "cut_index": 7068, "middle_length": 229 }
ast: kona, kona, ljósur húðarlitur, miðalljósur húðarlitur', '👩🏻‍❤‍💋‍👩🏽' => 'tvey íð mussast: kona, kona, ljósur húðarlitur, miðal húðarlitur', '👩🏻‍❤‍💋‍👩🏾' => 'tvey íð mussast: kona, kona, ljósur húðarlitur, miðalmyrkur húðarlitur', '👩🏻‍❤‍💋‍👩🏿' => 'tvey íð mussast: kona, kona, ljósur húðarlit...
jósur húðarlitur, myrkur húðarlitur', '👩🏽‍❤‍💋‍👩🏻' => 'tvey íð mussast: kona, kona, miðal húðarlitur, ljósur húðarlitur', '👩🏽‍❤‍💋‍👩🏼' => 'tvey íð mussast: kona, kona, miðal húðarlitur, miðalljósur húðarlitur', '👩🏽‍❤‍💋‍👩🏽' => 'tvey íð mussast: ko
=> 'tvey íð mussast: kona, kona, miðalljósur húðarlitur, miðal húðarlitur', '👩🏼‍❤‍💋‍👩🏾' => 'tvey íð mussast: kona, kona, miðalljósur húðarlitur, miðalmyrkur húðarlitur', '👩🏼‍❤‍💋‍👩🏿' => 'tvey íð mussast: kona, kona, miðall
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-fo.php", "language": "php", "file_size": 222720, "cut_index": 7068, "middle_length": 229 }
, '👩🏼‍❤‍💋‍👩🏽' => 'beso: mujer, mujer, tono de piel claro medio, tono de piel medio', '👩🏼‍❤‍💋‍👩🏾' => 'beso: mujer, mujer, tono de piel claro medio, tono de piel oscuro medio', '👩🏼‍❤‍💋‍👩🏿' => 'beso: mujer, mujer, tono de piel claro medio, tono de piel oscuro', '👩🏽‍❤‍💋‍👩🏻' => 'beso: muj...
de piel claro', '👩🏾‍❤‍💋‍👩🏼' => 'beso: mujer, mujer, tono de piel oscuro medio, tono de piel claro medio', '👩🏾‍❤‍💋‍👩🏽' => 'beso: mujer, mujer, tono de piel oscuro medio, tono de piel medio', '👩🏾‍❤‍💋‍👩🏾' => 'beso: mujer, mujer, tono de piel oscu
👩🏾' => 'beso: mujer, mujer, tono de piel medio, tono de piel oscuro medio', '👩🏽‍❤‍💋‍👩🏿' => 'beso: mujer, mujer, tono de piel medio, tono de piel oscuro', '👩🏾‍❤‍💋‍👩🏻' => 'beso: mujer, mujer, tono de piel oscuro medio, tono
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-es_mx.php", "language": "php", "file_size": 226553, "cut_index": 7068, "middle_length": 229 }
mota eta bitarteko azal-tonua', '👩🏿‍❤‍💋‍👩🏾' => 'musu: emakumea, emakumea, 6. mota eta 5. mota', '👩🏿‍❤‍💋‍👩🏿' => 'musu: emakumea, emakumea eta 6. mota', '🧑🏻‍🫯‍🧑🏼' => 'borrokalariak: 1–2. mota eta 3. mota', '🧑🏻‍🫯‍🧑🏽' => 'borrokalariak: 1–2. mota eta bitarteko azal-tonua', '🧑🏻‍🫯‍...
tarteko azal-tonua eta 3. mota', '🧑🏽‍🫯‍🧑🏾' => 'borrokalariak: bitarteko azal-tonua eta 5. mota', '🧑🏽‍🫯‍🧑🏿' => 'borrokalariak: bitarteko azal-tonua eta 6. mota', '🧑🏾‍🫯‍🧑🏻' => 'borrokalariak: 5. mota eta 1–2. mota', '🧑🏾‍🫯‍🧑🏼' => 'borrokalaria
azal-tonua', '🧑🏼‍🫯‍🧑🏾' => 'borrokalariak: 3. mota eta 5. mota', '🧑🏼‍🫯‍🧑🏿' => 'borrokalariak: 3. mota eta 6. mota', '🧑🏽‍🫯‍🧑🏻' => 'borrokalariak: bitarteko azal-tonua eta 1–2. mota', '🧑🏽‍🫯‍🧑🏼' => 'borrokalariak: bi
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-eu.php", "language": "php", "file_size": 207992, "cut_index": 7068, "middle_length": 229 }
'👩🏾‍❤‍💋‍👩🏻' => 'bisou : femme, femme, peau mate et peau claire', '👩🏾‍❤‍💋‍👩🏼' => 'bisou : femme, femme, peau mate et peau moyennement claire', '👩🏾‍❤‍💋‍👩🏽' => 'bisou : femme, femme, peau mate et peau légèrement mate', '👩🏾‍❤‍💋‍👩🏾' => 'bisou : femme, femme et peau mate', '👩🏾‍❤‍💋‍...
s faisant de la lutte : peau claire et peau moyennement claire', '🧑🏻‍🫯‍🧑🏽' => 'personnes faisant de la lutte : peau claire et peau légèrement mate', '🧑🏻‍🫯‍🧑🏾' => 'personnes faisant de la lutte : peau claire et peau mate', '🧑🏻‍🫯‍🧑🏿' => 'personne
'👩🏿‍❤‍💋‍👩🏽' => 'bisou : femme, femme, peau foncée et peau légèrement mate', '👩🏿‍❤‍💋‍👩🏾' => 'bisou : femme, femme, peau foncée et peau mate', '👩🏿‍❤‍💋‍👩🏿' => 'bisou : femme, femme et peau foncée', '🧑🏻‍🫯‍🧑🏼' => 'personne
{ "filepath": "src/Symfony/Component/Emoji/Resources/data/emoji-fr.php", "language": "php", "file_size": 218519, "cut_index": 7068, "middle_length": 229 }